public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Matt Thode" <prometheanfire@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-db/
Date: Thu,  6 Jul 2017 16:58:47 +0000 (UTC)	[thread overview]
Message-ID: <1499360263.bc432e111304474d27e61b3e0d272501e4dde58a.prometheanfire@gentoo> (raw)

commit:     bc432e111304474d27e61b3e0d272501e4dde58a
Author:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Thu Jul  6 16:28:36 2017 +0000
Commit:     Matt Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Thu Jul  6 16:57:43 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc432e11

dev-python/oslo-db: cleanup

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-python/oslo-db/Manifest              |  2 --
 dev-python/oslo-db/oslo-db-4.13.5.ebuild | 54 -----------------------------
 dev-python/oslo-db/oslo-db-4.7.1.ebuild  | 59 --------------------------------
 3 files changed, 115 deletions(-)

diff --git a/dev-python/oslo-db/Manifest b/dev-python/oslo-db/Manifest
index 1ce964893db..2ab617501b7 100644
--- a/dev-python/oslo-db/Manifest
+++ b/dev-python/oslo-db/Manifest
@@ -1,3 +1 @@
-DIST oslo.db-4.13.5.tar.gz 146934 SHA256 56db26084273e6852f3851ddcd1c8e82a4ecfa5873cf2cba6630115a21eec681 SHA512 45e444141e87089a1fd4fb8e284bbf8ca6180d4901a9ba3e2c07b07d2dd522d66780044997e9dc11c0b003d643df5c3d1f98335762fe04f237c55062b3f866ef WHIRLPOOL e3a1b181cabac30d01ca915c4c9da7683c09787a54448b99d9b716bf5f8a29c4a61127e3ca6ae7211c643d865675ff67c5c1495cd0ee3a7681bfec0eba080330
 DIST oslo.db-4.17.0.tar.gz 158388 SHA256 e25bfea8393bdbecba84cf82910378c34d646e930e9bedd5e8bf7b20a73f3ba7 SHA512 3b3c3af14080aae46d9d18958470b4004e9ed9d392475558f38973fc2acd2d4be0a49840f6914d3b54f54bf2cf44fe9f9302b8f7459a3fade28a5b0ba923546d WHIRLPOOL f14335f062166eca7fa407f7aab2d0a54b015060a74c93e39549b1de68b505c1a74f117ab1a0640eea275c977a6137fdd44b97d63eea233b290e9c5ef7d5eb31
-DIST oslo.db-4.7.1.tar.gz 140778 SHA256 a39e091e4d06c757dd6249f121e2ae1babef595f451f7ff56110c0be718d0d8c SHA512 0df3a715ee7742ff51bcc2c291cff3076de33cb57e47fbe23ffc0649a85130a6f6a27928a1452b4087b3bacec9e8cc35e0a69fb012df494e7254b6ad7b349b59 WHIRLPOOL 4bb8751107705e46e164d47306e814d9864074e61e23220313bc5d9099d42a81545b352d960731b579eac69f02e3674cb032baafed8715e974ae2eeb59b354a7

diff --git a/dev-python/oslo-db/oslo-db-4.13.5.ebuild b/dev-python/oslo-db/oslo-db-4.13.5.ebuild
deleted file mode 100644
index 3d108291b7a..00000000000
--- a/dev-python/oslo-db/oslo-db-4.13.5.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 python3_4 python3_5)
-
-inherit distutils-r1
-
-DESCRIPTION="OpenStack Common DB Code"
-HOMEPAGE="https://launchpad.net/oslo"
-SRC_URI="mirror://pypi/${PN:0:1}/oslo.db/oslo.db-${PV}.tar.gz"
-S="${WORKDIR}/oslo.db-${PV}"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE="+sqlite mysql postgres"
-REQUIRED_USE="|| ( mysql postgres sqlite )"
-
-DEPEND="
-	dev-python/setuptools[${PYTHON_USEDEP}]
-	>=dev-python/pbr-1.6.0[${PYTHON_USEDEP}]
-"
-RDEPEND="
-	>=dev-python/alembic-0.8.4[${PYTHON_USEDEP}]
-	>=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]
-	>=dev-python/oslo-i18n-2.1.0[${PYTHON_USEDEP}]
-	>=dev-python/oslo-config-3.14.0[${PYTHON_USEDEP}]
-	>=dev-python/oslo-context-2.9.0[${PYTHON_USEDEP}]
-	>=dev-python/oslo-utils-3.16.0[${PYTHON_USEDEP}]
-	sqlite? (
-		|| (
-			>=dev-python/sqlalchemy-1.0.10[sqlite,${PYTHON_USEDEP}]
-			<dev-python/sqlalchemy-1.1.0[sqlite,${PYTHON_USEDEP}]
-		)
-	)
-	mysql? (
-		dev-python/mysql-python
-		|| (
-			>=dev-python/sqlalchemy-1.0.10[${PYTHON_USEDEP}]
-			<dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
-		)
-	)
-	postgres? (
-		dev-python/psycopg:2
-		|| (
-			>=dev-python/sqlalchemy-1.0.10[${PYTHON_USEDEP}]
-			<dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
-		)
-	)
-	>=dev-python/sqlalchemy-migrate-0.9.6[${PYTHON_USEDEP}]
-	>=dev-python/stevedore-1.16.0[${PYTHON_USEDEP}]
-	>=dev-python/six-1.9.0[${PYTHON_USEDEP}]
-"

