aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Ammerlaan <andrewammerlaan@riseup.net>2021-01-12 21:22:21 +0100
committerAndrew Ammerlaan <andrewammerlaan@riseup.net>2021-01-12 21:28:00 +0100
commit2750cb91ee72a1dc21f441977bf4d424558ec735 (patch)
treef2b1efc1d1c9965e4b0adadee78acc8eb453ab02
parentsci-chemistry/burrow-owl: remove old pack, 3 missing deps, also removed in ::... (diff)
downloadsci-2750cb91ee72a1dc21f441977bf4d424558ec735.tar.gz
sci-2750cb91ee72a1dc21f441977bf4d424558ec735.tar.bz2
sci-2750cb91ee72a1dc21f441977bf4d424558ec735.zip
sci-chemistry/usf-tools: remove pack, missing deps, source is 404
upstream has dissapeared of the face of the internet Signed-off-by: Andrew Ammerlaan <andrewammerlaan@riseup.net>
-rw-r--r--sci-chemistry/usf-tools/Manifest2
-rw-r--r--sci-chemistry/usf-tools/files/usf-tools-9999-longline.patch57
-rw-r--r--sci-chemistry/usf-tools/metadata.xml8
-rw-r--r--sci-chemistry/usf-tools/usf-tools-9999.ebuild33
4 files changed, 0 insertions, 100 deletions
diff --git a/sci-chemistry/usf-tools/Manifest b/sci-chemistry/usf-tools/Manifest
deleted file mode 100644
index 4e9816897..000000000
--- a/sci-chemistry/usf-tools/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST usf-tools-9999.tar.gz 108530172 BLAKE2B 5927d7630a9c80a6ff18188e8edf6b0aaca3b357c7420c08cad7a7521adbc246473039c35c983bf3bf48f892a601a305e46ecb2b6af1431e64b89016af39546f SHA512 2ec2d13080aa5f893cc6f980b3f014c107f6f8f822b36cdd57f6e6f046994d36c8d1eea629f6846d8ea608603d003fd74e543fc41410e50baf1433c56b179464
-DIST usf-tools-autotools-001.tar.xz 4916 BLAKE2B 7cb645333fae6d9f9d1c2a078a38548134c74af536a6da01afad614c3b4bf0d85df06e0a8b7efcc874bd11568c7daab58ec471361c28c2e858cd656e16112fa0 SHA512 04599fd4011e8b612d7f96e23917f363689f7e8619649ad9669a8f62ef25056b2c1c26bc8728b6acf97c9165f2106c35d4be7495342c27fc2accdd5626c24048
diff --git a/sci-chemistry/usf-tools/files/usf-tools-9999-longline.patch b/sci-chemistry/usf-tools/files/usf-tools-9999-longline.patch
deleted file mode 100644
index 028c0f45b..000000000
--- a/sci-chemistry/usf-tools/files/usf-tools-9999-longline.patch
+++ /dev/null
@@ -1,57 +0,0 @@
- gklib/pckrho.f | 24 ++++++++++++++++++------
- 1 files changed, 18 insertions(+), 6 deletions(-)
-
-diff --git a/gklib/pckrho.f b/gklib/pckrho.f
-index 31eefad..2dd5104 100644
---- a/gklib/pckrho.f
-+++ b/gklib/pckrho.f
-@@ -21,23 +21,33 @@ c print *,'IX,IY,IZ - ',ix, iy, iz
- c print *,'JX,JY,LEVEL - ',jx,jy,level
- c print *,'UVW - ',uvw
- c
-- if (uvw(1) .eq. 1 .and. uvw(2) .eq. 2 .and. uvw(3) .eq. 3) then
-+ if ( uvw(1) .eq. 1
-+ : .and. uvw(2) .eq. 2
-+ : .and. uvw(3) .eq. 3) then
- do 100 i=1,iy
- do 100 j=1,ix
- 100 sav(j,i,level) = rho(j,i)
-- else if (uvw(1) .eq. 1 .and. uvw(2) .eq. 3 .and. uvw(3) .eq. 2) then
-+ else if (uvw(1) .eq. 1
-+ : .and. uvw(2) .eq. 3
-+ : .and. uvw(3) .eq. 2) then
- do 110 i=1,iz
- do 110 j=1,ix
- 110 sav(j,level,i) = rho(j,i)
-- else if (uvw(1) .eq. 2 .and. uvw(2) .eq. 1 .and. uvw(3) .eq. 3) then
-+ else if (uvw(1) .eq. 2
-+ : .and. uvw(2) .eq. 1
-+ : .and. uvw(3) .eq. 3) then
- do 120 j=1,iy
- do 120 i=1,ix
- 120 sav(i,j,level) = rho(j,i)
-- else if (uvw(1) .eq. 2 .and. uvw(2) .eq. 3 .and. uvw(3) .eq. 1) then
-+ else if (uvw(1) .eq. 2
-+ : .and. uvw(2) .eq. 3
-+ : .and. uvw(3) .eq. 1) then
- do 130 i=1,iz
- do 130 j=1,iy
- 130 sav(level,j,i) = rho(j,i)
-- else if (uvw(1) .eq. 3 .and. uvw(2) .eq. 1 .and. uvw(3) .eq. 2) then
-+ else if (uvw(1) .eq. 3
-+ : .and. uvw(2) .eq. 1
-+ : .and. uvw(3) .eq. 2) then
- do 140 i=1,ix
- cxyz
- c call ivalut (' I(x) now :',1,i)
-@@ -47,7 +57,9 @@ c call ivalut (' J(z) now :',1,j)
- c call rvalut (' RHO(j,i) :',1,rho(j,i))
- c call rvalut (' SAV(I,LEVEL,J) :',1,sav(i,level,j))
- 140 sav(i,level,j) = rho(j,i)
-- else if (uvw(1) .eq. 3 .and. uvw(2) .eq. 2 .and. uvw(3) .eq. 1) then
-+ else if (uvw(1) .eq. 3
-+ : .and. uvw(2) .eq. 2
-+ : .and. uvw(3) .eq. 1) then
- do 150 i=1,iy
- do 150 j=1,iz
- 150 sav(level,i,j) = rho(j,i)
diff --git a/sci-chemistry/usf-tools/metadata.xml b/sci-chemistry/usf-tools/metadata.xml
deleted file mode 100644
index da36ecbfc..000000000
--- a/sci-chemistry/usf-tools/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/usf-tools/usf-tools-9999.ebuild b/sci-chemistry/usf-tools/usf-tools-9999.ebuild
deleted file mode 100644
index b6561aad4..000000000
--- a/sci-chemistry/usf-tools/usf-tools-9999.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-AUTOTOOLS_AUTORECONF=y
-
-inherit autotools-utils flag-o-matic fortran-2
-
-_AP=001
-
-DESCRIPTION="The USF program suite"
-HOMEPAGE="http://xray.bmc.uu.se/usf/"
-SRC_URI="
- http://xray.bmc.uu.se/markh/usf/usf_distribution_kit.tar.gz -> ${P}.tar.gz
- http://dev.gentoo.org/~jlec/distfiles/${PN}-autotools-${_AP}.tar.xz"
-
-SLOT="0"
-LICENSE="all-rights-reserved"
-KEYWORDS=""
-IUSE="static-libs"
-
-RDEPEND="
- sci-libs/libccp4
- sci-libs/mmdb:0"
-DEPEND="${RDEPEND}"
-
-S="${WORKDIR}"/usf_export
-
-src_prepare() {
- append-fflags -ffixed-line-length-132 -DLINUX -cpp
- autotools-utils_src_prepare
-}