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