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 60803139345 for ; Sun, 18 Jul 2021 16:18:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A6C6FE0CCA; Sun, 18 Jul 2021 16:18:03 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 8A902E0CCA for ; Sun, 18 Jul 2021 16:18:03 +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 41BF8342B64 for ; Sun, 18 Jul 2021 16:18:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B06C57D7 for ; Sun, 18 Jul 2021 16:18:00 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1626625050.939dcfa053ece45f639b8a07e0744a3ea6b30715.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/icecream/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/icecream/icecream-1.0.0-r2.ebuild X-VCS-Directories: sys-devel/icecream/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 939dcfa053ece45f639b8a07e0744a3ea6b30715 X-VCS-Branch: master Date: Sun, 18 Jul 2021 16:18:00 +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: f9744396-ba08-4064-8346-cc60173bb9ad X-Archives-Hash: 6afcc8a4f695524cc076816a33f684e6 commit: 939dcfa053ece45f639b8a07e0744a3ea6b30715 Author: Conrad Kostecki gentoo org> AuthorDate: Sun Jul 18 11:12:17 2021 +0000 Commit: Conrad Kostecki gentoo 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 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 -}