From 0f558761aa2dee1017b4751e4017205e015a9560 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Wed, 29 Jun 2022 12:04:12 +0100 Subject: gentoo resync : 29.12.2022 --- sci-biology/prints/Manifest | 2 +- sci-biology/prints/prints-39.0-r1.ebuild | 44 -------------------------------- sci-biology/prints/prints-39.0-r2.ebuild | 44 ++++++++++++++++++++++++++++++++ 3 files changed, 45 insertions(+), 45 deletions(-) delete mode 100644 sci-biology/prints/prints-39.0-r1.ebuild create mode 100644 sci-biology/prints/prints-39.0-r2.ebuild (limited to 'sci-biology/prints') diff --git a/sci-biology/prints/Manifest b/sci-biology/prints/Manifest index aff9f9a9349a..eee2b82ee3af 100644 --- a/sci-biology/prints/Manifest +++ b/sci-biology/prints/Manifest @@ -1,3 +1,3 @@ DIST prints-39.0.tar.bz2 26277011 BLAKE2B a815e93f41694c76d62c6809f05457b286333ad103852eb493b0e723c54a088825f262a64ff8db0e47ff8a97c37fbf670c6c7967aabb303fd7d454982e4dff5e SHA512 4ea48a2a0892739ac4e32a6309922b7b4ad01f9d2f847f7c42c7e6a00e8f56bab0771d272adcaed1f85516ea93245fb8c7864762c4699023a8d85d61c012bdc7 -EBUILD prints-39.0-r1.ebuild 1044 BLAKE2B 607892ae4ae91c40570da9f3d8cf2f422f404a05b2bac7afbde751c011c88545092464e0661e80fd4f2852d4f0fccb9565483f6bd1cd3e828290c5595c7c14dd SHA512 056458b00dbcee0f8720e1a74512ab513836d3ec762cd0b764c4fe3c2a8f450b76af21bff93e75fd37d0b00317bac7087c24032683125b26bbf9699b62f9cf9d +EBUILD prints-39.0-r2.ebuild 1043 BLAKE2B ce22669244961c26b533922140280ce3e6561f2318086f1302e51d79383984f8f48fe001e63098883f8008e45d557f3bec710114ef55a526c38469f8d2aa4ec9 SHA512 e0e25d1a5611530ab9eb8a21443a66e8847f61c37051ae3a7a895c661fbf325c1743c7a059421c9d35f9c2577d1096c3f5acb76dfe4ddfd50e06038f005c4fc8 MISC metadata.xml 884 BLAKE2B 2f44013f0925749670db4c405034f7aaa4bf2ffc4cab4cde22595489eeba2ebb03eb4a4c79a87d1b33d7bd89742c232940c313fd693c8551b2e670902ae1c336 SHA512 ce4a4c14cd10efdd051fa1089b8ef1692d56ee73f8755bf03dc8d28e88b4d8ee5c64064dac1bcc7f60a19eabd0494c0903708d898a59cdc99c725b8575c0d4cc diff --git a/sci-biology/prints/prints-39.0-r1.ebuild b/sci-biology/prints/prints-39.0-r1.ebuild deleted file mode 100644 index f9833579e71f..000000000000 --- a/sci-biology/prints/prints-39.0-r1.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -MY_PV="${PV/./_}" - -DESCRIPTION="A protein motif fingerprint database" -HOMEPAGE="http://www.bioinf.man.ac.uk/dbbrowser/PRINTS/" -SRC_URI="mirror://gentoo/${P}.tar.bz2" - -LICENSE="public-domain" -SLOT="0" -# Minimal build keeps only the indexed files (if applicable) and the -# documentation. The non-indexed database is not installed. -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" -IUSE="emboss minimal" - -DEPEND="emboss? ( sci-biology/emboss )" -RDEPEND="${DEPEND}" - -src_compile() { - if use emboss; then - mkdir PRINTS || die - einfo - einfo "Indexing PRINTS for usage with EMBOSS" - EMBOSS_DATA="." printsextract -auto -infile prints${MY_PV}.dat || die "Indexing PRINTS failed" - einfo - fi -} - -src_install() { - dodoc README - - if ! use minimal; then - insinto /usr/share/${PN} - doins newpr.lis ${PN}${MY_PV}.{all.fasta,dat,kdat,lis,nam,vsn} - fi - - if use emboss; then - insinto /usr/share/EMBOSS/data/${PN^^} - doins -r ${PN^^}/. - fi -} diff --git a/sci-biology/prints/prints-39.0-r2.ebuild b/sci-biology/prints/prints-39.0-r2.ebuild new file mode 100644 index 000000000000..9fb721842798 --- /dev/null +++ b/sci-biology/prints/prints-39.0-r2.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +MY_PV="${PV/./_}" + +DESCRIPTION="A protein motif fingerprint database" +HOMEPAGE="http://www.bioinf.man.ac.uk/dbbrowser/PRINTS/" +SRC_URI="mirror://gentoo/${P}.tar.bz2" + +LICENSE="public-domain" +SLOT="0" +# Minimal build keeps only the indexed files (if applicable) and the +# documentation. The non-indexed database is not installed. +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="emboss minimal" + +BDEPEND="emboss? ( sci-biology/emboss )" +RDEPEND="${BDEPEND}" + +src_compile() { + if use emboss; then + mkdir PRINTS || die + einfo + einfo "Indexing PRINTS for usage with EMBOSS" + EMBOSS_DATA="." printsextract -auto -infile prints${MY_PV}.dat || die "Indexing PRINTS failed" + einfo + fi +} + +src_install() { + dodoc README + + if ! use minimal; then + insinto /usr/share/${PN} + doins newpr.lis ${PN}${MY_PV}.{all.fasta,dat,kdat,lis,nam,vsn} + fi + + if use emboss; then + insinto /usr/share/EMBOSS/data/${PN^^} + doins -r ${PN^^}/. + fi +} -- cgit v1.2.3