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/mgorny-dev-scripts/
Date: Sat, 02 Apr 2022 22:04:54
Message-Id: 1648937086.ed3621f02c0d319da63e3f1dbc5e0fc8a7195867.mgorny@gentoo
1 commit: ed3621f02c0d319da63e3f1dbc5e0fc8a7195867
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 2 22:04:32 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 2 22:04:46 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed3621f0
7
8 app-portage/mgorny-dev-scripts: Bump to v15
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 app-portage/mgorny-dev-scripts/Manifest | 1 +
13 .../mgorny-dev-scripts-15.ebuild | 29 ++++++++++++++++++++++
14 2 files changed, 30 insertions(+)
15
16 diff --git a/app-portage/mgorny-dev-scripts/Manifest b/app-portage/mgorny-dev-scripts/Manifest
17 index bdc1a6da0d6b..6856826a1190 100644
18 --- a/app-portage/mgorny-dev-scripts/Manifest
19 +++ b/app-portage/mgorny-dev-scripts/Manifest
20 @@ -1,2 +1,3 @@
21 DIST mgorny-dev-scripts-13.tar.gz 8162 BLAKE2B 0ac4b8d61119b64d3d6420861ac466f975606972e5274be76a3a66210536783077ab4c066167553e11d5f913ea32ce49536f6757e2b806a355f85e2698c858f9 SHA512 53bb2fcc99f9bd048adf14b6b760a1293bb87e5b48ec1959d3037cd2b8a09583150309632451444e6048abfe9296f3a63346720c4a5de6c6103a9807f13874cc
22 DIST mgorny-dev-scripts-14.tar.gz 10869 BLAKE2B 674f20874b1815d6c5e2e507f33e86da8dce5c2024cc77b66a47bfd0203718ae149729c3ed5d70714f89e5e754b3b68f2d0c2f0cbc40505e51fc2d352e823e7c SHA512 57822f981db90b9e4b1ea14a6117e14ab8d6668b6d01e63c719637b870e5ddae3c1fd9bf7aed27618c42c12df8c40476c96de36d6c753dfbae92a1d0bf7d3b8b
23 +DIST mgorny-dev-scripts-15.tar.gz 11310 BLAKE2B 118221dd081c90d6a498d95626d206df7b6e064a63f9330f8c8a140c8cc7a689797de33229ab4baa4bb476045db63eb1dcbb868e96929a89f31076c0a5d81ac8 SHA512 50b9e9992def0ae9d231977a48ac8f550835d04b63473256a22eb85bbdee27aed047bd868890bd5861fa91904b198806c563e928c1df1fd1dc0de661ee098944
24
25 diff --git a/app-portage/mgorny-dev-scripts/mgorny-dev-scripts-15.ebuild b/app-portage/mgorny-dev-scripts/mgorny-dev-scripts-15.ebuild
26 new file mode 100644
27 index 000000000000..0ada4ceeb0dc
28 --- /dev/null
29 +++ b/app-portage/mgorny-dev-scripts/mgorny-dev-scripts-15.ebuild
30 @@ -0,0 +1,29 @@
31 +# Copyright 2019-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +DESCRIPTION="Handy scripts for ebuild development and more"
37 +HOMEPAGE="https://github.com/mgorny/mgorny-dev-scripts"
38 +SRC_URI="https://github.com/mgorny/mgorny-dev-scripts/archive/v${PV}.tar.gz -> ${P}.tar.gz"
39 +
40 +LICENSE="BSD-2"
41 +SLOT="0"
42 +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 ~x64-macos"
43 +
44 +RDEPEND="
45 + app-portage/gentoolkit
46 + dev-perl/URI
47 + dev-util/pkgcheck
48 + dev-vcs/git
49 + net-misc/wget
50 + sys-apps/portage
51 + x11-misc/xdg-utils
52 + !dev-util/pkgdiff
53 +"
54 +
55 +src_install() {
56 + dodoc README.rst
57 + rm -f COPYING README.rst || die
58 + dobin *
59 +}