* [gentoo-commits] repo/gentoo:master commit in: app-crypt/ssss/
@ 2019-02-22 21:08 Patrice Clement
0 siblings, 0 replies; 14+ messages in thread
From: Patrice Clement @ 2019-02-22 21:08 UTC (permalink / raw
To: gentoo-commits
commit: c478e16b2ca105a84815cd45dbc4e588b9328c95
Author: Conrad Kostecki <conrad <AT> kostecki <DOT> com>
AuthorDate: Thu Feb 21 19:40:35 2019 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Fri Feb 22 21:08:26 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c478e16b
app-crypt/ssss: new package.
SSSS is an implementation of Shamir's Secret Sharing Scheme.
The program suite does both: the generation of shares for a know secret, and
the reconstruction of a secret using user-pro-vided shares.
Closes: https://bugs.gentoo.org/106932
Package-Manager: Portage-2.3.60, Repoman-2.3.12
Signed-off-by: Conrad Kostecki <conrad <AT> kostecki.com>
Closes: https://github.com/gentoo/gentoo/pull/10243
Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
app-crypt/ssss/Manifest | 1 +
app-crypt/ssss/metadata.xml | 17 +++++++++++++++++
app-crypt/ssss/ssss-0.5.ebuild | 39 +++++++++++++++++++++++++++++++++++++++
3 files changed, 57 insertions(+)
diff --git a/app-crypt/ssss/Manifest b/app-crypt/ssss/Manifest
new file mode 100644
index 00000000000..c24684b3ff8
--- /dev/null
+++ b/app-crypt/ssss/Manifest
@@ -0,0 +1 @@
+DIST ssss-0.5.tar.gz 17435 BLAKE2B 76aae463ce11341f8b0336526f7d19c9921025cabc05bc9e00005b0bdeb676ed5e069226962232f277de2fecb1cd71bafbd4b2fa0c03ef4faf0f66daa24599d1 SHA512 be8df1666ac61d4097b5fd54f2cee3640db8f85ec21411f1b208a35b671c5699bc692079525d8d313d1cf2500da31bfb03771829a9fdccc0bb6d806749526ec9
diff --git a/app-crypt/ssss/metadata.xml b/app-crypt/ssss/metadata.xml
new file mode 100644
index 00000000000..108893a39ca
--- /dev/null
+++ b/app-crypt/ssss/metadata.xml
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>ck+gentoo@bl4ckb0x.de</email>
+ <name>Conrad Kostecki</name>
+ </maintainer>
+ <maintainer type="project">
+ <email>proxy-maint@gentoo.org</email>
+ <name>Proxy Maintainers</name>
+ </maintainer>
+ <longdescription>
+ SSSS is an implementation of Shamir's Secret Sharing Scheme.
+ The program suite does both: the generation of shares for a known secret,
+ and the reconstruction of a secret using user-pro‐vided shares.
+ </longdescription>
+</pkgmetadata>
diff --git a/app-crypt/ssss/ssss-0.5.ebuild b/app-crypt/ssss/ssss-0.5.ebuild
new file mode 100644
index 00000000000..55fa43d76cb
--- /dev/null
+++ b/app-crypt/ssss/ssss-0.5.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+DESCRIPTION="Shamir's Secret Sharing Scheme"
+HOMEPAGE="http://point-at-infinity.org/ssss/"
+SRC_URI="http://point-at-infinity.org/${PN}/${P}.tar.gz"
+
+KEYWORDS="~amd64 ~x86"
+LICENSE="GPL-2"
+SLOT="0"
+
+RDEPEND="dev-libs/gmp:0="
+DEPEND="${RDEPEND}"
+BDEPEND="app-doc/xmltoman"
+
+DOCS=( "HISTORY" "THANKS" )
+HTML_DOCS=( "doc.html" "ssss.1.html" )
+
+src_prepare() {
+ default
+
+ tc-export CC
+
+ # Respect users CFLAGS and don't strip, as portage does this part.
+ sed -e 's/-O2/$(CFLAGS)/g' -e '/strip/d' -i Makefile || die
+}
+
+src_install() {
+ dobin ssss-split
+ dosym ssss-split /usr/bin/ssss-combine
+
+ doman ssss.1
+
+ einstalldocs
+}
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-crypt/ssss/
@ 2019-04-13 19:10 Agostino Sarubbo
0 siblings, 0 replies; 14+ messages in thread
From: Agostino Sarubbo @ 2019-04-13 19:10 UTC (permalink / raw
To: gentoo-commits
commit: ab5df4be5b394b044082df09ace3f2d9097e663f
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 13 19:07:51 2019 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Sat Apr 13 19:07:51 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab5df4be
app-crypt/ssss: amd64 stable wrt bug #682724
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"
app-crypt/ssss/ssss-0.5.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-crypt/ssss/ssss-0.5.ebuild b/app-crypt/ssss/ssss-0.5.ebuild
index 55fa43d76cb..949dc6fadce 100644
--- a/app-crypt/ssss/ssss-0.5.ebuild
+++ b/app-crypt/ssss/ssss-0.5.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="Shamir's Secret Sharing Scheme"
HOMEPAGE="http://point-at-infinity.org/ssss/"
SRC_URI="http://point-at-infinity.org/${PN}/${P}.tar.gz"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
LICENSE="GPL-2"
SLOT="0"
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-crypt/ssss/
@ 2019-06-04 14:45 Thomas Deutschmann
0 siblings, 0 replies; 14+ messages in thread
From: Thomas Deutschmann @ 2019-06-04 14:45 UTC (permalink / raw
To: gentoo-commits
commit: a978c8b95ec4fdb80fdbf208d0181e32d8b1497a
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 4 14:27:24 2019 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Tue Jun 4 14:44:15 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a978c8b9
app-crypt/ssss: x86 stable (bug #682724)
Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
app-crypt/ssss/ssss-0.5.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-crypt/ssss/ssss-0.5.ebuild b/app-crypt/ssss/ssss-0.5.ebuild
index 949dc6fadce..f9d6d9eb8ce 100644
--- a/app-crypt/ssss/ssss-0.5.ebuild
+++ b/app-crypt/ssss/ssss-0.5.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="Shamir's Secret Sharing Scheme"
HOMEPAGE="http://point-at-infinity.org/ssss/"
SRC_URI="http://point-at-infinity.org/${PN}/${P}.tar.gz"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
LICENSE="GPL-2"
SLOT="0"
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-crypt/ssss/
@ 2020-05-10 16:22 Conrad Kostecki
0 siblings, 0 replies; 14+ messages in thread
From: Conrad Kostecki @ 2020-05-10 16:22 UTC (permalink / raw
To: gentoo-commits
commit: b9fef369a54567ecc76f534fd1d0e1e54c344f69
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sun May 10 14:38:11 2020 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sun May 10 16:22:10 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9fef369
app-crypt/ssss: respect users ldflags
Closes: https://bugs.gentoo.org/722074
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
app-crypt/ssss/ssss-0.5-r1.ebuild | 39 +++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
diff --git a/app-crypt/ssss/ssss-0.5-r1.ebuild b/app-crypt/ssss/ssss-0.5-r1.ebuild
new file mode 100644
index 00000000000..99411362aaf
--- /dev/null
+++ b/app-crypt/ssss/ssss-0.5-r1.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+DESCRIPTION="Shamir's Secret Sharing Scheme"
+HOMEPAGE="http://point-at-infinity.org/ssss/"
+SRC_URI="http://point-at-infinity.org/${PN}/${P}.tar.gz"
+
+KEYWORDS="amd64 x86"
+LICENSE="GPL-2"
+SLOT="0"
+
+RDEPEND="dev-libs/gmp:0="
+DEPEND="${RDEPEND}"
+BDEPEND="app-doc/xmltoman"
+
+DOCS=( "HISTORY" "THANKS" )
+HTML_DOCS=( "doc.html" "ssss.1.html" )
+
+src_prepare() {
+ default
+
+ tc-export CC
+
+ # Respect users [CL]FLAGS and don't strip, as portage does this part
+ sed -e 's/-O2/$(CFLAGS) -lgmp $(LDFLAGS)/g' -e '/strip/d' -i Makefile || die
+}
+
+src_install() {
+ dobin ssss-split
+ dosym ssss-split /usr/bin/ssss-combine
+
+ doman ssss.1
+
+ einstalldocs
+}
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-crypt/ssss/
@ 2020-05-10 16:22 Conrad Kostecki
0 siblings, 0 replies; 14+ messages in thread
From: Conrad Kostecki @ 2020-05-10 16:22 UTC (permalink / raw
To: gentoo-commits
commit: bc795bce28ad719c5773bfc9c0746322e079dd9e
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sun May 10 14:38:39 2020 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sun May 10 16:22:10 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc795bce
app-crypt/ssss: drop old version
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
app-crypt/ssss/ssss-0.5.ebuild | 39 ---------------------------------------
1 file changed, 39 deletions(-)
diff --git a/app-crypt/ssss/ssss-0.5.ebuild b/app-crypt/ssss/ssss-0.5.ebuild
deleted file mode 100644
index f9d6d9eb8ce..00000000000
--- a/app-crypt/ssss/ssss-0.5.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs
-
-DESCRIPTION="Shamir's Secret Sharing Scheme"
-HOMEPAGE="http://point-at-infinity.org/ssss/"
-SRC_URI="http://point-at-infinity.org/${PN}/${P}.tar.gz"
-
-KEYWORDS="amd64 x86"
-LICENSE="GPL-2"
-SLOT="0"
-
-RDEPEND="dev-libs/gmp:0="
-DEPEND="${RDEPEND}"
-BDEPEND="app-doc/xmltoman"
-
-DOCS=( "HISTORY" "THANKS" )
-HTML_DOCS=( "doc.html" "ssss.1.html" )
-
-src_prepare() {
- default
-
- tc-export CC
-
- # Respect users CFLAGS and don't strip, as portage does this part.
- sed -e 's/-O2/$(CFLAGS)/g' -e '/strip/d' -i Makefile || die
-}
-
-src_install() {
- dobin ssss-split
- dosym ssss-split /usr/bin/ssss-combine
-
- doman ssss.1
-
- einstalldocs
-}
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-crypt/ssss/
@ 2020-10-30 22:43 Conrad Kostecki
0 siblings, 0 replies; 14+ messages in thread
From: Conrad Kostecki @ 2020-10-30 22:43 UTC (permalink / raw
To: gentoo-commits
commit: c2b3f6534686c6e2e1b51839b50ea12de6432b5c
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 30 22:28:03 2020 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Fri Oct 30 22:43:12 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2b3f653
app-crypt/ssss: bump to version 0.5.6
This version switches to a maintained fork, as other distributions
started to use that, which also fixes some bugs and the original author
doesn't have any plans to continue development.
Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
app-crypt/ssss/Manifest | 1 +
app-crypt/ssss/metadata.xml | 3 +++
app-crypt/ssss/ssss-0.5.6.ebuild | 39 +++++++++++++++++++++++++++++++++++++++
3 files changed, 43 insertions(+)
diff --git a/app-crypt/ssss/Manifest b/app-crypt/ssss/Manifest
index c24684b3ff8..d4b1b0f6c91 100644
--- a/app-crypt/ssss/Manifest
+++ b/app-crypt/ssss/Manifest
@@ -1 +1,2 @@
+DIST ssss-0.5.6.tar.gz 20128 BLAKE2B d42fff5878e2ebcc62cd86b86f0f8a3e522c089cbb5e8fb2585cf375ff133da7d9ccf00e62cc6888e00abe5d64f87ac19ddbb3f6e6a0d86913e6a6aa5a8a1d4c SHA512 964af01610a7a269d19ae1fa1712ef12ca1afab02636ba83dd84ec5aeb185210a1247d932ee39d2869aa76e54ffb051d802800d295d17355d6fe2a8010edd509
DIST ssss-0.5.tar.gz 17435 BLAKE2B 76aae463ce11341f8b0336526f7d19c9921025cabc05bc9e00005b0bdeb676ed5e069226962232f277de2fecb1cd71bafbd4b2fa0c03ef4faf0f66daa24599d1 SHA512 be8df1666ac61d4097b5fd54f2cee3640db8f85ec21411f1b208a35b671c5699bc692079525d8d313d1cf2500da31bfb03771829a9fdccc0bb6d806749526ec9
diff --git a/app-crypt/ssss/metadata.xml b/app-crypt/ssss/metadata.xml
index 51c92c834b2..caba2e85d1b 100644
--- a/app-crypt/ssss/metadata.xml
+++ b/app-crypt/ssss/metadata.xml
@@ -10,4 +10,7 @@
The program suite does both: the generation of shares for a known secret,
and the reconstruction of a secret using user-pro‐vided shares.
</longdescription>
+ <upstream>
+ <remote-id type="github">MrJoy/ssss</remote-id>
+ </upstream>
</pkgmetadata>
diff --git a/app-crypt/ssss/ssss-0.5.6.ebuild b/app-crypt/ssss/ssss-0.5.6.ebuild
new file mode 100644
index 00000000000..724f2c160f9
--- /dev/null
+++ b/app-crypt/ssss/ssss-0.5.6.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+DESCRIPTION="Shamir's Secret Sharing Scheme"
+HOMEPAGE="https://github.com/MrJoy/ssss"
+SRC_URI="https://github.com/MrJoy/${PN}/archive/releases/v${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/${PN}-releases-v${PV}"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="dev-libs/gmp:0="
+DEPEND="${RDEPEND}"
+BDEPEND="app-doc/xmltoman"
+
+HTML_DOCS=( "doc.html" "ssss.1.html" )
+
+src_prepare() {
+ default
+
+ tc-export CC
+
+ # Respect users [CL]FLAGS and don't strip, as portage does this part
+ sed -e 's/-O2/$(CFLAGS) -lgmp $(LDFLAGS)/g' -e '/strip/d' -i Makefile || die
+}
+
+src_install() {
+ dobin ssss-split
+ dosym ssss-split /usr/bin/ssss-combine
+
+ doman ssss.1
+
+ einstalldocs
+}
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-crypt/ssss/
@ 2020-12-02 23:31 Thomas Deutschmann
0 siblings, 0 replies; 14+ messages in thread
From: Thomas Deutschmann @ 2020-12-02 23:31 UTC (permalink / raw
To: gentoo-commits
commit: 0f0b9b246245d8828f13a3a118ddd46cbf091f09
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 2 23:28:13 2020 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Wed Dec 2 23:30:57 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f0b9b24
app-crypt/ssss: x86 stable (bug #757531)
Package-Manager: Portage-3.0.10, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
app-crypt/ssss/ssss-0.5.6.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-crypt/ssss/ssss-0.5.6.ebuild b/app-crypt/ssss/ssss-0.5.6.ebuild
index 724f2c160f9..89420c41084 100644
--- a/app-crypt/ssss/ssss-0.5.6.ebuild
+++ b/app-crypt/ssss/ssss-0.5.6.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/${PN}-releases-v${PV}"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
RDEPEND="dev-libs/gmp:0="
DEPEND="${RDEPEND}"
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-crypt/ssss/
@ 2020-12-15 14:27 Conrad Kostecki
0 siblings, 0 replies; 14+ messages in thread
From: Conrad Kostecki @ 2020-12-15 14:27 UTC (permalink / raw
To: gentoo-commits
commit: efc34ccde321ae64c422e75c093d69ee04594219
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 15 14:12:22 2020 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Tue Dec 15 14:12:22 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=efc34ccd
app-crypt/ssss: bump to version 0.5.7
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
app-crypt/ssss/Manifest | 1 +
app-crypt/ssss/ssss-0.5.7.ebuild | 39 +++++++++++++++++++++++++++++++++++++++
2 files changed, 40 insertions(+)
diff --git a/app-crypt/ssss/Manifest b/app-crypt/ssss/Manifest
index d4b1b0f6c91..2716f988606 100644
--- a/app-crypt/ssss/Manifest
+++ b/app-crypt/ssss/Manifest
@@ -1,2 +1,3 @@
DIST ssss-0.5.6.tar.gz 20128 BLAKE2B d42fff5878e2ebcc62cd86b86f0f8a3e522c089cbb5e8fb2585cf375ff133da7d9ccf00e62cc6888e00abe5d64f87ac19ddbb3f6e6a0d86913e6a6aa5a8a1d4c SHA512 964af01610a7a269d19ae1fa1712ef12ca1afab02636ba83dd84ec5aeb185210a1247d932ee39d2869aa76e54ffb051d802800d295d17355d6fe2a8010edd509
+DIST ssss-0.5.7.tar.gz 21774 BLAKE2B 923f9e0c46e82261dc4f293635aa318c986cee221a93e9df3d232e4b923a7828f0301c8729a5beb72b66e1646e5a0694cfa9546ea26b0e06fa16a8a0c7487ef6 SHA512 aca85b7a63e6d009fffe5540b0c8e3190c364aa2070e8d8487fd42d7ac76143e404b226b28f3630022d102679371673cc7c08b8c5d3bcf63e3676b7293d2ba00
DIST ssss-0.5.tar.gz 17435 BLAKE2B 76aae463ce11341f8b0336526f7d19c9921025cabc05bc9e00005b0bdeb676ed5e069226962232f277de2fecb1cd71bafbd4b2fa0c03ef4faf0f66daa24599d1 SHA512 be8df1666ac61d4097b5fd54f2cee3640db8f85ec21411f1b208a35b671c5699bc692079525d8d313d1cf2500da31bfb03771829a9fdccc0bb6d806749526ec9
diff --git a/app-crypt/ssss/ssss-0.5.7.ebuild b/app-crypt/ssss/ssss-0.5.7.ebuild
new file mode 100644
index 00000000000..724f2c160f9
--- /dev/null
+++ b/app-crypt/ssss/ssss-0.5.7.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+DESCRIPTION="Shamir's Secret Sharing Scheme"
+HOMEPAGE="https://github.com/MrJoy/ssss"
+SRC_URI="https://github.com/MrJoy/${PN}/archive/releases/v${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/${PN}-releases-v${PV}"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="dev-libs/gmp:0="
+DEPEND="${RDEPEND}"
+BDEPEND="app-doc/xmltoman"
+
+HTML_DOCS=( "doc.html" "ssss.1.html" )
+
+src_prepare() {
+ default
+
+ tc-export CC
+
+ # Respect users [CL]FLAGS and don't strip, as portage does this part
+ sed -e 's/-O2/$(CFLAGS) -lgmp $(LDFLAGS)/g' -e '/strip/d' -i Makefile || die
+}
+
+src_install() {
+ dobin ssss-split
+ dosym ssss-split /usr/bin/ssss-combine
+
+ doman ssss.1
+
+ einstalldocs
+}
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-crypt/ssss/
@ 2020-12-17 12:48 Sam James
0 siblings, 0 replies; 14+ messages in thread
From: Sam James @ 2020-12-17 12:48 UTC (permalink / raw
To: gentoo-commits
commit: dd2485d02172ea6aba648c8febe5a74a65ab9de1
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 17 12:47:58 2020 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Dec 17 12:48:25 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd2485d0
app-crypt/ssss: Stabilize 0.5.6 amd64, #757531
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-crypt/ssss/ssss-0.5.6.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-crypt/ssss/ssss-0.5.6.ebuild b/app-crypt/ssss/ssss-0.5.6.ebuild
index 89420c41084..4897601cb3e 100644
--- a/app-crypt/ssss/ssss-0.5.6.ebuild
+++ b/app-crypt/ssss/ssss-0.5.6.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/${PN}-releases-v${PV}"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
RDEPEND="dev-libs/gmp:0="
DEPEND="${RDEPEND}"
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-crypt/ssss/
@ 2020-12-17 13:09 Conrad Kostecki
0 siblings, 0 replies; 14+ messages in thread
From: Conrad Kostecki @ 2020-12-17 13:09 UTC (permalink / raw
To: gentoo-commits
commit: d4e12949cb1a2373d748c59ac28a4b0359dc6834
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 17 13:05:45 2020 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Thu Dec 17 13:05:45 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4e12949
app-crypt/ssss: drop old version
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
app-crypt/ssss/Manifest | 1 -
app-crypt/ssss/ssss-0.5-r1.ebuild | 39 ---------------------------------------
2 files changed, 40 deletions(-)
diff --git a/app-crypt/ssss/Manifest b/app-crypt/ssss/Manifest
index 2716f988606..8e338fb09b9 100644
--- a/app-crypt/ssss/Manifest
+++ b/app-crypt/ssss/Manifest
@@ -1,3 +1,2 @@
DIST ssss-0.5.6.tar.gz 20128 BLAKE2B d42fff5878e2ebcc62cd86b86f0f8a3e522c089cbb5e8fb2585cf375ff133da7d9ccf00e62cc6888e00abe5d64f87ac19ddbb3f6e6a0d86913e6a6aa5a8a1d4c SHA512 964af01610a7a269d19ae1fa1712ef12ca1afab02636ba83dd84ec5aeb185210a1247d932ee39d2869aa76e54ffb051d802800d295d17355d6fe2a8010edd509
DIST ssss-0.5.7.tar.gz 21774 BLAKE2B 923f9e0c46e82261dc4f293635aa318c986cee221a93e9df3d232e4b923a7828f0301c8729a5beb72b66e1646e5a0694cfa9546ea26b0e06fa16a8a0c7487ef6 SHA512 aca85b7a63e6d009fffe5540b0c8e3190c364aa2070e8d8487fd42d7ac76143e404b226b28f3630022d102679371673cc7c08b8c5d3bcf63e3676b7293d2ba00
-DIST ssss-0.5.tar.gz 17435 BLAKE2B 76aae463ce11341f8b0336526f7d19c9921025cabc05bc9e00005b0bdeb676ed5e069226962232f277de2fecb1cd71bafbd4b2fa0c03ef4faf0f66daa24599d1 SHA512 be8df1666ac61d4097b5fd54f2cee3640db8f85ec21411f1b208a35b671c5699bc692079525d8d313d1cf2500da31bfb03771829a9fdccc0bb6d806749526ec9
diff --git a/app-crypt/ssss/ssss-0.5-r1.ebuild b/app-crypt/ssss/ssss-0.5-r1.ebuild
deleted file mode 100644
index 99411362aaf..00000000000
--- a/app-crypt/ssss/ssss-0.5-r1.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs
-
-DESCRIPTION="Shamir's Secret Sharing Scheme"
-HOMEPAGE="http://point-at-infinity.org/ssss/"
-SRC_URI="http://point-at-infinity.org/${PN}/${P}.tar.gz"
-
-KEYWORDS="amd64 x86"
-LICENSE="GPL-2"
-SLOT="0"
-
-RDEPEND="dev-libs/gmp:0="
-DEPEND="${RDEPEND}"
-BDEPEND="app-doc/xmltoman"
-
-DOCS=( "HISTORY" "THANKS" )
-HTML_DOCS=( "doc.html" "ssss.1.html" )
-
-src_prepare() {
- default
-
- tc-export CC
-
- # Respect users [CL]FLAGS and don't strip, as portage does this part
- sed -e 's/-O2/$(CFLAGS) -lgmp $(LDFLAGS)/g' -e '/strip/d' -i Makefile || die
-}
-
-src_install() {
- dobin ssss-split
- dosym ssss-split /usr/bin/ssss-combine
-
- doman ssss.1
-
- einstalldocs
-}
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-crypt/ssss/
@ 2021-01-16 15:50 Conrad Kostecki
0 siblings, 0 replies; 14+ messages in thread
From: Conrad Kostecki @ 2021-01-16 15:50 UTC (permalink / raw
To: gentoo-commits
commit: b53ef3b9b5f86e2a92075cc4bcae4aca849f26ab
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 16 15:50:39 2021 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sat Jan 16 15:50:39 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b53ef3b9
app-crypt/ssss: drop old version
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
app-crypt/ssss/Manifest | 1 -
app-crypt/ssss/ssss-0.5.6.ebuild | 39 ---------------------------------------
2 files changed, 40 deletions(-)
diff --git a/app-crypt/ssss/Manifest b/app-crypt/ssss/Manifest
index 8e338fb09b9..853ce3847b1 100644
--- a/app-crypt/ssss/Manifest
+++ b/app-crypt/ssss/Manifest
@@ -1,2 +1 @@
-DIST ssss-0.5.6.tar.gz 20128 BLAKE2B d42fff5878e2ebcc62cd86b86f0f8a3e522c089cbb5e8fb2585cf375ff133da7d9ccf00e62cc6888e00abe5d64f87ac19ddbb3f6e6a0d86913e6a6aa5a8a1d4c SHA512 964af01610a7a269d19ae1fa1712ef12ca1afab02636ba83dd84ec5aeb185210a1247d932ee39d2869aa76e54ffb051d802800d295d17355d6fe2a8010edd509
DIST ssss-0.5.7.tar.gz 21774 BLAKE2B 923f9e0c46e82261dc4f293635aa318c986cee221a93e9df3d232e4b923a7828f0301c8729a5beb72b66e1646e5a0694cfa9546ea26b0e06fa16a8a0c7487ef6 SHA512 aca85b7a63e6d009fffe5540b0c8e3190c364aa2070e8d8487fd42d7ac76143e404b226b28f3630022d102679371673cc7c08b8c5d3bcf63e3676b7293d2ba00
diff --git a/app-crypt/ssss/ssss-0.5.6.ebuild b/app-crypt/ssss/ssss-0.5.6.ebuild
deleted file mode 100644
index 4897601cb3e..00000000000
--- a/app-crypt/ssss/ssss-0.5.6.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs
-
-DESCRIPTION="Shamir's Secret Sharing Scheme"
-HOMEPAGE="https://github.com/MrJoy/ssss"
-SRC_URI="https://github.com/MrJoy/${PN}/archive/releases/v${PV}.tar.gz -> ${P}.tar.gz"
-S="${WORKDIR}/${PN}-releases-v${PV}"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-RDEPEND="dev-libs/gmp:0="
-DEPEND="${RDEPEND}"
-BDEPEND="app-doc/xmltoman"
-
-HTML_DOCS=( "doc.html" "ssss.1.html" )
-
-src_prepare() {
- default
-
- tc-export CC
-
- # Respect users [CL]FLAGS and don't strip, as portage does this part
- sed -e 's/-O2/$(CFLAGS) -lgmp $(LDFLAGS)/g' -e '/strip/d' -i Makefile || die
-}
-
-src_install() {
- dobin ssss-split
- dosym ssss-split /usr/bin/ssss-combine
-
- doman ssss.1
-
- einstalldocs
-}
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-crypt/ssss/
@ 2021-01-16 15:50 Conrad Kostecki
0 siblings, 0 replies; 14+ messages in thread
From: Conrad Kostecki @ 2021-01-16 15:50 UTC (permalink / raw
To: gentoo-commits
commit: a91d7b1288d9143c68fb86ad0866b5c8eca0ec60
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 16 15:47:44 2021 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sat Jan 16 15:47:44 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a91d7b12
app-crypt/ssss: amd64 stable
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
app-crypt/ssss/ssss-0.5.7.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-crypt/ssss/ssss-0.5.7.ebuild b/app-crypt/ssss/ssss-0.5.7.ebuild
index 724f2c160f9..72fe09e3416 100644
--- a/app-crypt/ssss/ssss-0.5.7.ebuild
+++ b/app-crypt/ssss/ssss-0.5.7.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -12,7 +12,7 @@ S="${WORKDIR}/${PN}-releases-v${PV}"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
RDEPEND="dev-libs/gmp:0="
DEPEND="${RDEPEND}"
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-crypt/ssss/
@ 2021-01-16 15:50 Conrad Kostecki
0 siblings, 0 replies; 14+ messages in thread
From: Conrad Kostecki @ 2021-01-16 15:50 UTC (permalink / raw
To: gentoo-commits
commit: e065cd072284d16db2aa199f8e9f7466b0b81fc0
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 16 15:48:53 2021 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sat Jan 16 15:48:53 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e065cd07
app-crypt/ssss: x86 stable
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
app-crypt/ssss/ssss-0.5.7.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-crypt/ssss/ssss-0.5.7.ebuild b/app-crypt/ssss/ssss-0.5.7.ebuild
index 72fe09e3416..53234e2029f 100644
--- a/app-crypt/ssss/ssss-0.5.7.ebuild
+++ b/app-crypt/ssss/ssss-0.5.7.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/${PN}-releases-v${PV}"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
RDEPEND="dev-libs/gmp:0="
DEPEND="${RDEPEND}"
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-crypt/ssss/
@ 2024-09-28 20:52 Conrad Kostecki
0 siblings, 0 replies; 14+ messages in thread
From: Conrad Kostecki @ 2024-09-28 20:52 UTC (permalink / raw
To: gentoo-commits
commit: e645be244bf14076147cfc22d39df4ae80cf1d44
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 28 20:50:59 2024 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sat Sep 28 20:51:37 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e645be24
app-crypt/ssss: don't use which
Closes: https://bugs.gentoo.org/940450
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
app-crypt/ssss/{ssss-0.5.7-r1.ebuild => ssss-0.5.7-r2.ebuild} | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/app-crypt/ssss/ssss-0.5.7-r1.ebuild b/app-crypt/ssss/ssss-0.5.7-r2.ebuild
similarity index 77%
rename from app-crypt/ssss/ssss-0.5.7-r1.ebuild
rename to app-crypt/ssss/ssss-0.5.7-r2.ebuild
index f847746a60e5..c9c3277abf1a 100644
--- a/app-crypt/ssss/ssss-0.5.7-r1.ebuild
+++ b/app-crypt/ssss/ssss-0.5.7-r2.ebuild
@@ -25,8 +25,10 @@ src_prepare() {
tc-export CC
- # Respect users [CL]FLAGS and don't strip, as portage does this part
- sed -e 's/-O2/$(CFLAGS) -lgmp $(LDFLAGS)/g' -e '/strip/d' -i Makefile || die
+ # Respect users [CL]FLAGS
+ # Don't strip, as portage does this part
+ # Don't use 'which'
+ sed -e 's/-O2/$(CFLAGS) -lgmp $(LDFLAGS)/g' -e '/strip/d' -e 's/which/type -P/g' -i Makefile || die
}
src_install() {
^ permalink raw reply related [flat|nested] 14+ messages in thread
end of thread, other threads:[~2024-09-28 20:52 UTC | newest]
Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-04-13 19:10 [gentoo-commits] repo/gentoo:master commit in: app-crypt/ssss/ Agostino Sarubbo
-- strict thread matches above, loose matches on Subject: below --
2024-09-28 20:52 Conrad Kostecki
2021-01-16 15:50 Conrad Kostecki
2021-01-16 15:50 Conrad Kostecki
2021-01-16 15:50 Conrad Kostecki
2020-12-17 13:09 Conrad Kostecki
2020-12-17 12:48 Sam James
2020-12-15 14:27 Conrad Kostecki
2020-12-02 23:31 Thomas Deutschmann
2020-10-30 22:43 Conrad Kostecki
2020-05-10 16:22 Conrad Kostecki
2020-05-10 16:22 Conrad Kostecki
2019-06-04 14:45 Thomas Deutschmann
2019-02-22 21:08 Patrice Clement
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox