* [gentoo-commits] proj/sci:master commit in: app-doc/lapack-docs/
@ 2016-02-22 13:25 Justin Lecher
0 siblings, 0 replies; 5+ messages in thread
From: Justin Lecher @ 2016-02-22 13:25 UTC (permalink / raw
To: gentoo-commits
commit: 1269ae179fafbf503d6cff1f7d3a37fdc956d5ba
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 22 10:48:54 2016 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Mon Feb 22 10:48:54 2016 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=1269ae17
app-doc/lapack-docs: Bump to EAPI=6
* Add missing die
Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
app-doc/lapack-docs/lapack-docs-3.3-r1.ebuild | 11 ++++++-----
app-doc/lapack-docs/metadata.xml | 10 +++++-----
2 files changed, 11 insertions(+), 10 deletions(-)
diff --git a/app-doc/lapack-docs/lapack-docs-3.3-r1.ebuild b/app-doc/lapack-docs/lapack-docs-3.3-r1.ebuild
index 6f30386..d78babd 100644
--- a/app-doc/lapack-docs/lapack-docs-3.3-r1.ebuild
+++ b/app-doc/lapack-docs/lapack-docs-3.3-r1.ebuild
@@ -1,12 +1,13 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
-EAPI=5
+EAPI=6
DESCRIPTION="Documentation reference and man pages for LAPACK implementations"
HOMEPAGE="http://www.netlib.org/lapack/"
-SRC_URI="http://dev.gentoo.org/~bicatali/lapack-man-${PV}.tar.gz
+SRC_URI="
+ http://dev.gentoo.org/~bicatali/lapack-man-${PV}.tar.gz
http://www.netlib.org/lapack/lapackqref.ps"
LICENSE="BSD"
@@ -18,14 +19,14 @@ S="${WORKDIR}/manpages"
src_install() {
# These belong to the blas-docs
- rm -f man/manl/{csrot,lsame,xerbla,xerbla_array,zdrot}.*
+ rm -f man/manl/{csrot,lsame,xerbla,xerbla_array,zdrot}.* || die
# rename because doman do not yet understand manl files
# Not all systems have the rename command, like say FreeBSD
local f t
for f in man/manl/*.l; do
t="${f%%.l}.n"
- mv "${f}" "${t}"
+ mv "${f}" "${t}" || die
done
doman man/manl/*
dodoc README "${DISTDIR}"/lapackqref.ps
diff --git a/app-doc/lapack-docs/metadata.xml b/app-doc/lapack-docs/metadata.xml
index 5418d03..a47b5e4 100644
--- a/app-doc/lapack-docs/metadata.xml
+++ b/app-doc/lapack-docs/metadata.xml
@@ -1,11 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
-<maintainer type="project">
- <email>sci@gentoo.org</email>
- <name>Gentoo Science Project</name>
-</maintainer>
-<longdescription lang="en">
+ <maintainer type="project">
+ <email>sci@gentoo.org</email>
+ <name>Gentoo Science Project</name>
+ </maintainer>
+ <longdescription lang="en">
LAPACK is a comprehensive FORTRAN library that does linear
algebra operations including matrix inversions, least squared
solutions to linear sets of equations, eigenvector analysis, singular
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] proj/sci:master commit in: app-doc/lapack-docs/
@ 2020-10-09 1:50 Aisha Tammy
0 siblings, 0 replies; 5+ messages in thread
From: Aisha Tammy @ 2020-10-09 1:50 UTC (permalink / raw
To: gentoo-commits
commit: 1d9e152bc9c919cd3904b034011ded71cb42245d
Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Fri Oct 9 01:49:58 2020 +0000
Commit: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
CommitDate: Fri Oct 9 01:49:58 2020 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=1d9e152b
app-doc/lapack-docs: drop package
present in ::gentoo
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
app-doc/lapack-docs/lapack-docs-3.3-r1.ebuild | 32 ---------------------------
app-doc/lapack-docs/metadata.xml | 16 --------------
2 files changed, 48 deletions(-)
diff --git a/app-doc/lapack-docs/lapack-docs-3.3-r1.ebuild b/app-doc/lapack-docs/lapack-docs-3.3-r1.ebuild
deleted file mode 100644
index 314b2fce5..000000000
--- a/app-doc/lapack-docs/lapack-docs-3.3-r1.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="Documentation reference and man pages for LAPACK implementations"
-HOMEPAGE="http://www.netlib.org/lapack/"
-SRC_URI="
- http://dev.gentoo.org/~bicatali/lapack-man-${PV}.tar.gz
- http://www.netlib.org/lapack/lapackqref.ps"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE=""
-
-S="${WORKDIR}/manpages"
-
-src_install() {
- # These belong to the blas-docs
- rm -f man/manl/{csrot,lsame,xerbla,xerbla_array,zdrot}.* || die
-
- # rename because doman do not yet understand manl files
- # Not all systems have the rename command, like say FreeBSD
- local f t
- for f in man/manl/*.l; do
- t="${f%%.l}.n"
- mv "${f}" "${t}" || die
- done
- doman man/manl/*
- dodoc README "${DISTDIR}"/lapackqref.ps
-}
diff --git a/app-doc/lapack-docs/metadata.xml b/app-doc/lapack-docs/metadata.xml
deleted file mode 100644
index 19cefda24..000000000
--- a/app-doc/lapack-docs/metadata.xml
+++ /dev/null
@@ -1,16 +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@gentoo.org</email>
- <name>Gentoo Science Project</name>
- </maintainer>
- <longdescription lang="en">
-LAPACK is a comprehensive FORTRAN library that does linear
-algebra operations including matrix inversions, least squared
-solutions to linear sets of equations, eigenvector analysis, singular
-value decomposition, etc. It is a very comprehensive and reputable
-package that has found extensive use in the scientific community.
-This package contains manual pages for the routines, and a Quick-Reference guide.
-</longdescription>
-</pkgmetadata>
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] proj/sci:master commit in: app-doc/lapack-docs/
@ 2013-08-25 22:34 Christoph Junghans
0 siblings, 0 replies; 5+ messages in thread
From: Christoph Junghans @ 2013-08-25 22:34 UTC (permalink / raw
To: gentoo-commits
commit: 2a6b05ab78a9a696398ae3b81d5da165a3256f57
Author: Christoph Junghans <ottxor <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 25 22:33:37 2013 +0000
Commit: Christoph Junghans <ottxor <AT> gentoo <DOT> org>
CommitDate: Sun Aug 25 22:34:35 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=2a6b05ab
drop stable keywords
Package-Manager: portage-2.2.1
---
app-doc/lapack-docs/ChangeLog | 6 ++++--
app-doc/lapack-docs/lapack-docs-3.3-r1.ebuild | 6 +++---
2 files changed, 7 insertions(+), 5 deletions(-)
diff --git a/app-doc/lapack-docs/ChangeLog b/app-doc/lapack-docs/ChangeLog
index 1dc8dd8..e5f2058 100644
--- a/app-doc/lapack-docs/ChangeLog
+++ b/app-doc/lapack-docs/ChangeLog
@@ -1,7 +1,10 @@
# ChangeLog for app-doc/lapack-docs
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/lapack-docs/ChangeLog,v 1.16 2009/12/17 10:06:48 fauli Exp $
+ 25 Aug 2013; Christoph Junghans <ottxor@gentoo.org> lapack-docs-3.3-r1.ebuild:
+ drop stable keywords
+
*lapack-docs-3.3-r1 (06 Nov 2011)
06 Nov 2011; Andrew Savchenko <bircoph@gmail.com> -lapack-docs-3.3.ebuild,
@@ -84,4 +87,3 @@
07 Feb 2007; Sébastien Fabbro <bicatali@gentoo.org> +metadata.xml,
+lapack-docs-3.1.ebuild:
Initial import. Close bug #147463.
-
diff --git a/app-doc/lapack-docs/lapack-docs-3.3-r1.ebuild b/app-doc/lapack-docs/lapack-docs-3.3-r1.ebuild
index 6b43bc4..676acf9 100644
--- a/app-doc/lapack-docs/lapack-docs-3.3-r1.ebuild
+++ b/app-doc/lapack-docs/lapack-docs-3.3-r1.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
-EAPI=4
+EAPI=5
DESCRIPTION="Documentation reference and man pages for LAPACK implementations"
HOMEPAGE="http://www.netlib.org/lapack/"
@@ -11,7 +11,7 @@ SRC_URI="http://dev.gentoo.org/~bicatali/lapack-man-${PV}.tar.gz
LICENSE="BSD"
SLOT="0"
-KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 s390 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos"
IUSE=""
S="${WORKDIR}/manpages"
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] proj/sci:master commit in: app-doc/lapack-docs/
@ 2011-11-06 16:25 Andrew Savchenko
0 siblings, 0 replies; 5+ messages in thread
From: Andrew Savchenko @ 2011-11-06 16:25 UTC (permalink / raw
To: gentoo-commits
commit: bdbceb4ec34ed6da14f0a4df78a42450400453da
Author: Andrew Savchenko <bircoph <AT> gmail <DOT> com>
AuthorDate: Sun Nov 6 16:23:04 2011 +0000
Commit: Andrew Savchenko <bircoph <AT> gmail <DOT> com>
CommitDate: Sun Nov 6 16:23:04 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=bdbceb4e
lapack-docs: fix file clash with blas-docs
Do not install files belonging to blas-docs.
This should fix bug 387981.
---
app-doc/lapack-docs/ChangeLog | 7 +++++++
...k-docs-3.3.ebuild => lapack-docs-3.3-r1.ebuild} | 2 +-
2 files changed, 8 insertions(+), 1 deletions(-)
diff --git a/app-doc/lapack-docs/ChangeLog b/app-doc/lapack-docs/ChangeLog
index 90a0467..1dc8dd8 100644
--- a/app-doc/lapack-docs/ChangeLog
+++ b/app-doc/lapack-docs/ChangeLog
@@ -2,6 +2,13 @@
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/lapack-docs/ChangeLog,v 1.16 2009/12/17 10:06:48 fauli Exp $
+*lapack-docs-3.3-r1 (06 Nov 2011)
+
+ 06 Nov 2011; Andrew Savchenko <bircoph@gmail.com> -lapack-docs-3.3.ebuild,
+ +lapack-docs-3.3-r1.ebuild:
+ Remove files belonging to blas-docs.
+ See bug #387981.
+
*lapack-docs-3.3 (06 Sep 2011)
06 Sep 2011; Sébastien Fabbro <bicatali@gentoo.org>
diff --git a/app-doc/lapack-docs/lapack-docs-3.3.ebuild b/app-doc/lapack-docs/lapack-docs-3.3-r1.ebuild
similarity index 93%
rename from app-doc/lapack-docs/lapack-docs-3.3.ebuild
rename to app-doc/lapack-docs/lapack-docs-3.3-r1.ebuild
index 1e95f97..6b43bc4 100644
--- a/app-doc/lapack-docs/lapack-docs-3.3.ebuild
+++ b/app-doc/lapack-docs/lapack-docs-3.3-r1.ebuild
@@ -18,7 +18,7 @@ S="${WORKDIR}/manpages"
src_install() {
# These belong to the blas-docs
- rm -f man/manl/{lsame,xerbla}.*
+ rm -f man/manl/{csrot,lsame,xerbla,xerbla_array,zdrot}.*
# rename because doman do not yet understand manl files
# Not all systems have the rename command, like say FreeBSD
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] proj/sci:master commit in: app-doc/lapack-docs/
@ 2011-09-06 17:37 Sebastien Fabbro
0 siblings, 0 replies; 5+ messages in thread
From: Sebastien Fabbro @ 2011-09-06 17:37 UTC (permalink / raw
To: gentoo-commits
commit: 9d4d6bb6a3efabd9d93b0c6196d60360aef9ff00
Author: Sébastien Fabbro <sebfabbro <AT> gmail <DOT> com>
AuthorDate: Tue Sep 6 17:34:13 2011 +0000
Commit: Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Tue Sep 6 17:34:13 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=9d4d6bb6
bump
---
app-doc/lapack-docs/ChangeLog | 8 +++++++-
...ck-docs-3.2.0.ebuild => lapack-docs-3.3.ebuild} | 14 ++++++++------
2 files changed, 15 insertions(+), 7 deletions(-)
diff --git a/app-doc/lapack-docs/ChangeLog b/app-doc/lapack-docs/ChangeLog
index b5e34c0..90a0467 100644
--- a/app-doc/lapack-docs/ChangeLog
+++ b/app-doc/lapack-docs/ChangeLog
@@ -1,7 +1,13 @@
# ChangeLog for app-doc/lapack-docs
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/lapack-docs/ChangeLog,v 1.16 2009/12/17 10:06:48 fauli Exp $
+*lapack-docs-3.3 (06 Sep 2011)
+
+ 06 Sep 2011; Sébastien Fabbro <bicatali@gentoo.org>
+ -lapack-docs-3.2.0.ebuild, +lapack-docs-3.3.ebuild:
+ Version bump
+
*lapack-docs-3.2.0 (24 Nov 2010)
24 Nov 2010; Sébastien Fabbro <bicatali@gentoo.org>
diff --git a/app-doc/lapack-docs/lapack-docs-3.2.0.ebuild b/app-doc/lapack-docs/lapack-docs-3.3.ebuild
similarity index 73%
rename from app-doc/lapack-docs/lapack-docs-3.2.0.ebuild
rename to app-doc/lapack-docs/lapack-docs-3.3.ebuild
index e0e45f9..1e95f97 100644
--- a/app-doc/lapack-docs/lapack-docs-3.2.0.ebuild
+++ b/app-doc/lapack-docs/lapack-docs-3.3.ebuild
@@ -1,10 +1,12 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
+EAPI=4
+
DESCRIPTION="Documentation reference and man pages for LAPACK implementations"
HOMEPAGE="http://www.netlib.org/lapack/"
-SRC_URI="mirror://gentoo/lapack-man-${PV}.tar.gz
+SRC_URI="http://dev.gentoo.org/~bicatali/lapack-man-${PV}.tar.gz
http://www.netlib.org/lapack/lapackqref.ps"
LICENSE="BSD"
@@ -12,7 +14,7 @@ SLOT="0"
KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 s390 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos"
IUSE=""
-S="${WORKDIR}/lapack-${PV}/manpages"
+S="${WORKDIR}/manpages"
src_install() {
# These belong to the blas-docs
@@ -20,11 +22,11 @@ src_install() {
# rename because doman do not yet understand manl files
# Not all systems have the rename command, like say FreeBSD
- local f= t=
+ local f t
for f in man/manl/*.l; do
t="${f%%.l}.n"
mv "${f}" "${t}"
done
- doman man/manl/* || die "doman failed"
- dodoc README "${DISTDIR}"/lapackqref.ps || die "dodoc failed"
+ doman man/manl/*
+ dodoc README "${DISTDIR}"/lapackqref.ps
}
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2020-10-09 1:50 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-22 13:25 [gentoo-commits] proj/sci:master commit in: app-doc/lapack-docs/ Justin Lecher
-- strict thread matches above, loose matches on Subject: below --
2020-10-09 1:50 Aisha Tammy
2013-08-25 22:34 Christoph Junghans
2011-11-06 16:25 Andrew Savchenko
2011-09-06 17:37 Sebastien Fabbro
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox