Gentoo Archives: gentoo-commits

From: Sebastien Fabbro <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-astronomy/weightwatcher/
Date: Thu, 03 Mar 2016 00:26:55
Message-Id: 1456968154.689198d52db4192a09ee37ba7db6f0a2aad1d4c1.bicatali@gentoo
1 commit: 689198d52db4192a09ee37ba7db6f0a2aad1d4c1
2 Author: Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 3 01:21:38 2016 +0000
4 Commit: Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 3 01:22:34 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=689198d5
7
8 sci-astronomy/weightwatcher: Initial import
9
10 Package-Manager: portage-2.2.27
11
12 sci-astronomy/weightwatcher/Manifest | 1 +
13 sci-astronomy/weightwatcher/metadata.xml | 14 ++++++++++++++
14 .../weightwatcher/weightwatcher-1.12.ebuild | 22 ++++++++++++++++++++++
15 3 files changed, 37 insertions(+)
16
17 diff --git a/sci-astronomy/weightwatcher/Manifest b/sci-astronomy/weightwatcher/Manifest
18 new file mode 100644
19 index 0000000..7e5aade
20 --- /dev/null
21 +++ b/sci-astronomy/weightwatcher/Manifest
22 @@ -0,0 +1 @@
23 +DIST weightwatcher-1.12.tar.gz 460583 SHA256 5730a923d7a4544fc66f21ad7b1f105108a5dca4038b74b5e4ecdd9c1a6a58fd SHA512 392ca6442de96e6c35447b7b34c67b22e7793831337aaf0f06e45d40e63f8c5e9605649fe39a67a5baf9eadcb79fa9f5d998fcb9504f85606f75071d672b0ada WHIRLPOOL fc5bbdfb3caf487941b173bb6e8725c922592a8cff5af2a482839df0d334fc34470536deb71c50deaee85b06521ef6df07b24dbee2456779813d75937fe7fd44
24
25 diff --git a/sci-astronomy/weightwatcher/metadata.xml b/sci-astronomy/weightwatcher/metadata.xml
26 new file mode 100644
27 index 0000000..86c4c7d
28 --- /dev/null
29 +++ b/sci-astronomy/weightwatcher/metadata.xml
30 @@ -0,0 +1,14 @@
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-astronomy@g.o</email>
36 + <name>Gentoo Astronomy Project</name>
37 +</maintainer>
38 +<longdescription lang="en">
39 + WeightWatcher is a program that combines weight-maps, flag-maps and
40 + polygon data in order to produce control maps which can directly be
41 + used in astronomical image-processing packages like Drizzle,
42 + <pkg>sci-astronomy/sextractor</pkg> or <pkg>sci-astronomy/swarp</pkg>.
43 +</longdescription>
44 +</pkgmetadata>
45
46 diff --git a/sci-astronomy/weightwatcher/weightwatcher-1.12.ebuild b/sci-astronomy/weightwatcher/weightwatcher-1.12.ebuild
47 new file mode 100644
48 index 0000000..1caaeb2
49 --- /dev/null
50 +++ b/sci-astronomy/weightwatcher/weightwatcher-1.12.ebuild
51 @@ -0,0 +1,22 @@
52 +# Copyright 1999-2016 Gentoo Foundation
53 +# Distributed under the terms of the GNU General Public License v2
54 +# $Id$
55 +
56 +EAPI=6
57 +
58 +DESCRIPTION="Combine weight maps and polygon for astronomical images weighting"
59 +HOMEPAGE="http://www.astromatic.net/software/weightwatcher/"
60 +SRC_URI="http://www.astromatic.net/download/${PN}/${P}.tar.gz"
61 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
62 +
63 +LICENSE="GPL-3"
64 +SLOT="0"
65 +IUSE="doc"
66 +
67 +RDEPEND=""
68 +DEPEND="${RDEPEND}"
69 +
70 +src_install () {
71 + default
72 + use doc && dodoc doc/*
73 +}