From: "Eray Aslan" <eras@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/heimdal/
Date: Tue, 19 Sep 2023 16:04:18 +0000 (UTC) [thread overview]
Message-ID: <1695139441.91af7c9c8b9da614355ab51aef288243db51f5c6.eras@gentoo> (raw)
commit: 91af7c9c8b9da614355ab51aef288243db51f5c6
Author: Eray Aslan <eras <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 19 15:56:12 2023 +0000
Commit: Eray Aslan <eras <AT> gentoo <DOT> org>
CommitDate: Tue Sep 19 16:04:01 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91af7c9c
app-crypt/heimdal: remove openssl support
heimdal does not support openssl-3. remove openssl support since
openssl-1.1 is EOL. This is not as bad as it sounds since we fall back
to heimdal's hcrypto library
Closes: https://bugs.gentoo.org/913718
Signed-off-by: Eray Aslan <eras <AT> gentoo.org>
app-crypt/heimdal/heimdal-7.8.0-r3.ebuild | 188 ++++++++++++++++++++++++++++++
1 file changed, 188 insertions(+)
diff --git a/app-crypt/heimdal/heimdal-7.8.0-r3.ebuild b/app-crypt/heimdal/heimdal-7.8.0-r3.ebuild
new file mode 100644
index 000000000000..8408240047cb
--- /dev/null
+++ b/app-crypt/heimdal/heimdal-7.8.0-r3.ebuild
@@ -0,0 +1,188 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{11..12} )
+VIRTUALX_REQUIRED="manual"
+
+inherit autotools db-use multilib-minimal python-any-r1 virtualx flag-o-matic
+
+MY_P="${P}"
+DESCRIPTION="Kerberos 5 implementation from KTH"
+HOMEPAGE="https://www.heimdal.software/"
+SRC_URI="https://github.com/${PN}/${PN}/releases/download/${P}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+IUSE="afs +berkdb caps gdbm hdb-ldap +lmdb otp selinux static-libs test X"
+RESTRICT="!test? ( test )"
+
+# 717740
+REQUIRED_USE="otp? ( berkdb )"
+
+CDEPEND="
+ virtual/libcrypt:=[${MULTILIB_USEDEP}]
+ berkdb? ( >=sys-libs/db-4.8.30-r1:*[${MULTILIB_USEDEP}] )
+ gdbm? ( >=sys-libs/gdbm-1.10-r1:=[${MULTILIB_USEDEP}] )
+ lmdb? ( dev-db/lmdb:= )
+ caps? ( sys-libs/libcap-ng )
+ >=dev-db/sqlite-3.8.2[${MULTILIB_USEDEP}]
+ >=sys-fs/e2fsprogs-1.46.4-r51[${MULTILIB_USEDEP}]
+ sys-libs/ncurses:0=
+ >=sys-libs/readline-6.2_p5-r1:0=[${MULTILIB_USEDEP}]
+ afs? ( net-fs/openafs )
+ hdb-ldap? ( >=net-nds/openldap-2.3.0:= )
+ X? (
+ x11-libs/libX11
+ x11-libs/libXau
+ x11-libs/libXt
+ )
+ !!app-crypt/mit-krb5
+ !!app-crypt/mit-krb5-appl"
+
+DEPEND="${CDEPEND}
+ ${PYTHON_DEPS}
+ dev-perl/JSON
+ virtual/pkgconfig
+ sys-apps/texinfo
+ >=sys-devel/autoconf-2.62
+ test? ( X? ( ${VIRTUALX_DEPEND} ) )"
+
+RDEPEND="${CDEPEND}
+ selinux? ( sec-policy/selinux-kerberos )"
+
+MULTILIB_WRAPPED_HEADERS=(
+ /usr/include/krb5-types.h
+ /usr/include/cms_asn1.h
+ /usr/include/digest_asn1.h
+ /usr/include/hdb_asn1.h
+ /usr/include/krb5_asn1.h
+ /usr/include/pkcs12_asn1.h
+ /usr/include/pkinit_asn1.h
+ /usr/include/rfc2459_asn1.h
+)
+
+MULTILIB_CHOST_TOOLS=(
+ /usr/bin/krb5-config
+)
+
+PATCHES=(
+ "${FILESDIR}/heimdal_disable-check-iprop.patch"
+ "${FILESDIR}/heimdal_tinfo.patch"
+ "${FILESDIR}/heimdal_build-headers-before-use.patch"
+ "${FILESDIR}/heimdal_fix-db60.patch"
+ "${FILESDIR}/heimdal-7.8.0-CVE-2022-45142.patch"
+ "${FILESDIR}/heimdal-7.8.0-configure-clang16.patch"
+)
+
+src_prepare() {
+ default
+ eautoreconf
+}
+
+src_configure() {
+ # QA
+ append-flags -fno-strict-aliasing
+
+ multilib-minimal_src_configure
+}
+
+multilib_src_configure() {
+ local myeconfargs=(
+ --enable-kcm
+ --disable-osfc2
+ --enable-shared
+ --with-libintl="${EPREFIX}"/usr
+ --with-readline="${EPREFIX}"/usr
+ --with-sqlite3="${EPREFIX}"/usr
+ --libexecdir="${EPREFIX}"/usr/sbin
+ --enable-pthread-support
+ --enable-kx509
+ --enable-pk-init
+ --with-ipv6
+ --without-openssl
+ $(use_enable afs afs-support)
+ $(use_enable gdbm ndbm-db)
+ $(use_enable lmdb mdb-db)
+ $(use_enable otp)
+ $(use_enable static-libs static)
+ $(multilib_native_use_with caps capng)
+ $(multilib_native_use_with hdb-ldap openldap "${EPREFIX}"/usr)
+ $(multilib_native_use_with X x)
+ )
+ if use berkdb; then
+ myeconfargs+=(
+ --with-berkeley-db
+ --with-berkeley-db-include="$(db_includedir)"
+ )
+ else
+ myeconfargs+=(
+ --without-berkeley-db
+ )
+ fi
+
+ CONFIG_SHELL="${BROOT}"/bin/bash ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
+}
+
+multilib_src_compile() {
+ if multilib_is_native_abi; then
+ emake
+ else
+ emake -C include
+ emake -C lib
+ emake -C kdc
+ emake -C tools
+ emake -C tests/plugin
+ fi
+}
+
+multilib_src_test() {
+ multilib_is_native_abi && emake -j1 check
+}
+
+multilib_src_install() {
+ if multilib_is_native_abi; then
+ INSTALL_CATPAGES="no" emake DESTDIR="${D}" install
+ else
+ emake -C include DESTDIR="${D}" install
+ emake -C lib DESTDIR="${D}" install
+ emake -C kdc DESTDIR="${D}" install
+ emake -C tools DESTDIR="${D}" install
+ emake -C tests/plugin DESTDIR="${D}" install
+ fi
+}
+
+multilib_src_install_all() {
+ dodoc ChangeLog* README NEWS TODO
+
+ # client rename
+ mv "${ED}"/usr/share/man/man1/{,k}su.1
+ mv "${ED}"/usr/bin/{,k}su
+
+ newinitd "${FILESDIR}"/heimdal-kdc.initd-r2 heimdal-kdc
+ newinitd "${FILESDIR}"/heimdal-kadmind.initd-r2 heimdal-kadmind
+ newinitd "${FILESDIR}"/heimdal-kpasswdd.initd-r2 heimdal-kpasswdd
+ newinitd "${FILESDIR}"/heimdal-kcm.initd-r1 heimdal-kcm
+
+ newconfd "${FILESDIR}"/heimdal-kdc.confd heimdal-kdc
+ newconfd "${FILESDIR}"/heimdal-kadmind.confd heimdal-kadmind
+ newconfd "${FILESDIR}"/heimdal-kpasswdd.confd heimdal-kpasswdd
+ newconfd "${FILESDIR}"/heimdal-kcm.confd heimdal-kcm
+
+ insinto /etc
+ newins "${S}"/krb5.conf krb5.conf.example
+
+ if use hdb-ldap; then
+ insinto /etc/openldap/schema
+ doins "${S}/lib/hdb/hdb.schema"
+ fi
+
+ if ! use static-libs ; then
+ find "${ED}" -name "*.la" -delete || die
+ fi
+
+ # default database dir
+ keepdir /var/heimdal
+}
next reply other threads:[~2023-09-19 16:04 UTC|newest]
Thread overview: 81+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-09-19 16:04 Eray Aslan [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-09-12 6:13 [gentoo-commits] repo/gentoo:master commit in: app-crypt/heimdal/ Arthur Zamarin
2024-08-26 19:06 Mike Gilbert
2023-09-19 16:04 Eray Aslan
2023-08-16 17:49 Eray Aslan
2023-08-02 16:23 Sam James
2023-08-02 16:23 Sam James
2023-08-02 16:23 Sam James
2023-08-02 16:23 Sam James
2023-04-01 0:55 Sam James
2023-03-29 7:19 Eray Aslan
2023-03-19 17:36 Arthur Zamarin
2023-02-09 3:24 Sam James
2023-02-05 15:21 Eray Aslan
2022-11-28 11:44 Eray Aslan
2022-11-28 11:44 Eray Aslan
2022-11-25 12:12 Arthur Zamarin
2022-11-25 12:12 Arthur Zamarin
2022-11-25 12:12 Arthur Zamarin
2022-11-25 12:12 Arthur Zamarin
2022-11-18 0:48 Sam James
2022-11-15 22:58 Eray Aslan
2022-05-19 9:50 Eray Aslan
2022-04-17 15:09 David Seifert
2022-03-23 0:14 Sam James
2021-12-31 17:50 David Seifert
2021-12-16 10:18 Eray Aslan
2021-12-14 2:05 Sam James
2021-12-14 2:05 Sam James
2021-05-31 20:18 Michał Górny
2021-05-02 17:22 Mikle Kolyada
2021-03-25 19:03 Ben Kohler
2021-03-08 11:02 Sam James
2021-01-18 3:32 Sam James
2021-01-03 9:14 Sam James
2020-12-30 0:24 Sam James
2020-12-30 0:24 Sam James
2020-11-10 8:46 Eray Aslan
2020-09-08 6:36 Eray Aslan
2020-09-07 8:47 Sergei Trofimovich
2020-04-16 19:12 Sergei Trofimovich
2019-08-28 9:11 David Seifert
2019-08-13 10:30 Agostino Sarubbo
2019-06-13 15:39 Eray Aslan
2019-06-13 15:39 Eray Aslan
2019-06-13 12:43 Eray Aslan
2019-06-13 10:36 Eray Aslan
2019-06-07 10:05 Agostino Sarubbo
2019-05-31 20:29 Sergei Trofimovich
2019-05-26 9:48 Mikle Kolyada
2019-05-19 20:32 Mikle Kolyada
2019-05-18 15:40 Aaron Bauman
2019-01-07 17:00 Lars Wendler
2018-06-12 15:38 Mikle Kolyada
2018-04-22 22:46 Aaron Bauman
2018-04-22 22:40 Matt Turner
2018-01-29 8:22 Tobias Klausmann
2017-12-28 21:55 Sergei Trofimovich
2017-12-21 19:28 Markus Meier
2017-12-14 20:27 Agostino Sarubbo
2017-12-13 7:40 Sergei Trofimovich
2017-12-12 16:35 Thomas Deutschmann
2017-12-12 9:10 Eray Aslan
2017-12-10 10:17 Pacho Ramos
2017-10-28 20:31 Sergei Trofimovich
2017-10-22 16:28 Patrice Clement
2017-09-30 6:30 Sergei Trofimovich
2017-08-18 21:02 Thomas Deutschmann
2017-07-25 18:52 Markus Meier
2017-07-16 11:08 Tobias Klausmann
2017-07-15 11:29 Sergei Trofimovich
2017-07-15 9:57 Tobias Klausmann
2017-07-13 5:48 Eray Aslan
2017-05-04 6:52 Eray Aslan
2016-12-23 12:03 Eray Aslan
2016-12-22 14:01 Eray Aslan
2016-12-22 14:01 Eray Aslan
2016-12-14 6:10 Eray Aslan
2016-12-01 12:50 Eray Aslan
2016-10-09 7:47 Pacho Ramos
2015-08-16 14:20 Justin Lecher
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=1695139441.91af7c9c8b9da614355ab51aef288243db51f5c6.eras@gentoo \
--to=eras@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