forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Package-Manager: Portage-2.3.6, Repoman-2.3.3
- Loading branch information
1 parent
e587e36
commit 05506dd
Showing
2 changed files
with
63 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST oslo.db-4.17.1.tar.gz 159919 SHA256 a38250c599b6d3e04f008251098eab1b7951e29d8e5ba1ff16fb3f1c55bceac9 SHA512 8bbe89feb56784b964778655cc9e12e57d20079ef520f68ca115168273ec86705b27c5551cd7707c6d64b8d87b742c6d7f80d9cce39141751cf77fb51cc9b1de WHIRLPOOL eebdcbe4974a915237bb237a0c484ac6433dedd54aa991ca140e0e802b26ff4a070619d04f2a97501ed59be0dbc3195dfc588f31716f43505e70141ed8b3a7c2 | ||
DIST oslo.db-4.25.0.tar.gz 164879 SHA256 923ad7cde18ee36b11199fa8ac14eff7a6bf6cd02de37b888ac886a4d35b18d3 SHA512 ca027c748cdf5f1a7231b1a9817de449eb06b2002cd5c5cb4a9a70e3dec424caf76308dce2db33236f72ee253492e89ea2b4893e3c64df6306d23848257211ed WHIRLPOOL f5e81573c0b45fc8322549005ce9b9168b33da4fee1b68fbaaa2011b97cb0878f35f1a9c5d55049b795f5b750040dcd0ce04289bef278c0b4be7e8c5846b7d12 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
# 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 )" | ||
|
||
CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}] | ||
!~dev-python/pbr-2.1.0[${PYTHON_USEDEP}]" | ||
DEPEND=" | ||
dev-python/setuptools[${PYTHON_USEDEP}] | ||
${CDEPEND} | ||
" | ||
RDEPEND=" | ||
${CDEPEND} | ||
>=dev-python/alembic-0.8.10[${PYTHON_USEDEP}] | ||
>=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}] | ||
>=dev-python/oslo-i18n-2.1.0[${PYTHON_USEDEP}] | ||
>=dev-python/oslo-i18n-3.15.2[${PYTHON_USEDEP}] | ||
>=dev-python/oslo-config-4.0.0[${PYTHON_USEDEP}] | ||
!~dev-python/oslo-config-4.3.0[${PYTHON_USEDEP}] | ||
!~dev-python/oslo-config-4.4.0[${PYTHON_USEDEP}] | ||
>=dev-python/oslo-utils-3.20.0[${PYTHON_USEDEP}] | ||
sqlite? ( | ||
>=dev-python/sqlalchemy-1.0.10[sqlite,${PYTHON_USEDEP}] | ||
!~dev-python/sqlalchemy-1.1.5[sqlite,${PYTHON_USEDEP}] | ||
!~dev-python/sqlalchemy-1.1.6[sqlite,${PYTHON_USEDEP}] | ||
!~dev-python/sqlalchemy-1.1.7[sqlite,${PYTHON_USEDEP}] | ||
!~dev-python/sqlalchemy-1.1.8[sqlite,${PYTHON_USEDEP}] | ||
) | ||
mysql? ( | ||
dev-python/mysql-python | ||
>=dev-python/sqlalchemy-1.0.10[${PYTHON_USEDEP}] | ||
!~dev-python/sqlalchemy-1.1.5[${PYTHON_USEDEP}] | ||
!~dev-python/sqlalchemy-1.1.6[${PYTHON_USEDEP}] | ||
!~dev-python/sqlalchemy-1.1.7[${PYTHON_USEDEP}] | ||
!~dev-python/sqlalchemy-1.1.8[${PYTHON_USEDEP}] | ||
) | ||
postgres? ( | ||
dev-python/psycopg:2 | ||
>=dev-python/sqlalchemy-1.0.10[${PYTHON_USEDEP}] | ||
!~dev-python/sqlalchemy-1.1.5[${PYTHON_USEDEP}] | ||
!~dev-python/sqlalchemy-1.1.6[${PYTHON_USEDEP}] | ||
!~dev-python/sqlalchemy-1.1.7[${PYTHON_USEDEP}] | ||
!~dev-python/sqlalchemy-1.1.8[${PYTHON_USEDEP}] | ||
) | ||
>=dev-python/sqlalchemy-migrate-0.11.0[${PYTHON_USEDEP}] | ||
>=dev-python/stevedore-1.20.0[${PYTHON_USEDEP}] | ||
>=dev-python/six-1.9.0[${PYTHON_USEDEP}] | ||
" |