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 99BC7159C96 for ; Tue, 23 Jul 2024 04:30:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DDC6DE29E0; Tue, 23 Jul 2024 04:30:10 +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 940ECE29E0 for ; Tue, 23 Jul 2024 04:30:10 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8A2EE340C7C for ; Tue, 23 Jul 2024 04:30:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C1BC31117 for ; Tue, 23 Jul 2024 04:30:07 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1721708987.ec1f37faca47080dbcc5b3d5110cdacc8fde02c3.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-tcltk/expect/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-tcltk/expect/expect-5.45.4-r4.ebuild X-VCS-Directories: dev-tcltk/expect/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: ec1f37faca47080dbcc5b3d5110cdacc8fde02c3 X-VCS-Branch: master Date: Tue, 23 Jul 2024 04:30:07 +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: 812116ab-29e1-432c-8b88-ec2e0ba57414 X-Archives-Hash: a06227538fcedb257270eca893388a91 commit: ec1f37faca47080dbcc5b3d5110cdacc8fde02c3 Author: Sam James gentoo org> AuthorDate: Tue Jul 23 04:27:57 2024 +0000 Commit: Sam James gentoo org> CommitDate: Tue Jul 23 04:29:47 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec1f37fa dev-tcltk/expect: drop 5.45.4-r4 Signed-off-by: Sam James gentoo.org> dev-tcltk/expect/expect-5.45.4-r4.ebuild | 80 -------------------------------- 1 file changed, 80 deletions(-) diff --git a/dev-tcltk/expect/expect-5.45.4-r4.ebuild b/dev-tcltk/expect/expect-5.45.4-r4.ebuild deleted file mode 100644 index ba137b0db314..000000000000 --- a/dev-tcltk/expect/expect-5.45.4-r4.ebuild +++ /dev/null @@ -1,80 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit autotools edo flag-o-matic - -MY_P="${PN}${PV}" -DESCRIPTION="tool for automating interactive applications" -HOMEPAGE="https://core.tcl-lang.org/expect/" -SRC_URI="https://downloads.sourceforge.net/${PN}/${MY_P}.tar.gz" -S="${WORKDIR}"/${MY_P} - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris" -IUSE="debug doc test threads" -RESTRICT="!test? ( test )" - -DEPEND=">=dev-lang/tcl-8.2:=[threads?]" -RDEPEND="${DEPEND}" -BDEPEND="test? ( dev-util/dejagnu )" - -PATCHES=( "${FILESDIR}"/${P}-examples.patch ) - -src_prepare() { - default - sed -i "s:/usr/local/bin:${EPREFIX}/usr/bin:" expect.man || die - - eapply "${FILESDIR}"/${PN}-5.45-gfbsd.patch - eapply "${FILESDIR}"/${PN}-5.44.1.15-ldflags.patch - eapply "${FILESDIR}"/${PN}-5.45-headers.patch #337943 - eapply "${FILESDIR}"/${PN}-5.45-format-security.patch - eapply "${FILESDIR}"/${PN}-5.45.4-configure-in.patch - eapply "${FILESDIR}"/${PN}-5.45.4-configure-clang16.patch || die - - sed -i 's:ifdef HAVE_SYS_WAIT_H:ifndef NO_SYS_WAIT_H:' *.c || die - - # fix install_name on darwin - [[ ${CHOST} == *-darwin* ]] && \ - eapply "${FILESDIR}"/${P}-darwin-install_name.patch - - mv configure.{in,ac} || die - - eautoconf -} - -src_configure() { - # bug #881687 - append-flags -std=gnu89 - - # the 64bit flag is useless ... it only adds 64bit compiler flags - # (like -m64) which the target toolchain should already handle - econf \ - --cache-file="${S}"/config.cache \ - --with-tcl="${EPREFIX}/usr/$(get_libdir)" \ - --disable-64bit \ - --enable-shared \ - $(use_enable threads) \ - $(use_enable debug symbols mem) -} - -expect_make_var() { - touch pkgIndex.tcl-hand || die - printf 'all:;echo $('$1')\ninclude Makefile' | emake --no-print-directory -s -f - - rm -f pkgIndex.tcl-hand || die -} - -src_install() { - default - - if use doc ; then - docinto examples - - edo dodoc \ - example/README \ - $(printf 'example/%s ' $(expect_make_var _SCRIPTS)) \ - $(printf 'example/%s.man ' $(expect_make_var _SCRIPTS_MANPAGES)) - fi -}