From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id EA943158020 for ; Sat, 24 Dec 2022 09:16:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9DCB8E0876; Sat, 24 Dec 2022 09:16:55 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7B155E0876 for ; Sat, 24 Dec 2022 09:16:55 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 48AA7340A35 for ; Sat, 24 Dec 2022 09:16:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D3EDF779 for ; Sat, 24 Dec 2022 09:16:52 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1671873396.02910687cdf12bbdb9f4edd86dffe5d02c581434.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/c-client/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/c-client/c-client-2007f-r7.ebuild X-VCS-Directories: net-libs/c-client/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 02910687cdf12bbdb9f4edd86dffe5d02c581434 X-VCS-Branch: master Date: Sat, 24 Dec 2022 09:16:52 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 7f0c0253-4cff-4eff-95f4-9a170495002f X-Archives-Hash: 3e8403f711823ac7725cecfe8af20e69 commit: 02910687cdf12bbdb9f4edd86dffe5d02c581434 Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Dec 22 22:21:17 2022 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Dec 24 09:16:36 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02910687 net-libs/c-client: drop 2007f-r7 Closes: https://bugs.gentoo.org/888035 Signed-off-by: Andreas Sturmlechner gentoo.org> net-libs/c-client/c-client-2007f-r7.ebuild | 157 ----------------------------- 1 file changed, 157 deletions(-) diff --git a/net-libs/c-client/c-client-2007f-r7.ebuild b/net-libs/c-client/c-client-2007f-r7.ebuild deleted file mode 100644 index 7d67a4067611..000000000000 --- a/net-libs/c-client/c-client-2007f-r7.ebuild +++ /dev/null @@ -1,157 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit flag-o-matic libtool toolchain-funcs - -MY_PN=imap -MY_P="${MY_PN}-${PV}" -S=${WORKDIR}/${MY_P} - -CHAPPA_PL=115 -DESCRIPTION="UW IMAP c-client library" -HOMEPAGE="http://www.washington.edu/imap/" -SRC_URI="ftp://ftp.cac.washington.edu/imap/${MY_P}.tar.Z - chappa? ( mirror://gentoo/${P}-chappa-${CHAPPA_PL}-all.patch.gz )" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86" -IUSE="doc +ipv6 kerberos pam ssl static-libs topal chappa" - -RDEPEND=" - !net-mail/uw-imap - ssl? ( - dev-libs/openssl:0= - ) - kernel_linux? ( - pam? ( >=sys-libs/pam-0.72 ) - !pam? ( virtual/libcrypt:= ) - ) - kerberos? ( app-crypt/mit-krb5 ) -" -DEPEND="${RDEPEND}" - -PATCHES=( - # Apply a patch to only build the stuff we need for c-client - "${FILESDIR}/${PN}-2006k_GENTOO_Makefile.patch" - - # Apply patch to add the compilation of a .so for PHP - # This was previously conditional, but is more widely useful. - "${FILESDIR}/${PN}-2006k_GENTOO_amd64-so-fix.patch" - - # Respect LDFLAGS - "${FILESDIR}/${PN}-2007f-ldflags.patch" - - # openssl-1.1 build fix #647616 - "${FILESDIR}/${PN}-2007f-openssl-1.1.patch" -) - -src_prepare() { - use topal && PATCHES+=( "${FILESDIR}/${P}-topal.patch" ) - - default - - use chappa && eapply -p2 "${WORKDIR}/${P}-chappa-${CHAPPA_PL}-all.patch" - - # Tarball packed with bad file perms - chmod -R u+rwX,go-w . || die "failed to fix permissions" - - # lots of things need -fPIC, including various platforms, and this library - # generally should be built with it anyway. - append-flags -fPIC - - # Modifications so we can build it optimally and correctly - sed \ - -e "s:BASECFLAGS=\".*\":BASECFLAGS=:g" \ - -e 's:SSLDIR=/usr/local/ssl:SSLDIR=/usr:g' \ - -e 's:SSLCERTS=$(SSLDIR)/certs:SSLCERTS=/etc/ssl/certs:g' \ - -i src/osdep/unix/Makefile \ - || die "failed to fix compiler flags and SSL paths in the Makefile" - - # Make the build system more multilib aware - sed \ - -e "s:^SSLLIB=\$(SSLDIR)/lib:SSLLIB=\$(SSLDIR)/$(get_libdir):" \ - -e "s:^AFSLIB=\$(AFSDIR)/lib:AFSLIB=\$(AFSDIR)/$(get_libdir):" \ - -i src/osdep/unix/Makefile \ - || die "failed to fix our libdir in the Makefile" - - # Targets should use the Gentoo (ie linux) fs - sed -e '/^bsf:/,/^$/ s:ACTIVEFILE=.*:ACTIVEFILE=/var/lib/news/active:g' \ - -i src/osdep/unix/Makefile \ - || die "failed to fix the FreeBSD ACTIVEFILE path in the Makefile" - - # Remove the pesky checks about SSL stuff - sed -e '/read.*exit/d' -i Makefile \ - || die "failed to disable SSL warning in the Makefile" - - sed -e "s:CC=cc:CC=$(tc-getCC):" \ - -e "s:ARRC=ar:ARRC=$(tc-getAR):" \ - -e "s:RANLIB=ranlib:RANLIB=$(tc-getRANLIB):" \ - -i src/osdep/unix/Makefile \ - || die "failed to fix build flags support in the Makefile" - - elibtoolize -} - -src_compile() { - local mymake ipver ssltype target passwdtype - ipver='IP=4' - if use ipv6 ; then - ipver="IP=6" - touch ip6 || die "failed to create ip6 file" - fi - use ssl && ssltype="unix" || ssltype="none" - if use kernel_linux ; then - # Fall back to "slx" when USE=pam is not set. This ensures that - # we link in libcrypt to get the crypt() routine (bug #456928). - use pam && target=lnp passwdtype=pam || target=slx passwdtype=std - fi - use kerberos \ - && mymake="EXTRAAUTHENTICATORS=gss" \ - && EXTRALIBS="-lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err" \ - # no parallel builds supported! - emake -j1 SSLTYPE=${ssltype} $target \ - PASSWDTYPE=${passwdtype} ${ipver} ${mymake} \ - EXTRACFLAGS="${CFLAGS}" \ - EXTRALDFLAGS="${LDFLAGS}" \ - EXTRALIBS="${EXTRALIBS}" \ - GSSDIR=/usr -} - -src_install() { - if use static-libs; then - # Library binary - dolib.a c-client/c-client.a - dosym c-client.a "/usr/$(get_libdir)/libc-client.a" - fi - - # Now the shared library - dolib.so c-client/libc-client.so.1.0.0 - - dosym libc-client.so.1.0.0 "/usr/$(get_libdir)/libc-client.so" - dosym libc-client.so.1.0.0 "/usr/$(get_libdir)/libc-client.so.1" - - # Headers - insinto /usr/include/imap - doins src/osdep/unix/*.h - doins src/c-client/*.h - doins c-client/linkage.h - doins c-client/linkage.c - doins c-client/osdep.h - - if use ssl; then - echo " ssl_onceonlyinit ();" >> "${D}"/usr/include/imap/linkage.c \ - || die "failed to add ssl init statement to linkage.c" - fi - - # Documentation - dodoc README docs/*.txt docs/BUILD docs/CONFIG docs/RELNOTES docs/SSLBUILD - if use doc; then - docinto rfc - dodoc docs/rfc/*.txt - docinto draft - dodoc docs/draft/* - fi -}