* [gentoo-commits] repo/gentoo:master commit in: app-crypt/libu2f-server/
@ 2016-06-28 21:41 Göktürk Yüksek
0 siblings, 0 replies; 17+ messages in thread
From: Göktürk Yüksek @ 2016-06-28 21:41 UTC (permalink / raw
To: gentoo-commits
commit: aab1c58653908468c8182326c1775ae57e38f00d
Author: Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 17 02:36:44 2016 +0000
Commit: Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
CommitDate: Tue Jun 28 21:38:44 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aab1c586
app-crypt/libu2f-server: initial commit of U2F server library in C
Package-Manager: portage-2.2.28
app-crypt/libu2f-server/Manifest | 1 +
app-crypt/libu2f-server/libu2f-server-1.0.1.ebuild | 45 ++++++++++++++++++++++
app-crypt/libu2f-server/metadata.xml | 12 ++++++
3 files changed, 58 insertions(+)
diff --git a/app-crypt/libu2f-server/Manifest b/app-crypt/libu2f-server/Manifest
new file mode 100644
index 0000000..99e0f4f
--- /dev/null
+++ b/app-crypt/libu2f-server/Manifest
@@ -0,0 +1 @@
+DIST libu2f-server-1.0.1.tar.xz 268648 SHA256 a618f59051209d6d70c24cf42d64c9b67bd7dd5946b6dbd2c649181d7e8f1f6e SHA512 51020722f49f787c793808b667e91923bde46e9137bfe5065106f83bcdb678e8d11cca12cb605d9622cafc15a9794c9080cf08e2a704293a791ab6f27ac47f47 WHIRLPOOL a8f4a50be8c9c09446ac6517e9e7a6609c0306aedeb683f911f89ac63a16cee2b88d7b551a1a8e20182a3c7cfa72ee86ce1d5105256e42c19affb2ad201139ea
diff --git a/app-crypt/libu2f-server/libu2f-server-1.0.1.ebuild b/app-crypt/libu2f-server/libu2f-server-1.0.1.ebuild
new file mode 100644
index 0000000..e05b3ea
--- /dev/null
+++ b/app-crypt/libu2f-server/libu2f-server-1.0.1.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit autotools eutils multilib-minimal
+
+DESCRIPTION="Yubico Universal 2nd Factor (U2F) server C Library"
+HOMEPAGE="https://developers.yubico.com/libu2f-server/"
+SRC_URI="https://developers.yubico.com/${PN}/Releases/${P}.tar.xz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="static-libs test"
+
+RDEPEND="
+ dev-libs/openssl:0=[${MULTILIB_USEDEP}]
+ dev-libs/hidapi[${MULTILIB_USEDEP}]
+ dev-libs/json-c[${MULTILIB_USEDEP}]
+"
+DEPEND="${RDEPEND}
+ virtual/pkgconfig
+ test? ( dev-libs/check[${MULTILIB_USEDEP}] )
+"
+
+src_prepare() {
+ default
+ eautoreconf
+}
+
+multilib_src_configure() {
+ myeconfargs=(
+ --disable-h2a # tarball already contains the manpage
+ $(use_enable static-libs static)
+ )
+
+ ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
+}
+
+multilib_src_install_all() {
+ default
+ prune_libtool_files
+}
diff --git a/app-crypt/libu2f-server/metadata.xml b/app-crypt/libu2f-server/metadata.xml
new file mode 100644
index 0000000..2d0a0e3
--- /dev/null
+++ b/app-crypt/libu2f-server/metadata.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>shirk+gentoo@bitspin.org</email>
+ <name>René Köcher</name>
+ </maintainer>
+ <maintainer type="person">
+ <email>gokturk@gentoo.org</email>
+ <name>Göktürk Yüksek</name>
+ </maintainer>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-crypt/libu2f-server/
@ 2016-06-30 2:48 Göktürk Yüksek
0 siblings, 0 replies; 17+ messages in thread
From: Göktürk Yüksek @ 2016-06-30 2:48 UTC (permalink / raw
To: gentoo-commits
commit: dcc56f301befa4a1374cf91731ba568721e727cf
Author: Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 30 02:46:13 2016 +0000
Commit: Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
CommitDate: Thu Jun 30 02:46:13 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dcc56f30
app-crypt/libu2f-server: fix test dependencies #587472
The configure.ac file checks for the test deps unconditionally.
Remove test USE flag and always depend on test deps.
Gentoo-Bug: https://bugs.gentoo.org/587472
Package-Manager: portage-2.2.28
app-crypt/libu2f-server/libu2f-server-1.0.1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-crypt/libu2f-server/libu2f-server-1.0.1.ebuild b/app-crypt/libu2f-server/libu2f-server-1.0.1.ebuild
index e05b3ea..1ff2ecd 100644
--- a/app-crypt/libu2f-server/libu2f-server-1.0.1.ebuild
+++ b/app-crypt/libu2f-server/libu2f-server-1.0.1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://developers.yubico.com/${PN}/Releases/${P}.tar.xz"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
-IUSE="static-libs test"
+IUSE="static-libs"
RDEPEND="
dev-libs/openssl:0=[${MULTILIB_USEDEP}]
@@ -22,7 +22,7 @@ RDEPEND="
"
DEPEND="${RDEPEND}
virtual/pkgconfig
- test? ( dev-libs/check[${MULTILIB_USEDEP}] )
+ dev-libs/check[${MULTILIB_USEDEP}]
"
src_prepare() {
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-crypt/libu2f-server/
@ 2017-01-27 19:14 Göktürk Yüksek
0 siblings, 0 replies; 17+ messages in thread
From: Göktürk Yüksek @ 2017-01-27 19:14 UTC (permalink / raw
To: gentoo-commits
commit: 96092c3ed8dd300e3db02cd898cbc85f09f6065f
Author: Luis Ressel <aranea <AT> aixah <DOT> de>
AuthorDate: Thu Jan 19 20:56:43 2017 +0000
Commit: Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
CommitDate: Fri Jan 27 19:13:36 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96092c3e
app-crypt/libu2f-server: Add libressl USE flag
In my tests, libu2f-server has worked fine with libressl; no patches are
necessary.
app-crypt/libu2f-server/libu2f-server-1.0.1.ebuild | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/app-crypt/libu2f-server/libu2f-server-1.0.1.ebuild b/app-crypt/libu2f-server/libu2f-server-1.0.1.ebuild
index e59d574..6c8eb77 100644
--- a/app-crypt/libu2f-server/libu2f-server-1.0.1.ebuild
+++ b/app-crypt/libu2f-server/libu2f-server-1.0.1.ebuild
@@ -13,10 +13,11 @@ SRC_URI="https://developers.yubico.com/${PN}/Releases/${P}.tar.xz"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
-IUSE="static-libs test"
+IUSE="libressl static-libs test"
RDEPEND="
- dev-libs/openssl:0=[${MULTILIB_USEDEP}]
+ !libressl? ( dev-libs/openssl:0=[${MULTILIB_USEDEP}] )
+ libressl? ( dev-libs/libressl:=[${MULTILIB_USEDEP}] )
dev-libs/hidapi[${MULTILIB_USEDEP}]
dev-libs/json-c[${MULTILIB_USEDEP}]
"
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-crypt/libu2f-server/
@ 2017-12-19 21:45 Thomas Deutschmann
0 siblings, 0 replies; 17+ messages in thread
From: Thomas Deutschmann @ 2017-12-19 21:45 UTC (permalink / raw
To: gentoo-commits
commit: e390a74bb333eaa7cfaf9a05c77a8f4f8b5efce7
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 19 21:28:19 2017 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Tue Dec 19 21:44:31 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e390a74b
app-crypt/libu2f-server: Add subslot operator on dev-libs/json-c atom
Package-Manager: Portage-2.3.19, Repoman-2.3.6
app-crypt/libu2f-server/libu2f-server-1.0.1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-crypt/libu2f-server/libu2f-server-1.0.1.ebuild b/app-crypt/libu2f-server/libu2f-server-1.0.1.ebuild
index 803c78639a9..823be1308e3 100644
--- a/app-crypt/libu2f-server/libu2f-server-1.0.1.ebuild
+++ b/app-crypt/libu2f-server/libu2f-server-1.0.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -18,7 +18,7 @@ RDEPEND="
!libressl? ( dev-libs/openssl:0=[${MULTILIB_USEDEP}] )
libressl? ( dev-libs/libressl:=[${MULTILIB_USEDEP}] )
dev-libs/hidapi[${MULTILIB_USEDEP}]
- dev-libs/json-c[${MULTILIB_USEDEP}]
+ dev-libs/json-c:=[${MULTILIB_USEDEP}]
"
DEPEND="${RDEPEND}
virtual/pkgconfig
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-crypt/libu2f-server/
@ 2018-04-04 15:21 Aaron Bauman
0 siblings, 0 replies; 17+ messages in thread
From: Aaron Bauman @ 2018-04-04 15:21 UTC (permalink / raw
To: gentoo-commits
commit: 5d281cb71c2311f01ea0d045d31eb7c7182c58ca
Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 4 15:18:44 2018 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Wed Apr 4 15:20:47 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d281cb7
app-crypt/libu2f-server: amd64 stable
Bug: https://bugs.gentoo.org/652410
Package-Manager: Portage-2.3.28, Repoman-2.3.9
app-crypt/libu2f-server/libu2f-server-1.1.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-crypt/libu2f-server/libu2f-server-1.1.0.ebuild b/app-crypt/libu2f-server/libu2f-server-1.1.0.ebuild
index b2ada443d40..28f5dc9b445 100644
--- a/app-crypt/libu2f-server/libu2f-server-1.1.0.ebuild
+++ b/app-crypt/libu2f-server/libu2f-server-1.1.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://developers.yubico.com/${PN}/Releases/${P}.tar.xz"
LICENSE="BSD-2"
SLOT="0/0.1"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
IUSE="libressl static-libs test"
RDEPEND="
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-crypt/libu2f-server/
@ 2018-04-05 23:19 Thomas Deutschmann
0 siblings, 0 replies; 17+ messages in thread
From: Thomas Deutschmann @ 2018-04-05 23:19 UTC (permalink / raw
To: gentoo-commits
commit: 28aa84bca9e093318d07c4c9d9d936fe69c42d12
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 5 23:08:08 2018 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Thu Apr 5 23:16:18 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28aa84bc
app-crypt/libu2f-server: x86 stable (bug #652410)
Package-Manager: Portage-2.3.28, Repoman-2.3.9
app-crypt/libu2f-server/libu2f-server-1.1.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-crypt/libu2f-server/libu2f-server-1.1.0.ebuild b/app-crypt/libu2f-server/libu2f-server-1.1.0.ebuild
index 28f5dc9b445..d6f5837efa5 100644
--- a/app-crypt/libu2f-server/libu2f-server-1.1.0.ebuild
+++ b/app-crypt/libu2f-server/libu2f-server-1.1.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://developers.yubico.com/${PN}/Releases/${P}.tar.xz"
LICENSE="BSD-2"
SLOT="0/0.1"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
IUSE="libressl static-libs test"
RDEPEND="
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-crypt/libu2f-server/
@ 2018-04-22 2:32 Göktürk Yüksek
0 siblings, 0 replies; 17+ messages in thread
From: Göktürk Yüksek @ 2018-04-22 2:32 UTC (permalink / raw
To: gentoo-commits
commit: cecc95f20e523610720b3ac3a94cd232d434baa0
Author: Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 22 02:04:53 2018 +0000
Commit: Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
CommitDate: Sun Apr 22 02:32:11 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cecc95f2
app-crypt/libu2f-server: remove inactive co-maintainer due to timeout
Package-Manager: Portage-2.3.27, Repoman-2.3.9
app-crypt/libu2f-server/metadata.xml | 4 ----
1 file changed, 4 deletions(-)
diff --git a/app-crypt/libu2f-server/metadata.xml b/app-crypt/libu2f-server/metadata.xml
index 2c6ea3e5892..6c2feb84a0e 100644
--- a/app-crypt/libu2f-server/metadata.xml
+++ b/app-crypt/libu2f-server/metadata.xml
@@ -1,10 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <maintainer type="person">
- <email>shirk+gentoo@bitspin.org</email>
- <name>René Köcher</name>
- </maintainer>
<maintainer type="person">
<email>gokturk@gentoo.org</email>
<name>Göktürk Yüksek</name>
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-crypt/libu2f-server/
@ 2019-06-05 19:23 Göktürk Yüksek
0 siblings, 0 replies; 17+ messages in thread
From: Göktürk Yüksek @ 2019-06-05 19:23 UTC (permalink / raw
To: gentoo-commits
commit: f8136943e6e72946c4d3884bea9d0ab5b4a9aef1
Author: Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 5 19:22:12 2019 +0000
Commit: Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
CommitDate: Wed Jun 5 19:22:44 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8136943
app-crypt/libu2f-server: remove old and now buggy 1.0.1
Bug: https://bugs.gentoo.org/641792
Bug: https://github.com/Yubico/pam-u2f/issues/93
Package-Manager: Portage-2.3.67, Repoman-2.3.12
Signed-off-by: Göktürk Yüksek <gokturk <AT> gentoo.org>
app-crypt/libu2f-server/Manifest | 1 -
app-crypt/libu2f-server/libu2f-server-1.0.1.ebuild | 51 ----------------------
2 files changed, 52 deletions(-)
diff --git a/app-crypt/libu2f-server/Manifest b/app-crypt/libu2f-server/Manifest
index 0c6a1457ec0..c01b35d1613 100644
--- a/app-crypt/libu2f-server/Manifest
+++ b/app-crypt/libu2f-server/Manifest
@@ -1,2 +1 @@
-DIST libu2f-server-1.0.1.tar.xz 268648 BLAKE2B 9c6c2e5bafb2a95fcc5c2773de49b4db197ee6283e90cf0e4e62ff3982bdde8a51635cd9771e4dd35d27c71634367197d3b01b9c26d8a3847fccf1daf676f04b SHA512 51020722f49f787c793808b667e91923bde46e9137bfe5065106f83bcdb678e8d11cca12cb605d9622cafc15a9794c9080cf08e2a704293a791ab6f27ac47f47
DIST libu2f-server-1.1.0.tar.xz 269128 BLAKE2B 084b177a878e8216f2ee5af9eeee11e691edcd12b7ed1b1c57f74bcc45f0418a0d44a9e72423c41b4104aa9f69807a0289172d08d21d168c6be5b36ee8c70bc3 SHA512 ebdb7c8c20727f37f4e31d8f16df7966603374f78478ada723a7b9bec1b0b0622caf6d12a65067ac8651f6088aaad61b2ad6ed51b9d6ef0dc45f031c974d8ff9
diff --git a/app-crypt/libu2f-server/libu2f-server-1.0.1.ebuild b/app-crypt/libu2f-server/libu2f-server-1.0.1.ebuild
deleted file mode 100644
index 823be1308e3..00000000000
--- a/app-crypt/libu2f-server/libu2f-server-1.0.1.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools eutils multilib-minimal
-
-DESCRIPTION="Yubico Universal 2nd Factor (U2F) server C Library"
-HOMEPAGE="https://developers.yubico.com/libu2f-server/"
-SRC_URI="https://developers.yubico.com/${PN}/Releases/${P}.tar.xz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="libressl static-libs test"
-
-RDEPEND="
- !libressl? ( dev-libs/openssl:0=[${MULTILIB_USEDEP}] )
- libressl? ( dev-libs/libressl:=[${MULTILIB_USEDEP}] )
- dev-libs/hidapi[${MULTILIB_USEDEP}]
- dev-libs/json-c:=[${MULTILIB_USEDEP}]
-"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
- test? ( dev-libs/check[${MULTILIB_USEDEP}] )
-"
-
-PATCHES=(
- "${FILESDIR}/${P}-tests-fix.patch"
-)
-
-src_prepare() {
- default
- eautoreconf
- touch man/u2f-server.1 || die # do not rebuild the man page
-}
-
-multilib_src_configure() {
- myeconfargs=(
- --disable-h2a # tarball already contains the manpage
- $(use_enable static-libs static)
- $(use_enable test tests)
- )
-
- ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
-}
-
-multilib_src_install_all() {
- default
- prune_libtool_files
-}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-crypt/libu2f-server/
@ 2021-04-30 12:41 Mikle Kolyada
0 siblings, 0 replies; 17+ messages in thread
From: Mikle Kolyada @ 2021-04-30 12:41 UTC (permalink / raw
To: gentoo-commits
commit: d914d3b10fa013b6dc697f43b29f4ea215847f93
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 30 12:40:38 2021 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Fri Apr 30 12:41:23 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d914d3b1
app-crypt/libu2f-server: remove libressl support
Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
app-crypt/libu2f-server/libu2f-server-1.1.0.ebuild | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/app-crypt/libu2f-server/libu2f-server-1.1.0.ebuild b/app-crypt/libu2f-server/libu2f-server-1.1.0.ebuild
index a16820c036e..b90c56b3120 100644
--- a/app-crypt/libu2f-server/libu2f-server-1.1.0.ebuild
+++ b/app-crypt/libu2f-server/libu2f-server-1.1.0.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=6
@@ -12,12 +12,11 @@ SRC_URI="https://developers.yubico.com/${PN}/Releases/${P}.tar.xz"
LICENSE="BSD-2"
SLOT="0/0.1"
KEYWORDS="amd64 x86"
-IUSE="libressl static-libs test"
+IUSE="static-libs test"
RESTRICT="!test? ( test )"
RDEPEND="
- !libressl? ( dev-libs/openssl:0=[${MULTILIB_USEDEP}] )
- libressl? ( dev-libs/libressl:=[${MULTILIB_USEDEP}] )
+ dev-libs/openssl:0=[${MULTILIB_USEDEP}]
dev-libs/hidapi[${MULTILIB_USEDEP}]
dev-libs/json-c:=[${MULTILIB_USEDEP}]
"
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-crypt/libu2f-server/
@ 2021-08-10 0:22 Göktürk Yüksek
0 siblings, 0 replies; 17+ messages in thread
From: Göktürk Yüksek @ 2021-08-10 0:22 UTC (permalink / raw
To: gentoo-commits
commit: 42691aa3df83ac90411d106253a571b939279c38
Author: Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 10 00:12:10 2021 +0000
Commit: Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
CommitDate: Tue Aug 10 00:21:02 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42691aa3
app-crypt/libu2f-server: bump to EAPI 7
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Göktürk Yüksek <gokturk <AT> gentoo.org>
.../libu2f-server/libu2f-server-1.1.0-r1.ebuild | 54 ++++++++++++++++++++++
1 file changed, 54 insertions(+)
diff --git a/app-crypt/libu2f-server/libu2f-server-1.1.0-r1.ebuild b/app-crypt/libu2f-server/libu2f-server-1.1.0-r1.ebuild
new file mode 100644
index 00000000000..c4164b37658
--- /dev/null
+++ b/app-crypt/libu2f-server/libu2f-server-1.1.0-r1.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools multilib-minimal
+
+DESCRIPTION="Yubico Universal 2nd Factor (U2F) server C Library"
+HOMEPAGE="https://developers.yubico.com/libu2f-server/"
+SRC_URI="https://developers.yubico.com/${PN}/Releases/${P}.tar.xz"
+
+LICENSE="BSD-2"
+SLOT="0/0.1"
+KEYWORDS="~amd64 ~x86"
+IUSE="static-libs test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ dev-libs/openssl:0=[${MULTILIB_USEDEP}]
+ dev-libs/hidapi[${MULTILIB_USEDEP}]
+ dev-libs/json-c:=[${MULTILIB_USEDEP}]
+"
+DEPEND="${RDEPEND}
+ test? ( dev-libs/check[${MULTILIB_USEDEP}] )
+"
+BDEPEND="
+ virtual/pkgconfig
+"
+
+PATCHES=(
+ "${FILESDIR}/${PN}-1.1.0-disable-help2man-gengetopt-checks.patch"
+ "${FILESDIR}/${PN}-1.1.0-jsonc014.patch"
+)
+
+src_prepare() {
+ default
+ eautoreconf
+ touch man/u2f-server.1 || die # do not rebuild the man page
+}
+
+multilib_src_configure() {
+ myeconfargs=(
+ --disable-h2a # tarball already contains the manpage
+ $(use_enable static-libs static)
+ $(use_enable test tests)
+ )
+
+ ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
+}
+
+multilib_src_install_all() {
+ default
+ find "${D}" -name '*.la' -delete || die
+}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-crypt/libu2f-server/
@ 2021-08-10 0:22 Göktürk Yüksek
0 siblings, 0 replies; 17+ messages in thread
From: Göktürk Yüksek @ 2021-08-10 0:22 UTC (permalink / raw
To: gentoo-commits
commit: 30ccaf417cdbe99f52bcb4f6707cf934746099db
Author: Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 10 00:06:45 2021 +0000
Commit: Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
CommitDate: Tue Aug 10 00:22:03 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30ccaf41
app-crypt/libu2f-server: drop to maintainer-needed
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Göktürk Yüksek <gokturk <AT> gentoo.org>
app-crypt/libu2f-server/metadata.xml | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/app-crypt/libu2f-server/metadata.xml b/app-crypt/libu2f-server/metadata.xml
index 6c2feb84a0e..5516cc3701b 100644
--- a/app-crypt/libu2f-server/metadata.xml
+++ b/app-crypt/libu2f-server/metadata.xml
@@ -1,10 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <maintainer type="person">
- <email>gokturk@gentoo.org</email>
- <name>Göktürk Yüksek</name>
- </maintainer>
+ <!-- maintainer-needed -->
<slots>
<subslots>Reflects ABI compatibility for libu2f-server.so</subslots>
</slots>
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-crypt/libu2f-server/
@ 2021-09-13 16:26 Marek Szuba
0 siblings, 0 replies; 17+ messages in thread
From: Marek Szuba @ 2021-09-13 16:26 UTC (permalink / raw
To: gentoo-commits
commit: 499fd73e029caefd1dd20baab7b9524e6d1823b1
Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 13 16:20:35 2021 +0000
Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Mon Sep 13 16:20:35 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=499fd73e
app-crypt/libu2f-server: fix metadata indentation
Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
app-crypt/libu2f-server/metadata.xml | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/app-crypt/libu2f-server/metadata.xml b/app-crypt/libu2f-server/metadata.xml
index 0b943c19bd0..0c44203f22e 100644
--- a/app-crypt/libu2f-server/metadata.xml
+++ b/app-crypt/libu2f-server/metadata.xml
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <!-- maintainer-needed -->
- <slots>
- <subslots>Reflects ABI compatibility for libu2f-server.so</subslots>
- </slots>
+ <!-- maintainer-needed -->
+ <slots>
+ <subslots>Reflects ABI compatibility for libu2f-server.so</subslots>
+ </slots>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-crypt/libu2f-server/
@ 2021-09-13 16:26 Marek Szuba
0 siblings, 0 replies; 17+ messages in thread
From: Marek Szuba @ 2021-09-13 16:26 UTC (permalink / raw
To: gentoo-commits
commit: d27605e0fe85346aa1e1b8dd82e5dfd4a788f03b
Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 13 16:20:49 2021 +0000
Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Mon Sep 13 16:20:49 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d27605e0
app-crypt/libu2f-server: add self as maintainer
Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
app-crypt/libu2f-server/metadata.xml | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/app-crypt/libu2f-server/metadata.xml b/app-crypt/libu2f-server/metadata.xml
index 0c44203f22e..27915126bf4 100644
--- a/app-crypt/libu2f-server/metadata.xml
+++ b/app-crypt/libu2f-server/metadata.xml
@@ -1,7 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <!-- maintainer-needed -->
+ <maintainer type="person">
+ <email>marecki@gentoo.org</email>
+ <name>Marek Szuba</name>
+ </maintainer>
<slots>
<subslots>Reflects ABI compatibility for libu2f-server.so</subslots>
</slots>
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-crypt/libu2f-server/
@ 2021-09-20 9:31 Marek Szuba
0 siblings, 0 replies; 17+ messages in thread
From: Marek Szuba @ 2021-09-20 9:31 UTC (permalink / raw
To: gentoo-commits
commit: 660b9e06ad0a8b8f6a49044d507fa1cbecb1ed1c
Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 20 09:27:41 2021 +0000
Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Mon Sep 20 09:27:41 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=660b9e06
app-crypt/libu2f-server: update EAPI 7 -> 8
Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
.../{libu2f-server-1.1.0-r1.ebuild => libu2f-server-1.1.0-r2.ebuild} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-crypt/libu2f-server/libu2f-server-1.1.0-r1.ebuild b/app-crypt/libu2f-server/libu2f-server-1.1.0-r2.ebuild
similarity index 99%
rename from app-crypt/libu2f-server/libu2f-server-1.1.0-r1.ebuild
rename to app-crypt/libu2f-server/libu2f-server-1.1.0-r2.ebuild
index c4164b37658..2141848a479 100644
--- a/app-crypt/libu2f-server/libu2f-server-1.1.0-r1.ebuild
+++ b/app-crypt/libu2f-server/libu2f-server-1.1.0-r2.ebuild
@@ -1,7 +1,7 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
inherit autotools multilib-minimal
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-crypt/libu2f-server/
@ 2021-11-19 11:32 Marek Szuba
0 siblings, 0 replies; 17+ messages in thread
From: Marek Szuba @ 2021-11-19 11:32 UTC (permalink / raw
To: gentoo-commits
commit: 89b6739ff5b433ce315f41e155a61356675a11db
Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 19 11:32:06 2021 +0000
Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Fri Nov 19 11:32:33 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89b6739f
app-crypt/libu2f-server: stabilize 1.1.0-r2 for amd64
Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
app-crypt/libu2f-server/libu2f-server-1.1.0-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-crypt/libu2f-server/libu2f-server-1.1.0-r2.ebuild b/app-crypt/libu2f-server/libu2f-server-1.1.0-r2.ebuild
index 2141848a479b..58947385f2c6 100644
--- a/app-crypt/libu2f-server/libu2f-server-1.1.0-r2.ebuild
+++ b/app-crypt/libu2f-server/libu2f-server-1.1.0-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://developers.yubico.com/${PN}/Releases/${P}.tar.xz"
LICENSE="BSD-2"
SLOT="0/0.1"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
IUSE="static-libs test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-crypt/libu2f-server/
@ 2021-11-19 17:50 Jakov Smolić
0 siblings, 0 replies; 17+ messages in thread
From: Jakov Smolić @ 2021-11-19 17:50 UTC (permalink / raw
To: gentoo-commits
commit: 4690802b402a1fb9d0f0668fd11b5cc9cc4e50a0
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 19 17:48:55 2021 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Fri Nov 19 17:49:32 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4690802b
app-crypt/libu2f-server: Stabilize 1.1.0-r2 x86, #824790
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
app-crypt/libu2f-server/libu2f-server-1.1.0-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-crypt/libu2f-server/libu2f-server-1.1.0-r2.ebuild b/app-crypt/libu2f-server/libu2f-server-1.1.0-r2.ebuild
index 58947385f2c6..200110f06d13 100644
--- a/app-crypt/libu2f-server/libu2f-server-1.1.0-r2.ebuild
+++ b/app-crypt/libu2f-server/libu2f-server-1.1.0-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://developers.yubico.com/${PN}/Releases/${P}.tar.xz"
LICENSE="BSD-2"
SLOT="0/0.1"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
IUSE="static-libs test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-crypt/libu2f-server/
@ 2021-11-19 21:58 Marek Szuba
0 siblings, 0 replies; 17+ messages in thread
From: Marek Szuba @ 2021-11-19 21:58 UTC (permalink / raw
To: gentoo-commits
commit: 6c89ecdb7191bc7d19a805aa28f4315f8ad88242
Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 19 21:56:37 2021 +0000
Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Fri Nov 19 21:56:37 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c89ecdb
app-crypt/libu2f-server: drop 1.1.0
Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
app-crypt/libu2f-server/libu2f-server-1.1.0.ebuild | 52 ----------------------
1 file changed, 52 deletions(-)
diff --git a/app-crypt/libu2f-server/libu2f-server-1.1.0.ebuild b/app-crypt/libu2f-server/libu2f-server-1.1.0.ebuild
deleted file mode 100644
index b90c56b31204..000000000000
--- a/app-crypt/libu2f-server/libu2f-server-1.1.0.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools multilib-minimal
-
-DESCRIPTION="Yubico Universal 2nd Factor (U2F) server C Library"
-HOMEPAGE="https://developers.yubico.com/libu2f-server/"
-SRC_URI="https://developers.yubico.com/${PN}/Releases/${P}.tar.xz"
-
-LICENSE="BSD-2"
-SLOT="0/0.1"
-KEYWORDS="amd64 x86"
-IUSE="static-libs test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- dev-libs/openssl:0=[${MULTILIB_USEDEP}]
- dev-libs/hidapi[${MULTILIB_USEDEP}]
- dev-libs/json-c:=[${MULTILIB_USEDEP}]
-"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
- test? ( dev-libs/check[${MULTILIB_USEDEP}] )
-"
-
-PATCHES=(
- "${FILESDIR}/${PN}-1.1.0-disable-help2man-gengetopt-checks.patch"
- "${FILESDIR}/${PN}-1.1.0-jsonc014.patch"
-)
-
-src_prepare() {
- default
- eautoreconf
- touch man/u2f-server.1 || die # do not rebuild the man page
-}
-
-multilib_src_configure() {
- myeconfargs=(
- --disable-h2a # tarball already contains the manpage
- $(use_enable static-libs static)
- $(use_enable test tests)
- )
-
- ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
-}
-
-multilib_src_install_all() {
- default
- find "${D}" -name '*.la' -delete || die
-}
^ permalink raw reply related [flat|nested] 17+ messages in thread
end of thread, other threads:[~2021-11-19 21:58 UTC | newest]
Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-06-05 19:23 [gentoo-commits] repo/gentoo:master commit in: app-crypt/libu2f-server/ Göktürk Yüksek
-- strict thread matches above, loose matches on Subject: below --
2021-11-19 21:58 Marek Szuba
2021-11-19 17:50 Jakov Smolić
2021-11-19 11:32 Marek Szuba
2021-09-20 9:31 Marek Szuba
2021-09-13 16:26 Marek Szuba
2021-09-13 16:26 Marek Szuba
2021-08-10 0:22 Göktürk Yüksek
2021-08-10 0:22 Göktürk Yüksek
2021-04-30 12:41 Mikle Kolyada
2018-04-22 2:32 Göktürk Yüksek
2018-04-05 23:19 Thomas Deutschmann
2018-04-04 15:21 Aaron Bauman
2017-12-19 21:45 Thomas Deutschmann
2017-01-27 19:14 Göktürk Yüksek
2016-06-30 2:48 Göktürk Yüksek
2016-06-28 21:41 Göktürk Yüksek
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox