diff options
author | knu <knu@FreeBSD.org> | 2001-06-11 04:57:39 +0800 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2001-06-11 04:57:39 +0800 |
commit | 799cec8a6213e30ed7fd913852093b2684aef19e (patch) | |
tree | 42bf65bb7348de19f750c69f23157730ef652ef1 /ports-mgmt/portupgrade | |
parent | 6dd988f48b7819b80dc742fbbc5619f453572f25 (diff) | |
download | freebsd-ports-gnome-799cec8a6213e30ed7fd913852093b2684aef19e.tar.gz freebsd-ports-gnome-799cec8a6213e30ed7fd913852093b2684aef19e.tar.zst freebsd-ports-gnome-799cec8a6213e30ed7fd913852093b2684aef19e.zip |
Update to 20010611, with many changes and enhancements.
Beware of bugs, just in case. ;)
portupgrade:
- Sort packages by default and remove -s/--sort.
- Rename -y/--yield/-Y/--yield-command to -s/--sudo/-S/--sudo-command.
- Implement -a/--all.
- Implement -x/--exclude=GLOB.
- Exit on OptionParser::ParseError immediately.
- Do not call "make fetch-recursive" but just "make fetch", now that
portupgrade does recursion itself.
- In fetch mode, specify -DPACKAGE_BUILDING for ports that define
IS_INTERACTIVE. [Submitted by: Jimmy Olgeni <olgeni@uli.it>]]
portversion:
- Exit on OptionParser::ParseError immediately.
portsdb:
- New tool: which updates INDEX and INDEX.db in the ports directory.
pkgdepfix:
- Implement origin fixer with intelligent guessing, finally!
(-o/--fix-origin)
- Make pkgdep guessing more intelligent.
Diffstat (limited to 'ports-mgmt/portupgrade')
-rw-r--r-- | ports-mgmt/portupgrade/Makefile | 3 | ||||
-rw-r--r-- | ports-mgmt/portupgrade/distinfo | 2 | ||||
-rw-r--r-- | ports-mgmt/portupgrade/pkg-descr | 5 | ||||
-rw-r--r-- | ports-mgmt/portupgrade/pkg-plist | 1 |
4 files changed, 7 insertions, 4 deletions
diff --git a/ports-mgmt/portupgrade/Makefile b/ports-mgmt/portupgrade/Makefile index 97b4a176b737..a8ce12b074e2 100644 --- a/ports-mgmt/portupgrade/Makefile +++ b/ports-mgmt/portupgrade/Makefile @@ -6,7 +6,7 @@ # PORTNAME= portupgrade -PORTVERSION= 20010607b +PORTVERSION= 20010611 CATEGORIES= sysutils MASTER_SITES= ${MASTER_SITE_LOCAL} \ http://www.iDaemons.org/distfiles/ @@ -16,6 +16,7 @@ DISTNAME= pkgtools-${PORTVERSION} MAINTAINER= knu@FreeBSD.org RUN_DEPENDS= ${RUBY_SITELIBDIR}/optparse.rb:${PORTSDIR}/devel/ruby-optparse \ + ${RUBY_SITEARCHLIBDIR}/fnmatch.so:${PORTSDIR}/devel/ruby-fnmatch \ ${LOCALBASE}/sbin/pkg_tarup:${PORTSDIR}/misc/pkg_tarup USE_RUBY= yes diff --git a/ports-mgmt/portupgrade/distinfo b/ports-mgmt/portupgrade/distinfo index 90b439bb59dc..f9faa0755dc3 100644 --- a/ports-mgmt/portupgrade/distinfo +++ b/ports-mgmt/portupgrade/distinfo @@ -1 +1 @@ -MD5 (pkgtools-20010607b.tar.gz) = 29e2f04867cbf9aa7b3b27d5163b8006 +MD5 (pkgtools-20010611.tar.gz) = 6f8c7827a7ef59ed53054d93bffc67d8 diff --git a/ports-mgmt/portupgrade/pkg-descr b/ports-mgmt/portupgrade/pkg-descr index 835f1c829543..acac5ea5c131 100644 --- a/ports-mgmt/portupgrade/pkg-descr +++ b/ports-mgmt/portupgrade/pkg-descr @@ -10,7 +10,8 @@ portversion: than pkg_version and is cooperative with portupgrade. pkgdepfix: - This is an interactive tool to fix /var/db/pkg's @pkgdep / - +REQUIRED_BY discrepancies. + This is an interactive tool to fix /var/db/pkg's @pkgdep vs. + +REQUIRED_BY discrepancies, and stale or missing origins, + optionally. Author: Akinori MUSHA <knu@FreeBSD.org> diff --git a/ports-mgmt/portupgrade/pkg-plist b/ports-mgmt/portupgrade/pkg-plist index 27089192d57d..20a8a65687d3 100644 --- a/ports-mgmt/portupgrade/pkg-plist +++ b/ports-mgmt/portupgrade/pkg-plist @@ -1,4 +1,5 @@ sbin/pkgdepfix +sbin/portsdb sbin/portupgrade sbin/portversion %%RUBY_SITELIBDIR%%/pkg.rb |