Index: head/sysutils/debhelper/Makefile =================================================================== --- head/sysutils/debhelper/Makefile (revision 449635) +++ head/sysutils/debhelper/Makefile (revision 449636) @@ -1,29 +1,29 @@ # Created by: Gea-Suan Lin # $FreeBSD$ PORTNAME= debhelper -PORTVERSION= 10.7.2 +PORTVERSION= 10.8 CATEGORIES= sysutils MASTER_SITES= DEBIAN DISTNAME= ${PORTNAME}_${PORTVERSION} MAINTAINER= sunpoet@FreeBSD.org COMMENT= Helper programs for debian/rules LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/GPL PORTSCOUT= limit:^[0-9\.]*$$ MAKE_ARGS= PREFIX=${PREFIX} SITE_PERL=${PREFIX}/${SITE_PERL_REL} NO_ARCH= yes NO_BUILD= yes USES= gmake perl5 shebangfix tar:xz WRKSRC= ${WRKDIR}/${PORTNAME} SHEBANG_FILES= dh* post-patch: @${RM} ${WRKSRC}/*.orig .include Index: head/sysutils/debhelper/distinfo =================================================================== --- head/sysutils/debhelper/distinfo (revision 449635) +++ head/sysutils/debhelper/distinfo (revision 449636) @@ -1,3 +1,3 @@ -TIMESTAMP = 1501694300 -SHA256 (debhelper_10.7.2.tar.xz) = 680d7b420f513ce26b7a2056d1be94739c19729312aa9cda6532298a1485e57b -SIZE (debhelper_10.7.2.tar.xz) = 416368 +TIMESTAMP = 1505127774 +SHA256 (debhelper_10.8.tar.xz) = 15fd4ffa30657cffab6cd7a3aeff2429a64e9c80745e96ecdedc1360f1501ab2 +SIZE (debhelper_10.8.tar.xz) = 418392 Index: head/sysutils/debhelper/files/patch-Makefile =================================================================== --- head/sysutils/debhelper/files/patch-Makefile (revision 449635) +++ head/sysutils/debhelper/files/patch-Makefile (revision 449636) @@ -1,37 +1,37 @@ ---- Makefile.orig 2017-06-29 19:50:57 UTC +--- Makefile.orig 2017-09-02 15:29:54 UTC +++ Makefile @@ -3,7 +3,7 @@ PO4A ?= po4a POD2MAN ?= pod2man # List of files of dh_* commands. Sorted for debhelper man page. -COMMANDS=$(shell find . -maxdepth 1 -type f -perm /100 -name "dh_*" -printf "%f\n" | grep -v '~$$' | LC_ALL=C sort) +COMMANDS=$(shell find . -maxdepth 1 -type f -perm +a+x -name "dh_*" -print | grep -v '~$$' | cut -c3- | LC_ALL=C sort) MANPAGES=$(COMMANDS:=.1) dh.1 # Find deprecated commands by looking at their synopsis. -@@ -109,17 +109,16 @@ endif +@@ -118,17 +118,16 @@ endif done; install: - install -d $(DESTDIR)$(PREFIX)/bin \ - $(DESTDIR)$(PREFIX)/share/debhelper/autoscripts \ - $(DESTDIR)$(PERLLIBDIR)/Sequence \ - $(DESTDIR)$(PERLLIBDIR)/Buildsystem + install -d \ + $(DESTDIR)${SITE_PERL}/Debian/Debhelper/Sequence \ + $(DESTDIR)${SITE_PERL}/Debian/Debhelper/Buildsystem install dh $(COMMANDS) $(DESTDIR)$(PREFIX)/bin - install -m 0644 autoscripts/* $(DESTDIR)$(PREFIX)/share/debhelper/autoscripts -- install -m 0644 Debian/Debhelper/*.pm $(DESTDIR)$(PERLLIBDIR) +- install -m 0644 lib/Debian/Debhelper/*.pm $(DESTDIR)$(PERLLIBDIR) + install -m 0644 autoscripts/* $(DESTDIR)$(PREFIX)/bin -+ install -m 0644 Debian/Debhelper/*.pm $(DESTDIR)${SITE_PERL}/Debian/Debhelper ++ install -m 0644 lib/Debian/Debhelper/*.pm $(DESTDIR)${SITE_PERL}/Debian/Debhelper [ "$(PREFIX)" = /usr ] || \ - sed -i '/$$prefix=/s@/usr@$(PREFIX)@g' $(DESTDIR)$(PERLLIBDIR)/Dh_Lib.pm -- install -m 0644 Debian/Debhelper/Sequence/*.pm $(DESTDIR)$(PERLLIBDIR)/Sequence -- install -m 0644 Debian/Debhelper/Buildsystem/*.pm $(DESTDIR)$(PERLLIBDIR)/Buildsystem +- install -m 0644 lib/Debian/Debhelper/Sequence/*.pm $(DESTDIR)$(PERLLIBDIR)/Sequence +- install -m 0644 lib/Debian/Debhelper/Buildsystem/*.pm $(DESTDIR)$(PERLLIBDIR)/Buildsystem + sed -i '' '/$$prefix=/s@/usr@$(PREFIX)@g' $(DESTDIR)${SITE_PERL}/Debian/Debhelper/Dh_Lib.pm -+ install -m 0644 Debian/Debhelper/Sequence/*.pm $(DESTDIR)${SITE_PERL}/Debian/Debhelper/Sequence -+ install -m 0644 Debian/Debhelper/Buildsystem/*.pm $(DESTDIR)${SITE_PERL}/Debian/Debhelper/Buildsystem ++ install -m 0644 lib/Debian/Debhelper/Sequence/*.pm $(DESTDIR)${SITE_PERL}/Debian/Debhelper/Sequence ++ install -m 0644 lib/Debian/Debhelper/Buildsystem/*.pm $(DESTDIR)${SITE_PERL}/Debian/Debhelper/Buildsystem test: version - ./run perl -MTest::Harness -e 'runtests grep { ! /CVS/ && ! /\.svn/ && -f && -x } @ARGV' t/* t/*/* + MAKEFLAGS= HARNESS_OPTIONS=j$(TEST_JOBS) ./run perl -MTest::Harness -e 'runtests grep { ! /CVS/ && ! /\.svn/ && -f && -x && m/\.t$$/ } @ARGV' t/* t/*/*