public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/dbutils/
Date: Sun, 17 Oct 2021 07:41:54 +0000 (UTC)	[thread overview]
Message-ID: <1634456490.918adaa7797412f75d020d075b1b228c216064e6.mgorny@gentoo> (raw)

commit:     918adaa7797412f75d020d075b1b228c216064e6
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 17 07:35:58 2021 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Oct 17 07:41:30 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=918adaa7

dev-python/dbutils: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/dbutils/Manifest             |  3 ---
 dev-python/dbutils/dbutils-1.3.ebuild   | 44 ---------------------------------
 dev-python/dbutils/dbutils-2.0.1.ebuild | 32 ------------------------
 dev-python/dbutils/dbutils-2.0.ebuild   | 44 ---------------------------------
 4 files changed, 123 deletions(-)

diff --git a/dev-python/dbutils/Manifest b/dev-python/dbutils/Manifest
index e81263ef720..5b8e54b6fa3 100644
--- a/dev-python/dbutils/Manifest
+++ b/dev-python/dbutils/Manifest
@@ -1,4 +1 @@
-DIST DBUtils-1.3.tar.gz 91733 BLAKE2B 8fb3fd16208c27fbbbbcbf1e7b9de2d4d2e8008916309256bd2ae5494d0ff60071fd3fa839dc7ccbe8832f333bad52d97dc4d176c822cc1ce3d5ce0bb05d637e SHA512 47aaa63144e6a0f4d020adb54fc5f36af01848a12f8adfcbd9889825980a1479b32041c087992de5f44478cc25729d1c97ed6cb094def2b93165f0120f10c5b6
-DIST DBUtils-2.0.1.tar.gz 91789 BLAKE2B ab231000211b7a704da8cd43862830e3a6cf3e42d8053ac0391ce68b6f51f0faae9172c83db156c1d8efc8fc1e8afad9c05eee89edbe7061cc7102e84ce08683 SHA512 0e3aedce9b659e717d60106cac7c76d6d488b5629a102a714e6fe57ac162a74c787e31e984cdeb3e375b3add6539325576f68f1779b7f7ce558ba00770eeacc8
 DIST DBUtils-2.0.2.tar.gz 92119 BLAKE2B d53dc81000b426e2cfb8dace616d589ec622c7cdb10e1903163eb9901336d300598ef7f54e30aa1efbd5fa72e648f4f63c288a4d3ffcdf6fada89159e8fd3925 SHA512 650be54c4993f6277fc7a2d7cefcb658dec6c793d0ef8554e9e80d70a58c7fbbf69485e8e60684c2dfcb28780bdfa575796455fd12c0cff3b82d8951785d8ba0
-DIST DBUtils-2.0.tar.gz 92911 BLAKE2B 1822f85b9da1bd7936d01f8069deef10e8ab9b7a5c89de718071cf4783f2845357ccca0e85057d430c57f33a2a7c6d239f632032397bb1f0013a40e42383b5f1 SHA512 7818eab572db4798d0a7a2eaed6c4ba91c79c8517da56db21c07525f0097ca80c0beef1c9608b0b80c3a93f1372f37de7c8ec97f2e33dc4dc4a3d464c5981d13

