Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-portage/smart-live-rebuild/
Date: Tue, 31 Jul 2018 13:35:08
Message-Id: 1533044094.ffd2f6bdc0b43cc9f83242d526d6850bbadd7d26.mgorny@gentoo
1 commit: ffd2f6bdc0b43cc9f83242d526d6850bbadd7d26
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jul 31 13:33:03 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Jul 31 13:34:54 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ffd2f6bd
7
8 app-portage/smart-live-rebuild: Bump to 1.3.6
9
10 app-portage/smart-live-rebuild/Manifest | 1 +
11 .../smart-live-rebuild-1.3.6.ebuild | 34 ++++++++++++++++++++++
12 2 files changed, 35 insertions(+)
13
14 diff --git a/app-portage/smart-live-rebuild/Manifest b/app-portage/smart-live-rebuild/Manifest
15 index 8adebff4512..974fcb6a784 100644
16 --- a/app-portage/smart-live-rebuild/Manifest
17 +++ b/app-portage/smart-live-rebuild/Manifest
18 @@ -1 +1,2 @@
19 DIST smart-live-rebuild-1.3.5.tar.bz2 16004 BLAKE2B fa1fcb13c739ef15b343de3460b029a311a4c08be3ec44ff5c0c89fef4d07fde7fa5558444b25ce234d64b03465b4a401593600f3fec5cbbfba76bdc76fcca34 SHA512 46933334c8c46a056c837e60a5d8aed30a35b1ddd20d7c0f03e813f6cac11cc2dc9469674b1e9c23d94c9ebc474e5eacc7aa0e8f82492554a7f49b438ed740d2
20 +DIST smart-live-rebuild-1.3.6.tar.gz 17194 BLAKE2B a1c4f07e66ce3328ae70f88d086c33875bed68aea645a180e68fbd997051c6d398c1133d8e9c72378741fe41c519e941e76dc25d9c3f9c61c36531fe6fbe8e79 SHA512 f9fe57269654d69c3b21d0b6e378dfa3d2c00e67dae44278b2b81d631e4645346ecaeb5c9f43b77d39312b97edee247ba8b05303be903d6a3573bc226159c40f
21
22 diff --git a/app-portage/smart-live-rebuild/smart-live-rebuild-1.3.6.ebuild b/app-portage/smart-live-rebuild/smart-live-rebuild-1.3.6.ebuild
23 new file mode 100644
24 index 00000000000..9e516f44532
25 --- /dev/null
26 +++ b/app-portage/smart-live-rebuild/smart-live-rebuild-1.3.6.ebuild
27 @@ -0,0 +1,34 @@
28 +# Copyright 1999-2018 Gentoo Foundation
29 +# Distributed under the terms of the GNU General Public License v2
30 +
31 +EAPI=6
32 +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6,3_7} )
33 +
34 +inherit distutils-r1
35 +
36 +DESCRIPTION="Check live packages for updates and emerge them as necessary"
37 +HOMEPAGE="https://github.com/mgorny/smart-live-rebuild/"
38 +SRC_URI="https://github.com/mgorny/smart-live-rebuild/archive/v${PV}.tar.gz -> ${P}.tar.gz"
39 +
40 +LICENSE="BSD-2"
41 +SLOT="0"
42 +KEYWORDS="~amd64 ~arm ~mips ~x86 ~x86-fbsd"
43 +IUSE=""
44 +
45 +RDEPEND=">=app-portage/gentoopm-0.2.1[${PYTHON_USEDEP}]"
46 +
47 +# Tests need to be fixed
48 +RESTRICT=test
49 +
50 +python_test() {
51 + esetup.py test
52 +}
53 +
54 +python_install_all() {
55 + distutils-r1_python_install_all
56 +
57 + insinto /etc/portage
58 + newins smart-live-rebuild.conf{.example,}
59 + insinto /usr/share/portage/config/sets
60 + newins sets.conf.example smart-live-rebuild.conf
61 +}