Gentoo Archives: gentoo-commits

From: Andrew Ammerlaan <andrewammerlaan@××××××.net>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-chemistry/unio/
Date: Thu, 04 Feb 2021 08:07:03
Message-Id: 1612425982.ac6a07b5c5ad19caf510333b782466792c9d1301.andrewammerlaan@gentoo
1 commit: ac6a07b5c5ad19caf510333b782466792c9d1301
2 Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
3 AuthorDate: Thu Feb 4 08:06:22 2021 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
5 CommitDate: Thu Feb 4 08:06:22 2021 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=ac6a07b5
7
8 sci-chemistry/unio: remove pack, cannot fetch
9
10 HOMEPAGE gone, so cannot fetch SRC_URI of fetch RESTRICTed pack
11
12 Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
13
14 sci-chemistry/unio/metadata.xml | 8 ----
15 sci-chemistry/unio/unio-2.0.3-r1.ebuild | 68 ---------------------------------
16 2 files changed, 76 deletions(-)
17
18 diff --git a/sci-chemistry/unio/metadata.xml b/sci-chemistry/unio/metadata.xml
19 deleted file mode 100644
20 index da36ecbfc..000000000
21 --- a/sci-chemistry/unio/metadata.xml
22 +++ /dev/null
23 @@ -1,8 +0,0 @@
24 -<?xml version="1.0" encoding="UTF-8"?>
25 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
26 -<pkgmetadata>
27 - <maintainer type="project">
28 - <email>sci-chemistry@g.o</email>
29 - <name>Gentoo Chemistry Project</name>
30 - </maintainer>
31 -</pkgmetadata>
32
33 diff --git a/sci-chemistry/unio/unio-2.0.3-r1.ebuild b/sci-chemistry/unio/unio-2.0.3-r1.ebuild
34 deleted file mode 100644
35 index bbafdb824..000000000
36 --- a/sci-chemistry/unio/unio-2.0.3-r1.ebuild
37 +++ /dev/null
38 @@ -1,68 +0,0 @@
39 -# Copyright 1999-2015 Gentoo Foundation
40 -# Distributed under the terms of the GNU General Public License v2
41 -
42 -EAPI=5
43 -
44 -MY_P="UNIO10-Distribution19Dec2013"
45 -
46 -DESCRIPTION="Automated NMR Data Analysis"
47 -HOMEPAGE="http://perso.ens-lyon.fr/torsten.herrmann/Herrmann/Software.html"
48 -#SRC_URI="http://perso.ens-lyon.fr/torsten.herrmann/Academic//Academic_Download_files/${MY_P}.tar.gz"
49 -SRC_URI="${MY_P}.tar.gz"
50 -
51 -SLOT="0"
52 -KEYWORDS=""
53 -LICENSE="unio"
54 -IUSE=""
55 -
56 -RDEPEND="
57 - app-shells/ksh
58 - !prefix? (
59 - >=x11-libs/libX11-1.6.2[abi_x86_32(-)]
60 - >=x11-libs/libXext-1.3.2[abi_x86_32(-)]
61 - )"
62 -DEPEND=""
63 -
64 -S="${WORKDIR}/UNIO_10"
65 -RESTRICT="fetch"
66 -
67 -QA_PREBUILT="opt/unio/*"
68 -
69 -pkg_nofetch() {
70 - einfo "Please visit ${HOMEPAGE}"
71 - einfo "and fetch ${A}"
72 - einfo "into ${DISTDIR}"
73 -}
74 -
75 -src_install() {
76 - mv Unio\'10 Unio10 || die
77 - mv Unio10/Linux/{Unio\'10,Unio10} || die
78 - rm -rf \
79 - Unio10/MacOSX \
80 - UnioAlgorithms/.DS_Store \
81 - UnioAlgorithms/unio-2.0.2/src/unio/unioexe.Darwin* \
82 - UnioAlgorithms/unio-2.0.2/src/echo/libEcho.a \
83 - UnioAlgorithms/unio-2.0.2/License.pdf || die
84 -
85 - insinto /opt/${PN}
86 - doins -r Unio10 UnioAlgorithms UnioDocumentations
87 - fperms 755 \
88 - /opt/${PN}/Unio10/Linux/Unio10 \
89 - /opt/${PN}/Unio10/Linux/Externals/revzip.so
90 - chmod 755 \
91 - "${ED}"/opt/${PN}/UnioAlgorithms/${PN}-2.0.2/bin/* \
92 - "${ED}"/opt/${PN}/UnioAlgorithms/${PN}-2.0.2/src/${PN}/* || die
93 -
94 - cat >> "${T}/${PN}" <<- EOF
95 - #!${EPREFIX}/bin/bash
96 - cd "${EPREFIX}/opt/${PN}"
97 - exec Unio10/Linux/Unio10 \$@
98 - EOF
99 -
100 - dobin "${T}/${PN}"
101 -
102 - local i
103 - for i in ExecuteMatch ExecuteAtnosCandid ExecuteAtnosAscan; do
104 - dosym ../${PN}/UnioAlgorithms/${PN}-2.0.2/bin/${i} /opt/bin/${i}
105 - done
106 -}