From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6CAFB138335 for ; Thu, 15 Nov 2018 01:01:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 34007E0A5D; Thu, 15 Nov 2018 01:01:49 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EA33CE0A5D for ; Thu, 15 Nov 2018 01:01:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 12AF6335C5A for ; Thu, 15 Nov 2018 01:01:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D8526466 for ; Thu, 15 Nov 2018 01:01:44 +0000 (UTC) From: "Virgil Dupras" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Virgil Dupras" Message-ID: <1542243596.c45b1ed25133f6cc1838748bb8fd2378952d5f98.vdupras@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/shortuuid/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/shortuuid/Manifest dev-python/shortuuid/metadata.xml dev-python/shortuuid/shortuuid-0.4.3.ebuild X-VCS-Directories: dev-python/shortuuid/ X-VCS-Committer: vdupras X-VCS-Committer-Name: Virgil Dupras X-VCS-Revision: c45b1ed25133f6cc1838748bb8fd2378952d5f98 X-VCS-Branch: master Date: Thu, 15 Nov 2018 01:01:44 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: d78e1fb3-7bd2-434c-aa0c-430268067f2a X-Archives-Hash: faba17a1977e95c6f0eebfe018cccbff commit: c45b1ed25133f6cc1838748bb8fd2378952d5f98 Author: Virgil Dupras gentoo org> AuthorDate: Thu Nov 15 00:59:56 2018 +0000 Commit: Virgil Dupras gentoo org> CommitDate: Thu Nov 15 00:59:56 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c45b1ed2 dev-python/shortuuid: remove last-rited package Signed-off-by: Virgil Dupras gentoo.org> dev-python/shortuuid/Manifest | 1 - dev-python/shortuuid/metadata.xml | 11 ----------- dev-python/shortuuid/shortuuid-0.4.3.ebuild | 25 ------------------------- 3 files changed, 37 deletions(-) diff --git a/dev-python/shortuuid/Manifest b/dev-python/shortuuid/Manifest deleted file mode 100644 index 68a070a2fb8..00000000000 --- a/dev-python/shortuuid/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST shortuuid-0.4.3.tar.gz 6096 BLAKE2B f658bed1ba10b6a18508834e27c4a9a6a9d080c7a6c2a75413bb2b22a71b339ef66b73b8f99436c609b00ecdc1d38b691e2eba32b5c34ea83d4c8191275aa0f4 SHA512 409bcaaff421a392640e39a7d25d4eaa320826971dca9d13270b61f21c78f65c617c302b3f7db5d0a3400c8ed4380a3a8eda90d1e9ad13d0a3a7eca53440ea7e diff --git a/dev-python/shortuuid/metadata.xml b/dev-python/shortuuid/metadata.xml deleted file mode 100644 index 3c92e94f4a8..00000000000 --- a/dev-python/shortuuid/metadata.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - A library that generates short, pretty, unambiguous unique IDs by using an extensive, case-sensitive alphabet and omitting similar-looking letters and numbers. - - shortuuid - stochastic-technologies/shortuuid - https://github.com/stochastic-technologies/shortuuid/issues - - diff --git a/dev-python/shortuuid/shortuuid-0.4.3.ebuild b/dev-python/shortuuid/shortuuid-0.4.3.ebuild deleted file mode 100644 index 96c28acd7b8..00000000000 --- a/dev-python/shortuuid/shortuuid-0.4.3.ebuild +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} ) - -inherit distutils-r1 - -DESCRIPTION="A generator library for concise, unambiguous and URL-safe UUIDs" -HOMEPAGE="https://pypi.org/project/shortuuid/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 x86" - -IUSE="test" - -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] - test? ( dev-python/pep8[${PYTHON_USEDEP}] )" - -python_test() { - ${EPYTHON} ${PN}/tests.py || die "Tests failed with ${EPYTHON}" -}