public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Matthias Maier" <tamiko@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/cloc/
Date: Sun, 28 Feb 2016 05:00:59 +0000 (UTC)	[thread overview]
Message-ID: <1456635650.dd2c699ed818d06a3fef6563708f835943724bdd.tamiko@gentoo> (raw)

commit:     dd2c699ed818d06a3fef6563708f835943724bdd
Author:     Matthias Maier <tamiko <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 28 04:54:48 2016 +0000
Commit:     Matthias Maier <tamiko <AT> gentoo <DOT> org>
CommitDate: Sun Feb 28 05:00:50 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd2c699e

dev-util/cloc: version bump to 1.66

Package-Manager: portage-2.2.26

 dev-util/cloc/Manifest         |  1 +
 dev-util/cloc/cloc-1.66.ebuild | 33 +++++++++++++++++++++++++++++++++
 dev-util/cloc/metadata.xml     |  4 ++--
 3 files changed, 36 insertions(+), 2 deletions(-)

diff --git a/dev-util/cloc/Manifest b/dev-util/cloc/Manifest
index e5aea98..cbec88d 100644
--- a/dev-util/cloc/Manifest
+++ b/dev-util/cloc/Manifest
@@ -1,4 +1,5 @@
 DIST cloc-1.60.pl 344405 SHA256 4aa870bef104fd2b8f03c667ef8be2cd671cdf59f46c72046c43ed14e222a05c SHA512 569f789cb5ba4164b4f75e4953d8a5be7cd6fbb83ce0356aa0eb6d1c7d863aac91e131df79d90dbc2319c20757e9f758b55ee76390f7f4511e534c451e1a6913 WHIRLPOOL cb2b1ca35aab8eadb0335bac914e546b744c2246d1afc961eb0d683de7461f031bc12e3725d32ff0bcd29260ad2098fccd5291130d321b242797fd93b3de95cd
 DIST cloc-1.62.pl 374834 SHA256 fa3793b576895cde2acae26a49447bf0c55ab3f79bdacfb00a88fc1d255c2570 SHA512 35ad9c9722b423cfae0c81877d5541175feb9d9c61789e4dc7de7ec35a663e3c519f889c03279c39c61aaca0b7d11c8c64f1962029c76f81034a0e9588bad584 WHIRLPOOL c21f1372b5e86f61ad540fb0cddbc5a4bd96de0f448d134da3a8fcc8fa95591f24416f117a71b9b1f72d7c714bf9a9993ef7a53d3395591588446712fb271b3b
 DIST cloc-1.64.pl 408977 SHA256 79edea7ea1f442b1632001e23418193ae4571810e60de8bd25e491036d60eb3d SHA512 bed788cb77ce9ae83714fc14ca04d90d5ae73a7443e180ab815ab81b1d58737f51a8c81360eb7be756afc9d324f9dcf1174b5505b665401217231087ba9461ad WHIRLPOOL 5c56b8be65d16bdadb79950fc4fb3446f36705ea6f5d5ca13304d290e5669a9370cc7b20f60ba1c5e5c4a147d62603beb34e5829a26223efa1ae36e690916518
+DIST cloc-1.66.tar.gz 215719 SHA256 3a8a6d090e6adda9c842583eb49847d6469c65fcf8b2ccefd8e4b18dbb29524e SHA512 2f0bb2de83c6cd8eee251dbf418002301fdfa76bfda6cfbd0d746d9ea0c9d27cf3ee91110504819c4b85e0ae6c1c496fb125c3ede0d516d452cfea6af46e9473 WHIRLPOOL 96a5447d6f3ec406e596a682a418d890d581a3c5e4cb62cf797a908c20147cbe425ef4282cb30b80af79c6deaccbe9895f91904ff871729341458d113d853e01
 DIST cloc.1.pod 12468 SHA256 0e6890acd5836ec43aabed1476e2a1417ea4d454968297c68c1b782e818f979b SHA512 50b4085704c7936de9993476195570957c9c5e864f4a2dbac114ff148a813b50ccba0c6e29d5bda4c4e5cd7c7a09e314233438ddd28f0e0585db54975e602659 WHIRLPOOL 25d9b78a7a0fb88f2ff1192afd8cd5963ab61b06883874b8339a1d4fefbeac4b080d413107f06b34975cd2e7ea92e4313767f2c2aebf39e21ef7cd408bf152ae

