dev-python/pyasn1: Clean old up
authorMichał Górny <mgorny@gentoo.org>
Fri, 5 Jan 2018 22:02:59 +0000 (23:02 +0100)
committerMichał Górny <mgorny@gentoo.org>
Fri, 5 Jan 2018 23:19:01 +0000 (00:19 +0100)
dev-python/pyasn1/Manifest
dev-python/pyasn1/pyasn1-0.1.8.ebuild [deleted file]
dev-python/pyasn1/pyasn1-0.3.6.ebuild [deleted file]

index 940c76e17d3c11447980e4d1d2776a88cbf0af5a..40e33cbad847bf17fabbfcd4994571bbd6840018 100644 (file)
@@ -1,4 +1,2 @@
-DIST pyasn1-0.1.8.tar.gz 75676 BLAKE2B f3bd346887021ff6410d6b4cf76998c2bc83c2911bf8e08b8c76644a2e9cdd79960caeeb2063ce0ea0027536db2ad3546f0a38cbcdc6cd45ea5c1e0c51e0b9df SHA512 0a0b9b8018ae80a0e0d84ea3a4f217951bf42dce909a354c97890d4b4fc4f49b19d9d0757103ac9002c17c6c622c8e8d66e1f8242b8545a7da455ef3583acdfa
 DIST pyasn1-0.2.3.tar.gz 100099 BLAKE2B 32e6fa765fc5c217f66ca5618acc132c96fd8adc3649e5323696ac8dcd2cc11fcbd0a362e53575465da79feb422452b9f964e4972ab7f581571e5cbfc14a8945 SHA512 c55b95c1995f2fc36ec28f35837ca456a2fac06e90edc6491a3335ae949e4eacbbeb14f6289a17e994b49d4dc60870bba3e79344c44496d5547c38ab1ef183ab
-DIST pyasn1-0.3.6.tar.gz 117506 BLAKE2B b0603058fa62764ab3d1b42337795663d81999561aa3f572fcab65f694bb6ba0aed9eef5aaf524971bc397690d80714a8987f6aea8318dfed65b8ed9f6e4e347 SHA512 0857b957bd29f999858869e02ee84ec86aae6362229da14b47f4c54f1358632d161e417325e0e2cec8a3fa293f52156d703481dac872e7f323e317cf14197dce
 DIST pyasn1-0.3.7.tar.gz 117643 BLAKE2B 66e4987a63139c7af06d6bcdb125ef6f0f46ea5885bbbefae6c76252bd96296abf71a59f6ddc6f196ef78077a62649963c4d9419546f631d93e723dca30bf9b2 SHA512 85735ecb5b83979e51c9f663e2e0dcfbc317ba7e22474d78998f97c40a3487fd06ade9a259d1a4a8de5f4e70e5521a060af127799b92931ceb26abd384ec5807
diff --git a/dev-python/pyasn1/pyasn1-0.1.8.ebuild b/dev-python/pyasn1/pyasn1-0.1.8.ebuild
deleted file mode 100644 (file)
index 2c39557..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy pypy3 )
-
-inherit distutils-r1
-
-DESCRIPTION="ASN.1 library for Python"
-HOMEPAGE="http://pyasn1.sourceforge.net/ https://pypi.python.org/pypi/pyasn1"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
-IUSE="doc"
-
-RDEPEND=""
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-
-python_test() {
-       "${PYTHON}" test/suite.py || die "Tests fail with ${EPYTHON}"
-}
-
-src_install() {
-       local HTML_DOCS=( doc/pyasn1-tutorial.html )
-       use doc && HTML_DOCS=( doc/. )
-
-       distutils-r1_src_install
-}
diff --git a/dev-python/pyasn1/pyasn1-0.3.6.ebuild b/dev-python/pyasn1/pyasn1-0.3.6.ebuild
deleted file mode 100644 (file)
index 386b3f4..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy pypy3 )
-
-inherit distutils-r1
-
-DESCRIPTION="ASN.1 library for Python"
-HOMEPAGE="http://pyasn1.sourceforge.net/ https://pypi.python.org/pypi/pyasn1"
-SRC_URI="https://github.com/etingof/pyasn1/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-# The required doc/source/conf.py file is missing from the pypi:
-# https://github.com/etingof/pyasn1/issues/35
-#SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x64-cygwin ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
-IUSE="doc"
-
-RDEPEND=""
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
-       doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
-
-python_test() {
-       esetup.py test || die "Tests fail with ${EPYTHON}"
-}
-
-src_compile() {
-       if use doc; then
-               python_setup
-               esetup.py build_sphinx
-       fi
-       distutils-r1_src_compile
-}
-
-src_install() {
-       local HTML_DOCS
-       use doc && HTML_DOCS=( build/sphinx/html/. )
-
-       distutils-r1_src_install
-}