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 81C75138334 for ; Mon, 1 Apr 2019 17:52:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 75BD0E0882; Mon, 1 Apr 2019 17:52:54 +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 370B8E0882 for ; Mon, 1 Apr 2019 17:52:54 +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 90FFF335D39 for ; Mon, 1 Apr 2019 17:52:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 49415584 for ; Mon, 1 Apr 2019 17:52:50 +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: <1554141003.8200741ceab7d593e6a92e91877a18a714661d03.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: 8200741ceab7d593e6a92e91877a18a714661d03 X-VCS-Branch: master Date: Mon, 1 Apr 2019 17:52:50 +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: 4a53cf9f-dce3-49ce-8d07-5e4d7f6f6289 X-Archives-Hash: bd8e023ae95af6f31a646eb2efb06b15 commit: 8200741ceab7d593e6a92e91877a18a714661d03 Author: Virgil Dupras gentoo org> AuthorDate: Mon Apr 1 17:30:18 2019 +0000 Commit: Virgil Dupras gentoo org> CommitDate: Mon Apr 1 17:50:03 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8200741c dev-python/sqlparse: new package Signed-off-by: Virgil Dupras gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11 dev-python/sqlparse/Manifest | 1 + dev-python/sqlparse/metadata.xml | 16 ++++++++++++++++ dev-python/sqlparse/sqlparse-0.3.0.ebuild | 25 +++++++++++++++++++++++++ 3 files changed, 42 insertions(+) diff --git a/dev-python/sqlparse/Manifest b/dev-python/sqlparse/Manifest new file mode 100644 index 00000000000..8de093a571b --- /dev/null +++ b/dev-python/sqlparse/Manifest @@ -0,0 +1 @@ +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 new file mode 100644 index 00000000000..b650fb79cb7 --- /dev/null +++ b/dev-python/sqlparse/metadata.xml @@ -0,0 +1,16 @@ + + + + + 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 new file mode 100644 index 00000000000..17294f018af --- /dev/null +++ b/dev-python/sqlparse/sqlparse-0.3.0.ebuild @@ -0,0 +1,25 @@ +# 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}" +}