mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +00:00
- Release 2.8
- Radical changes to the cache: now stores a record for every file that could affect the generated INDEX, which ports those files belong to and the timestamp of the file. - Default update mechanism is now to compare timestamps with what is in the cache. Doesn't need to parse the output of any update mechanism (although you can still do that.) - Added new make-readmes command to create a tree of README.html files. More details: http://www.infracaninophile.co.uk/portindex/index.xhtml Approved by: shaun (mentor)
This commit is contained in:
parent
bb7c0f6b70
commit
e98041c167
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=292273
@ -5,7 +5,7 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= FreeBSD-Portindex
|
||||
PORTVERSION= 2.7
|
||||
PORTVERSION= 2.8
|
||||
CATEGORIES= ports-mgmt perl5
|
||||
MASTER_SITES= http://www.infracaninophile.co.uk/portindex/
|
||||
PKGNAMEPREFIX= p5-
|
||||
@ -25,7 +25,7 @@ OPTIONS= GRAPHVIZ "Add GraphViz run-time dependency" off
|
||||
|
||||
.include <bsd.port.options.mk>
|
||||
|
||||
.if defined(WITH_GRAPHVIZ) && !defined(WITHOUT_GRAPHVIZ)
|
||||
.if defined(WITH_GRAPHVIZ)
|
||||
RUN_DEPENDS+= dot:${PORTSDIR}/graphics/graphviz
|
||||
.endif
|
||||
|
||||
@ -40,7 +40,7 @@ CACHE_MODE?= 0775
|
||||
CFG_FILE= portindex.cfg
|
||||
|
||||
MAN1= find-updated.1 cache-init.1 cache-update.1 portindex.1 \
|
||||
portdepends.1
|
||||
portdepends.1 make-readmes.1
|
||||
|
||||
post-install: install-conf install-cache
|
||||
|
||||
|
@ -1,2 +1,2 @@
|
||||
SHA256 (FreeBSD-Portindex-2.7.tar.xz) = c57639bc399699db4b9dc76437aded1df554240a210fd010db9ec78a08c34cb8
|
||||
SIZE (FreeBSD-Portindex-2.7.tar.xz) = 52612
|
||||
SHA256 (FreeBSD-Portindex-2.8.tar.xz) = aeaa1f2be90107eb6bc456775086810cafd5a86fb461282a80be7f0926f0855c
|
||||
SIZE (FreeBSD-Portindex-2.8.tar.xz) = 56240
|
||||
|
@ -1,15 +1,20 @@
|
||||
bin/cache-init
|
||||
bin/cache-update
|
||||
bin/find-updated
|
||||
bin/make-readmes
|
||||
bin/portindex
|
||||
bin/portdepends
|
||||
@unexec if cmp -s %D/etc/portindex.cfg.sample %D/etc/portindex.cfg ; then rm -f %D/etc/portindex.cfg ; fi
|
||||
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/Config.pm
|
||||
%%SITE_PERL%%/FreeBSD/Portindex/FileObject.pm
|
||||
%%SITE_PERL%%/FreeBSD/Portindex/GraphViz.pm
|
||||
%%SITE_PERL%%/FreeBSD/Portindex/ListVal.pm
|
||||
%%SITE_PERL%%/FreeBSD/Portindex/Makefile.pm
|
||||
%%SITE_PERL%%/FreeBSD/Portindex/Port.pm
|
||||
%%SITE_PERL%%/FreeBSD/Portindex/PortsTreeObject.pm
|
||||
%%SITE_PERL%%/FreeBSD/Portindex/Tree.pm
|
||||
%%SITE_PERL%%/FreeBSD/Portindex/TreeObject.pm
|
||||
%%SITE_PERL%%/%%PERL_ARCH%%/auto/FreeBSD/Portindex/.packlist
|
||||
|
Loading…
Reference in New Issue
Block a user