Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/xmds/
Date: Sun, 12 Jan 2020 17:37:55
Message-Id: 1578850660.dddb4501242729ac5accaacfcacacfd9e54799fd.zlogene@gentoo
1 commit: dddb4501242729ac5accaacfcacacfd9e54799fd
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 12 17:37:40 2020 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 12 17:37:40 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dddb4501
7
8 sci-mathematics/xmds: remove last-rited pkg
9
10 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
11
12 sci-mathematics/xmds/Manifest | 1 -
13 sci-mathematics/xmds/metadata.xml | 17 --------------
14 sci-mathematics/xmds/xmds-2.2.2.ebuild | 43 ----------------------------------
15 3 files changed, 61 deletions(-)
16
17 diff --git a/sci-mathematics/xmds/Manifest b/sci-mathematics/xmds/Manifest
18 deleted file mode 100644
19 index 1740e03bce6..00000000000
20 --- a/sci-mathematics/xmds/Manifest
21 +++ /dev/null
22 @@ -1 +0,0 @@
23 -DIST xmds-2.2.2.tar.gz 33449671 BLAKE2B f17b687334fbae50d502b312dde43e534f5c6082723a79c50ee0b1c85bc5c52f7b1fa97b520ae9b382b36dcde51b2729e5b63d3bad2b17c46fedfcfa7f2f79f4 SHA512 470652112e17503f6f0a4da9a68d4f360e66d8b29701a30385f3d49f9b0359578c702ff92f54876b473976b0794f6c2b2302b0a16508e09a5ec53572454eda42
24
25 diff --git a/sci-mathematics/xmds/metadata.xml b/sci-mathematics/xmds/metadata.xml
26 deleted file mode 100644
27 index 3b740354831..00000000000
28 --- a/sci-mathematics/xmds/metadata.xml
29 +++ /dev/null
30 @@ -1,17 +0,0 @@
31 -<?xml version="1.0" encoding="UTF-8"?>
32 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
33 -<pkgmetadata>
34 - <maintainer type="project">
35 - <email>sci-mathematics@g.o</email>
36 - <name>Gentoo Mathematics Project</name>
37 - </maintainer>
38 - <longdescription lang="en">
39 -XMDS is a code generator that integrates differential equations (ODEs, PDEs and
40 -SDEs are all supported). The system of equations to be integrated is specified
41 -in a XML file, which XMDS then uses to generate a C++ integrator. The code can
42 -autamatically take advantage of MPI and FFTW.
43 - </longdescription>
44 - <upstream>
45 - <remote-id type="sourceforge">xmds</remote-id>
46 - </upstream>
47 -</pkgmetadata>
48
49 diff --git a/sci-mathematics/xmds/xmds-2.2.2.ebuild b/sci-mathematics/xmds/xmds-2.2.2.ebuild
50 deleted file mode 100644
51 index bf3dbf1a7e0..00000000000
52 --- a/sci-mathematics/xmds/xmds-2.2.2.ebuild
53 +++ /dev/null
54 @@ -1,43 +0,0 @@
55 -# Copyright 1999-2017 Gentoo Foundation
56 -# Distributed under the terms of the GNU General Public License v2
57 -
58 -EAPI=6
59 -
60 -PYTHON_COMPAT=( python2_7 )
61 -inherit distutils-r1
62 -
63 -DESCRIPTION="XMDS - The eXtensible Multi-Dimensional Simulator"
64 -HOMEPAGE="http://www.xmds.org"
65 -SRC_URI="mirror://sourceforge/xmds/${P}.tar.gz"
66 -LICENSE="GPL-2"
67 -SLOT="0"
68 -KEYWORDS="amd64 x86"
69 -IUSE="doc examples mpi"
70 -
71 -DEPEND="dev-python/cheetah[${PYTHON_USEDEP}]"
72 -RDEPEND=">=sci-libs/fftw-3.3.1:3.0=[mpi?]
73 - mpi? ( virtual/mpi )
74 - dev-python/numpy[${PYTHON_USEDEP}]
75 - dev-python/pyparsing[${PYTHON_USEDEP}]
76 - dev-python/lxml[${PYTHON_USEDEP}]
77 - dev-python/mpmath[${PYTHON_USEDEP}]
78 - dev-python/h5py[${PYTHON_USEDEP}]
79 - sci-libs/atlas
80 - sci-libs/hdf5
81 - sci-libs/gsl"
82 -#virtual/cblas
83 -
84 -python_install_all() {
85 - use doc && HTML_DOCS+=( documentation/. )
86 - if use examples; then
87 - docompress -x "/usr/share/doc/${PF}/examples"
88 - dodoc -r examples
89 - fi
90 - distutils-r1_python_install_all
91 -}
92 -
93 -pkg_postinst() {
94 - elog "Configure XMDS2 by typing"
95 - elog "xmds2 --reconfigure"
96 - elog "See http://www.xmds.org/installation.html for further informations"
97 -}