diff --git a/dev-util/cloc/cloc-1.66.ebuild b/dev-util/cloc/cloc-1.66.ebuild
new file mode 100644
index 0000000..a1f8821
--- /dev/null
+++ b/dev-util/cloc/cloc-1.66.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils
+
+DESCRIPTION="Count Lines of Code"
+HOMEPAGE="https://github.com/AlDanial/cloc"
+SRC_URI="https://github.com/AlDanial/${PN}/releases/download/v${PV}/${P}.tar.gz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+
+DEPEND=">=dev-lang/perl-5.6"
+RDEPEND="${DEPEND}
+	dev-perl/Algorithm-Diff
+	dev-perl/regexp-common
+	virtual/perl-Digest-MD5
+	virtual/perl-Getopt-Long
+	virtual/perl-File-Spec
+	virtual/perl-File-Temp"
+
+src_compile() {
+	pod2man Unix/${PN}.1.pod > ${PN}.1 || die
+}
+
+src_install() {
+	doman ${PN}.1
+	dobin Unix/${PN}
+}

diff --git a/dev-util/cloc/metadata.xml b/dev-util/cloc/metadata.xml
index f77e31c..42bbb00 100644
--- a/dev-util/cloc/metadata.xml
+++ b/dev-util/cloc/metadata.xml
@@ -6,7 +6,7 @@
 		<name>Matthias Maier</name>
 	</maintainer>
 	<upstream>
-		<remote-id type="sourceforge">cloc</remote-id>
-		<bugs-to>http://sourceforge.net/tracker/?group_id=174787</bugs-to>
+		<remote-id type="github">AlDanial/cloc</remote-id>
+		<bugs-to>https://github.com/AlDanial/cloc/issues</bugs-to>
 	</upstream>
 </pkgmetadata>


             reply	other threads:[~2016-02-28  5:01 UTC|newest]

Thread overview: 39+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-02-28  5:00 Matthias Maier [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-04-12 19:05 [gentoo-commits] repo/gentoo:master commit in: dev-util/cloc/ Arthur Zamarin
2025-03-10  3:06 Sam James
2025-03-10  3:06 Sam James
2024-12-03  7:58 Joonas Niilola
2024-12-02 13:15 Jakov Smolić
2024-08-02  8:15 Matthias Maier
2023-01-23  2:32 Matthias Maier
2021-11-24 16:46 Sam James
2021-11-24  7:58 Agostino Sarubbo
2021-06-27 18:25 Matthias Maier
2021-06-27 18:25 Matthias Maier
2021-06-27 18:25 Matthias Maier
2021-02-28  9:03 Joonas Niilola
2021-02-25 13:54 Agostino Sarubbo
2020-12-17  9:02 Sam James
2020-12-04  5:53 Matthias Maier
2020-04-30 22:38 Matthias Maier
2020-04-30 22:38 Matthias Maier
2020-04-30 22:38 Matthias Maier
2019-07-19  7:43 Matthias Maier
2019-06-30 18:20 Matthias Maier
2019-03-02 23:46 Matthias Maier
2019-03-02 23:46 Matthias Maier
2019-03-02 23:46 Matthias Maier
2018-07-05 21:54 Matthias Maier
2018-07-03  7:44 Matthias Maier
2018-02-07  0:54 Matthias Maier
2017-04-11 20:30 Matthias Maier
2017-02-16 18:47 Michael Weber
2017-02-12 17:01 Agostino Sarubbo
2017-02-01 23:13 Matthias Maier
2017-01-27  9:07 Agostino Sarubbo
2017-01-27  9:02 Agostino Sarubbo
2017-01-26 18:58 Matthias Maier
2016-10-14  6:48 Patrice Clement
2016-08-02 11:54 Kent Fredric
2016-02-28  5:00 Matthias Maier
2016-02-28  5:00 Matthias Maier

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1456635650.dd2c699ed818d06a3fef6563708f835943724bdd.tamiko@gentoo \
    --to=tamiko@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox