* [gentoo-commits] repo/gentoo:master commit in: sys-devel/icecream/
@ 2017-08-26 13:37 Michał Górny
0 siblings, 0 replies; 18+ messages in thread
From: Michał Górny @ 2017-08-26 13:37 UTC (permalink / raw
To: gentoo-commits
commit: 059abe657a830d853d864404157071a6d93cb1fe
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 10 20:10:25 2017 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Aug 26 13:36:55 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=059abe65
sys-devel/icecream: Install dev-util/shadowman data file
sys-devel/icecream/icecream-1.0.0-r2.ebuild | 3 +++
1 file changed, 3 insertions(+)
diff --git a/sys-devel/icecream/icecream-1.0.0-r2.ebuild b/sys-devel/icecream/icecream-1.0.0-r2.ebuild
index ec2858a94ac..187928a2290 100644
--- a/sys-devel/icecream/icecream-1.0.0-r2.ebuild
+++ b/sys-devel/icecream/icecream-1.0.0-r2.ebuild
@@ -48,4 +48,7 @@ src_install() {
insinto /etc/logrotate.d
newins suse/logrotate icecream
+
+ insinto /usr/share/shadowman/tools
+ newins - icecc <<<'/usr/libexec/icecc/bin'
}
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/icecream/
@ 2017-08-26 13:37 Michał Górny
0 siblings, 0 replies; 18+ messages in thread
From: Michał Górny @ 2017-08-26 13:37 UTC (permalink / raw
To: gentoo-commits
commit: 19614203ed03dd6e9bf2f21e74093a16411deb02
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 10 20:13:27 2017 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Aug 26 13:36:56 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19614203
sys-devel/icecream: Use dev-util/shadowman for postinst/prerm
sys-devel/icecream/icecream-1.0.0-r2.ebuild | 21 ++++++++++++++++++---
1 file changed, 18 insertions(+), 3 deletions(-)
diff --git a/sys-devel/icecream/icecream-1.0.0-r2.ebuild b/sys-devel/icecream/icecream-1.0.0-r2.ebuild
index 187928a2290..ead3cbfcfa5 100644
--- a/sys-devel/icecream/icecream-1.0.0-r2.ebuild
+++ b/sys-devel/icecream/icecream-1.0.0-r2.ebuild
@@ -13,13 +13,16 @@ SRC_URI="ftp://ftp.suse.com/pub/projects/${PN}/${MY_P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~sparc ~x86"
+KEYWORDS="~amd64 ~x86"
IUSE=""
-RDEPEND="
+DEPEND="
sys-libs/libcap-ng
"
-DEPEND="${RDEPEND}"
+RDEPEND="
+ ${DEPEND}
+ dev-util/shadowman
+"
S="${WORKDIR}/${MY_P}"
@@ -52,3 +55,15 @@ src_install() {
insinto /usr/share/shadowman/tools
newins - icecc <<<'/usr/libexec/icecc/bin'
}
+
+pkg_prerm() {
+ if [[ -z ${REPLACED_BY_VERSION} && ${ROOT} == / ]]; then
+ eselect compiler-shadow remove icecc
+ fi
+}
+
+pkg_postinst() {
+ if [[ ${ROOT} == / ]]; then
+ eselect compiler-shadow update icecc
+ fi
+}
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/icecream/
@ 2017-08-26 13:37 Michał Górny
0 siblings, 0 replies; 18+ messages in thread
From: Michał Górny @ 2017-08-26 13:37 UTC (permalink / raw
To: gentoo-commits
commit: b3c8bfdfbd712d01523a3cdefb59f9653f0a9c62
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 10 20:05:28 2017 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Aug 26 13:36:55 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3c8bfdf
sys-devel/icecream: Convert to EAPI=6
sys-devel/icecream/icecream-1.0.0-r2.ebuild | 51 +++++++++++++++++++++++++++++
1 file changed, 51 insertions(+)
diff --git a/sys-devel/icecream/icecream-1.0.0-r2.ebuild b/sys-devel/icecream/icecream-1.0.0-r2.ebuild
new file mode 100644
index 00000000000..ec2858a94ac
--- /dev/null
+++ b/sys-devel/icecream/icecream-1.0.0-r2.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+MY_P="${P/icecream/icecc}"
+
+inherit user
+
+DESCRIPTION="icecc is a program for distributed compiling of C(++) code across several machines; based on distcc"
+HOMEPAGE="https://github.com/icecc/icecream"
+SRC_URI="ftp://ftp.suse.com/pub/projects/${PN}/${MY_P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~sparc ~x86"
+IUSE=""
+
+RDEPEND="
+ sys-libs/libcap-ng
+"
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}/${MY_P}"
+
+PATCHES=(
+ "${FILESDIR}/${P}-libcap-ng.patch"
+)
+
+pkg_setup() {
+ enewgroup icecream
+ enewuser icecream -1 -1 /var/cache/icecream icecream
+}
+
+src_configure() {
+ econf \
+ --enable-shared --disable-static \
+ --enable-clang-wrappers \
+ --enable-clang-rewrite-includes
+}
+
+src_install() {
+ default
+ find "${D}" -name '*.la' -delete || die
+
+ newconfd suse/sysconfig.icecream icecream
+ newinitd "${FILESDIR}"/icecream-r2 icecream
+
+ insinto /etc/logrotate.d
+ newins suse/logrotate icecream
+}
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/icecream/
@ 2017-09-02 14:56 Michael Palimaka
0 siblings, 0 replies; 18+ messages in thread
From: Michael Palimaka @ 2017-09-02 14:56 UTC (permalink / raw
To: gentoo-commits
commit: 712d53e16d55a3d6da803753528cdceac2ed3341
Author: Francesco Turco <fturco <AT> fastmail <DOT> fm>
AuthorDate: Wed Aug 23 20:51:56 2017 +0000
Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Sat Sep 2 14:56:07 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=712d53e1
sys-devel/icecream: update make.conf path
sys-devel/icecream/icecream-0.9.7-r1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys-devel/icecream/icecream-0.9.7-r1.ebuild b/sys-devel/icecream/icecream-0.9.7-r1.ebuild
index dbac37a2a68..03105d9b5c3 100644
--- a/sys-devel/icecream/icecream-0.9.7-r1.ebuild
+++ b/sys-devel/icecream/icecream-0.9.7-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=4
@@ -67,7 +67,7 @@ pkg_postinst() {
elog "ICECC_VERSION in /etc/conf.d/icecream"
elog ' ICECC_VERSION=<filename_of_archive_containing_your_environment>'
elog
- elog "To use icecream with portage add the following line to /etc/make.conf"
+ elog "To use icecream with portage add the following line to /etc/portage/make.conf"
elog ' PREROOTPATH=/usr/lib/icecc/bin'
elog
elog "To use icecream with normal make use (e.g. in /etc/profile)"
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/icecream/
@ 2017-12-01 22:19 David Seifert
0 siblings, 0 replies; 18+ messages in thread
From: David Seifert @ 2017-12-01 22:19 UTC (permalink / raw
To: gentoo-commits
commit: 766eec8768840543debdd1e9ebb81e9039836292
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 1 21:17:17 2017 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Fri Dec 1 22:17:57 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=766eec87
sys-devel/icecream: [QA] Fix DESCRIPTION.toolong
sys-devel/icecream/icecream-0.9.7-r1.ebuild | 2 +-
sys-devel/icecream/icecream-1.0.0-r1.ebuild | 2 +-
sys-devel/icecream/icecream-1.0.0-r2.ebuild | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/sys-devel/icecream/icecream-0.9.7-r1.ebuild b/sys-devel/icecream/icecream-0.9.7-r1.ebuild
index 03105d9b5c3..1c43a464442 100644
--- a/sys-devel/icecream/icecream-0.9.7-r1.ebuild
+++ b/sys-devel/icecream/icecream-0.9.7-r1.ebuild
@@ -7,7 +7,7 @@ inherit autotools base user
MY_P=icecc-${PV}
-DESCRIPTION="icecc is a program for distributed compiling of C(++) code across several machines; based on distcc"
+DESCRIPTION="Distributed compiling of C(++) code across several machines; based on distcc"
HOMEPAGE="http://en.opensuse.org/Icecream"
SRC_URI="ftp://ftp.suse.com/pub/projects/${PN}/${MY_P}.tar.bz2"
diff --git a/sys-devel/icecream/icecream-1.0.0-r1.ebuild b/sys-devel/icecream/icecream-1.0.0-r1.ebuild
index e43d004caa2..20c5f3e4bb2 100644
--- a/sys-devel/icecream/icecream-1.0.0-r1.ebuild
+++ b/sys-devel/icecream/icecream-1.0.0-r1.ebuild
@@ -7,7 +7,7 @@ MY_P="${P/icecream/icecc}"
inherit base eutils user
-DESCRIPTION="icecc is a program for distributed compiling of C(++) code across several machines; based on distcc"
+DESCRIPTION="Distributed compiling of C(++) code across several machines; based on distcc"
HOMEPAGE="https://github.com/icecc/icecream"
SRC_URI="ftp://ftp.suse.com/pub/projects/${PN}/${MY_P}.tar.bz2"
diff --git a/sys-devel/icecream/icecream-1.0.0-r2.ebuild b/sys-devel/icecream/icecream-1.0.0-r2.ebuild
index ead3cbfcfa5..68485a1e7f5 100644
--- a/sys-devel/icecream/icecream-1.0.0-r2.ebuild
+++ b/sys-devel/icecream/icecream-1.0.0-r2.ebuild
@@ -7,7 +7,7 @@ MY_P="${P/icecream/icecc}"
inherit user
-DESCRIPTION="icecc is a program for distributed compiling of C(++) code across several machines; based on distcc"
+DESCRIPTION="Distributed compiling of C(++) code across several machines; based on distcc"
HOMEPAGE="https://github.com/icecc/icecream"
SRC_URI="ftp://ftp.suse.com/pub/projects/${PN}/${MY_P}.tar.bz2"
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/icecream/
@ 2018-03-11 6:08 Matt Turner
0 siblings, 0 replies; 18+ messages in thread
From: Matt Turner @ 2018-03-11 6:08 UTC (permalink / raw
To: gentoo-commits
commit: 55decd44d9a078b15629cefd62bfa7cf64d500ff
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 11 05:58:37 2018 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sun Mar 11 05:58:37 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55decd44
sys-devel/icecream-1.0.0-r2: added ~hppa, bug 643082
sys-devel/icecream/icecream-1.0.0-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-devel/icecream/icecream-1.0.0-r2.ebuild b/sys-devel/icecream/icecream-1.0.0-r2.ebuild
index 68485a1e7f5..6cef8bb2f8e 100644
--- a/sys-devel/icecream/icecream-1.0.0-r2.ebuild
+++ b/sys-devel/icecream/icecream-1.0.0-r2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="ftp://ftp.suse.com/pub/projects/${PN}/${MY_P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~hppa ~x86"
IUSE=""
DEPEND="
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/icecream/
@ 2018-03-14 6:00 Markus Meier
0 siblings, 0 replies; 18+ messages in thread
From: Markus Meier @ 2018-03-14 6:00 UTC (permalink / raw
To: gentoo-commits
commit: 72fc401a3c5465c66382e4468b5cd7a9d5ab070d
Author: Markus Meier <maekke <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 14 05:58:00 2018 +0000
Commit: Markus Meier <maekke <AT> gentoo <DOT> org>
CommitDate: Wed Mar 14 05:58:00 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72fc401a
sys-devel/icecream: add ~arm, bug #643082
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="arm"
sys-devel/icecream/icecream-1.0.0-r2.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys-devel/icecream/icecream-1.0.0-r2.ebuild b/sys-devel/icecream/icecream-1.0.0-r2.ebuild
index 6cef8bb2f8e..d12f928a572 100644
--- a/sys-devel/icecream/icecream-1.0.0-r2.ebuild
+++ b/sys-devel/icecream/icecream-1.0.0-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -13,7 +13,7 @@ SRC_URI="ftp://ftp.suse.com/pub/projects/${PN}/${MY_P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~hppa ~x86"
+KEYWORDS="~amd64 ~arm ~hppa ~x86"
IUSE=""
DEPEND="
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/icecream/
@ 2018-03-17 9:58 Pacho Ramos
0 siblings, 0 replies; 18+ messages in thread
From: Pacho Ramos @ 2018-03-17 9:58 UTC (permalink / raw
To: gentoo-commits
commit: 8a0ff27f2aeb04ec3dcfd6f7b059204af579ba81
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 17 09:52:43 2018 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sat Mar 17 09:55:43 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a0ff27f
sys-devel/icecream: Reassign due to Project:SuSE being disbanded
Package-Manager: Portage-2.3.24, Repoman-2.3.6
sys-devel/icecream/metadata.xml | 4 ----
1 file changed, 4 deletions(-)
diff --git a/sys-devel/icecream/metadata.xml b/sys-devel/icecream/metadata.xml
index 55acc851705..3afc743a5f9 100644
--- a/sys-devel/icecream/metadata.xml
+++ b/sys-devel/icecream/metadata.xml
@@ -5,10 +5,6 @@
<email>cluster@gentoo.org</email>
<name>Gentoo Cluster Project</name>
</maintainer>
- <maintainer type="project">
- <email>suse@gentoo.org</email>
- <name>SUSE</name>
- </maintainer>
<upstream>
<remote-id type="github">icecc/icecream</remote-id>
</upstream>
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/icecream/
@ 2018-03-17 21:42 Matt Turner
0 siblings, 0 replies; 18+ messages in thread
From: Matt Turner @ 2018-03-17 21:42 UTC (permalink / raw
To: gentoo-commits
commit: 392919733976acef0d2be98f7c84d3c0a829c34d
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 17 21:41:00 2018 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sat Mar 17 21:41:59 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39291973
sys-devel/icecream-1.0.0-r2: added ~ppc, bug 643082
sys-devel/icecream/icecream-1.0.0-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-devel/icecream/icecream-1.0.0-r2.ebuild b/sys-devel/icecream/icecream-1.0.0-r2.ebuild
index d12f928a572..a93f81246bf 100644
--- a/sys-devel/icecream/icecream-1.0.0-r2.ebuild
+++ b/sys-devel/icecream/icecream-1.0.0-r2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="ftp://ftp.suse.com/pub/projects/${PN}/${MY_P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~x86"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~x86"
IUSE=""
DEPEND="
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/icecream/
@ 2020-02-15 10:03 David Seifert
0 siblings, 0 replies; 18+ messages in thread
From: David Seifert @ 2020-02-15 10:03 UTC (permalink / raw
To: gentoo-commits
commit: d9e86b9d3a0045f6895a081316214b99801f34f4
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 15 10:03:00 2020 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sat Feb 15 10:03:00 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9e86b9d
sys-devel/icecream: [QA] inherit ltprune.eclass directly
Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: David Seifert <soap <AT> gentoo.org>
sys-devel/icecream/icecream-1.0.0-r1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys-devel/icecream/icecream-1.0.0-r1.ebuild b/sys-devel/icecream/icecream-1.0.0-r1.ebuild
index 20c5f3e4bb2..ab7e41ef9c2 100644
--- a/sys-devel/icecream/icecream-1.0.0-r1.ebuild
+++ b/sys-devel/icecream/icecream-1.0.0-r1.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
MY_P="${P/icecream/icecc}"
-inherit base eutils user
+inherit base eutils ltprune user
DESCRIPTION="Distributed compiling of C(++) code across several machines; based on distcc"
HOMEPAGE="https://github.com/icecc/icecream"
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/icecream/
@ 2020-04-14 7:28 Sergei Trofimovich
0 siblings, 0 replies; 18+ messages in thread
From: Sergei Trofimovich @ 2020-04-14 7:28 UTC (permalink / raw
To: gentoo-commits
commit: 37d9901bbbca7e51c9112c52b9cf2b0530b02f69
Author: Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Tue Apr 14 07:13:46 2020 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Tue Apr 14 07:28:38 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37d9901b
sys-devel/icecream: keyworded 1.0.0-r2 for sparc, bug #643082
Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Rolf Eike Beer <eike <AT> sf-mail.de>
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
sys-devel/icecream/icecream-1.0.0-r2.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys-devel/icecream/icecream-1.0.0-r2.ebuild b/sys-devel/icecream/icecream-1.0.0-r2.ebuild
index a93f81246bf..e7cc21f4e7f 100644
--- a/sys-devel/icecream/icecream-1.0.0-r2.ebuild
+++ b/sys-devel/icecream/icecream-1.0.0-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -13,7 +13,7 @@ SRC_URI="ftp://ftp.suse.com/pub/projects/${PN}/${MY_P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~x86"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~sparc ~x86"
IUSE=""
DEPEND="
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/icecream/
@ 2021-07-18 16:18 Conrad Kostecki
0 siblings, 0 replies; 18+ messages in thread
From: Conrad Kostecki @ 2021-07-18 16:18 UTC (permalink / raw
To: gentoo-commits
commit: 308c3d52f1b34e45e086d0c5264a86bf943def40
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 18 11:11:28 2021 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sun Jul 18 16:17:29 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=308c3d52
sys-devel/icecream: migrate to GLEP 81
Bug: https://bugs.gentoo.org/781506
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
sys-devel/icecream/icecream-1.0.0-r3.ebuild | 62 +++++++++++++++++++++++++++++
1 file changed, 62 insertions(+)
diff --git a/sys-devel/icecream/icecream-1.0.0-r3.ebuild b/sys-devel/icecream/icecream-1.0.0-r3.ebuild
new file mode 100644
index 00000000000..53e06f4ae2b
--- /dev/null
+++ b/sys-devel/icecream/icecream-1.0.0-r3.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_P="${P/icecream/icecc}"
+
+DESCRIPTION="Distributed compiling of C(++) code across several machines; based on distcc"
+HOMEPAGE="https://github.com/icecc/icecream"
+SRC_URI="ftp://ftp.suse.com/pub/projects/${PN}/${MY_P}.tar.bz2"
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~sparc ~x86"
+
+DEPEND="sys-libs/libcap-ng"
+RDEPEND="
+ ${DEPEND}
+ acct-group/icecream
+ acct-user/icecream
+ dev-util/shadowman
+"
+
+PATCHES=( "${FILESDIR}/${P}-libcap-ng.patch" )
+
+src_configure() {
+ local myeconfargs=(
+ --enable-shared --disable-static
+ --enable-clang-wrappers
+ --enable-clang-rewrite-includes
+ )
+
+ econf "${myeconfargs[@]}"
+}
+
+src_install() {
+ default
+
+ newconfd suse/sysconfig.icecream icecream
+ newinitd "${FILESDIR}"/icecream-r2 icecream
+
+ insinto /etc/logrotate.d
+ newins suse/logrotate icecream
+
+ insinto /usr/share/shadowman/tools
+ newins - icecc <<<'/usr/libexec/icecc/bin'
+
+ find "${D}" -name '*.la' -delete || die
+}
+
+pkg_prerm() {
+ if [[ -z ${REPLACED_BY_VERSION} && ${ROOT} == / ]]; then
+ eselect compiler-shadow remove icecc
+ fi
+}
+
+pkg_postinst() {
+ if [[ ${ROOT} == / ]]; then
+ eselect compiler-shadow update icecc
+ fi
+}
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/icecream/
@ 2021-07-18 16:18 Conrad Kostecki
0 siblings, 0 replies; 18+ messages in thread
From: Conrad Kostecki @ 2021-07-18 16:18 UTC (permalink / raw
To: gentoo-commits
commit: 939dcfa053ece45f639b8a07e0744a3ea6b30715
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 18 11:12:17 2021 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sun Jul 18 16:17:30 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=939dcfa0
sys-devel/icecream: drop old version
Closes: https://bugs.gentoo.org/781491
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
sys-devel/icecream/icecream-1.0.0-r2.ebuild | 69 -----------------------------
1 file changed, 69 deletions(-)
diff --git a/sys-devel/icecream/icecream-1.0.0-r2.ebuild b/sys-devel/icecream/icecream-1.0.0-r2.ebuild
deleted file mode 100644
index e7cc21f4e7f..00000000000
--- a/sys-devel/icecream/icecream-1.0.0-r2.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MY_P="${P/icecream/icecc}"
-
-inherit user
-
-DESCRIPTION="Distributed compiling of C(++) code across several machines; based on distcc"
-HOMEPAGE="https://github.com/icecc/icecream"
-SRC_URI="ftp://ftp.suse.com/pub/projects/${PN}/${MY_P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~sparc ~x86"
-IUSE=""
-
-DEPEND="
- sys-libs/libcap-ng
-"
-RDEPEND="
- ${DEPEND}
- dev-util/shadowman
-"
-
-S="${WORKDIR}/${MY_P}"
-
-PATCHES=(
- "${FILESDIR}/${P}-libcap-ng.patch"
-)
-
-pkg_setup() {
- enewgroup icecream
- enewuser icecream -1 -1 /var/cache/icecream icecream
-}
-
-src_configure() {
- econf \
- --enable-shared --disable-static \
- --enable-clang-wrappers \
- --enable-clang-rewrite-includes
-}
-
-src_install() {
- default
- find "${D}" -name '*.la' -delete || die
-
- newconfd suse/sysconfig.icecream icecream
- newinitd "${FILESDIR}"/icecream-r2 icecream
-
- insinto /etc/logrotate.d
- newins suse/logrotate icecream
-
- insinto /usr/share/shadowman/tools
- newins - icecc <<<'/usr/libexec/icecc/bin'
-}
-
-pkg_prerm() {
- if [[ -z ${REPLACED_BY_VERSION} && ${ROOT} == / ]]; then
- eselect compiler-shadow remove icecc
- fi
-}
-
-pkg_postinst() {
- if [[ ${ROOT} == / ]]; then
- eselect compiler-shadow update icecc
- fi
-}
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/icecream/
@ 2021-12-21 4:19 Sam James
0 siblings, 0 replies; 18+ messages in thread
From: Sam James @ 2021-12-21 4:19 UTC (permalink / raw
To: gentoo-commits
commit: b133beeb3fd21ef368c3fe9b8b05b026ec5cd562
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 21 04:10:01 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Dec 21 04:19:19 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b133beeb
sys-devel/icecream: update EAPI 7 -> 8, post-review fixes
- Use EAPI 8
- Use conventional double quotes everywhere
- Unconditionally install systemd units (see small files policy)
- Adapt pkg_* for EAPI 7+ (${ROOT} suffix)
- Style changes (place eclass variables before inherit in general, whitespace)
- Drop unnecessary econf arg (--enable-fast-install)
- Add missing dependencies (libarchive, lzo)
Bug: https://bugs.gentoo.org/602492
Closes: https://bugs.gentoo.org/527376
Closes: https://bugs.gentoo.org/642674
Closes: https://bugs.gentoo.org/828135
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-devel/icecream/icecream-1.3.1.ebuild | 64 +++++++++++++++-----------------
1 file changed, 29 insertions(+), 35 deletions(-)
diff --git a/sys-devel/icecream/icecream-1.3.1.ebuild b/sys-devel/icecream/icecream-1.3.1.ebuild
index d9443057aaaf..72ab4fad07b2 100644
--- a/sys-devel/icecream/icecream-1.3.1.ebuild
+++ b/sys-devel/icecream/icecream-1.3.1.ebuild
@@ -1,63 +1,57 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
+AT_NOELIBTOOLIZE="yes"
inherit autotools systemd tmpfiles
-DESCRIPTION='Distributed compiling of C(++) code across several machines; based on distcc'
-HOMEPAGE='https://github.com/icecc/icecream'
+DESCRIPTION="Distributed compiler with a central scheduler to share build load"
+HOMEPAGE="https://github.com/icecc/icecream"
SRC_URI="https://github.com/icecc/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-LICENSE='GPL-2'
-SLOT='0'
+LICENSE="GPL-2"
+SLOT="0"
KEYWORDS="~amd64 ~arm ~hppa ~ppc ~sparc ~x86"
-IUSE='systemd'
-DEPEND='
+DEPEND="app-arch/libarchive:=
+ app-arch/zstd:=
acct-user/icecream
acct-group/icecream
- sys-libs/libcap-ng
- app-text/docbook2X
- app-arch/zstd
-'
-RDEPEND="
- ${DEPEND}
- dev-util/shadowman
- systemd? ( sys-apps/systemd )
-"
-
-AT_NOELIBTOOLIZE='yes'
+ dev-libs/lzo:2
+ sys-libs/libcap-ng"
+RDEPEND="${DEPEND}
+ dev-util/shadowman"
+BDEPEND="app-text/docbook2X"
src_prepare() {
default
+
eautoreconf
}
src_configure() {
econf \
--enable-clang-rewrite-includes \
- --enable-clang-wrappers \
- --disable-fast-install
+ --enable-clang-wrappers
}
src_install() {
default
- find "${D}" -name '*.la' -delete || die
-
- if use systemd; then
- systemd_dounit "${FILESDIR}/iceccd.service"
- systemd_dounit "${FILESDIR}/icecc-scheduler.service"
- else
- newconfd suse/sysconfig.icecream icecream
- newinitd "${FILESDIR}/icecream.openrc" icecream
- fi
+
+ find "${ED}" -name '*.la' -delete || die
+
+ systemd_dounit "${FILESDIR}"/iceccd.service
+ systemd_dounit "${FILESDIR}"/icecc-scheduler.service
+
+ newconfd suse/sysconfig.icecream icecream
+ newinitd "${FILESDIR}"/icecream.openrc icecream
keepdir /var/log/icecream
fowners icecream:icecream /var/log/icecream
- fperms 0750 /var/log/icecream
+ fperms 0750 /var/log/icecream
- newtmpfiles "${FILESDIR}/icecream-tmpfiles.conf" icecream.conf
+ newtmpfiles "${FILESDIR}"/icecream-tmpfiles.conf icecream.conf
insinto /etc/logrotate.d
newins suse/logrotate icecream
@@ -67,11 +61,11 @@ src_install() {
doins suse/icecc-scheduler.xml
insinto /usr/share/shadowman/tools
- newins - icecc <<<'/usr/libexec/icecc/bin'
+ newins - icecc <<<"${EPREFIX}"/usr/libexec/icecc/bin
}
pkg_prerm() {
- if [[ -z ${REPLACED_BY_VERSION} && ${ROOT} == / ]]; then
+ if [[ -z ${REPLACED_BY_VERSION} && -z ${ROOT} ]]; then
eselect compiler-shadow remove icecc
fi
}
@@ -79,7 +73,7 @@ pkg_prerm() {
pkg_postinst() {
tmpfiles_process icecream.conf
- if [[ ${ROOT} == / ]]; then
+ if [[ -z ${ROOT} ]]; then
eselect compiler-shadow update icecc
fi
}
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/icecream/
@ 2022-03-12 0:06 Sam James
0 siblings, 0 replies; 18+ messages in thread
From: Sam James @ 2022-03-12 0:06 UTC (permalink / raw
To: gentoo-commits
commit: 87556f241ec6b6b8154afdd7ac88643226b69751
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 12 00:03:15 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Mar 12 00:03:15 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87556f24
sys-devel/icecream: drop 1.0.0-r3
Closes: https://bugs.gentoo.org/602492
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-devel/icecream/Manifest | 1 -
sys-devel/icecream/icecream-1.0.0-r3.ebuild | 62 -----------------------------
2 files changed, 63 deletions(-)
diff --git a/sys-devel/icecream/Manifest b/sys-devel/icecream/Manifest
index 1b0adc19c2ea..42b3865eabe0 100644
--- a/sys-devel/icecream/Manifest
+++ b/sys-devel/icecream/Manifest
@@ -1,2 +1 @@
-DIST icecc-1.0.0.tar.bz2 485534 BLAKE2B 31a978a4a461f20716a95277426e79d4c298c212d36361dbbd68c5affcbbbe2f0c71f743cc7b731d86fbb5f09ab556182482f56e1382be8572d019f80a004fc8 SHA512 4292ecef6232112c3f4531cb2290a55f70c5c24095fef0865af2526d49fc10a043ffb06d22552e161f671c18ff1ab62795c3a63e2c8cb26f869cf65d0938af2a
DIST icecream-1.3.1.tar.gz 224068 BLAKE2B d7d66dadf27b0b88ab706bf217ce2b0d33b5db2ed95e48c4e9dcbd000931688ad6809ecbd4e14f0f3889bcebddc8543bd364c9dda09ba71e5dc04d0a5a2122d5 SHA512 d850394b4093defcf2c50bb3f9306348a45bf17d21f4730baeee7125998c2a548b7b3a7597785855d7e388e84830769bf0ec1c4136330a4c8e359cbdd111f5da
diff --git a/sys-devel/icecream/icecream-1.0.0-r3.ebuild b/sys-devel/icecream/icecream-1.0.0-r3.ebuild
deleted file mode 100644
index 53e06f4ae2be..000000000000
--- a/sys-devel/icecream/icecream-1.0.0-r3.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-MY_P="${P/icecream/icecc}"
-
-DESCRIPTION="Distributed compiling of C(++) code across several machines; based on distcc"
-HOMEPAGE="https://github.com/icecc/icecream"
-SRC_URI="ftp://ftp.suse.com/pub/projects/${PN}/${MY_P}.tar.bz2"
-S="${WORKDIR}/${MY_P}"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~sparc ~x86"
-
-DEPEND="sys-libs/libcap-ng"
-RDEPEND="
- ${DEPEND}
- acct-group/icecream
- acct-user/icecream
- dev-util/shadowman
-"
-
-PATCHES=( "${FILESDIR}/${P}-libcap-ng.patch" )
-
-src_configure() {
- local myeconfargs=(
- --enable-shared --disable-static
- --enable-clang-wrappers
- --enable-clang-rewrite-includes
- )
-
- econf "${myeconfargs[@]}"
-}
-
-src_install() {
- default
-
- newconfd suse/sysconfig.icecream icecream
- newinitd "${FILESDIR}"/icecream-r2 icecream
-
- insinto /etc/logrotate.d
- newins suse/logrotate icecream
-
- insinto /usr/share/shadowman/tools
- newins - icecc <<<'/usr/libexec/icecc/bin'
-
- find "${D}" -name '*.la' -delete || die
-}
-
-pkg_prerm() {
- if [[ -z ${REPLACED_BY_VERSION} && ${ROOT} == / ]]; then
- eselect compiler-shadow remove icecc
- fi
-}
-
-pkg_postinst() {
- if [[ ${ROOT} == / ]]; then
- eselect compiler-shadow update icecc
- fi
-}
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/icecream/
@ 2022-03-12 0:06 Sam James
0 siblings, 0 replies; 18+ messages in thread
From: Sam James @ 2022-03-12 0:06 UTC (permalink / raw
To: gentoo-commits
commit: 9f386cb76f9339f7b62ab5eb525b342944fbf1b8
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 12 00:05:47 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Mar 12 00:05:47 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f386cb7
sys-devel/icecream: add 1.4
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-devel/icecream/Manifest | 1 +
sys-devel/icecream/icecream-1.4.ebuild | 80 ++++++++++++++++++++++++++++++++++
2 files changed, 81 insertions(+)
diff --git a/sys-devel/icecream/Manifest b/sys-devel/icecream/Manifest
index 42b3865eabe0..7641b4101f3a 100644
--- a/sys-devel/icecream/Manifest
+++ b/sys-devel/icecream/Manifest
@@ -1 +1,2 @@
DIST icecream-1.3.1.tar.gz 224068 BLAKE2B d7d66dadf27b0b88ab706bf217ce2b0d33b5db2ed95e48c4e9dcbd000931688ad6809ecbd4e14f0f3889bcebddc8543bd364c9dda09ba71e5dc04d0a5a2122d5 SHA512 d850394b4093defcf2c50bb3f9306348a45bf17d21f4730baeee7125998c2a548b7b3a7597785855d7e388e84830769bf0ec1c4136330a4c8e359cbdd111f5da
+DIST icecream-1.4.tar.gz 232707 BLAKE2B 5fdebea4d0eba4a99e8c7c01acab46ec323a887d3fe9944da23ae7089403a9ebf7bf9870ca61af49578af6adf49679341f7070f9e3da3e8c7c2f50d9d4e7c3fe SHA512 b77dd630c51b7b6b4d7fa06cd14a580891b974fe2d50074f7a3b129adc558fc7ce19b3a3716a6798c2fd0f7d0d3a1bc295bbedee3ed6dafa015f309c7c2590f5
diff --git a/sys-devel/icecream/icecream-1.4.ebuild b/sys-devel/icecream/icecream-1.4.ebuild
new file mode 100644
index 000000000000..8b29c30afdb4
--- /dev/null
+++ b/sys-devel/icecream/icecream-1.4.ebuild
@@ -0,0 +1,80 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+AT_NOELIBTOOLIZE="yes"
+inherit autotools systemd tmpfiles
+
+DESCRIPTION="Distributed compiler with a central scheduler to share build load"
+HOMEPAGE="https://github.com/icecc/icecream"
+SRC_URI="https://github.com/icecc/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~sparc ~x86"
+
+DEPEND="app-arch/libarchive:=
+ app-arch/zstd:=
+ acct-user/icecream
+ acct-group/icecream
+ dev-libs/lzo:2
+ sys-libs/libcap-ng"
+RDEPEND="${DEPEND}
+ dev-util/shadowman"
+BDEPEND="app-text/docbook2X
+ virtual/pkgconfig"
+
+src_prepare() {
+ default
+
+ eautoreconf
+}
+
+src_configure() {
+ econf \
+ --enable-clang-rewrite-includes \
+ --enable-clang-wrappers
+}
+
+src_install() {
+ default
+
+ find "${ED}" -name '*.la' -delete || die
+
+ systemd_dounit "${FILESDIR}"/iceccd.service
+ systemd_dounit "${FILESDIR}"/icecc-scheduler.service
+
+ newconfd suse/sysconfig.icecream icecream
+ newinitd "${FILESDIR}"/icecream.openrc icecream
+
+ keepdir /var/log/icecream
+ fowners icecream:icecream /var/log/icecream
+ fperms 0750 /var/log/icecream
+
+ newtmpfiles "${FILESDIR}"/icecream-tmpfiles.conf icecream.conf
+
+ insinto /etc/logrotate.d
+ newins suse/logrotate icecream
+
+ insinto /etc/firewalld/services
+ doins suse/iceccd.xml
+ doins suse/icecc-scheduler.xml
+
+ insinto /usr/share/shadowman/tools
+ newins - icecc <<<"${EPREFIX}"/usr/libexec/icecc/bin
+}
+
+pkg_prerm() {
+ if [[ -z ${REPLACED_BY_VERSION} && -z ${ROOT} ]] ; then
+ eselect compiler-shadow remove icecc
+ fi
+}
+
+pkg_postinst() {
+ tmpfiles_process icecream.conf
+
+ if [[ -z ${ROOT} ]] ; then
+ eselect compiler-shadow update icecc
+ fi
+}
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/icecream/
@ 2022-10-14 1:26 Sam James
0 siblings, 0 replies; 18+ messages in thread
From: Sam James @ 2022-10-14 1:26 UTC (permalink / raw
To: gentoo-commits
commit: f50d0eb1ba49cd626ed4f6736d53f51cd8f9cff6
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 14 00:28:49 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Oct 14 01:26:31 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f50d0eb1
sys-devel/icecream: drop 1.3.1
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-devel/icecream/Manifest | 1 -
sys-devel/icecream/icecream-1.3.1.ebuild | 79 --------------------------------
2 files changed, 80 deletions(-)
diff --git a/sys-devel/icecream/Manifest b/sys-devel/icecream/Manifest
index 7641b4101f3a..715a372facd9 100644
--- a/sys-devel/icecream/Manifest
+++ b/sys-devel/icecream/Manifest
@@ -1,2 +1 @@
-DIST icecream-1.3.1.tar.gz 224068 BLAKE2B d7d66dadf27b0b88ab706bf217ce2b0d33b5db2ed95e48c4e9dcbd000931688ad6809ecbd4e14f0f3889bcebddc8543bd364c9dda09ba71e5dc04d0a5a2122d5 SHA512 d850394b4093defcf2c50bb3f9306348a45bf17d21f4730baeee7125998c2a548b7b3a7597785855d7e388e84830769bf0ec1c4136330a4c8e359cbdd111f5da
DIST icecream-1.4.tar.gz 232707 BLAKE2B 5fdebea4d0eba4a99e8c7c01acab46ec323a887d3fe9944da23ae7089403a9ebf7bf9870ca61af49578af6adf49679341f7070f9e3da3e8c7c2f50d9d4e7c3fe SHA512 b77dd630c51b7b6b4d7fa06cd14a580891b974fe2d50074f7a3b129adc558fc7ce19b3a3716a6798c2fd0f7d0d3a1bc295bbedee3ed6dafa015f309c7c2590f5
diff --git a/sys-devel/icecream/icecream-1.3.1.ebuild b/sys-devel/icecream/icecream-1.3.1.ebuild
deleted file mode 100644
index 72ab4fad07b2..000000000000
--- a/sys-devel/icecream/icecream-1.3.1.ebuild
+++ /dev/null
@@ -1,79 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-AT_NOELIBTOOLIZE="yes"
-inherit autotools systemd tmpfiles
-
-DESCRIPTION="Distributed compiler with a central scheduler to share build load"
-HOMEPAGE="https://github.com/icecc/icecream"
-SRC_URI="https://github.com/icecc/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~sparc ~x86"
-
-DEPEND="app-arch/libarchive:=
- app-arch/zstd:=
- acct-user/icecream
- acct-group/icecream
- dev-libs/lzo:2
- sys-libs/libcap-ng"
-RDEPEND="${DEPEND}
- dev-util/shadowman"
-BDEPEND="app-text/docbook2X"
-
-src_prepare() {
- default
-
- eautoreconf
-}
-
-src_configure() {
- econf \
- --enable-clang-rewrite-includes \
- --enable-clang-wrappers
-}
-
-src_install() {
- default
-
- find "${ED}" -name '*.la' -delete || die
-
- systemd_dounit "${FILESDIR}"/iceccd.service
- systemd_dounit "${FILESDIR}"/icecc-scheduler.service
-
- newconfd suse/sysconfig.icecream icecream
- newinitd "${FILESDIR}"/icecream.openrc icecream
-
- keepdir /var/log/icecream
- fowners icecream:icecream /var/log/icecream
- fperms 0750 /var/log/icecream
-
- newtmpfiles "${FILESDIR}"/icecream-tmpfiles.conf icecream.conf
-
- insinto /etc/logrotate.d
- newins suse/logrotate icecream
-
- insinto /etc/firewalld/services
- doins suse/iceccd.xml
- doins suse/icecc-scheduler.xml
-
- insinto /usr/share/shadowman/tools
- newins - icecc <<<"${EPREFIX}"/usr/libexec/icecc/bin
-}
-
-pkg_prerm() {
- if [[ -z ${REPLACED_BY_VERSION} && -z ${ROOT} ]]; then
- eselect compiler-shadow remove icecc
- fi
-}
-
-pkg_postinst() {
- tmpfiles_process icecream.conf
-
- if [[ -z ${ROOT} ]]; then
- eselect compiler-shadow update icecc
- fi
-}
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/icecream/
@ 2023-09-18 9:55 WANG Xuerui
0 siblings, 0 replies; 18+ messages in thread
From: WANG Xuerui @ 2023-09-18 9:55 UTC (permalink / raw
To: gentoo-commits
commit: 0c9790ea1a2c1425c7b7d614e9017e9ed8d25dab
Author: WANG Xuerui <xen0n <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 14 08:08:56 2023 +0000
Commit: WANG Xuerui <xen0n <AT> gentoo <DOT> org>
CommitDate: Mon Sep 18 09:54:48 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c9790ea
sys-devel/icecream: keyword 1.4 for ~loong
Signed-off-by: WANG Xuerui <xen0n <AT> gentoo.org>
sys-devel/icecream/icecream-1.4.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys-devel/icecream/icecream-1.4.ebuild b/sys-devel/icecream/icecream-1.4.ebuild
index 8b29c30afdb4..487a71efceb4 100644
--- a/sys-devel/icecream/icecream-1.4.ebuild
+++ b/sys-devel/icecream/icecream-1.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/icecc/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~hppa ~loong ~ppc ~sparc ~x86"
DEPEND="app-arch/libarchive:=
app-arch/zstd:=
^ permalink raw reply related [flat|nested] 18+ messages in thread
end of thread, other threads:[~2023-09-18 9:55 UTC | newest]
Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-07-18 16:18 [gentoo-commits] repo/gentoo:master commit in: sys-devel/icecream/ Conrad Kostecki
-- strict thread matches above, loose matches on Subject: below --
2023-09-18 9:55 WANG Xuerui
2022-10-14 1:26 Sam James
2022-03-12 0:06 Sam James
2022-03-12 0:06 Sam James
2021-12-21 4:19 Sam James
2021-07-18 16:18 Conrad Kostecki
2020-04-14 7:28 Sergei Trofimovich
2020-02-15 10:03 David Seifert
2018-03-17 21:42 Matt Turner
2018-03-17 9:58 Pacho Ramos
2018-03-14 6:00 Markus Meier
2018-03-11 6:08 Matt Turner
2017-12-01 22:19 David Seifert
2017-09-02 14:56 Michael Palimaka
2017-08-26 13:37 Michał Górny
2017-08-26 13:37 Michał Górny
2017-08-26 13:37 Michał Górny
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox