[gentoo-commits] repo/gentoo:master commit in: dev-python/rosdistro/, dev-python/rosdistro/files/, profiles/

2023-01-24 Thread Jakov Smolić
commit: e30738b18bdd38e1da484c50f3b846d1f811d348
Author: Jakov Smolić  gentoo  org>
AuthorDate: Tue Jan 24 17:20:43 2023 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Tue Jan 24 20:17:47 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e30738b1

dev-python/rosdistro: treeclean

Signed-off-by: Jakov Smolić  gentoo.org>

 dev-python/rosdistro/Manifest   |   1 -
 dev-python/rosdistro/files/yaml.patch   | 252 
 dev-python/rosdistro/metadata.xml   |  11 --
 dev-python/rosdistro/rosdistro-0.8.3.ebuild |  46 -
 dev-python/rosdistro/rosdistro-.ebuild  |  46 -
 profiles/package.mask   |   1 -
 6 files changed, 357 deletions(-)

diff --git a/dev-python/rosdistro/Manifest b/dev-python/rosdistro/Manifest
deleted file mode 100644
index 29265cfd33c5..
--- a/dev-python/rosdistro/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST rosdistro-0.8.3.tar.gz 61665 BLAKE2B 
2d5084409d8222cd277a710a06616fa914a35fb6750e32df7bdee6b7b0285df1b15648b8255cda4aa5867dba3611c5ea294db4711ebf2cc38a11648092623aab
 SHA512 
19e248497b4001c522a84a52d768bc9f20a08020c88574d1a8345cf2173dc2aadd8a1480d4fddf2285ac579ee69dd0b6d4b930333cd6a9cbe32708efed2e5747

diff --git a/dev-python/rosdistro/files/yaml.patch 
b/dev-python/rosdistro/files/yaml.patch
deleted file mode 100644
index 2f81a0218b89..
--- a/dev-python/rosdistro/files/yaml.patch
+++ /dev/null
@@ -1,252 +0,0 @@
-Index: rosdistro-0.8.0/scripts/rosdistro_convert
-===
 rosdistro-0.8.0.orig/scripts/rosdistro_convert
-+++ rosdistro-0.8.0/scripts/rosdistro_convert
-@@ -58,7 +58,7 @@ def get_targets():
- url = BASE_SRC_URL + '/releases/targets.yaml'
- print('Load "%s"' % url)
- yaml_str = load_url(url)
--data = yaml.load(yaml_str)
-+data = yaml.safe_load(yaml_str)
- targets = {}
- for d in data:
- targets[d.keys()[0]] = d.values()[0]
-@@ -69,13 +69,13 @@ def convert_release(dist_name, targets):
- url = BASE_SRC_URL + '/releases/%s.yaml' % dist_name
- print('Load "%s"' % url)
- yaml_str = load_url(url)
--input_ = yaml.load(yaml_str)
-+input_ = yaml.safe_load(yaml_str)
- 
- # improve conversion performance by reusing results from last run
- last_dist = None
- if os.path.exists(dist_name + '/release.yaml'):
- with open(dist_name + '/release.yaml', 'r') as f:
--last_data = yaml.load(f.read())
-+last_data = yaml.safe_load(f.read())
- last_dist = ReleaseFile(dist_name, last_data)
- 
- output = {}
-@@ -162,7 +162,7 @@ def convert_source(dist_name):
- url = BASE_SRC_URL + '/releases/%s-devel.yaml' % dist_name
- print('Load "%s"' % url)
- yaml_str = load_url(url)
--input_ = yaml.load(yaml_str)
-+input_ = yaml.safe_load(yaml_str)
- 
- output = {}
- output['type'] = 'source'
-@@ -207,7 +207,7 @@ def convert_doc(dist_name):
- if filename.endswith('.rosinstall'):
- name = os.path.splitext(os.path.basename(filename))[0]
- with open(os.path.join(doc_base, filename)) as f:
--data = yaml.load(f)
-+data = yaml.safe_load(f)
- if name.endswith('_depends'):
- rosinstall_depends[name] = data
- else:
-Index: rosdistro-0.8.0/scripts/rosdistro_migrate_to_rep_141
-===
 rosdistro-0.8.0.orig/scripts/rosdistro_migrate_to_rep_141
-+++ rosdistro-0.8.0/scripts/rosdistro_migrate_to_rep_141
-@@ -18,7 +18,7 @@ import yaml
- 
- 
- def migrate(index_yaml):
--data = yaml.load(open(index_yaml, 'r'))
-+data = yaml.safe_load(open(index_yaml, 'r'))
- assert data['type'] == 'index'
- assert data['version'] == 1
- data['version'] = 2
-@@ -75,7 +75,7 @@ def generate_repos_url(repos_url, doc_ur
- data['repositories'] = {}
- 
- # migrate release stuff
--release_data = yaml.load(open(release_url, 'r'))
-+release_data = yaml.safe_load(open(release_url, 'r'))
- assert release_data['type'] == 'release'
- assert release_data['version'] == 1
- 
-@@ -100,7 +100,7 @@ def generate_repos_url(repos_url, doc_ur
- data['repositories'][repo_name] = repo_data
- 
- # migrate doc stuff
--doc_data = yaml.load(open(doc_url, 'r'))
-+doc_data = yaml.safe_load(open(doc_url, 'r'))
- assert doc_data['type'] == 'doc'
- assert doc_data['version'] == 1
- 
-@@ -111,7 +111,7 @@ def generate_repos_url(repos_url, doc_ur
- data['repositories'][repo_name]['doc'] = 
get_dict_parts(doc_repo_data, ['type', 'url', 'version'])
- 
- # migrate source stuff
--source_data = yaml.load(open(source_url, 'r'))
-+source_data = yaml.safe_load(open(source_url, 'r'))
- assert source_data['type'] == 'source'
- assert source_data['version'] == 1
- 
-@@ -137,10 +137,10 @@ def 

[gentoo-commits] repo/gentoo:master commit in: dev-python/rosdistro/

2021-09-23 Thread Arthur Zamarin
commit: a28fd8f2f04a9f672d7ba3543d66a191fe914e7b
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Sep 16 11:35:48 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Sep 23 14:06:43 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a28fd8f2

dev-python/rosdistro: enable py3.10, use d_e_t

passes tests

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/rosdistro/rosdistro-0.8.3.ebuild | 18 +-
 dev-python/rosdistro/rosdistro-.ebuild  | 18 +-
 2 files changed, 10 insertions(+), 26 deletions(-)

diff --git a/dev-python/rosdistro/rosdistro-0.8.3.ebuild 
b/dev-python/rosdistro/rosdistro-0.8.3.ebuild
index 8bd21ec5771..87bc969239f 100644
--- a/dev-python/rosdistro/rosdistro-0.8.3.ebuild
+++ b/dev-python/rosdistro/rosdistro-0.8.3.ebuild
@@ -2,7 +2,8 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python{3_7,3_8,3_9} )
+
+PYTHON_COMPAT=( python3_{8..10} )
 DISTUTILS_USE_SETUPTOOLS=rdepend
 
 SCM=""
@@ -24,31 +25,22 @@ fi
 
 LICENSE="BSD"
 SLOT="0"
-IUSE="test"
-RESTRICT="!test? ( test )"
 
 RDEPEND="
dev-python/catkin_pkg[${PYTHON_USEDEP}]
dev-python/rospkg[${PYTHON_USEDEP}]
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-   dev-python/setuptools[${PYTHON_USEDEP}]"
+   dev-python/pyyaml[${PYTHON_USEDEP}]"
 BDEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   test? ( dev-python/nose[${PYTHON_USEDEP}] )
-"
-DEPEND="${RDEPEND}
test? (
dev-python/mock[${PYTHON_USEDEP}]
)
 "
 PATCHES=( "${FILESDIR}/yaml.patch" )
 
+distutils_enable_tests nose
+
 src_prepare() {
# Requires network access
rm -f test/test_manifest_providers.py
default
 }
-
-python_test() {
-   nosetests --with-xunit test || die
-}

diff --git a/dev-python/rosdistro/rosdistro-.ebuild 
b/dev-python/rosdistro/rosdistro-.ebuild
index 8bd21ec5771..87bc969239f 100644
--- a/dev-python/rosdistro/rosdistro-.ebuild
+++ b/dev-python/rosdistro/rosdistro-.ebuild
@@ -2,7 +2,8 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python{3_7,3_8,3_9} )
+
+PYTHON_COMPAT=( python3_{8..10} )
 DISTUTILS_USE_SETUPTOOLS=rdepend
 
 SCM=""
@@ -24,31 +25,22 @@ fi
 
 LICENSE="BSD"
 SLOT="0"
-IUSE="test"
-RESTRICT="!test? ( test )"
 
 RDEPEND="
dev-python/catkin_pkg[${PYTHON_USEDEP}]
dev-python/rospkg[${PYTHON_USEDEP}]
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-   dev-python/setuptools[${PYTHON_USEDEP}]"
+   dev-python/pyyaml[${PYTHON_USEDEP}]"
 BDEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   test? ( dev-python/nose[${PYTHON_USEDEP}] )
-"
-DEPEND="${RDEPEND}
test? (
dev-python/mock[${PYTHON_USEDEP}]
)
 "
 PATCHES=( "${FILESDIR}/yaml.patch" )
 
+distutils_enable_tests nose
+
 src_prepare() {
# Requires network access
rm -f test/test_manifest_providers.py
default
 }
-
-python_test() {
-   nosetests --with-xunit test || die
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/rosdistro/

2020-10-20 Thread Alexis Ballier
commit: 507618765a3adc0daccb86a9b44b9daf21fcb4c0
Author: Alexis Ballier  gentoo  org>
AuthorDate: Tue Oct 20 10:02:07 2020 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Tue Oct 20 12:44:01 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50761876

dev-python/rosdistro: bump to 0.8.3

Add py39
Fix distutils depend

Closes: https://bugs.gentoo.org/748858
Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-python/rosdistro/Manifest  | 2 +-
 .../rosdistro/{rosdistro-0.8.2.ebuild => rosdistro-0.8.3.ebuild}   | 3 ++-
 dev-python/rosdistro/rosdistro-.ebuild | 3 ++-
 3 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/dev-python/rosdistro/Manifest b/dev-python/rosdistro/Manifest
index 508cc4132a0..29265cfd33c 100644
--- a/dev-python/rosdistro/Manifest
+++ b/dev-python/rosdistro/Manifest
@@ -1 +1 @@
-DIST rosdistro-0.8.2.tar.gz 61328 BLAKE2B 
2eb9c4ffc7eedaa040c48d3eb914ea08540adc4ff76ef83eb0fcf8d3d83989b499408953d76c7e9e7951488b269eb9bb3cd6b9db15650924e9c814c7aac60a6b
 SHA512 
b96565dc8fbc000ed6b18285b04b435c7e3455b1e0938c7959cdd7f78749e1a0cf02b2eecba47077bec512d4f8b22923012a6496fb06a5d58ae97a859f8bc6c3
+DIST rosdistro-0.8.3.tar.gz 61665 BLAKE2B 
2d5084409d8222cd277a710a06616fa914a35fb6750e32df7bdee6b7b0285df1b15648b8255cda4aa5867dba3611c5ea294db4711ebf2cc38a11648092623aab
 SHA512 
19e248497b4001c522a84a52d768bc9f20a08020c88574d1a8345cf2173dc2aadd8a1480d4fddf2285ac579ee69dd0b6d4b930333cd6a9cbe32708efed2e5747

diff --git a/dev-python/rosdistro/rosdistro-0.8.2.ebuild 
b/dev-python/rosdistro/rosdistro-0.8.3.ebuild
similarity index 93%
rename from dev-python/rosdistro/rosdistro-0.8.2.ebuild
rename to dev-python/rosdistro/rosdistro-0.8.3.ebuild
index 13f4c2dec91..35bf601a566 100644
--- a/dev-python/rosdistro/rosdistro-0.8.2.ebuild
+++ b/dev-python/rosdistro/rosdistro-0.8.3.ebuild
@@ -2,7 +2,8 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python{3_6,3_7,3_8} )
+PYTHON_COMPAT=( python{3_6,3_7,3_8,3_9} )
+DISTUTILS_USE_SETUPTOOLS=rdepend
 
 SCM=""
 if [ "${PV#}" != "${PV}" ] ; then

diff --git a/dev-python/rosdistro/rosdistro-.ebuild 
b/dev-python/rosdistro/rosdistro-.ebuild
index 13f4c2dec91..35bf601a566 100644
--- a/dev-python/rosdistro/rosdistro-.ebuild
+++ b/dev-python/rosdistro/rosdistro-.ebuild
@@ -2,7 +2,8 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python{3_6,3_7,3_8} )
+PYTHON_COMPAT=( python{3_6,3_7,3_8,3_9} )
+DISTUTILS_USE_SETUPTOOLS=rdepend
 
 SCM=""
 if [ "${PV#}" != "${PV}" ] ; then



[gentoo-commits] repo/gentoo:master commit in: dev-python/rosdistro/

2020-08-17 Thread Sam James
commit: 2020236e0e418019e201ced75ee824d7ebb52d69
Author: Jakov Smolic  sartura  hr>
AuthorDate: Sun Jun  7 19:26:11 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Aug 17 12:52:59 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2020236e

dev-python/rosdistro: update homepage link

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Jakov Smolic  sartura.hr>
Signed-off-by: Sam James  gentoo.org>

 dev-python/rosdistro/rosdistro-0.8.2.ebuild | 2 +-
 dev-python/rosdistro/rosdistro-.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/rosdistro/rosdistro-0.8.2.ebuild 
b/dev-python/rosdistro/rosdistro-0.8.2.ebuild
index a7508f9204e..13f4c2dec91 100644
--- a/dev-python/rosdistro/rosdistro-0.8.2.ebuild
+++ b/dev-python/rosdistro/rosdistro-0.8.2.ebuild
@@ -13,7 +13,7 @@ fi
 inherit ${SCM} distutils-r1
 
 DESCRIPTION="Tools to work with catkinized rosdistro files"
-HOMEPAGE="http://wiki.ros.org/rosdistro;
+HOMEPAGE="https://wiki.ros.org/rosdistro;
 if [ "${PV#}" != "${PV}" ] ; then
SRC_URI=""
KEYWORDS=""

diff --git a/dev-python/rosdistro/rosdistro-.ebuild 
b/dev-python/rosdistro/rosdistro-.ebuild
index a7508f9204e..13f4c2dec91 100644
--- a/dev-python/rosdistro/rosdistro-.ebuild
+++ b/dev-python/rosdistro/rosdistro-.ebuild
@@ -13,7 +13,7 @@ fi
 inherit ${SCM} distutils-r1
 
 DESCRIPTION="Tools to work with catkinized rosdistro files"
-HOMEPAGE="http://wiki.ros.org/rosdistro;
+HOMEPAGE="https://wiki.ros.org/rosdistro;
 if [ "${PV#}" != "${PV}" ] ; then
SRC_URI=""
KEYWORDS=""



[gentoo-commits] repo/gentoo:master commit in: dev-python/rosdistro/

2020-08-07 Thread Alexis Ballier
commit: 422d6a59eda2b894f2f46c6d73195cf033198dd9
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Aug  7 15:56:34 2020 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Aug  7 15:56:34 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=422d6a59

dev-python/rosdistro: Remove old

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-python/rosdistro/Manifest   |  2 --
 dev-python/rosdistro/rosdistro-0.8.0.ebuild | 54 -
 dev-python/rosdistro/rosdistro-0.8.1.ebuild | 54 -
 3 files changed, 110 deletions(-)

diff --git a/dev-python/rosdistro/Manifest b/dev-python/rosdistro/Manifest
index 220e99d325d..508cc4132a0 100644
--- a/dev-python/rosdistro/Manifest
+++ b/dev-python/rosdistro/Manifest
@@ -1,3 +1 @@
-DIST rosdistro-0.8.0.tar.gz 60527 BLAKE2B 
9404452dc62c9f7d1482de3c13df0093ac26a60554c97fa097cb14548cdb814fbdc96a26db2d24aa1f2eb99de86f27807ecdc50e0e00a8fa727af8803ab5d644
 SHA512 
1f4620454f78bd03f75a8b1b8535588a8d6e50aeef17dbf346e8d0443a6fbc5ec83646767bf86521fb65508e205fc3edb8f0c97a81aec8d6b72088d9d78a14f0
-DIST rosdistro-0.8.1.tar.gz 61268 BLAKE2B 
16de2f747eab59f0d2eb880cfa5cde8b62f8f6b71773f1c72665c5b58bf9f63f8e593b2dd0924b104488ce5e7e5bdf930a52db677180542806a899970ede5b37
 SHA512 
3d49aaf460904e2cce635443cb95ca54bdd429549016a614da7038703752187a00b98916e2826193897048753a2b2727eb153296d30abe66c56bd54d68648b08
 DIST rosdistro-0.8.2.tar.gz 61328 BLAKE2B 
2eb9c4ffc7eedaa040c48d3eb914ea08540adc4ff76ef83eb0fcf8d3d83989b499408953d76c7e9e7951488b269eb9bb3cd6b9db15650924e9c814c7aac60a6b
 SHA512 
b96565dc8fbc000ed6b18285b04b435c7e3455b1e0938c7959cdd7f78749e1a0cf02b2eecba47077bec512d4f8b22923012a6496fb06a5d58ae97a859f8bc6c3

