summaryrefslogtreecommitdiff
path: root/ports-mgmt/portupgrade
diff options
context:
space:
mode:
authorSergey Matveychuk <sem@FreeBSD.org>2007-03-23 09:31:34 +0000
committerSergey Matveychuk <sem@FreeBSD.org>2007-03-23 09:31:34 +0000
commitc6bebc4f5efff3e6d2c0b2de467647ede1ce3f28 (patch)
tree9324be1bc7224a94b939f0b9a22cff366b507644 /ports-mgmt/portupgrade
parentReset jooji@nickelkid.com due to maintainer-timeouts and no response (diff)
- Remove the last patch. This fix makes other troubles.
Reported on: ports@
Notes
Notes: svn path=/head/; revision=188083
Diffstat (limited to 'ports-mgmt/portupgrade')
-rw-r--r--ports-mgmt/portupgrade/Makefile2
-rw-r--r--ports-mgmt/portupgrade/files/patch-lib-pkgmisc.rb17
2 files changed, 1 insertions, 18 deletions
diff --git a/ports-mgmt/portupgrade/Makefile b/ports-mgmt/portupgrade/Makefile
index e446b29738c9..31399853bd3c 100644
--- a/ports-mgmt/portupgrade/Makefile
+++ b/ports-mgmt/portupgrade/Makefile
@@ -7,7 +7,7 @@
PORTNAME= portupgrade
PORTVERSION= 2.2.6
-PORTREVISION= 2
+PORTREVISION= 3
PORTEPOCH= 2
CATEGORIES= ports-mgmt
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
diff --git a/ports-mgmt/portupgrade/files/patch-lib-pkgmisc.rb b/ports-mgmt/portupgrade/files/patch-lib-pkgmisc.rb
deleted file mode 100644
index ce7d672ab12c..000000000000
--- a/ports-mgmt/portupgrade/files/patch-lib-pkgmisc.rb
+++ /dev/null
@@ -1,17 +0,0 @@
-Index: lib/pkgmisc.rb
-===================================================================
-RCS file: /cvsroot/portupgrade/pkgtools/lib/pkgmisc.rb,v
-retrieving revision 1.2.2.2
-diff -u -r1.2.2.2 pkgmisc.rb
---- lib/pkgmisc.rb 24 Feb 2007 12:32:11 -0000 1.2.2.2
-+++ lib/pkgmisc.rb 2 Mar 2007 19:59:30 -0000
-@@ -93,7 +93,8 @@
- def shelljoin(*args)
- args.collect { |arg|
- if /[*?{}\[\]<>()~&|\\$;\'\`\"\s]/ =~ arg
-- '"' + arg.gsub(/([$\\\"\`])/, "\\\\\\1") + '"'
-+ a = '"' + arg.gsub(/([$\\\"\`])/, "\\\\\\1") + '"'
-+ a.gsub(/\s/, '" "')
- else
- arg
- end