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: Wed,  7 Dec 2016 15:43:06 +0000 (UTC)	[thread overview]
Message-ID: <1481125347.cb9ea54979313e17f6c8b17ec9b8bb878defc46c.prometheanfire@gentoo> (raw)

commit:     cb9ea54979313e17f6c8b17ec9b8bb878defc46c
Author:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Wed Dec  7 15:20:54 2016 +0000
Commit:     Matt Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Wed Dec  7 15:42:27 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb9ea549

dev-python/oslo-db: bup

Package-Manager: portage-2.3.0

 dev-python/oslo-db/Manifest              |  1 +
 dev-python/oslo-db/oslo-db-4.13.4.ebuild | 55 ++++++++++++++++++++++++++++++++
 2 files changed, 56 insertions(+)

diff --git a/dev-python/oslo-db/Manifest b/dev-python/oslo-db/Manifest
index d45eb78..7812bc3 100644
--- a/dev-python/oslo-db/Manifest
+++ b/dev-python/oslo-db/Manifest
@@ -1,2 +1,3 @@
 DIST oslo.db-4.13.3.tar.gz 147300 SHA256 67c150a269a7752827325998aa59494b0e49205127cf3f3f78b23a07810d39fd SHA512 4bc353523ca8099b4d563fd836876e73496f77ec77fb346d1796c93684951dd29d24dda01b87606d5ee047eebe508ef5735dcea7183a0a06feb24338ab4f92e4 WHIRLPOOL 7aa2d45c84ee25e13a9004fe318e28a5f7875884f6392dd76f2a23627524dd80d7d51b30ad54f4694cb31b86544924d3c97936ab167ee6f9249071df515c77ce
+DIST oslo.db-4.13.4.tar.gz 147063 SHA256 0fc63679fe7881f80937fd2dfee2200aac896cc8d217c7887ebba82e390e77f6 SHA512 1dbaaae54274550053bedf1221dbf1b9e808c0a1038d507f951b3488df03d310cc2f5b56d68e12acf35043eec78dbf1f75ed885e7f61851de201828218a286bb WHIRLPOOL aa682c370621c213b24a1ad26ffc1a9e3b94629f698773030fade5b42f0be59b540d90018afda80e95b6c617a267890f78f8a21cc45009927d7f9a69a9324fd2
 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.4.ebuild b/dev-python/oslo-db/oslo-db-4.13.4.ebuild
new file mode 100644
index 00000000..306e70a
--- /dev/null
+++ b/dev-python/oslo-db/oslo-db-4.13.4.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+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}]
+"


             reply	other threads:[~2016-12-07 15:43 UTC|newest]

Thread overview: 33+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-12-07 15:43 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-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-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=1481125347.cb9ea54979313e17f6c8b17ec9b8bb878defc46c.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