public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-util/numdiff/
@ 2017-05-26 16:06 Matthias Maier
  0 siblings, 0 replies; 4+ messages in thread
From: Matthias Maier @ 2017-05-26 16:06 UTC (permalink / raw
  To: gentoo-commits

commit:     ac11add67bae4ccced3e579c8db38e5a91644ae8
Author:     Matthias Maier <tamiko <AT> gentoo <DOT> org>
AuthorDate: Fri May 26 16:05:49 2017 +0000
Commit:     Matthias Maier <tamiko <AT> gentoo <DOT> org>
CommitDate: Fri May 26 16:05:49 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac11add6

dev-util/numdiff: Initial commit, move from science overlay

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 dev-util/numdiff/Manifest             |  1 +
 dev-util/numdiff/metadata.xml         | 19 +++++++++++++++++
 dev-util/numdiff/numdiff-5.9.0.ebuild | 40 +++++++++++++++++++++++++++++++++++
 3 files changed, 60 insertions(+)

diff --git a/dev-util/numdiff/Manifest b/dev-util/numdiff/Manifest
new file mode 100644
index 00000000000..1f4f0ff9695
--- /dev/null
+++ b/dev-util/numdiff/Manifest
@@ -0,0 +1 @@
+DIST numdiff-5.9.0.tar.gz 915117 SHA256 87284a117944723eebbf077f857a0a114d818f8b5b54d289d59e73581194f5ef SHA512 7be7aad30afbb2a964046815807be0d9149edd18364660443220ce7032248cf83bf840eaf89e19193c8c68ad075cfa81759301574ed73151526e4eea34d33f86 WHIRLPOOL b3fd89d4d4941dc2097aaef64b4a154618b1fdf6ebe72286f36b52464fd2fe222ae171401923ed96371244a00e584d4030a9c5f3bcfb67e2dc6164a4736406c7

diff --git a/dev-util/numdiff/metadata.xml b/dev-util/numdiff/metadata.xml
new file mode 100644
index 00000000000..67838213dfc
--- /dev/null
+++ b/dev-util/numdiff/metadata.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <maintainer type="person">
+    <email>tamiko@gentoo.org</email>
+    <name>Matthias Maier</name>
+  </maintainer>
+  <maintainer type="project">
+    <email>sci@gentoo.org</email>
+    <name>Gentoo Science Project</name>
+  </maintainer>
+  <longdescription>
+  numdiff is a program that can be used to compare putatively similar files
+  line by line and field by field, ignoring small numeric differences
+  or/and different numeric formats. Equivalently, numdiff is a program with
+  the capability to appropriately compare files containing numerical fields
+  (and not only).
+</longdescription>
+</pkgmetadata>

diff --git a/dev-util/numdiff/numdiff-5.9.0.ebuild b/dev-util/numdiff/numdiff-5.9.0.ebuild
new file mode 100644
index 00000000000..5645f7f9875
--- /dev/null
+++ b/dev-util/numdiff/numdiff-5.9.0.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="File comparision, ignoring small numeric differences and formats"
+HOMEPAGE="http://www.nongnu.org/numdiff/"
+SRC_URI="http://savannah.nongnu.org/download/numdiff/${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="+nls +gmp"
+
+RDEPEND="
+	gmp? ( dev-libs/gmp:0 )
+	nls? ( sys-devel/gettext )
+	!dev-util/ndiff"
+
+DEPEND="${RDEPEND}"
+
+src_configure() {
+	local myeconfargs=(
+		$(use_enable gmp)
+		$(use_enable nls)
+	    --enable-optimization
+	)
+	econf ${myeconfargs[@]}
+}
+
+src_install() {
+	default
+
+	# Remove some empty folders:
+	rm -r "${ED}"/usr/share/locale || die
+
+	#Fix up wrong installation paths:
+	mv "${ED}"/usr/share/doc/${P}/{numdiff/numdiff.{html,pdf,txt*},} || die
+	rm -r "${ED}"/usr/share/doc/${P}/numdiff || die
+}


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-util/numdiff/
@ 2019-07-01 19:23 Thomas Deutschmann
  0 siblings, 0 replies; 4+ messages in thread
From: Thomas Deutschmann @ 2019-07-01 19:23 UTC (permalink / raw
  To: gentoo-commits

commit:     d310345f51dd9061a5bf69edb403d333255c403a
Author:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Mon Jul  1 18:42:03 2019 +0000
Commit:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Mon Jul  1 18:42:03 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d310345f

dev-util/numdiff: x86 stable (bug #689066)

Package-Manager: Portage-2.3.68, Repoman-2.3.16
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>

 dev-util/numdiff/numdiff-5.9.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-util/numdiff/numdiff-5.9.0.ebuild b/dev-util/numdiff/numdiff-5.9.0.ebuild
index 223601ad7bf..78603d7846f 100644
--- a/dev-util/numdiff/numdiff-5.9.0.ebuild
+++ b/dev-util/numdiff/numdiff-5.9.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -11,7 +11,7 @@ SRC_URI="http://savannah.nongnu.org/download/numdiff/${P}.tar.gz"
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="+nls +gmp"
 
 RDEPEND="


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-util/numdiff/
@ 2019-07-02 10:33 Agostino Sarubbo
  0 siblings, 0 replies; 4+ messages in thread
From: Agostino Sarubbo @ 2019-07-02 10:33 UTC (permalink / raw
  To: gentoo-commits

commit:     f9bd6b9d226ce9be82de2e6a074599cea44f463c
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Tue Jul  2 10:32:01 2019 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Tue Jul  2 10:32:01 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9bd6b9d

dev-util/numdiff: amd64 stable wrt bug #689066

Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

 dev-util/numdiff/numdiff-5.9.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/numdiff/numdiff-5.9.0.ebuild b/dev-util/numdiff/numdiff-5.9.0.ebuild
index 78603d7846f..aeea42ca7bb 100644
--- a/dev-util/numdiff/numdiff-5.9.0.ebuild
+++ b/dev-util/numdiff/numdiff-5.9.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://savannah.nongnu.org/download/numdiff/${P}.tar.gz"
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 IUSE="+nls +gmp"
 
 RDEPEND="


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-util/numdiff/
@ 2020-02-09 13:14 David Seifert
  0 siblings, 0 replies; 4+ messages in thread
From: David Seifert @ 2020-02-09 13:14 UTC (permalink / raw
  To: gentoo-commits

commit:     df6bbfb87d4ec44633f306ec9815922fa447cebe
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sun Feb  9 13:13:31 2020 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Feb  9 13:13:31 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df6bbfb8

dev-util/numdiff: [QA] Fix NonexistentBlocker

Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 dev-util/numdiff/numdiff-5.9.0.ebuild | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/dev-util/numdiff/numdiff-5.9.0.ebuild b/dev-util/numdiff/numdiff-5.9.0.ebuild
index aeea42ca7bb..ed9dec004b3 100644
--- a/dev-util/numdiff/numdiff-5.9.0.ebuild
+++ b/dev-util/numdiff/numdiff-5.9.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -6,8 +6,8 @@ EAPI=6
 inherit autotools
 
 DESCRIPTION="File comparision, ignoring small numeric differences and formats"
-HOMEPAGE="http://www.nongnu.org/numdiff/"
-SRC_URI="http://savannah.nongnu.org/download/numdiff/${P}.tar.gz"
+HOMEPAGE="https://www.nongnu.org/numdiff/"
+SRC_URI="https://savannah.nongnu.org/download/numdiff/${P}.tar.gz"
 
 LICENSE="GPL-3+"
 SLOT="0"
@@ -16,8 +16,7 @@ IUSE="+nls +gmp"
 
 RDEPEND="
 	gmp? ( dev-libs/gmp:0= )
-	nls? ( sys-devel/gettext )
-	!dev-util/ndiff"
+	nls? ( sys-devel/gettext )"
 DEPEND="${RDEPEND}"
 
 PATCHES=(


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-02-09 13:14 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-05-26 16:06 [gentoo-commits] repo/gentoo:master commit in: dev-util/numdiff/ Matthias Maier
  -- strict thread matches above, loose matches on Subject: below --
2019-07-01 19:23 Thomas Deutschmann
2019-07-02 10:33 Agostino Sarubbo
2020-02-09 13:14 David Seifert

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox