Update to 1.6:
This is a bug fix and general improvement release. From the change log: - Incorporate local ports/categories into the INDEX by scanning Makefile.local for additions to $SUBDIR. Mentioned on freebsd-ports@freebsd.org by Rong-En Fan <rafan (at) infor.org> - Clean up error messages, and factor out common progress counter code. - Add a new Category object type, and cope better with changes to categories (ie. ports being hooked up / unhooked from the tree). Problem pointed out by Colin Percival <cperciva (at) freebsd.org> - Instead of calling perl to compile exactly the same bit of perl code from /usr/ports/Mk/bsd.ports.mk about 15,000 times (ie once per port) as a consequence of actually running 'make describe', just call perl once, use make to print out the basic variables from the port and replicate the processing done ourselves. PR: 99454 Submitted by: author/maintianer
This commit is contained in:
parent
025ef993a0
commit
35f5e56055
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=166311
@ -5,7 +5,7 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= FreeBSD-Portindex
|
||||
PORTVERSION= 1.5
|
||||
PORTVERSION= 1.6
|
||||
CATEGORIES= sysutils perl5
|
||||
MASTER_SITES= http://www.infracaninophile.co.uk/portindex/
|
||||
PKGNAMEPREFIX= p5-
|
||||
@ -31,7 +31,7 @@ MAN1= find-updated.1 cache-init.1 cache-update.1 portindex.1
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
##
|
||||
## Needs a recent version of perl, preferably 5.8.6, but 5.6.1 should work
|
||||
## Needs a recent version of perl, preferably 5.8.8, but 5.6.1 should work
|
||||
##
|
||||
.if ${PERL_LEVEL} < 500601
|
||||
IGNORE= requires perl 5.6.x or (preferably) later. Install lang/perl5.8 and try again
|
||||
|
@ -1,3 +1,3 @@
|
||||
MD5 (FreeBSD-Portindex-1.5.tar.bz2) = 2691373d77b5cbb7687b49969cad1f94
|
||||
SHA256 (FreeBSD-Portindex-1.5.tar.bz2) = bb69f67ea1a5752b297309c3f5b49af242828932a7c58a39d182a14850afbe40
|
||||
SIZE (FreeBSD-Portindex-1.5.tar.bz2) = 24514
|
||||
MD5 (FreeBSD-Portindex-1.6.tar.bz2) = 0c282a3d6b9180c94158c4c3551668b3
|
||||
SHA256 (FreeBSD-Portindex-1.6.tar.bz2) = 8c0506b733c70760b94c250325423b5b76d82fffcba1c0add99a4035e07b042b
|
||||
SIZE (FreeBSD-Portindex-1.6.tar.bz2) = 27889
|
||||
|
@ -6,6 +6,7 @@ bin/portindex
|
||||
etc/portindex.cfg.sample
|
||||
@exec [ ! -f %B/portindex.cfg ] && cp -p %B/%f %B/portindex.cfg || true
|
||||
%%SITE_PERL%%/FreeBSD/Portindex/Config.pm
|
||||
%%SITE_PERL%%/FreeBSD/Portindex/Category.pm
|
||||
%%SITE_PERL%%/FreeBSD/Portindex/Port.pm
|
||||
%%SITE_PERL%%/FreeBSD/Portindex/Tree.pm
|
||||
%%SITE_PERL%%/%%PERL_ARCH%%/auto/FreeBSD/Portindex/.packlist
|
||||
|
@ -5,7 +5,7 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= FreeBSD-Portindex
|
||||
PORTVERSION= 1.5
|
||||
PORTVERSION= 1.6
|
||||
CATEGORIES= sysutils perl5
|
||||
MASTER_SITES= http://www.infracaninophile.co.uk/portindex/
|
||||
PKGNAMEPREFIX= p5-
|
||||
@ -31,7 +31,7 @@ MAN1= find-updated.1 cache-init.1 cache-update.1 portindex.1
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
##
|
||||
## Needs a recent version of perl, preferably 5.8.6, but 5.6.1 should work
|
||||
## Needs a recent version of perl, preferably 5.8.8, but 5.6.1 should work
|
||||
##
|
||||
.if ${PERL_LEVEL} < 500601
|
||||
IGNORE= requires perl 5.6.x or (preferably) later. Install lang/perl5.8 and try again
|
||||
|
@ -1,3 +1,3 @@
|
||||
MD5 (FreeBSD-Portindex-1.5.tar.bz2) = 2691373d77b5cbb7687b49969cad1f94
|
||||
SHA256 (FreeBSD-Portindex-1.5.tar.bz2) = bb69f67ea1a5752b297309c3f5b49af242828932a7c58a39d182a14850afbe40
|
||||
SIZE (FreeBSD-Portindex-1.5.tar.bz2) = 24514
|
||||
MD5 (FreeBSD-Portindex-1.6.tar.bz2) = 0c282a3d6b9180c94158c4c3551668b3
|
||||
SHA256 (FreeBSD-Portindex-1.6.tar.bz2) = 8c0506b733c70760b94c250325423b5b76d82fffcba1c0add99a4035e07b042b
|
||||
SIZE (FreeBSD-Portindex-1.6.tar.bz2) = 27889
|
||||
|
@ -6,6 +6,7 @@ bin/portindex
|
||||
etc/portindex.cfg.sample
|
||||
@exec [ ! -f %B/portindex.cfg ] && cp -p %B/%f %B/portindex.cfg || true
|
||||
%%SITE_PERL%%/FreeBSD/Portindex/Config.pm
|
||||
%%SITE_PERL%%/FreeBSD/Portindex/Category.pm
|
||||
%%SITE_PERL%%/FreeBSD/Portindex/Port.pm
|
||||
%%SITE_PERL%%/FreeBSD/Portindex/Tree.pm
|
||||
%%SITE_PERL%%/%%PERL_ARCH%%/auto/FreeBSD/Portindex/.packlist
|
||||
|
Loading…
Reference in New Issue
Block a user