From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 035D5138334 for ; Sat, 20 Apr 2019 23:24:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2A23FE098F; Sat, 20 Apr 2019 23:20:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BE3D1E0990 for ; Sat, 20 Apr 2019 23:20:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6E438342086 for ; Sat, 20 Apr 2019 14:42:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DD702580 for ; Sat, 20 Apr 2019 14:42:03 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1555771306.56312573763e794982d7a7284e7e7d1a8a9f8eaa.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/git/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-vcs/git/git-9999-r1.ebuild dev-vcs/git/git-9999-r2.ebuild dev-vcs/git/git-9999-r3.ebuild dev-vcs/git/git-9999.ebuild X-VCS-Directories: dev-vcs/git/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 56312573763e794982d7a7284e7e7d1a8a9f8eaa X-VCS-Branch: master Date: Sat, 20 Apr 2019 14:42:03 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b2ca69ef-ff0e-406b-8cc0-8e4fb1753d84 X-Archives-Hash: ea580b3bdca7eb65e9329a696cb5f4c1 commit: 56312573763e794982d7a7284e7e7d1a8a9f8eaa Author: Lars Wendler gentoo org> AuthorDate: Sat Apr 20 14:41:46 2019 +0000 Commit: Lars Wendler gentoo org> CommitDate: Sat Apr 20 14:41:46 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56312573 dev-vcs/git: Build/install some more man-pages without USE="doc" Thanks-to: Cornelius Weig googlemail.com> Bug: https://bugs.gentoo.org/517794 Package-Manager: Portage-2.3.64, Repoman-2.3.12 Signed-off-by: Lars Wendler gentoo.org> dev-vcs/git/git-9999-r1.ebuild | 19 +++++++++---------- dev-vcs/git/git-9999-r2.ebuild | 19 +++++++++---------- dev-vcs/git/git-9999-r3.ebuild | 19 +++++++++---------- dev-vcs/git/git-9999.ebuild | 19 +++++++++---------- 4 files changed, 36 insertions(+), 40 deletions(-) diff --git a/dev-vcs/git/git-9999-r1.ebuild b/dev-vcs/git/git-9999-r1.ebuild index 5b1ca9489df..f9275181c5c 100644 --- a/dev-vcs/git/git-9999-r1.ebuild +++ b/dev-vcs/git/git-9999-r1.ebuild @@ -363,9 +363,10 @@ src_compile() { use iconv && use !elibc_glibc && nlsiconv+=( -liconv ) git_emake EXTLIBS="${EXTLIBS} ${nlsiconv[@]}" \ || die "emake svn-fe failed" + git_emake svn-fe.1 || die "emake svn-fe.1 failed" if use doc ; then - git_emake svn-fe.{1,html} \ - || die "emake svn-fe.1 svn-fe.html failed" + git_emake svn-fe.html \ + || die "svn-fe.html failed" fi popd &>/dev/null || die fi @@ -377,8 +378,8 @@ src_compile() { fi pushd contrib/subtree &>/dev/null || die - git_emake - use doc && git_emake doc + git_emake git-subtree{,.1} + use doc && git_emake git-subtree.html popd &>/dev/null || die pushd contrib/diff-highlight &>/dev/null || die @@ -394,9 +395,7 @@ src_compile() { } src_install() { - git_emake \ - install || \ - die "make install failed" + git_emake install || die "make install failed" if [[ ${CHOST} == *-darwin* ]]; then dobin contrib/credential/osxkeychain/git-credential-osxkeychain @@ -446,9 +445,9 @@ src_install() { # git-subtree pushd contrib/subtree &>/dev/null || die - git_emake install || die "Failed to emake install git-subtree" + git_emake install install-man || die "Failed to emake install install-man git-subtree" if use doc ; then - git_emake install-man install-doc || die "Failed to emake install-doc install-mangit-subtree" + git_emake install-html || die "Failed to emake install-html git-subtree" fi newdoc README README.git-subtree dodoc git-subtree.txt @@ -483,9 +482,9 @@ src_install() { if use subversion ; then pushd contrib/svn-fe &>/dev/null || die dobin svn-fe + doman svn-fe.1 dodoc svn-fe.txt if use doc ; then - doman svn-fe.1 docinto html dodoc svn-fe.html fi diff --git a/dev-vcs/git/git-9999-r2.ebuild b/dev-vcs/git/git-9999-r2.ebuild index 5b1ca9489df..f9275181c5c 100644 --- a/dev-vcs/git/git-9999-r2.ebuild +++ b/dev-vcs/git/git-9999-r2.ebuild @@ -363,9 +363,10 @@ src_compile() { use iconv && use !elibc_glibc && nlsiconv+=( -liconv ) git_emake EXTLIBS="${EXTLIBS} ${nlsiconv[@]}" \ || die "emake svn-fe failed" + git_emake svn-fe.1 || die "emake svn-fe.1 failed" if use doc ; then - git_emake svn-fe.{1,html} \ - || die "emake svn-fe.1 svn-fe.html failed" + git_emake svn-fe.html \ + || die "svn-fe.html failed" fi popd &>/dev/null || die fi @@ -377,8 +378,8 @@ src_compile() { fi pushd contrib/subtree &>/dev/null || die - git_emake - use doc && git_emake doc + git_emake git-subtree{,.1} + use doc && git_emake git-subtree.html popd &>/dev/null || die pushd contrib/diff-highlight &>/dev/null || die @@ -394,9 +395,7 @@ src_compile() { } src_install() { - git_emake \ - install || \ - die "make install failed" + git_emake install || die "make install failed" if [[ ${CHOST} == *-darwin* ]]; then dobin contrib/credential/osxkeychain/git-credential-osxkeychain @@ -446,9 +445,9 @@ src_install() { # git-subtree pushd contrib/subtree &>/dev/null || die - git_emake install || die "Failed to emake install git-subtree" + git_emake install install-man || die "Failed to emake install install-man git-subtree" if use doc ; then - git_emake install-man install-doc || die "Failed to emake install-doc install-mangit-subtree" + git_emake install-html || die "Failed to emake install-html git-subtree" fi newdoc README README.git-subtree dodoc git-subtree.txt @@ -483,9 +482,9 @@ src_install() { if use subversion ; then pushd contrib/svn-fe &>/dev/null || die dobin svn-fe + doman svn-fe.1 dodoc svn-fe.txt if use doc ; then - doman svn-fe.1 docinto html dodoc svn-fe.html fi diff --git a/dev-vcs/git/git-9999-r3.ebuild b/dev-vcs/git/git-9999-r3.ebuild index 5b1ca9489df..f9275181c5c 100644 --- a/dev-vcs/git/git-9999-r3.ebuild +++ b/dev-vcs/git/git-9999-r3.ebuild @@ -363,9 +363,10 @@ src_compile() { use iconv && use !elibc_glibc && nlsiconv+=( -liconv ) git_emake EXTLIBS="${EXTLIBS} ${nlsiconv[@]}" \ || die "emake svn-fe failed" + git_emake svn-fe.1 || die "emake svn-fe.1 failed" if use doc ; then - git_emake svn-fe.{1,html} \ - || die "emake svn-fe.1 svn-fe.html failed" + git_emake svn-fe.html \ + || die "svn-fe.html failed" fi popd &>/dev/null || die fi @@ -377,8 +378,8 @@ src_compile() { fi pushd contrib/subtree &>/dev/null || die - git_emake - use doc && git_emake doc + git_emake git-subtree{,.1} + use doc && git_emake git-subtree.html popd &>/dev/null || die pushd contrib/diff-highlight &>/dev/null || die @@ -394,9 +395,7 @@ src_compile() { } src_install() { - git_emake \ - install || \ - die "make install failed" + git_emake install || die "make install failed" if [[ ${CHOST} == *-darwin* ]]; then dobin contrib/credential/osxkeychain/git-credential-osxkeychain @@ -446,9 +445,9 @@ src_install() { # git-subtree pushd contrib/subtree &>/dev/null || die - git_emake install || die "Failed to emake install git-subtree" + git_emake install install-man || die "Failed to emake install install-man git-subtree" if use doc ; then - git_emake install-man install-doc || die "Failed to emake install-doc install-mangit-subtree" + git_emake install-html || die "Failed to emake install-html git-subtree" fi newdoc README README.git-subtree dodoc git-subtree.txt @@ -483,9 +482,9 @@ src_install() { if use subversion ; then pushd contrib/svn-fe &>/dev/null || die dobin svn-fe + doman svn-fe.1 dodoc svn-fe.txt if use doc ; then - doman svn-fe.1 docinto html dodoc svn-fe.html fi diff --git a/dev-vcs/git/git-9999.ebuild b/dev-vcs/git/git-9999.ebuild index 5b1ca9489df..f9275181c5c 100644 --- a/dev-vcs/git/git-9999.ebuild +++ b/dev-vcs/git/git-9999.ebuild @@ -363,9 +363,10 @@ src_compile() { use iconv && use !elibc_glibc && nlsiconv+=( -liconv ) git_emake EXTLIBS="${EXTLIBS} ${nlsiconv[@]}" \ || die "emake svn-fe failed" + git_emake svn-fe.1 || die "emake svn-fe.1 failed" if use doc ; then - git_emake svn-fe.{1,html} \ - || die "emake svn-fe.1 svn-fe.html failed" + git_emake svn-fe.html \ + || die "svn-fe.html failed" fi popd &>/dev/null || die fi @@ -377,8 +378,8 @@ src_compile() { fi pushd contrib/subtree &>/dev/null || die - git_emake - use doc && git_emake doc + git_emake git-subtree{,.1} + use doc && git_emake git-subtree.html popd &>/dev/null || die pushd contrib/diff-highlight &>/dev/null || die @@ -394,9 +395,7 @@ src_compile() { } src_install() { - git_emake \ - install || \ - die "make install failed" + git_emake install || die "make install failed" if [[ ${CHOST} == *-darwin* ]]; then dobin contrib/credential/osxkeychain/git-credential-osxkeychain @@ -446,9 +445,9 @@ src_install() { # git-subtree pushd contrib/subtree &>/dev/null || die - git_emake install || die "Failed to emake install git-subtree" + git_emake install install-man || die "Failed to emake install install-man git-subtree" if use doc ; then - git_emake install-man install-doc || die "Failed to emake install-doc install-mangit-subtree" + git_emake install-html || die "Failed to emake install-html git-subtree" fi newdoc README README.git-subtree dodoc git-subtree.txt @@ -483,9 +482,9 @@ src_install() { if use subversion ; then pushd contrib/svn-fe &>/dev/null || die dobin svn-fe + doman svn-fe.1 dodoc svn-fe.txt if use doc ; then - doman svn-fe.1 docinto html dodoc svn-fe.html fi