diff options
author | jdp <jdp@FreeBSD.org> | 2001-07-09 02:47:32 +0800 |
---|---|---|
committer | jdp <jdp@FreeBSD.org> | 2001-07-09 02:47:32 +0800 |
commit | 83e66c3aa98f26144bf95f53b1ce64c444636956 (patch) | |
tree | e97c1fab7ae605c92b2fde2034a007886c46560c /net | |
parent | 7cf88963ad29afa1bd0863dcecae03c6b0888f02 (diff) | |
download | freebsd-ports-gnome-83e66c3aa98f26144bf95f53b1ce64c444636956.tar.gz freebsd-ports-gnome-83e66c3aa98f26144bf95f53b1ce64c444636956.tar.zst freebsd-ports-gnome-83e66c3aa98f26144bf95f53b1ce64c444636956.zip |
Update to new snapshot: snap-16.1a ==> snap-16.1b.
Diffstat (limited to 'net')
-rw-r--r-- | net/cvsup-devel/Makefile | 6 | ||||
-rw-r--r-- | net/cvsup-devel/distinfo | 2 | ||||
-rw-r--r-- | net/cvsup-devel/files/patch-ac | 51 | ||||
-rw-r--r-- | net/cvsup-devel/files/patch-ad | 15 |
4 files changed, 4 insertions, 70 deletions
diff --git a/net/cvsup-devel/Makefile b/net/cvsup-devel/Makefile index b7520fb4187b..b2907a97ffce 100644 --- a/net/cvsup-devel/Makefile +++ b/net/cvsup-devel/Makefile @@ -5,13 +5,13 @@ # $FreeBSD$ # -PORTVERSION= 16.1a -PORTREVISION= 1 +PORTVERSION= 16.1b +PORTREVISION= 0 CATEGORIES= net MASTER_SITES= ftp://ftp3.freebsd.org/pub/FreeBSD/development/CVSup/snapshots/ \ ftp://ftp.freebsd.org/pub/FreeBSD/development/CVSup/snapshots/ \ ftp://ftp.cs.tu-berlin.de/pub/FreeBSD/development/CVSup/snapshots/ -DISTNAME= cvsup-snap-16.1a +DISTNAME= cvsup-snap-16.1b MASTERDIR= ${.CURDIR}/../cvsup FILESDIR= ${.CURDIR}/files diff --git a/net/cvsup-devel/distinfo b/net/cvsup-devel/distinfo index 84d5c0b0afe9..942e8172693e 100644 --- a/net/cvsup-devel/distinfo +++ b/net/cvsup-devel/distinfo @@ -1 +1 @@ -MD5 (cvsup-snap-16.1a.tar.gz) = 13ec2cc6a5eb0ce918f53ece6557bfa3 +MD5 (cvsup-snap-16.1b.tar.gz) = 205df4ebe9661fb3db5b2bdfc0249e47 diff --git a/net/cvsup-devel/files/patch-ac b/net/cvsup-devel/files/patch-ac deleted file mode 100644 index a3276cca4885..000000000000 --- a/net/cvsup-devel/files/patch-ac +++ /dev/null @@ -1,51 +0,0 @@ -Index: client/src/Updater.m3 -=================================================================== -RCS file: /home/cvsupcvs/cvsup/client/src/Updater.m3,v -retrieving revision 1.97 -diff -u -r1.97 Updater.m3 ---- client/src/Updater.m3 2001/04/15 21:53:13 1.97 -+++ client/src/Updater.m3 2001/05/26 22:58:36 -@@ -733,7 +733,7 @@ - IF SupFileRec.Option.KeepBadFiles IN sfr.options THEN - Warn(self, "Bad version saved in " & tempPath); - ELSE -- DeleteFile(tempPath); -+ DeleteFile(self, tempPath); - END; - END; - END UpdateFile; -@@ -1231,7 +1231,7 @@ - IF NOT SupFileRec.Option.CheckoutMode IN sfr.options THEN - (* Try the attic. *) - WITH atticName = SupMisc.AtticName(destPath) DO -- DeleteFile(atticName); -+ DeleteFile(self, atticName); - (* We always delete the Attic directory when it becomes empty. - FIXME - Is that the right thing to do?. *) - TRY -@@ -1239,7 +1239,7 @@ - EXCEPT OSError.E => (* Ignore. *) END; - END; - END; -- DeleteFile(destPath); -+ DeleteFile(self, destPath); - IF SupFileRec.Option.CheckoutMode IN sfr.options - OR NOT self.proto.v.dirsAreExplicit THEN - (* Delete the directory automatically if it is now empty. *) -@@ -1280,14 +1280,13 @@ - END; - END MakeDirectories; - --PROCEDURE DeleteFile(path: Pathname.T) -- RAISES {Error} = -+PROCEDURE DeleteFile(self: T; path: Pathname.T) = - BEGIN - TRY - FileAttr.Delete(path); - EXCEPT OSError.E(l) => - IF l.head # EnoentAtom THEN -- RAISE Error("Cannot delete \"" & path & "\": " & -+ Warn(self, "Cannot delete \"" & path & "\": " & - ErrMsg.StrError(l)); - END; - END; diff --git a/net/cvsup-devel/files/patch-ad b/net/cvsup-devel/files/patch-ad deleted file mode 100644 index 98cd1d3ac233..000000000000 --- a/net/cvsup-devel/files/patch-ad +++ /dev/null @@ -1,15 +0,0 @@ ---- quake/cvsup.quake.orig Sun Apr 15 16:22:06 2001 -+++ quake/cvsup.quake Sat May 26 16:46:05 2001 -@@ -53,10 +53,10 @@ - > tempname in - write("MODULE Version;", CR, CR, "BEGIN", CR, " Name := ") - end -- if equal("$Name: SNAP_16_1a $", "$" & "Name: $") -+ if equal("$Name: SNAP_16_1ap1 $", "$" & "Name: $") - cmd = "date -u +'\"U_%Y_%m_%d_%H_%M_%S\";'" - else -- cmd = "echo '$Name: SNAP_16_1a $' | awk '{print \"\\\"\" $2 \"\\\";\";}'" -+ cmd = "echo '$Name: SNAP_16_1ap1 $' | awk '{print \"\\\"\" $2 \"\\\";\";}'" - end - cmd = cmd & " >> " & tempname - if equal(M3_VARIANT, "PM3") |