* [gentoo-commits] proj/sci:master commit in: sci-astronomy/swarp/
@ 2012-07-04 22:42 Sebastien Fabbro
0 siblings, 0 replies; 6+ messages in thread
From: Sebastien Fabbro @ 2012-07-04 22:42 UTC (permalink / raw
To: gentoo-commits
commit: 685f3413015c3e4ff1e8be033fc00a2a38f9cc6f
Author: Sebastien Fabbro <sfabbro <AT> uvic <DOT> ca>
AuthorDate: Wed Jul 4 21:37:13 2012 +0000
Commit: Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Wed Jul 4 21:37:13 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=685f3413
sci-astronomy/swarp: added live version
---
sci-astronomy/swarp/ChangeLog | 60 +++++++++++++++++++++++++++++++++
sci-astronomy/swarp/metadata.xml | 9 +++++
sci-astronomy/swarp/swarp-9999.ebuild | 42 +++++++++++++++++++++++
3 files changed, 111 insertions(+), 0 deletions(-)
diff --git a/sci-astronomy/swarp/ChangeLog b/sci-astronomy/swarp/ChangeLog
new file mode 100644
index 0000000..4c8d76b
--- /dev/null
+++ b/sci-astronomy/swarp/ChangeLog
@@ -0,0 +1,60 @@
+# ChangeLog for sci-astronomy/swarp
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/swarp/ChangeLog,v 1.6 2011/08/04 18:33:44 bicatali Exp $
+
+*swarp-9999 (04 Jul 2012)
+
+ 04 Jul 2012; Sébastien Fabbro <bicatali@gentoo.org> +swarp-9999.ebuild,
+ +metadata.xml:
+ Added live version
+
+ 04 Aug 2011; Sébastien Fabbro <bicatali@gentoo.org> metadata.xml:
+ Switched herd to sci-astronomy
+
+*swarp-2.19.1 (24 Sep 2010)
+
+ 24 Sep 2010; Sébastien Fabbro <bicatali@gentoo.org> +swarp-2.19.1.ebuild:
+ Version bump
+
+ 08 Jun 2010; Sébastien Fabbro <bicatali@gentoo.org> swarp-2.17.6.ebuild,
+ +files/swarp-nodoc.patch:
+ Fixed a bad directory creating with newer autotools
+
+ 28 Jul 2009; Sébastien Fabbro <bicatali@gentoo.org> swarp-2.17.6.ebuild:
+ Updated license to CeCILL-2
+
+*swarp-2.17.6 (28 Jul 2009)
+
+ 28 Jul 2009; Sébastien Fabbro <bicatali@gentoo.org> +swarp-2.17.6.ebuild,
+ +files/swarp-configure.patch:
+ Version bump
+
+*swarp-2.17.1 (17 Feb 2009)
+
+ 17 Feb 2009; Sébastien Fabbro <bicatali@gentoo.org> +metadata.xml,
+ +swarp-2.17.1.ebuild:
+ Initial import to the main tree from the sci overlay, closing bug #65684
+
+ 14 Jan 2008; Sébastien Fabbro <bicatali@gentoo.org> -swarp-2.17.0.ebuild,
+ +swarp-2.17.1.ebuild:
+ Version bump
+
+ 09 Jan 2008; Sébastien Fabbro <bicatali@gentoo.org> +swarp-2.17.0.ebuild:
+ Version bump
+
+ 01 Aug 2007; Sébastien Fabbro <bicatali@gentoo.org>
+ -swarp-2.16.0-r1.ebuild, +swarp-2.16.4.ebuild:
+ Version bump
+
+ 26 Mar 2007; Sébastien Fabbro <bicatali@gentoo.org>
+ swarp-2.16.0-r1.ebuild:
+ cleaning
+
+ 29 Dec 2006; Sebastien Fabbro <seb@ist.utl.pt>;
+ Removed icc flag, too buggy.
+
+ 15 Oct 2006; Sebastien Fabbro <seb@ist.utl.pt> swarp-2.16.0-r1.ebuild
+ Removed flag filtering. Some cleaning.
+
+ 10 Sep 2006; Sebastien Fabbro <seb@ist.utl.pt> swarp-2.16.0.ebuild
+ Initial import.
diff --git a/sci-astronomy/swarp/metadata.xml b/sci-astronomy/swarp/metadata.xml
new file mode 100644
index 0000000..754cc2e
--- /dev/null
+++ b/sci-astronomy/swarp/metadata.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>sci-astronomy</herd>
+<longdescription lang="en">
+ SWarp takes astronomical FITS images with a WCS-like projection,
+ resample and stack them all.
+</longdescription>
+</pkgmetadata>
diff --git a/sci-astronomy/swarp/swarp-9999.ebuild b/sci-astronomy/swarp/swarp-9999.ebuild
new file mode 100644
index 0000000..655b8a1
--- /dev/null
+++ b/sci-astronomy/swarp/swarp-9999.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=4
+
+if [[ ${PV} == "9999" ]] ; then
+ _SVN=subversion
+ ESVN_REPO_URI="https://astromatic.net/pubsvn/software/${PN}/trunk"
+ SRC_URI=""
+ KEYWORDS=""
+else
+ SRC_URI="http://www.astromatic.net/download/${PN}/${P}.tar.gz"
+ KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+fi
+
+inherit ${_SVN} autotools
+
+DESCRIPTION="Resample and coadd astronomical FITS images"
+HOMEPAGE="http://astromatic.iap.fr/software/swarp"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="doc threads"
+
+RDEPEND=""
+DEPEND="${RDEPEND}"
+
+src_prepare() {
+ eautoreconf
+}
+
+src_configure() {
+ econf \
+ $(use_enable threads)
+}
+
+src_install () {
+ default
+ use doc && dodoc doc/*
+}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-astronomy/swarp/
@ 2014-02-27 23:01 Sebastien Fabbro
0 siblings, 0 replies; 6+ messages in thread
From: Sebastien Fabbro @ 2014-02-27 23:01 UTC (permalink / raw
To: gentoo-commits
commit: 4ed48e34f8ea5ab22e02bcc2a0019878b24f9d8e
Author: Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 27 20:01:51 2014 +0000
Commit: Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Thu Feb 27 20:01:51 2014 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=4ed48e34
sci-astronomy/swarp: EAPI-5, autotools-utils
Package-Manager: portage-2.2.8-prefix
---
sci-astronomy/swarp/ChangeLog | 5 ++++-
sci-astronomy/swarp/swarp-9999.ebuild | 17 ++++++++---------
2 files changed, 12 insertions(+), 10 deletions(-)
diff --git a/sci-astronomy/swarp/ChangeLog b/sci-astronomy/swarp/ChangeLog
index 4c8d76b..f5366c4 100644
--- a/sci-astronomy/swarp/ChangeLog
+++ b/sci-astronomy/swarp/ChangeLog
@@ -1,7 +1,10 @@
# ChangeLog for sci-astronomy/swarp
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/swarp/ChangeLog,v 1.6 2011/08/04 18:33:44 bicatali Exp $
+ 27 Feb 2014; Sébastien Fabbro <bicatali@gentoo.org> swarp-9999.ebuild:
+ sci-astronomy/swarp: EAPI-5, autotools-utils
+
*swarp-9999 (04 Jul 2012)
04 Jul 2012; Sébastien Fabbro <bicatali@gentoo.org> +swarp-9999.ebuild,
diff --git a/sci-astronomy/swarp/swarp-9999.ebuild b/sci-astronomy/swarp/swarp-9999.ebuild
index c764e79..920850f 100644
--- a/sci-astronomy/swarp/swarp-9999.ebuild
+++ b/sci-astronomy/swarp/swarp-9999.ebuild
@@ -2,19 +2,22 @@
# Distributed under the terms of the GNU General Public License v2
# $Header: $
-EAPI=4
+EAPI=5
if [[ ${PV} == "9999" ]] ; then
_SVN=subversion
ESVN_REPO_URI="https://astromatic.net/pubsvn/software/${PN}/trunk"
SRC_URI=""
KEYWORDS=""
+ AUTOTOOLS_AUTORECONF=1
else
SRC_URI="http://www.astromatic.net/download/${PN}/${P}.tar.gz"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
fi
-inherit ${_SVN} autotools
+AUTOTOOLS_IN_SOURCE_BUILD=1
+
+inherit ${_SVN} autotools-utils
DESCRIPTION="Resample and coadd astronomical FITS images"
HOMEPAGE="http://astromatic.iap.fr/software/swarp"
@@ -27,16 +30,12 @@ IUSE="doc threads"
RDEPEND=""
DEPEND="${RDEPEND}"
-src_prepare() {
- eautoreconf
-}
-
src_configure() {
- econf \
- $(use_enable threads)
+ local myeconfargs=( $(use_enable threads) )
+ autotools-utils_src_configure
}
src_install () {
- default
+ autotools-utils_src_install
use doc && dodoc doc/*
}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-astronomy/swarp/
@ 2014-03-21 17:10 Sebastien Fabbro
0 siblings, 0 replies; 6+ messages in thread
From: Sebastien Fabbro @ 2014-03-21 17:10 UTC (permalink / raw
To: gentoo-commits
commit: f32750a435414c4cef5147ebf9d2f72e245470f1
Author: Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 21 17:05:30 2014 +0000
Commit: Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Fri Mar 21 17:05:30 2014 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=f32750a4
sci-astronomy/swarp: Add new version linked to live one
Package-Manager: portage-2.2.8-prefix
---
sci-astronomy/swarp/ChangeLog | 6 ++++++
sci-astronomy/swarp/swarp-2.38.0.ebuild | 1 +
sci-astronomy/swarp/swarp-9999.ebuild | 4 ++--
3 files changed, 9 insertions(+), 2 deletions(-)
diff --git a/sci-astronomy/swarp/ChangeLog b/sci-astronomy/swarp/ChangeLog
index f5366c4..5af7527 100644
--- a/sci-astronomy/swarp/ChangeLog
+++ b/sci-astronomy/swarp/ChangeLog
@@ -2,6 +2,12 @@
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/swarp/ChangeLog,v 1.6 2011/08/04 18:33:44 bicatali Exp $
+*swarp-2.38.0 (21 Mar 2014)
+
+ 21 Mar 2014; Sébastien Fabbro <bicatali@gentoo.org> +swarp-2.38.0.ebuild,
+ swarp-9999.ebuild:
+ sci-astronomy/swarp: Add new version linked to live one
+
27 Feb 2014; Sébastien Fabbro <bicatali@gentoo.org> swarp-9999.ebuild:
sci-astronomy/swarp: EAPI-5, autotools-utils
diff --git a/sci-astronomy/swarp/swarp-2.38.0.ebuild b/sci-astronomy/swarp/swarp-2.38.0.ebuild
new file mode 120000
index 0000000..ffc97cb
--- /dev/null
+++ b/sci-astronomy/swarp/swarp-2.38.0.ebuild
@@ -0,0 +1 @@
+swarp-9999.ebuild
\ No newline at end of file
diff --git a/sci-astronomy/swarp/swarp-9999.ebuild b/sci-astronomy/swarp/swarp-9999.ebuild
index be98a71..25d68f6 100644
--- a/sci-astronomy/swarp/swarp-9999.ebuild
+++ b/sci-astronomy/swarp/swarp-9999.ebuild
@@ -5,7 +5,7 @@
EAPI=5
if [[ ${PV} == "9999" ]] ; then
- _SVN=subversion
+ inherit subversion
ESVN_REPO_URI="https://astromatic.net/pubsvn/software/${PN}/trunk"
SRC_URI=""
KEYWORDS=""
@@ -17,7 +17,7 @@ fi
AUTOTOOLS_IN_SOURCE_BUILD=1
-inherit ${_SVN} autotools-utils
+inherit autotools-utils
DESCRIPTION="Resample and coadd astronomical FITS images"
HOMEPAGE="http://astromatic.iap.fr/software/swarp"
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-astronomy/swarp/
@ 2014-03-22 9:45 Justin Lecher
0 siblings, 0 replies; 6+ messages in thread
From: Justin Lecher @ 2014-03-22 9:45 UTC (permalink / raw
To: gentoo-commits
commit: 7490eef4fa913516de9bf03ec72b85a623e0c25a
Author: Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 21 17:05:30 2014 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sat Mar 22 09:44:41 2014 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=7490eef4
sci-astronomy/swarp: Add new version linked to live one
Package-Manager: portage-2.2.8-prefix
---
sci-astronomy/swarp/ChangeLog | 6 ++++++
sci-astronomy/swarp/swarp-2.38.0.ebuild | 1 +
sci-astronomy/swarp/swarp-9999.ebuild | 4 ++--
3 files changed, 9 insertions(+), 2 deletions(-)
diff --git a/sci-astronomy/swarp/ChangeLog b/sci-astronomy/swarp/ChangeLog
index f5366c4..5af7527 100644
--- a/sci-astronomy/swarp/ChangeLog
+++ b/sci-astronomy/swarp/ChangeLog
@@ -2,6 +2,12 @@
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/swarp/ChangeLog,v 1.6 2011/08/04 18:33:44 bicatali Exp $
+*swarp-2.38.0 (21 Mar 2014)
+
+ 21 Mar 2014; Sébastien Fabbro <bicatali@gentoo.org> +swarp-2.38.0.ebuild,
+ swarp-9999.ebuild:
+ sci-astronomy/swarp: Add new version linked to live one
+
27 Feb 2014; Sébastien Fabbro <bicatali@gentoo.org> swarp-9999.ebuild:
sci-astronomy/swarp: EAPI-5, autotools-utils
diff --git a/sci-astronomy/swarp/swarp-2.38.0.ebuild b/sci-astronomy/swarp/swarp-2.38.0.ebuild
new file mode 120000
index 0000000..ffc97cb
--- /dev/null
+++ b/sci-astronomy/swarp/swarp-2.38.0.ebuild
@@ -0,0 +1 @@
+swarp-9999.ebuild
\ No newline at end of file
diff --git a/sci-astronomy/swarp/swarp-9999.ebuild b/sci-astronomy/swarp/swarp-9999.ebuild
index be98a71..25d68f6 100644
--- a/sci-astronomy/swarp/swarp-9999.ebuild
+++ b/sci-astronomy/swarp/swarp-9999.ebuild
@@ -5,7 +5,7 @@
EAPI=5
if [[ ${PV} == "9999" ]] ; then
- _SVN=subversion
+ inherit subversion
ESVN_REPO_URI="https://astromatic.net/pubsvn/software/${PN}/trunk"
SRC_URI=""
KEYWORDS=""
@@ -17,7 +17,7 @@ fi
AUTOTOOLS_IN_SOURCE_BUILD=1
-inherit ${_SVN} autotools-utils
+inherit autotools-utils
DESCRIPTION="Resample and coadd astronomical FITS images"
HOMEPAGE="http://astromatic.iap.fr/software/swarp"
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-astronomy/swarp/
@ 2016-03-06 19:41 Justin Lecher
0 siblings, 0 replies; 6+ messages in thread
From: Justin Lecher @ 2016-03-06 19:41 UTC (permalink / raw
To: gentoo-commits
commit: ba81c1dc554b8ecafc91a4705ec030a941d94883
Author: Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 2 21:17:46 2016 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Wed Mar 2 21:17:46 2016 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=ba81c1dc
sci-astronomy/swarp: cleanup to move in main tree
Package-Manager: portage-2.2.27
sci-astronomy/swarp/swarp-2.38.0.ebuild | 41 ---------------------------------
sci-astronomy/swarp/swarp-9999.ebuild | 34 ++++++++++++---------------
2 files changed, 15 insertions(+), 60 deletions(-)
diff --git a/sci-astronomy/swarp/swarp-2.38.0.ebuild b/sci-astronomy/swarp/swarp-2.38.0.ebuild
deleted file mode 100644
index 71c254d..0000000
--- a/sci-astronomy/swarp/swarp-2.38.0.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-if [[ ${PV} == "9999" ]] ; then
- inherit subversion
- ESVN_REPO_URI="https://astromatic.net/pubsvn/software/${PN}/trunk"
- SRC_URI=""
- KEYWORDS=""
- AUTOTOOLS_AUTORECONF=1
-else
- SRC_URI="http://www.astromatic.net/download/${PN}/${P}.tar.gz"
- KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-fi
-
-AUTOTOOLS_IN_SOURCE_BUILD=1
-
-inherit autotools-utils
-
-DESCRIPTION="Resample and coadd astronomical FITS images"
-HOMEPAGE="http://astromatic.iap.fr/software/swarp"
-
-LICENSE="GPL-3"
-SLOT="0"
-
-IUSE="doc threads"
-
-RDEPEND=""
-DEPEND="${RDEPEND}"
-
-src_configure() {
- local myeconfargs=( $(use_enable threads) )
- autotools-utils_src_configure
-}
-
-src_install () {
- autotools-utils_src_install
- use doc && dodoc doc/*
-}
diff --git a/sci-astronomy/swarp/swarp-9999.ebuild b/sci-astronomy/swarp/swarp-9999.ebuild
index 71c254d..0ba8a64 100644
--- a/sci-astronomy/swarp/swarp-9999.ebuild
+++ b/sci-astronomy/swarp/swarp-9999.ebuild
@@ -1,26 +1,18 @@
-# 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
-if [[ ${PV} == "9999" ]] ; then
- inherit subversion
- ESVN_REPO_URI="https://astromatic.net/pubsvn/software/${PN}/trunk"
- SRC_URI=""
- KEYWORDS=""
- AUTOTOOLS_AUTORECONF=1
-else
- SRC_URI="http://www.astromatic.net/download/${PN}/${P}.tar.gz"
- KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-fi
+inherit subversion
-AUTOTOOLS_IN_SOURCE_BUILD=1
-
-inherit autotools-utils
+ESVN_REPO_URI="https://astromatic.net/pubsvn/software/${PN}/trunk"
+ESVN_OPTIONS="--trust-server-cert-failures=unknown-ca"
+SRC_URI=""
+KEYWORDS=""
DESCRIPTION="Resample and coadd astronomical FITS images"
-HOMEPAGE="http://astromatic.iap.fr/software/swarp"
+HOMEPAGE="http://www.astromatic.net/software/swarp"
LICENSE="GPL-3"
SLOT="0"
@@ -30,12 +22,16 @@ IUSE="doc threads"
RDEPEND=""
DEPEND="${RDEPEND}"
+src_prepare() {
+ default
+ subversion_src_prepare
+}
+
src_configure() {
- local myeconfargs=( $(use_enable threads) )
- autotools-utils_src_configure
+ econf $(use_enable threads)
}
src_install () {
- autotools-utils_src_install
+ default
use doc && dodoc doc/*
}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-astronomy/swarp/
@ 2020-09-22 10:23 Aisha Tammy
0 siblings, 0 replies; 6+ messages in thread
From: Aisha Tammy @ 2020-09-22 10:23 UTC (permalink / raw
To: gentoo-commits
commit: 29c73f7cffb6dde1a1eaf822f7f96065802848f0
Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Tue Sep 22 10:20:04 2020 +0000
Commit: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
CommitDate: Tue Sep 22 10:20:04 2020 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=29c73f7c
sci-astronomy/swarp: drop package
present in ::gentoo
Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
sci-astronomy/swarp/metadata.xml | 12 ------------
sci-astronomy/swarp/swarp-9999.ebuild | 36 -----------------------------------
2 files changed, 48 deletions(-)
diff --git a/sci-astronomy/swarp/metadata.xml b/sci-astronomy/swarp/metadata.xml
deleted file mode 100644
index 209ee5d8f..000000000
--- a/sci-astronomy/swarp/metadata.xml
+++ /dev/null
@@ -1,12 +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-astronomy@gentoo.org</email>
- <name>Gentoo Astronomy Project</name>
- </maintainer>
- <longdescription lang="en">
-SWarp takes astronomical FITS images with a WCS-like projection,
-resample and stack them all.
-</longdescription>
-</pkgmetadata>
diff --git a/sci-astronomy/swarp/swarp-9999.ebuild b/sci-astronomy/swarp/swarp-9999.ebuild
deleted file mode 100644
index 1b51d9193..000000000
--- a/sci-astronomy/swarp/swarp-9999.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit subversion
-
-ESVN_REPO_URI="https://astromatic.net/pubsvn/software/${PN}/trunk"
-ESVN_OPTIONS="--trust-server-cert-failures=unknown-ca"
-SRC_URI=""
-KEYWORDS=""
-
-DESCRIPTION="Resample and coadd astronomical FITS images"
-HOMEPAGE="http://www.astromatic.net/software/swarp"
-
-LICENSE="GPL-3"
-SLOT="0"
-
-IUSE="doc threads"
-
-RDEPEND=""
-DEPEND="${RDEPEND}"
-
-src_prepare() {
- default
- subversion_src_prepare
-}
-
-src_configure() {
- econf $(use_enable threads)
-}
-
-src_install () {
- default
- use doc && dodoc doc/*
-}
^ permalink raw reply related [flat|nested] 6+ messages in thread
end of thread, other threads:[~2020-09-22 10:24 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-02-27 23:01 [gentoo-commits] proj/sci:master commit in: sci-astronomy/swarp/ Sebastien Fabbro
-- strict thread matches above, loose matches on Subject: below --
2020-09-22 10:23 Aisha Tammy
2016-03-06 19:41 Justin Lecher
2014-03-22 9:45 Justin Lecher
2014-03-21 17:10 Sebastien Fabbro
2012-07-04 22:42 Sebastien Fabbro
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox