Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/send2trash/
Date: Mon, 25 Jan 2016 08:31:09
Message-Id: 1453708176.7a89ba55e2b965e05cfd67747033cfb7e8b45123.jlec@gentoo
1 commit: 7a89ba55e2b965e05cfd67747033cfb7e8b45123
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jan 25 07:49:36 2016 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Mon Jan 25 07:49:36 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a89ba55
7
8 dev-python/send2trash: Add python3.5 support
9
10 Package-Manager: portage-2.2.27
11 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
12
13 dev-python/send2trash/Manifest | 2 +-
14 dev-python/send2trash/send2trash-1.3.0.ebuild | 14 +++++++++-----
15 2 files changed, 10 insertions(+), 6 deletions(-)
16
17 diff --git a/dev-python/send2trash/Manifest b/dev-python/send2trash/Manifest
18 index 379e272..471fe47 100644
19 --- a/dev-python/send2trash/Manifest
20 +++ b/dev-python/send2trash/Manifest
21 @@ -1 +1 @@
22 -DIST send2trash-1.3.0.tar.gz 5563 SHA256 33f4461eae831eb09a21b70ca202c2a6dfd83db6bafa1e1ca11b5001e22c58fe SHA512 d308dd06ef7a11ad7bcb5d9195fb52aa0c0b8e76590ef11b1576d14815501c32c48b96167eb0a325e4f27d0dbf77f41c012a128d30c8f05d9d5ebec9967e21f3 WHIRLPOOL 15d286964183ad44ae51dfed29aa97456d5460b68fd176dd021f7d093d8e6e213818df2fd4346554601b5f87ea1f95727248544e2e78094f696dd7d50d0e89cf
23 +DIST Send2Trash-1.3.0.tar.gz 5563 SHA256 33f4461eae831eb09a21b70ca202c2a6dfd83db6bafa1e1ca11b5001e22c58fe SHA512 d308dd06ef7a11ad7bcb5d9195fb52aa0c0b8e76590ef11b1576d14815501c32c48b96167eb0a325e4f27d0dbf77f41c012a128d30c8f05d9d5ebec9967e21f3 WHIRLPOOL 15d286964183ad44ae51dfed29aa97456d5460b68fd176dd021f7d093d8e6e213818df2fd4346554601b5f87ea1f95727248544e2e78094f696dd7d50d0e89cf
24
25 diff --git a/dev-python/send2trash/send2trash-1.3.0.ebuild b/dev-python/send2trash/send2trash-1.3.0.ebuild
26 index e27f139..cc38add 100644
27 --- a/dev-python/send2trash/send2trash-1.3.0.ebuild
28 +++ b/dev-python/send2trash/send2trash-1.3.0.ebuild
29 @@ -1,18 +1,22 @@
30 -# Copyright 1999-2015 Gentoo Foundation
31 +# Copyright 1999-2016 Gentoo Foundation
32 # Distributed under the terms of the GNU General Public License v2
33 # $Id$
34
35 EAPI=5
36
37 -PYTHON_COMPAT=( python2_7 python3_{3,4} pypy )
38 +PYTHON_COMPAT=( python{2_7,3_{3,4,5}} pypy )
39
40 inherit distutils-r1
41
42 MY_PN="Send2Trash"
43 +MY_P="${MY_PN}-${PV}"
44
45 DESCRIPTION="Sends files to the Trash (or Recycle Bin)"
46 -HOMEPAGE="http://hg.hardcoded.net/send2trash https://pypi.python.org/pypi/Send2Trash https://github.com/hsoft/send2trash"
47 -SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz"
48 +HOMEPAGE="
49 + http://hg.hardcoded.net/send2trash
50 + https://pypi.python.org/pypi/Send2Trash
51 + https://github.com/hsoft/send2trash"
52 +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
53
54 SLOT="0"
55 LICENSE="BSD"
56 @@ -23,4 +27,4 @@ RDEPEND=""
57 DEPEND="${RDEPEND}
58 dev-python/setuptools[${PYTHON_USEDEP}]"
59
60 -S="${WORKDIR}"/${MY_PN}-${PV}
61 +S="${WORKDIR}"/${MY_P}