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/pram/
Date: Wed, 30 Oct 2019 08:33:03
Message-Id: 1572424375.3b636ed92b01bbe4b6981527c98e8fb9d108350b.mgorny@gentoo
1 commit: 3b636ed92b01bbe4b6981527c98e8fb9d108350b
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 30 08:29:12 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 30 08:32:55 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b636ed9
7
8 app-portage/pram: Bump to v8
9
10 This is the coolest PRam release since the last coolest release!
11 Now configuration can be specified via 'git config', so you can set
12 your preferences both globally and per-repo.
13
14 Most importantly, you can now start setting:
15
16 git config --add pram.repo gentoo/foo
17
18 on all repos you're using PRam for, and you won't have to specify
19 the repo every time!
20
21 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
22
23 app-portage/pram/Manifest | 1 +
24 app-portage/pram/pram-8.ebuild | 27 +++++++++++++++++++++++++++
25 2 files changed, 28 insertions(+)
26
27 diff --git a/app-portage/pram/Manifest b/app-portage/pram/Manifest
28 index c411a68efb3..d531fe529d7 100644
29 --- a/app-portage/pram/Manifest
30 +++ b/app-portage/pram/Manifest
31 @@ -1 +1,2 @@
32 DIST pram-7.tar.gz 7471 BLAKE2B 5152002be35755031a81dbaa61118fcab0529eb9732f134b11eb2499a539e04b8b8cb6402ee3bb39c7b7c82bc918ee4fef30e247fcdba3fe32c5457cf654e257 SHA512 42e95577802d5940a0eab8da5fd36d9eb2338eccf654260364b91990a0d8de9d56cbfde767dc60bfd3c826eb45a1b0e73af717740488af0a25ff6d8c656df93e
33 +DIST pram-8.tar.gz 7918 BLAKE2B cc5bea629e49b229622a77c585a62710234e00ae245b68cbcfbae5be538b82752e8b2e8da5ae82f571dd4d7368ecaacd1233affe975fd9e20177122808dc39cc SHA512 bbd9e7ce3207550f1651d63a045474d90c4aaf20ab0c541b2a78e6af6351f9c7bd278b649ee57ed1b3b85cbc4f38f1b98a008e791bf9d19e4ea718892544bd46
34
35 diff --git a/app-portage/pram/pram-8.ebuild b/app-portage/pram/pram-8.ebuild
36 new file mode 100644
37 index 00000000000..61c091c9c5c
38 --- /dev/null
39 +++ b/app-portage/pram/pram-8.ebuild
40 @@ -0,0 +1,27 @@
41 +# Copyright 2019 Gentoo Authors
42 +# Distributed under the terms of the GNU General Public License v2
43 +
44 +EAPI=7
45 +
46 +inherit cmake-utils
47 +
48 +DESCRIPTION="Tool to ease merging Pull Requests and git patches"
49 +HOMEPAGE="https://github.com/mgorny/pram"
50 +SRC_URI="https://github.com/mgorny/pram/archive/v${PV}.tar.gz -> ${P}.tar.gz"
51 +
52 +LICENSE="BSD-2"
53 +SLOT="0"
54 +KEYWORDS="~amd64 ~x86"
55 +IUSE="test"
56 +RESTRICT="!test? ( test )"
57 +
58 +RDEPEND="dev-vcs/git
59 + net-misc/wget[ssl]
60 + virtual/editor
61 + !dev-perl/Gentoo-App-Pram"
62 +DEPEND="
63 + test? (
64 + ${RDEPEND}
65 + app-crypt/gnupg
66 + sys-apps/diffutils
67 + )"