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 6F39A1382C5 for ; Sun, 7 Mar 2021 18:53:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C5A3DE091B; Sun, 7 Mar 2021 18:53:34 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 AF112E091B for ; Sun, 7 Mar 2021 18:53:34 +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 C69C933FAD1 for ; Sun, 7 Mar 2021 18:53:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CC46B58F for ; Sun, 7 Mar 2021 18:53:30 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1615143201.b9213e262c897736fc78b3184c6d846c7fd9ae7d.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-biology/seqan/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-biology/seqan/seqan-2.4.0.ebuild X-VCS-Directories: sci-biology/seqan/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: b9213e262c897736fc78b3184c6d846c7fd9ae7d X-VCS-Branch: master Date: Sun, 7 Mar 2021 18:53:30 +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: 14542060-3ca5-4f84-b2bc-3089fdf65a0e X-Archives-Hash: 3c5fdb0d46230d1af8fc7a613d2c68c6 commit: b9213e262c897736fc78b3184c6d846c7fd9ae7d Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Mar 7 18:47:40 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Mar 7 18:53:21 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9213e26 sci-biology/seqan: Drop 2.4.0 (r0) Package-Manager: Portage-3.0.16, Repoman-3.0.2 Signed-off-by: Andreas Sturmlechner gentoo.org> sci-biology/seqan/seqan-2.4.0.ebuild | 76 ------------------------------------ 1 file changed, 76 deletions(-) diff --git a/sci-biology/seqan/seqan-2.4.0.ebuild b/sci-biology/seqan/seqan-2.4.0.ebuild deleted file mode 100644 index cf73c6984d0..00000000000 --- a/sci-biology/seqan/seqan-2.4.0.ebuild +++ /dev/null @@ -1,76 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake multibuild toolchain-funcs - -DESCRIPTION="C++ Sequence Analysis Library" -HOMEPAGE="https://www.seqan.de/" - -if [[ ${PV} == *9999 ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/seqan/seqan.git" - EGIT_BRANCH="develop" -else - SRC_URI="https://github.com/seqan/seqan/archive/seqan-v${PV}.tar.gz" - KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" - S="${WORKDIR}"/seqan-seqan-v${PV} -fi - -LICENSE="BSD GPL-3" -SLOT="0" -IUSE="cpu_flags_x86_sse4_1 tools" -REQUIRED_USE="cpu_flags_x86_sse4_1" - -RDEPEND=" - app-arch/bzip2:= - sys-libs/zlib:= - !!sci-biology/seqan:2.0 - !!sci-biology/seqan:2.1 - !!sci-biology/seqan:2.2" -DEPEND="${RDEPEND}" - -PATCHES=( "${FILESDIR}"/${PN}-2.4.0-fix-pthread.patch ) - -pkg_setup() { - if [[ ${MERGE_TYPE} != binary ]]; then - use tools && tc-check-openmp - - MULTIBUILD_VARIANTS=( $(usev tools) library ) - fi -} - -src_configure() { - my_configure() { - local mycmakeargs=( - -DCMAKE_INSTALL_DOCDIR="share/doc/${PF}" - -DSEQAN_NO_DOX=ON - ) - case "${MULTIBUILD_ID}" in - tools) - mycmakeargs+=( - -DSEQAN_BUILD_SYSTEM=SEQAN_RELEASE_APPS - ) - ;; - library) - mycmakeargs+=( - -DSEQAN_BUILD_SYSTEM=SEQAN_RELEASE_LIBRARY - ) - ;; - *) - die "${MULTIBUILD_ID} is not recognized" - ;; - esac - cmake_src_configure - } - multibuild_foreach_variant my_configure -} - -src_compile() { - multibuild_foreach_variant cmake_src_compile -} - -src_install() { - multibuild_foreach_variant cmake_src_install -}