mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +00:00
From now on I use release dates for this port's version numbers, and
this is version 20010606. A new tool pkgdepfix is added. It allows you to interactively fix /var/db/pkg's @pkgdep / +REQUIRED_BY discrepancies. Run this periodically to let portupgrade properly trace dependencies.
This commit is contained in:
parent
78b2762bd3
commit
3f909a39ff
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=43542
@ -6,12 +6,12 @@
|
||||
#
|
||||
|
||||
PORTNAME= portupgrade
|
||||
PORTVERSION= 1.42
|
||||
PORTVERSION= 20010606
|
||||
CATEGORIES= sysutils
|
||||
MASTER_SITES= ${MASTER_SITE_LOCAL} \
|
||||
http://www.iDaemons.org/distfiles/
|
||||
MASTER_SITE_SUBDIR= knu
|
||||
DISTNAME= pkgtools-20010602
|
||||
DISTNAME= pkgtools-${PORTVERSION}
|
||||
|
||||
MAINTAINER= knu@FreeBSD.org
|
||||
|
||||
@ -22,9 +22,6 @@ USE_RUBY= yes
|
||||
|
||||
NO_BUILD= yes
|
||||
|
||||
do-patch:
|
||||
${GREP} -Frl priviledge ${WRKSRC} | xargs ${RUBY} -i -pe 'gsub /priviledge/, "privilege"'
|
||||
|
||||
do-install:
|
||||
cd ${WRKSRC} && ${RUBY} install.rb
|
||||
${MKDIR} ${PREFIX}/share/zsh/site-functions
|
||||
|
@ -1 +1 @@
|
||||
MD5 (pkgtools-20010602.tar.gz) = 7c90ae7886a07330aed07989296d719e
|
||||
MD5 (pkgtools-20010606.tar.gz) = 81ed4e367486a4a2c8c82fba953ad6de
|
||||
|
@ -1 +1 @@
|
||||
A tool to upgrade installed packages via the port
|
||||
Very powerful FreeBSD ports upgrading tool with more utilities
|
||||
|
@ -1,9 +1,16 @@
|
||||
Portupgrade is a tool to upgrade installed packages via the port.
|
||||
Portupgrade is a very powerful tool to upgrade installed packages via
|
||||
the port. It upgrades ports without reinstalling dependent packages
|
||||
by directly modifying the package info recorded in the files under
|
||||
/var/db/pkg.
|
||||
|
||||
It upgrades ports without reinstalling dependent packages by directly
|
||||
modifying the package info recorded in the files under /var/db/pkg.
|
||||
This package also includes:
|
||||
|
||||
You may want to use portversion which is a replacement of
|
||||
pkg_version(8) optimized and cooperative with portupgrade.
|
||||
portversion:
|
||||
This is a replacement of pkg_version(8), which runs faster
|
||||
than pkg_version and is cooperative with portupgrade.
|
||||
|
||||
pkgdepfix:
|
||||
This is an interactive tool to fix /var/db/pkg's @pkgdep /
|
||||
+REQUIRED_BY discrepancies.
|
||||
|
||||
Author: Akinori MUSHA <knu@FreeBSD.org>
|
||||
|
@ -1,3 +1,4 @@
|
||||
sbin/pkgdepfix
|
||||
sbin/portupgrade
|
||||
sbin/portversion
|
||||
%%RUBY_SITELIBDIR%%/pkg.rb
|
||||
|
@ -6,12 +6,12 @@
|
||||
#
|
||||
|
||||
PORTNAME= portupgrade
|
||||
PORTVERSION= 1.42
|
||||
PORTVERSION= 20010606
|
||||
CATEGORIES= sysutils
|
||||
MASTER_SITES= ${MASTER_SITE_LOCAL} \
|
||||
http://www.iDaemons.org/distfiles/
|
||||
MASTER_SITE_SUBDIR= knu
|
||||
DISTNAME= pkgtools-20010602
|
||||
DISTNAME= pkgtools-${PORTVERSION}
|
||||
|
||||
MAINTAINER= knu@FreeBSD.org
|
||||
|
||||
@ -22,9 +22,6 @@ USE_RUBY= yes
|
||||
|
||||
NO_BUILD= yes
|
||||
|
||||
do-patch:
|
||||
${GREP} -Frl priviledge ${WRKSRC} | xargs ${RUBY} -i -pe 'gsub /priviledge/, "privilege"'
|
||||
|
||||
do-install:
|
||||
cd ${WRKSRC} && ${RUBY} install.rb
|
||||
${MKDIR} ${PREFIX}/share/zsh/site-functions
|
||||
|
@ -1 +1 @@
|
||||
MD5 (pkgtools-20010602.tar.gz) = 7c90ae7886a07330aed07989296d719e
|
||||
MD5 (pkgtools-20010606.tar.gz) = 81ed4e367486a4a2c8c82fba953ad6de
|
||||
|
@ -1 +1 @@
|
||||
A tool to upgrade installed packages via the port
|
||||
Very powerful FreeBSD ports upgrading tool with more utilities
|
||||
|
@ -1,9 +1,16 @@
|
||||
Portupgrade is a tool to upgrade installed packages via the port.
|
||||
Portupgrade is a very powerful tool to upgrade installed packages via
|
||||
the port. It upgrades ports without reinstalling dependent packages
|
||||
by directly modifying the package info recorded in the files under
|
||||
/var/db/pkg.
|
||||
|
||||
It upgrades ports without reinstalling dependent packages by directly
|
||||
modifying the package info recorded in the files under /var/db/pkg.
|
||||
This package also includes:
|
||||
|
||||
You may want to use portversion which is a replacement of
|
||||
pkg_version(8) optimized and cooperative with portupgrade.
|
||||
portversion:
|
||||
This is a replacement of pkg_version(8), which runs faster
|
||||
than pkg_version and is cooperative with portupgrade.
|
||||
|
||||
pkgdepfix:
|
||||
This is an interactive tool to fix /var/db/pkg's @pkgdep /
|
||||
+REQUIRED_BY discrepancies.
|
||||
|
||||
Author: Akinori MUSHA <knu@FreeBSD.org>
|
||||
|
@ -1,3 +1,4 @@
|
||||
sbin/pkgdepfix
|
||||
sbin/portupgrade
|
||||
sbin/portversion
|
||||
%%RUBY_SITELIBDIR%%/pkg.rb
|
||||
|
@ -6,12 +6,12 @@
|
||||
#
|
||||
|
||||
PORTNAME= portupgrade
|
||||
PORTVERSION= 1.42
|
||||
PORTVERSION= 20010606
|
||||
CATEGORIES= sysutils
|
||||
MASTER_SITES= ${MASTER_SITE_LOCAL} \
|
||||
http://www.iDaemons.org/distfiles/
|
||||
MASTER_SITE_SUBDIR= knu
|
||||
DISTNAME= pkgtools-20010602
|
||||
DISTNAME= pkgtools-${PORTVERSION}
|
||||
|
||||
MAINTAINER= knu@FreeBSD.org
|
||||
|
||||
@ -22,9 +22,6 @@ USE_RUBY= yes
|
||||
|
||||
NO_BUILD= yes
|
||||
|
||||
do-patch:
|
||||
${GREP} -Frl priviledge ${WRKSRC} | xargs ${RUBY} -i -pe 'gsub /priviledge/, "privilege"'
|
||||
|
||||
do-install:
|
||||
cd ${WRKSRC} && ${RUBY} install.rb
|
||||
${MKDIR} ${PREFIX}/share/zsh/site-functions
|
||||
|
@ -1 +1 @@
|
||||
MD5 (pkgtools-20010602.tar.gz) = 7c90ae7886a07330aed07989296d719e
|
||||
MD5 (pkgtools-20010606.tar.gz) = 81ed4e367486a4a2c8c82fba953ad6de
|
||||
|
@ -1 +1 @@
|
||||
A tool to upgrade installed packages via the port
|
||||
Very powerful FreeBSD ports upgrading tool with more utilities
|
||||
|
@ -1,9 +1,16 @@
|
||||
Portupgrade is a tool to upgrade installed packages via the port.
|
||||
Portupgrade is a very powerful tool to upgrade installed packages via
|
||||
the port. It upgrades ports without reinstalling dependent packages
|
||||
by directly modifying the package info recorded in the files under
|
||||
/var/db/pkg.
|
||||
|
||||
It upgrades ports without reinstalling dependent packages by directly
|
||||
modifying the package info recorded in the files under /var/db/pkg.
|
||||
This package also includes:
|
||||
|
||||
You may want to use portversion which is a replacement of
|
||||
pkg_version(8) optimized and cooperative with portupgrade.
|
||||
portversion:
|
||||
This is a replacement of pkg_version(8), which runs faster
|
||||
than pkg_version and is cooperative with portupgrade.
|
||||
|
||||
pkgdepfix:
|
||||
This is an interactive tool to fix /var/db/pkg's @pkgdep /
|
||||
+REQUIRED_BY discrepancies.
|
||||
|
||||
Author: Akinori MUSHA <knu@FreeBSD.org>
|
||||
|
@ -1,3 +1,4 @@
|
||||
sbin/pkgdepfix
|
||||
sbin/portupgrade
|
||||
sbin/portversion
|
||||
%%RUBY_SITELIBDIR%%/pkg.rb
|
||||
|
@ -6,12 +6,12 @@
|
||||
#
|
||||
|
||||
PORTNAME= portupgrade
|
||||
PORTVERSION= 1.42
|
||||
PORTVERSION= 20010606
|
||||
CATEGORIES= sysutils
|
||||
MASTER_SITES= ${MASTER_SITE_LOCAL} \
|
||||
http://www.iDaemons.org/distfiles/
|
||||
MASTER_SITE_SUBDIR= knu
|
||||
DISTNAME= pkgtools-20010602
|
||||
DISTNAME= pkgtools-${PORTVERSION}
|
||||
|
||||
MAINTAINER= knu@FreeBSD.org
|
||||
|
||||
@ -22,9 +22,6 @@ USE_RUBY= yes
|
||||
|
||||
NO_BUILD= yes
|
||||
|
||||
do-patch:
|
||||
${GREP} -Frl priviledge ${WRKSRC} | xargs ${RUBY} -i -pe 'gsub /priviledge/, "privilege"'
|
||||
|
||||
do-install:
|
||||
cd ${WRKSRC} && ${RUBY} install.rb
|
||||
${MKDIR} ${PREFIX}/share/zsh/site-functions
|
||||
|
@ -1 +1 @@
|
||||
MD5 (pkgtools-20010602.tar.gz) = 7c90ae7886a07330aed07989296d719e
|
||||
MD5 (pkgtools-20010606.tar.gz) = 81ed4e367486a4a2c8c82fba953ad6de
|
||||
|
@ -1 +1 @@
|
||||
A tool to upgrade installed packages via the port
|
||||
Very powerful FreeBSD ports upgrading tool with more utilities
|
||||
|
@ -1,9 +1,16 @@
|
||||
Portupgrade is a tool to upgrade installed packages via the port.
|
||||
Portupgrade is a very powerful tool to upgrade installed packages via
|
||||
the port. It upgrades ports without reinstalling dependent packages
|
||||
by directly modifying the package info recorded in the files under
|
||||
/var/db/pkg.
|
||||
|
||||
It upgrades ports without reinstalling dependent packages by directly
|
||||
modifying the package info recorded in the files under /var/db/pkg.
|
||||
This package also includes:
|
||||
|
||||
You may want to use portversion which is a replacement of
|
||||
pkg_version(8) optimized and cooperative with portupgrade.
|
||||
portversion:
|
||||
This is a replacement of pkg_version(8), which runs faster
|
||||
than pkg_version and is cooperative with portupgrade.
|
||||
|
||||
pkgdepfix:
|
||||
This is an interactive tool to fix /var/db/pkg's @pkgdep /
|
||||
+REQUIRED_BY discrepancies.
|
||||
|
||||
Author: Akinori MUSHA <knu@FreeBSD.org>
|
||||
|
@ -1,3 +1,4 @@
|
||||
sbin/pkgdepfix
|
||||
sbin/portupgrade
|
||||
sbin/portversion
|
||||
%%RUBY_SITELIBDIR%%/pkg.rb
|
||||
|
Loading…
Reference in New Issue
Block a user