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 74D5C158099 for ; Tue, 21 Nov 2023 10:05:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 06CA52BC06C; Tue, 21 Nov 2023 10:05:22 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B41182BC06C for ; Tue, 21 Nov 2023 10:05:21 +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 81B1D335D1E for ; Tue, 21 Nov 2023 10:05:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BFD6E13B1 for ; Tue, 21 Nov 2023 10:05:17 +0000 (UTC) From: "Marek Szuba" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marek Szuba" Message-ID: <1700561081.d02f2dbc02f985a82a158df4bef31b0d9a989b41.marecki@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/libsmbios/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/libsmbios/libsmbios-2.4.3.ebuild X-VCS-Directories: sys-libs/libsmbios/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: d02f2dbc02f985a82a158df4bef31b0d9a989b41 X-VCS-Branch: master Date: Tue, 21 Nov 2023 10:05:17 +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: 04eb2bb2-b693-4fc3-9e7b-b18599ee98b7 X-Archives-Hash: d08dba04b37e925b0e0a67917a6d2ce7 commit: d02f2dbc02f985a82a158df4bef31b0d9a989b41 Author: Marek Szuba gentoo org> AuthorDate: Tue Nov 21 09:42:59 2023 +0000 Commit: Marek Szuba gentoo org> CommitDate: Tue Nov 21 10:04:41 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d02f2dbc sys-libs/libsmbios: drop 2.4.3 Signed-off-by: Marek Szuba gentoo.org> sys-libs/libsmbios/libsmbios-2.4.3.ebuild | 91 ------------------------------- 1 file changed, 91 deletions(-) diff --git a/sys-libs/libsmbios/libsmbios-2.4.3.ebuild b/sys-libs/libsmbios/libsmbios-2.4.3.ebuild deleted file mode 100644 index dd4417be8270..000000000000 --- a/sys-libs/libsmbios/libsmbios-2.4.3.ebuild +++ /dev/null @@ -1,91 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -PYTHON_COMPAT=( python3_{9..11} ) - -inherit autotools flag-o-matic python-single-r1 - -DESCRIPTION="Provide access to (SM)BIOS information" -HOMEPAGE="https://github.com/dell/libsmbios" -SRC_URI="https://github.com/dell/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="|| ( GPL-2+ OSL-2.1 ) BSD Boost-1.0" -SLOT="0" -KEYWORDS="-* amd64 ~ia64 x86" -IUSE="doc graphviz nls +python static-libs test" -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} ) - test? ( ${PYTHON_REQUIRED_USE} )" - -RESTRICT="!test? ( test )" - -RDEPEND="dev-libs/libxml2 - sys-libs/zlib - nls? ( virtual/libintl ) - python? ( ${PYTHON_DEPS} )" -DEPEND="${RDEPEND} - virtual/pkgconfig - doc? ( app-doc/doxygen ) - graphviz? ( media-gfx/graphviz ) - nls? ( sys-devel/gettext )" -BDEPEND="test? ( - ${PYTHON_DEPS} - >=dev-util/cppunit-1.9.6 -)" - -PATCHES=( - "${FILESDIR}/${PN}-2.2.28-cppunit-tests.patch" - "${FILESDIR}/${PN}-2.4.3-avoid_bashisms.patch" #715202 - "${FILESDIR}/${PN}-2.4.3-insecure_rpaths.patch" -) - -pkg_setup() { - if use python || use test; then - python-single-r1_pkg_setup - fi -} - -src_prepare() { - default - - # Don't build yum-plugin - we don't need it - sed '/yum-plugin/d' -i Makefile.am || die - - if use test; then - python_fix_shebang src/pyunit/test*.py - fi - - eautoreconf -} - -src_configure() { - #Remove -O3 for bug #290097 - replace-flags -O3 -O2 - - local myeconfargs=( - $(use_enable doc doxygen) - $(use_enable graphviz) - $(use_enable nls) - $(use_enable python) - $(use_enable static-libs static) - ) - econf "${myeconfargs[@]}" -} - -src_install() { - emake install DESTDIR="${D}" - - if use python; then - python_scriptinto /usr/sbin - python_doscript "${ED}"/usr/sbin/smbios-{{battery,keyboard,thermal,token,wakeup,wireless}-ctl,lcd-brightness,passwd,sys-info} - fi - - insinto /usr/include/ - doins -r src/include/smbios_c - - einstalldocs - - if ! use static-libs ; then - find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die - fi -}