summaryrefslogtreecommitdiff
path: root/dev-python/tabulate
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-01-06 23:13:57 +0000
committerV3n3RiX <venerix@redcorelinux.org>2018-01-06 23:13:57 +0000
commita8b0d35ab742f31538d515dea39716e566d533c0 (patch)
tree40c6c87a13f0e5ef1111ed1bdd9191f3bd1c1e59 /dev-python/tabulate
parent8fcdcec5fbdd0e3a77391e4f354218014f59f358 (diff)
gentoo resync : 06.01.2018
Diffstat (limited to 'dev-python/tabulate')
-rw-r--r--dev-python/tabulate/Manifest2
-rw-r--r--dev-python/tabulate/tabulate-0.7.7.ebuild34
2 files changed, 0 insertions, 36 deletions
diff --git a/dev-python/tabulate/Manifest b/dev-python/tabulate/Manifest
index 111bb4251da5..aa2e20d142f7 100644
--- a/dev-python/tabulate/Manifest
+++ b/dev-python/tabulate/Manifest
@@ -1,5 +1,3 @@
-DIST tabulate-0.7.7.tar.gz 39140 BLAKE2B 72f34e184350c86b0ae162ee85fb6cfdc532dac6d20402a16bead766e0c419f1eeecf9384746e5ad7c167fd4b2544d080a4c390dca0864f6f14d03de30791605 SHA512 36ea77577e36fad28efa9b1c10686a4a795acdea77be4f8b442b38f45d70993245b4b473b0ce146f3d24eb49f186ec47ada332a9a3973ac2786d5a46b7358213
DIST tabulate-0.8.1.tar.gz 45666 BLAKE2B f46a0c8bed50e37a2d536d28fe822fb92fbc124c7ac4c29260b6a7ab9828588f49b7e94ec8925505ef9724b1fb4647e5e9207d29b2f3a2f526641ac7ac229ce0 SHA512 f724fbabee53c738c846a5cf645470f5f97074e2b33eb030b4859478931661dac53e5446d77a656553e2dec323230bb116d350997e1407d794382f537e6dfdf5
-EBUILD tabulate-0.7.7.ebuild 681 BLAKE2B 55c016fc62110f33df342d551c62390737167130a478d97a788fb983ec345c3fd848c54f99cfa6d4efa8f0341b86286f0a222490b3d824be7dcc476f98954625 SHA512 56bc4ee47c1a161844d8bf22054398e7d589c08349afb4be97ef10f7b5558ac5ab9ca4030881aa44239262bab37cbd2fbb26d066a09978c7e175e6e355428ca9
EBUILD tabulate-0.8.1.ebuild 677 BLAKE2B 1945ca3fd3c2e28c9312eeac7966f699fac3c7175471630b42ac5a954d462bdf44eb4a5d4a14181c56427ebc63b5430ac2c3e7e31fc7713252d0a4a14fd3ae94 SHA512 305c8a8a492de5910a15d121bebf5f7cca208357e0a400d2bcda1b92c83fefb141085d23edf925281182c908a9036bf0ffb66ab0a54bdf76101f760151e946b8
MISC metadata.xml 321 BLAKE2B 8b68baf97f22e2360ba30d2a86e181492217d12162d7717d3f69dff5a51926867d5ac8a227fa93c345e3ddb80036ba97839e7ab22aab5df27ec974048b666a41 SHA512 4967ca411c6ee428e897be2be259da008f9dec1991754235f0e8f79d64b5175e69d460c3cfee72f49faa41704ebda3c46bb2f30fc157e95cec4d8d60ae7ba89d
diff --git a/dev-python/tabulate/tabulate-0.7.7.ebuild b/dev-python/tabulate/tabulate-0.7.7.ebuild
deleted file mode 100644
index aafb6b10a1d1..000000000000
--- a/dev-python/tabulate/tabulate-0.7.7.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 python{3_4,3_5,3_6} )
-
-inherit distutils-r1
-
-DESCRIPTION="Pretty-print tabular data"
-HOMEPAGE="https://pypi.python.org/pypi/tabulate"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-SLOT="0"
-LICENSE="MIT"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="test"
-
-RDEPEND=""
-DEPEND="${RDEPEND}
- test? ( virtual/python-funcsigs[${PYTHON_USEDEP}] )
-"
-
-# Missing something in tarball
-#
-# from common import assert_equal
-RESTRICT=test
-
-python_test() {
- local testcase
- for testcase in test/*py; do
- ${PYTHON} ${testcase} || die
- done
-}