dev-util/conan: version bump to 0.30.2.

Closes: https://bugs.gentoo.org/641092
Closes: https://github.com/gentoo/gentoo/pull/6552
This commit is contained in:
Luigi 'Comio' Mantellini
2017-12-15 08:40:22 +01:00
committed by Patrice Clement
parent 9fe1aabab3
commit c65cf1e9cd
2 changed files with 56 additions and 0 deletions

View File

@@ -1,2 +1,3 @@
DIST conan-0.24.0.tar.gz 514654 BLAKE2B 6622bee623bbf9c488837a1369881f1b61329ef409eb9f58cd4503a41a1d38903d76873d1650aead8593ab06934b637de0aead2deb3df3ff5288661881a1c396 SHA512 6fdbf4731be6aa6fb06e2d976c97975dc4cdc60fb7a6381f99c83c19b73230de13c7a60bffa1ab6aac0d64ce20986cee99f98af986b23396107471ac804c08af
DIST conan-0.25.1.tar.gz 529592 BLAKE2B baa9e8cd7db9c9ed0a8fbe0538255c0c13637f1d7caad1de95522d2404166abf5506aa82a98da92d18b0d64ceae1585f5e167c36e8b1d92fdcd998502c576403 SHA512 487a0dca79afd6f0b6d6907fe7a95c310e5b4c97787dcf390c0d5797552ab1ba3aee9a90d45c3c9ee302f4b1a6e13c44ca8c20b6f11d789ce5d6f6bce068e600
DIST conan-0.30.2.tar.gz 573660 BLAKE2B 3f4a591c5ff949e67b84946238d802de3041eeda9116ee445db9187de8ef422896f26b45d9dd616dbd631ff317d98879771655b0c9cfa14bf052f35776f253f6 SHA512 ec9309d876a33dda322e3a19ced2d8e39d1e0593b8c8b6f7a8e4a09336d2b76a94c13fb3a091963af519ef93950a51e680238cb13c0156260b538af8e12e097f

View File

@@ -0,0 +1,55 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
PYTHON_REQ_USE="sqlite"
inherit distutils-r1
DESCRIPTION="Distributed C/C++ package manager"
HOMEPAGE="http://conan.io/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
# overly strict requirements?
# https://github.com/conan-io/conan/blob/develop/conans/requirements.txt
RDEPEND="
>=dev-python/bottle-0.12.8[${PYTHON_USEDEP}]
>=dev-python/colorama-0.3.3[${PYTHON_USEDEP}]
>=dev-python/distro-1.0.2[${PYTHON_USEDEP}]
>=dev-python/fasteners-0.14.1[${PYTHON_USEDEP}]
=dev-python/future-0.16.0[${PYTHON_USEDEP}]
=dev-python/node-semver-0.1.1[${PYTHON_USEDEP}]
>=dev-python/passlib-1.6.5[${PYTHON_USEDEP}]
=dev-python/patch-1.16[${PYTHON_USEDEP}]
>=dev-python/pluginbase-0.5[${PYTHON_USEDEP}]
>=dev-python/pyjwt-1.4[${PYTHON_USEDEP}]
>=dev-python/pygments-2.0[${PYTHON_USEDEP}]
=dev-python/pylint-1.6.5[${PYTHON_USEDEP}]
>=dev-python/pyyaml-3.11[${PYTHON_USEDEP}]
>=dev-python/requests-2.7[${PYTHON_USEDEP}]
>=dev-python/six-1.10[${PYTHON_USEDEP}]
"
DEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
${RDEPEND}
dev-lang/go
>=dev-python/mock-1.3.0[${PYTHON_USEDEP}]
>=dev-python/nose-1.3.7[${PYTHON_USEDEP}]
>=dev-python/nose-parameterized-0.5.0[${PYTHON_USEDEP}]
>=dev-python/webtest-2.0.18[${PYTHON_USEDEP}]
dev-util/cmake
)
"
python_test() {
cd "${BUILD_DIR}"/lib || die
PYTHONPATH=. nosetests -v . || die
}