diff --git a/dev-python/rosdistro/rosdistro-0.8.0.ebuild 
b/dev-python/rosdistro/rosdistro-0.8.0.ebuild
deleted file mode 100644
index 7455f6d0af0..000
--- a/dev-python/rosdistro/rosdistro-0.8.0.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python{3_6,3_7} pypy3 )
-
-SCM=""
-if [ "${PV#}" != "${PV}" ] ; then
-   SCM="git-r3"
-   EGIT_REPO_URI="https://github.com/ros-infrastructure/rosdistro;
-fi
-
-inherit ${SCM} distutils-r1
-
-DESCRIPTION="Tools to work with catkinized rosdistro files"
-HOMEPAGE="http://wiki.ros.org/rosdistro;
-if [ "${PV#}" != "${PV}" ] ; then
-   SRC_URI=""
-   KEYWORDS=""
-else
-   
SRC_URI="https://github.com/ros-infrastructure/rosdistro/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm"
-fi
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   dev-python/catkin_pkg[${PYTHON_USEDEP}]
-   dev-python/rospkg[${PYTHON_USEDEP}]
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-   dev-python/setuptools[${PYTHON_USEDEP}]"
-BDEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   test? ( dev-python/nose[${PYTHON_USEDEP}] )
-"
-DEPEND="${RDEPEND}
-   test? (
-   dev-python/mock[${PYTHON_USEDEP}]
-   )
-"
-PATCHES=( "${FILESDIR}/yaml.patch" )
-
-src_prepare() {
-   # Requires network access
-   rm -f test/test_manifest_providers.py
-   default
-}
-
-python_test() {
-   nosetests --with-xunit test || die
-}

diff --git a/dev-python/rosdistro/rosdistro-0.8.1.ebuild 
b/dev-python/rosdistro/rosdistro-0.8.1.ebuild
deleted file mode 100644
index d2cbf7643d5..000
--- a/dev-python/rosdistro/rosdistro-0.8.1.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python{3_6,3_7} )
-
-SCM=""
-if [ "${PV#}" != "${PV}" ] ; then
-   SCM="git-r3"
-   EGIT_REPO_URI="https://github.com/ros-infrastructure/rosdistro;
-fi
-
-inherit ${SCM} distutils-r1
-
-DESCRIPTION="Tools to work with catkinized rosdistro files"
-HOMEPAGE="http://wiki.ros.org/rosdistro;
-if [ "${PV#}" != "${PV}" ] ; then
-   SRC_URI=""
-   KEYWORDS=""
-else
-   
SRC_URI="https://github.com/ros-infrastructure/rosdistro/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm"
-fi
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   dev-python/catkin_pkg[${PYTHON_USEDEP}]
-   dev-python/rospkg[${PYTHON_USEDEP}]
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-   dev-python/setuptools[${PYTHON_USEDEP}]"
-BDEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   test? ( dev-python/nose[${PYTHON_USEDEP}] )
-"
-DEPEND="${RDEPEND}
-   test? (
-   dev-python/mock[${PYTHON_USEDEP}]
-   )
-"
-PATCHES=( "${FILESDIR}/yaml.patch" )
-
-src_prepare() {
-   # Requires network access
-   rm -f test/test_manifest_providers.py
-   default
-}
-
-python_test() {
-   nosetests --with-xunit test || 

[gentoo-commits] repo/gentoo:master commit in: dev-python/rosdistro/

2020-07-27 Thread Alexis Ballier
commit: fb813b6cc8382a8350a57d85d01abd59d2a3931d
Author: Alexis Ballier  gentoo  org>
AuthorDate: Mon Jul 27 12:05:06 2020 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Mon Jul 27 12:05:06 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb813b6c

dev-python/rosdistro: bump to 0.8.2

add py3.8

Package-Manager: Portage-3.0.0, Repoman-2.3.23
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-python/rosdistro/Manifest  | 1 +
 dev-python/rosdistro/{rosdistro-.ebuild => rosdistro-0.8.2.ebuild} | 2 +-
 dev-python/rosdistro/rosdistro-.ebuild | 2 +-
 3 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/dev-python/rosdistro/Manifest b/dev-python/rosdistro/Manifest
index cc49f4a4757..220e99d325d 100644
--- a/dev-python/rosdistro/Manifest
+++ b/dev-python/rosdistro/Manifest
@@ -1,2 +1,3 @@
 DIST rosdistro-0.8.0.tar.gz 60527 BLAKE2B 
9404452dc62c9f7d1482de3c13df0093ac26a60554c97fa097cb14548cdb814fbdc96a26db2d24aa1f2eb99de86f27807ecdc50e0e00a8fa727af8803ab5d644
 SHA512 
1f4620454f78bd03f75a8b1b8535588a8d6e50aeef17dbf346e8d0443a6fbc5ec83646767bf86521fb65508e205fc3edb8f0c97a81aec8d6b72088d9d78a14f0
 DIST rosdistro-0.8.1.tar.gz 61268 BLAKE2B 
16de2f747eab59f0d2eb880cfa5cde8b62f8f6b71773f1c72665c5b58bf9f63f8e593b2dd0924b104488ce5e7e5bdf930a52db677180542806a899970ede5b37
 SHA512 
3d49aaf460904e2cce635443cb95ca54bdd429549016a614da7038703752187a00b98916e2826193897048753a2b2727eb153296d30abe66c56bd54d68648b08
+DIST rosdistro-0.8.2.tar.gz 61328 BLAKE2B 
2eb9c4ffc7eedaa040c48d3eb914ea08540adc4ff76ef83eb0fcf8d3d83989b499408953d76c7e9e7951488b269eb9bb3cd6b9db15650924e9c814c7aac60a6b
 SHA512 
b96565dc8fbc000ed6b18285b04b435c7e3455b1e0938c7959cdd7f78749e1a0cf02b2eecba47077bec512d4f8b22923012a6496fb06a5d58ae97a859f8bc6c3

diff --git a/dev-python/rosdistro/rosdistro-.ebuild 
b/dev-python/rosdistro/rosdistro-0.8.2.ebuild
similarity index 96%
copy from dev-python/rosdistro/rosdistro-.ebuild
copy to dev-python/rosdistro/rosdistro-0.8.2.ebuild
index d2cbf7643d5..a7508f9204e 100644
--- a/dev-python/rosdistro/rosdistro-.ebuild
+++ b/dev-python/rosdistro/rosdistro-0.8.2.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python{3_6,3_7} )
+PYTHON_COMPAT=( python{3_6,3_7,3_8} )
 
 SCM=""
 if [ "${PV#}" != "${PV}" ] ; then

diff --git a/dev-python/rosdistro/rosdistro-.ebuild 
b/dev-python/rosdistro/rosdistro-.ebuild
index d2cbf7643d5..a7508f9204e 100644
--- a/dev-python/rosdistro/rosdistro-.ebuild
+++ b/dev-python/rosdistro/rosdistro-.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python{3_6,3_7} )
+PYTHON_COMPAT=( python{3_6,3_7,3_8} )
 
 SCM=""
 if [ "${PV#}" != "${PV}" ] ; then



[gentoo-commits] repo/gentoo:master commit in: dev-python/rosdistro/

2020-03-29 Thread Michał Górny
commit: 6ed9bab161a85d91cc0bd509b29eb4f344bbedc3
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Mar 29 07:17:20 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Mar 29 07:31:01 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ed9bab1

dev-python/rosdistro: Remove redundant versions

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/rosdistro/Manifest   |  2 --
 dev-python/rosdistro/rosdistro-0.7.2.ebuild | 47 -
 dev-python/rosdistro/rosdistro-0.7.4.ebuild | 47 -
 3 files changed, 96 deletions(-)

diff --git a/dev-python/rosdistro/Manifest b/dev-python/rosdistro/Manifest
index 665eed94f0e..c988199233f 100644
--- a/dev-python/rosdistro/Manifest
+++ b/dev-python/rosdistro/Manifest
@@ -1,3 +1 @@
-DIST rosdistro-0.7.2.tar.gz 60091 BLAKE2B 
40f2a47fcf5a13d0b8b9eb29fcee9bfbd811a7541dac74e6be76e2c67ba34adf0b7c2df8804300e35262bbb36efa890128e06217c93ecfc834015010e344e42d
 SHA512 
ca6c0d19c2218efe8bf27c1cc22c4c9b683dccb5f8029208e0b581cb358fbe32733895896b1afece45b6576f254f4535032cea962587aa47d93235767c6baf60
-DIST rosdistro-0.7.4.tar.gz 60365 BLAKE2B 
a2b9af6b584abc057d0b5e7d1087438834801eea33555fb094bc938e1ec642a5d41057f61ee3d3f80ca3ea083e8cb6989f6907cfbc9973067a32d0ee505101d8
 SHA512 
9e2cbc88290b3a132fa5aeec446ca25a89365367a57a97f49cc26533139f91b2a50a1f2f6176f4333900bf7fa21d49c9836d65e74dc8322fe8c5811c49794291
 DIST rosdistro-0.8.0.tar.gz 60527 BLAKE2B 
9404452dc62c9f7d1482de3c13df0093ac26a60554c97fa097cb14548cdb814fbdc96a26db2d24aa1f2eb99de86f27807ecdc50e0e00a8fa727af8803ab5d644
 SHA512 
1f4620454f78bd03f75a8b1b8535588a8d6e50aeef17dbf346e8d0443a6fbc5ec83646767bf86521fb65508e205fc3edb8f0c97a81aec8d6b72088d9d78a14f0

diff --git a/dev-python/rosdistro/rosdistro-0.7.2.ebuild 
b/dev-python/rosdistro/rosdistro-0.7.2.ebuild
deleted file mode 100644
index 8f24456c5e1..000
--- a/dev-python/rosdistro/rosdistro-0.7.2.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_6 pypy3 )
-
-SCM=""
-if [ "${PV#}" != "${PV}" ] ; then
-   SCM="git-r3"
-   EGIT_REPO_URI="https://github.com/ros-infrastructure/rosdistro;
-fi
-
-inherit ${SCM} distutils-r1
-
-DESCRIPTION="Tools to work with catkinized rosdistro files"
-HOMEPAGE="http://wiki.ros.org/rosdistro;
-if [ "${PV#}" != "${PV}" ] ; then
-   SRC_URI=""
-   KEYWORDS=""
-else
-   
SRC_URI="https://github.com/ros-infrastructure/rosdistro/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm"
-fi
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   dev-python/catkin_pkg[${PYTHON_USEDEP}]
-   dev-python/rospkg[${PYTHON_USEDEP}]
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-   dev-python/setuptools[${PYTHON_USEDEP}]"
-BDEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   test? ( dev-python/nose[${PYTHON_USEDEP}] )
-"
-DEPEND="${RDEPEND}
-   test? (
-   dev-python/mock[${PYTHON_USEDEP}]
-   )
-"
-
-python_test() {
-   nosetests --with-xunit test || die
-}

diff --git a/dev-python/rosdistro/rosdistro-0.7.4.ebuild 
b/dev-python/rosdistro/rosdistro-0.7.4.ebuild
deleted file mode 100644
index 8f24456c5e1..000
--- a/dev-python/rosdistro/rosdistro-0.7.4.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_6 pypy3 )
-
-SCM=""
-if [ "${PV#}" != "${PV}" ] ; then
-   SCM="git-r3"
-   EGIT_REPO_URI="https://github.com/ros-infrastructure/rosdistro;
-fi
-
-inherit ${SCM} distutils-r1
-
-DESCRIPTION="Tools to work with catkinized rosdistro files"
-HOMEPAGE="http://wiki.ros.org/rosdistro;
-if [ "${PV#}" != "${PV}" ] ; then
-   SRC_URI=""
-   KEYWORDS=""
-else
-   
SRC_URI="https://github.com/ros-infrastructure/rosdistro/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm"
-fi
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   dev-python/catkin_pkg[${PYTHON_USEDEP}]
-   dev-python/rospkg[${PYTHON_USEDEP}]
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-   dev-python/setuptools[${PYTHON_USEDEP}]"
-BDEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   test? ( dev-python/nose[${PYTHON_USEDEP}] )
-"
-DEPEND="${RDEPEND}
-   test? (
-   dev-python/mock[${PYTHON_USEDEP}]
-   )
-"
-
-python_test() {
-   nosetests --with-xunit test || die
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/rosdistro/

2020-02-05 Thread Michał Górny
commit: 591dd878316ab7332b014684750d705c264e
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Feb  6 05:40:42 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Feb  6 05:59:23 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=591dd878

dev-python/rosdistro: Remove py2

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/rosdistro/rosdistro-0.7.2.ebuild | 2 +-
 dev-python/rosdistro/rosdistro-0.7.4.ebuild | 2 +-
 dev-python/rosdistro/rosdistro-0.8.0.ebuild | 2 +-
 dev-python/rosdistro/rosdistro-.ebuild  | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-python/rosdistro/rosdistro-0.7.2.ebuild 
b/dev-python/rosdistro/rosdistro-0.7.2.ebuild
index 1366af7507e..8f24456c5e1 100644
--- a/dev-python/rosdistro/rosdistro-0.7.2.ebuild
+++ b/dev-python/rosdistro/rosdistro-0.7.2.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python{2_7,3_6} pypy3 )
+PYTHON_COMPAT=( python3_6 pypy3 )
 
 SCM=""
 if [ "${PV#}" != "${PV}" ] ; then

diff --git a/dev-python/rosdistro/rosdistro-0.7.4.ebuild 
b/dev-python/rosdistro/rosdistro-0.7.4.ebuild
index 1366af7507e..8f24456c5e1 100644
--- a/dev-python/rosdistro/rosdistro-0.7.4.ebuild
+++ b/dev-python/rosdistro/rosdistro-0.7.4.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python{2_7,3_6} pypy3 )
+PYTHON_COMPAT=( python3_6 pypy3 )
 
 SCM=""
 if [ "${PV#}" != "${PV}" ] ; then

diff --git a/dev-python/rosdistro/rosdistro-0.8.0.ebuild 
b/dev-python/rosdistro/rosdistro-0.8.0.ebuild
index c4a885cba03..7455f6d0af0 100644
--- a/dev-python/rosdistro/rosdistro-0.8.0.ebuild
+++ b/dev-python/rosdistro/rosdistro-0.8.0.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python{2_7,3_6,3_7} pypy3 )
+PYTHON_COMPAT=( python{3_6,3_7} pypy3 )
 
 SCM=""
 if [ "${PV#}" != "${PV}" ] ; then

diff --git a/dev-python/rosdistro/rosdistro-.ebuild 
b/dev-python/rosdistro/rosdistro-.ebuild
index c4a885cba03..7455f6d0af0 100644
--- a/dev-python/rosdistro/rosdistro-.ebuild
+++ b/dev-python/rosdistro/rosdistro-.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python{2_7,3_6,3_7} pypy3 )
+PYTHON_COMPAT=( python{3_6,3_7} pypy3 )
 
 SCM=""
 if [ "${PV#}" != "${PV}" ] ; then



[gentoo-commits] repo/gentoo:master commit in: dev-python/rosdistro/

2019-12-11 Thread Alexis Ballier
commit: d47dae5503def17a99e7bef777a3b4fceeaf5fe6
Author: Alexis Ballier  gentoo  org>
AuthorDate: Wed Dec 11 15:14:47 2019 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Wed Dec 11 15:26:26 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d47dae55

dev-python/rosdistro: disable tests requiring network access

Closes: https://bugs.gentoo.org/643458
Package-Manager: Portage-2.3.81, Repoman-2.3.20
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-python/rosdistro/rosdistro-0.8.0.ebuild | 6 ++
 dev-python/rosdistro/rosdistro-.ebuild  | 7 +++
 2 files changed, 13 insertions(+)

diff --git a/dev-python/rosdistro/rosdistro-0.8.0.ebuild 
b/dev-python/rosdistro/rosdistro-0.8.0.ebuild
index 5b587a80181..cf60a935e58 100644
--- a/dev-python/rosdistro/rosdistro-0.8.0.ebuild
+++ b/dev-python/rosdistro/rosdistro-0.8.0.ebuild
@@ -43,6 +43,12 @@ DEPEND="${RDEPEND}
 "
 PATCHES=( "${FILESDIR}/yaml.patch" )
 
+src_prepare() {
+   # Requires network access
+   rm -f test/test_manifest_providers.py
+   default
+}
+
 python_test() {
nosetests --with-xunit test || die
 }

diff --git a/dev-python/rosdistro/rosdistro-.ebuild 
b/dev-python/rosdistro/rosdistro-.ebuild
index 1cf2e00b257..cf60a935e58 100644
--- a/dev-python/rosdistro/rosdistro-.ebuild
+++ b/dev-python/rosdistro/rosdistro-.ebuild
@@ -41,6 +41,13 @@ DEPEND="${RDEPEND}
dev-python/mock[${PYTHON_USEDEP}]
)
 "
+PATCHES=( "${FILESDIR}/yaml.patch" )
+
+src_prepare() {
+   # Requires network access
+   rm -f test/test_manifest_providers.py
+   default
+}
 
 python_test() {
nosetests --with-xunit test || die



[gentoo-commits] repo/gentoo:master commit in: dev-python/rosdistro/files/, dev-python/rosdistro/

2019-12-11 Thread Alexis Ballier
commit: 84befe28db215dff5c1c3a24a08501b485e9c4af
Author: Alexis Ballier  gentoo  org>
AuthorDate: Wed Dec 11 14:25:57 2019 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Wed Dec 11 15:26:23 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84befe28

dev-python/rosdistro: Bump to 0.8.0.

Add py37.
Use yaml.safe_load().

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

 dev-python/rosdistro/Manifest  |   1 +
 dev-python/rosdistro/files/yaml.patch  | 252 +
 ...osdistro-.ebuild => rosdistro-0.8.0.ebuild} |   3 +-
 dev-python/rosdistro/rosdistro-.ebuild |   2 +-
 4 files changed, 256 insertions(+), 2 deletions(-)

