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 80384138335 for ; Tue, 2 Apr 2019 17:34:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A63A3E0B1D; Tue, 2 Apr 2019 17:34:48 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 69992E0B1D for ; Tue, 2 Apr 2019 17:34:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 C8E85335CFC for ; Tue, 2 Apr 2019 17:34:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E860C58A for ; Tue, 2 Apr 2019 17:34: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: <1554226035.246776ea78909dd4f282d8743f359aaf76314a96.vdupras@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sqlparse/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/sqlparse/Manifest dev-python/sqlparse/metadata.xml dev-python/sqlparse/sqlparse-0.3.0.ebuild X-VCS-Directories: dev-python/sqlparse/ X-VCS-Committer: vdupras X-VCS-Committer-Name: Virgil Dupras X-VCS-Revision: 246776ea78909dd4f282d8743f359aaf76314a96 X-VCS-Branch: master Date: Tue, 2 Apr 2019 17:34: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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: e3044d63-8b48-48e1-89d7-a8ddac4d4082 X-Archives-Hash: fe32d277d8aa6bf9c42ddc055057f435 commit: 246776ea78909dd4f282d8743f359aaf76314a96 Author: Virgil Dupras gentoo org> AuthorDate: Tue Apr 2 17:27:15 2019 +0000 Commit: Virgil Dupras gentoo org> CommitDate: Tue Apr 2 17:27:15 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=246776ea dev-python/sqlparse: remove duplicate package I don't know why, I didn't properly run a search to find the already existing dev-python/python-sqlparse package before adding this new one. Removing without last-riting because it's been freshly created just yesterday. Closes: https://bugs.gentoo.org/682344 Signed-off-by: Virgil Dupras gentoo.org> dev-python/sqlparse/Manifest | 1 - dev-python/sqlparse/metadata.xml | 16 ---------------- dev-python/sqlparse/sqlparse-0.3.0.ebuild | 25 ------------------------- 3 files changed, 42 deletions(-) diff --git a/dev-python/sqlparse/Manifest b/dev-python/sqlparse/Manifest deleted file mode 100644 index 8de093a571b..00000000000 --- a/dev-python/sqlparse/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST sqlparse-0.3.0.tar.gz 64072 BLAKE2B fbee74c7222fa50c5d627959d5c8652dcd85ab5b5b771e3c8375cadc6e009c2fb1adc3c2428e27d769c210e7976c350bfab367cb7aa44dd7b4183ad9722a4ca6 SHA512 596d25f5fa2c797fe5652e36e9633397e7867586ff0959f52d1ff861c16d0e7c73644daf03d74169dd20255e802b7369d4dace0a44a3d94c15bd67faa41df551 diff --git a/dev-python/sqlparse/metadata.xml b/dev-python/sqlparse/metadata.xml deleted file mode 100644 index b650fb79cb7..00000000000 --- a/dev-python/sqlparse/metadata.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - vdupras@gentoo.org - Virgil Dupras - - - python@gentoo.org - Python - - - sqlparse - andialbrecht/sqlparse - - diff --git a/dev-python/sqlparse/sqlparse-0.3.0.ebuild b/dev-python/sqlparse/sqlparse-0.3.0.ebuild deleted file mode 100644 index 17294f018af..00000000000 --- a/dev-python/sqlparse/sqlparse-0.3.0.ebuild +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python2_7 python3_{5,6,7} ) -inherit distutils-r1 - -DESCRIPTION="A non-validating SQL parser module for Python" -HOMEPAGE="https://github.com/andialbrecht/sqlparse" -SRC_URI="https://github.com/andialbrecht/sqlparse/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64" -IUSE="test" - -RDEPEND="${DEPEND}" -BDEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] - test? ( dev-python/pytest )" - -python_test() { - pytest -vv || die "Tests fail with ${EPYTHON}" -}