* [gentoo-commits] repo/gentoo:master commit in: app-portage/no-distcc-env/
@ 2019-07-22 18:36 Matt Turner
0 siblings, 0 replies; 2+ messages in thread
From: Matt Turner @ 2019-07-22 18:36 UTC (permalink / raw
To: gentoo-commits
commit: bbf87b340dc007fba1b4229d5569e8b4ae399436
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 22 18:22:13 2019 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Mon Jul 22 18:35:46 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbf87b34
app-portage/no-distcc-env: New package
Bug: https://bugs.gentoo.org/669978
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
app-portage/no-distcc-env/metadata.xml | 8 +++++
.../no-distcc-env/no-distcc-env-9999.ebuild | 36 ++++++++++++++++++++++
2 files changed, 44 insertions(+)
diff --git a/app-portage/no-distcc-env/metadata.xml b/app-portage/no-distcc-env/metadata.xml
new file mode 100644
index 00000000000..b58e8386fcb
--- /dev/null
+++ b/app-portage/no-distcc-env/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>mattst88@gentoo.org</email>
+ <name>Matt Turner</name>
+ </maintainer>
+</pkgmetadata>
diff --git a/app-portage/no-distcc-env/no-distcc-env-9999.ebuild b/app-portage/no-distcc-env/no-distcc-env-9999.ebuild
new file mode 100644
index 00000000000..3a4ae008947
--- /dev/null
+++ b/app-portage/no-distcc-env/no-distcc-env-9999.ebuild
@@ -0,0 +1,36 @@
+# Copyright 2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/${PN}.git"
+
+if [[ ${PV} = 9999* ]]; then
+ GIT_ECLASS="git-r3"
+fi
+
+inherit ${GIT_ECLASS}
+
+DESCRIPTION="package.env files to disable distcc on a per-package basis"
+HOMEPAGE="https://gitweb.gentoo.org/proj/no-distcc-env.git/"
+if [[ ${PV} = 9999* ]]; then
+ SRC_URI=""
+else
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd"
+ SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+fi
+
+LICENSE="public-domain"
+SLOT="0"
+IUSE=""
+
+src_unpack() {
+ default
+ [[ $PV = 9999* ]] && git-r3_src_unpack
+}
+
+src_install() {
+ insinto /etc/portage
+ doins -r "${WORKDIR}/${P}"/env
+ doins -r "${WORKDIR}/${P}"/package.env
+}
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-portage/no-distcc-env/
@ 2024-04-25 18:49 Matt Turner
0 siblings, 0 replies; 2+ messages in thread
From: Matt Turner @ 2024-04-25 18:49 UTC (permalink / raw
To: gentoo-commits
commit: 6d5f42b7fff239f81128027228abf1c694120e9e
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 25 18:48:07 2024 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Thu Apr 25 18:48:07 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d5f42b7
app-portage/no-distcc-env: Bump to EAPI=8
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
app-portage/no-distcc-env/no-distcc-env-9999.ebuild | 20 +++++---------------
1 file changed, 5 insertions(+), 15 deletions(-)
diff --git a/app-portage/no-distcc-env/no-distcc-env-9999.ebuild b/app-portage/no-distcc-env/no-distcc-env-9999.ebuild
index 40d847edebb2..dbbeea27910c 100644
--- a/app-portage/no-distcc-env/no-distcc-env-9999.ebuild
+++ b/app-portage/no-distcc-env/no-distcc-env-9999.ebuild
@@ -1,33 +1,23 @@
-# Copyright 2019-2021 Gentoo Authors
+# Copyright 2019-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/${PN}.git"
-if [[ ${PV} = 9999* ]]; then
+if [[ ${PV} == 9999* ]]; then
GIT_ECLASS="git-r3"
+else
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
fi
inherit ${GIT_ECLASS}
DESCRIPTION="package.env files to disable distcc on a per-package basis"
HOMEPAGE="https://gitweb.gentoo.org/proj/no-distcc-env.git/"
-if [[ ${PV} = 9999* ]]; then
- SRC_URI=""
-else
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
- SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-fi
LICENSE="public-domain"
SLOT="0"
-IUSE=""
-
-src_unpack() {
- default
- [[ ${PV} = 9999* ]] && git-r3_src_unpack
-}
src_install() {
insinto /etc/portage
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-04-25 18:49 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-07-22 18:36 [gentoo-commits] repo/gentoo:master commit in: app-portage/no-distcc-env/ Matt Turner
-- strict thread matches above, loose matches on Subject: below --
2024-04-25 18:49 Matt Turner
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox