Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pymoc/
Date: Sat, 28 Dec 2019 16:47:03
Message-Id: 1577551612.3507e7599a1e3a0a4acf8cb9512df4bfa4994442.zlogene@gentoo
1 commit: 3507e7599a1e3a0a4acf8cb9512df4bfa4994442
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Sat Dec 28 16:46:52 2019 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Sat Dec 28 16:46:52 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3507e759
7
8 dev-python/pymoc: remove last-rited pkg
9
10 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
11
12 dev-python/pymoc/Manifest | 1 -
13 dev-python/pymoc/metadata.xml | 32 --------------------------------
14 dev-python/pymoc/pymoc-0.5.0.ebuild | 28 ----------------------------
15 3 files changed, 61 deletions(-)
16
17 diff --git a/dev-python/pymoc/Manifest b/dev-python/pymoc/Manifest
18 deleted file mode 100644
19 index 59c2dceaeff..00000000000
20 --- a/dev-python/pymoc/Manifest
21 +++ /dev/null
22 @@ -1 +0,0 @@
23 -DIST pymoc-0.5.0.tar.gz 33843 BLAKE2B 928b32a2982fa6faafbed04476bc3af444ae0e8617bad323f21d89bac8c6a21a8b24d721fb0502a0d5034e1eeaa67972666508e3fc2ad210c44e9a1c291a192b SHA512 cb327bed6fffa6eb4354c06f9b7e056baa9df1010d722b4fade6873fb862c4b27ea0a11647a510ce4007f7b8158e13eee7e146258d4c58ecee82adddf33bf89c
24
25 diff --git a/dev-python/pymoc/metadata.xml b/dev-python/pymoc/metadata.xml
26 deleted file mode 100644
27 index 0539850fc0b..00000000000
28 --- a/dev-python/pymoc/metadata.xml
29 +++ /dev/null
30 @@ -1,32 +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-astronomy@g.o</email>
36 - <name>Gentoo Astronomy Project</name>
37 - </maintainer>
38 - <longdescription lang="en">
39 - Frequently astronomical survey catalogues or images are sparse and
40 - cover only a small part of the sky. In a Multi-Order Coverage map
41 - the extent of data in a particular dataset is cached as a
42 - pre-calculated mask image. The hierarchical nature enables fast
43 - boolean operations in image space, without needing to perform complex
44 - geometrical calculations. Services such as VizieR generally offer the
45 - MOC masks, allowing a faster experience in graphical applications
46 - such as Aladin, or for researchers quickly needing to locate which
47 - datasets may contain overlapping coverage.
48 -
49 - The MOC mask image itself is tessellated and stored in NASA HealPix
50 - format, encoded inside a FITS image container. Using the HealPix
51 - (Hierarchical Equal Area isoLatitude Pixelization) tessellation
52 - method ensures that more precision (pixels) in the mask are available
53 - when describing complex shapes such as approximating survey or
54 - polygon edges, while only needing to store a single big cell/pixel
55 - when an coverage is either completely inside, or outside of the mask.
56 - Catalogues can be rendered on the mask as circles.
57 - </longdescription>
58 - <upstream>
59 - <remote-id type="pypi">pymoc</remote-id>
60 - <remote-id type="github">grahambell/pymoc</remote-id>
61 - </upstream>
62 -</pkgmetadata>
63
64 diff --git a/dev-python/pymoc/pymoc-0.5.0.ebuild b/dev-python/pymoc/pymoc-0.5.0.ebuild
65 deleted file mode 100644
66 index 451dd216cdf..00000000000
67 --- a/dev-python/pymoc/pymoc-0.5.0.ebuild
68 +++ /dev/null
69 @@ -1,28 +0,0 @@
70 -# Copyright 1999-2019 Gentoo Authors
71 -# Distributed under the terms of the GNU General Public License v2
72 -
73 -EAPI=6
74 -PYTHON_COMPAT=( python3_{5,6} )
75 -
76 -inherit distutils-r1 virtualx xdg-utils
77 -
78 -DESCRIPTION="Python Multi-Order Coverage maps for Virtual Observatory"
79 -HOMEPAGE="https://pymoc.readthedocs.org/"
80 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
81 -
82 -LICENSE="GPL-3"
83 -SLOT="0"
84 -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
85 -IUSE=""
86 -
87 -RDEPEND="
88 - dev-python/astropy[${PYTHON_USEDEP}]
89 - dev-python/healpy[${PYTHON_USEDEP}]
90 -"
91 -DEPEND="${RDEPEND}
92 - dev-python/setuptools[${PYTHON_USEDEP}]
93 -"
94 -
95 -python_test() {
96 - PYTHONPATH=lib "${PYTHON}" -m unittest discover -s test || die
97 -}