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 A09B5138350 for ; Sat, 28 Mar 2020 18:03:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 86572E0B0F; Sat, 28 Mar 2020 18:03:07 +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 63F9AE0B0F for ; Sat, 28 Mar 2020 18:03:07 +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 AAFE434FA7A for ; Sat, 28 Mar 2020 18:03:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 945F21AF for ; Sat, 28 Mar 2020 18:03:02 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1585418565.226b6de7aa312e90b281fa3779f69e36c5ef575e.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyodbc/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pyodbc/Manifest dev-python/pyodbc/pyodbc-4.0.16.ebuild X-VCS-Directories: dev-python/pyodbc/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 226b6de7aa312e90b281fa3779f69e36c5ef575e X-VCS-Branch: master Date: Sat, 28 Mar 2020 18:03:02 +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: e3e545b3-abe2-498c-b369-db90cfba3da0 X-Archives-Hash: adc46eb19c4eca58d1fb5e8968a1d623 commit: 226b6de7aa312e90b281fa3779f69e36c5ef575e Author: Michał Górny gentoo org> AuthorDate: Sat Mar 28 17:56:15 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Mar 28 18:02:45 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=226b6de7 dev-python/pyodbc: Remove redundant versions Signed-off-by: Michał Górny gentoo.org> dev-python/pyodbc/Manifest | 1 - dev-python/pyodbc/pyodbc-4.0.16.ebuild | 26 -------------------------- 2 files changed, 27 deletions(-) diff --git a/dev-python/pyodbc/Manifest b/dev-python/pyodbc/Manifest index ebf807f23fa..2a7f9a31658 100644 --- a/dev-python/pyodbc/Manifest +++ b/dev-python/pyodbc/Manifest @@ -1,2 +1 @@ -DIST pyodbc-4.0.16.tar.gz 204168 BLAKE2B 6e3ee7bad91f26992264edbac9db946d0c290a7a0ea7843ad4a13cc03aaec19272f91ec611e812bf9ccf86267d04ed3e69e07ede1482f5892a29343d39f543d0 SHA512 53f80ee7333210a1e20e89aa17ca7c2b57363826ac09069213454951ae35f8de689535c05b2278783e8b4a71d178860c3e1efebf51980343a59a9b190e41dda5 DIST pyodbc-4.0.23.tar.gz 215152 BLAKE2B 856c7222394b2a8efa4bae173189bf4753c800f1fc98c8054766243400574b3ddb4e45841892b6baf87c5f872de5c78c7a1a3d6b48c3aef9d38a68653ba14fab SHA512 1788fd1118e40449af730a99427c3188a01ec85592bc2dcc7a49fdf0d4332e27add62cfc5e6c20d635064d8ff28eb8b800621d8127e309ffcac4aba144b49049 diff --git a/dev-python/pyodbc/pyodbc-4.0.16.ebuild b/dev-python/pyodbc/pyodbc-4.0.16.ebuild deleted file mode 100644 index a7c00a8be7c..00000000000 --- a/dev-python/pyodbc/pyodbc-4.0.16.ebuild +++ /dev/null @@ -1,26 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python3_6 ) - -inherit distutils-r1 flag-o-matic - -DESCRIPTION="python ODBC module to connect to almost any database" -HOMEPAGE="https://github.com/mkleehammer/pyodbc" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="mssql" - -RDEPEND=">=dev-db/unixODBC-2.3.0 - mssql? ( >=dev-db/freetds-0.64[odbc] )" -DEPEND="${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}]" - -python_configure_all() { - append-cxxflags -fno-strict-aliasing -}