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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6E67E15800F for ; Fri, 10 Feb 2023 13:54:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BCA04E07E1; Fri, 10 Feb 2023 13:54:33 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A9299E07E1 for ; Fri, 10 Feb 2023 13:54:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EEA8F340D2A for ; Fri, 10 Feb 2023 13:54:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 89380531 for ; Fri, 10 Feb 2023 13:54:31 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1676037260.26ecd7ebde4d5ce43a9f26cda9d3c13ed2bb0907.andrewammerlaan@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-chemistry/concoord/ X-VCS-Repository: proj/sci X-VCS-Files: sci-chemistry/concoord/concoord-2.1.ebuild X-VCS-Directories: sci-chemistry/concoord/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 26ecd7ebde4d5ce43a9f26cda9d3c13ed2bb0907 X-VCS-Branch: master Date: Fri, 10 Feb 2023 13:54:31 +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: 5a56675e-8d51-4d60-926c-a6d141391fc4 X-Archives-Hash: 0cf563d6c45859fc2a4fb1cae74a6ede commit: 26ecd7ebde4d5ce43a9f26cda9d3c13ed2bb0907 Author: Andrew Ammerlaan gentoo org> AuthorDate: Fri Feb 10 13:54:20 2023 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Fri Feb 10 13:54:20 2023 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=26ecd7eb sci-chemistry/concoord: drop 2.1 Signed-off-by: Andrew Ammerlaan gentoo.org> sci-chemistry/concoord/concoord-2.1.ebuild | 32 ------------------------------ 1 file changed, 32 deletions(-) diff --git a/sci-chemistry/concoord/concoord-2.1.ebuild b/sci-chemistry/concoord/concoord-2.1.ebuild deleted file mode 100644 index 2926f76c8..000000000 --- a/sci-chemistry/concoord/concoord-2.1.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DESCRIPTION="Protein conformations around a known structure based on geometric restrictions" -HOMEPAGE="https://www.mpibpc.mpg.de/groups/de_groot/concoord/concoord.html" -SRC_URI=" - amd64? ( https://www3.mpibpc.mpg.de/groups/de_groot/concoord/concoord2.1_linux_x86_64.tgz ) - x86? ( https://www3.mpibpc.mpg.de/groups/de_groot/concoord/concoord2.1_linux_i386.tgz )" - -SLOT="0" -KEYWORDS="-* ~amd64 ~x86 ~amd64-linux ~x86-linux" -LICENSE="all-rights-reserved" - -QA_PREBUILT="opt/${PN}/bin/*" - -S="${WORKDIR}"/${PN}${PV} - -src_install() { - insinto /opt/${PN}/ - rm lib/*.a || die - doins -r lib - exeinto /opt/${PN}/bin - doexe bin/* - cat >> "${T}"/60${PN} <<- EOF - CONCOORDLIB="${EPREFIX}/opt/${PN}/lib" - CONCOORDBIN="${EPREFIX}/opt/${PN}/bin" - PATH="${EPREFIX}/opt/${PN}/bin" - EOF - doenvd "${T}"/60${PN} -}