From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (unknown [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 4F89D1381FA for ; Tue, 20 May 2014 07:59:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C1EDBE0AC1; Tue, 20 May 2014 07:59:28 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 53B48E0AC1 for ; Tue, 20 May 2014 07:59:28 +0000 (UTC) Received: from spoonbill.gentoo.org (unknown [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5DCA933F6E2 for ; Tue, 20 May 2014 07:59:27 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id F3E9C1818D for ; Tue, 20 May 2014 07:59:25 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1400572749.2996ee3ab94c875f7d000ce73ea1918d748793c5.ulm@gentoo> Subject: [gentoo-commits] proj/eselect:master commit in: man/, libs/, /, bin/ X-VCS-Repository: proj/eselect X-VCS-Files: ChangeLog bin/Makefile.am libs/Makefile.am man/Makefile.am X-VCS-Directories: man/ libs/ / bin/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 2996ee3ab94c875f7d000ce73ea1918d748793c5 X-VCS-Branch: master Date: Tue, 20 May 2014 07:59:25 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 5eaf3bab-448b-4077-b971-424f9e288de1 X-Archives-Hash: 8955a96664b86748469777bdef2519d5 commit: 2996ee3ab94c875f7d000ce73ea1918d748793c5 Author: Ulrich Müller gentoo org> AuthorDate: Tue May 20 07:59:09 2014 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Tue May 20 07:59:09 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/eselect.git;a=commit;h=2996ee3a Use "%" instead of "," as delimiter for sed. * bin/Makefile.am (dosed): * libs/Makefile.am (dosed): * man/Makefile.am (dosed): Use "%" instead of "," as delimiter. --- ChangeLog | 4 ++++ bin/Makefile.am | 8 ++++---- libs/Makefile.am | 8 ++++---- man/Makefile.am | 2 +- 4 files changed, 13 insertions(+), 9 deletions(-) diff --git a/ChangeLog b/ChangeLog index d5ddaef..d9dd9fd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2014-05-20 Ulrich Müller + * bin/Makefile.am (dosed): + * libs/Makefile.am (dosed): + * man/Makefile.am (dosed): Use "%" instead of "," as delimiter. + * configure.ac: Replace "git rev-parse" by "git describe", now that git-r3.eclass supports it (bug 489100). diff --git a/bin/Makefile.am b/bin/Makefile.am index 7ba2996..20902c1 100644 --- a/bin/Makefile.am +++ b/bin/Makefile.am @@ -1,10 +1,10 @@ bin_SCRIPTS = eselect EXTRA_DIST = eselect.in -dosed = @SED@ -e 's,\@BASH\@,$(BASH),g' \ - -e 's,\@DATADIR\@,$(datadir),g' \ - -e 's,\@EPREFIX\@,$(EPREFIX),g' \ - -e 's,\@VERSION\@,$(VERSION)$(EXTRAVERSION),g' +dosed = @SED@ -e 's%\@BASH\@%$(BASH)%g' \ + -e 's%\@DATADIR\@%$(datadir)%g' \ + -e 's%\@EPREFIX\@%$(EPREFIX)%g' \ + -e 's%\@VERSION\@%$(VERSION)$(EXTRAVERSION)%g' % : %.in @echo "Building $@..." diff --git a/libs/Makefile.am b/libs/Makefile.am index bab373e..027ef73 100644 --- a/libs/Makefile.am +++ b/libs/Makefile.am @@ -27,10 +27,10 @@ EXTRA_DIST = \ tests.bash.in dosed = @SED@ \ - -e 's,\@SED\@,@SED@,g' \ - -e 's,\@PORTAGEQ\@,@PORTAGEQ@,g' \ - -e 's,\@ENV_UPDATE\@,@ENV_UPDATE@,g' \ - -e 's,\@CANONICALISE\@,@CANONICALISE@,g' + -e 's%\@SED\@%@SED@%g' \ + -e 's%\@PORTAGEQ\@%@PORTAGEQ@%g' \ + -e 's%\@ENV_UPDATE\@%@ENV_UPDATE@%g' \ + -e 's%\@CANONICALISE\@%@CANONICALISE@%g' %.bash : %.bash.in @$(dosed) $< > $@ diff --git a/man/Makefile.am b/man/Makefile.am index f93b85b..c4bbdce 100644 --- a/man/Makefile.am +++ b/man/Makefile.am @@ -14,7 +14,7 @@ EXTRA_DIST = $(man_MANS) MAINTAINERCLEANFILES = Makefile.in # turn foo- into foo.eselect.5 -dosed = @SED@ -e 's,^\(.*\)-.*,\1\.eselect\.5,' +dosed = @SED@ -e 's%^\(.*\)-.*%\1\.eselect\.5%' install-data-local : $(foreach f, $(symlinks), install-symlink-$(f))