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 082F313835A for ; Sun, 20 Jun 2021 20:04:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5B56BE084A; Sun, 20 Jun 2021 20:04:11 +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 43150E084A for ; Sun, 20 Jun 2021 20:04:11 +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 628BC3406DD for ; Sun, 20 Jun 2021 20:04:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 03FDE78E for ; Sun, 20 Jun 2021 20:04:09 +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: <1624219429.76c0d35a1a7694289c8bf7fb3ebc19a159546e86.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-biology/bamtools/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-biology/bamtools/Manifest sci-biology/bamtools/bamtools-2.5.2.ebuild X-VCS-Directories: sci-biology/bamtools/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 76c0d35a1a7694289c8bf7fb3ebc19a159546e86 X-VCS-Branch: master Date: Sun, 20 Jun 2021 20:04:09 +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: 07742f14-d661-4df4-a742-2147d96408c8 X-Archives-Hash: 1746c0f21864925c017a846f442e648e commit: 76c0d35a1a7694289c8bf7fb3ebc19a159546e86 Author: David Seifert gentoo org> AuthorDate: Sun Jun 20 20:03:49 2021 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Jun 20 20:03:49 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76c0d35a sci-biology/bamtools: add 2.5.2 Bug: https://bugs.gentoo.org/787200 Signed-off-by: David Seifert gentoo.org> sci-biology/bamtools/Manifest | 1 + sci-biology/bamtools/bamtools-2.5.2.ebuild | 33 ++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+) diff --git a/sci-biology/bamtools/Manifest b/sci-biology/bamtools/Manifest index 424c08d5159..e6d9b12cb13 100644 --- a/sci-biology/bamtools/Manifest +++ b/sci-biology/bamtools/Manifest @@ -1 +1,2 @@ DIST bamtools-2.5.1.tar.gz 549750 BLAKE2B c00b42b10e074e2c6b06f8bc9277a57080b9e99cd10080b1ad9052d59a3db353b33ecf6c30642d1651897396ea65e1e19cb15db0d58a89d4375fe34a8ec38e55 SHA512 f2c761c5bf923cf2f3db3dc54e40b4781307106b9177784f930aab619bd11fae3b343f3cfd232524580d39f0526a2a2f18efcf820fe4d9c951406bdb6b953afb +DIST bamtools-2.5.2.tar.gz 245729 BLAKE2B 5034ea1ec16b205488e421461ed74d8a98eae87eb7fc061e5928ad15512497a5338c9dbacbde51009c940acd55c25fccc2f3be2840d2821a8755a2a0b0370944 SHA512 540a4664abfbd1304600c17d47424c312a46e4238b0f0868f4037ddcc54c4487424e3d7820153084b3b512be8a4603e3ec5377a73311a617061460de1bfe49ef diff --git a/sci-biology/bamtools/bamtools-2.5.2.ebuild b/sci-biology/bamtools/bamtools-2.5.2.ebuild new file mode 100644 index 00000000000..a809a651df6 --- /dev/null +++ b/sci-biology/bamtools/bamtools-2.5.2.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake + +DESCRIPTION="A programmer's API and an end-user's toolkit for handling BAM files" +HOMEPAGE="https://github.com/pezmaster31/bamtools" + +if [[ ${PV} == *9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/pezmaster31/bamtools.git" +else + SRC_URI="https://github.com/pezmaster31/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="MIT" +SLOT="0/${PV}" # no stable ABI yet + +RDEPEND=" + >=dev-libs/jsoncpp-1.8.0:= + sys-libs/zlib:=" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +src_prepare() { + # delete bundled libs, just to be safe + rm -rf src/third_party/{gtest-1.6.0,jsoncpp} || die + + cmake_src_prepare +}