From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1684224-garchives=archives.gentoo.org@lists.gentoo.org> 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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 10CEE158042 for <garchives@archives.gentoo.org>; Mon, 28 Oct 2024 19:46:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 70C3DE08AB; Mon, 28 Oct 2024 19:46:12 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 pigeon.gentoo.org (Postfix) with ESMTPS id 5C087E08AB for <gentoo-commits@lists.gentoo.org>; Mon, 28 Oct 2024 19:46:12 +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 A7361343021 for <gentoo-commits@lists.gentoo.org>; Mon, 28 Oct 2024 19:46:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4938AAE7 for <gentoo-commits@lists.gentoo.org>; Mon, 28 Oct 2024 19:46:10 +0000 (UTC) From: "Andreas K. Hüttel" <dilfridge@gentoo.org> 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 K. Hüttel" <dilfridge@gentoo.org> Message-ID: <1730144758.c2a075b83e0434292b67db62eca200a6da4b63e4.dilfridge@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libx86/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libx86/libx86-1.1-r5.ebuild X-VCS-Directories: dev-libs/libx86/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas K. Hüttel X-VCS-Revision: c2a075b83e0434292b67db62eca200a6da4b63e4 X-VCS-Branch: master Date: Mon, 28 Oct 2024 19:46:10 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 5a974c6c-1758-44df-b97c-9dced596db55 X-Archives-Hash: 1b8f1167fcf148c17f6961b7e870309b commit: c2a075b83e0434292b67db62eca200a6da4b63e4 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org> AuthorDate: Mon Oct 28 19:45:45 2024 +0000 Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org> CommitDate: Mon Oct 28 19:45:58 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2a075b8 dev-libs/libx86: drop 1.1-r5 Bug: https://bugs.gentoo.org/880429 Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org> dev-libs/libx86/libx86-1.1-r5.ebuild | 39 ------------------------------------ 1 file changed, 39 deletions(-) diff --git a/dev-libs/libx86/libx86-1.1-r5.ebuild b/dev-libs/libx86/libx86-1.1-r5.ebuild deleted file mode 100644 index ac4aa8723d12..000000000000 --- a/dev-libs/libx86/libx86-1.1-r5.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit flag-o-matic toolchain-funcs - -DESCRIPTION="A hardware-independent library for executing real-mode x86 code" -HOMEPAGE="https://www.codon.org.uk/~mjg59/libx86/" -SRC_URI="https://www.codon.org.uk/~mjg59/${PN}/downloads/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 ~arm -ppc -riscv -sparc x86" - -PATCHES=( - # fix compile failure with linux-headers-2.6.26, bug 235599 - "${FILESDIR}"/${PN}-0.99-ifmask.patch - # Patch for bugs #236888 and #456648 - "${FILESDIR}"/${P}-makefile.patch - # Wider arch compatibility, bug #579682 - "${FILESDIR}"/${P}-x86emu.patch -) - -src_configure() { - tc-export AR CC - append-cflags -fno-delete-null-pointer-checks #523276 -} - -src_compile() { - emake $(usev !x86 BACKEND=x86emu) LIBRARY=shared shared -} - -src_install() { - emake \ - LIBDIR=/usr/$(get_libdir) \ - DESTDIR="${ED}" \ - install-header install-shared -}