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 EB71E138334 for ; Sun, 29 Dec 2019 13:06:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D104AE0C3B; Sun, 29 Dec 2019 13:06:39 +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 B98DDE0C3B for ; Sun, 29 Dec 2019 13:06:39 +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 0A68F34DCBB for ; Sun, 29 Dec 2019 13:06:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 51CAFB8 for ; Sun, 29 Dec 2019 13:06:36 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1577624771.06824034d319cfa83d1c81de9dc9857f03a5e4db.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/mysql-connector-python/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/mysql-connector-python/mysql-connector-python-2.1.7.ebuild X-VCS-Directories: dev-python/mysql-connector-python/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 06824034d319cfa83d1c81de9dc9857f03a5e4db X-VCS-Branch: master Date: Sun, 29 Dec 2019 13:06:36 +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: e8bdbcaf-60f5-4edd-a1f6-4cb8add99a33 X-Archives-Hash: a1e826cc79a530e261cfceed89ae7c85 commit: 06824034d319cfa83d1c81de9dc9857f03a5e4db Author: David Seifert gentoo org> AuthorDate: Sun Dec 29 13:06:11 2019 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Dec 29 13:06:11 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06824034 dev-python/mysql-connector-python: Remove old Package-Manager: Portage-2.3.83, Repoman-2.3.20 Signed-off-by: David Seifert gentoo.org> .../mysql-connector-python-2.1.7.ebuild | 37 ---------------------- 1 file changed, 37 deletions(-) diff --git a/dev-python/mysql-connector-python/mysql-connector-python-2.1.7.ebuild b/dev-python/mysql-connector-python/mysql-connector-python-2.1.7.ebuild deleted file mode 100644 index 1664a16cca9..00000000000 --- a/dev-python/mysql-connector-python/mysql-connector-python-2.1.7.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python3_5 ) -inherit distutils-r1 - -DESCRIPTION="Python client library for MariaDB/MySQL" -HOMEPAGE="https://dev.mysql.com/downloads/connector/python/" -SRC_URI="https://dev.mysql.com/get/Downloads/Connector-Python/${P}.tar.gz" - -KEYWORDS="~amd64 ~arm ~x86" -LICENSE="GPL-2" -SLOT="0" -IUSE="examples test" - -# tests/mysqld.py does not like MariaDB version strings. -# See the regex MySQLServerBase._get_version. -DEPEND="test? ( dev-db/mysql[server(+)] )" - -# Tests currently fail. -# mysql.connector.errors.DatabaseError: 1300 (HY000): Invalid utf8 character string: '' -RESTRICT="test" - -DOCS=( README.txt CHANGES.txt docs/README_DOCS.txt ) - -python_test() { - "${EPYTHON}" unittests.py --with-mysql="${EPREFIX%/}/usr" --unix-socket="${T}" -} - -python_install_all(){ - distutils-r1_python_install_all - if use examples ; then - dodoc -r examples - fi -}