Gentoo Archives: gentoo-commits

From: Virgil Dupras <vdupras@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/shortuuid/
Date: Thu, 15 Nov 2018 01:01:51
Message-Id: 1542243596.c45b1ed25133f6cc1838748bb8fd2378952d5f98.vdupras@gentoo
1 commit: c45b1ed25133f6cc1838748bb8fd2378952d5f98
2 Author: Virgil Dupras <vdupras <AT> gentoo <DOT> org>
3 AuthorDate: Thu Nov 15 00:59:56 2018 +0000
4 Commit: Virgil Dupras <vdupras <AT> gentoo <DOT> org>
5 CommitDate: Thu Nov 15 00:59:56 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c45b1ed2
7
8 dev-python/shortuuid: remove last-rited package
9
10 Signed-off-by: Virgil Dupras <vdupras <AT> gentoo.org>
11
12 dev-python/shortuuid/Manifest | 1 -
13 dev-python/shortuuid/metadata.xml | 11 -----------
14 dev-python/shortuuid/shortuuid-0.4.3.ebuild | 25 -------------------------
15 3 files changed, 37 deletions(-)
16
17 diff --git a/dev-python/shortuuid/Manifest b/dev-python/shortuuid/Manifest
18 deleted file mode 100644
19 index 68a070a2fb8..00000000000
20 --- a/dev-python/shortuuid/Manifest
21 +++ /dev/null
22 @@ -1 +0,0 @@
23 -DIST shortuuid-0.4.3.tar.gz 6096 BLAKE2B f658bed1ba10b6a18508834e27c4a9a6a9d080c7a6c2a75413bb2b22a71b339ef66b73b8f99436c609b00ecdc1d38b691e2eba32b5c34ea83d4c8191275aa0f4 SHA512 409bcaaff421a392640e39a7d25d4eaa320826971dca9d13270b61f21c78f65c617c302b3f7db5d0a3400c8ed4380a3a8eda90d1e9ad13d0a3a7eca53440ea7e
24
25 diff --git a/dev-python/shortuuid/metadata.xml b/dev-python/shortuuid/metadata.xml
26 deleted file mode 100644
27 index 3c92e94f4a8..00000000000
28 --- a/dev-python/shortuuid/metadata.xml
29 +++ /dev/null
30 @@ -1,11 +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-needed -->
35 - <longdescription>A library that generates short, pretty, unambiguous unique IDs by using an extensive, case-sensitive alphabet and omitting similar-looking letters and numbers.</longdescription>
36 - <upstream>
37 - <remote-id type="pypi">shortuuid</remote-id>
38 - <remote-id type="github">stochastic-technologies/shortuuid</remote-id>
39 - <bugs-to>https://github.com/stochastic-technologies/shortuuid/issues</bugs-to>
40 - </upstream>
41 -</pkgmetadata>
42
43 diff --git a/dev-python/shortuuid/shortuuid-0.4.3.ebuild b/dev-python/shortuuid/shortuuid-0.4.3.ebuild
44 deleted file mode 100644
45 index 96c28acd7b8..00000000000
46 --- a/dev-python/shortuuid/shortuuid-0.4.3.ebuild
47 +++ /dev/null
48 @@ -1,25 +0,0 @@
49 -# Copyright 1999-2017 Gentoo Foundation
50 -# Distributed under the terms of the GNU General Public License v2
51 -
52 -EAPI=6
53 -
54 -PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
55 -
56 -inherit distutils-r1
57 -
58 -DESCRIPTION="A generator library for concise, unambiguous and URL-safe UUIDs"
59 -HOMEPAGE="https://pypi.org/project/shortuuid/"
60 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
61 -
62 -LICENSE="BSD"
63 -SLOT="0"
64 -KEYWORDS="amd64 x86"
65 -
66 -IUSE="test"
67 -
68 -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
69 - test? ( dev-python/pep8[${PYTHON_USEDEP}] )"
70 -
71 -python_test() {
72 - ${EPYTHON} ${PN}/tests.py || die "Tests failed with ${EPYTHON}"
73 -}