Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/cloc/
Date: Sun, 28 Feb 2021 09:03:28
Message-Id: 1614502988.25bc699ef618c19da6b419fba013fbb9f35fc649.juippis@gentoo
1 commit: 25bc699ef618c19da6b419fba013fbb9f35fc649
2 Author: Florian Förster <foerster.florianjr <AT> gmail <DOT> com>
3 AuthorDate: Tue Feb 23 07:22:16 2021 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 28 09:03:08 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25bc699e
7
8 dev-util/cloc: version bump to 1.88
9
10 Signed-off-by: Florian Förster <foerster.florianjr <AT> gmail.com>
11 Closes: https://bugs.gentoo.org/772125
12 Package-Manager: Portage-3.0.13, Repoman-3.0.2
13 Closes: https://github.com/gentoo/gentoo/pull/19611
14 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
15
16 dev-util/cloc/Manifest | 1 +
17 dev-util/cloc/cloc-1.88.ebuild | 31 +++++++++++++++++++++++++++++++
18 2 files changed, 32 insertions(+)
19
20 diff --git a/dev-util/cloc/Manifest b/dev-util/cloc/Manifest
21 index 474acfcf27d..f115efbb60e 100644
22 --- a/dev-util/cloc/Manifest
23 +++ b/dev-util/cloc/Manifest
24 @@ -1,2 +1,3 @@
25 DIST cloc-1.84.tar.gz 514868 BLAKE2B 53fa0f0d2c8033619f9f7202802e5fd51013c459bbeed8482a35050be69981e60f3c96879cc2853d509322933050fda52fe17be7ec393783f06a0df5e9cec785 SHA512 85f8af041b0ca858c21e28d3fb7cd9201264afa9e12bd3a14b15a8af3e6e68378dbb02a39dc12140bcbb104424cf38bfa602d2a0683e8c89fa50cbdcf7556b3a
26 DIST cloc-1.86.tar.gz 536828 BLAKE2B f584da0e25ae755a1450117774ec8fdb87eb693ac77473929a52e617713391eb4bffc2f6b74bbcd5b01f6e2c0d747221e3f7c4e74dfd6131d3cde10a3a102daa SHA512 fe6101404f5884d11bf73de43bd25e533b04a70707b95e4e9482b51413aed46ddb55beaa27e3d25cd7604394a739f7cac6c1f8695cd9cab3f23adf6e27171719
27 +DIST cloc-1.88.tar.gz 548402 BLAKE2B 0da417d907703e42c9c69e46f39792652e6eca49994a8008b0074899bfb999262d529432ab1e8a1c7cc80dc1fefc9514596f099a4238c4768618057ba3b180e8 SHA512 0acd152b387d3088d8bd35d121677d00accb03f882d83bfb34924915d40700b0c23bca1bde924d1999b5fa910503d33af230567fcc8f452f7d00a69caaaf8c4f
28
29 diff --git a/dev-util/cloc/cloc-1.88.ebuild b/dev-util/cloc/cloc-1.88.ebuild
30 new file mode 100644
31 index 00000000000..816f8e40db4
32 --- /dev/null
33 +++ b/dev-util/cloc/cloc-1.88.ebuild
34 @@ -0,0 +1,31 @@
35 +# Copyright 1999-2021 Gentoo Authors
36 +# Distributed under the terms of the GNU General Public License v2
37 +
38 +EAPI=7
39 +
40 +DESCRIPTION="Count Lines of Code"
41 +HOMEPAGE="https://github.com/AlDanial/cloc"
42 +SRC_URI="https://github.com/AlDanial/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
43 +
44 +LICENSE="GPL-2+"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
47 +
48 +DEPEND="dev-lang/perl"
49 +RDEPEND="${DEPEND}
50 + dev-perl/Algorithm-Diff
51 + dev-perl/Parallel-ForkManager
52 + dev-perl/Regexp-Common
53 + virtual/perl-Digest-MD5
54 + virtual/perl-File-Spec
55 + virtual/perl-File-Temp
56 + virtual/perl-Getopt-Long"
57 +
58 +src_compile() {
59 + pod2man "Unix/${PN}.1.pod" > "${PN}.1" || die
60 +}
61 +
62 +src_install() {
63 + doman "${PN}.1"
64 + dobin "Unix/${PN}"
65 +}