commit:     ca6befd5bec349a8d9c93aeba1310f02551965c9
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 12 12:13:55 2019 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Thu Dec 12 12:30:58 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca6befd5

dev-python/vcstools: Remove old

Package-Manager: Portage-2.3.81, Repoman-2.3.20
Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>

 dev-python/vcstools/Manifest               |  1 -
 dev-python/vcstools/vcstools-0.1.40.ebuild | 59 ------------------------------
 dev-python/vcstools/vcstools-9999.ebuild   | 59 ------------------------------
 3 files changed, 119 deletions(-)

diff --git a/dev-python/vcstools/Manifest b/dev-python/vcstools/Manifest
index b1c741d7949..07dd6f6cfdc 100644
--- a/dev-python/vcstools/Manifest
+++ b/dev-python/vcstools/Manifest
@@ -1,2 +1 @@
-DIST vcstools-0.1.40.tar.gz 62109 BLAKE2B 
a5347ba62031e602421f26b081e26e55549e92fc4a0648b58a3c4c3b0134b91dba096604f83edcc51a99c989e60fa51e8af2f9ecbf992500a6e942c19da9c82c
 SHA512 
7cd062f3c72b27f78361d3000ed8951b1723ea7dd99bf05ea711e8a8b93c42c2acebdfd6c7cf7384730c708da11bd0d2712a54e538dd833eafbcef46f23857cd
 DIST vcstools-0.1.42.tar.gz 65979 BLAKE2B 
2deb29116e891bc93410e4a8f58938009140d01baaa834cccfdba2be3243d98bb11507fd134284bc1dbeca1434ea0eeaf2ed332dcb579bbacf1bc92815f8623d
 SHA512 
1b54270c878684862eb607c2e445fe24d8edfdd8ea2cc75e899044d9e8e89a882fd2dd6fb7825553f83003ae7af08850c18fdeaabaa107a6bfdb2759b32e8fa6

diff --git a/dev-python/vcstools/vcstools-0.1.40.ebuild 
b/dev-python/vcstools/vcstools-0.1.40.ebuild
deleted file mode 100644
index 2526583e223..00000000000
--- a/dev-python/vcstools/vcstools-0.1.40.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-PYTHON_COMPAT=( python{2_7,3_5,3_6} )
-
-SCM=""
-if [ "${PV#9999}" != "${PV}" ] ; then
-       SCM="git-r3"
-       EGIT_REPO_URI="https://github.com/vcstools/vcstools";
-fi
-
-inherit ${SCM} distutils-r1
-
-DESCRIPTION="Python library for interacting with various VCS systems"
-HOMEPAGE="http://wiki.ros.org/vcstools";
-if [ "${PV#9999}" != "${PV}" ] ; then
-       SRC_URI=""
-       KEYWORDS=""
-else
-       SRC_URI="http://download.ros.org/downloads/${PN}/${P}.tar.gz
-               https://github.com/vcstools/vcstools/archive/${PV}.tar.gz -> 
${P}.tar.gz
-       "
-       KEYWORDS="~amd64 ~arm"
-fi
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-       dev-python/pyyaml[${PYTHON_USEDEP}]
-       dev-python/python-dateutil[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}
-       test? (
-               dev-python/nose[${PYTHON_USEDEP}]
-               dev-vcs/git
-               dev-vcs/bzr
-               dev-vcs/mercurial
-               dev-vcs/subversion
-       )
-"
-
-python_test() {
-       # From travis.yml
-       # Set git config to silence some stuff in the tests
-       git config --global user.email "[email protected]"
-       git config --global user.name "Foo Bar"
-       # Set the hg user
-       echo -e "[ui]\nusername = Your Name <[email protected]>" >> ~/.hgrc
-       # Set the bzr user
-       bzr whoami "Your Name <[email protected]>"
-       #git config --global user.email "[email protected]"
-       #git config --global user.name "Your Name"
-
-       nosetests --with-coverage --cover-package vcstools || die
-}

diff --git a/dev-python/vcstools/vcstools-9999.ebuild 
b/dev-python/vcstools/vcstools-9999.ebuild
deleted file mode 100644
index 2526583e223..00000000000
--- a/dev-python/vcstools/vcstools-9999.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-PYTHON_COMPAT=( python{2_7,3_5,3_6} )
-
-SCM=""
-if [ "${PV#9999}" != "${PV}" ] ; then
-       SCM="git-r3"
-       EGIT_REPO_URI="https://github.com/vcstools/vcstools";
-fi
-
-inherit ${SCM} distutils-r1
-
-DESCRIPTION="Python library for interacting with various VCS systems"
-HOMEPAGE="http://wiki.ros.org/vcstools";
-if [ "${PV#9999}" != "${PV}" ] ; then
-       SRC_URI=""
-       KEYWORDS=""
-else
-       SRC_URI="http://download.ros.org/downloads/${PN}/${P}.tar.gz
-               https://github.com/vcstools/vcstools/archive/${PV}.tar.gz -> 
${P}.tar.gz
-       "
-       KEYWORDS="~amd64 ~arm"
-fi
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-       dev-python/pyyaml[${PYTHON_USEDEP}]
-       dev-python/python-dateutil[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}
-       test? (
-               dev-python/nose[${PYTHON_USEDEP}]
-               dev-vcs/git
-               dev-vcs/bzr
-               dev-vcs/mercurial
-               dev-vcs/subversion
-       )
-"
-
-python_test() {
-       # From travis.yml
-       # Set git config to silence some stuff in the tests
-       git config --global user.email "[email protected]"
-       git config --global user.name "Foo Bar"
-       # Set the hg user
-       echo -e "[ui]\nusername = Your Name <[email protected]>" >> ~/.hgrc
-       # Set the bzr user
-       bzr whoami "Your Name <[email protected]>"
-       #git config --global user.email "[email protected]"
-       #git config --global user.name "Your Name"
-
-       nosetests --with-coverage --cover-package vcstools || die
-}

Reply via email to