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 67A841382C5 for ; Thu, 18 Feb 2021 18:57:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9C795E08E8; Thu, 18 Feb 2021 18:57:03 +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 823A2E08E8 for ; Thu, 18 Feb 2021 18:57:03 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 4AD11340D00 for ; Thu, 18 Feb 2021 18:57:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 467154E9 for ; Thu, 18 Feb 2021 18:57:00 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1613674530.0276a93d551fce39081c5da14e6b3255949a6c3f.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/bliss/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/bliss/bliss-0.73-r1.ebuild X-VCS-Directories: sci-libs/bliss/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 0276a93d551fce39081c5da14e6b3255949a6c3f X-VCS-Branch: master Date: Thu, 18 Feb 2021 18:57: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: e0ba577a-f868-496e-8f09-09da443f860d X-Archives-Hash: 43dfdd117c3c07a2cbe04a93e79121f9 commit: 0276a93d551fce39081c5da14e6b3255949a6c3f Author: Jakov Smolic sartura hr> AuthorDate: Thu Feb 18 18:55:30 2021 +0000 Commit: David Seifert gentoo org> CommitDate: Thu Feb 18 18:55:30 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0276a93d sci-libs/bliss: Remove old Signed-off-by: Jakov Smolic sartura.hr> Signed-off-by: David Seifert gentoo.org> sci-libs/bliss/bliss-0.73-r1.ebuild | 48 ------------------------------------- 1 file changed, 48 deletions(-) diff --git a/sci-libs/bliss/bliss-0.73-r1.ebuild b/sci-libs/bliss/bliss-0.73-r1.ebuild deleted file mode 100644 index de9e1f38527..00000000000 --- a/sci-libs/bliss/bliss-0.73-r1.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit autotools - -SRC_URI="http://www.tcs.hut.fi/Software/${PN}/${P}.zip" -DESCRIPTION="Compute Automorphism Groups and Canonical Labelings of Graphs" -HOMEPAGE="http://www.tcs.hut.fi/Software/bliss/" - -LICENSE="LGPL-3" -SLOT="0/1" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" -IUSE="doc gmp static-libs" - -RDEPEND="gmp? ( dev-libs/gmp:0= )" -DEPEND="${RDEPEND} - app-arch/unzip - doc? ( app-doc/doxygen )" - -#patches from http://pkgs.fedoraproject.org/cgit/rpms/bliss.git/tree/ -PATCHES=( - "${FILESDIR}"/${P}-error.patch - "${FILESDIR}"/${P}-rehn.patch - "${FILESDIR}"/${P}-autotools.patch -) - -src_prepare() { - default - cp "${FILESDIR}/${P}.1.in" "${PN}.1.in" || die - rm Makefile || die - eautoreconf -} - -src_configure() { - econf $(use_with gmp) $(use_enable static-libs static) -} - -src_compile() { - emake all $(usex doc html "") -} - -src_install() { - default - use static-libs || find "${ED}" -name '*.la' -delete - use doc && dodoc -r html -}