summaryrefslogtreecommitdiff
path: root/sci-chemistry/prodecomp
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2020-08-25 10:45:55 +0100
committerV3n3RiX <venerix@redcorelinux.org>2020-08-25 10:45:55 +0100
commit3cf7c3ef441822c889356fd1812ebf2944a59851 (patch)
treec513fe68548b40365c1c2ebfe35c58ad431cdd77 /sci-chemistry/prodecomp
parent05b8b0e0af1d72e51a3ee61522941bf7605cd01c (diff)
gentoo resync : 25.08.2020
Diffstat (limited to 'sci-chemistry/prodecomp')
-rw-r--r--sci-chemistry/prodecomp/Manifest3
-rw-r--r--sci-chemistry/prodecomp/metadata.xml18
-rw-r--r--sci-chemistry/prodecomp/prodecomp-3.0-r3.ebuild53
3 files changed, 0 insertions, 74 deletions
diff --git a/sci-chemistry/prodecomp/Manifest b/sci-chemistry/prodecomp/Manifest
deleted file mode 100644
index 6a19b100ad23..000000000000
--- a/sci-chemistry/prodecomp/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-DIST prodecomp-3.0.tar.bz2 18377446 BLAKE2B c6b4acf20a76029fc34eaea7a0adf1a04fb727b2e246fbcad27e2fa2bea606b2e712fb986fdd3e534534b32a22acae58a00bc2a3c6bde893d5befe91696523d3 SHA512 8d23f174e125d4c7776432a37b063d2f39af8497050bd7f7ff358c67d509b1eef2c2865596efae632855fd583fb52c233b67d0e667c6c2a03ba6f5a2f2ac9b0d
-EBUILD prodecomp-3.0-r3.ebuild 1191 BLAKE2B 25903c84628554ea37a9d20ee8fc0b0315d30526ed2c7e41bc6697235c04e3f9682ebb64aed7358009fd45502fcfe1fb66355c3f7209e39aeee6a1064cb34a5d SHA512 692a231b2e180d4a4114ce2441eb178adafb9ab725fcc2b1a0bdbeb675134ee823fb694546d033832393d4562c948073f47715ee29daaad9a938ce5112dd5f1e
-MISC metadata.xml 825 BLAKE2B 6874942c301b7d68f9184de8eb7482b790d2bd51c3a853132da3ed7bb0eacf54f608f816965bbfb27b81b90fecc3eee77596d73a78f5ec67703c53ad2bc2556d SHA512 94e41d5648ac93257f11f305bf2aaf926cc103240beec884142cda42c3d4e4fae5629e26b43cd945c945af706d5b5172fcd2c30ec6cb9067b152a22cd09bddcf
diff --git a/sci-chemistry/prodecomp/metadata.xml b/sci-chemistry/prodecomp/metadata.xml
deleted file mode 100644
index 168ce755cbc8..000000000000
--- a/sci-chemistry/prodecomp/metadata.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>sci-chemistry@gentoo.org</email>
- <name>Gentoo Chemistry Project</name>
- </maintainer>
- <longdescription>
- PRODECOMP (PROjection DECOMPosition) is a software tool for
- decomposition of 2D projections of high-dimensional NMR spectra to a set
- of components (defined in turn by one-dimensional "shapes").
- Simultaneous analysis of projections from one or several
- high-dimensional experiments provide unambigous chemical shifts for
- large spin systems. The latter can be used for backbone and side-chain
- assignments as well as structural studies of proteins
- (Malmodin and Billeter 2005; 2006; Staykova et al. 2008a,b).
- </longdescription>
-</pkgmetadata>
diff --git a/sci-chemistry/prodecomp/prodecomp-3.0-r3.ebuild b/sci-chemistry/prodecomp/prodecomp-3.0-r3.ebuild
deleted file mode 100644
index 65683c21b0fa..000000000000
--- a/sci-chemistry/prodecomp/prodecomp-3.0-r3.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-PYTHON_REQ_USE="tk"
-
-inherit python-single-r1
-
-DESCRIPTION="Decomposition-based analysis of NMR projections"
-HOMEPAGE="http://www.lundberg.gu.se/nmr/software.php?program=PRODECOMP"
-SRC_URI="mirror://gentoo/${P}.tar.bz2"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="examples"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-DEPEND="${PYTHON_DEPS}"
-RDEPEND="${DEPEND}
- $(python_gen_cond_dep '
- || (
- sci-libs/scipy-python2[${PYTHON_MULTI_USEDEP}]
- sci-libs/scipy[${PYTHON_MULTI_USEDEP}]
- )
- ')"
-
-S="${WORKDIR}"/NMRProjAnalys
-
-src_install() {
- python_export
- if use examples; then
- insinto /usr/share/${PN}
- doins -r ExampleData Results
- fi
-
- dodoc ProjTools/Manual.pdf
- rm -rf ProjTools/Manual.pdf ProdecompOutput || die
-
- python_moduleinto ${PN}
- python_domodule ProjTools/.
- python_optimize
-
- cat >> "${T}"/${PN} <<- EOF
- #!/bin/bash
- ${PYTHON} -O $(python_get_sitedir)/${PN}/ProjAnalys.py \$@
- EOF
- dobin "${T}"/${PN}
-
- dosym ../../../../share/doc/${PF}/Manual.pdf "${PYTHON_SITEDIR##${EPREFIX}}"/${PN}/Manual.pdf
-}