FreeBSD Bugzilla – Attachment 133294 Details for
Bug 177738
Update port: security/ftimes 3.8.0 --> 3.10.0
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
ftimes.diff
ftimes.diff (text/plain; charset=us-ascii), 12.68 KB, created by
klm
on 2013-05-08 18:10:40 UTC
(
hide
)
Description:
ftimes.diff
Filename:
MIME Type:
Creator:
klm
Created:
2013-05-08 18:10:40 UTC
Size:
12.68 KB
patch
obsolete
>Index: Makefile >=================================================================== >--- Makefile (revision 317699) >+++ Makefile (working copy) >@@ -2,8 +2,7 @@ > # $FreeBSD$ > > PORTNAME= ftimes >-PORTVERSION= 3.8.0 >-PORTREVISION= 1 >+PORTVERSION= 3.10.0 > CATEGORIES= security sysutils > MASTER_SITES= SF > EXTRACT_SUFX= .tgz >@@ -16,15 +15,30 @@ > > MAN1= ftimes.1 > >-OPTIONS_DEFINE= DIG_TOOLS HASHDIG_TOOLS MAP_TOOLS PCRE SSL XMAGIC >-OPTIONS_DEFAULT= DIG_TOOLS HASHDIG_TOOLS MAP_TOOLS PCRE SSL XMAGIC >+OPTIONS_DEFINE= DBM_TOOLS DIG_TOOLS FILE_HOOKS HASHDIG_TOOLS MAP_TOOLS SSL XMAGIC >+OPTIONS_DEFAULT= DBM_TOOLS DIG_TOOLS FILE_HOOKS HASHDIG_TOOLS MAP_TOOLS SSL XMAGIC >+DBM_TOOLS_DESC= install DBM tools > DIG_TOOLS_DESC= install dig tools >+FILE_HOOKS_DESC= include file hooks support > HASHDIG_TOOLS_DESC= install hashdig tools > MAP_TOOLS_DESC= install map tools >-XMAGIC_DESC= XMagic support >+XMAGIC_DESC= include XMagic support > > .include <bsd.port.pre.mk> > >+LIB_DEPENDS+= pcre:${PORTSDIR}/devel/pcre >+CONFIGURE_ARGS+= --with-pcre=${LOCALBASE} >+ >+STRIP_FILES= ${PREFIX}/bin/ftimes >+ >+.if ${PORT_OPTIONS:MDBM_TOOLS} >+PLIST_SUB+= DBM_TOOLS="" >+CONFIGURE_ARGS+= --with-dbm-tools >+MAN1+= ftimes-dbm-bash.1 ftimes-dbm-dump.1 ftimes-dbm-find.1 ftimes-dbm-make.1 ftimes-dbm-reap.1 ftimes-dbm-weed.1 >+.else >+PLIST_SUB+= DBM_TOOLS="@comment " >+.endif >+ > .if ${PORT_OPTIONS:MDIG_TOOLS} || ${PORT_OPTIONS:MMAP_TOOLS} > . if ${PERL_LEVEL} < 500703 > RUN_DEPENDS+= p5-Digest-MD5>=0:${PORTSDIR}/security/p5-Digest-MD5 >@@ -40,10 +54,17 @@ > PLIST_SUB+= DIG_TOOLS="@comment " > .endif > >+.if ${PORT_OPTIONS:MFILE_HOOKS} >+LIB_DEPENDS+= klel:${PORTSDIR}/devel/libklel >+CONFIGURE_ARGS+= --enable-file-hooks --with-klel=${LOCALBASE} --with-perl=${LOCALBASE}/bin/perl >+.else >+PLIST_SUB+= WITH_FILE_HOOKS="@comment " >+.endif >+ > .if ${PORT_OPTIONS:MHASHDIG_TOOLS} > PLIST_SUB+= HASHDIG_TOOLS="" > CONFIGURE_ARGS+= --with-hashdig-tools >-MAN1+= hashdig-bash.1 hashdig-bind.1 hashdig-dump.1 hashdig-find.1 hashdig-filter.1 hashdig-harvest-sunsolve.1 hashdig-harvest.1 hashdig-make.1 hashdig-resolve-sunsolve.1 hashdig-stat.1 hashdig-weed.1 >+MAN1+= hashdig-bash.1 hashdig-bind.1 hashdig-dump.1 hashdig-filter.1 hashdig-find.1 hashdig-harvest.1 hashdig-harvest-sunsolve.1 hashdig-make.1 hashdig-resolve-sunsolve.1 hashdig-stat.1 hashdig-weed.1 > .else > PLIST_SUB+= HASHDIG_TOOLS="@comment " > .endif >@@ -51,18 +72,12 @@ > .if ${PORT_OPTIONS:MMAP_TOOLS} > PLIST_SUB+= MAP_TOOLS="" > CONFIGURE_ARGS+= --with-map-tools >-MAN1+= ftimes-cmp2dbi.1 ftimes-map2dbi.1 ftimes-map2mac.1 tarmap.1 >+MAN1+= ftimes-cat.1 ftimes-cmp2dbi.1 ftimes-cmp2diff.1 ftimes-encoder.1 ftimes-grabber.1 ftimes-map2dbi.1 ftimes-map2mac.1 ftimes-proximo.1 ftimes-sizimus.1 ftimes-sortini.1 ftimes-xformer.1 ftimes-xpa.1 hashcp.1 tarmap.1 zipmap.1 >+STRIP_FILES+= ${PREFIX}/bin/ftimes-cat ${PREFIX}/bin/ftimes-xpa ${PREFIX}/bin/hashcp ${PREFIX}/bin/tarmap > .else > PLIST_SUB+= MAP_TOOLS="@comment " > .endif > >-.if ${PORT_OPTIONS:MPCRE} >-LIB_DEPENDS+= pcre.3:${PORTSDIR}/devel/pcre >-CONFIGURE_ARGS+= --with-pcre=${LOCALBASE} >-.else >-CONFIGURE_ARGS+= --without-pcre >-.endif >- > .if ${PORT_OPTIONS:MSSL} > # we can't use USE_OPENSSL=yes after including bsd.port.pre.mk > .include "${PORTSDIR}/Mk/bsd.openssl.mk" >@@ -79,6 +94,6 @@ > .endif > > post-install: >- ${STRIP_CMD} ${PREFIX}/bin/ftimes >+ ${STRIP_CMD} ${STRIP_FILES} > > .include <bsd.port.post.mk> >Index: distinfo >=================================================================== >--- distinfo (revision 317699) >+++ distinfo (working copy) >@@ -1,2 +1,2 @@ >-SHA256 (ftimes-3.8.0.tgz) = 8d25ea7a5778438fcee469f8824aa64b3a209769d358260e6c94a927e7064e58 >-SIZE (ftimes-3.8.0.tgz) = 452880 >+SHA256 (ftimes-3.10.0.tgz) = 3bd4a66c685e365d0dc4f74edaf220808530d75e78fa0246c7727d5597e95af2 >+SIZE (ftimes-3.10.0.tgz) = 643517 >Index: files/patch-etc::Makefile.in >=================================================================== >--- files/patch-etc::Makefile.in (revision 317699) >+++ files/patch-etc::Makefile.in (working copy) >@@ -1,20 +0,0 @@ >---- etc/Makefile.in.orig Mon Apr 17 16:36:21 2006 >-+++ etc/Makefile.in Mon Apr 17 16:36:40 2006 >-@@ -26,15 +26,13 @@ >- diglean.cfg.sample\ >- get.cfg.sample\ >- mapfull.cfg.sample\ >-- maplean.cfg.sample\ >-- nph-ftimes.cfg.sample >-+ maplean.cfg.sample >- DST_FILES =\ >- ${etcdir}/digfull.cfg.sample\ >- ${etcdir}/diglean.cfg.sample\ >- ${etcdir}/get.cfg.sample\ >- ${etcdir}/mapfull.cfg.sample\ >-- ${etcdir}/maplean.cfg.sample\ >-- ${etcdir}/nph-ftimes.cfg.sample >-+ ${etcdir}/maplean.cfg.sample >- >- all: ${SRC_FILES} >- >Index: files/patch-etc::xmagic::xmagic.base >=================================================================== >--- files/patch-etc::xmagic::xmagic.base (revision 0) >+++ files/patch-etc::xmagic::xmagic.base (working copy) >@@ -0,0 +1,90 @@ >+--- etc/xmagic/xmagic.base.orig 2013-04-09 13:34:18.000000000 -0400 >++++ etc/xmagic/xmagic.base 2013-04-09 13:38:03.000000000 -0400 >+@@ -648,66 +648,66 @@ >+ 0 string = \x23\x20PaCkAgE\x20DaTaStReAm package/svr4 >+ #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=# >+ # XMagic -- ae script >+-0 regexp =~ ^#![\x20\t]*((?:/(?:opt|usr)(?:/local)?)?/bin/ae) script/ae: path="%s"; >++0 regexp =~ ^\x23![\x20\t]*((?:/(?:opt|usr)(?:/local)?)?/bin/ae) script/ae: path="%s"; >+ #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=# >+ # XMagic -- ash script >+-0 regexp =~ ^#![\x20\t]*((?:/(?:opt|usr)(?:/local)?)?/bin/ash) script/ash: path="%s"; >++0 regexp =~ ^\x23![\x20\t]*((?:/(?:opt|usr)(?:/local)?)?/bin/ash) script/ash: path="%s"; >+ #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=# >+ # XMagic -- awk script >+-0 regexp =~ ^#![\x20\t]*((?:/(?:opt|usr)(?:/local)?)?/bin/awk) script/awk: path="%s"; >++0 regexp =~ ^\x23![\x20\t]*((?:/(?:opt|usr)(?:/local)?)?/bin/awk) script/awk: path="%s"; >+ #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=# >+ # XMagic -- bash script >+-0 regexp =~ ^#![\x20\t]*((?:/(?:opt|usr)(?:/local)?)?/bin/bash) script/bash: path="%s"; >++0 regexp =~ ^\x23![\x20\t]*((?:/(?:opt|usr)(?:/local)?)?/bin/bash) script/bash: path="%s"; >+ #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=# >+ # XMagic -- csh script >+-0 regexp =~ ^#![\x20\t]*((?:/(?:opt|usr)(?:/local)?)?/bin/csh) script/csh: path="%s"; >++0 regexp =~ ^\x23![\x20\t]*((?:/(?:opt|usr)(?:/local)?)?/bin/csh) script/csh: path="%s"; >+ #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=# >+ # XMagic -- env script >+-0 regexp =~ ^#![\x20\t]*((?:/(?:opt|usr)(?:/local)?)?/bin/env) script/env: path="%s"; >+->&0 regexp =~ ^#![\x20\t]*(?:/(?:opt|usr)(?:/local)?)?/bin/env[\x20\t]+(ae|(?:[ackz]|ba|tcl?|wi)?sh|[gn]?awk|lua|perl|php|python|rc|ruby) interpreter="%s"; >++0 regexp =~ ^\x23![\x20\t]*((?:/(?:opt|usr)(?:/local)?)?/bin/env) script/env: path="%s"; >++>&0 regexp =~ ^\x23![\x20\t]*(?:/(?:opt|usr)(?:/local)?)?/bin/env[\x20\t]+(ae|(?:[ackz]|ba|tcl?|wi)?sh|[gn]?awk|lua|perl|php|python|rc|ruby) interpreter="%s"; >+ #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=# >+ # XMagic -- gawk script >+-0 regexp =~ ^#![\x20\t]*((?:/(?:opt|usr)(?:/local)?)?/bin/gawk) script/gawk: path="%s"; >++0 regexp =~ ^\x23![\x20\t]*((?:/(?:opt|usr)(?:/local)?)?/bin/gawk) script/gawk: path="%s"; >+ #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=# >+ # XMagic -- ksh script >+-0 regexp =~ ^#![\x20\t]*((?:/(?:opt|usr)(?:/local)?)?/bin/ksh) script/ksh: path="%s"; >++0 regexp =~ ^\x23![\x20\t]*((?:/(?:opt|usr)(?:/local)?)?/bin/ksh) script/ksh: path="%s"; >+ #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=# >+ # XMagic -- lua script >+-0 regexp =~ ^#![\x20\t]*((?:/(?:opt|usr)(?:/local)?)?/bin/lua) script/lua: path="%s"; >++0 regexp =~ ^\x23![\x20\t]*((?:/(?:opt|usr)(?:/local)?)?/bin/lua) script/lua: path="%s"; >+ #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=# >+ # XMagic -- nawk script >+-0 regexp =~ ^#![\x20\t]*((?:/(?:opt|usr)(?:/local)?)?/bin/nawk) script/nawk: path="%s"; >++0 regexp =~ ^\x23![\x20\t]*((?:/(?:opt|usr)(?:/local)?)?/bin/nawk) script/nawk: path="%s"; >+ #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=# >+ # XMagic -- perl script >+-0 regexp =~ ^#![\x20\t]*((?:/(?:opt|usr)(?:/local)?)?/bin/perl) script/perl: path="%s"; >++0 regexp =~ ^\x23![\x20\t]*((?:/(?:opt|usr)(?:/local)?)?/bin/perl) script/perl: path="%s"; >+ 0 regexp =~ (?:eval[\x20\t]+["'][(]exit[\x20\t]+[$][?][)][\x20\t]+&&[\x20\t]+)?eval[\x20\t]+["']exec[\x20\t]+((?:(?:/(?:opt|usr)(?:/local)?)?/bin/)?perl)[\x20\t]+ script/perl: path="%s"; eval="yes"; >+ #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=# >+ # XMagic -- php script >+-0 regexp =~ ^#![\x20\t]*((?:/(?:opt|usr)(?:/local)?)?/bin/php) script/php: path="%s"; >++0 regexp =~ ^\x23![\x20\t]*((?:/(?:opt|usr)(?:/local)?)?/bin/php) script/php: path="%s"; >+ #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=# >+ # XMagic -- python script >+-0 regexp =~ ^#![\x20\t]*((?:/(?:opt|usr)(?:/local)?)?/bin/python) script/python: path="%s"; >++0 regexp =~ ^\x23![\x20\t]*((?:/(?:opt|usr)(?:/local)?)?/bin/python) script/python: path="%s"; >+ #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=# >+ # XMagic -- rc script >+-0 regexp =~ ^#![\x20\t]*((?:/(?:opt|usr)(?:/local)?)?/bin/rc) script/rc: path="%s"; >++0 regexp =~ ^\x23![\x20\t]*((?:/(?:opt|usr)(?:/local)?)?/bin/rc) script/rc: path="%s"; >+ #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=# >+ # XMagic -- ruby script >+-0 regexp =~ ^#![\x20\t]*((?:/(?:opt|usr)(?:/local)?)?/bin/ruby) script/ruby: path="%s"; >++0 regexp =~ ^\x23![\x20\t]*((?:/(?:opt|usr)(?:/local)?)?/bin/ruby) script/ruby: path="%s"; >+ #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=# >+ # XMagic -- sh script >+-0 regexp =~ ^#![\x20\t]*((?:/(?:opt|usr)(?:/local)?)?/bin/sh) script/sh: path="%s"; >++0 regexp =~ ^\x23![\x20\t]*((?:/(?:opt|usr)(?:/local)?)?/bin/sh) script/sh: path="%s"; >+ #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=# >+ # XMagic -- tclsh script >+-0 regexp =~ ^#![\x20\t]*((?:/(?:opt|usr)(?:/local)?)?/bin/tclsh) script/tclsh: path="%s"; >++0 regexp =~ ^\x23![\x20\t]*((?:/(?:opt|usr)(?:/local)?)?/bin/tclsh) script/tclsh: path="%s"; >+ #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=# >+ # XMagic -- tcsh script >+-0 regexp =~ ^#![\x20\t]*((?:/(?:opt|usr)(?:/local)?)?/bin/tcsh) script/tcsh: path="%s"; >++0 regexp =~ ^\x23![\x20\t]*((?:/(?:opt|usr)(?:/local)?)?/bin/tcsh) script/tcsh: path="%s"; >+ #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=# >+ # XMagic -- wish script >+-0 regexp =~ ^#![\x20\t]*((?:/(?:opt|usr)(?:/local)?)?/bin/wish) script/wish: path="%s"; >++0 regexp =~ ^\x23![\x20\t]*((?:/(?:opt|usr)(?:/local)?)?/bin/wish) script/wish: path="%s"; >+ #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=# >+ # XMagic -- zsh script >+-0 regexp =~ ^#![\x20\t]*((?:/(?:opt|usr)(?:/local)?)?/bin/zsh) script/zsh: path="%s"; >++0 regexp =~ ^\x23![\x20\t]*((?:/(?:opt|usr)(?:/local)?)?/bin/zsh) script/zsh: path="%s"; >+ #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=# >+ # XMagic -- btsnoop >+ 0 string = btsnoop\0 sniffer/btsnoop: >Index: pkg-plist >=================================================================== >--- pkg-plist (revision 317699) >+++ pkg-plist (working copy) >@@ -1,3 +1,9 @@ >+%%DBM_TOOLS%%bin/ftimes-dbm-bash >+%%DBM_TOOLS%%bin/ftimes-dbm-dump >+%%DBM_TOOLS%%bin/ftimes-dbm-find >+%%DBM_TOOLS%%bin/ftimes-dbm-make >+%%DBM_TOOLS%%bin/ftimes-dbm-reap >+%%DBM_TOOLS%%bin/ftimes-dbm-weed > %%DIG_TOOLS%%bin/ftimes-crv2dbi.pl > %%DIG_TOOLS%%bin/ftimes-crv2raw.pl > %%DIG_TOOLS%%bin/ftimes-dig2ctx.pl >@@ -6,21 +12,31 @@ > %%HASHDIG_TOOLS%%bin/hashdig-bash.pl > %%HASHDIG_TOOLS%%bin/hashdig-bind.pl > %%HASHDIG_TOOLS%%bin/hashdig-dump.pl >+%%HASHDIG_TOOLS%%bin/hashdig-filter.pl > %%HASHDIG_TOOLS%%bin/hashdig-find.pl >-%%HASHDIG_TOOLS%%bin/hashdig-filter.pl >+%%HASHDIG_TOOLS%%bin/hashdig-harvest.pl > %%HASHDIG_TOOLS%%bin/hashdig-harvest-sunsolve.pl >-%%HASHDIG_TOOLS%%bin/hashdig-harvest.pl > %%HASHDIG_TOOLS%%bin/hashdig-make.pl > %%HASHDIG_TOOLS%%bin/hashdig-resolve-sunsolve.pl > %%HASHDIG_TOOLS%%bin/hashdig-stat.pl > %%HASHDIG_TOOLS%%bin/hashdig-weed.pl >+%%MAP_TOOLS%%bin/ftimes-cat > %%MAP_TOOLS%%bin/ftimes-cmp2dbi.pl >+%%MAP_TOOLS%%bin/ftimes-cmp2diff >+%%MAP_TOOLS%%bin/ftimes-encoder >+%%MAP_TOOLS%%bin/ftimes-grabber > %%MAP_TOOLS%%bin/ftimes-map2dbi.pl > %%MAP_TOOLS%%bin/ftimes-map2mac.pl >+%%MAP_TOOLS%%bin/ftimes-proximo >+%%MAP_TOOLS%%bin/ftimes-sizimus >+%%MAP_TOOLS%%bin/ftimes-sortini >+%%MAP_TOOLS%%bin/ftimes-xformer >+%%MAP_TOOLS%%bin/ftimes-xpa >+%%MAP_TOOLS%%bin/hashcp > %%MAP_TOOLS%%bin/tarmap >+%%MAP_TOOLS%%bin/zipmap >+%%XMAGIC%%etc/xmagic > bin/ftimes >-etc/digfull.cfg.sample >-etc/diglean.cfg.sample >-etc/get.cfg.sample >-etc/mapfull.cfg.sample >-etc/maplean.cfg.sample >+etc/ftimes-dig.cfg.sample >+etc/ftimes-get.cfg.sample >+etc/ftimes-map.cfg.sample
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 177738
:
133293
| 133294