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 338C5158020 for ; Tue, 25 Oct 2022 17:57:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 81560E0D08; Tue, 25 Oct 2022 17:57:39 +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 66039E0D08 for ; Tue, 25 Oct 2022 17:57:39 +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 87F54341292 for ; Tue, 25 Oct 2022 17:57:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1F3465D6 for ; Tue, 25 Oct 2022 17:57:37 +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: <1666720591.9e13fe06e96926e812144946a3be5ce153d64d45.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libgpiod/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libgpiod/libgpiod-1.6.3-r1.ebuild X-VCS-Directories: dev-libs/libgpiod/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 9e13fe06e96926e812144946a3be5ce153d64d45 X-VCS-Branch: master Date: Tue, 25 Oct 2022 17:57:37 +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: 4ab1f02c-4d97-4c00-b3a8-630fffacb706 X-Archives-Hash: 22c16866e9b7d3d8ca81938221d533e8 commit: 9e13fe06e96926e812144946a3be5ce153d64d45 Author: Sam James gentoo org> AuthorDate: Tue Oct 25 17:56:31 2022 +0000 Commit: Sam James gentoo org> CommitDate: Tue Oct 25 17:56:31 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e13fe06 dev-libs/libgpiod: drop 1.6.3-r1 Bug: https://bugs.gentoo.org/878249 Signed-off-by: Sam James gentoo.org> dev-libs/libgpiod/libgpiod-1.6.3-r1.ebuild | 53 ------------------------------ 1 file changed, 53 deletions(-) diff --git a/dev-libs/libgpiod/libgpiod-1.6.3-r1.ebuild b/dev-libs/libgpiod/libgpiod-1.6.3-r1.ebuild deleted file mode 100644 index 2cb895596af0..000000000000 --- a/dev-libs/libgpiod/libgpiod-1.6.3-r1.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit linux-mod multilib-minimal - -DESCRIPTION="C library and tools for interacting with the linux GPIO character device" -HOMEPAGE="https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git/" -SRC_URI="https://mirrors.edge.kernel.org/pub/software/libs/libgpiod/${P}.tar.xz" - -LICENSE="LGPL-2.1" -# Reflects the ABI of libgpiod.so -SLOT="0/2" -KEYWORDS="amd64 arm arm64 ~riscv x86" -IUSE="static-libs +tools cxx python test" -RESTRICT="!test? ( test )" - -# --enable-tests enable libgpiod tests [default=no] -# --enable-bindings-cxx enable C++ bindings [default=no] -# --enable-bindings-python - -pkg_setup() { - CONFIG_CHECK="GPIO_CDEV_V1" - linux-mod_pkg_setup -} - -multilib_src_configure() { - local myconf=( - $(use_enable tools) - $(use_enable cxx bindings-cxx) - $(use_enable test tests) - $(multilib_native_use_enable python bindings-python) - ) - - if ! multilib_is_native_abi; then - myconf+=( - --disable-tools - ) - fi - - ECONF_SOURCE="${S}" econf "${myconf[@]}" -} - -multilib_src_install() { - default - - find "${D}" -name '*.la' -type f -delete || die - - if ! use static-libs; then - find "${D}" -name "*.a" -delete || die - fi -}