diff --git a/dev-python/oslo-db/oslo-db-4.7.1.ebuild b/dev-python/oslo-db/oslo-db-4.7.1.ebuild
deleted file mode 100644
index 917859f61ee..00000000000
--- a/dev-python/oslo-db/oslo-db-4.7.1.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-PYTHON_COMPAT=( python2_7 python3_4 python3_5)
-
-inherit distutils-r1
-
-DESCRIPTION="OpenStack Common DB Code"
-HOMEPAGE="https://launchpad.net/oslo"
-SRC_URI="mirror://pypi/${PN:0:1}/oslo.db/oslo.db-${PV}.tar.gz"
-S="${WORKDIR}/oslo.db-${PV}"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE="+sqlite mysql postgres"
-REQUIRED_USE="|| ( mysql postgres sqlite )"
-
-DEPEND="
-	dev-python/setuptools[${PYTHON_USEDEP}]
-	>=dev-python/pbr-1.6.0[${PYTHON_USEDEP}]
-	<dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
-"
-RDEPEND="
-	>=dev-python/alembic-0.8.0[${PYTHON_USEDEP}]
-	>=dev-python/Babel-1.3[${PYTHON_USEDEP}]
-	!~dev-python/Babel-2.3.0[${PYTHON_USEDEP}]
-	!~dev-python/Babel-2.3.1[${PYTHON_USEDEP}]
-	!~dev-python/Babel-2.3.2[${PYTHON_USEDEP}]
-	!~dev-python/Babel-2.3.3[${PYTHON_USEDEP}]
-	>=dev-python/oslo-i18n-2.1.0[${PYTHON_USEDEP}]
-	>=dev-python/oslo-config-3.7.0[${PYTHON_USEDEP}]
-	>=dev-python/oslo-context-0.2.0[${PYTHON_USEDEP}]
-	>=dev-python/oslo-utils-3.5.0[${PYTHON_USEDEP}]
-	sqlite? (
-		|| (
-			>=dev-python/sqlalchemy-1.0.10[sqlite,${PYTHON_USEDEP}]
-			<dev-python/sqlalchemy-1.1.0[sqlite,${PYTHON_USEDEP}]
-		)
-	)
-	mysql? (
-		dev-python/mysql-python
-		|| (
-			>=dev-python/sqlalchemy-1.0.10[${PYTHON_USEDEP}]
-			<dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
-		)
-	)
-	postgres? (
-		dev-python/psycopg:2
-		|| (
-			>=dev-python/sqlalchemy-1.0.10[${PYTHON_USEDEP}]
-			<dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
-		)
-	)
-	>=dev-python/sqlalchemy-migrate-0.9.6[${PYTHON_USEDEP}]
-	>=dev-python/stevedore-1.5.0[${PYTHON_USEDEP}]
-	>=dev-python/six-1.9.0[${PYTHON_USEDEP}]
-"


             reply	other threads:[~2017-07-06 16:58 UTC|newest]

Thread overview: 33+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-07-06 16:58 Matt Thode [this message]
  -- strict thread matches above, loose matches on Subject: below --
2020-11-27 16:18 [gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-db/ Michał Górny
2020-11-25  9:23 Michał Górny
2020-10-17 21:53 Matthew Thode
2020-07-02 23:54 Matthew Thode
2020-06-02 18:40 Matthew Thode
2019-03-25  0:07 Matthew Thode
2018-09-03 19:09 Matt Thode
2018-06-24 15:24 Pacho Ramos
2018-06-07 19:53 Matt Thode
2018-06-07 19:53 Matt Thode
2018-05-08 16:55 Matt Thode
2018-03-31  0:59 Matt Thode
2018-02-17  1:47 Matt Thode
2018-02-11 18:35 Matt Thode
2018-02-11 18:35 Matt Thode
2018-01-28  4:13 Matt Thode
2017-12-21  7:13 Matt Thode
2017-11-22  2:00 Matt Thode
2017-08-27  4:26 Matt Thode
2017-08-02 23:59 Matt Thode
2017-07-06 16:58 Matt Thode
2017-02-27  2:16 Matt Thode
2017-01-03 17:03 Matt Thode
2017-01-03 17:03 Matt Thode
2016-12-19 22:37 Matt Thode
2016-12-07 15:43 Matt Thode
2016-08-16 23:09 Matt Thode
2016-03-29 18:55 Matt Thode
2016-03-25  3:43 Matt Thode
2016-02-28  7:32 Matt Thode
2015-10-15  5:25 Matt Thode
2015-10-15  5:25 Matt Thode

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=1499360263.bc432e111304474d27e61b3e0d272501e4dde58a.prometheanfire@gentoo \
    --to=prometheanfire@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