diff --git a/dev-python/dbutils/dbutils-1.3.ebuild b/dev-python/dbutils/dbutils-1.3.ebuild
deleted file mode 100644
index 6eeaef98fe7..00000000000
--- a/dev-python/dbutils/dbutils-1.3.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-PYTHON_COMPAT=( python3_{7..8} )
-DISTUTILS_USE_SETUPTOOLS=no
-
-inherit distutils-r1
-
-MY_PN="DBUtils"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Database connections for multi-threaded environments"
-HOMEPAGE="
-	https://webwareforpython.github.io/DBUtils/
-	https://github.com/WebwareForPython/DBUtils/
-	https://pypi.org/project/DBUtils/
-"
-SRC_URI="mirror://pypi/${P:0:1}/${PN}/${MY_P}.tar.gz"
-
-LICENSE="OSL-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-
-S="${WORKDIR}/${MY_P}"
-
-distutils_enable_tests nose
-
-python_prepare_all() {
-	#prevent tests from being installed
-	#prevent docs being installed outside /usr/share
-	sed -i -e "s/, 'DBUtils.Tests'//" \
-		-e "/package_data=/d" \
-		setup.py || die "sed failed"
-	distutils-r1_python_prepare_all
-}
-
-python_install_all() {
-	dodoc "${S}/${MY_PN}"/Docs/*.rst
-	rm "${S}/${MY_PN}"/Docs/*.rst || die
-	local HTML_DOCS=( "${S}/${MY_PN}"/Docs/. )
-	distutils-r1_python_install_all
-}

diff --git a/dev-python/dbutils/dbutils-2.0.1.ebuild b/dev-python/dbutils/dbutils-2.0.1.ebuild
deleted file mode 100644
index 72882396514..00000000000
--- a/dev-python/dbutils/dbutils-2.0.1.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-PYTHON_COMPAT=( python3_{8..10} )
-inherit distutils-r1
-
-MY_PN="DBUtils"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Database connections for multi-threaded environments"
-HOMEPAGE="
-	https://webwareforpython.github.io/DBUtils/
-	https://github.com/WebwareForPython/DBUtils/
-	https://pypi.org/project/DBUtils/
-"
-SRC_URI="mirror://pypi/${P:0:1}/${PN}/${MY_P}.tar.gz"
-S="${WORKDIR}/${MY_P}"
-
-LICENSE="OSL-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-
-distutils_enable_tests unittest
-
-python_install_all() {
-	dodoc docs/*.rst
-	rm docs/*.rst || die
-	local HTML_DOCS=( docs/. )
-	distutils-r1_python_install_all
-}

diff --git a/dev-python/dbutils/dbutils-2.0.ebuild b/dev-python/dbutils/dbutils-2.0.ebuild
deleted file mode 100644
index 907f98400ce..00000000000
--- a/dev-python/dbutils/dbutils-2.0.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-PYTHON_COMPAT=( python3_{7..9} )
-DISTUTILS_USE_SETUPTOOLS=bdepend
-
-inherit distutils-r1
-
-MY_PN="DBUtils"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Database connections for multi-threaded environments"
-HOMEPAGE="
-	https://webwareforpython.github.io/DBUtils/
-	https://github.com/WebwareForPython/DBUtils/
-	https://pypi.org/project/DBUtils/
-"
-SRC_URI="mirror://pypi/${P:0:1}/${PN}/${MY_P}.tar.gz"
-
-LICENSE="OSL-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-
-S="${WORKDIR}/${MY_P}"
-
-distutils_enable_tests nose
-
-python_prepare_all() {
-	#prevent tests from being installed
-	#prevent docs being installed outside /usr/share
-	sed -i -e "s/, 'DBUtils.Tests'//" \
-		-e "/package_data=/d" \
-		setup.py || die "sed failed"
-	distutils-r1_python_prepare_all
-}
-
-python_install_all() {
-	dodoc "${S}"/docs/*.rst
-	rm "${S}"/docs/*.rst || die
-	local HTML_DOCS=( "${S}"/docs/. )
-	distutils-r1_python_install_all
-}


             reply	other threads:[~2021-10-17  7:41 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-10-17  7:41 Michał Górny [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-05-18 16:10 [gentoo-commits] repo/gentoo:master commit in: dev-python/dbutils/ Michał Górny
2024-05-18 16:10 Michał Górny
2024-03-17 16:24 Michał Górny
2024-03-17 16:24 [gentoo-commits] repo/gentoo:master commit in: dev-python/DBUtils/ Michał Górny
2023-10-20 12:59 Michał Górny
2023-07-24 11:30 Michał Górny
2023-04-28  5:56 Michał Górny
2023-03-17 15:21 Michał Górny
2022-11-14  4:36 Michał Górny
2022-07-02 11:36 Michał Górny
2022-07-02 11:36 Michał Górny
2022-06-22 15:10 [gentoo-commits] repo/gentoo:master commit in: dev-python/dbutils/ Andrew Ammerlaan
2022-05-16 13:17 Michał Górny
2022-01-15  7:23 Arthur Zamarin
2021-12-22 18:10 Arthur Zamarin
2021-11-27  7:19 Michał Górny
2021-11-26 21:56 Michał Górny
2021-07-09  7:26 Michał Górny
2021-06-05 13:34 Michał Górny
2021-04-08 22:46 Michał Górny
2021-04-08 22:46 Michał Górny
2020-12-11 12:48 Michał Górny
2020-11-26  7:53 Joonas Niilola
2020-11-17 10:50 Michał Górny
2020-03-18 11:11 Joonas Niilola
2020-03-18 11:11 Joonas Niilola
2018-03-18 19:19 Michał Górny

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1634456490.918adaa7797412f75d020d075b1b228c216064e6.mgorny@gentoo \
    --to=mgorny@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox