Gentoo Archives: gentoo-commits

From: Aisha Tammy <gentoo@×××××.cc>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: app-doc/scalapack-docs/
Date: Tue, 29 Dec 2020 15:45:00
Message-Id: 1609256649.de25e36524ff111501e497916e255708ba5c9004.epsilon-0@gentoo
1 commit: de25e36524ff111501e497916e255708ba5c9004
2 Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
3 AuthorDate: Tue Dec 29 15:44:09 2020 +0000
4 Commit: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
5 CommitDate: Tue Dec 29 15:44:09 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=de25e365
7
8 app-doc/scalapack-docs: drop package
9
10 no longer available in dev space
11 Suggested replacement - use doxygen to generate
12 doc files from scalapack source
13
14 Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
15
16 app-doc/scalapack-docs/metadata.xml | 18 ----------------
17 app-doc/scalapack-docs/scalapack-docs-2.0.ebuild | 27 ------------------------
18 2 files changed, 45 deletions(-)
19
20 diff --git a/app-doc/scalapack-docs/metadata.xml b/app-doc/scalapack-docs/metadata.xml
21 deleted file mode 100644
22 index f404a1788..000000000
23 --- a/app-doc/scalapack-docs/metadata.xml
24 +++ /dev/null
25 @@ -1,18 +0,0 @@
26 -<?xml version="1.0" encoding="UTF-8"?>
27 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
28 -<pkgmetadata>
29 - <maintainer type="project">
30 - <email>sci@g.o</email>
31 - <name>Gentoo Science Project</name>
32 - </maintainer>
33 - <longdescription lang="en">
34 -The ScaLAPACK (or Scalable LAPACK) library includes a subset of
35 -LAPACK routines redesigned for distributed memory MIMD parallel
36 -computers. It is currently written in a Single-Program-Multiple-Data
37 -style using explicit message passing for interprocessor
38 -communication. It assumes matrices are laid out in a two-dimensional
39 -block cyclic decomposition.
40 -This package contains manual pages for the routines, and quick
41 -reference guides.
42 -</longdescription>
43 -</pkgmetadata>
44
45 diff --git a/app-doc/scalapack-docs/scalapack-docs-2.0.ebuild b/app-doc/scalapack-docs/scalapack-docs-2.0.ebuild
46 deleted file mode 100644
47 index 6e0caf6a5..000000000
48 --- a/app-doc/scalapack-docs/scalapack-docs-2.0.ebuild
49 +++ /dev/null
50 @@ -1,27 +0,0 @@
51 -# Copyright 1999-2016 Gentoo Foundation
52 -# Distributed under the terms of the GNU General Public License v2
53 -
54 -EAPI=6
55 -
56 -DESCRIPTION="Documentation reference and man pages for ScaLAPACK implementations"
57 -HOMEPAGE="http://www.netlib.org/scalapack/"
58 -SRC_URI="http://dev.gentoo.org/~bicatali/distfiles/${P}.tar.bz2"
59 -
60 -LICENSE="BSD"
61 -SLOT="0"
62 -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
63 -IUSE=""
64 -
65 -S="${WORKDIR}"
66 -
67 -src_install() {
68 - # rename because doman do not yet understand manl files
69 - # Not all systems have the rename command, like say FreeBSD
70 - local f t
71 - for f in MANPAGES/man/manl/*.l; do
72 - t="${f%%.l}.n"
73 - mv "${f}" "${t}" || die
74 - done
75 - doman MANPAGES/man/manl/*
76 - dodoc *.ps
77 -}