* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/cliquer/
@ 2020-01-31 15:45 Michael Orlitzky
0 siblings, 0 replies; 8+ messages in thread
From: Michael Orlitzky @ 2020-01-31 15:45 UTC (permalink / raw
To: gentoo-commits
commit: daa32852c893f9facda0caf23e27768dfcb8b06d
Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 30 21:19:49 2020 +0000
Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Fri Jan 31 15:42:33 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=daa32852
sci-mathematics/cliquer: new package of graph clique-finding routines.
This is a straightforward import of the cliquer package from the
sage-on-gentoo overlay, where it was maintained by François Bissey,
with minor changes:
* Update to EAPI=7.
* Add the original cliquer homepage to HOMEPAGE.
* Use the SageMath upstream tarball and drop autotools.eclass.
Technically we are packaging Dima Pasechnik's "autocliquer" fork of
cliquer, but the only difference between the two is an autotools build
system that makes our lives oh so much easier.
Closes: https://bugs.gentoo.org/707522
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>
sci-mathematics/cliquer/Manifest | 1 +
sci-mathematics/cliquer/cliquer-1.21.ebuild | 29 +++++++++++++++++++++++++++++
sci-mathematics/cliquer/metadata.xml | 24 ++++++++++++++++++++++++
3 files changed, 54 insertions(+)
diff --git a/sci-mathematics/cliquer/Manifest b/sci-mathematics/cliquer/Manifest
new file mode 100644
index 00000000000..587ee4b6b0e
--- /dev/null
+++ b/sci-mathematics/cliquer/Manifest
@@ -0,0 +1 @@
+DIST cliquer-1.21.tar.gz 412440 BLAKE2B 0a4f31f6b005822271c67ab2f2532809b112a5ceb7aaf828b06bf6ca4cadfb836d3c1f6b70187908104c2eefedeececad6b020cde2d198141dc69801d5b1ce81 SHA512 2f72a649cfef46ef07cc3817a704fbfcda910b0b0a419deb361b2aa18437e4689a8b965e0e364a5d9ae391ba8591e022a0dc414b21c9102094ad28fb2f1b15a8
diff --git a/sci-mathematics/cliquer/cliquer-1.21.ebuild b/sci-mathematics/cliquer/cliquer-1.21.ebuild
new file mode 100644
index 00000000000..e1d639781d6
--- /dev/null
+++ b/sci-mathematics/cliquer/cliquer-1.21.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="C routines for finding cliques in an arbitrary weighted graph"
+
+# autocliquer is a fork of cliquer (whose last release was in 2010) by
+# one of the SageMath developers with an autotools build system.
+HOMEPAGE="https://users.aalto.fi/~pat/cliquer.html
+ https://github.com/dimpase/autocliquer"
+
+# The github tarball doesn't contain the generated autotools files (like
+# the ./configure script).
+SRC_URI="http://files.sagemath.org/spkg/upstream/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="static-libs"
+
+src_configure(){
+ econf $(use_enable static-libs static)
+}
+
+src_install(){
+ default
+ find "${ED}" -name '*.la' -delete || die
+}
diff --git a/sci-mathematics/cliquer/metadata.xml b/sci-mathematics/cliquer/metadata.xml
new file mode 100644
index 00000000000..94aafb3a9ea
--- /dev/null
+++ b/sci-mathematics/cliquer/metadata.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>mjo@gentoo.org</email>
+ </maintainer>
+ <!--
+ mjo: François maintained this package in the sage-on-gentoo overlay
+ long before I moved it into ::gentoo. You don't need an ACK from me
+ to merge his changes.
+ -->
+ <maintainer type="person">
+ <email>frp.bissey@gmail.com</email>
+ <name>François Bissey</name>
+ </maintainer>
+ <maintainer type="project">
+ <email>proxy-maint@gentoo.org</email>
+ <name>Proxy Maintainers</name>
+ </maintainer>
+
+ <upstream>
+ <remote-id type="github">dimpase/autocliquer</remote-id>
+ </upstream>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/cliquer/
@ 2021-02-28 14:47 Michael Orlitzky
0 siblings, 0 replies; 8+ messages in thread
From: Michael Orlitzky @ 2021-02-28 14:47 UTC (permalink / raw
To: gentoo-commits
commit: 77f0f0625f0c77a9ac6bf012d8a3b1085fa9d007
Author: François Bissey <frp.bissey <AT> gmail <DOT> com>
AuthorDate: Sun Feb 28 08:18:54 2021 +0000
Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Sun Feb 28 14:43:41 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77f0f062
sci-mathematics/cliquer: upstream bump
Closes: https://github.com/gentoo/gentoo/pull/19705
Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: François René Pierre Bissey <frp.bissey <AT> gmail.com>
Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>
sci-mathematics/cliquer/Manifest | 1 +
sci-mathematics/cliquer/cliquer-1.22.ebuild | 29 +++++++++++++++++++++++++++++
2 files changed, 30 insertions(+)
diff --git a/sci-mathematics/cliquer/Manifest b/sci-mathematics/cliquer/Manifest
index 587ee4b6b0e..5164091edcb 100644
--- a/sci-mathematics/cliquer/Manifest
+++ b/sci-mathematics/cliquer/Manifest
@@ -1 +1,2 @@
DIST cliquer-1.21.tar.gz 412440 BLAKE2B 0a4f31f6b005822271c67ab2f2532809b112a5ceb7aaf828b06bf6ca4cadfb836d3c1f6b70187908104c2eefedeececad6b020cde2d198141dc69801d5b1ce81 SHA512 2f72a649cfef46ef07cc3817a704fbfcda910b0b0a419deb361b2aa18437e4689a8b965e0e364a5d9ae391ba8591e022a0dc414b21c9102094ad28fb2f1b15a8
+DIST cliquer-1.22.tar.gz 416433 BLAKE2B 3f43d443b1ecfef599213da99ffa15b5077392dd8d1bebdd0f5db73898d1fe997d6eabe6dbdb29852d40355228f082cfa7e3198be90dc9166965b90f062cae69 SHA512 3285cb0a3987ff730d9f9b25419a98201f399daf28444179ba8902211ddda87adcc7189f5b94f062d0648039a1b6217b80c8db482887d7dc8552b20459eff861
diff --git a/sci-mathematics/cliquer/cliquer-1.22.ebuild b/sci-mathematics/cliquer/cliquer-1.22.ebuild
new file mode 100644
index 00000000000..03f84005300
--- /dev/null
+++ b/sci-mathematics/cliquer/cliquer-1.22.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="C routines for finding cliques in an arbitrary weighted graph"
+
+# autocliquer is a fork of cliquer (whose last release was in 2010) by
+# one of the SageMath developers with an autotools build system.
+HOMEPAGE="https://users.aalto.fi/~pat/cliquer.html
+ https://github.com/dimpase/autocliquer"
+
+# The github tarball doesn't contain the generated autotools files (like
+# the ./configure script).
+SRC_URI="http://files.sagemath.org/spkg/upstream/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="static-libs"
+
+src_configure() {
+ econf $(use_enable static-libs static)
+}
+
+src_install() {
+ default
+ find "${ED}" -name '*.la' -delete || die
+}
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/cliquer/
@ 2021-11-02 15:47 Sam James
0 siblings, 0 replies; 8+ messages in thread
From: Sam James @ 2021-11-02 15:47 UTC (permalink / raw
To: gentoo-commits
commit: 6d70be4a7304dcc2bde258fd17be22cd54439cd3
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 2 15:46:50 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Nov 2 15:46:50 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d70be4a
sci-mathematics/cliquer: Stabilize 1.22 x86, #821316
Signed-off-by: Sam James <sam <AT> gentoo.org>
sci-mathematics/cliquer/cliquer-1.22.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sci-mathematics/cliquer/cliquer-1.22.ebuild b/sci-mathematics/cliquer/cliquer-1.22.ebuild
index 55baccfe830..32067508f41 100644
--- a/sci-mathematics/cliquer/cliquer-1.22.ebuild
+++ b/sci-mathematics/cliquer/cliquer-1.22.ebuild
@@ -16,7 +16,7 @@ SRC_URI="http://files.sagemath.org/spkg/upstream/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
IUSE="static-libs"
src_configure() {
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/cliquer/
@ 2021-11-02 15:47 Sam James
0 siblings, 0 replies; 8+ messages in thread
From: Sam James @ 2021-11-02 15:47 UTC (permalink / raw
To: gentoo-commits
commit: 8dc646788ffc41ead4d1c805a901abfb30fafcf2
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 2 15:46:24 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Nov 2 15:46:24 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8dc64678
sci-mathematics/cliquer: Stabilize 1.22 amd64, #821316
Signed-off-by: Sam James <sam <AT> gentoo.org>
sci-mathematics/cliquer/cliquer-1.22.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sci-mathematics/cliquer/cliquer-1.22.ebuild b/sci-mathematics/cliquer/cliquer-1.22.ebuild
index 03f84005300..55baccfe830 100644
--- a/sci-mathematics/cliquer/cliquer-1.22.ebuild
+++ b/sci-mathematics/cliquer/cliquer-1.22.ebuild
@@ -16,7 +16,7 @@ SRC_URI="http://files.sagemath.org/spkg/upstream/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
IUSE="static-libs"
src_configure() {
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/cliquer/
@ 2021-11-02 18:13 Michael Orlitzky
0 siblings, 0 replies; 8+ messages in thread
From: Michael Orlitzky @ 2021-11-02 18:13 UTC (permalink / raw
To: gentoo-commits
commit: 01279c87f88a60c7d00c7f1fab0e8528ac6e8e5b
Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 2 18:12:10 2021 +0000
Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Tue Nov 2 18:12:10 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01279c87
sci-mathematics/cliquer: remove old "unused" cliquer-1.21.ebuild.
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>
sci-mathematics/cliquer/Manifest | 1 -
sci-mathematics/cliquer/cliquer-1.21.ebuild | 29 -----------------------------
2 files changed, 30 deletions(-)
diff --git a/sci-mathematics/cliquer/Manifest b/sci-mathematics/cliquer/Manifest
index 5164091edcb..efd65b05c80 100644
--- a/sci-mathematics/cliquer/Manifest
+++ b/sci-mathematics/cliquer/Manifest
@@ -1,2 +1 @@
-DIST cliquer-1.21.tar.gz 412440 BLAKE2B 0a4f31f6b005822271c67ab2f2532809b112a5ceb7aaf828b06bf6ca4cadfb836d3c1f6b70187908104c2eefedeececad6b020cde2d198141dc69801d5b1ce81 SHA512 2f72a649cfef46ef07cc3817a704fbfcda910b0b0a419deb361b2aa18437e4689a8b965e0e364a5d9ae391ba8591e022a0dc414b21c9102094ad28fb2f1b15a8
DIST cliquer-1.22.tar.gz 416433 BLAKE2B 3f43d443b1ecfef599213da99ffa15b5077392dd8d1bebdd0f5db73898d1fe997d6eabe6dbdb29852d40355228f082cfa7e3198be90dc9166965b90f062cae69 SHA512 3285cb0a3987ff730d9f9b25419a98201f399daf28444179ba8902211ddda87adcc7189f5b94f062d0648039a1b6217b80c8db482887d7dc8552b20459eff861
diff --git a/sci-mathematics/cliquer/cliquer-1.21.ebuild b/sci-mathematics/cliquer/cliquer-1.21.ebuild
deleted file mode 100644
index f08e11fbb5b..00000000000
--- a/sci-mathematics/cliquer/cliquer-1.21.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="C routines for finding cliques in an arbitrary weighted graph"
-
-# autocliquer is a fork of cliquer (whose last release was in 2010) by
-# one of the SageMath developers with an autotools build system.
-HOMEPAGE="https://users.aalto.fi/~pat/cliquer.html
- https://github.com/dimpase/autocliquer"
-
-# The github tarball doesn't contain the generated autotools files (like
-# the ./configure script).
-SRC_URI="http://files.sagemath.org/spkg/upstream/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="static-libs"
-
-src_configure() {
- econf $(use_enable static-libs static)
-}
-
-src_install() {
- default
- find "${ED}" -name '*.la' -delete || die
-}
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/cliquer/
@ 2021-11-29 7:36 Arthur Zamarin
0 siblings, 0 replies; 8+ messages in thread
From: Arthur Zamarin @ 2021-11-29 7:36 UTC (permalink / raw
To: gentoo-commits
commit: b15ab6493ca57432474cc117e33c0503aecc1ab6
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 29 07:36:08 2021 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon Nov 29 07:36:35 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b15ab649
sci-mathematics/cliquer: Keyword 1.22 arm, #826706
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
sci-mathematics/cliquer/cliquer-1.22.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sci-mathematics/cliquer/cliquer-1.22.ebuild b/sci-mathematics/cliquer/cliquer-1.22.ebuild
index 32067508f419..45bb7354a402 100644
--- a/sci-mathematics/cliquer/cliquer-1.22.ebuild
+++ b/sci-mathematics/cliquer/cliquer-1.22.ebuild
@@ -16,7 +16,7 @@ SRC_URI="http://files.sagemath.org/spkg/upstream/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="amd64 ~arm x86"
IUSE="static-libs"
src_configure() {
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/cliquer/
@ 2021-12-29 13:46 Yixun Lan
0 siblings, 0 replies; 8+ messages in thread
From: Yixun Lan @ 2021-12-29 13:46 UTC (permalink / raw
To: gentoo-commits
commit: 2381a23517b57aff6553675dacbe840bd3a97664
Author: Alex Fan <alex.fan.q <AT> gmail <DOT> com>
AuthorDate: Tue Dec 28 10:19:13 2021 +0000
Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Wed Dec 29 13:40:04 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2381a235
sci-mathematics/cliquer: keyword 1.22 for ~riscv
Signed-off-by: Alex Fan <alex.fan.q <AT> gmail.com>
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>
sci-mathematics/cliquer/cliquer-1.22.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sci-mathematics/cliquer/cliquer-1.22.ebuild b/sci-mathematics/cliquer/cliquer-1.22.ebuild
index 45bb7354a402..427fd6eb269c 100644
--- a/sci-mathematics/cliquer/cliquer-1.22.ebuild
+++ b/sci-mathematics/cliquer/cliquer-1.22.ebuild
@@ -16,7 +16,7 @@ SRC_URI="http://files.sagemath.org/spkg/upstream/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 ~arm x86"
+KEYWORDS="amd64 ~arm ~riscv x86"
IUSE="static-libs"
src_configure() {
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/cliquer/
@ 2023-11-22 22:26 Michael Orlitzky
0 siblings, 0 replies; 8+ messages in thread
From: Michael Orlitzky @ 2023-11-22 22:26 UTC (permalink / raw
To: gentoo-commits
commit: 62e1257283e9a7135b1913d15f8a3e7e183fd9c7
Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 22 22:25:56 2023 +0000
Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Wed Nov 22 22:25:56 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62e12572
sci-mathematics/cliquer: update LICENSE
Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>
sci-mathematics/cliquer/cliquer-1.22.ebuild | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/sci-mathematics/cliquer/cliquer-1.22.ebuild b/sci-mathematics/cliquer/cliquer-1.22.ebuild
index bbe8fb416f02..b9ec80218fbc 100644
--- a/sci-mathematics/cliquer/cliquer-1.22.ebuild
+++ b/sci-mathematics/cliquer/cliquer-1.22.ebuild
@@ -14,7 +14,8 @@ HOMEPAGE="https://users.aalto.fi/~pat/cliquer.html
# the ./configure script).
SRC_URI="http://files.sagemath.org/spkg/upstream/${PN}/${P}.tar.gz"
-LICENSE="GPL-2"
+# The README has "or (at your option) any later version"
+LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="amd64 ~arm ~riscv ~x86"
IUSE="static-libs"
^ permalink raw reply related [flat|nested] 8+ messages in thread
end of thread, other threads:[~2023-11-22 22:26 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-02-28 14:47 [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/cliquer/ Michael Orlitzky
-- strict thread matches above, loose matches on Subject: below --
2023-11-22 22:26 Michael Orlitzky
2021-12-29 13:46 Yixun Lan
2021-11-29 7:36 Arthur Zamarin
2021-11-02 18:13 Michael Orlitzky
2021-11-02 15:47 Sam James
2021-11-02 15:47 Sam James
2020-01-31 15:45 Michael Orlitzky
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox