From owner-svn-ports-all@freebsd.org Mon Dec 5 13:39:16 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1AEEEC669F1; Mon, 5 Dec 2016 13:39:16 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E96EFFF2; Mon, 5 Dec 2016 13:39:15 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uB5DdFAP005450; Mon, 5 Dec 2016 13:39:15 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uB5DdEC9005445; Mon, 5 Dec 2016 13:39:14 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201612051339.uB5DdEC9005445@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Mon, 5 Dec 2016 13:39:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r427881 - in head/sysutils/debhelper: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Dec 2016 13:39:16 -0000 Author: sunpoet Date: Mon Dec 5 13:39:14 2016 New Revision: 427881 URL: https://svnweb.freebsd.org/changeset/ports/427881 Log: - Update to 10.2.2 - Add LICENSE_FILE - Add PORTSCOUT - Add NO_ARCH - Update WWW Changes: https://anonscm.debian.org/git/debhelper/debhelper.git/tree/debian/changelog Modified: head/sysutils/debhelper/Makefile head/sysutils/debhelper/distinfo head/sysutils/debhelper/files/patch-Makefile head/sysutils/debhelper/pkg-descr head/sysutils/debhelper/pkg-plist Modified: head/sysutils/debhelper/Makefile ============================================================================== --- head/sysutils/debhelper/Makefile Mon Dec 5 13:09:07 2016 (r427880) +++ head/sysutils/debhelper/Makefile Mon Dec 5 13:39:14 2016 (r427881) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= debhelper -PORTVERSION= 9.20150101 -PORTREVISION= 1 +PORTVERSION= 10.2.2 CATEGORIES= sysutils MASTER_SITES= DEBIAN DISTNAME= ${PORTNAME}_${PORTVERSION} @@ -12,10 +11,14 @@ 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 +USES= gmake perl5 shebangfix tar:xz WRKSRC= ${WRKDIR}/${PORTNAME} SHEBANG_FILES= dh* Modified: head/sysutils/debhelper/distinfo ============================================================================== --- head/sysutils/debhelper/distinfo Mon Dec 5 13:09:07 2016 (r427880) +++ head/sysutils/debhelper/distinfo Mon Dec 5 13:39:14 2016 (r427881) @@ -1,2 +1,3 @@ -SHA256 (debhelper_9.20150101.tar.gz) = fd8d81d71d1bb0ba4b58c517465551231dd60811b98c867e4344bc55ec6a45f2 -SIZE (debhelper_9.20150101.tar.gz) = 545089 +TIMESTAMP = 1480858975 +SHA256 (debhelper_10.2.2.tar.xz) = 07f84f415f390bd9573a7abc8078203b3f57a2d4590b97010cf75b596b274075 +SIZE (debhelper_10.2.2.tar.xz) = 355692 Modified: head/sysutils/debhelper/files/patch-Makefile ============================================================================== --- head/sysutils/debhelper/files/patch-Makefile Mon Dec 5 13:09:07 2016 (r427880) +++ head/sysutils/debhelper/files/patch-Makefile Mon Dec 5 13:39:14 2016 (r427881) @@ -1,13 +1,13 @@ ---- Makefile.orig 2014-11-16 15:43:09 UTC +--- Makefile.orig 2016-10-01 08:13:53 UTC +++ Makefile @@ -1,5 +1,5 @@ # 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" | sort) -+COMMANDS=$(shell find . -maxdepth 1 -type f -perm +a+x -name "dh_*" -print | cut -c3- | sort) +-COMMANDS=$(shell find . -maxdepth 1 -type f -perm /100 -name "dh_*" -printf "%f\n" | LC_ALL=C sort) ++COMMANDS=$(shell find . -maxdepth 1 -type f -perm +a+x -name "dh_*" -print | cut -c3- | LC_ALL=C sort) # Find deprecated commands by looking at their synopsis. DEPRECATED=$(shell egrep -l '^dh_.* - .*deprecated' $(COMMANDS)) -@@ -88,17 +88,16 @@ endif +@@ -94,17 +94,16 @@ endif done; install: @@ -32,4 +32,4 @@ + install -m 0644 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/buildsystems/* + ./run perl -MTest::Harness -e 'runtests grep { ! /CVS/ && ! /\.svn/ && -f && -x } @ARGV' t/* t/*/* Modified: head/sysutils/debhelper/pkg-descr ============================================================================== --- head/sysutils/debhelper/pkg-descr Mon Dec 5 13:09:07 2016 (r427880) +++ head/sysutils/debhelper/pkg-descr Mon Dec 5 13:39:14 2016 (r427881) @@ -4,4 +4,4 @@ included to install various files into y permissions, integrate your package with the debian menu system, etc. This will be of use only to debian developers or others who wish to build debian packages. -WWW: http://joeyh.name/code/debhelper/ +WWW: https://anonscm.debian.org/git/debhelper/debhelper.git Modified: head/sysutils/debhelper/pkg-plist ============================================================================== --- head/sysutils/debhelper/pkg-plist Mon Dec 5 13:09:07 2016 (r427880) +++ head/sysutils/debhelper/pkg-plist Mon Dec 5 13:39:14 2016 (r427881) @@ -8,7 +8,6 @@ bin/dh_bugfiles bin/dh_builddeb bin/dh_clean bin/dh_compress -bin/dh_desktop bin/dh_fixperms bin/dh_gconf bin/dh_gencontrol @@ -47,14 +46,14 @@ bin/dh_md5sums bin/dh_movefiles bin/dh_perl bin/dh_prep -bin/dh_scrollkeeper bin/dh_shlibdeps bin/dh_strip -bin/dh_suidregister +bin/dh_systemd_enable +bin/dh_systemd_start bin/dh_testdir bin/dh_testroot bin/dh_ucf -bin/dh_undocumented +bin/dh_update_autotools_config bin/dh_usrlocal bin/maintscript-helper bin/postinst-emacsen @@ -63,13 +62,13 @@ bin/postinst-init bin/postinst-init-nostart bin/postinst-init-restart bin/postinst-init-tmpfiles -bin/postinst-makeshlibs bin/postinst-menu bin/postinst-menu-method bin/postinst-modules -bin/postinst-moveconffile -bin/postinst-python -bin/postinst-suid +bin/postinst-systemd-dont-enable +bin/postinst-systemd-enable +bin/postinst-systemd-restart +bin/postinst-systemd-start bin/postinst-ucf bin/postinst-usrlocal bin/postinst-wm @@ -78,21 +77,20 @@ bin/postinst-xfonts bin/postrm-debconf bin/postrm-icons bin/postrm-init -bin/postrm-makeshlibs bin/postrm-menu bin/postrm-menu-method bin/postrm-modules bin/postrm-sgmlcatalog -bin/postrm-suid +bin/postrm-systemd +bin/postrm-systemd-reload-only bin/postrm-ucf bin/postrm-xfonts bin/preinst-emacsen -bin/preinst-moveconffile -bin/preinst-sgmlcatalog bin/prerm-emacsen bin/prerm-init bin/prerm-init-norestart -bin/prerm-python +bin/prerm-systemd +bin/prerm-systemd-restart bin/prerm-usrlocal bin/prerm-wm %%SITE_PERL%%/Debian/Debhelper/Buildsystem.pm @@ -109,3 +107,4 @@ bin/prerm-wm %%SITE_PERL%%/Debian/Debhelper/Dh_Getopt.pm %%SITE_PERL%%/Debian/Debhelper/Dh_Lib.pm %%SITE_PERL%%/Debian/Debhelper/Sequence/python_support.pm +%%SITE_PERL%%/Debian/Debhelper/Sequence/systemd.pm