diff --git a/dev-python/rosdistro/Manifest b/dev-python/rosdistro/Manifest
index 7887d2f0956..665eed94f0e 100644
--- a/dev-python/rosdistro/Manifest
+++ b/dev-python/rosdistro/Manifest
@@ -1,2 +1,3 @@
 DIST rosdistro-0.7.2.tar.gz 60091 BLAKE2B 
40f2a47fcf5a13d0b8b9eb29fcee9bfbd811a7541dac74e6be76e2c67ba34adf0b7c2df8804300e35262bbb36efa890128e06217c93ecfc834015010e344e42d
 SHA512 
ca6c0d19c2218efe8bf27c1cc22c4c9b683dccb5f8029208e0b581cb358fbe32733895896b1afece45b6576f254f4535032cea962587aa47d93235767c6baf60
 DIST rosdistro-0.7.4.tar.gz 60365 BLAKE2B 
a2b9af6b584abc057d0b5e7d1087438834801eea33555fb094bc938e1ec642a5d41057f61ee3d3f80ca3ea083e8cb6989f6907cfbc9973067a32d0ee505101d8
 SHA512 
9e2cbc88290b3a132fa5aeec446ca25a89365367a57a97f49cc26533139f91b2a50a1f2f6176f4333900bf7fa21d49c9836d65e74dc8322fe8c5811c49794291
+DIST rosdistro-0.8.0.tar.gz 60527 BLAKE2B 
9404452dc62c9f7d1482de3c13df0093ac26a60554c97fa097cb14548cdb814fbdc96a26db2d24aa1f2eb99de86f27807ecdc50e0e00a8fa727af8803ab5d644
 SHA512 
1f4620454f78bd03f75a8b1b8535588a8d6e50aeef17dbf346e8d0443a6fbc5ec83646767bf86521fb65508e205fc3edb8f0c97a81aec8d6b72088d9d78a14f0

diff --git a/dev-python/rosdistro/files/yaml.patch 
b/dev-python/rosdistro/files/yaml.patch
new file mode 100644
index 000..2f81a0218b8
--- /dev/null
+++ b/dev-python/rosdistro/files/yaml.patch
@@ -0,0 +1,252 @@
+Index: rosdistro-0.8.0/scripts/rosdistro_convert
+===
+--- rosdistro-0.8.0.orig/scripts/rosdistro_convert
 rosdistro-0.8.0/scripts/rosdistro_convert
+@@ -58,7 +58,7 @@ def get_targets():
+ url = BASE_SRC_URL + '/releases/targets.yaml'
+ print('Load "%s"' % url)
+ yaml_str = load_url(url)
+-data = yaml.load(yaml_str)
++data = yaml.safe_load(yaml_str)
+ targets = {}
+ for d in data:
+ targets[d.keys()[0]] = d.values()[0]
+@@ -69,13 +69,13 @@ def convert_release(dist_name, targets):
+ url = BASE_SRC_URL + '/releases/%s.yaml' % dist_name
+ print('Load "%s"' % url)
+ yaml_str = load_url(url)
+-input_ = yaml.load(yaml_str)
++input_ = yaml.safe_load(yaml_str)
+ 
+ # improve conversion performance by reusing results from last run
+ last_dist = None
+ if os.path.exists(dist_name + '/release.yaml'):
+ with open(dist_name + '/release.yaml', 'r') as f:
+-last_data = yaml.load(f.read())
++last_data = yaml.safe_load(f.read())
+ last_dist = ReleaseFile(dist_name, last_data)
+ 
+ output = {}
+@@ -162,7 +162,7 @@ def convert_source(dist_name):
+ url = BASE_SRC_URL + '/releases/%s-devel.yaml' % dist_name
+ print('Load "%s"' % url)
+ yaml_str = load_url(url)
+-input_ = yaml.load(yaml_str)
++input_ = yaml.safe_load(yaml_str)
+ 
+ output = {}
+ output['type'] = 'source'
+@@ -207,7 +207,7 @@ def convert_doc(dist_name):
+ if filename.endswith('.rosinstall'):
+ name = os.path.splitext(os.path.basename(filename))[0]
+ with open(os.path.join(doc_base, filename)) as f:
+-data = yaml.load(f)
++data = yaml.safe_load(f)
+ if name.endswith('_depends'):
+ rosinstall_depends[name] = data
+ else:
+Index: rosdistro-0.8.0/scripts/rosdistro_migrate_to_rep_141
+===
+--- rosdistro-0.8.0.orig/scripts/rosdistro_migrate_to_rep_141
 rosdistro-0.8.0/scripts/rosdistro_migrate_to_rep_141
