Subject: Re: pkg/36930: net/csup can't update from CVS repository containing
To: None <pkg-manager@netbsd.org, gnats-admin@netbsd.org,>
From: Jeremy C. Reed <reed@reedmedia.net>
List: pkgsrc-bugs
Date: 09/06/2007 11:55:01
The following reply was made to PR pkg/36930; it has been noted by GNATS.
From: "Jeremy C. Reed" <reed@reedmedia.net>
To: gnats-bugs@NetBSD.org
Cc: qhwt+nbsd@les.ath.cx, imil@gcu.info
Subject: Re: pkg/36930: net/csup can't update from CVS repository containing
commitid keywords
Date: Thu, 6 Sep 2007 06:50:47 -0500 (CDT)
On Thu, 6 Sep 2007, qhwt+nbsd@les.ath.cx wrote:
> >Fix:
> $NetBSD$
>
> --- updater.c.orig 14 Mar 2006 03:51:10 -0000
> +++ updater.c
> @@ -856,6 +856,15 @@ updater_diff_batch(struct updater *up, s
> if (error)
> goto bad;
> break;
> +
> + case 'N':
> + fprintf(stderr, "newphrase %s ignored\n", line);
> + /* ignore appended phrases(like commitid) */
> + while ((line = stream_getln(rd, NULL)) != NULL) {
> + if (strcmp(line, ".") == 0)
> + break;
> + }
> + break;
> default:
> error = UPDATER_ERR_PROTO;
> goto bad;
Has this problem been reported upstream?
FreeBSD project is official maintainer. I think this can be reported to
"Maxime Henrion" <mux AT FreeBSD dot ORG>.
I had a quick look at FreeBSD's latest CVS for src/contrib/csup and I
don't see any updates since March 14, 2006 for it. I do see
src/contrib/csup/updater.c,v 1.1.1.2 2006/03/14 but I didn't check
to see if that is what we are using.
Jeremy C. Reed