* [gentoo-commits] repo/gentoo:master commit in: net-libs/liboauth/
@ 2016-11-09 8:59 Pacho Ramos
0 siblings, 0 replies; 32+ messages in thread
From: Pacho Ramos @ 2016-11-09 8:59 UTC (permalink / raw
To: gentoo-commits
commit: 36e5e1c99c34d5b13bf4ef43faadae0c1059ab56
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 9 08:57:38 2016 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Wed Nov 9 08:59:13 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36e5e1c9
net-libs/liboauth: Version bump
Package-Manager: portage-2.3.2
net-libs/liboauth/Manifest | 1 +
net-libs/liboauth/liboauth-1.0.3.ebuild | 70 +++++++++++++++++++++++++++++++++
2 files changed, 71 insertions(+)
diff --git a/net-libs/liboauth/Manifest b/net-libs/liboauth/Manifest
index 37cf335..d83b9c6 100644
--- a/net-libs/liboauth/Manifest
+++ b/net-libs/liboauth/Manifest
@@ -1 +1,2 @@
DIST liboauth-1.0.1.tar.gz 501706 SHA256 5087d32fe1db7b588246a7de64fc0c2464c95efdebb2c7fe6f482d9b00e68d8b SHA512 5d84699ece179a3b17eae8b7113eeadd7bd24df953f7070a6a0e303923b1661d82174894bf64ef6abc6dc344042013256fb2b1ab4fae12ab2778fa15446aa06c WHIRLPOOL 41b83bfc578b74c65018df7a73ba58695352a6e9e53a8a69434dc033c8bea1664417b2e3691dd2f1dd99ce2d55d48bde0fb4d29727294f59b5436720294236ed
+DIST liboauth-1.0.3.tar.gz 504950 SHA256 0df60157b052f0e774ade8a8bac59d6e8d4b464058cc55f9208d72e41156811f SHA512 5a13818dbb3e0df76f7a3fde451eff4f90c9bebfe2076a294921af0c07c2b0789f717f0f862ac6961562d4227e016dc198ddd7efb9c7ac599c3bfbcdb2ac33fa WHIRLPOOL 98d9771a5e8a42ed7781a9f8fbcbdf4dd8e04077028855c07f8722de230be829d66a142e56ff85f88e0db20791b92ece18169b5a49deb1c28f3350ef90a9219c
diff --git a/net-libs/liboauth/liboauth-1.0.3.ebuild b/net-libs/liboauth/liboauth-1.0.3.ebuild
new file mode 100644
index 00000000..e2a7e7e
--- /dev/null
+++ b/net-libs/liboauth/liboauth-1.0.3.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit autotools-utils
+
+DESCRIPTION="C library implementing the OAuth secure authentication protocol"
+HOMEPAGE="http://liboauth.sourceforge.net/"
+SRC_URI="mirror://sourceforge/project/${PN}/${P}.tar.gz"
+
+LICENSE="|| ( GPL-2 MIT )"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x64-macos"
+IUSE="curl doc bindist +nss"
+
+PATCHES=( "${FILESDIR}"/${PN}-1.0.1-doxygen-out-of-tree.patch )
+REQUIRED_USE="bindist? ( nss )"
+
+CDEPEND="
+ nss? ( dev-libs/nss
+ curl? ( || ( net-misc/curl[ssl,curl_ssl_nss] net-misc/curl[-ssl] ) )
+ )
+
+ !nss? ( dev-libs/openssl
+ curl? ( || ( net-misc/curl[ssl,curl_ssl_openssl] net-misc/curl[-ssl] ) )
+ )
+
+ net-misc/curl
+"
+
+RDEPEND="${CDEPEND}"
+
+DEPEND="${CDEPEND}
+ doc? (
+ app-doc/doxygen
+ media-gfx/graphviz
+ media-fonts/freefont
+ )
+ virtual/pkgconfig"
+
+src_configure() {
+ local myeconfargs=(
+ --disable-static
+ $(use_enable !curl curl)
+ $(use_enable curl libcurl)
+ $(use_enable nss)
+ )
+
+ autotools-utils_src_configure
+}
+
+src_compile() {
+ autotools-utils_src_compile
+
+ if use doc ; then
+ # make sure fonts are found
+ export DOTFONTPATH="${EPREFIX}"/usr/share/fonts/freefont-ttf
+ autotools-utils_src_compile dox
+ fi
+}
+
+DOCS=( AUTHORS ChangeLog LICENSE.OpenSSL README )
+
+src_install() {
+ use doc && HTML_DOCS=("${BUILD_DIR}"/doc/html/)
+
+ autotools-utils_src_install
+}
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/liboauth/
@ 2016-11-09 8:59 Pacho Ramos
0 siblings, 0 replies; 32+ messages in thread
From: Pacho Ramos @ 2016-11-09 8:59 UTC (permalink / raw
To: gentoo-commits
commit: f1ffa7d0c0d1ca2706641f131cbb50dab1937105
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 9 08:58:28 2016 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Wed Nov 9 08:59:16 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1ffa7d0
net-libs/liboauth: Specify proper openssl slot
Package-Manager: portage-2.3.2
net-libs/liboauth/liboauth-1.0.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-libs/liboauth/liboauth-1.0.3.ebuild b/net-libs/liboauth/liboauth-1.0.3.ebuild
index e2a7e7e..2aff24a 100644
--- a/net-libs/liboauth/liboauth-1.0.3.ebuild
+++ b/net-libs/liboauth/liboauth-1.0.3.ebuild
@@ -23,7 +23,7 @@ CDEPEND="
curl? ( || ( net-misc/curl[ssl,curl_ssl_nss] net-misc/curl[-ssl] ) )
)
- !nss? ( dev-libs/openssl
+ !nss? ( dev-libs/openssl:0=
curl? ( || ( net-misc/curl[ssl,curl_ssl_openssl] net-misc/curl[-ssl] ) )
)
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/liboauth/
@ 2016-11-27 17:51 Tobias Klausmann
0 siblings, 0 replies; 32+ messages in thread
From: Tobias Klausmann @ 2016-11-27 17:51 UTC (permalink / raw
To: gentoo-commits
commit: ae022d8249919198cef759f62dd932c80d2c4e7a
Author: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 27 17:50:13 2016 +0000
Commit: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
CommitDate: Sun Nov 27 17:51:19 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae022d82
net-libs/liboauth-1.0.3-r0: stable on alpha
Gentoo-Bug: 600858
net-libs/liboauth/liboauth-1.0.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-libs/liboauth/liboauth-1.0.3.ebuild b/net-libs/liboauth/liboauth-1.0.3.ebuild
index 2aff24a..325556f 100644
--- a/net-libs/liboauth/liboauth-1.0.3.ebuild
+++ b/net-libs/liboauth/liboauth-1.0.3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/project/${PN}/${P}.tar.gz"
LICENSE="|| ( GPL-2 MIT )"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x64-macos"
+KEYWORDS="alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x64-macos"
IUSE="curl doc bindist +nss"
PATCHES=( "${FILESDIR}"/${PN}-1.0.1-doxygen-out-of-tree.patch )
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/liboauth/
@ 2016-11-27 18:31 Pacho Ramos
0 siblings, 0 replies; 32+ messages in thread
From: Pacho Ramos @ 2016-11-27 18:31 UTC (permalink / raw
To: gentoo-commits
commit: 3b29f37f48f5df6c04aabba334bcf9d1797758b3
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 27 18:30:58 2016 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun Nov 27 18:30:58 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b29f37f
net-libs/liboauth: amd64/x86 stable, bug #600858
Package-Manager: portage-2.3.2
net-libs/liboauth/liboauth-1.0.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-libs/liboauth/liboauth-1.0.3.ebuild b/net-libs/liboauth/liboauth-1.0.3.ebuild
index 325556f..a4d8d97 100644
--- a/net-libs/liboauth/liboauth-1.0.3.ebuild
+++ b/net-libs/liboauth/liboauth-1.0.3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/project/${PN}/${P}.tar.gz"
LICENSE="|| ( GPL-2 MIT )"
SLOT="0"
-KEYWORDS="alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x64-macos"
+KEYWORDS="alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x64-macos"
IUSE="curl doc bindist +nss"
PATCHES=( "${FILESDIR}"/${PN}-1.0.1-doxygen-out-of-tree.patch )
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/liboauth/
@ 2017-01-08 18:21 Markus Meier
0 siblings, 0 replies; 32+ messages in thread
From: Markus Meier @ 2017-01-08 18:21 UTC (permalink / raw
To: gentoo-commits
commit: 44f7e712536e09d17ed7a3ca627b24915b08607d
Author: Markus Meier <maekke <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 8 18:21:06 2017 +0000
Commit: Markus Meier <maekke <AT> gentoo <DOT> org>
CommitDate: Sun Jan 8 18:21:23 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44f7e712
net-libs/liboauth: arm stable, bug #600858
Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --include-arches="arm"
net-libs/liboauth/liboauth-1.0.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-libs/liboauth/liboauth-1.0.3.ebuild b/net-libs/liboauth/liboauth-1.0.3.ebuild
index 9346e42..d94bf5d 100644
--- a/net-libs/liboauth/liboauth-1.0.3.ebuild
+++ b/net-libs/liboauth/liboauth-1.0.3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/project/${PN}/${P}.tar.gz"
LICENSE="|| ( GPL-2 MIT )"
SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~hppa ~ia64 ppc ppc64 ~sparc x86 ~x64-macos"
+KEYWORDS="alpha amd64 arm ~hppa ~ia64 ppc ppc64 ~sparc x86 ~x64-macos"
IUSE="curl doc bindist +nss"
PATCHES=( "${FILESDIR}"/${PN}-1.0.1-doxygen-out-of-tree.patch )
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/liboauth/
@ 2017-01-31 14:40 Jeroen Roovers
0 siblings, 0 replies; 32+ messages in thread
From: Jeroen Roovers @ 2017-01-31 14:40 UTC (permalink / raw
To: gentoo-commits
commit: cdd319e78f60807f599cc3c06c3b6ecb6ee71d28
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 31 14:40:27 2017 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Tue Jan 31 14:40:50 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cdd319e7
net-libs/liboauth: Stable for HPPA (bug #600858).
Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --ignore-arches
net-libs/liboauth/liboauth-1.0.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-libs/liboauth/liboauth-1.0.3.ebuild b/net-libs/liboauth/liboauth-1.0.3.ebuild
index a95a591..00a585f 100644
--- a/net-libs/liboauth/liboauth-1.0.3.ebuild
+++ b/net-libs/liboauth/liboauth-1.0.3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/project/${PN}/${P}.tar.gz"
LICENSE="|| ( GPL-2 MIT )"
SLOT="0"
-KEYWORDS="alpha amd64 arm ~hppa ia64 ppc ppc64 sparc x86 ~x64-macos"
+KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x64-macos"
IUSE="curl doc bindist +nss"
PATCHES=( "${FILESDIR}"/${PN}-1.0.1-doxygen-out-of-tree.patch )
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/liboauth/
@ 2017-03-18 7:45 Michael Palimaka
0 siblings, 0 replies; 32+ messages in thread
From: Michael Palimaka @ 2017-03-18 7:45 UTC (permalink / raw
To: gentoo-commits
commit: 5ab45684c510e71cfe4108394f3ca7a61f5f13f6
Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 18 07:44:47 2017 +0000
Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Sat Mar 18 07:45:13 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ab45684
net-libs/liboauth: remove 1.0.1
Package-Manager: Portage-2.3.5, Repoman-2.3.2
net-libs/liboauth/Manifest | 1 -
net-libs/liboauth/liboauth-1.0.1.ebuild | 69 ---------------------------------
2 files changed, 70 deletions(-)
diff --git a/net-libs/liboauth/Manifest b/net-libs/liboauth/Manifest
index d83b9c65936..1b201f02537 100644
--- a/net-libs/liboauth/Manifest
+++ b/net-libs/liboauth/Manifest
@@ -1,2 +1 @@
-DIST liboauth-1.0.1.tar.gz 501706 SHA256 5087d32fe1db7b588246a7de64fc0c2464c95efdebb2c7fe6f482d9b00e68d8b SHA512 5d84699ece179a3b17eae8b7113eeadd7bd24df953f7070a6a0e303923b1661d82174894bf64ef6abc6dc344042013256fb2b1ab4fae12ab2778fa15446aa06c WHIRLPOOL 41b83bfc578b74c65018df7a73ba58695352a6e9e53a8a69434dc033c8bea1664417b2e3691dd2f1dd99ce2d55d48bde0fb4d29727294f59b5436720294236ed
DIST liboauth-1.0.3.tar.gz 504950 SHA256 0df60157b052f0e774ade8a8bac59d6e8d4b464058cc55f9208d72e41156811f SHA512 5a13818dbb3e0df76f7a3fde451eff4f90c9bebfe2076a294921af0c07c2b0789f717f0f862ac6961562d4227e016dc198ddd7efb9c7ac599c3bfbcdb2ac33fa WHIRLPOOL 98d9771a5e8a42ed7781a9f8fbcbdf4dd8e04077028855c07f8722de230be829d66a142e56ff85f88e0db20791b92ece18169b5a49deb1c28f3350ef90a9219c
diff --git a/net-libs/liboauth/liboauth-1.0.1.ebuild b/net-libs/liboauth/liboauth-1.0.1.ebuild
deleted file mode 100644
index 1fdefda638a..00000000000
--- a/net-libs/liboauth/liboauth-1.0.1.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit autotools-utils
-
-DESCRIPTION="C library implementing the OAuth secure authentication protocol"
-HOMEPAGE="http://liboauth.sourceforge.net/"
-SRC_URI="mirror://sourceforge/project/${PN}/${P}.tar.gz"
-
-LICENSE="|| ( GPL-2 MIT )"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x64-macos"
-IUSE="curl doc bindist +nss"
-
-PATCHES=( "${FILESDIR}"/${P}-doxygen-out-of-tree.patch )
-REQUIRED_USE="bindist? ( nss )"
-
-CDEPEND="
- nss? ( dev-libs/nss
- curl? ( || ( net-misc/curl[ssl,curl_ssl_nss] net-misc/curl[-ssl] ) )
- )
-
- !nss? ( dev-libs/openssl
- curl? ( || ( net-misc/curl[ssl,curl_ssl_openssl] net-misc/curl[-ssl] ) )
- )
-
- net-misc/curl
-"
-
-RDEPEND="${CDEPEND}"
-
-DEPEND="${CDEPEND}
- doc? (
- app-doc/doxygen
- media-gfx/graphviz
- media-fonts/freefont
- )
- virtual/pkgconfig"
-
-src_configure() {
- local myeconfargs=(
- --disable-static
- $(use_enable !curl curl)
- $(use_enable curl libcurl)
- $(use_enable nss)
- )
-
- autotools-utils_src_configure
-}
-
-src_compile() {
- autotools-utils_src_compile
-
- if use doc ; then
- # make sure fonts are found
- export DOTFONTPATH="${EPREFIX}"/usr/share/fonts/freefont-ttf
- autotools-utils_src_compile dox
- fi
-}
-
-DOCS=( AUTHORS ChangeLog LICENSE.OpenSSL README )
-
-src_install() {
- use doc && HTML_DOCS=("${BUILD_DIR}"/doc/html/)
-
- autotools-utils_src_install
-}
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/liboauth/
@ 2017-06-27 15:48 Alexis Ballier
0 siblings, 0 replies; 32+ messages in thread
From: Alexis Ballier @ 2017-06-27 15:48 UTC (permalink / raw
To: gentoo-commits
commit: 961e7a0200a3e7cdd62e08b6ba1dc5e4c415ef89
Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 27 15:42:04 2017 +0000
Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Tue Jun 27 15:48:02 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=961e7a02
net-libs/liboauth: keyword ~arm64
Package-Manager: Portage-2.3.6, Repoman-2.3.2
net-libs/liboauth/liboauth-1.0.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-libs/liboauth/liboauth-1.0.3.ebuild b/net-libs/liboauth/liboauth-1.0.3.ebuild
index 02a59235e94..c854294a024 100644
--- a/net-libs/liboauth/liboauth-1.0.3.ebuild
+++ b/net-libs/liboauth/liboauth-1.0.3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/project/${PN}/${P}.tar.gz"
LICENSE="|| ( GPL-2 MIT )"
SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x64-macos"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~x64-macos"
IUSE="curl doc bindist +nss"
PATCHES=( "${FILESDIR}"/${PN}-1.0.1-doxygen-out-of-tree.patch )
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/liboauth/
@ 2019-03-06 19:13 Aaron Bauman
0 siblings, 0 replies; 32+ messages in thread
From: Aaron Bauman @ 2019-03-06 19:13 UTC (permalink / raw
To: gentoo-commits
commit: f61f31803d6594dfe9fb9c48408c38a8e39308ce
Author: Stefan Strogin <stefan.strogin <AT> gmail <DOT> com>
AuthorDate: Wed Mar 6 16:48:36 2019 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Wed Mar 6 19:13:10 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f61f3180
net-libs/liboauth: fix slot operator for libressl dependency
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Stefan Strogin <stefan.strogin <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/11283
Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
net-libs/liboauth/liboauth-1.0.3-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-libs/liboauth/liboauth-1.0.3-r1.ebuild b/net-libs/liboauth/liboauth-1.0.3-r1.ebuild
index 90acfdbc1fc..66859ea3912 100644
--- a/net-libs/liboauth/liboauth-1.0.3-r1.ebuild
+++ b/net-libs/liboauth/liboauth-1.0.3-r1.ebuild
@@ -30,7 +30,7 @@ CDEPEND="
)
!nss? (
!libressl? ( dev-libs/openssl:0= )
- libressl? ( dev-libs/libressl:= )
+ libressl? ( dev-libs/libressl:0= )
curl? ( || (
net-misc/curl[ssl,curl_ssl_openssl]
net-misc/curl[-ssl]
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/liboauth/
@ 2019-03-24 19:44 Sergei Trofimovich
0 siblings, 0 replies; 32+ messages in thread
From: Sergei Trofimovich @ 2019-03-24 19:44 UTC (permalink / raw
To: gentoo-commits
commit: c23b5eafd813b7982bae318e0447c4706e23d11c
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 24 19:40:35 2019 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sun Mar 24 19:40:35 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c23b5eaf
net-libs/liboauth: stable 1.0.3-r1 for ia64, bug #681610
Package-Manager: Portage-2.3.62, Repoman-2.3.12
RepoMan-Options: --include-arches="ia64"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
net-libs/liboauth/liboauth-1.0.3-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-libs/liboauth/liboauth-1.0.3-r1.ebuild b/net-libs/liboauth/liboauth-1.0.3-r1.ebuild
index 66859ea3912..9dd277fdf18 100644
--- a/net-libs/liboauth/liboauth-1.0.3-r1.ebuild
+++ b/net-libs/liboauth/liboauth-1.0.3-r1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://sourceforge/project/${PN}/${P}.tar.gz"
LICENSE="|| ( GPL-2 MIT )"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x64-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~ppc ~ppc64 ~sparc ~x86 ~x64-macos"
IUSE="bindist curl doc libressl +nss"
REQUIRED_USE="bindist? ( nss )"
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/liboauth/
@ 2019-03-24 20:12 Sergei Trofimovich
0 siblings, 0 replies; 32+ messages in thread
From: Sergei Trofimovich @ 2019-03-24 20:12 UTC (permalink / raw
To: gentoo-commits
commit: 7e10e45e01aec3cc501bc6b31d092d5a42af5127
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 24 20:09:52 2019 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sun Mar 24 20:09:52 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e10e45e
net-libs/liboauth: stable 1.0.3-r1 for ppc, bug #681610
Package-Manager: Portage-2.3.62, Repoman-2.3.12
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
net-libs/liboauth/liboauth-1.0.3-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-libs/liboauth/liboauth-1.0.3-r1.ebuild b/net-libs/liboauth/liboauth-1.0.3-r1.ebuild
index 9dd277fdf18..1530cdd03a8 100644
--- a/net-libs/liboauth/liboauth-1.0.3-r1.ebuild
+++ b/net-libs/liboauth/liboauth-1.0.3-r1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://sourceforge/project/${PN}/${P}.tar.gz"
LICENSE="|| ( GPL-2 MIT )"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~ppc ~ppc64 ~sparc ~x86 ~x64-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ppc ~ppc64 ~sparc ~x86 ~x64-macos"
IUSE="bindist curl doc libressl +nss"
REQUIRED_USE="bindist? ( nss )"
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/liboauth/
@ 2019-03-24 20:25 Sergei Trofimovich
0 siblings, 0 replies; 32+ messages in thread
From: Sergei Trofimovich @ 2019-03-24 20:25 UTC (permalink / raw
To: gentoo-commits
commit: 082ec81bdd1fa31bd14a2c67a30aed9d651f8772
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 24 20:17:01 2019 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sun Mar 24 20:17:01 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=082ec81b
net-libs/liboauth: stable 1.0.3-r1 for ppc64, bug #681610
Package-Manager: Portage-2.3.62, Repoman-2.3.12
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
net-libs/liboauth/liboauth-1.0.3-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-libs/liboauth/liboauth-1.0.3-r1.ebuild b/net-libs/liboauth/liboauth-1.0.3-r1.ebuild
index 1530cdd03a8..d0fdc21d69e 100644
--- a/net-libs/liboauth/liboauth-1.0.3-r1.ebuild
+++ b/net-libs/liboauth/liboauth-1.0.3-r1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://sourceforge/project/${PN}/${P}.tar.gz"
LICENSE="|| ( GPL-2 MIT )"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ppc ~ppc64 ~sparc ~x86 ~x64-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ppc ppc64 ~sparc ~x86 ~x64-macos"
IUSE="bindist curl doc libressl +nss"
REQUIRED_USE="bindist? ( nss )"
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/liboauth/
@ 2019-03-25 22:18 Sergei Trofimovich
0 siblings, 0 replies; 32+ messages in thread
From: Sergei Trofimovich @ 2019-03-25 22:18 UTC (permalink / raw
To: gentoo-commits
commit: 0bdc9775d94b525bfb114084924893de961b8bba
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 25 22:16:03 2019 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Mon Mar 25 22:16:03 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0bdc9775
net-libs/liboauth: stable 1.0.3-r1 for hppa, bug #681610
Package-Manager: Portage-2.3.62, Repoman-2.3.12
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
net-libs/liboauth/liboauth-1.0.3-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-libs/liboauth/liboauth-1.0.3-r1.ebuild b/net-libs/liboauth/liboauth-1.0.3-r1.ebuild
index d0fdc21d69e..b1b5f7ffcee 100644
--- a/net-libs/liboauth/liboauth-1.0.3-r1.ebuild
+++ b/net-libs/liboauth/liboauth-1.0.3-r1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://sourceforge/project/${PN}/${P}.tar.gz"
LICENSE="|| ( GPL-2 MIT )"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ppc ppc64 ~sparc ~x86 ~x64-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ia64 ppc ppc64 ~sparc ~x86 ~x64-macos"
IUSE="bindist curl doc libressl +nss"
REQUIRED_USE="bindist? ( nss )"
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/liboauth/
@ 2019-04-01 19:58 Thomas Deutschmann
0 siblings, 0 replies; 32+ messages in thread
From: Thomas Deutschmann @ 2019-04-01 19:58 UTC (permalink / raw
To: gentoo-commits
commit: a6bf414b5367f9da223bcfd7c081b3e44fd51420
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 1 19:47:33 2019 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Mon Apr 1 19:57:48 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6bf414b
net-libs/liboauth: x86 stable (bug #681610)
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
net-libs/liboauth/liboauth-1.0.3-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-libs/liboauth/liboauth-1.0.3-r1.ebuild b/net-libs/liboauth/liboauth-1.0.3-r1.ebuild
index b1b5f7ffcee..c42869113d9 100644
--- a/net-libs/liboauth/liboauth-1.0.3-r1.ebuild
+++ b/net-libs/liboauth/liboauth-1.0.3-r1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://sourceforge/project/${PN}/${P}.tar.gz"
LICENSE="|| ( GPL-2 MIT )"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ia64 ppc ppc64 ~sparc ~x86 ~x64-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ia64 ppc ppc64 ~sparc x86 ~x64-macos"
IUSE="bindist curl doc libressl +nss"
REQUIRED_USE="bindist? ( nss )"
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/liboauth/
@ 2019-04-01 20:14 Pacho Ramos
0 siblings, 0 replies; 32+ messages in thread
From: Pacho Ramos @ 2019-04-01 20:14 UTC (permalink / raw
To: gentoo-commits
commit: bb3d484047993b5499f90d77e0274b63ada27e5b
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 1 20:14:20 2019 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Mon Apr 1 20:14:20 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb3d4840
net-libs/liboauth: amd64 stable, bug #681610
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
net-libs/liboauth/liboauth-1.0.3-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-libs/liboauth/liboauth-1.0.3-r1.ebuild b/net-libs/liboauth/liboauth-1.0.3-r1.ebuild
index c42869113d9..2237745f981 100644
--- a/net-libs/liboauth/liboauth-1.0.3-r1.ebuild
+++ b/net-libs/liboauth/liboauth-1.0.3-r1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://sourceforge/project/${PN}/${P}.tar.gz"
LICENSE="|| ( GPL-2 MIT )"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ia64 ppc ppc64 ~sparc x86 ~x64-macos"
+KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ppc ppc64 ~sparc x86 ~x64-macos"
IUSE="bindist curl doc libressl +nss"
REQUIRED_USE="bindist? ( nss )"
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/liboauth/
@ 2019-05-02 22:11 Mikle Kolyada
0 siblings, 0 replies; 32+ messages in thread
From: Mikle Kolyada @ 2019-05-02 22:11 UTC (permalink / raw
To: gentoo-commits
commit: 549f7bff35ca8bc5d4609c3a5fba8ddc21fdeee3
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Thu May 2 22:10:22 2019 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Thu May 2 22:10:22 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=549f7bff
net-libs/liboauth: arm stable wrt bug #681610
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="arm"
net-libs/liboauth/liboauth-1.0.3-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-libs/liboauth/liboauth-1.0.3-r1.ebuild b/net-libs/liboauth/liboauth-1.0.3-r1.ebuild
index 2237745f981..6240addb583 100644
--- a/net-libs/liboauth/liboauth-1.0.3-r1.ebuild
+++ b/net-libs/liboauth/liboauth-1.0.3-r1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://sourceforge/project/${PN}/${P}.tar.gz"
LICENSE="|| ( GPL-2 MIT )"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ppc ppc64 ~sparc x86 ~x64-macos"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 ~sparc x86 ~x64-macos"
IUSE="bindist curl doc libressl +nss"
REQUIRED_USE="bindist? ( nss )"
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/liboauth/
@ 2019-05-02 22:11 Mikle Kolyada
0 siblings, 0 replies; 32+ messages in thread
From: Mikle Kolyada @ 2019-05-02 22:11 UTC (permalink / raw
To: gentoo-commits
commit: d5f5e3215b6fda49adf56fc5033224ef9a891d29
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Thu May 2 22:10:39 2019 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Thu May 2 22:10:39 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5f5e321
net-libs/liboauth: alpha stable wrt bug #681610
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="alpha"
net-libs/liboauth/liboauth-1.0.3-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-libs/liboauth/liboauth-1.0.3-r1.ebuild b/net-libs/liboauth/liboauth-1.0.3-r1.ebuild
index 6240addb583..e73e793cda0 100644
--- a/net-libs/liboauth/liboauth-1.0.3-r1.ebuild
+++ b/net-libs/liboauth/liboauth-1.0.3-r1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://sourceforge/project/${PN}/${P}.tar.gz"
LICENSE="|| ( GPL-2 MIT )"
SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 ~sparc x86 ~x64-macos"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 ~sparc x86 ~x64-macos"
IUSE="bindist curl doc libressl +nss"
REQUIRED_USE="bindist? ( nss )"
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/liboauth/
@ 2019-05-03 20:30 Sergei Trofimovich
0 siblings, 0 replies; 32+ messages in thread
From: Sergei Trofimovich @ 2019-05-03 20:30 UTC (permalink / raw
To: gentoo-commits
commit: debfc14f6261a13cf98b1fd93c0ffa5c24eb8808
Author: Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Fri May 3 15:37:41 2019 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Fri May 3 20:30:13 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=debfc14f
net-libs/liboauth: stable 1.0.3-r1 for sparc, bug #681610
Signed-off-by: Rolf Eike Beer <eike <AT> sf-mail.de>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
net-libs/liboauth/liboauth-1.0.3-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-libs/liboauth/liboauth-1.0.3-r1.ebuild b/net-libs/liboauth/liboauth-1.0.3-r1.ebuild
index e73e793cda0..fda29af6117 100644
--- a/net-libs/liboauth/liboauth-1.0.3-r1.ebuild
+++ b/net-libs/liboauth/liboauth-1.0.3-r1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://sourceforge/project/${PN}/${P}.tar.gz"
LICENSE="|| ( GPL-2 MIT )"
SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 ~sparc x86 ~x64-macos"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~x64-macos"
IUSE="bindist curl doc libressl +nss"
REQUIRED_USE="bindist? ( nss )"
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/liboauth/
@ 2019-05-04 9:50 Pacho Ramos
0 siblings, 0 replies; 32+ messages in thread
From: Pacho Ramos @ 2019-05-04 9:50 UTC (permalink / raw
To: gentoo-commits
commit: 9f4ddcee296ed707cefdac554a289df40e706928
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sat May 4 09:49:06 2019 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sat May 4 09:49:06 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f4ddcee
net-libs/liboauth: Drop old
Package-Manager: Portage-2.3.64, Repoman-2.3.12
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
net-libs/liboauth/liboauth-1.0.3.ebuild | 69 ---------------------------------
1 file changed, 69 deletions(-)
diff --git a/net-libs/liboauth/liboauth-1.0.3.ebuild b/net-libs/liboauth/liboauth-1.0.3.ebuild
deleted file mode 100644
index c854294a024..00000000000
--- a/net-libs/liboauth/liboauth-1.0.3.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit autotools-utils
-
-DESCRIPTION="C library implementing the OAuth secure authentication protocol"
-HOMEPAGE="http://liboauth.sourceforge.net/"
-SRC_URI="mirror://sourceforge/project/${PN}/${P}.tar.gz"
-
-LICENSE="|| ( GPL-2 MIT )"
-SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~x64-macos"
-IUSE="curl doc bindist +nss"
-
-PATCHES=( "${FILESDIR}"/${PN}-1.0.1-doxygen-out-of-tree.patch )
-REQUIRED_USE="bindist? ( nss )"
-
-CDEPEND="
- nss? ( dev-libs/nss
- curl? ( || ( net-misc/curl[ssl,curl_ssl_nss] net-misc/curl[-ssl] ) )
- )
-
- !nss? ( dev-libs/openssl:0=
- curl? ( || ( net-misc/curl[ssl,curl_ssl_openssl] net-misc/curl[-ssl] ) )
- )
-
- net-misc/curl
-"
-
-RDEPEND="${CDEPEND}"
-
-DEPEND="${CDEPEND}
- doc? (
- app-doc/doxygen
- media-gfx/graphviz
- media-fonts/freefont
- )
- virtual/pkgconfig"
-
-src_configure() {
- local myeconfargs=(
- --disable-static
- $(use_enable !curl curl)
- $(use_enable curl libcurl)
- $(use_enable nss)
- )
-
- autotools-utils_src_configure
-}
-
-src_compile() {
- autotools-utils_src_compile
-
- if use doc ; then
- # make sure fonts are found
- export DOTFONTPATH="${EPREFIX}"/usr/share/fonts/freefont-ttf
- autotools-utils_src_compile dox
- fi
-}
-
-DOCS=( AUTHORS ChangeLog LICENSE.OpenSSL README )
-
-src_install() {
- use doc && HTML_DOCS=("${BUILD_DIR}"/doc/html/)
-
- autotools-utils_src_install
-}
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/liboauth/
@ 2019-05-22 21:20 Aaron Bauman
0 siblings, 0 replies; 32+ messages in thread
From: Aaron Bauman @ 2019-05-22 21:20 UTC (permalink / raw
To: gentoo-commits
commit: 243d173b7fd7655cc93c06f482dea955ae185384
Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Wed May 22 21:15:58 2019 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Wed May 22 21:20:03 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=243d173b
net-libs/liboauth: arm64 stable
Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
net-libs/liboauth/liboauth-1.0.3-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-libs/liboauth/liboauth-1.0.3-r1.ebuild b/net-libs/liboauth/liboauth-1.0.3-r1.ebuild
index fda29af6117..3540e299a28 100644
--- a/net-libs/liboauth/liboauth-1.0.3-r1.ebuild
+++ b/net-libs/liboauth/liboauth-1.0.3-r1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://sourceforge/project/${PN}/${P}.tar.gz"
LICENSE="|| ( GPL-2 MIT )"
SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~x64-macos"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ppc ppc64 sparc x86 ~x64-macos"
IUSE="bindist curl doc libressl +nss"
REQUIRED_USE="bindist? ( nss )"
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/liboauth/
@ 2021-05-02 10:16 Mikle Kolyada
0 siblings, 0 replies; 32+ messages in thread
From: Mikle Kolyada @ 2021-05-02 10:16 UTC (permalink / raw
To: gentoo-commits
commit: b6bf5b6fa55ac7f0eb757a954c4fd060fe89c768
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sun May 2 10:11:28 2021 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sun May 2 10:16:34 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6bf5b6f
net-libs/liboauth: remove libressl support
Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
net-libs/liboauth/liboauth-1.0.3-r1.ebuild | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/net-libs/liboauth/liboauth-1.0.3-r1.ebuild b/net-libs/liboauth/liboauth-1.0.3-r1.ebuild
index a68e3ff0f51..bd549e633f4 100644
--- a/net-libs/liboauth/liboauth-1.0.3-r1.ebuild
+++ b/net-libs/liboauth/liboauth-1.0.3-r1.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
@@ -10,7 +10,7 @@ SRC_URI="mirror://sourceforge/project/${PN}/${P}.tar.gz"
LICENSE="|| ( GPL-2 MIT )"
SLOT="0"
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 sparc x86 ~x64-macos"
-IUSE="bindist curl doc libressl +nss"
+IUSE="bindist curl doc +nss"
REQUIRED_USE="bindist? ( nss )"
@@ -29,8 +29,7 @@ CDEPEND="
) )
)
!nss? (
- !libressl? ( dev-libs/openssl:0= )
- libressl? ( dev-libs/libressl:0= )
+ dev-libs/openssl:0=
curl? ( || (
net-misc/curl[ssl,curl_ssl_openssl]
net-misc/curl[-ssl]
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/liboauth/
@ 2022-01-27 9:30 David Seifert
0 siblings, 0 replies; 32+ messages in thread
From: David Seifert @ 2022-01-27 9:30 UTC (permalink / raw
To: gentoo-commits
commit: 648fa3bd89277c27f02fe89a7c17b9ae6495acfb
Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Thu Jan 27 09:30:06 2022 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Thu Jan 27 09:30:06 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=648fa3bd
net-libs/liboauth: use https
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Signed-off-by: David Seifert <soap <AT> gentoo.org>
net-libs/liboauth/liboauth-1.0.3-r1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-libs/liboauth/liboauth-1.0.3-r1.ebuild b/net-libs/liboauth/liboauth-1.0.3-r1.ebuild
index db045636e130..f0475e3b43d8 100644
--- a/net-libs/liboauth/liboauth-1.0.3-r1.ebuild
+++ b/net-libs/liboauth/liboauth-1.0.3-r1.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="C library implementing the OAuth secure authentication protocol"
-HOMEPAGE="http://liboauth.sourceforge.net/"
+HOMEPAGE="https://liboauth.sourceforge.io/"
SRC_URI="mirror://sourceforge/project/${PN}/${P}.tar.gz"
LICENSE="|| ( GPL-2 MIT )"
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/liboauth/
@ 2023-05-27 10:47 Sam James
0 siblings, 0 replies; 32+ messages in thread
From: Sam James @ 2023-05-27 10:47 UTC (permalink / raw
To: gentoo-commits
commit: ebd88795c44b57f91049e1ff745a0b6682422cef
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat May 27 10:42:55 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat May 27 10:46:40 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebd88795
net-libs/liboauth: modernise
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-libs/liboauth/liboauth-1.0.3-r1.ebuild | 26 +++++++++++---------------
1 file changed, 11 insertions(+), 15 deletions(-)
diff --git a/net-libs/liboauth/liboauth-1.0.3-r1.ebuild b/net-libs/liboauth/liboauth-1.0.3-r1.ebuild
index f0475e3b43d8..911945ae3847 100644
--- a/net-libs/liboauth/liboauth-1.0.3-r1.ebuild
+++ b/net-libs/liboauth/liboauth-1.0.3-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -10,8 +10,8 @@ SRC_URI="mirror://sourceforge/project/${PN}/${P}.tar.gz"
LICENSE="|| ( GPL-2 MIT )"
SLOT="0"
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86 ~x64-macos"
+# Upstream recommend NSS by default for licencing reasons (may change w/ openssl 3?)
IUSE="bindist curl doc +nss"
-
REQUIRED_USE="bindist? ( nss )"
PATCHES=(
@@ -20,36 +20,34 @@ PATCHES=(
"${FILESDIR}"/${PN}-1.0.3-openssl-1.1_2.patch
)
-CDEPEND="
+RDEPEND="
curl? ( net-misc/curl )
- nss? ( dev-libs/nss
+ nss? (
+ dev-libs/nss
curl? ( || (
net-misc/curl[ssl,curl_ssl_nss]
net-misc/curl[-ssl]
) )
)
!nss? (
- dev-libs/openssl:0=
+ dev-libs/openssl:=
curl? ( || (
net-misc/curl[ssl,curl_ssl_openssl]
net-misc/curl[-ssl]
) )
)
"
-
-RDEPEND="${CDEPEND}"
-
-DEPEND="
- ${CDEPEND}
+DEPEND="${RDEPEND}"
+BDEPEND="
+ virtual/pkgconfig
doc? (
app-doc/doxygen
media-gfx/graphviz
media-fonts/freefont
)
"
-BDEPEND="
- virtual/pkgconfig
-"
+
+DOCS=( AUTHORS ChangeLog LICENSE.OpenSSL README )
src_configure() {
local myeconfargs=(
@@ -71,8 +69,6 @@ src_compile() {
fi
}
-DOCS=( AUTHORS ChangeLog LICENSE.OpenSSL README )
-
src_install() {
use doc && HTML_DOCS=( doc/html/. )
default
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/liboauth/
@ 2023-07-27 5:46 WANG Xuerui
0 siblings, 0 replies; 32+ messages in thread
From: WANG Xuerui @ 2023-07-27 5:46 UTC (permalink / raw
To: gentoo-commits
commit: 33b49525618bd974047083106eeac21d8bf8bb66
Author: WANG Xuerui <xen0n <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 27 05:39:14 2023 +0000
Commit: WANG Xuerui <xen0n <AT> gentoo <DOT> org>
CommitDate: Thu Jul 27 05:45:16 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33b49525
net-libs/liboauth: keyword 1.0.3-r1 for ~loong
Signed-off-by: WANG Xuerui <xen0n <AT> gentoo.org>
net-libs/liboauth/liboauth-1.0.3-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-libs/liboauth/liboauth-1.0.3-r1.ebuild b/net-libs/liboauth/liboauth-1.0.3-r1.ebuild
index 911945ae3847..6a60bfa23920 100644
--- a/net-libs/liboauth/liboauth-1.0.3-r1.ebuild
+++ b/net-libs/liboauth/liboauth-1.0.3-r1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://sourceforge/project/${PN}/${P}.tar.gz"
LICENSE="|| ( GPL-2 MIT )"
SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86 ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv sparc x86 ~x64-macos"
# Upstream recommend NSS by default for licencing reasons (may change w/ openssl 3?)
IUSE="bindist curl doc +nss"
REQUIRED_USE="bindist? ( nss )"
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/liboauth/
@ 2023-09-14 3:55 Sam James
0 siblings, 0 replies; 32+ messages in thread
From: Sam James @ 2023-09-14 3:55 UTC (permalink / raw
To: gentoo-commits
commit: 20c656742979f17385161643e03e9d7a64d3d72d
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 14 03:53:11 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Sep 14 03:55:08 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20c65674
net-libs/liboauth: adapt to curl dropping NSS support
Upstream recommended NSS in the past for licencing reasons but w/ OpenSSL 3 that's
no longer a problem, plus curl >= 8.3 doesn't support NSS anymore.
* In stable (r1->r2), just adapt in the naive way wrt USE dep default on curl
now the flag is gone for NSS.
*
Signed-off-by: Sam James <sam <AT> gentoo.org>
.../{liboauth-1.0.3-r1.ebuild => liboauth-1.0.3-r2.ebuild} | 2 +-
.../{liboauth-1.0.3-r1.ebuild => liboauth-1.0.3-r3.ebuild} | 12 +++++++-----
2 files changed, 8 insertions(+), 6 deletions(-)
diff --git a/net-libs/liboauth/liboauth-1.0.3-r1.ebuild b/net-libs/liboauth/liboauth-1.0.3-r2.ebuild
similarity index 97%
copy from net-libs/liboauth/liboauth-1.0.3-r1.ebuild
copy to net-libs/liboauth/liboauth-1.0.3-r2.ebuild
index 6a60bfa23920..5e47ba416dae 100644
--- a/net-libs/liboauth/liboauth-1.0.3-r1.ebuild
+++ b/net-libs/liboauth/liboauth-1.0.3-r2.ebuild
@@ -25,7 +25,7 @@ RDEPEND="
nss? (
dev-libs/nss
curl? ( || (
- net-misc/curl[ssl,curl_ssl_nss]
+ net-misc/curl[ssl,curl_ssl_nss(-)]
net-misc/curl[-ssl]
) )
)
diff --git a/net-libs/liboauth/liboauth-1.0.3-r1.ebuild b/net-libs/liboauth/liboauth-1.0.3-r3.ebuild
similarity index 75%
rename from net-libs/liboauth/liboauth-1.0.3-r1.ebuild
rename to net-libs/liboauth/liboauth-1.0.3-r3.ebuild
index 6a60bfa23920..a1ed30b8023b 100644
--- a/net-libs/liboauth/liboauth-1.0.3-r1.ebuild
+++ b/net-libs/liboauth/liboauth-1.0.3-r3.ebuild
@@ -9,9 +9,10 @@ SRC_URI="mirror://sourceforge/project/${PN}/${P}.tar.gz"
LICENSE="|| ( GPL-2 MIT )"
SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv sparc x86 ~x64-macos"
-# Upstream recommend NSS by default for licencing reasons (may change w/ openssl 3?)
-IUSE="bindist curl doc +nss"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 ~x64-macos"
+# Upstream recommended NSS in the past for licencing reasons but w/ OpenSSL 3 that's
+# no longer a problem, plus curl >= 8.3 doesn't support NSS anymore.
+IUSE="bindist curl doc nss"
REQUIRED_USE="bindist? ( nss )"
PATCHES=(
@@ -20,17 +21,18 @@ PATCHES=(
"${FILESDIR}"/${PN}-1.0.3-openssl-1.1_2.patch
)
+# TODO: Drop curl + nss support entirely given it doesn't make sense anymore
RDEPEND="
curl? ( net-misc/curl )
nss? (
dev-libs/nss
curl? ( || (
- net-misc/curl[ssl,curl_ssl_nss]
+ net-misc/curl[ssl,curl_ssl_nss(-)]
net-misc/curl[-ssl]
) )
)
!nss? (
- dev-libs/openssl:=
+ >=dev-libs/openssl-3:=
curl? ( || (
net-misc/curl[ssl,curl_ssl_openssl]
net-misc/curl[-ssl]
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/liboauth/
@ 2023-11-25 5:46 Sam James
0 siblings, 0 replies; 32+ messages in thread
From: Sam James @ 2023-11-25 5:46 UTC (permalink / raw
To: gentoo-commits
commit: d4e42553296bbf9aa78fd502279c3193faeb039f
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 25 05:41:37 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Nov 25 05:42:27 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4e42553
net-libs/liboauth: cleanup curl_ssl_nss cruft
curl removed this upstream a few releases ago, and all releases are now gone from
::gentoo.
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-libs/liboauth/liboauth-1.0.3-r4.ebuild | 68 ++++++++++++++++++++++++++++++
1 file changed, 68 insertions(+)
diff --git a/net-libs/liboauth/liboauth-1.0.3-r4.ebuild b/net-libs/liboauth/liboauth-1.0.3-r4.ebuild
new file mode 100644
index 000000000000..1d65ea10de65
--- /dev/null
+++ b/net-libs/liboauth/liboauth-1.0.3-r4.ebuild
@@ -0,0 +1,68 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="C library implementing the OAuth secure authentication protocol"
+HOMEPAGE="https://liboauth.sourceforge.io/"
+SRC_URI="mirror://sourceforge/project/${PN}/${P}.tar.gz"
+
+LICENSE="|| ( GPL-2 MIT )"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 ~x64-macos"
+IUSE="curl doc"
+
+PATCHES=(
+ "${FILESDIR}"/${PN}-1.0.1-doxygen-out-of-tree.patch
+ "${FILESDIR}"/${PN}-1.0.3-openssl-1.1.patch
+ "${FILESDIR}"/${PN}-1.0.3-openssl-1.1_2.patch
+)
+
+RDEPEND="
+ >=dev-libs/openssl-3:=
+ curl? (
+ net-misc/curl
+ || (
+ net-misc/curl[ssl,curl_ssl_openssl]
+ net-misc/curl[-ssl]
+ )
+ )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+ virtual/pkgconfig
+ doc? (
+ app-doc/doxygen
+ media-gfx/graphviz
+ media-fonts/freefont
+ )
+"
+
+DOCS=( AUTHORS ChangeLog LICENSE.OpenSSL README )
+
+src_configure() {
+ local myeconfargs=(
+ # Upstream recommended NSS in the past for licencing reasons but w/ OpenSSL 3 that's
+ # no longer a problem, plus curl >= 8.3 doesn't support NSS anymore.
+ --disable-nss
+ $(use_enable !curl curl)
+ $(use_enable curl libcurl)
+ )
+ econf "${myeconfargs[@]}"
+}
+
+src_compile() {
+ default
+
+ if use doc ; then
+ # make sure fonts are found
+ export DOTFONTPATH="${EPREFIX}"/usr/share/fonts/freefont-ttf
+ emake dox
+ fi
+}
+
+src_install() {
+ use doc && HTML_DOCS=( doc/html/. )
+ default
+ find "${ED}" -name "*.la" -delete || die
+}
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/liboauth/
@ 2023-12-29 18:08 Arthur Zamarin
0 siblings, 0 replies; 32+ messages in thread
From: Arthur Zamarin @ 2023-12-29 18:08 UTC (permalink / raw
To: gentoo-commits
commit: 8de85d1970a79602b463aa4fcd02745d25b6a475
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 29 18:08:35 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Dec 29 18:08:38 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8de85d19
net-libs/liboauth: Stabilize 1.0.3-r4 ppc64, #920952
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
net-libs/liboauth/liboauth-1.0.3-r4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-libs/liboauth/liboauth-1.0.3-r4.ebuild b/net-libs/liboauth/liboauth-1.0.3-r4.ebuild
index 1d65ea10de65..22846e5b56e9 100644
--- a/net-libs/liboauth/liboauth-1.0.3-r4.ebuild
+++ b/net-libs/liboauth/liboauth-1.0.3-r4.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://sourceforge/project/${PN}/${P}.tar.gz"
LICENSE="|| ( GPL-2 MIT )"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 ~x64-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ppc64 ~riscv ~sparc ~x86 ~x64-macos"
IUSE="curl doc"
PATCHES=(
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/liboauth/
@ 2023-12-29 19:22 Arthur Zamarin
0 siblings, 0 replies; 32+ messages in thread
From: Arthur Zamarin @ 2023-12-29 19:22 UTC (permalink / raw
To: gentoo-commits
commit: 21ec87584ca10857f7ca79cc7b05d30c22e4a71b
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 29 19:22:37 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Dec 29 19:22:37 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21ec8758
net-libs/liboauth: Stabilize 1.0.3-r4 sparc, #920952
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
net-libs/liboauth/liboauth-1.0.3-r4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-libs/liboauth/liboauth-1.0.3-r4.ebuild b/net-libs/liboauth/liboauth-1.0.3-r4.ebuild
index 22846e5b56e9..a20b0f661f7b 100644
--- a/net-libs/liboauth/liboauth-1.0.3-r4.ebuild
+++ b/net-libs/liboauth/liboauth-1.0.3-r4.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://sourceforge/project/${PN}/${P}.tar.gz"
LICENSE="|| ( GPL-2 MIT )"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ppc64 ~riscv ~sparc ~x86 ~x64-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ppc64 ~riscv sparc ~x86 ~x64-macos"
IUSE="curl doc"
PATCHES=(
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/liboauth/
@ 2023-12-29 21:41 Sam James
0 siblings, 0 replies; 32+ messages in thread
From: Sam James @ 2023-12-29 21:41 UTC (permalink / raw
To: gentoo-commits
commit: 922609fd5dc3f4ff0726dec827c564f47a9ef83a
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 29 21:40:48 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Dec 29 21:40:48 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=922609fd
net-libs/liboauth: Stabilize 1.0.3-r4 amd64, #920952
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-libs/liboauth/liboauth-1.0.3-r4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-libs/liboauth/liboauth-1.0.3-r4.ebuild b/net-libs/liboauth/liboauth-1.0.3-r4.ebuild
index a20b0f661f7b..9117147e1e32 100644
--- a/net-libs/liboauth/liboauth-1.0.3-r4.ebuild
+++ b/net-libs/liboauth/liboauth-1.0.3-r4.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://sourceforge/project/${PN}/${P}.tar.gz"
LICENSE="|| ( GPL-2 MIT )"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ppc64 ~riscv sparc ~x86 ~x64-macos"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ppc64 ~riscv sparc ~x86 ~x64-macos"
IUSE="curl doc"
PATCHES=(
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/liboauth/
@ 2023-12-29 22:43 Sam James
0 siblings, 0 replies; 32+ messages in thread
From: Sam James @ 2023-12-29 22:43 UTC (permalink / raw
To: gentoo-commits
commit: 496f92aaf481676cded3054513e7b453179f6adb
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 29 22:42:41 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Dec 29 22:42:41 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=496f92aa
net-libs/liboauth: Stabilize 1.0.3-r4 arm64, #920952
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-libs/liboauth/liboauth-1.0.3-r4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-libs/liboauth/liboauth-1.0.3-r4.ebuild b/net-libs/liboauth/liboauth-1.0.3-r4.ebuild
index 1b2e3e0dbad8..38ff56d216d3 100644
--- a/net-libs/liboauth/liboauth-1.0.3-r4.ebuild
+++ b/net-libs/liboauth/liboauth-1.0.3-r4.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://sourceforge/project/${PN}/${P}.tar.gz"
LICENSE="|| ( GPL-2 MIT )"
SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~ppc ppc64 ~riscv sparc ~x86 ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~ppc ppc64 ~riscv sparc ~x86 ~x64-macos"
IUSE="curl doc"
PATCHES=(
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/liboauth/
@ 2023-12-29 22:43 Sam James
0 siblings, 0 replies; 32+ messages in thread
From: Sam James @ 2023-12-29 22:43 UTC (permalink / raw
To: gentoo-commits
commit: 84285736712af06e2da8e5176a3e350bfe7dcea7
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 29 22:42:40 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Dec 29 22:42:40 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84285736
net-libs/liboauth: Stabilize 1.0.3-r4 arm, #920952
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-libs/liboauth/liboauth-1.0.3-r4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-libs/liboauth/liboauth-1.0.3-r4.ebuild b/net-libs/liboauth/liboauth-1.0.3-r4.ebuild
index 9117147e1e32..1b2e3e0dbad8 100644
--- a/net-libs/liboauth/liboauth-1.0.3-r4.ebuild
+++ b/net-libs/liboauth/liboauth-1.0.3-r4.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://sourceforge/project/${PN}/${P}.tar.gz"
LICENSE="|| ( GPL-2 MIT )"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ppc64 ~riscv sparc ~x86 ~x64-macos"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~ppc ppc64 ~riscv sparc ~x86 ~x64-macos"
IUSE="curl doc"
PATCHES=(
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/liboauth/
@ 2024-09-15 17:16 Petr Vaněk
0 siblings, 0 replies; 32+ messages in thread
From: Petr Vaněk @ 2024-09-15 17:16 UTC (permalink / raw
To: gentoo-commits
commit: b04bc54e41010a7d42536a16766bd41ca6103c22
Author: Petr Vaněk <arkamar <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 15 17:13:36 2024 +0000
Commit: Petr Vaněk <arkamar <AT> gentoo <DOT> org>
CommitDate: Sun Sep 15 17:16:34 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b04bc54e
net-libs/liboauth: drop 1.0.3-r2, 1.0.3-r3
Signed-off-by: Petr Vaněk <arkamar <AT> gentoo.org>
net-libs/liboauth/liboauth-1.0.3-r2.ebuild | 76 -----------------------------
net-libs/liboauth/liboauth-1.0.3-r3.ebuild | 78 ------------------------------
net-libs/liboauth/metadata.xml | 8 ---
3 files changed, 162 deletions(-)
diff --git a/net-libs/liboauth/liboauth-1.0.3-r2.ebuild b/net-libs/liboauth/liboauth-1.0.3-r2.ebuild
deleted file mode 100644
index 0c8ec466d97f..000000000000
--- a/net-libs/liboauth/liboauth-1.0.3-r2.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="C library implementing the OAuth secure authentication protocol"
-HOMEPAGE="https://liboauth.sourceforge.io/"
-SRC_URI="https://downloads.sourceforge.net/project/${PN}/${P}.tar.gz"
-
-LICENSE="|| ( GPL-2 MIT )"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv sparc x86 ~x64-macos"
-# Upstream recommend NSS by default for licencing reasons (may change w/ openssl 3?)
-IUSE="bindist curl doc +nss"
-REQUIRED_USE="bindist? ( nss )"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-1.0.1-doxygen-out-of-tree.patch
- "${FILESDIR}"/${PN}-1.0.3-openssl-1.1.patch
- "${FILESDIR}"/${PN}-1.0.3-openssl-1.1_2.patch
-)
-
-RDEPEND="
- curl? ( net-misc/curl )
- nss? (
- dev-libs/nss
- curl? ( || (
- net-misc/curl[ssl,curl_ssl_nss(-)]
- net-misc/curl[-ssl]
- ) )
- )
- !nss? (
- dev-libs/openssl:=
- curl? ( || (
- net-misc/curl[ssl,curl_ssl_openssl]
- net-misc/curl[-ssl]
- ) )
- )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
- virtual/pkgconfig
- doc? (
- app-text/doxygen
- media-gfx/graphviz
- media-fonts/freefont
- )
-"
-
-DOCS=( AUTHORS ChangeLog LICENSE.OpenSSL README )
-
-src_configure() {
- local myeconfargs=(
- --disable-static
- $(use_enable !curl curl)
- $(use_enable curl libcurl)
- $(use_enable nss)
- )
- econf "${myeconfargs[@]}"
-}
-
-src_compile() {
- default
-
- if use doc ; then
- # make sure fonts are found
- export DOTFONTPATH="${EPREFIX}"/usr/share/fonts/freefont-ttf
- emake dox
- fi
-}
-
-src_install() {
- use doc && HTML_DOCS=( doc/html/. )
- default
- find "${ED}" -name "*.la" -delete || die
-}
diff --git a/net-libs/liboauth/liboauth-1.0.3-r3.ebuild b/net-libs/liboauth/liboauth-1.0.3-r3.ebuild
deleted file mode 100644
index 84fff9020d25..000000000000
--- a/net-libs/liboauth/liboauth-1.0.3-r3.ebuild
+++ /dev/null
@@ -1,78 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="C library implementing the OAuth secure authentication protocol"
-HOMEPAGE="https://liboauth.sourceforge.io/"
-SRC_URI="https://downloads.sourceforge.net/project/${PN}/${P}.tar.gz"
-
-LICENSE="|| ( GPL-2 MIT )"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 ~x64-macos"
-# Upstream recommended NSS in the past for licencing reasons but w/ OpenSSL 3 that's
-# no longer a problem, plus curl >= 8.3 doesn't support NSS anymore.
-IUSE="bindist curl doc nss"
-REQUIRED_USE="bindist? ( nss )"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-1.0.1-doxygen-out-of-tree.patch
- "${FILESDIR}"/${PN}-1.0.3-openssl-1.1.patch
- "${FILESDIR}"/${PN}-1.0.3-openssl-1.1_2.patch
-)
-
-# TODO: Drop curl + nss support entirely given it doesn't make sense anymore
-RDEPEND="
- curl? ( net-misc/curl )
- nss? (
- dev-libs/nss
- curl? ( || (
- net-misc/curl[ssl,curl_ssl_nss(-)]
- net-misc/curl[-ssl]
- ) )
- )
- !nss? (
- >=dev-libs/openssl-3:=
- curl? ( || (
- net-misc/curl[ssl,curl_ssl_openssl]
- net-misc/curl[-ssl]
- ) )
- )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
- virtual/pkgconfig
- doc? (
- app-text/doxygen
- media-gfx/graphviz
- media-fonts/freefont
- )
-"
-
-DOCS=( AUTHORS ChangeLog LICENSE.OpenSSL README )
-
-src_configure() {
- local myeconfargs=(
- --disable-static
- $(use_enable !curl curl)
- $(use_enable curl libcurl)
- $(use_enable nss)
- )
- econf "${myeconfargs[@]}"
-}
-
-src_compile() {
- default
-
- if use doc ; then
- # make sure fonts are found
- export DOTFONTPATH="${EPREFIX}"/usr/share/fonts/freefont-ttf
- emake dox
- fi
-}
-
-src_install() {
- use doc && HTML_DOCS=( doc/html/. )
- default
- find "${ED}" -name "*.la" -delete || die
-}
diff --git a/net-libs/liboauth/metadata.xml b/net-libs/liboauth/metadata.xml
index c86aefa0a482..e03bf3e62efb 100644
--- a/net-libs/liboauth/metadata.xml
+++ b/net-libs/liboauth/metadata.xml
@@ -3,14 +3,6 @@
<pkgmetadata>
<!-- maintainer-needed -->
<use>
- <flag name="nss">
- Use Mozilla NSS (<pkg>dev-libs/nss</pkg>) as hash library; if
- this is disabled, <pkg>dev-libs/openssl</pkg> is used instead.
- </flag>
- <flag name="bindist">
- Alias for the nss USE flag, since there are license compliancy
- trouble when using OpenSSL.
- </flag>
<flag name="curl">
If enabled, <pkg>net-misc/curl</pkg> is used thorugh the libcurl
library; if it's not, the curl command is used instead. Some
^ permalink raw reply related [flat|nested] 32+ messages in thread
end of thread, other threads:[~2024-09-15 17:16 UTC | newest]
Thread overview: 32+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-04-01 19:58 [gentoo-commits] repo/gentoo:master commit in: net-libs/liboauth/ Thomas Deutschmann
-- strict thread matches above, loose matches on Subject: below --
2024-09-15 17:16 Petr Vaněk
2023-12-29 22:43 Sam James
2023-12-29 22:43 Sam James
2023-12-29 21:41 Sam James
2023-12-29 19:22 Arthur Zamarin
2023-12-29 18:08 Arthur Zamarin
2023-11-25 5:46 Sam James
2023-09-14 3:55 Sam James
2023-07-27 5:46 WANG Xuerui
2023-05-27 10:47 Sam James
2022-01-27 9:30 David Seifert
2021-05-02 10:16 Mikle Kolyada
2019-05-22 21:20 Aaron Bauman
2019-05-04 9:50 Pacho Ramos
2019-05-03 20:30 Sergei Trofimovich
2019-05-02 22:11 Mikle Kolyada
2019-05-02 22:11 Mikle Kolyada
2019-04-01 20:14 Pacho Ramos
2019-03-25 22:18 Sergei Trofimovich
2019-03-24 20:25 Sergei Trofimovich
2019-03-24 20:12 Sergei Trofimovich
2019-03-24 19:44 Sergei Trofimovich
2019-03-06 19:13 Aaron Bauman
2017-06-27 15:48 Alexis Ballier
2017-03-18 7:45 Michael Palimaka
2017-01-31 14:40 Jeroen Roovers
2017-01-08 18:21 Markus Meier
2016-11-27 18:31 Pacho Ramos
2016-11-27 17:51 Tobias Klausmann
2016-11-09 8:59 Pacho Ramos
2016-11-09 8:59 Pacho Ramos
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox