From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/gsasl/
Date: Fri, 1 Jan 2021 22:53:45 +0000 (UTC) [thread overview]
Message-ID: <1609541621.73438e5dfbdbe450e1985efb7b17ef0e4512a79c.sam@gentoo> (raw)
commit: 73438e5dfbdbe450e1985efb7b17ef0e4512a79c
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 1 22:53:04 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Jan 1 22:53:41 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73438e5d
net-misc/gsasl: bump to 1.10.0
Drops likely-obsolete patch for referenced bug.
Bug: https://bugs.gentoo.org/359005
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-misc/gsasl/Manifest | 1 +
net-misc/gsasl/gsasl-1.10.0.ebuild | 85 ++++++++++++++++++++++++++++++++++++++
2 files changed, 86 insertions(+)
diff --git a/net-misc/gsasl/Manifest b/net-misc/gsasl/Manifest
index 251cd278af3..fc2ecab2b15 100644
--- a/net-misc/gsasl/Manifest
+++ b/net-misc/gsasl/Manifest
@@ -1,2 +1,3 @@
+DIST gsasl-1.10.0.tar.gz 5946076 BLAKE2B eedbdd6a080af34581c6e793d5d6db4ebbbc10c1a31dba1edc632de78a529fc2acf2b5e4df3a7bc9a721c6bdb819aade85d65245dbb14405413b933220454a79 SHA512 8b1dc87e85dbfd0255b3b43c4b7f9c2e896cb03efe4cd4af86393b62fd193665aae4ce59e66db736722e32babfcea6d4f6ddd3c5f069dcc4210f7e9531043e4a
DIST gsasl-1.8.0.tar.gz 4914837 BLAKE2B 89cae140bb503556003036a92dfdca1ad7adb6ca46826a7309dcc39aca5a070669f4c24005ddaa1c5f5d4d56451d7a5c5164a4333542b0af1201f3fb210501e8 SHA512 711bd87d27656834ae7e19b22a76db2b1db37dd25999cd303fe8439e23e74e87fd1474c5db1b5f97e9ab75437eeeb6167a752e9191f364f530eeabb6cddda36f
DIST gsasl-1.8.1.tar.gz 5774550 BLAKE2B 0144b0d7b2750686f3447a9d154a2d0b7fa5261b614bce74d8fdedaca140f9d964868b57f1a67cf2f5fc446c5715bae3dcdb4e06a7bedc5b66d50fa52f62e93b SHA512 8973f5af12cc17aae76a4a2ea887d17e74e48b1ce896dfd62fde8cb874ed965d77c62d671ff86ce3217158e58a7a521b7fde9ea606f73c3a912a8973f1b204cb
diff --git a/net-misc/gsasl/gsasl-1.10.0.ebuild b/net-misc/gsasl/gsasl-1.10.0.ebuild
new file mode 100644
index 00000000000..abf23f7845d
--- /dev/null
+++ b/net-misc/gsasl/gsasl-1.10.0.ebuild
@@ -0,0 +1,85 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools
+
+DESCRIPTION="The GNU SASL client, server, and library"
+HOMEPAGE="https://www.gnu.org/software/gsasl/"
+SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
+IUSE="doc gcrypt idn kerberos nls ntlm static-libs +threads"
+
+DEPEND="
+ gcrypt? ( dev-libs/libgcrypt:0= )
+ idn? ( net-dns/libidn:= )
+ kerberos? ( virtual/krb5 )
+ nls? ( >=sys-devel/gettext-0.18.1 )
+ ntlm? ( net-libs/libntlm )
+"
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+ default
+
+ sed -i -e '/gl_WARN_ADD(\[-Werror/d' \
+ -e 's/ -Werror//' configure.ac || die
+ sed -i -e 's/ -Werror//' lib/configure.ac || die
+
+ eautoreconf
+}
+
+src_configure() {
+ local krb5_impl
+
+ if use kerberos; then
+ krb5_impl="--with-gssapi-impl="
+
+ # These are the two providers of virtual/krb5
+ if has_version app-crypt/mit-krb5; then
+ krb5_impl+="mit"
+ else
+ krb5_impl+="heimdal"
+ fi
+ fi
+
+ econf \
+ --enable-client \
+ --enable-server \
+ --disable-valgrind-tests \
+ --disable-rpath \
+ --without-libshishi \
+ --without-libgss \
+ --disable-kerberos_v5 \
+ $(use_enable kerberos gssapi) \
+ ${krb5_impl} \
+ $(use_enable kerberos gs2) \
+ $(use_with gcrypt libgcrypt) \
+ $(use_enable nls) \
+ $(use_with idn stringprep) \
+ $(use_enable ntlm) \
+ $(use_with ntlm libntlm) \
+ $(use_enable static-libs static) \
+ $(use_enable threads)
+}
+
+src_install() {
+ default
+
+ if ! use static-libs; then
+ rm -f "${ED}"/usr/lib*/lib*.la || die
+ fi
+
+ doman doc/gsasl.1 doc/man/*.3
+
+ if use doc; then
+ dodoc doc/*.{eps,ps,pdf}
+ docinto html
+ dodoc doc/*.html
+ docinto examples
+ dodoc examples/*.c
+ fi
+}
next reply other threads:[~2021-01-01 22:53 UTC|newest]
Thread overview: 51+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-01-01 22:53 Sam James [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-04-02 11:40 [gentoo-commits] repo/gentoo:master commit in: net-misc/gsasl/ Matt Jolly
2025-03-31 21:11 Sam James
2025-03-31 21:11 Sam James
2024-11-25 20:42 Sam James
2024-11-23 18:27 Michał Górny
2024-11-23 18:02 Arthur Zamarin
2024-09-12 16:16 Jakov Smolić
2024-03-16 10:23 Arthur Zamarin
2024-03-15 20:22 Sam James
2024-03-15 20:11 Arthur Zamarin
2024-03-15 20:07 Arthur Zamarin
2024-03-15 20:04 Arthur Zamarin
2024-01-03 9:27 Sam James
2023-04-07 1:49 Sam James
2023-04-06 4:42 Sam James
2022-09-19 6:42 Michał Górny
2022-09-03 16:28 Sam James
2022-08-16 7:45 Agostino Sarubbo
2022-08-16 7:44 Agostino Sarubbo
2022-07-19 8:59 Agostino Sarubbo
2022-07-19 8:58 Agostino Sarubbo
2022-07-19 8:58 Agostino Sarubbo
2022-07-19 5:53 Joonas Niilola
2022-07-19 5:53 Joonas Niilola
2022-07-18 18:52 Sam James
2022-07-18 18:52 Sam James
2022-07-18 18:45 Sam James
2022-07-18 18:39 Sam James
2022-07-16 14:33 Sam James
2022-06-30 18:16 Arthur Zamarin
2022-06-28 15:44 Arthur Zamarin
2022-06-27 11:17 WANG Xuerui
2022-06-22 16:15 Arthur Zamarin
2022-06-22 12:34 Jakov Smolić
2022-06-22 12:02 Jakov Smolić
2022-06-22 11:45 Jakov Smolić
2022-06-22 11:40 Jakov Smolić
2022-06-22 4:39 Sam James
2022-06-21 22:01 Sam James
2022-06-21 22:01 Sam James
2021-10-28 8:16 Sam James
2021-07-13 11:21 Marek Szuba
2021-02-05 12:29 Sam James
2021-02-03 3:11 Sam James
2021-02-01 13:33 Sam James
2021-02-01 5:49 Sam James
2020-12-20 16:40 Thomas Deutschmann
2020-12-17 16:41 Agostino Sarubbo
2020-12-17 8:58 Sam James
2016-08-06 16:51 Michał Górny
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1609541621.73438e5dfbdbe450e1985efb7b17ef0e4512a79c.sam@gentoo \
--to=sam@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox