Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/icecream/
Date: Sun, 18 Jul 2021 16:18:04
Message-Id: 1626625050.939dcfa053ece45f639b8a07e0744a3ea6b30715.conikost@gentoo
1 commit: 939dcfa053ece45f639b8a07e0744a3ea6b30715
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 18 11:12:17 2021 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 18 16:17:30 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=939dcfa0
7
8 sys-devel/icecream: drop old version
9
10 Closes: https://bugs.gentoo.org/781491
11 Package-Manager: Portage-3.0.20, Repoman-3.0.3
12 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
13
14 sys-devel/icecream/icecream-1.0.0-r2.ebuild | 69 -----------------------------
15 1 file changed, 69 deletions(-)
16
17 diff --git a/sys-devel/icecream/icecream-1.0.0-r2.ebuild b/sys-devel/icecream/icecream-1.0.0-r2.ebuild
18 deleted file mode 100644
19 index e7cc21f4e7f..00000000000
20 --- a/sys-devel/icecream/icecream-1.0.0-r2.ebuild
21 +++ /dev/null
22 @@ -1,69 +0,0 @@
23 -# Copyright 1999-2020 Gentoo Authors
24 -# Distributed under the terms of the GNU General Public License v2
25 -
26 -EAPI=6
27 -
28 -MY_P="${P/icecream/icecc}"
29 -
30 -inherit user
31 -
32 -DESCRIPTION="Distributed compiling of C(++) code across several machines; based on distcc"
33 -HOMEPAGE="https://github.com/icecc/icecream"
34 -SRC_URI="ftp://ftp.suse.com/pub/projects/${PN}/${MY_P}.tar.bz2"
35 -
36 -LICENSE="GPL-2"
37 -SLOT="0"
38 -KEYWORDS="~amd64 ~arm ~hppa ~ppc ~sparc ~x86"
39 -IUSE=""
40 -
41 -DEPEND="
42 - sys-libs/libcap-ng
43 -"
44 -RDEPEND="
45 - ${DEPEND}
46 - dev-util/shadowman
47 -"
48 -
49 -S="${WORKDIR}/${MY_P}"
50 -
51 -PATCHES=(
52 - "${FILESDIR}/${P}-libcap-ng.patch"
53 -)
54 -
55 -pkg_setup() {
56 - enewgroup icecream
57 - enewuser icecream -1 -1 /var/cache/icecream icecream
58 -}
59 -
60 -src_configure() {
61 - econf \
62 - --enable-shared --disable-static \
63 - --enable-clang-wrappers \
64 - --enable-clang-rewrite-includes
65 -}
66 -
67 -src_install() {
68 - default
69 - find "${D}" -name '*.la' -delete || die
70 -
71 - newconfd suse/sysconfig.icecream icecream
72 - newinitd "${FILESDIR}"/icecream-r2 icecream
73 -
74 - insinto /etc/logrotate.d
75 - newins suse/logrotate icecream
76 -
77 - insinto /usr/share/shadowman/tools
78 - newins - icecc <<<'/usr/libexec/icecc/bin'
79 -}
80 -
81 -pkg_prerm() {
82 - if [[ -z ${REPLACED_BY_VERSION} && ${ROOT} == / ]]; then
83 - eselect compiler-shadow remove icecc
84 - fi
85 -}
86 -
87 -pkg_postinst() {
88 - if [[ ${ROOT} == / ]]; then
89 - eselect compiler-shadow update icecc
90 - fi
91 -}