freebsd-ports/ports-mgmt/portupgrade-devel/pkg-plist

45 lines
1.4 KiB
Text
Raw Normal View History

etc/rc.d/000.pkgtools.sh
@exec /bin/mkdir -p %D/lib/compat/pkg
@unexec /bin/rmdir %D/lib/compat/pkg 2>/dev/null || true
sbin/make_describe_pass1
sbin/make_describe_pass2
sbin/pkg_deinstall
sbin/pkg_fetch
sbin/pkg_glob
sbin/pkg_sort
Update to 20011210 which brings several usability improvements. pkgtools.conf(5): - Turn HOLD_PORTS into HOLD_PKGS. - List `bsdpan-*' in HOLD_PKGS by default. Requested by: Anton Berezin <tobez@tobez.org> pkgdb(1): - Support HOLD_PKGS and make -f/--force overrite the setting. pkg_fetch(1): - Dig the temporary directory and the packages directory before fetching. Requested by: Chris Dillon <cdillon@wolves.k12.mo.us> - Properly quote the fetch command line arguments. portupgrade(1): - Fix a bug that -Pf did not properly work. Reported by: The Anarcat <anarcat@anarcat.dyndns.org> - Make -p/--package build packages for the ports that are installed as dependency as well. Suggested by: Vivek Khera <khera@kcilink.com> - Make -p/--package build packages for those which requisite packages are upgraded as well, when they are given from the command line or -r is specified. Suggested by: Vivek Khera <khera@kcilink.com>, Lev Serebryakov <lev@serebryakov.spb.ru> - Do not regard a packaging error as an installation error. - Make -Nf override HOLD_PKGS. - Suggest specifying -f when skipping a package. - Detect a checksum mismatch error properly from a build log. portinstall(1): (portupgrade -N) - Only upgrade required packages of a newly installed port when -R is specified. portversion(1): - Support HOLD_PKGS. overall/miscellaneous: - Introduce lazy initialization for config variables and make the initialization process a little bit quicker. - Fix some typos in the manpages. Submitted by: Dan Langille <dan@langille.org>, kuriyama@FreeBSD.org - Add shell completion definitions for pkg_tarup(1). - Provide a replacement of the weekly status-pkg report script (/etc/periodic/weekly/400.status-pkg), which is installed as $PREFIX/etc/pkgtools.status-pkg.sh. port: - Add a missing entry of pkg_which to pkg_plist. - Do not remove the zsh site-functions directory on deinstallation when zsh is installed.
2001-12-10 03:43:52 +01:00
sbin/pkg_which
sbin/pkgdb
sbin/portcvsweb
sbin/portinstall
sbin/ports_glob
sbin/portsclean
sbin/portsdb
sbin/portupgrade
sbin/portversion
%%RUBY_SITELIBDIR%%/pkg.rb
%%RUBY_SITELIBDIR%%/pkgdb.rb
%%RUBY_SITELIBDIR%%/pkginfo.rb
Update to 20011006 with many improvements. Beware, there can probably be some bugs left in the new pkgdb code. In such a case please run "pkgdb -fu" to fix the situation. overall: Utilize pkgdb better and optimize. portupgrade: Do not scan packages all at once when -P is given, but find one per request. [Requested by: Hideaki OKADA <hokada@isl.melco.co.jp>] Create a backup package record in tmpdir instead of pkgdbdir, in order not to update pkgdbdir's mtime. Rephrase/add messages. portinstall: Commit major changes and improvements over portinstall. Now it warns and asks the user for confirmation if a port is being installed when a package of the same origin is already installed. Upgrade all the required packages before installing a new port. [Requested by: Hajimu UMEMOTO <ume@mahoroba.org>] Do not install ports immediately but queue them up, then install them after upgrading all the specified and required packages. pkgdb: Record pkgname <=> origin mapping in the pkgdb and make full use of it instead of repeatedly calling pkg_info -o which has undesirable overheads. Make portupgrade, pkg_deinstall update the pkgdb after they install/deinstall packages or modify package records. Integrate pkgdepfix(1) within. (pkgdb -F/--fix) Add -o/--origin, which looks up an origin of a package in pkgdb. Detect added/deleted/reinstalled packages more strictly so pkgdb can keep being sane and consistent. Do not fail over a small conflict found during updating pkgdb; portupgrade should not be aborted by such a minor problem. pkgdepfix: Obsolete -o and turn -o on by default. Now we can look up an origin of a package so quickly thanks to the pkgdb. Integrate into pkgdb(1). (pkgdb -F/--fix) portsdb: A date spec is not a valid ports glob; emit a warning if specified. [Found by: Hajimu UMEMOTO <ume@mahoroba.org>]
2001-10-06 17:52:58 +02:00
%%RUBY_SITELIBDIR%%/pkgmisc.rb
%%RUBY_SITELIBDIR%%/pkgtools.rb
%%RUBY_SITELIBDIR%%/pkgversion.rb
%%RUBY_SITELIBDIR%%/portinfo.rb
%%RUBY_SITELIBDIR%%/ports.rb
%%RUBY_SITELIBDIR%%/portsdb.rb
%%RUBY_SITELIBDIR%%/tsort.rb
@unexec if cmp -s %D/etc/pkgtools.conf %D/etc/pkgtools.conf.sample; then rm -f %D/etc/pkgtools.conf; fi
etc/pkgtools.conf.sample
@exec [ ! -f %B/pkgtools.conf ] && cp %B/%f %B/pkgtools.conf
Update to 20011210 which brings several usability improvements. pkgtools.conf(5): - Turn HOLD_PORTS into HOLD_PKGS. - List `bsdpan-*' in HOLD_PKGS by default. Requested by: Anton Berezin <tobez@tobez.org> pkgdb(1): - Support HOLD_PKGS and make -f/--force overrite the setting. pkg_fetch(1): - Dig the temporary directory and the packages directory before fetching. Requested by: Chris Dillon <cdillon@wolves.k12.mo.us> - Properly quote the fetch command line arguments. portupgrade(1): - Fix a bug that -Pf did not properly work. Reported by: The Anarcat <anarcat@anarcat.dyndns.org> - Make -p/--package build packages for the ports that are installed as dependency as well. Suggested by: Vivek Khera <khera@kcilink.com> - Make -p/--package build packages for those which requisite packages are upgraded as well, when they are given from the command line or -r is specified. Suggested by: Vivek Khera <khera@kcilink.com>, Lev Serebryakov <lev@serebryakov.spb.ru> - Do not regard a packaging error as an installation error. - Make -Nf override HOLD_PKGS. - Suggest specifying -f when skipping a package. - Detect a checksum mismatch error properly from a build log. portinstall(1): (portupgrade -N) - Only upgrade required packages of a newly installed port when -R is specified. portversion(1): - Support HOLD_PKGS. overall/miscellaneous: - Introduce lazy initialization for config variables and make the initialization process a little bit quicker. - Fix some typos in the manpages. Submitted by: Dan Langille <dan@langille.org>, kuriyama@FreeBSD.org - Add shell completion definitions for pkg_tarup(1). - Provide a replacement of the weekly status-pkg report script (/etc/periodic/weekly/400.status-pkg), which is installed as $PREFIX/etc/pkgtools.status-pkg.sh. port: - Add a missing entry of pkg_which to pkg_plist. - Do not remove the zsh site-functions directory on deinstallation when zsh is installed.
2001-12-10 03:43:52 +01:00
etc/pkgtools.status-pkg.sh
o Update to 20020205. The best release ever, I hope. :) pkg_deinstall(1), portupgrade(1): - Properly print the legend. pkg_glob(1), portsdb(1): - Do not print an empty line when the result list is empty. pkgdb(1): - Greatly improve the origin fixing procedure. Do the origin duplicateness check before checking dependencies and avoid redoing the origin check. - Show the user CVS history on the spot via the CVSweb. portcvsweb(1): - Allow specifying a no longer existent port file/directory. "portcvsweb net/ruby-uri" now works. - Change the default BROWSER value from 'lynx' to 'w3m:lynx:links:mozilla:netscape'. portupgrade(1): - Fix a bug where portupgrade tried to use a package with a different origin when the package name is identical to that of what it wants except for the version part. pkgdb(3): - Abolish the [You have no permission to update the pkgdb -- using a slow method] message. Instead, run 'pkgdb -u' via sudo(8) when under portupgrade -s, or stop the process immediately with a message that the user must run the command as root. pkgtools.conf(5): - Allow specifying unofficial ports' origin globs in HOLD_PKGS as well as package globs. overall/miscellaneous: - Change --no-config to --noconfig in order to get the -q option really working. Since --no-config was regarded a negative form of --config, it didn't work as expected. - Fix some bugs in the zsh compdefs and add missing descriptions for some options. o Use bzip2 instead of gzip for the distribution tarball to save 20KB. As the portupgrade user base is growing significantly, I'll get more serious about the download size issue from now on. The next few releases will be distributed in patches against this version.
2002-02-04 18:47:31 +01:00
share/zsh/site-functions/_pkgtools
Update to 20011210 which brings several usability improvements. pkgtools.conf(5): - Turn HOLD_PORTS into HOLD_PKGS. - List `bsdpan-*' in HOLD_PKGS by default. Requested by: Anton Berezin <tobez@tobez.org> pkgdb(1): - Support HOLD_PKGS and make -f/--force overrite the setting. pkg_fetch(1): - Dig the temporary directory and the packages directory before fetching. Requested by: Chris Dillon <cdillon@wolves.k12.mo.us> - Properly quote the fetch command line arguments. portupgrade(1): - Fix a bug that -Pf did not properly work. Reported by: The Anarcat <anarcat@anarcat.dyndns.org> - Make -p/--package build packages for the ports that are installed as dependency as well. Suggested by: Vivek Khera <khera@kcilink.com> - Make -p/--package build packages for those which requisite packages are upgraded as well, when they are given from the command line or -r is specified. Suggested by: Vivek Khera <khera@kcilink.com>, Lev Serebryakov <lev@serebryakov.spb.ru> - Do not regard a packaging error as an installation error. - Make -Nf override HOLD_PKGS. - Suggest specifying -f when skipping a package. - Detect a checksum mismatch error properly from a build log. portinstall(1): (portupgrade -N) - Only upgrade required packages of a newly installed port when -R is specified. portversion(1): - Support HOLD_PKGS. overall/miscellaneous: - Introduce lazy initialization for config variables and make the initialization process a little bit quicker. - Fix some typos in the manpages. Submitted by: Dan Langille <dan@langille.org>, kuriyama@FreeBSD.org - Add shell completion definitions for pkg_tarup(1). - Provide a replacement of the weekly status-pkg report script (/etc/periodic/weekly/400.status-pkg), which is installed as $PREFIX/etc/pkgtools.status-pkg.sh. port: - Add a missing entry of pkg_which to pkg_plist. - Do not remove the zsh site-functions directory on deinstallation when zsh is installed.
2001-12-10 03:43:52 +01:00
share/zsh/site-functions/_pkg_tarup
@unexec [ ! -f %D/bin/zsh ] && rmdir %D/share/zsh/site-functions 2>/dev/null || true
@unexec rmdir %D/share/zsh 2>/dev/null || true
%%PORTDOCS%%share/examples/pkgtools/bash/complete.sample
%%PORTDOCS%%@dirrm share/examples/pkgtools/bash
%%PORTDOCS%%share/examples/pkgtools/tcsh/complete.sample
%%PORTDOCS%%@dirrm share/examples/pkgtools/tcsh
%%PORTDOCS%%@dirrm share/examples/pkgtools
%%PORTDOCS%%share/doc/pkgtools/ChangeLog
%%PORTDOCS%%share/doc/pkgtools/README
%%PORTDOCS%%@dirrm share/doc/pkgtools