Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyusb/
Date: Mon, 05 Sep 2016 21:35:20
Message-Id: 1473111300.f08cbfb3e430638e375e8a64c4122848dd7ecbe2.mrueg@gentoo
1 commit: f08cbfb3e430638e375e8a64c4122848dd7ecbe2
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 5 21:34:43 2016 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 5 21:35:00 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f08cbfb3
7
8 dev-python/pyusb: Version bump to 1.0.0, add python3_5
9
10 Package-Manager: portage-2.3.0
11
12 dev-python/pyusb/Manifest | 1 +
13 dev-python/pyusb/pyusb-1.0.0.ebuild | 26 ++++++++++++++++++++++++++
14 2 files changed, 27 insertions(+)
15
16 diff --git a/dev-python/pyusb/Manifest b/dev-python/pyusb/Manifest
17 index c777474..5e24f1f 100644
18 --- a/dev-python/pyusb/Manifest
19 +++ b/dev-python/pyusb/Manifest
20 @@ -1 +1,2 @@
21 +DIST PyUSB-1.0.0.tar.gz 52559 SHA256 5b34ffa74ac34f330bff949c94ee00ec4a9d147234db17ee2eed2a67c0275368 SHA512 a66cd9e3c95d0ee0959667866101f089d5ba5d425a930cc32fdf679f8c1fde8681aaf464efc96cbdad99fbae9f72086c4704f857c757b12e4ce2016e3451dcc0 WHIRLPOOL c93d3bb289646fc06bebadb7d2d5677d685e49756bbcd4ebf01e0eaec30620fbb3f7d925d3f11b9c8cb1d1af87fb357c27f0266c86b83a2c30aa001787f994ac
22 DIST pyusb-1.0.0b2.tar.gz 57747 SHA256 14ec66077bdcd6f1aa9e892a0a35a54bb3c1ec56aa740ead64349c18f0186d19 SHA512 8a69f6cb3e2876a52c1caa0854e98586cf6d7e01225b132b4d37b92814727ae66398282aedbe5e521c509dc3ee6dfc5799b9f22890be7c7a387eb427921cd73b WHIRLPOOL 45c70c339490789e2e1195a8b040358380e5e22438e58344e40b42c795a276d6e30c3efc452791ffe4093287c9d01f44d47be25c07fba925c9198c8f630149ba
23
24 diff --git a/dev-python/pyusb/pyusb-1.0.0.ebuild b/dev-python/pyusb/pyusb-1.0.0.ebuild
25 new file mode 100644
26 index 00000000..5b7a4eb
27 --- /dev/null
28 +++ b/dev-python/pyusb/pyusb-1.0.0.ebuild
29 @@ -0,0 +1,26 @@
30 +# Copyright 1999-2016 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=5
35 +PYTHON_COMPAT=( python{2_7,3_4,3_5} )
36 +
37 +inherit distutils-r1
38 +
39 +MY_P=PyUSB-${PV}
40 +
41 +DESCRIPTION="USB support for Python"
42 +HOMEPAGE="http://walac.github.io/pyusb/"
43 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
44 +
45 +LICENSE="BSD"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~arm ~ppc ~x86"
48 +IUSE=""
49 +
50 +### This version is compatible with both 0.X and 1.X versions of libusb
51 +DEPEND="virtual/libusb:=
52 + dev-python/setuptools[${PYTHON_USEDEP}]"
53 +RDEPEND="${DEPEND}"
54 +
55 +DOCS="README.rst docs/tutorial.rst"