+@@ -18,7 +18,7 @@ import yaml
+ 
+ 
+ def migrate(index_yaml):
+-data = yaml.load(open(index_yaml, 'r'))
++data = yaml.safe_load(open(index_yaml, 'r'))
+ assert data['type'] == 'index'
+ assert data['version'] == 1
+ data['version'] = 2
+@@ -75,7 +75,7 @@ def generate_repos_url(repos_url, doc_ur
+ data['repositories'] = {}
+ 
+ # migrate release stuff
+-release_data = yaml.load(open(release_url, 'r'))
++release_data = yaml.safe_load(open(release_url, 'r'))
+ assert release_data['type'] == 'release'
+ assert release_data['version'] == 1
+ 
+@@ -100,7 +100,7 @@ def generate_repos_url(repos_url, doc_ur
+ data['repositories'][repo_name] = repo_data
+ 
+  

[gentoo-commits] repo/gentoo:master commit in: dev-python/rosdistro/

2019-05-17 Thread Alexis Ballier
commit: 88080444e428840e16cdedd6095fe419f9357474
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri May 17 16:25:07 2019 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri May 17 16:28:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88080444

dev-python/rosdistro: Remove old

Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-python/rosdistro/Manifest   |  2 --
 dev-python/rosdistro/rosdistro-0.7.0.ebuild | 46 -
 dev-python/rosdistro/rosdistro-0.7.1.ebuild | 46 -
 3 files changed, 94 deletions(-)

diff --git a/dev-python/rosdistro/Manifest b/dev-python/rosdistro/Manifest
index fea1269a127..c57d20ee726 100644
--- a/dev-python/rosdistro/Manifest
+++ b/dev-python/rosdistro/Manifest
@@ -1,3 +1 @@
-DIST rosdistro-0.7.0.tar.gz 60092 BLAKE2B 
f68dde51a3e6b5efe26608130d3a69536803baad92565c7d7cb25b22f71be4cc8bb3869d72abefa7e4de4446ff7f3f49037e789c39d9ac401fff30dd8d9fc082
 SHA512 
8def3e3d405483f9cd51dbe82bfbb7605a50d2d14dcd9712e3e93c5c091953df430203b2383d46c1db2248678fbf2b84638328f47a256296c78229b7783e724e
-DIST rosdistro-0.7.1.tar.gz 60093 BLAKE2B 
b6e16af1b20ccc31a23365e9c74123c6cd2b17b4b522b925e66628cec0608c29bb73ffd22ca21e05f85ea20681b37d1acb95634f652e16e515e4615aec65b1b8
 SHA512 
cb22d331fc71324de518336b1e3afd8b9e54180b3deae55dedc619aa6308dd5ec0ffe22dfd7e2e8e362bb56b14602db9242a8b81d71f2745c9f94db94aa91ccb
 DIST rosdistro-0.7.2.tar.gz 60091 BLAKE2B 
40f2a47fcf5a13d0b8b9eb29fcee9bfbd811a7541dac74e6be76e2c67ba34adf0b7c2df8804300e35262bbb36efa890128e06217c93ecfc834015010e344e42d
 SHA512 
ca6c0d19c2218efe8bf27c1cc22c4c9b683dccb5f8029208e0b581cb358fbe32733895896b1afece45b6576f254f4535032cea962587aa47d93235767c6baf60

diff --git a/dev-python/rosdistro/rosdistro-0.7.0.ebuild 
b/dev-python/rosdistro/rosdistro-0.7.0.ebuild
deleted file mode 100644
index e7e27bc9f9f..000
--- a/dev-python/rosdistro/rosdistro-0.7.0.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python{2_7,3_5,3_6} pypy{,3} )
-
-SCM=""
-if [ "${PV#}" != "${PV}" ] ; then
-   SCM="git-r3"
-   EGIT_REPO_URI="https://github.com/ros-infrastructure/rosdistro;
-fi
-
-inherit ${SCM} distutils-r1
-
-DESCRIPTION="Tools to work with catkinized rosdistro files"
-HOMEPAGE="http://wiki.ros.org/rosdistro;
-if [ "${PV#}" != "${PV}" ] ; then
-   SRC_URI=""
-   KEYWORDS=""
-else
-   
SRC_URI="https://github.com/ros-infrastructure/rosdistro/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm"
-fi
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="test"
-
-RDEPEND="
-   dev-python/catkin_pkg[${PYTHON_USEDEP}]
-   dev-python/rospkg[${PYTHON_USEDEP}]
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-   dev-python/setuptools[${PYTHON_USEDEP}]"
-BDEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   test? ( dev-python/nose[${PYTHON_USEDEP}] )
-"
-DEPEND="${RDEPEND}
-   test? (
-   dev-python/mock[${PYTHON_USEDEP}]
-   )
-"
-
-python_test() {
-   nosetests --with-xunit test || die
-}

diff --git a/dev-python/rosdistro/rosdistro-0.7.1.ebuild 
b/dev-python/rosdistro/rosdistro-0.7.1.ebuild
deleted file mode 100644
index e7e27bc9f9f..000
--- a/dev-python/rosdistro/rosdistro-0.7.1.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python{2_7,3_5,3_6} pypy{,3} )
-
-SCM=""
-if [ "${PV#}" != "${PV}" ] ; then
-   SCM="git-r3"
-   EGIT_REPO_URI="https://github.com/ros-infrastructure/rosdistro;
-fi
-
-inherit ${SCM} distutils-r1
-
-DESCRIPTION="Tools to work with catkinized rosdistro files"
-HOMEPAGE="http://wiki.ros.org/rosdistro;
-if [ "${PV#}" != "${PV}" ] ; then
-   SRC_URI=""
-   KEYWORDS=""
-else
-   
SRC_URI="https://github.com/ros-infrastructure/rosdistro/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm"
-fi
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="test"
-
-RDEPEND="
-   dev-python/catkin_pkg[${PYTHON_USEDEP}]
-   dev-python/rospkg[${PYTHON_USEDEP}]
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-   dev-python/setuptools[${PYTHON_USEDEP}]"
-BDEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   test? ( dev-python/nose[${PYTHON_USEDEP}] )
-"
-DEPEND="${RDEPEND}
-   test? (
-   dev-python/mock[${PYTHON_USEDEP}]
-   )
-"
-
-python_test() {
-   nosetests --with-xunit test || die
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/rosdistro/

2019-05-17 Thread Alexis Ballier
commit: ca359981280656878831689d8b2f4c4b1e2413b8
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri May 17 16:26:34 2019 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri May 17 16:28:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca359981

dev-python/rosdistro: bump to 0.7.4

Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-python/rosdistro/Manifest   |  1 +
 dev-python/rosdistro/rosdistro-0.7.4.ebuild | 46 +
 2 files changed, 47 insertions(+)

diff --git a/dev-python/rosdistro/Manifest b/dev-python/rosdistro/Manifest
index c57d20ee726..7887d2f0956 100644
--- a/dev-python/rosdistro/Manifest
+++ b/dev-python/rosdistro/Manifest
@@ -1 +1,2 @@
 DIST rosdistro-0.7.2.tar.gz 60091 BLAKE2B 
40f2a47fcf5a13d0b8b9eb29fcee9bfbd811a7541dac74e6be76e2c67ba34adf0b7c2df8804300e35262bbb36efa890128e06217c93ecfc834015010e344e42d
 SHA512 
ca6c0d19c2218efe8bf27c1cc22c4c9b683dccb5f8029208e0b581cb358fbe32733895896b1afece45b6576f254f4535032cea962587aa47d93235767c6baf60
+DIST rosdistro-0.7.4.tar.gz 60365 BLAKE2B 
a2b9af6b584abc057d0b5e7d1087438834801eea33555fb094bc938e1ec642a5d41057f61ee3d3f80ca3ea083e8cb6989f6907cfbc9973067a32d0ee505101d8
 SHA512 
9e2cbc88290b3a132fa5aeec446ca25a89365367a57a97f49cc26533139f91b2a50a1f2f6176f4333900bf7fa21d49c9836d65e74dc8322fe8c5811c49794291

diff --git a/dev-python/rosdistro/rosdistro-0.7.4.ebuild 
b/dev-python/rosdistro/rosdistro-0.7.4.ebuild
new file mode 100644
index 000..e7e27bc9f9f
--- /dev/null
+++ b/dev-python/rosdistro/rosdistro-0.7.4.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python{2_7,3_5,3_6} pypy{,3} )
+
+SCM=""
+if [ "${PV#}" != "${PV}" ] ; then
+   SCM="git-r3"
+   EGIT_REPO_URI="https://github.com/ros-infrastructure/rosdistro;
+fi
+
+inherit ${SCM} distutils-r1
+
+DESCRIPTION="Tools to work with catkinized rosdistro files"
+HOMEPAGE="http://wiki.ros.org/rosdistro;
+if [ "${PV#}" != "${PV}" ] ; then
+   SRC_URI=""
+   KEYWORDS=""
+else
+   
SRC_URI="https://github.com/ros-infrastructure/rosdistro/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
+   KEYWORDS="~amd64 ~arm"
+fi
+
+LICENSE="BSD"
+SLOT="0"
+IUSE="test"
+
+RDEPEND="
+   dev-python/catkin_pkg[${PYTHON_USEDEP}]
+   dev-python/rospkg[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   dev-python/setuptools[${PYTHON_USEDEP}]"
+BDEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   test? ( dev-python/nose[${PYTHON_USEDEP}] )
+"
+DEPEND="${RDEPEND}
+   test? (
+   dev-python/mock[${PYTHON_USEDEP}]
+   )
+"
+
+python_test() {
+   nosetests --with-xunit test || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/rosdistro/

2019-02-15 Thread Alexis Ballier
commit: 69220602337b91c061687b87167fd13f4220594f
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Feb 15 10:16:16 2019 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Feb 15 12:35:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69220602

dev-python/rosdistro: bump to 0.7.2

Package-Manager: Portage-2.3.60, Repoman-2.3.12
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-python/rosdistro/Manifest   |  1 +
 dev-python/rosdistro/rosdistro-0.7.2.ebuild | 46 +
 2 files changed, 47 insertions(+)

diff --git a/dev-python/rosdistro/Manifest b/dev-python/rosdistro/Manifest
index be0821c4f24..fea1269a127 100644
--- a/dev-python/rosdistro/Manifest
+++ b/dev-python/rosdistro/Manifest
@@ -1,2 +1,3 @@
 DIST rosdistro-0.7.0.tar.gz 60092 BLAKE2B 
f68dde51a3e6b5efe26608130d3a69536803baad92565c7d7cb25b22f71be4cc8bb3869d72abefa7e4de4446ff7f3f49037e789c39d9ac401fff30dd8d9fc082
 SHA512 
8def3e3d405483f9cd51dbe82bfbb7605a50d2d14dcd9712e3e93c5c091953df430203b2383d46c1db2248678fbf2b84638328f47a256296c78229b7783e724e
 DIST rosdistro-0.7.1.tar.gz 60093 BLAKE2B 
b6e16af1b20ccc31a23365e9c74123c6cd2b17b4b522b925e66628cec0608c29bb73ffd22ca21e05f85ea20681b37d1acb95634f652e16e515e4615aec65b1b8
 SHA512 
cb22d331fc71324de518336b1e3afd8b9e54180b3deae55dedc619aa6308dd5ec0ffe22dfd7e2e8e362bb56b14602db9242a8b81d71f2745c9f94db94aa91ccb
+DIST rosdistro-0.7.2.tar.gz 60091 BLAKE2B 
40f2a47fcf5a13d0b8b9eb29fcee9bfbd811a7541dac74e6be76e2c67ba34adf0b7c2df8804300e35262bbb36efa890128e06217c93ecfc834015010e344e42d
 SHA512 
ca6c0d19c2218efe8bf27c1cc22c4c9b683dccb5f8029208e0b581cb358fbe32733895896b1afece45b6576f254f4535032cea962587aa47d93235767c6baf60

diff --git a/dev-python/rosdistro/rosdistro-0.7.2.ebuild 
b/dev-python/rosdistro/rosdistro-0.7.2.ebuild
new file mode 100644
index 000..df8542c9a22
--- /dev/null
+++ b/dev-python/rosdistro/rosdistro-0.7.2.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy{,3} )
+
+SCM=""
+if [ "${PV#}" != "${PV}" ] ; then
+   SCM="git-r3"
+   EGIT_REPO_URI="https://github.com/ros-infrastructure/rosdistro;
+fi
+
+inherit ${SCM} distutils-r1
+
+DESCRIPTION="Tools to work with catkinized rosdistro files"
+HOMEPAGE="http://wiki.ros.org/rosdistro;
+if [ "${PV#}" != "${PV}" ] ; then
+   SRC_URI=""
+   KEYWORDS=""
+else
+   
SRC_URI="https://github.com/ros-infrastructure/rosdistro/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
+   KEYWORDS="~amd64 ~arm"
+fi
+
+LICENSE="BSD"
+SLOT="0"
+IUSE="test"
+
+RDEPEND="
+   dev-python/catkin_pkg[${PYTHON_USEDEP}]
+   dev-python/rospkg[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   dev-python/setuptools[${PYTHON_USEDEP}]"
+BDEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   test? ( dev-python/nose[${PYTHON_USEDEP}] )
+"
+DEPEND="${RDEPEND}
+   test? (
+   dev-python/mock[${PYTHON_USEDEP}]
+   )
+"
+
+python_test() {
+   nosetests --with-xunit test || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/rosdistro/

2019-01-15 Thread Alexis Ballier
commit: a11deac68c646add7dc2b6a6fd28bf70ec5863d3
Author: Alexis Ballier  gentoo  org>
AuthorDate: Tue Jan 15 10:42:34 2019 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Tue Jan 15 10:46:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a11deac6

dev-python/rosdistro: bump to 0.7.1

Package-Manager: Portage-2.3.56, Repoman-2.3.12
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-python/rosdistro/Manifest   |  1 +
 dev-python/rosdistro/rosdistro-0.7.1.ebuild | 46 +
 2 files changed, 47 insertions(+)

diff --git a/dev-python/rosdistro/Manifest b/dev-python/rosdistro/Manifest
index ea31ab9b12f..be0821c4f24 100644
--- a/dev-python/rosdistro/Manifest
+++ b/dev-python/rosdistro/Manifest
@@ -1 +1,2 @@
 DIST rosdistro-0.7.0.tar.gz 60092 BLAKE2B 
f68dde51a3e6b5efe26608130d3a69536803baad92565c7d7cb25b22f71be4cc8bb3869d72abefa7e4de4446ff7f3f49037e789c39d9ac401fff30dd8d9fc082
 SHA512 
8def3e3d405483f9cd51dbe82bfbb7605a50d2d14dcd9712e3e93c5c091953df430203b2383d46c1db2248678fbf2b84638328f47a256296c78229b7783e724e
+DIST rosdistro-0.7.1.tar.gz 60093 BLAKE2B 
b6e16af1b20ccc31a23365e9c74123c6cd2b17b4b522b925e66628cec0608c29bb73ffd22ca21e05f85ea20681b37d1acb95634f652e16e515e4615aec65b1b8
 SHA512 
cb22d331fc71324de518336b1e3afd8b9e54180b3deae55dedc619aa6308dd5ec0ffe22dfd7e2e8e362bb56b14602db9242a8b81d71f2745c9f94db94aa91ccb

diff --git a/dev-python/rosdistro/rosdistro-0.7.1.ebuild 
b/dev-python/rosdistro/rosdistro-0.7.1.ebuild
new file mode 100644
index 000..df8542c9a22
--- /dev/null
+++ b/dev-python/rosdistro/rosdistro-0.7.1.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy{,3} )
+
+SCM=""
+if [ "${PV#}" != "${PV}" ] ; then
+   SCM="git-r3"
+   EGIT_REPO_URI="https://github.com/ros-infrastructure/rosdistro;
+fi
+
+inherit ${SCM} distutils-r1
+
+DESCRIPTION="Tools to work with catkinized rosdistro files"
+HOMEPAGE="http://wiki.ros.org/rosdistro;
+if [ "${PV#}" != "${PV}" ] ; then
+   SRC_URI=""
+   KEYWORDS=""
+else
+   
SRC_URI="https://github.com/ros-infrastructure/rosdistro/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
+   KEYWORDS="~amd64 ~arm"
+fi
+
+LICENSE="BSD"
+SLOT="0"
+IUSE="test"
+
+RDEPEND="
+   dev-python/catkin_pkg[${PYTHON_USEDEP}]
+   dev-python/rospkg[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   dev-python/setuptools[${PYTHON_USEDEP}]"
+BDEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   test? ( dev-python/nose[${PYTHON_USEDEP}] )
+"
+DEPEND="${RDEPEND}
+   test? (
+   dev-python/mock[${PYTHON_USEDEP}]
+   )
+"
+
+python_test() {
+   nosetests --with-xunit test || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/rosdistro/

2019-01-15 Thread Alexis Ballier
commit: 06ee4e37b5db4366438c66863273d386c5e5466f
Author: Alexis Ballier  gentoo  org>
AuthorDate: Tue Jan 15 10:40:40 2019 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Tue Jan 15 10:46:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06ee4e37

dev-python/rosdistro: Remove old

Package-Manager: Portage-2.3.56, Repoman-2.3.12
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-python/rosdistro/Manifest   |  2 --
 dev-python/rosdistro/rosdistro-0.6.8.ebuild | 43 ---
 dev-python/rosdistro/rosdistro-0.6.9.ebuild | 46 -
 3 files changed, 91 deletions(-)

diff --git a/dev-python/rosdistro/Manifest b/dev-python/rosdistro/Manifest
index 1691f759d5f..ea31ab9b12f 100644
--- a/dev-python/rosdistro/Manifest
+++ b/dev-python/rosdistro/Manifest
@@ -1,3 +1 @@
-DIST rosdistro-0.6.8.tar.gz 59771 BLAKE2B 
5610ef992824104570abc8c5cc0224838ee1442d942f8f317b20b300831f7536649b47360e7f542e484d75eac29af71ce9e82fadf91b540f4671478039776921
 SHA512 
57db65b7cba29e41c14ea4e45f951a410e6152ce4247afd1b15df51cd79e50bdbc95151eac02acc666f8bc3c2658695600ad1b4fc0f4152d71901685c9e8f558
-DIST rosdistro-0.6.9.tar.gz 59831 BLAKE2B 
4a576efce73cceb68496f2ba7a52e9e09c92aaf0c54ed9693e067e1ea7dcc0b53362a42524dad92b1e68acb22b88c7a92427b8962dbdec781cac5972e251ee9c
 SHA512 
351653c95803dce034074a357f4ca878688ca3e640983cb380840b1bb898f1b8e827210620ba31261fa76edb306908e489e0b8504a6fd8c651c83fbfb8774bd2
 DIST rosdistro-0.7.0.tar.gz 60092 BLAKE2B 
f68dde51a3e6b5efe26608130d3a69536803baad92565c7d7cb25b22f71be4cc8bb3869d72abefa7e4de4446ff7f3f49037e789c39d9ac401fff30dd8d9fc082
 SHA512 
8def3e3d405483f9cd51dbe82bfbb7605a50d2d14dcd9712e3e93c5c091953df430203b2383d46c1db2248678fbf2b84638328f47a256296c78229b7783e724e

diff --git a/dev-python/rosdistro/rosdistro-0.6.8.ebuild 
b/dev-python/rosdistro/rosdistro-0.6.8.ebuild
deleted file mode 100644
index 8780e241c60..000
--- a/dev-python/rosdistro/rosdistro-0.6.8.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy{,3} )
-
-SCM=""
-if [ "${PV#}" != "${PV}" ] ; then
-   SCM="git-r3"
-   EGIT_REPO_URI="https://github.com/ros-infrastructure/rosdistro;
-fi
-
-inherit ${SCM} distutils-r1
-
-DESCRIPTION="Tools to work with catkinized rosdistro files"
-HOMEPAGE="http://wiki.ros.org/rosdistro;
-if [ "${PV#}" != "${PV}" ] ; then
-   SRC_URI=""
-   KEYWORDS=""
-else
-   
SRC_URI="https://github.com/ros-infrastructure/rosdistro/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm"
-fi
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="test"
-
-RDEPEND="
-   dev-python/catkin_pkg[${PYTHON_USEDEP}]
-   dev-python/rospkg[${PYTHON_USEDEP}]
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-   dev-python/setuptools[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-   test? (
-   dev-python/nose[${PYTHON_USEDEP}]
-   dev-python/mock[${PYTHON_USEDEP}]
-   )
-"
-
-python_test() {
-   nosetests --with-xunit test || die
-}

diff --git a/dev-python/rosdistro/rosdistro-0.6.9.ebuild 
b/dev-python/rosdistro/rosdistro-0.6.9.ebuild
deleted file mode 100644
index c8c67d166d0..000
--- a/dev-python/rosdistro/rosdistro-0.6.9.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy{,3} )
-
-SCM=""
-if [ "${PV#}" != "${PV}" ] ; then
-   SCM="git-r3"
-   EGIT_REPO_URI="https://github.com/ros-infrastructure/rosdistro;
-fi
-
-inherit ${SCM} distutils-r1
-
-DESCRIPTION="Tools to work with catkinized rosdistro files"
-HOMEPAGE="http://wiki.ros.org/rosdistro;
-if [ "${PV#}" != "${PV}" ] ; then
-   SRC_URI=""
-   KEYWORDS=""
-else
-   
SRC_URI="https://github.com/ros-infrastructure/rosdistro/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm"
-fi
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="test"
-
-RDEPEND="
-   dev-python/catkin_pkg[${PYTHON_USEDEP}]
-   dev-python/rospkg[${PYTHON_USEDEP}]
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-   dev-python/setuptools[${PYTHON_USEDEP}]"
-BDEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   test? ( dev-python/nose[${PYTHON_USEDEP}] )
-"
-DEPEND="${RDEPEND}
-   test? (
-   dev-python/mock[${PYTHON_USEDEP}]
-   )
-"
-
-python_test() {
-   nosetests --with-xunit test || die
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/rosdistro/

2019-01-08 Thread Alexis Ballier
commit: 01afa34586de459e3340fcd9f64d05f7cadc86c5
Author: Alexis Ballier  gentoo  org>
AuthorDate: Tue Jan  8 08:52:01 2019 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Tue Jan  8 08:54:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01afa345

dev-python/rosdistro: bump to 0.7.0

Package-Manager: Portage-2.3.54, Repoman-2.3.12
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-python/rosdistro/Manifest   |  1 +
 dev-python/rosdistro/rosdistro-0.7.0.ebuild | 46 +
 2 files changed, 47 insertions(+)

diff --git a/dev-python/rosdistro/Manifest b/dev-python/rosdistro/Manifest
index 31836733702..1691f759d5f 100644
--- a/dev-python/rosdistro/Manifest
+++ b/dev-python/rosdistro/Manifest
@@ -1,2 +1,3 @@
 DIST rosdistro-0.6.8.tar.gz 59771 BLAKE2B 
5610ef992824104570abc8c5cc0224838ee1442d942f8f317b20b300831f7536649b47360e7f542e484d75eac29af71ce9e82fadf91b540f4671478039776921
 SHA512 
57db65b7cba29e41c14ea4e45f951a410e6152ce4247afd1b15df51cd79e50bdbc95151eac02acc666f8bc3c2658695600ad1b4fc0f4152d71901685c9e8f558
 DIST rosdistro-0.6.9.tar.gz 59831 BLAKE2B 
4a576efce73cceb68496f2ba7a52e9e09c92aaf0c54ed9693e067e1ea7dcc0b53362a42524dad92b1e68acb22b88c7a92427b8962dbdec781cac5972e251ee9c
 SHA512 
351653c95803dce034074a357f4ca878688ca3e640983cb380840b1bb898f1b8e827210620ba31261fa76edb306908e489e0b8504a6fd8c651c83fbfb8774bd2
+DIST rosdistro-0.7.0.tar.gz 60092 BLAKE2B 
f68dde51a3e6b5efe26608130d3a69536803baad92565c7d7cb25b22f71be4cc8bb3869d72abefa7e4de4446ff7f3f49037e789c39d9ac401fff30dd8d9fc082
 SHA512 
8def3e3d405483f9cd51dbe82bfbb7605a50d2d14dcd9712e3e93c5c091953df430203b2383d46c1db2248678fbf2b84638328f47a256296c78229b7783e724e

diff --git a/dev-python/rosdistro/rosdistro-0.7.0.ebuild 
b/dev-python/rosdistro/rosdistro-0.7.0.ebuild
new file mode 100644
index 000..df8542c9a22
--- /dev/null
+++ b/dev-python/rosdistro/rosdistro-0.7.0.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy{,3} )
+
+SCM=""
+if [ "${PV#}" != "${PV}" ] ; then
+   SCM="git-r3"
+   EGIT_REPO_URI="https://github.com/ros-infrastructure/rosdistro;
+fi
+
+inherit ${SCM} distutils-r1
+
+DESCRIPTION="Tools to work with catkinized rosdistro files"
+HOMEPAGE="http://wiki.ros.org/rosdistro;
+if [ "${PV#}" != "${PV}" ] ; then
+   SRC_URI=""
+   KEYWORDS=""
+else
+   
SRC_URI="https://github.com/ros-infrastructure/rosdistro/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
+   KEYWORDS="~amd64 ~arm"
+fi
+
+LICENSE="BSD"
+SLOT="0"
+IUSE="test"
+
+RDEPEND="
+   dev-python/catkin_pkg[${PYTHON_USEDEP}]
+   dev-python/rospkg[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   dev-python/setuptools[${PYTHON_USEDEP}]"
+BDEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   test? ( dev-python/nose[${PYTHON_USEDEP}] )
+"
+DEPEND="${RDEPEND}
+   test? (
+   dev-python/mock[${PYTHON_USEDEP}]
+   )
+"
+
+python_test() {
+   nosetests --with-xunit test || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/rosdistro/

2018-08-17 Thread Alexis Ballier
commit: b7b51527520935795515d76d204d2784254acd48
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Aug 17 12:58:03 2018 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Aug 17 13:07:58 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7b51527

dev-python/rosdistro: Remove old

Package-Manager: Portage-2.3.46, Repoman-2.3.10

 dev-python/rosdistro/Manifest   |  1 -
 dev-python/rosdistro/rosdistro-0.6.6.ebuild | 43 -
 2 files changed, 44 deletions(-)

diff --git a/dev-python/rosdistro/Manifest b/dev-python/rosdistro/Manifest
index 3c7a2f19bed..7e4d39a506d 100644
--- a/dev-python/rosdistro/Manifest
+++ b/dev-python/rosdistro/Manifest
@@ -1,2 +1 @@
-DIST rosdistro-0.6.6.tar.gz 58881 BLAKE2B 
9daa5c08b97509606d5077f55e8a85d2cd278f69aebff22feefd9661d455f38cff549ee26f894b040cad7192f044828a20cf749d83a257a8b5604f07d382f081
 SHA512 
2a4b0dfcaa43a8e4d4a0fff5ed204ad81317156128d9050e0c67dfe2cd9efda2bfc84f454e424ebd457e7c62c7c6add113ceb31e99310c34a9fc9f206e510922
 DIST rosdistro-0.6.8.tar.gz 59771 BLAKE2B 
5610ef992824104570abc8c5cc0224838ee1442d942f8f317b20b300831f7536649b47360e7f542e484d75eac29af71ce9e82fadf91b540f4671478039776921
 SHA512 
57db65b7cba29e41c14ea4e45f951a410e6152ce4247afd1b15df51cd79e50bdbc95151eac02acc666f8bc3c2658695600ad1b4fc0f4152d71901685c9e8f558

diff --git a/dev-python/rosdistro/rosdistro-0.6.6.ebuild 
b/dev-python/rosdistro/rosdistro-0.6.6.ebuild
deleted file mode 100644
index 8780e241c60..000
--- a/dev-python/rosdistro/rosdistro-0.6.6.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy{,3} )
-
-SCM=""
-if [ "${PV#}" != "${PV}" ] ; then
-   SCM="git-r3"
-   EGIT_REPO_URI="https://github.com/ros-infrastructure/rosdistro;
-fi
-
-inherit ${SCM} distutils-r1
-
-DESCRIPTION="Tools to work with catkinized rosdistro files"
-HOMEPAGE="http://wiki.ros.org/rosdistro;
-if [ "${PV#}" != "${PV}" ] ; then
-   SRC_URI=""
-   KEYWORDS=""
-else
-   
SRC_URI="https://github.com/ros-infrastructure/rosdistro/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm"
-fi
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="test"
-
-RDEPEND="
-   dev-python/catkin_pkg[${PYTHON_USEDEP}]
-   dev-python/rospkg[${PYTHON_USEDEP}]
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-   dev-python/setuptools[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-   test? (
-   dev-python/nose[${PYTHON_USEDEP}]
-   dev-python/mock[${PYTHON_USEDEP}]
-   )
-"
-
-python_test() {
-   nosetests --with-xunit test || die
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/rosdistro/

2018-08-17 Thread Alexis Ballier
commit: bcbf8c229c3577e48f86e29f664367a90093b2e2
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Aug 17 13:01:51 2018 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Aug 17 13:07:58 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bcbf8c22

dev-python/rosdistro: eapi update and bump to 0.6.9

Package-Manager: Portage-2.3.46, Repoman-2.3.10

 dev-python/rosdistro/Manifest  | 1 +
 .../rosdistro/{rosdistro-.ebuild => rosdistro-0.6.9.ebuild}| 7 +--
 dev-python/rosdistro/rosdistro-.ebuild | 7 +--
 3 files changed, 11 insertions(+), 4 deletions(-)

diff --git a/dev-python/rosdistro/Manifest b/dev-python/rosdistro/Manifest
index 7e4d39a506d..31836733702 100644
--- a/dev-python/rosdistro/Manifest
+++ b/dev-python/rosdistro/Manifest
@@ -1 +1,2 @@
 DIST rosdistro-0.6.8.tar.gz 59771 BLAKE2B 
5610ef992824104570abc8c5cc0224838ee1442d942f8f317b20b300831f7536649b47360e7f542e484d75eac29af71ce9e82fadf91b540f4671478039776921
 SHA512 
57db65b7cba29e41c14ea4e45f951a410e6152ce4247afd1b15df51cd79e50bdbc95151eac02acc666f8bc3c2658695600ad1b4fc0f4152d71901685c9e8f558
+DIST rosdistro-0.6.9.tar.gz 59831 BLAKE2B 
4a576efce73cceb68496f2ba7a52e9e09c92aaf0c54ed9693e067e1ea7dcc0b53362a42524dad92b1e68acb22b88c7a92427b8962dbdec781cac5972e251ee9c
 SHA512 
351653c95803dce034074a357f4ca878688ca3e640983cb380840b1bb898f1b8e827210620ba31261fa76edb306908e489e0b8504a6fd8c651c83fbfb8774bd2

diff --git a/dev-python/rosdistro/rosdistro-.ebuild 
b/dev-python/rosdistro/rosdistro-0.6.9.ebuild
similarity index 89%
copy from dev-python/rosdistro/rosdistro-.ebuild
copy to dev-python/rosdistro/rosdistro-0.6.9.ebuild
index 8780e241c60..c8c67d166d0 100644
--- a/dev-python/rosdistro/rosdistro-.ebuild
+++ b/dev-python/rosdistro/rosdistro-0.6.9.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=7
 PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy{,3} )
 
 SCM=""
@@ -31,9 +31,12 @@ RDEPEND="
dev-python/rospkg[${PYTHON_USEDEP}]
dev-python/pyyaml[${PYTHON_USEDEP}]
dev-python/setuptools[${PYTHON_USEDEP}]"
+BDEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   test? ( dev-python/nose[${PYTHON_USEDEP}] )
+"
 DEPEND="${RDEPEND}
test? (
-   dev-python/nose[${PYTHON_USEDEP}]
dev-python/mock[${PYTHON_USEDEP}]
)
 "

diff --git a/dev-python/rosdistro/rosdistro-.ebuild 
b/dev-python/rosdistro/rosdistro-.ebuild
index 8780e241c60..c8c67d166d0 100644
--- a/dev-python/rosdistro/rosdistro-.ebuild
+++ b/dev-python/rosdistro/rosdistro-.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=7
 PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy{,3} )
 
 SCM=""
@@ -31,9 +31,12 @@ RDEPEND="
dev-python/rospkg[${PYTHON_USEDEP}]
dev-python/pyyaml[${PYTHON_USEDEP}]
dev-python/setuptools[${PYTHON_USEDEP}]"
+BDEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   test? ( dev-python/nose[${PYTHON_USEDEP}] )
+"
 DEPEND="${RDEPEND}
test? (
-   dev-python/nose[${PYTHON_USEDEP}]
dev-python/mock[${PYTHON_USEDEP}]
)
 "



[gentoo-commits] repo/gentoo:master commit in: dev-python/rosdistro/

2018-03-04 Thread Alexis Ballier
commit: 3978c4f03d43b24357478ffc9da708a548106ba4
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sun Mar  4 13:39:40 2018 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sun Mar  4 14:20:36 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3978c4f0

dev-python/rosdistro: Remove old

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-python/rosdistro/Manifest   |  1 -
 dev-python/rosdistro/rosdistro-0.6.4.ebuild | 43 -
 2 files changed, 44 deletions(-)

diff --git a/dev-python/rosdistro/Manifest b/dev-python/rosdistro/Manifest
index 2df43d31176..7a181b46c74 100644
--- a/dev-python/rosdistro/Manifest
+++ b/dev-python/rosdistro/Manifest
@@ -1,2 +1 @@
-DIST rosdistro-0.6.4.tar.gz 58603 BLAKE2B 
9eed482987826b69eba51f1776df0d2285c496130d500f082f82fe7fbbb8e8d5767dcaec93582328a33c164a862ac2a46ac6d0ed0f770ebb16b25e680dc1e9af
 SHA512 
92365b556cc6615245bd69cce35efb2fe879fe42fb4aafef08b2472c67b43e14e3088c1186e8b1d4f5f3781bfebbe826b3c361a9435ce27745a3506d20d40f85
 DIST rosdistro-0.6.6.tar.gz 58881 BLAKE2B 
9daa5c08b97509606d5077f55e8a85d2cd278f69aebff22feefd9661d455f38cff549ee26f894b040cad7192f044828a20cf749d83a257a8b5604f07d382f081
 SHA512 
2a4b0dfcaa43a8e4d4a0fff5ed204ad81317156128d9050e0c67dfe2cd9efda2bfc84f454e424ebd457e7c62c7c6add113ceb31e99310c34a9fc9f206e510922

diff --git a/dev-python/rosdistro/rosdistro-0.6.4.ebuild 
b/dev-python/rosdistro/rosdistro-0.6.4.ebuild
deleted file mode 100644
index 8780e241c60..000
--- a/dev-python/rosdistro/rosdistro-0.6.4.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy{,3} )
-
-SCM=""
-if [ "${PV#}" != "${PV}" ] ; then
-   SCM="git-r3"
-   EGIT_REPO_URI="https://github.com/ros-infrastructure/rosdistro;
-fi
-
-inherit ${SCM} distutils-r1
-
-DESCRIPTION="Tools to work with catkinized rosdistro files"
-HOMEPAGE="http://wiki.ros.org/rosdistro;
-if [ "${PV#}" != "${PV}" ] ; then
-   SRC_URI=""
-   KEYWORDS=""
-else
-   
SRC_URI="https://github.com/ros-infrastructure/rosdistro/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm"
-fi
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="test"
-
-RDEPEND="
-   dev-python/catkin_pkg[${PYTHON_USEDEP}]
-   dev-python/rospkg[${PYTHON_USEDEP}]
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-   dev-python/setuptools[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-   test? (
-   dev-python/nose[${PYTHON_USEDEP}]
-   dev-python/mock[${PYTHON_USEDEP}]
-   )
-"
-
-python_test() {
-   nosetests --with-xunit test || die
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/rosdistro/

2018-03-04 Thread Alexis Ballier
commit: 1d8018bc9433c6e2c7550c0d17c3c6beeeb2ad8a
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sun Mar  4 13:40:39 2018 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sun Mar  4 14:20:37 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d8018bc

dev-python/rosdistro: bump to 0.6.8

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-python/rosdistro/Manifest   |  1 +
 dev-python/rosdistro/rosdistro-0.6.8.ebuild | 43 +
 2 files changed, 44 insertions(+)

diff --git a/dev-python/rosdistro/Manifest b/dev-python/rosdistro/Manifest
index 7a181b46c74..3c7a2f19bed 100644
--- a/dev-python/rosdistro/Manifest
+++ b/dev-python/rosdistro/Manifest
@@ -1 +1,2 @@
 DIST rosdistro-0.6.6.tar.gz 58881 BLAKE2B 
9daa5c08b97509606d5077f55e8a85d2cd278f69aebff22feefd9661d455f38cff549ee26f894b040cad7192f044828a20cf749d83a257a8b5604f07d382f081
 SHA512 
2a4b0dfcaa43a8e4d4a0fff5ed204ad81317156128d9050e0c67dfe2cd9efda2bfc84f454e424ebd457e7c62c7c6add113ceb31e99310c34a9fc9f206e510922
+DIST rosdistro-0.6.8.tar.gz 59771 BLAKE2B 
5610ef992824104570abc8c5cc0224838ee1442d942f8f317b20b300831f7536649b47360e7f542e484d75eac29af71ce9e82fadf91b540f4671478039776921
 SHA512 
57db65b7cba29e41c14ea4e45f951a410e6152ce4247afd1b15df51cd79e50bdbc95151eac02acc666f8bc3c2658695600ad1b4fc0f4152d71901685c9e8f558

diff --git a/dev-python/rosdistro/rosdistro-0.6.8.ebuild 
b/dev-python/rosdistro/rosdistro-0.6.8.ebuild
new file mode 100644
index 000..8780e241c60
--- /dev/null
+++ b/dev-python/rosdistro/rosdistro-0.6.8.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy{,3} )
+
+SCM=""
+if [ "${PV#}" != "${PV}" ] ; then
+   SCM="git-r3"
+   EGIT_REPO_URI="https://github.com/ros-infrastructure/rosdistro;
+fi
+
+inherit ${SCM} distutils-r1
+
+DESCRIPTION="Tools to work with catkinized rosdistro files"
+HOMEPAGE="http://wiki.ros.org/rosdistro;
+if [ "${PV#}" != "${PV}" ] ; then
+   SRC_URI=""
+   KEYWORDS=""
+else
+   
SRC_URI="https://github.com/ros-infrastructure/rosdistro/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
+   KEYWORDS="~amd64 ~arm"
+fi
+
+LICENSE="BSD"
+SLOT="0"
+IUSE="test"
+
+RDEPEND="
+   dev-python/catkin_pkg[${PYTHON_USEDEP}]
+   dev-python/rospkg[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   dev-python/setuptools[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+   test? (
+   dev-python/nose[${PYTHON_USEDEP}]
+   dev-python/mock[${PYTHON_USEDEP}]
+   )
+"
+
+python_test() {
+   nosetests --with-xunit test || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/rosdistro/

2018-01-28 Thread Alexis Ballier
commit: 883046fc8b7dbdf7f66ab8f2995651695d4bb5b8
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sun Jan 28 09:41:30 2018 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sun Jan 28 12:54:31 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=883046fc

dev-python/rosdistro: Remove old

Package-Manager: Portage-2.3.20, Repoman-2.3.6

 dev-python/rosdistro/Manifest   |  1 -
 dev-python/rosdistro/rosdistro-0.6.3.ebuild | 44 -
 2 files changed, 45 deletions(-)

diff --git a/dev-python/rosdistro/Manifest b/dev-python/rosdistro/Manifest
index e164f3a9040..372bc819cde 100644
--- a/dev-python/rosdistro/Manifest
+++ b/dev-python/rosdistro/Manifest
@@ -1,2 +1 @@
-DIST rosdistro-0.6.3.tar.gz 48789 BLAKE2B 
f26da2b2624501321033390d554559a0b807b224c35e96ff1643d6060e0225b9de6e2f9df354c5f6f13d277ba5b46453fe5db10d31cd5b05f50a78360d2b03dd
 SHA512 
9fe50a9ed67d5772912ad7d15c60179894f3d775b593e4f42fff6c5221a77ea89176c9239ac0e962d2997eb6b1b365ad47da1080f69e62a4c75e1ea3f26294f0
 DIST rosdistro-0.6.4.tar.gz 58603 BLAKE2B 
9eed482987826b69eba51f1776df0d2285c496130d500f082f82fe7fbbb8e8d5767dcaec93582328a33c164a862ac2a46ac6d0ed0f770ebb16b25e680dc1e9af
 SHA512 
92365b556cc6615245bd69cce35efb2fe879fe42fb4aafef08b2472c67b43e14e3088c1186e8b1d4f5f3781bfebbe826b3c361a9435ce27745a3506d20d40f85

diff --git a/dev-python/rosdistro/rosdistro-0.6.3.ebuild 
b/dev-python/rosdistro/rosdistro-0.6.3.ebuild
deleted file mode 100644
index e9ccf8b2beb..000
--- a/dev-python/rosdistro/rosdistro-0.6.3.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy{,3} )
-
-SCM=""
-if [ "${PV#}" != "${PV}" ] ; then
-   SCM="git-r3"
-   EGIT_REPO_URI="https://github.com/ros-infrastructure/rosdistro;
-fi
-
-inherit ${SCM} distutils-r1
-
-DESCRIPTION="Tools to work with catkinized rosdistro files"
-HOMEPAGE="http://wiki.ros.org/rosdistro;
-if [ "${PV#}" != "${PV}" ] ; then
-   SRC_URI=""
-   KEYWORDS=""
-else
-   SRC_URI="http://download.ros.org/downloads/${PN}/${P}.tar.gz
-   
https://github.com/ros-infrastructure/rosdistro/archive/${PV}.tar.gz -> 
${P}.tar.gz
-   "
-   KEYWORDS="~amd64 ~arm"
-fi
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="test"
-
-RDEPEND="
-   dev-python/catkin_pkg[${PYTHON_USEDEP}]
-   dev-python/rospkg[${PYTHON_USEDEP}]
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-   dev-python/setuptools[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-   test? (
-   dev-python/nose[${PYTHON_USEDEP}]
-   )
-"
-
-python_test() {
-   nosetests --with-xunit test || die
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/rosdistro/

2018-01-28 Thread Alexis Ballier
commit: 0b9d09a839b4e4aa38b73f8da4ed525a235a93e6
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sun Jan 28 09:42:58 2018 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sun Jan 28 12:54:32 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b9d09a8

dev-python/rosdistro: 0.6.6

Package-Manager: Portage-2.3.20, Repoman-2.3.6

 dev-python/rosdistro/Manifest   |  1 +
 dev-python/rosdistro/rosdistro-0.6.6.ebuild | 43 +
 2 files changed, 44 insertions(+)

diff --git a/dev-python/rosdistro/Manifest b/dev-python/rosdistro/Manifest
index 372bc819cde..2df43d31176 100644
--- a/dev-python/rosdistro/Manifest
+++ b/dev-python/rosdistro/Manifest
@@ -1 +1,2 @@
 DIST rosdistro-0.6.4.tar.gz 58603 BLAKE2B 
9eed482987826b69eba51f1776df0d2285c496130d500f082f82fe7fbbb8e8d5767dcaec93582328a33c164a862ac2a46ac6d0ed0f770ebb16b25e680dc1e9af
 SHA512 
92365b556cc6615245bd69cce35efb2fe879fe42fb4aafef08b2472c67b43e14e3088c1186e8b1d4f5f3781bfebbe826b3c361a9435ce27745a3506d20d40f85
+DIST rosdistro-0.6.6.tar.gz 58881 BLAKE2B 
9daa5c08b97509606d5077f55e8a85d2cd278f69aebff22feefd9661d455f38cff549ee26f894b040cad7192f044828a20cf749d83a257a8b5604f07d382f081
 SHA512 
2a4b0dfcaa43a8e4d4a0fff5ed204ad81317156128d9050e0c67dfe2cd9efda2bfc84f454e424ebd457e7c62c7c6add113ceb31e99310c34a9fc9f206e510922

diff --git a/dev-python/rosdistro/rosdistro-0.6.6.ebuild 
b/dev-python/rosdistro/rosdistro-0.6.6.ebuild
new file mode 100644
index 000..8780e241c60
--- /dev/null
+++ b/dev-python/rosdistro/rosdistro-0.6.6.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy{,3} )
+
+SCM=""
+if [ "${PV#}" != "${PV}" ] ; then
+   SCM="git-r3"
+   EGIT_REPO_URI="https://github.com/ros-infrastructure/rosdistro;
+fi
+
+inherit ${SCM} distutils-r1
+
+DESCRIPTION="Tools to work with catkinized rosdistro files"
+HOMEPAGE="http://wiki.ros.org/rosdistro;
+if [ "${PV#}" != "${PV}" ] ; then
+   SRC_URI=""
+   KEYWORDS=""
+else
+   
SRC_URI="https://github.com/ros-infrastructure/rosdistro/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
+   KEYWORDS="~amd64 ~arm"
+fi
+
+LICENSE="BSD"
+SLOT="0"
+IUSE="test"
+
+RDEPEND="
+   dev-python/catkin_pkg[${PYTHON_USEDEP}]
+   dev-python/rospkg[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   dev-python/setuptools[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+   test? (
+   dev-python/nose[${PYTHON_USEDEP}]
+   dev-python/mock[${PYTHON_USEDEP}]
+   )
+"
+
+python_test() {
+   nosetests --with-xunit test || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/rosdistro/

2018-01-13 Thread Alexis Ballier
commit: 2d1ddae85a605e11bdf81ece4640d892a8f4f98e
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Jan 13 10:43:22 2018 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Jan 13 12:16:24 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d1ddae8

dev-python/rosdistro: Remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-python/rosdistro/Manifest   |  2 --
 dev-python/rosdistro/rosdistro-0.6.1.ebuild | 44 -
 dev-python/rosdistro/rosdistro-0.6.2.ebuild | 44 -
 3 files changed, 90 deletions(-)

diff --git a/dev-python/rosdistro/Manifest b/dev-python/rosdistro/Manifest
index e88135b0632..54d979f44ce 100644
--- a/dev-python/rosdistro/Manifest
+++ b/dev-python/rosdistro/Manifest
@@ -1,3 +1 @@
-DIST rosdistro-0.6.1.tar.gz 48699 BLAKE2B 
87bc8d7d90d3731c5994be94bde9932e16cac8e4c257a97c80c1cc70b2af68bbeaa6c36c1eeba9dc32a75b33cf69196f1520c3475f1dfd56d4ab17804ca6802a
 SHA512 
9f7c9eea737da443b1daaacde6bcea163ac2ffc707efb23016fe77c68423ee192e0610b9aa1c8a4b07735d1784e30a509dc78cf256061fcc4de75ed4c4244f75
-DIST rosdistro-0.6.2.tar.gz 42658 BLAKE2B 
5f4c574438ff6e791adf1ee8076ab898b656c00bfa8b48b6cd2d871c71c48f3c5b609108ed8005ae47e2554ac92a9512382c1dcdd5bc74614aaf4573b13322b1
 SHA512 
df7da98a2b46d45d978bbb371ea98cf24aafa0704c1cd991db0f1b785eb3330227d42a505b765653bf11d267f676844e1043e5fcff52b7295afa1b21ffc99301
 DIST rosdistro-0.6.3.tar.gz 48789 BLAKE2B 
f26da2b2624501321033390d554559a0b807b224c35e96ff1643d6060e0225b9de6e2f9df354c5f6f13d277ba5b46453fe5db10d31cd5b05f50a78360d2b03dd
 SHA512 
9fe50a9ed67d5772912ad7d15c60179894f3d775b593e4f42fff6c5221a77ea89176c9239ac0e962d2997eb6b1b365ad47da1080f69e62a4c75e1ea3f26294f0

diff --git a/dev-python/rosdistro/rosdistro-0.6.1.ebuild 
b/dev-python/rosdistro/rosdistro-0.6.1.ebuild
deleted file mode 100644
index e9ccf8b2beb..000
--- a/dev-python/rosdistro/rosdistro-0.6.1.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy{,3} )
-
-SCM=""
-if [ "${PV#}" != "${PV}" ] ; then
-   SCM="git-r3"
-   EGIT_REPO_URI="https://github.com/ros-infrastructure/rosdistro;
-fi
-
-inherit ${SCM} distutils-r1
-
-DESCRIPTION="Tools to work with catkinized rosdistro files"
-HOMEPAGE="http://wiki.ros.org/rosdistro;
-if [ "${PV#}" != "${PV}" ] ; then
-   SRC_URI=""
-   KEYWORDS=""
-else
-   SRC_URI="http://download.ros.org/downloads/${PN}/${P}.tar.gz
-   
https://github.com/ros-infrastructure/rosdistro/archive/${PV}.tar.gz -> 
${P}.tar.gz
-   "
-   KEYWORDS="~amd64 ~arm"
-fi
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="test"
-
-RDEPEND="
-   dev-python/catkin_pkg[${PYTHON_USEDEP}]
-   dev-python/rospkg[${PYTHON_USEDEP}]
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-   dev-python/setuptools[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-   test? (
-   dev-python/nose[${PYTHON_USEDEP}]
-   )
-"
-
-python_test() {
-   nosetests --with-xunit test || die
-}

diff --git a/dev-python/rosdistro/rosdistro-0.6.2.ebuild 
b/dev-python/rosdistro/rosdistro-0.6.2.ebuild
deleted file mode 100644
index e9ccf8b2beb..000
--- a/dev-python/rosdistro/rosdistro-0.6.2.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy{,3} )
-
-SCM=""
-if [ "${PV#}" != "${PV}" ] ; then
-   SCM="git-r3"
-   EGIT_REPO_URI="https://github.com/ros-infrastructure/rosdistro;
-fi
-
-inherit ${SCM} distutils-r1
-
-DESCRIPTION="Tools to work with catkinized rosdistro files"
-HOMEPAGE="http://wiki.ros.org/rosdistro;
-if [ "${PV#}" != "${PV}" ] ; then
-   SRC_URI=""
-   KEYWORDS=""
-else
-   SRC_URI="http://download.ros.org/downloads/${PN}/${P}.tar.gz
-   
https://github.com/ros-infrastructure/rosdistro/archive/${PV}.tar.gz -> 
${P}.tar.gz
-   "
-   KEYWORDS="~amd64 ~arm"
-fi
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="test"
-
-RDEPEND="
-   dev-python/catkin_pkg[${PYTHON_USEDEP}]
-   dev-python/rospkg[${PYTHON_USEDEP}]
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-   dev-python/setuptools[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-   test? (
-   dev-python/nose[${PYTHON_USEDEP}]
-   )
-"
-
-python_test() {
-   nosetests --with-xunit test || die
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/rosdistro/

2018-01-13 Thread Alexis Ballier
commit: b994cee9d032584c14e41643a5f8edfc1dd2b467
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Jan 13 10:47:51 2018 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Jan 13 12:16:24 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b994cee9

dev-python/rosdistro: bump to 0.6.4

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-python/rosdistro/Manifest  | 1 +
 .../rosdistro/{rosdistro-.ebuild => rosdistro-0.6.4.ebuild}| 7 +++
 dev-python/rosdistro/rosdistro-.ebuild | 7 +++
 3 files changed, 7 insertions(+), 8 deletions(-)

diff --git a/dev-python/rosdistro/Manifest b/dev-python/rosdistro/Manifest
index 54d979f44ce..e164f3a9040 100644
--- a/dev-python/rosdistro/Manifest
+++ b/dev-python/rosdistro/Manifest
@@ -1 +1,2 @@
 DIST rosdistro-0.6.3.tar.gz 48789 BLAKE2B 
f26da2b2624501321033390d554559a0b807b224c35e96ff1643d6060e0225b9de6e2f9df354c5f6f13d277ba5b46453fe5db10d31cd5b05f50a78360d2b03dd
 SHA512 
9fe50a9ed67d5772912ad7d15c60179894f3d775b593e4f42fff6c5221a77ea89176c9239ac0e962d2997eb6b1b365ad47da1080f69e62a4c75e1ea3f26294f0
+DIST rosdistro-0.6.4.tar.gz 58603 BLAKE2B 
9eed482987826b69eba51f1776df0d2285c496130d500f082f82fe7fbbb8e8d5767dcaec93582328a33c164a862ac2a46ac6d0ed0f770ebb16b25e680dc1e9af
 SHA512 
92365b556cc6615245bd69cce35efb2fe879fe42fb4aafef08b2472c67b43e14e3088c1186e8b1d4f5f3781bfebbe826b3c361a9435ce27745a3506d20d40f85

diff --git a/dev-python/rosdistro/rosdistro-.ebuild 
b/dev-python/rosdistro/rosdistro-0.6.4.ebuild
similarity index 80%
copy from dev-python/rosdistro/rosdistro-.ebuild
copy to dev-python/rosdistro/rosdistro-0.6.4.ebuild
index e9ccf8b2beb..8780e241c60 100644
--- a/dev-python/rosdistro/rosdistro-.ebuild
+++ b/dev-python/rosdistro/rosdistro-0.6.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -18,9 +18,7 @@ if [ "${PV#}" != "${PV}" ] ; then
SRC_URI=""
KEYWORDS=""
 else
-   SRC_URI="http://download.ros.org/downloads/${PN}/${P}.tar.gz
-   
https://github.com/ros-infrastructure/rosdistro/archive/${PV}.tar.gz -> 
${P}.tar.gz
-   "
+   
SRC_URI="https://github.com/ros-infrastructure/rosdistro/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
KEYWORDS="~amd64 ~arm"
 fi
 
@@ -36,6 +34,7 @@ RDEPEND="
 DEPEND="${RDEPEND}
test? (
dev-python/nose[${PYTHON_USEDEP}]
+   dev-python/mock[${PYTHON_USEDEP}]
)
 "
 

diff --git a/dev-python/rosdistro/rosdistro-.ebuild 
b/dev-python/rosdistro/rosdistro-.ebuild
index e9ccf8b2beb..8780e241c60 100644
--- a/dev-python/rosdistro/rosdistro-.ebuild
+++ b/dev-python/rosdistro/rosdistro-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -18,9 +18,7 @@ if [ "${PV#}" != "${PV}" ] ; then
SRC_URI=""
KEYWORDS=""
 else
-   SRC_URI="http://download.ros.org/downloads/${PN}/${P}.tar.gz
-   
https://github.com/ros-infrastructure/rosdistro/archive/${PV}.tar.gz -> 
${P}.tar.gz
-   "
+   
SRC_URI="https://github.com/ros-infrastructure/rosdistro/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
KEYWORDS="~amd64 ~arm"
 fi
 
@@ -36,6 +34,7 @@ RDEPEND="
 DEPEND="${RDEPEND}
test? (
dev-python/nose[${PYTHON_USEDEP}]
+   dev-python/mock[${PYTHON_USEDEP}]
)
 "
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/rosdistro/

2017-12-26 Thread Alexis Ballier
commit: 3c06591bfa0b5e34d21da74e74237bc63bb1a052
Author: Alexis Ballier  gentoo  org>
AuthorDate: Tue Dec 26 19:07:42 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Tue Dec 26 19:07:59 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c06591b

dev-python/rosdistro: bump to 0.6.3

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-python/rosdistro/Manifest   |  1 +
 dev-python/rosdistro/rosdistro-0.6.3.ebuild | 44 +
 2 files changed, 45 insertions(+)

diff --git a/dev-python/rosdistro/Manifest b/dev-python/rosdistro/Manifest
index 50e27abd0ad..e88135b0632 100644
--- a/dev-python/rosdistro/Manifest
+++ b/dev-python/rosdistro/Manifest
@@ -1,2 +1,3 @@
 DIST rosdistro-0.6.1.tar.gz 48699 BLAKE2B 
87bc8d7d90d3731c5994be94bde9932e16cac8e4c257a97c80c1cc70b2af68bbeaa6c36c1eeba9dc32a75b33cf69196f1520c3475f1dfd56d4ab17804ca6802a
 SHA512 
9f7c9eea737da443b1daaacde6bcea163ac2ffc707efb23016fe77c68423ee192e0610b9aa1c8a4b07735d1784e30a509dc78cf256061fcc4de75ed4c4244f75
 DIST rosdistro-0.6.2.tar.gz 42658 BLAKE2B 
5f4c574438ff6e791adf1ee8076ab898b656c00bfa8b48b6cd2d871c71c48f3c5b609108ed8005ae47e2554ac92a9512382c1dcdd5bc74614aaf4573b13322b1
 SHA512 
df7da98a2b46d45d978bbb371ea98cf24aafa0704c1cd991db0f1b785eb3330227d42a505b765653bf11d267f676844e1043e5fcff52b7295afa1b21ffc99301
+DIST rosdistro-0.6.3.tar.gz 48789 BLAKE2B 
f26da2b2624501321033390d554559a0b807b224c35e96ff1643d6060e0225b9de6e2f9df354c5f6f13d277ba5b46453fe5db10d31cd5b05f50a78360d2b03dd
 SHA512 
9fe50a9ed67d5772912ad7d15c60179894f3d775b593e4f42fff6c5221a77ea89176c9239ac0e962d2997eb6b1b365ad47da1080f69e62a4c75e1ea3f26294f0

diff --git a/dev-python/rosdistro/rosdistro-0.6.3.ebuild 
b/dev-python/rosdistro/rosdistro-0.6.3.ebuild
new file mode 100644
index 000..e9ccf8b2beb
--- /dev/null
+++ b/dev-python/rosdistro/rosdistro-0.6.3.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy{,3} )
+
+SCM=""
+if [ "${PV#}" != "${PV}" ] ; then
+   SCM="git-r3"
+   EGIT_REPO_URI="https://github.com/ros-infrastructure/rosdistro;
+fi
+
+inherit ${SCM} distutils-r1
+
+DESCRIPTION="Tools to work with catkinized rosdistro files"
+HOMEPAGE="http://wiki.ros.org/rosdistro;
+if [ "${PV#}" != "${PV}" ] ; then
+   SRC_URI=""
+   KEYWORDS=""
+else
+   SRC_URI="http://download.ros.org/downloads/${PN}/${P}.tar.gz
+   
https://github.com/ros-infrastructure/rosdistro/archive/${PV}.tar.gz -> 
${P}.tar.gz
+   "
+   KEYWORDS="~amd64 ~arm"
+fi
+
+LICENSE="BSD"
+SLOT="0"
+IUSE="test"
+
+RDEPEND="
+   dev-python/catkin_pkg[${PYTHON_USEDEP}]
+   dev-python/rospkg[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   dev-python/setuptools[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+   test? (
+   dev-python/nose[${PYTHON_USEDEP}]
+   )
+"
+
+python_test() {
+   nosetests --with-xunit test || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/rosdistro/

2017-04-06 Thread Alexis Ballier
commit: 738df6fa0769b55eb604888e3d38058905a5a18b
Author: Alexis Ballier  gentoo  org>
AuthorDate: Thu Apr  6 07:57:09 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Thu Apr  6 08:21:07 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=738df6fa

dev-python/rosdistro: bump to 0.6.2

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 dev-python/rosdistro/Manifest   |  1 +
 dev-python/rosdistro/rosdistro-0.6.2.ebuild | 44 +
 2 files changed, 45 insertions(+)

diff --git a/dev-python/rosdistro/Manifest b/dev-python/rosdistro/Manifest
index 167abc6bbfc..aaae1418e69 100644
--- a/dev-python/rosdistro/Manifest
+++ b/dev-python/rosdistro/Manifest
@@ -1 +1,2 @@
 DIST rosdistro-0.6.1.tar.gz 48699 SHA256 
51c9a3a5ff4931310c6c7cf5a23a2c64b2432ed9154a159a9ca3ce55c608600f SHA512 
9f7c9eea737da443b1daaacde6bcea163ac2ffc707efb23016fe77c68423ee192e0610b9aa1c8a4b07735d1784e30a509dc78cf256061fcc4de75ed4c4244f75
 WHIRLPOOL 
3dca25a0cd68efa41e21d71d1528213f9ca54719ea3b1dc3cb8e90b6a932d98d97874d4cf6ef3630f3413a7a15b6004bbba8e3aa72d509d11836d3a6cee79519
+DIST rosdistro-0.6.2.tar.gz 42658 SHA256 
834776e7419465b23080b099ddb3b981fbe8623442ed2b446989f3fa998fb178 SHA512 
df7da98a2b46d45d978bbb371ea98cf24aafa0704c1cd991db0f1b785eb3330227d42a505b765653bf11d267f676844e1043e5fcff52b7295afa1b21ffc99301
 WHIRLPOOL 
1e72ee793fef552e8b674e11a90d8a981a63cb109fca499d59c3e75353ffb472777e369b48cabb606d1d863e9e9d591352ac3d5d020b77c750dbbbe68840a95d

diff --git a/dev-python/rosdistro/rosdistro-0.6.2.ebuild 
b/dev-python/rosdistro/rosdistro-0.6.2.ebuild
new file mode 100644
index 000..e9ccf8b2beb
--- /dev/null
+++ b/dev-python/rosdistro/rosdistro-0.6.2.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy{,3} )
+
+SCM=""
+if [ "${PV#}" != "${PV}" ] ; then
+   SCM="git-r3"
+   EGIT_REPO_URI="https://github.com/ros-infrastructure/rosdistro;
+fi
+
+inherit ${SCM} distutils-r1
+
+DESCRIPTION="Tools to work with catkinized rosdistro files"
+HOMEPAGE="http://wiki.ros.org/rosdistro;
+if [ "${PV#}" != "${PV}" ] ; then
+   SRC_URI=""
+   KEYWORDS=""
+else
+   SRC_URI="http://download.ros.org/downloads/${PN}/${P}.tar.gz
+   
https://github.com/ros-infrastructure/rosdistro/archive/${PV}.tar.gz -> 
${P}.tar.gz
+   "
+   KEYWORDS="~amd64 ~arm"
+fi
+
+LICENSE="BSD"
+SLOT="0"
+IUSE="test"
+
+RDEPEND="
+   dev-python/catkin_pkg[${PYTHON_USEDEP}]
+   dev-python/rospkg[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   dev-python/setuptools[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+   test? (
+   dev-python/nose[${PYTHON_USEDEP}]
+   )
+"
+
+python_test() {
+   nosetests --with-xunit test || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/rosdistro/

2017-02-27 Thread Alexis Ballier
commit: 06db0dc571849d8f938095f91792c9b7b5db3e56
Author: Alexis Ballier  gentoo  org>
AuthorDate: Mon Feb 27 15:53:58 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Mon Feb 27 17:09:24 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06db0dc5

dev-python/rosdistro: remove old

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-python/rosdistro/Manifest   |  2 --
 dev-python/rosdistro/rosdistro-0.4.7.ebuild | 45 -
 dev-python/rosdistro/rosdistro-0.5.0.ebuild | 45 -
 3 files changed, 92 deletions(-)

diff --git a/dev-python/rosdistro/Manifest b/dev-python/rosdistro/Manifest
index de82bc732b..167abc6bbf 100644
--- a/dev-python/rosdistro/Manifest
+++ b/dev-python/rosdistro/Manifest
@@ -1,3 +1 @@
-DIST rosdistro-0.4.7.tar.gz 42265 SHA256 
7b98e5c82ce81bd8080f159a7c907bca8bf77f6cb4bae8a3265f44e3d73b838f SHA512 
adc841b19ad247f44d52cb819851715c94a73fc99ac175c0ee5656f69b86f7630a84259a9c96fa20a687ad32fa9e8e9f77802ae7b70700e53c87ee938bac2cac
 WHIRLPOOL 
85d36fae44f895176a2ef151129baa86a9eef53700496dda2129d74d40fe67f0dbd4109df0ac7c534db1b3c712eafa73bcf3deabdd3f2dda3b5777d96a70ea69
-DIST rosdistro-0.5.0.tar.gz 48017 SHA256 
dbf98013051b8ebd0e940828bb4a66c0d6fc1ec3ef36467f44636ee86d0422bf SHA512 
e5a64442c56c7b60d1f334e42896172ccd07b87fbf9b5f877528073069ce63939482a5257e5dab8c16be633c044a744419017953b5dec4d9664221cf841776a8
 WHIRLPOOL 
4a5165340c9bcc8c46f72e70998886ec43c94a15b5c62a6a0af0c030166e369ab769fda03819b084384615cf3ad2d43f89961c73ad8ac9b835e687880b2b0a48
 DIST rosdistro-0.6.1.tar.gz 48699 SHA256 
51c9a3a5ff4931310c6c7cf5a23a2c64b2432ed9154a159a9ca3ce55c608600f SHA512 
9f7c9eea737da443b1daaacde6bcea163ac2ffc707efb23016fe77c68423ee192e0610b9aa1c8a4b07735d1784e30a509dc78cf256061fcc4de75ed4c4244f75
 WHIRLPOOL 
3dca25a0cd68efa41e21d71d1528213f9ca54719ea3b1dc3cb8e90b6a932d98d97874d4cf6ef3630f3413a7a15b6004bbba8e3aa72d509d11836d3a6cee79519

diff --git a/dev-python/rosdistro/rosdistro-0.4.7.ebuild 
b/dev-python/rosdistro/rosdistro-0.4.7.ebuild
deleted file mode 100644
index 747ddca50b..00
--- a/dev-python/rosdistro/rosdistro-0.4.7.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
-
-SCM=""
-if [ "${PV#}" != "${PV}" ] ; then
-   SCM="git-r3"
-   EGIT_REPO_URI="https://github.com/ros-infrastructure/rosdistro;
-fi
-
-inherit ${SCM} distutils-r1
-
-DESCRIPTION="Tools to work with catkinized rosdistro files"
-HOMEPAGE="http://wiki.ros.org/rosdistro;
-if [ "${PV#}" != "${PV}" ] ; then
-   SRC_URI=""
-   KEYWORDS=""
-else
-   SRC_URI="http://download.ros.org/downloads/${PN}/${P}.tar.gz
-   
https://github.com/ros-infrastructure/rosdistro/archive/${PV}.tar.gz -> 
${P}.tar.gz
-   "
-   KEYWORDS="~amd64 ~arm"
-fi
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="test"
-
-RDEPEND="
-   dev-python/catkin_pkg[${PYTHON_USEDEP}]
-   dev-python/rospkg[${PYTHON_USEDEP}]
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-   dev-python/setuptools[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-   test? (
-   dev-python/nose[${PYTHON_USEDEP}]
-   )
-"
-
-python_test() {
-   nosetests --with-xunit test || die
-}

diff --git a/dev-python/rosdistro/rosdistro-0.5.0.ebuild 
b/dev-python/rosdistro/rosdistro-0.5.0.ebuild
deleted file mode 100644
index 494ae8452e..00
--- a/dev-python/rosdistro/rosdistro-0.5.0.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
-
-SCM=""
-if [ "${PV#}" != "${PV}" ] ; then
-   SCM="git-r3"
-   EGIT_REPO_URI="https://github.com/ros-infrastructure/rosdistro;
-fi
-
-inherit ${SCM} distutils-r1
-
-DESCRIPTION="Tools to work with catkinized rosdistro files"
-HOMEPAGE="http://wiki.ros.org/rosdistro;
-if [ "${PV#}" != "${PV}" ] ; then
-   SRC_URI=""
-   KEYWORDS=""
-else
-   SRC_URI="http://download.ros.org/downloads/${PN}/${P}.tar.gz
-   
https://github.com/ros-infrastructure/rosdistro/archive/${PV}.tar.gz -> 
${P}.tar.gz
-   "
-   KEYWORDS="~amd64 ~arm"
-fi
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="test"
-
-RDEPEND="
-   dev-python/catkin_pkg[${PYTHON_USEDEP}]
-   dev-python/rospkg[${PYTHON_USEDEP}]
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-   dev-python/setuptools[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-   test? (
-   dev-python/nose[${PYTHON_USEDEP}]
-   )
-"
-
-python_test() {
-   nosetests --with-xunit test || die
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/rosdistro/

2017-02-27 Thread Alexis Ballier
commit: 6c59bf8ba2b5efc6d2596f095d2a911addc273c9
Author: Alexis Ballier  gentoo  org>
AuthorDate: Mon Feb 27 15:57:54 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Mon Feb 27 17:09:24 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c59bf8b

dev-python/rosdistro: Add python 3.6 pypy/3 support

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-python/rosdistro/rosdistro-0.6.1.ebuild | 2 +-
 dev-python/rosdistro/rosdistro-.ebuild  | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-python/rosdistro/rosdistro-0.6.1.ebuild 
b/dev-python/rosdistro/rosdistro-0.6.1.ebuild
index 6f235cc43c..4afd2fb4f0 100644
--- a/dev-python/rosdistro/rosdistro-0.6.1.ebuild
+++ b/dev-python/rosdistro/rosdistro-0.6.1.ebuild
@@ -3,7 +3,7 @@
 # $Id$
 
 EAPI=5
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy{,3} )
 
 SCM=""
 if [ "${PV#}" != "${PV}" ] ; then

diff --git a/dev-python/rosdistro/rosdistro-.ebuild 
b/dev-python/rosdistro/rosdistro-.ebuild
index 747ddca50b..4afd2fb4f0 100644
--- a/dev-python/rosdistro/rosdistro-.ebuild
+++ b/dev-python/rosdistro/rosdistro-.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy{,3} )
 
 SCM=""
 if [ "${PV#}" != "${PV}" ] ; then



[gentoo-commits] repo/gentoo:master commit in: dev-python/rosdistro/

2017-02-23 Thread Alexis Ballier
commit: 8048f896547b86cc76dfc0dd2e757eabe41b7ebd
Author: Alexis Ballier  gentoo  org>
AuthorDate: Thu Feb 23 08:23:32 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Thu Feb 23 09:15:50 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8048f896

dev-python/rosdistro: Bump to 0.6.1

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-python/rosdistro/Manifest   |  1 +
 dev-python/rosdistro/rosdistro-0.6.1.ebuild | 45 +
 2 files changed, 46 insertions(+)

diff --git a/dev-python/rosdistro/Manifest b/dev-python/rosdistro/Manifest
index a75247169d..de82bc732b 100644
--- a/dev-python/rosdistro/Manifest
+++ b/dev-python/rosdistro/Manifest
@@ -1,2 +1,3 @@
 DIST rosdistro-0.4.7.tar.gz 42265 SHA256 
7b98e5c82ce81bd8080f159a7c907bca8bf77f6cb4bae8a3265f44e3d73b838f SHA512 
adc841b19ad247f44d52cb819851715c94a73fc99ac175c0ee5656f69b86f7630a84259a9c96fa20a687ad32fa9e8e9f77802ae7b70700e53c87ee938bac2cac
 WHIRLPOOL 
85d36fae44f895176a2ef151129baa86a9eef53700496dda2129d74d40fe67f0dbd4109df0ac7c534db1b3c712eafa73bcf3deabdd3f2dda3b5777d96a70ea69
 DIST rosdistro-0.5.0.tar.gz 48017 SHA256 
dbf98013051b8ebd0e940828bb4a66c0d6fc1ec3ef36467f44636ee86d0422bf SHA512 
e5a64442c56c7b60d1f334e42896172ccd07b87fbf9b5f877528073069ce63939482a5257e5dab8c16be633c044a744419017953b5dec4d9664221cf841776a8
 WHIRLPOOL 
4a5165340c9bcc8c46f72e70998886ec43c94a15b5c62a6a0af0c030166e369ab769fda03819b084384615cf3ad2d43f89961c73ad8ac9b835e687880b2b0a48
+DIST rosdistro-0.6.1.tar.gz 48699 SHA256 
51c9a3a5ff4931310c6c7cf5a23a2c64b2432ed9154a159a9ca3ce55c608600f SHA512 
9f7c9eea737da443b1daaacde6bcea163ac2ffc707efb23016fe77c68423ee192e0610b9aa1c8a4b07735d1784e30a509dc78cf256061fcc4de75ed4c4244f75
 WHIRLPOOL 
3dca25a0cd68efa41e21d71d1528213f9ca54719ea3b1dc3cb8e90b6a932d98d97874d4cf6ef3630f3413a7a15b6004bbba8e3aa72d509d11836d3a6cee79519

diff --git a/dev-python/rosdistro/rosdistro-0.6.1.ebuild 
b/dev-python/rosdistro/rosdistro-0.6.1.ebuild
new file mode 100644
index 00..6f235cc43c
--- /dev/null
+++ b/dev-python/rosdistro/rosdistro-0.6.1.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+
+SCM=""
+if [ "${PV#}" != "${PV}" ] ; then
+   SCM="git-r3"
+   EGIT_REPO_URI="https://github.com/ros-infrastructure/rosdistro;
+fi
+
+inherit ${SCM} distutils-r1
+
+DESCRIPTION="Tools to work with catkinized rosdistro files"
+HOMEPAGE="http://wiki.ros.org/rosdistro;
+if [ "${PV#}" != "${PV}" ] ; then
+   SRC_URI=""
+   KEYWORDS=""
+else
+   SRC_URI="http://download.ros.org/downloads/${PN}/${P}.tar.gz
+   
https://github.com/ros-infrastructure/rosdistro/archive/${PV}.tar.gz -> 
${P}.tar.gz
+   "
+   KEYWORDS="~amd64 ~arm"
+fi
+
+LICENSE="BSD"
+SLOT="0"
+IUSE="test"
+
+RDEPEND="
+   dev-python/catkin_pkg[${PYTHON_USEDEP}]
+   dev-python/rospkg[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   dev-python/setuptools[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+   test? (
+   dev-python/nose[${PYTHON_USEDEP}]
+   )
+"
+
+python_test() {
+   nosetests --with-xunit test || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/rosdistro/

2016-10-25 Thread Alexis Ballier
commit: b52b8183e0824494f956c681c8c6ac6fea0b84c2
Author: Alexis Ballier  gentoo  org>
AuthorDate: Tue Oct 25 11:02:24 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Tue Oct 25 11:02:24 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b52b8183

dev-python/rosdistro: remove old

Package-Manager: portage-2.3.2

 dev-python/rosdistro/Manifest   |  2 --
 dev-python/rosdistro/rosdistro-0.4.4.ebuild | 45 -
 dev-python/rosdistro/rosdistro-0.4.5.ebuild | 45 -
 3 files changed, 92 deletions(-)

diff --git a/dev-python/rosdistro/Manifest b/dev-python/rosdistro/Manifest
index 19ac72e..7df74b5 100644
--- a/dev-python/rosdistro/Manifest
+++ b/dev-python/rosdistro/Manifest
@@ -1,3 +1 @@
-DIST rosdistro-0.4.4.tar.gz 40001 SHA256 
1c7c6886c2e61dd8143d3c08f5690f30e9d4e081d348c78bb0b2e8d32773c57b SHA512 
4f6b79d88687f6e6147b95bef484a1555639d65044d01812af60eb072579345b5233bcda8fba251f0685a28b756addff7468c34978b0cc04c871ce4fe30fbe2c
 WHIRLPOOL 
99a29b8c7ef475cd4599d2d9e8e28210af2a9d50b280dc9c315f16b3ae3be8b85e4da55a1c8cb6af55795b98207601307e7e846c0a8cdae6a5b4af356ff7b044
-DIST rosdistro-0.4.5.tar.gz 40510 SHA256 
6c0ba15916e2dcde6d8399aa32d315b3bc7428d0655c36a92dafe1a08d412753 SHA512 
0a6d394eaa2aae75d6d2aad88d1b81f63c0dd8706ff502af75bb57bbf0682c887b4726405e3d239fec22524870145d6d54e9972fcb2f124542682fef82e2751d
 WHIRLPOOL 
29b8ccb67117ab7a3c667db0dd24a3a4b5fcef786cd9d3e4bac14f181284a993371ca8cfaf12377f6739ca7bb4db044b1a5cdc165c0042d4fcc32bbdb682c7a5
 DIST rosdistro-0.4.7.tar.gz 42265 SHA256 
7b98e5c82ce81bd8080f159a7c907bca8bf77f6cb4bae8a3265f44e3d73b838f SHA512 
adc841b19ad247f44d52cb819851715c94a73fc99ac175c0ee5656f69b86f7630a84259a9c96fa20a687ad32fa9e8e9f77802ae7b70700e53c87ee938bac2cac
 WHIRLPOOL 
85d36fae44f895176a2ef151129baa86a9eef53700496dda2129d74d40fe67f0dbd4109df0ac7c534db1b3c712eafa73bcf3deabdd3f2dda3b5777d96a70ea69

diff --git a/dev-python/rosdistro/rosdistro-0.4.4.ebuild 
b/dev-python/rosdistro/rosdistro-0.4.4.ebuild
deleted file mode 100644
index b25e411..
--- a/dev-python/rosdistro/rosdistro-0.4.4.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} )
-
-SCM=""
-if [ "${PV#}" != "${PV}" ] ; then
-   SCM="git-r3"
-   EGIT_REPO_URI="https://github.com/ros-infrastructure/rosdistro;
-fi
-
-inherit ${SCM} distutils-r1
-
-DESCRIPTION="Tools to work with catkinized rosdistro files"
-HOMEPAGE="http://wiki.ros.org/rosdistro;
-if [ "${PV#}" != "${PV}" ] ; then
-   SRC_URI=""
-   KEYWORDS=""
-else
-   SRC_URI="http://download.ros.org/downloads/${PN}/${P}.tar.gz
-   
https://github.com/ros-infrastructure/rosdistro/archive/${PV}.tar.gz -> 
${P}.tar.gz
-   "
-   KEYWORDS="~amd64 ~arm"
-fi
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="test"
-
-RDEPEND="
-   dev-python/catkin_pkg[${PYTHON_USEDEP}]
-   dev-python/rospkg[${PYTHON_USEDEP}]
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-   dev-python/setuptools[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-   test? (
-   dev-python/nose[${PYTHON_USEDEP}]
-   )
-"
-
-python_test() {
-   nosetests --with-xunit test || die
-}

diff --git a/dev-python/rosdistro/rosdistro-0.4.5.ebuild 
b/dev-python/rosdistro/rosdistro-0.4.5.ebuild
deleted file mode 100644
index b25e411..
--- a/dev-python/rosdistro/rosdistro-0.4.5.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} )
-
-SCM=""
-if [ "${PV#}" != "${PV}" ] ; then
-   SCM="git-r3"
-   EGIT_REPO_URI="https://github.com/ros-infrastructure/rosdistro;
-fi
-
-inherit ${SCM} distutils-r1
-
-DESCRIPTION="Tools to work with catkinized rosdistro files"
-HOMEPAGE="http://wiki.ros.org/rosdistro;
-if [ "${PV#}" != "${PV}" ] ; then
-   SRC_URI=""
-   KEYWORDS=""
-else
-   SRC_URI="http://download.ros.org/downloads/${PN}/${P}.tar.gz
-   
https://github.com/ros-infrastructure/rosdistro/archive/${PV}.tar.gz -> 
${P}.tar.gz
-   "
-   KEYWORDS="~amd64 ~arm"
-fi
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="test"
-
-RDEPEND="
-   dev-python/catkin_pkg[${PYTHON_USEDEP}]
-   dev-python/rospkg[${PYTHON_USEDEP}]
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-   dev-python/setuptools[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-   test? (
-   dev-python/nose[${PYTHON_USEDEP}]
-   )
-"
-
-python_test() {
-   nosetests --with-xunit test || die
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/rosdistro/

2016-10-25 Thread Alexis Ballier
commit: c0b4feec79a64b3e9600e9f10ca060aab428c13a
Author: Alexis Ballier  gentoo  org>
AuthorDate: Tue Oct 25 11:04:47 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Tue Oct 25 11:04:47 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0b4feec

dev-python/rosdistro: bump to 0.5.0

Package-Manager: portage-2.3.2

 dev-python/rosdistro/Manifest   |  1 +
 dev-python/rosdistro/rosdistro-0.5.0.ebuild | 45 +
 2 files changed, 46 insertions(+)

diff --git a/dev-python/rosdistro/Manifest b/dev-python/rosdistro/Manifest
index 7df74b5..a752471 100644
--- a/dev-python/rosdistro/Manifest
+++ b/dev-python/rosdistro/Manifest
@@ -1 +1,2 @@
 DIST rosdistro-0.4.7.tar.gz 42265 SHA256 
7b98e5c82ce81bd8080f159a7c907bca8bf77f6cb4bae8a3265f44e3d73b838f SHA512 
adc841b19ad247f44d52cb819851715c94a73fc99ac175c0ee5656f69b86f7630a84259a9c96fa20a687ad32fa9e8e9f77802ae7b70700e53c87ee938bac2cac
 WHIRLPOOL 
85d36fae44f895176a2ef151129baa86a9eef53700496dda2129d74d40fe67f0dbd4109df0ac7c534db1b3c712eafa73bcf3deabdd3f2dda3b5777d96a70ea69
+DIST rosdistro-0.5.0.tar.gz 48017 SHA256 
dbf98013051b8ebd0e940828bb4a66c0d6fc1ec3ef36467f44636ee86d0422bf SHA512 
e5a64442c56c7b60d1f334e42896172ccd07b87fbf9b5f877528073069ce63939482a5257e5dab8c16be633c044a744419017953b5dec4d9664221cf841776a8
 WHIRLPOOL 
4a5165340c9bcc8c46f72e70998886ec43c94a15b5c62a6a0af0c030166e369ab769fda03819b084384615cf3ad2d43f89961c73ad8ac9b835e687880b2b0a48

diff --git a/dev-python/rosdistro/rosdistro-0.5.0.ebuild 
b/dev-python/rosdistro/rosdistro-0.5.0.ebuild
new file mode 100644
index ..8e2e799
--- /dev/null
+++ b/dev-python/rosdistro/rosdistro-0.5.0.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} )
+
+SCM=""
+if [ "${PV#}" != "${PV}" ] ; then
+   SCM="git-r3"
+   EGIT_REPO_URI="https://github.com/ros-infrastructure/rosdistro;
+fi
+
+inherit ${SCM} distutils-r1
+
+DESCRIPTION="Tools to work with catkinized rosdistro files"
+HOMEPAGE="http://wiki.ros.org/rosdistro;
+if [ "${PV#}" != "${PV}" ] ; then
+   SRC_URI=""
+   KEYWORDS=""
+else
+   SRC_URI="http://download.ros.org/downloads/${PN}/${P}.tar.gz
+   
https://github.com/ros-infrastructure/rosdistro/archive/${PV}.tar.gz -> 
${P}.tar.gz
+   "
+   KEYWORDS="~amd64 ~arm"
+fi
+
+LICENSE="BSD"
+SLOT="0"
+IUSE="test"
+
+RDEPEND="
+   dev-python/catkin_pkg[${PYTHON_USEDEP}]
+   dev-python/rospkg[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   dev-python/setuptools[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+   test? (
+   dev-python/nose[${PYTHON_USEDEP}]
+   )
+"
+
+python_test() {
+   nosetests --with-xunit test || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/rosdistro/

2016-03-14 Thread Alexis Ballier
commit: 34b4c34fd3c3ca048a4f4d53aaa6e52f6d9c9a14
Author: Alexis Ballier  gentoo  org>
AuthorDate: Mon Mar 14 11:45:19 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Mon Mar 14 11:45:19 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34b4c34f

dev-python/rosdistro: bump to 0.4.5

Package-Manager: portage-2.2.28
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-python/rosdistro/Manifest   |  1 +
 dev-python/rosdistro/rosdistro-0.4.5.ebuild | 45 +
 2 files changed, 46 insertions(+)

diff --git a/dev-python/rosdistro/Manifest b/dev-python/rosdistro/Manifest
index 37e89e5..5ab3edd 100644
--- a/dev-python/rosdistro/Manifest
+++ b/dev-python/rosdistro/Manifest
@@ -1 +1,2 @@
 DIST rosdistro-0.4.4.tar.gz 40001 SHA256 
1c7c6886c2e61dd8143d3c08f5690f30e9d4e081d348c78bb0b2e8d32773c57b SHA512 
4f6b79d88687f6e6147b95bef484a1555639d65044d01812af60eb072579345b5233bcda8fba251f0685a28b756addff7468c34978b0cc04c871ce4fe30fbe2c
 WHIRLPOOL 
99a29b8c7ef475cd4599d2d9e8e28210af2a9d50b280dc9c315f16b3ae3be8b85e4da55a1c8cb6af55795b98207601307e7e846c0a8cdae6a5b4af356ff7b044
+DIST rosdistro-0.4.5.tar.gz 40510 SHA256 
6c0ba15916e2dcde6d8399aa32d315b3bc7428d0655c36a92dafe1a08d412753 SHA512 
0a6d394eaa2aae75d6d2aad88d1b81f63c0dd8706ff502af75bb57bbf0682c887b4726405e3d239fec22524870145d6d54e9972fcb2f124542682fef82e2751d
 WHIRLPOOL 
29b8ccb67117ab7a3c667db0dd24a3a4b5fcef786cd9d3e4bac14f181284a993371ca8cfaf12377f6739ca7bb4db044b1a5cdc165c0042d4fcc32bbdb682c7a5

diff --git a/dev-python/rosdistro/rosdistro-0.4.5.ebuild 
b/dev-python/rosdistro/rosdistro-0.4.5.ebuild
new file mode 100644
index 000..7f7898e
--- /dev/null
+++ b/dev-python/rosdistro/rosdistro-0.4.5.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} )
+
+SCM=""
+if [ "${PV#}" != "${PV}" ] ; then
+   SCM="git-r3"
+   EGIT_REPO_URI="https://github.com/ros-infrastructure/rosdistro;
+fi
+
+inherit ${SCM} distutils-r1
+
+DESCRIPTION="Tools to work with catkinized rosdistro files"
+HOMEPAGE="http://wiki.ros.org/rosdistro;
+if [ "${PV#}" != "${PV}" ] ; then
+   SRC_URI=""
+   KEYWORDS=""
+else
+   SRC_URI="http://download.ros.org/downloads/${PN}/${P}.tar.gz
+   
http://github.com/ros-infrastructure/rosdistro/archive/${PV}.tar.gz -> 
${P}.tar.gz
+   "
+   KEYWORDS="~amd64 ~arm"
+fi
+
+LICENSE="BSD"
+SLOT="0"
+IUSE="test"
+
+RDEPEND="
+   dev-python/catkin_pkg[${PYTHON_USEDEP}]
+   dev-python/rospkg[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   dev-python/setuptools[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+   test? (
+   dev-python/nose[${PYTHON_USEDEP}]
+   )
+"
+
+python_test() {
+   nosetests --with-xunit test || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/rosdistro/

2016-02-23 Thread Alexis Ballier
commit: 8988777bb12d876f88cd2bec63881e63763f1ff9
Author: Alexis Ballier  gentoo  org>
AuthorDate: Tue Feb 23 18:39:43 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Tue Feb 23 18:39:43 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8988777b

dev-python/rosdistro: add python3.5 support

Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-python/rosdistro/rosdistro-0.4.4.ebuild | 2 +-
 dev-python/rosdistro/rosdistro-.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/rosdistro/rosdistro-0.4.4.ebuild 
b/dev-python/rosdistro/rosdistro-0.4.4.ebuild
index e6da9fa..7f7898e 100644
--- a/dev-python/rosdistro/rosdistro-0.4.4.ebuild
+++ b/dev-python/rosdistro/rosdistro-0.4.4.ebuild
@@ -3,7 +3,7 @@
 # $Id$
 
 EAPI=5
-PYTHON_COMPAT=( python{2_7,3_3,3_4} )
+PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} )
 
 SCM=""
 if [ "${PV#}" != "${PV}" ] ; then

diff --git a/dev-python/rosdistro/rosdistro-.ebuild 
b/dev-python/rosdistro/rosdistro-.ebuild
index e6da9fa..7f7898e 100644
--- a/dev-python/rosdistro/rosdistro-.ebuild
+++ b/dev-python/rosdistro/rosdistro-.ebuild
@@ -3,7 +3,7 @@
 # $Id$
 
 EAPI=5
-PYTHON_COMPAT=( python{2_7,3_3,3_4} )
+PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} )
 
 SCM=""
 if [ "${PV#}" != "${PV}" ] ; then



[gentoo-commits] repo/gentoo:master commit in: dev-python/rosdistro/

2016-02-23 Thread Alexis Ballier
commit: 1dc9532f2a15132f5ccf9624328eb5b3d2648872
Author: Alexis Ballier  gentoo  org>
AuthorDate: Tue Feb 23 18:38:51 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Tue Feb 23 18:38:51 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1dc9532f

dev-python/rosdistro: remove old

Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-python/rosdistro/Manifest   |  1 -
 dev-python/rosdistro/rosdistro-0.4.2.ebuild | 45 -
 2 files changed, 46 deletions(-)

diff --git a/dev-python/rosdistro/Manifest b/dev-python/rosdistro/Manifest
index bb60f19..37e89e5 100644
--- a/dev-python/rosdistro/Manifest
+++ b/dev-python/rosdistro/Manifest
@@ -1,2 +1 @@
-DIST rosdistro-0.4.2.tar.gz 50857 SHA256 
3d5bf062bd0ecbfef272456f1862a6bb7a4100d8f2ac9b4ce7792dbdcfed7a84 SHA512 
24dd08a959918fa44faa465acd22bd8d157b792391a2701ee40997028ea90dd13848f72abf1098930cd4e7b8a162cea1ab28ceb0d82df74167c85c0ef014ad65
 WHIRLPOOL 
8207d60268282d9075655ec3676179b1e6a7d8b1ee571c5df90d4680f54c345175788d7abbf3c2b78504c491a7453193490574f8e68ca2bdba270b5db8983e2b
 DIST rosdistro-0.4.4.tar.gz 40001 SHA256 
1c7c6886c2e61dd8143d3c08f5690f30e9d4e081d348c78bb0b2e8d32773c57b SHA512 
4f6b79d88687f6e6147b95bef484a1555639d65044d01812af60eb072579345b5233bcda8fba251f0685a28b756addff7468c34978b0cc04c871ce4fe30fbe2c
 WHIRLPOOL 
99a29b8c7ef475cd4599d2d9e8e28210af2a9d50b280dc9c315f16b3ae3be8b85e4da55a1c8cb6af55795b98207601307e7e846c0a8cdae6a5b4af356ff7b044

diff --git a/dev-python/rosdistro/rosdistro-0.4.2.ebuild 
b/dev-python/rosdistro/rosdistro-0.4.2.ebuild
deleted file mode 100644
index e6da9fa..000
--- a/dev-python/rosdistro/rosdistro-0.4.2.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-PYTHON_COMPAT=( python{2_7,3_3,3_4} )
-
-SCM=""
-if [ "${PV#}" != "${PV}" ] ; then
-   SCM="git-r3"
-   EGIT_REPO_URI="https://github.com/ros-infrastructure/rosdistro;
-fi
-
-inherit ${SCM} distutils-r1
-
-DESCRIPTION="Tools to work with catkinized rosdistro files"
-HOMEPAGE="http://wiki.ros.org/rosdistro;
-if [ "${PV#}" != "${PV}" ] ; then
-   SRC_URI=""
-   KEYWORDS=""
-else
-   SRC_URI="http://download.ros.org/downloads/${PN}/${P}.tar.gz
-   
http://github.com/ros-infrastructure/rosdistro/archive/${PV}.tar.gz -> 
${P}.tar.gz
-   "
-   KEYWORDS="~amd64 ~arm"
-fi
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="test"
-
-RDEPEND="
-   dev-python/catkin_pkg[${PYTHON_USEDEP}]
-   dev-python/rospkg[${PYTHON_USEDEP}]
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-   dev-python/setuptools[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-   test? (
-   dev-python/nose[${PYTHON_USEDEP}]
-   )
-"
-
-python_test() {
-   nosetests --with-xunit test || die
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/rosdistro/

2016-02-09 Thread Alexis Ballier
commit: 1d3ab7e86146e88a28d5301d1e5caefd1b0ad939
Author: Alexis Ballier  gentoo  org>
AuthorDate: Tue Feb  9 08:22:22 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Tue Feb  9 08:45:48 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d3ab7e8

dev-python/rosdistro: bump to 0.4.4

Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-python/rosdistro/Manifest   |  1 +
 dev-python/rosdistro/rosdistro-0.4.4.ebuild | 45 +
 2 files changed, 46 insertions(+)

diff --git a/dev-python/rosdistro/Manifest b/dev-python/rosdistro/Manifest
index 7f66fce..bb60f19 100644
--- a/dev-python/rosdistro/Manifest
+++ b/dev-python/rosdistro/Manifest
@@ -1 +1,2 @@
 DIST rosdistro-0.4.2.tar.gz 50857 SHA256 
3d5bf062bd0ecbfef272456f1862a6bb7a4100d8f2ac9b4ce7792dbdcfed7a84 SHA512 
24dd08a959918fa44faa465acd22bd8d157b792391a2701ee40997028ea90dd13848f72abf1098930cd4e7b8a162cea1ab28ceb0d82df74167c85c0ef014ad65
 WHIRLPOOL 
8207d60268282d9075655ec3676179b1e6a7d8b1ee571c5df90d4680f54c345175788d7abbf3c2b78504c491a7453193490574f8e68ca2bdba270b5db8983e2b
+DIST rosdistro-0.4.4.tar.gz 40001 SHA256 
1c7c6886c2e61dd8143d3c08f5690f30e9d4e081d348c78bb0b2e8d32773c57b SHA512 
4f6b79d88687f6e6147b95bef484a1555639d65044d01812af60eb072579345b5233bcda8fba251f0685a28b756addff7468c34978b0cc04c871ce4fe30fbe2c
 WHIRLPOOL 
99a29b8c7ef475cd4599d2d9e8e28210af2a9d50b280dc9c315f16b3ae3be8b85e4da55a1c8cb6af55795b98207601307e7e846c0a8cdae6a5b4af356ff7b044

diff --git a/dev-python/rosdistro/rosdistro-0.4.4.ebuild 
b/dev-python/rosdistro/rosdistro-0.4.4.ebuild
new file mode 100644
index 000..e6da9fa
--- /dev/null
+++ b/dev-python/rosdistro/rosdistro-0.4.4.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=( python{2_7,3_3,3_4} )
+
+SCM=""
+if [ "${PV#}" != "${PV}" ] ; then
+   SCM="git-r3"
+   EGIT_REPO_URI="https://github.com/ros-infrastructure/rosdistro;
+fi
+
+inherit ${SCM} distutils-r1
+
+DESCRIPTION="Tools to work with catkinized rosdistro files"
+HOMEPAGE="http://wiki.ros.org/rosdistro;
+if [ "${PV#}" != "${PV}" ] ; then
+   SRC_URI=""
+   KEYWORDS=""
+else
+   SRC_URI="http://download.ros.org/downloads/${PN}/${P}.tar.gz
+   
http://github.com/ros-infrastructure/rosdistro/archive/${PV}.tar.gz -> 
${P}.tar.gz
+   "
+   KEYWORDS="~amd64 ~arm"
+fi
+
+LICENSE="BSD"
+SLOT="0"
+IUSE="test"
+
+RDEPEND="
+   dev-python/catkin_pkg[${PYTHON_USEDEP}]
+   dev-python/rospkg[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   dev-python/setuptools[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+   test? (
+   dev-python/nose[${PYTHON_USEDEP}]
+   )
+"
+
+python_test() {
+   nosetests --with-xunit test || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/rosdistro/

2015-09-17 Thread Alexis Ballier
commit: c391c3ab3d91955620b10a91f9a1ccda9e8c665e
Author: Alexis Ballier  gentoo  org>
AuthorDate: Thu Sep 17 07:24:28 2015 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Thu Sep 17 07:24:56 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c391c3ab

dev-python/rosdistro: initial import. ebuild by me.

Package-Manager: portage-2.2.20.1

 dev-python/rosdistro/Manifest   |  1 +
 dev-python/rosdistro/metadata.xml   |  5 
 dev-python/rosdistro/rosdistro-0.4.2.ebuild | 45 +
 dev-python/rosdistro/rosdistro-.ebuild  | 45 +
 4 files changed, 96 insertions(+)

diff --git a/dev-python/rosdistro/Manifest b/dev-python/rosdistro/Manifest
new file mode 100644
index 000..7f66fce
--- /dev/null
+++ b/dev-python/rosdistro/Manifest
@@ -0,0 +1 @@
+DIST rosdistro-0.4.2.tar.gz 50857 SHA256 
3d5bf062bd0ecbfef272456f1862a6bb7a4100d8f2ac9b4ce7792dbdcfed7a84 SHA512 
24dd08a959918fa44faa465acd22bd8d157b792391a2701ee40997028ea90dd13848f72abf1098930cd4e7b8a162cea1ab28ceb0d82df74167c85c0ef014ad65
 WHIRLPOOL 
8207d60268282d9075655ec3676179b1e6a7d8b1ee571c5df90d4680f54c345175788d7abbf3c2b78504c491a7453193490574f8e68ca2bdba270b5db8983e2b

diff --git a/dev-python/rosdistro/metadata.xml 
b/dev-python/rosdistro/metadata.xml
new file mode 100644
index 000..c42ea5b
--- /dev/null
+++ b/dev-python/rosdistro/metadata.xml
@@ -0,0 +1,5 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+ros
+

diff --git a/dev-python/rosdistro/rosdistro-0.4.2.ebuild 
b/dev-python/rosdistro/rosdistro-0.4.2.ebuild
new file mode 100644
index 000..e6da9fa
--- /dev/null
+++ b/dev-python/rosdistro/rosdistro-0.4.2.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=( python{2_7,3_3,3_4} )
+
+SCM=""
+if [ "${PV#}" != "${PV}" ] ; then
+   SCM="git-r3"
+   EGIT_REPO_URI="https://github.com/ros-infrastructure/rosdistro;
+fi
+
+inherit ${SCM} distutils-r1
+
+DESCRIPTION="Tools to work with catkinized rosdistro files"
+HOMEPAGE="http://wiki.ros.org/rosdistro;
+if [ "${PV#}" != "${PV}" ] ; then
+   SRC_URI=""
+   KEYWORDS=""
+else
+   SRC_URI="http://download.ros.org/downloads/${PN}/${P}.tar.gz
+   
http://github.com/ros-infrastructure/rosdistro/archive/${PV}.tar.gz -> 
${P}.tar.gz
+   "
+   KEYWORDS="~amd64 ~arm"
+fi
+
+LICENSE="BSD"
+SLOT="0"
+IUSE="test"
+
+RDEPEND="
+   dev-python/catkin_pkg[${PYTHON_USEDEP}]
+   dev-python/rospkg[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   dev-python/setuptools[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+   test? (
+   dev-python/nose[${PYTHON_USEDEP}]
+   )
+"
+
+python_test() {
+   nosetests --with-xunit test || die
+}

diff --git a/dev-python/rosdistro/rosdistro-.ebuild 
b/dev-python/rosdistro/rosdistro-.ebuild
new file mode 100644
index 000..e6da9fa
--- /dev/null
+++ b/dev-python/rosdistro/rosdistro-.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=( python{2_7,3_3,3_4} )
+
+SCM=""
+if [ "${PV#}" != "${PV}" ] ; then
+   SCM="git-r3"
+   EGIT_REPO_URI="https://github.com/ros-infrastructure/rosdistro;
+fi
+
+inherit ${SCM} distutils-r1
+
+DESCRIPTION="Tools to work with catkinized rosdistro files"
+HOMEPAGE="http://wiki.ros.org/rosdistro;
+if [ "${PV#}" != "${PV}" ] ; then
+   SRC_URI=""
+   KEYWORDS=""
+else
+   SRC_URI="http://download.ros.org/downloads/${PN}/${P}.tar.gz
+   
http://github.com/ros-infrastructure/rosdistro/archive/${PV}.tar.gz -> 
${P}.tar.gz
+   "
+   KEYWORDS="~amd64 ~arm"
+fi
+
+LICENSE="BSD"
+SLOT="0"
+IUSE="test"
+
+RDEPEND="
+   dev-python/catkin_pkg[${PYTHON_USEDEP}]
+   dev-python/rospkg[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   dev-python/setuptools[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+   test? (
+   dev-python/nose[${PYTHON_USEDEP}]
+   )
+"
+
+python_test() {
+   nosetests --with-xunit test || die
+}