Gentoo Archives: gentoo-commits

From: Alexis Ballier <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/vcstools/
Date: Mon, 05 Sep 2016 09:38:10
Message-Id: 1473068162.4ff4eeca25482d8827c179579262bd5e51551e5b.aballier@gentoo
1 commit: 4ff4eeca25482d8827c179579262bd5e51551e5b
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 5 09:36:02 2016 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 5 09:36:02 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ff4eeca
7
8 dev-python/vcstools: bump to 0.1.39
9
10 Package-Manager: portage-2.3.0
11
12 dev-python/vcstools/Manifest | 1 +
13 dev-python/vcstools/vcstools-0.1.39.ebuild | 59 ++++++++++++++++++++++++++++++
14 2 files changed, 60 insertions(+)
15
16 diff --git a/dev-python/vcstools/Manifest b/dev-python/vcstools/Manifest
17 index bad9fdc..1893f4b 100644
18 --- a/dev-python/vcstools/Manifest
19 +++ b/dev-python/vcstools/Manifest
20 @@ -1 +1,2 @@
21 DIST vcstools-0.1.38.tar.gz 54671 SHA256 0e3d2b5681c2776453fb5b61ceab61fdb965d5342e46c08a5b62095eb0237117 SHA512 a3693d34777235e562a5db006af8f33590df99ffce96f5d3cfd2d816ebdc23ee5fb3536bf289b64a36588e60ce20ce8396a448394f300a12672fd8bf5800973e WHIRLPOOL 86fccbb181849f2b60d8159073bb3de659b7d96173952cb9b68a2869048827c48860fb67859db1341a0defeee0915d41c1d6e77e812f807ca11e91e92e0ed250
22 +DIST vcstools-0.1.39.tar.gz 51610 SHA256 841bdfeca326b532ced45feea2a79b48008415ef117df008071ba74e985f59c1 SHA512 163ced29baa158d915169a4f8f432bd9ad60ddcd5abae0d3801b5d970049d717c11bd8aa95f7af9dfe48cdcbcce49d14331a82a9c41b9ded1ce4caa2e27cd901 WHIRLPOOL 1c47eda1e0e383336d8d940c4bf063c3aac04e21870d0fa567e239a882216ad857cf184afcef409a0645c38da069a9d1b5c34f1638230c1d59c6d8b7166b618e
23
24 diff --git a/dev-python/vcstools/vcstools-0.1.39.ebuild b/dev-python/vcstools/vcstools-0.1.39.ebuild
25 new file mode 100644
26 index 00000000..22eb44c
27 --- /dev/null
28 +++ b/dev-python/vcstools/vcstools-0.1.39.ebuild
29 @@ -0,0 +1,59 @@
30 +# Copyright 1999-2016 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=5
35 +PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} )
36 +
37 +SCM=""
38 +if [ "${PV#9999}" != "${PV}" ] ; then
39 + SCM="git-r3"
40 + EGIT_REPO_URI="https://github.com/vcstools/vcstools"
41 +fi
42 +
43 +inherit ${SCM} distutils-r1
44 +
45 +DESCRIPTION="Python library for interacting with various VCS systems"
46 +HOMEPAGE="http://wiki.ros.org/vcstools"
47 +if [ "${PV#9999}" != "${PV}" ] ; then
48 + SRC_URI=""
49 + KEYWORDS=""
50 +else
51 + SRC_URI="http://download.ros.org/downloads/${PN}/${P}.tar.gz
52 + https://github.com/vcstools/vcstools/archive/${PV}.tar.gz -> ${P}.tar.gz
53 + "
54 + KEYWORDS="~amd64 ~arm"
55 +fi
56 +
57 +LICENSE="BSD"
58 +SLOT="0"
59 +IUSE="test"
60 +
61 +RDEPEND="
62 + dev-python/pyyaml[${PYTHON_USEDEP}]
63 + dev-python/python-dateutil[${PYTHON_USEDEP}]
64 +"
65 +DEPEND="${RDEPEND}
66 + test? (
67 + dev-python/nose[${PYTHON_USEDEP}]
68 + dev-vcs/git
69 + dev-vcs/bzr
70 + dev-vcs/mercurial
71 + dev-vcs/subversion
72 + )
73 +"
74 +
75 +python_test() {
76 + # From travis.yml
77 + # Set git config to silence some stuff in the tests
78 + git config --global user.email "foo@×××××××.com"
79 + git config --global user.name "Foo Bar"
80 + # Set the hg user
81 + echo -e "[ui]\nusername = Your Name <your@××××.com>" >> ~/.hgrc
82 + # Set the bzr user
83 + bzr whoami "Your Name <name@×××××××.com>"
84 + #git config --global user.email "you@×××××××.com"
85 + #git config --global user.name "Your Name"
86 +
87 + nosetests --with-coverage --cover-package vcstools || die
88 +}