Gentoo Archives: gentoo-commits

From: Virgil Dupras <vdupras@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/trash-cli/
Date: Thu, 06 Sep 2018 20:02:22
Message-Id: 1536264097.39b81ac611f10dc2a7adeafcec64720aba99f3e3.vdupras@gentoo
1 commit: 39b81ac611f10dc2a7adeafcec64720aba99f3e3
2 Author: Virgil Dupras <vdupras <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 6 19:53:37 2018 +0000
4 Commit: Virgil Dupras <vdupras <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 6 20:01:37 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39b81ac6
7
8 app-misc/trash-cli: bump to 0.17.1.14_p20170816
9
10 Patch by Alex Xu
11
12 Closes: https://bugs.gentoo.org/643488
13 Package-Manager: Portage-2.3.49, Repoman-2.3.10
14
15 app-misc/trash-cli/Manifest | 1 +
16 .../trash-cli/trash-cli-0.17.1.14_p20170816.ebuild | 29 ++++++++++++++++++++++
17 2 files changed, 30 insertions(+)
18
19 diff --git a/app-misc/trash-cli/Manifest b/app-misc/trash-cli/Manifest
20 index 65fc7ac980a..e562fe9e26b 100644
21 --- a/app-misc/trash-cli/Manifest
22 +++ b/app-misc/trash-cli/Manifest
23 @@ -1,3 +1,4 @@
24 DIST trash-cli-0.12.9.14.tar.gz 62090 BLAKE2B b227fe852aa204156b197e14e8dd34e1f9883f0dde11512842a2705ea20d781db031552f4b355096521fe720cd48d6fded74aa5d173d423bd3b6b8e77f413a1a SHA512 3846ec4e2e491b09ad93134313a875fb3e072abe3e895956b62a3e4f350c1f10dd1ded3fea0caec3fa8a6bd39f2d0a63ac6a3a070a6204fd2f27f1e447f5ba6c
25 DIST trash-cli-0.16.12.29.tar.gz 66826 BLAKE2B 0d8b56a1ac23272ea9c53b732e679ce4b92173e404afeb7611d781cebde32ff9895d751176ab038444fd5a98920ab725cca909c5920d9c28ab32408bf5fe2e84 SHA512 a8a94205233ac600a98324b95829d1f00debaca95c85c51fa12f7a65ae6f24fda58370d8fe0095bf33327cbddae7dfb02c2587efffd2d7c206c7f7cb0a59953e
26 DIST trash-cli-0.17.1.14.tar.gz 69141 BLAKE2B 028274ea2753eb3ff4bfec5929dafcf090d05938154eb20ce02559e696310a647643275a64c2278c9dd8e71442c5e32dc77a87f095c14c2bbe5f98931e627604 SHA512 29033d6e780d81ca762cb69d571c1fa8608f7e84564600d1f7a92141acecf9d7c770e7ff6dcac8f98701af4c6aec3874634eba0af0e92fc2b98ce99c5550c14d
27 +DIST trash-cli-0.17.1.14_p20170816.tar.gz 69713 BLAKE2B f995c22ba0704eba96abac2c130f9118cc98ad5c5f21903601ea60ee1f52c594b7f8b16ebcaabb4b34086f5f9f66ad02cd628c379ed5139bcb1f691016b435ab SHA512 9d35620b55c63b53b7255179a6304f4d7190c2a90f68c102f64b9616ee897460939633e9c77826968a1682fc5fa090b0f3ea1daad82a44cc96704dc54da45dcd
28
29 diff --git a/app-misc/trash-cli/trash-cli-0.17.1.14_p20170816.ebuild b/app-misc/trash-cli/trash-cli-0.17.1.14_p20170816.ebuild
30 new file mode 100644
31 index 00000000000..769a796bf48
32 --- /dev/null
33 +++ b/app-misc/trash-cli/trash-cli-0.17.1.14_p20170816.ebuild
34 @@ -0,0 +1,29 @@
35 +# Copyright 1999-2018 Gentoo Foundation
36 +# Distributed under the terms of the GNU General Public License v2
37 +
38 +EAPI=6
39 +
40 +PYTHON_COMPAT=( python2_7 python3_6 )
41 +
42 +inherit distutils-r1 vcs-snapshot
43 +
44 +GIT_REF=5abecd53e1d84f2a5fd3fc60d2f5d71e518826c5
45 +
46 +DESCRIPTION="Python scripts to manipulate trash cans via the command line"
47 +HOMEPAGE="https://github.com/andreafrancia/trash-cli"
48 +SRC_URI="https://github.com/andreafrancia/${PN}/archive/${GIT_REF}.tar.gz -> ${P}.tar.gz"
49 +
50 +LICENSE="GPL-2"
51 +SLOT="0"
52 +KEYWORDS="~amd64 ~x86"
53 +IUSE="test"
54 +
55 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
56 + test? (
57 + dev-python/nose[${PYTHON_USEDEP}]
58 + dev-python/mock[${PYTHON_USEDEP}]
59 + )"
60 +
61 +python_test() {
62 + nosetests -v || die
63 +}