summaryrefslogtreecommitdiff
path: root/sci-chemistry/pymol-plugins-promol
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/pymol-plugins-promol
parent05b8b0e0af1d72e51a3ee61522941bf7605cd01c (diff)
gentoo resync : 25.08.2020
Diffstat (limited to 'sci-chemistry/pymol-plugins-promol')
-rw-r--r--sci-chemistry/pymol-plugins-promol/Manifest3
-rw-r--r--sci-chemistry/pymol-plugins-promol/metadata.xml8
-rw-r--r--sci-chemistry/pymol-plugins-promol/pymol-plugins-promol-3.0.2-r1.ebuild60
3 files changed, 0 insertions, 71 deletions
diff --git a/sci-chemistry/pymol-plugins-promol/Manifest b/sci-chemistry/pymol-plugins-promol/Manifest
deleted file mode 100644
index 7a00b495997e..000000000000
--- a/sci-chemistry/pymol-plugins-promol/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-DIST pymol-plugins-promol-3.0.2.zip 2219295 BLAKE2B 7e81de98ee20f6b22fabeca35b0825250c3b839b9ea51f6c0b51f15062c73810474bd377d0e39d3c2ac0d61f1b5cfb4174c53f1dfc67a11dfcd707eee417a7ed SHA512 e40e9c08e2cb1b223390d751bb1f32069924f1c23aa2b4bdafb6689254e6aa673d4412aca587792f660869f97a389db8a9183033d8b2394c998d0f911104d8d7
-EBUILD pymol-plugins-promol-3.0.2-r1.ebuild 1560 BLAKE2B c4f52140e4baa9f5a6beddfbace78ff111a3f78f8bdfd0fb220b0e17555175d48533079a798f98eda32b7880f23a37fdbacd0904a988871a1b8eb91f6e9a23fb SHA512 1b3962ba9471e9c2d6af5ebac500a317b44fe261ceeeb8ee8f156211d9aad39ce720e29be5d859a5867df5b87904b2084eb95d21d63806ba0452222ef96ac6cb
-MISC metadata.xml 271 BLAKE2B a446884cbe7a6789e0bcd82759f57bf1ab7b29c5ab714057ffa821c90f799d1fa9f9310c187ee4c3a8ae2476f6ea9d15f368045779f1581e68d02802c61c884c SHA512 3e6e6047a29e07123b81279cae1de17bc4bd4c3d7d8a8d26560114a18185f473d038fc220fa81c7213fa203ce197bad8b1c272d9b7e41cd770a953fa6308ff92
diff --git a/sci-chemistry/pymol-plugins-promol/metadata.xml b/sci-chemistry/pymol-plugins-promol/metadata.xml
deleted file mode 100644
index 8937bad0b175..000000000000
--- a/sci-chemistry/pymol-plugins-promol/metadata.xml
+++ /dev/null
@@ -1,8 +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>
-</pkgmetadata>
diff --git a/sci-chemistry/pymol-plugins-promol/pymol-plugins-promol-3.0.2-r1.ebuild b/sci-chemistry/pymol-plugins-promol/pymol-plugins-promol-3.0.2-r1.ebuild
deleted file mode 100644
index 6cd842f3703d..000000000000
--- a/sci-chemistry/pymol-plugins-promol/pymol-plugins-promol-3.0.2-r1.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit python-r1
-
-DESCRIPTION="Fast and accurate regognition of active sites"
-HOMEPAGE="https://www.rit.edu/cos/ezviz/ProMOL_dl.html"
-SRC_URI="https://www.rit.edu/cos/ezviz/ProMOL.zip -> ${P}.zip"
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux"
-LICENSE="all-rights-reserved"
-IUSE=""
-
-RESTRICT="mirror bindist"
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-RDEPEND="
- ${PYTHON_DEPS}
- dev-python/pmw:py2[${PYTHON_USEDEP}]
- sci-chemistry/pymol[${PYTHON_USEDEP}]"
-DEPEND=""
-
-S="${WORKDIR}/ProMOL Folder"
-
-src_prepare() {
- python_copy_sources
- preparation() {
- cd "${BUILD_DIR}" || die
- sed \
- -e "s:./modules/pmg_tk/startup:$(python_get_sitedir)/pmg_tk/startup/ProMol:g" \
- -i ProMOL_302.py || die
- }
- python_foreach_impl preparation
-}
-
-src_install() {
- dodoc *doc
- dohtml -r Thanks.html EDMHelp.htm Help
-
- installation() {
- cd "${BUILD_DIR}" || die
- python_moduleinto pmg_tk/startup/ProMol
- python_domodule PDB_List AminoPics Motifs *GIF pdb_entry_type.txt Master.txt Scripts
- python_moduleinto pmg_tk/startup
- python_domodule *.py
- dosym ../../../../../../share/doc/${PF}/html/Help \
- $(python_get_sitedir)/pmg_tk/startup/ProMol/Help
- dosym ../../../../../../share/doc/${PF}/html/Thanks.html \
- $(python_get_sitedir)/pmg_tk/startup/ProMol/Thanks.html
- dosym ../../../../../../share/doc/${PF}/html/EDMHelp.htm \
- $(python_get_sitedir)/pmg_tk/startup/ProMol/EDMHelp.htm
- }
- python_foreach_impl installation
-}