summaryrefslogtreecommitdiff
path: root/dev-python/ccdproc
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2020-01-15 15:51:32 +0000
committerV3n3RiX <venerix@redcorelinux.org>2020-01-15 15:51:32 +0000
commit21435953e16cda318a82334ddbadb3b5c36d9ea7 (patch)
treee1810a4b135afce04b34862ef0fab2bfaeb8aeca /dev-python/ccdproc
parent7bc9c63c9da678a7e6fceb095d56c634afd22c56 (diff)
gentoo resync : 15.01.2020
Diffstat (limited to 'dev-python/ccdproc')
-rw-r--r--dev-python/ccdproc/Manifest5
-rw-r--r--dev-python/ccdproc/ccdproc-1.1.0.ebuild53
-rw-r--r--dev-python/ccdproc/ccdproc-1.2.0.ebuild54
-rw-r--r--dev-python/ccdproc/metadata.xml17
4 files changed, 0 insertions, 129 deletions
diff --git a/dev-python/ccdproc/Manifest b/dev-python/ccdproc/Manifest
deleted file mode 100644
index ca0d11c7ef4d..000000000000
--- a/dev-python/ccdproc/Manifest
+++ /dev/null
@@ -1,5 +0,0 @@
-DIST ccdproc-1.1.0.tar.gz 493426 BLAKE2B dec23d02d4ff5d61e2b348a0d68eb48d45b701456dac7242f183e892319759697a6737b0bba2afca29ea56acf42d25d62da8e3129e5fa23a9544f9c5034a0c60 SHA512 72c55df91e2ede41898af0631d83121f7e13f468c16da570e6fca5742f431914be7da5e030f62041fb59b2d8c721b4250205d7b733d8bbb2becb15d9b98607be
-DIST ccdproc-1.2.0.tar.gz 504810 BLAKE2B c890a1c289aabd9bb07365020cc1834478613329bb47e3e904c0fdbec660f1d23ddd5656a2a5af60bf1c760789e5b947c7f199be62fcf66fa780399fdfa1a77c SHA512 f9f400aedf46ea7614e5a958f65e058dc081604b3bed499cdabe6abf4df3c4d1457469aaa15511edf1a2518f98e6d6fe8677a5b89b01b2dde4c0d0817d8c64df
-EBUILD ccdproc-1.1.0.ebuild 1211 BLAKE2B 61bffd3d7b40fc1779cfec6d88ce041267e2732d03690eef4024c39a80cb3440f792f012ce9aefe7f0f407b645bf67856b298c7da1eefcc909e3fb81e4aaa616 SHA512 7a827bfbb24e0ec18e3db488a7bf5e7fccc66de2cf139a4879d4a99d4fc92b3168dccb27835781d59333d848953d8c6fc3046c557a217624016d9d19cf5f80bd
-EBUILD ccdproc-1.2.0.ebuild 1259 BLAKE2B 85d105ce5953b6aa25a2ff9f86ebb647b6c3238055a524c37e57be98d340366ca304ad9b6266cdb21afbacdd57db538a07867d40789a17f70f57a20a9d53c537 SHA512 c48bcea67604d1234e6a7b3bf1f395d28994edde32a5bd5e5cc5b0d2ad7948a24f950a92b2ea1cf69c948a6751449559af0797823d67f89428e8f4b2f2beb2e1
-MISC metadata.xml 656 BLAKE2B cece38e1f945f48a8e82858505d281a1154296d1dc6cb41845046e901aa8ad39110d8cb7a8a4f6de699ebf62560ac95af46b9385aabe44f6969bcaf3db88e95a SHA512 49c3ba25e1411c6a55a1adf61ebb6ff13f2843b5e66a7672d4359bcf5c21710b946b78693a55665eab835629fff37fa60c41a473f757ddb8a4d5cbe2e3cdce81
diff --git a/dev-python/ccdproc/ccdproc-1.1.0.ebuild b/dev-python/ccdproc/ccdproc-1.1.0.ebuild
deleted file mode 100644
index 7d8d58105a24..000000000000
--- a/dev-python/ccdproc/ccdproc-1.1.0.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python{2_7,3_5} )
-
-inherit distutils-r1
-
-DESCRIPTION="Astropy affiliated package for reducing optical/IR CCD data"
-HOMEPAGE="https://github.com/astropy/ccdproc"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="doc test"
-RESTRICT="!test? ( test )"
-
-DOCS=( README.rst )
-
-RDEPEND="
- dev-python/astropy[${PYTHON_USEDEP}]
- dev-python/astropy-helpers[${PYTHON_USEDEP}]
- dev-python/numpy[${PYTHON_USEDEP}]
- sci-libs/scipy[${PYTHON_USEDEP}]"
-
-DEPEND="${RDEPEND}
- dev-python/setuptools[${PYTHON_USEDEP}]
- doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
- test? (
- dev-python/astroscrappy[${PYTHON_USEDEP}]
- dev-python/pytest[${PYTHON_USEDEP}]
- dev-python/reproject[${PYTHON_USEDEP}]
- )"
-
-python_prepare_all() {
- sed -i -e '/auto_use/s/True/False/' setup.cfg || die
- distutils-r1_python_prepare_all
-}
-
-python_compile_all() {
- use doc && esetup.py build_sphinx
-}
-
-python_test() {
- esetup.py test
-}
-
-python_install_all() {
- use doc && local HTML_DOCS=( docs/_build/html/. )
- distutils-r1_python_install_all
-}
diff --git a/dev-python/ccdproc/ccdproc-1.2.0.ebuild b/dev-python/ccdproc/ccdproc-1.2.0.ebuild
deleted file mode 100644
index b859d5a5fa0e..000000000000
--- a/dev-python/ccdproc/ccdproc-1.2.0.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python{2_7,3_5,3_6} )
-
-inherit distutils-r1
-
-DESCRIPTION="Astropy affiliated package for reducing optical/IR CCD data"
-HOMEPAGE="https://github.com/astropy/ccdproc"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="doc test"
-RESTRICT="!test? ( test )"
-
-DOCS=( README.rst )
-
-RDEPEND="
- dev-python/astropy[${PYTHON_USEDEP}]
- dev-python/astropy-helpers[${PYTHON_USEDEP}]
- dev-python/numpy[${PYTHON_USEDEP}]
- sci-libs/scipy[${PYTHON_USEDEP}]"
-
-DEPEND="${RDEPEND}
- dev-python/setuptools[${PYTHON_USEDEP}]
- doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
- test? (
- dev-python/astroscrappy[${PYTHON_USEDEP}]
- dev-python/pytest[${PYTHON_USEDEP}]
- dev-python/reproject[${PYTHON_USEDEP}]
- sci-libs/scikits_image[${PYTHON_USEDEP}]
- )"
-
-python_prepare_all() {
- sed -i -e '/auto_use/s/True/False/' setup.cfg || die
- distutils-r1_python_prepare_all
-}
-
-python_compile_all() {
- use doc && esetup.py build_sphinx
-}
-
-python_test() {
- esetup.py test
-}
-
-python_install_all() {
- use doc && local HTML_DOCS=( docs/_build/html/. )
- distutils-r1_python_install_all
-}
diff --git a/dev-python/ccdproc/metadata.xml b/dev-python/ccdproc/metadata.xml
deleted file mode 100644
index 8c6cd2dde78c..000000000000
--- a/dev-python/ccdproc/metadata.xml
+++ /dev/null
@@ -1,17 +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">
- ccdproc is a AstroPy-affliated package for the basic reduction of
- CCD images. It provides a framework for accounting for error propagation
- and bad pixel tracking through the reduction steps.
- </longdescription>
- <upstream>
- <remote-id type="pypi">ccdproc</remote-id>
- <remote-id type="github">astropy/ccdproc</remote-id>
- </upstream>
-</pkgmetadata>