From owner-svn-ports-all@freebsd.org Mon Jun 26 19:35:28 2017 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 D0593D8F790; Mon, 26 Jun 2017 19:35:28 +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 ABFE49E9; Mon, 26 Jun 2017 19:35:28 +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 v5QJZRZL070519; Mon, 26 Jun 2017 19:35:27 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5QJZRnU070515; Mon, 26 Jun 2017 19:35:27 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706261935.v5QJZRnU070515@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, 26 Jun 2017 19:35:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444381 - 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, 26 Jun 2017 19:35:28 -0000 Author: sunpoet Date: Mon Jun 26 19:35:27 2017 New Revision: 444381 URL: https://svnweb.freebsd.org/changeset/ports/444381 Log: Update to 10.5 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-dh_fixperms head/sysutils/debhelper/files/patch-dh_installman Modified: head/sysutils/debhelper/Makefile ============================================================================== --- head/sysutils/debhelper/Makefile Mon Jun 26 18:53:35 2017 (r444380) +++ head/sysutils/debhelper/Makefile Mon Jun 26 19:35:27 2017 (r444381) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= debhelper -PORTVERSION= 10.4 +PORTVERSION= 10.5 CATEGORIES= sysutils MASTER_SITES= DEBIAN DISTNAME= ${PORTNAME}_${PORTVERSION} @@ -19,7 +19,7 @@ MAKE_ARGS= PREFIX=${PREFIX} SITE_PERL=${PREFIX}/${SITE NO_ARCH= yes NO_BUILD= yes USES= gmake perl5 shebangfix tar:xz -WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} +WRKSRC= ${WRKDIR}/${PORTNAME} SHEBANG_FILES= dh* Modified: head/sysutils/debhelper/distinfo ============================================================================== --- head/sysutils/debhelper/distinfo Mon Jun 26 18:53:35 2017 (r444380) +++ head/sysutils/debhelper/distinfo Mon Jun 26 19:35:27 2017 (r444381) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495872596 -SHA256 (debhelper_10.4.tar.xz) = c57f2813d84a5372e9aea6dca663cd4a04837adc0f2625114d172bcd1fa543b2 -SIZE (debhelper_10.4.tar.xz) = 399940 +TIMESTAMP = 1498490470 +SHA256 (debhelper_10.5.tar.xz) = 9f551ddef6d8a3fdd87b9bda7bc1c6c9bc1d9d33e9fb906ca5429071ce85cd3e +SIZE (debhelper_10.5.tar.xz) = 402388 Modified: head/sysutils/debhelper/files/patch-dh_fixperms ============================================================================== --- head/sysutils/debhelper/files/patch-dh_fixperms Mon Jun 26 18:53:35 2017 (r444380) +++ head/sysutils/debhelper/files/patch-dh_fixperms Mon Jun 26 19:35:27 2017 (r444381) @@ -1,11 +1,11 @@ ---- dh_fixperms.orig 2017-05-05 19:50:42 UTC +--- dh_fixperms.orig 2017-06-13 20:32:42 UTC +++ dh_fixperms -@@ -96,7 +96,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) +@@ -97,7 +97,7 @@ on_pkgs_in_parallel { - # General permissions fixing. - complex_doit("find $tmp ${find_exclude_options} -print0", -- "2>/dev/null | xargs -0r chown --no-dereference 0:0"); -+ "2>/dev/null | xargs -0r chown 0:0"); - find_and_reset_perm($tmp, 'go=rX,u+rw,a-s', '! -type l'); + # General permissions fixing. + complex_doit("find $tmp ${find_exclude_options} -print0", +- "2>/dev/null | xargs -0r chown --no-dereference 0:0"); ++ "2>/dev/null | xargs -0r chown 0:0"); + find_and_reset_perm($tmp, 'go=rX,u+rw,a-s', '! -type l'); - # Fix up permissions in usr/share/doc, setting everything to not + # Fix up permissions in usr/share/doc, setting everything to not Modified: head/sysutils/debhelper/files/patch-dh_installman ============================================================================== --- head/sysutils/debhelper/files/patch-dh_installman Mon Jun 26 18:53:35 2017 (r444380) +++ head/sysutils/debhelper/files/patch-dh_installman Mon Jun 26 19:35:27 2017 (r444381) @@ -1,12 +1,12 @@ ---- dh_installman.orig 2015-09-19 09:06:22 UTC +--- dh_installman.orig 2017-06-25 09:59:44 UTC +++ dh_installman -@@ -201,7 +201,8 @@ foreach my $package (@{$dh{DOPACKAGES}}) - } +@@ -234,7 +234,8 @@ on_selected_pkgs_in_parallel(\@all_packa + } - # Now utf-8 conversion. -- if (defined `man --version`) { -+ my $man_version = `man --version 2> /dev/null`; -+ if (defined $man_version && length($man_version)) { - foreach my $dir (qw{usr/share/man}) { - next unless -e "$tmp/$dir"; - find(sub { + # Now utf-8 conversion. +- if (defined `man --version`) { ++ my $man_version = `man --version 2> /dev/null`; ++ if (defined $man_version && length($man_version)) { + foreach my $dir (qw{usr/share/man}) { + next unless -e "$tmp/$dir"; + my @files;