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 332C0158010 for ; Tue, 31 Jan 2023 15:17:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A25A1E0C8A; Tue, 31 Jan 2023 15:17:45 +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 88703E0C8A for ; Tue, 31 Jan 2023 15:17:45 +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 7F165340D91 for ; Tue, 31 Jan 2023 15:17:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3D4438A3 for ; Tue, 31 Jan 2023 15:17:41 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1675178130.9444616bf6cde63a0126ae44777718c1c32395e3.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libmodbus/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libmodbus/Manifest dev-libs/libmodbus/libmodbus-3.1.9.ebuild X-VCS-Directories: dev-libs/libmodbus/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 9444616bf6cde63a0126ae44777718c1c32395e3 X-VCS-Branch: master Date: Tue, 31 Jan 2023 15:17:41 +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: 6097de92-8b12-4a59-9ab4-5b28b2789924 X-Archives-Hash: 9624ca67d7353770c58b91281d86ca90 commit: 9444616bf6cde63a0126ae44777718c1c32395e3 Author: Conrad Kostecki gentoo org> AuthorDate: Tue Jan 31 03:19:53 2023 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Tue Jan 31 15:15:30 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9444616b dev-libs/libmodbus: drop 3.1.9 Signed-off-by: Conrad Kostecki gentoo.org> dev-libs/libmodbus/Manifest | 1 - dev-libs/libmodbus/libmodbus-3.1.9.ebuild | 31 ------------------------------- 2 files changed, 32 deletions(-) diff --git a/dev-libs/libmodbus/Manifest b/dev-libs/libmodbus/Manifest index 184ec413bda5..a5e5c74478ae 100644 --- a/dev-libs/libmodbus/Manifest +++ b/dev-libs/libmodbus/Manifest @@ -1,2 +1 @@ DIST libmodbus-3.1.10.tar.gz 463325 BLAKE2B ea1c54e52f0927e9e97b2303b35925d6a40b30f1eed881eeed2d05a229c858ebdde6212431699e24a331744b30f447dfe6704c7ca0d4eb73d193ae5b5055c4b3 SHA512 d9a56d2cd3285823b287b6bf4f79741f2e626e09cfc1872405a306e8dcc0f64c15695e8aee45614071c615cd248b87293ef2351c830120a515d28303bad0ccee -DIST libmodbus-3.1.9.tar.gz 462649 BLAKE2B 2812b49a908af7906b596c0389050d688294ba415ee7e92211d8a8fb8868ec80388737fb2f7224e59b51861ee76b72cc7464a47b55ba5d086e89c9ff7d0f981b SHA512 6b26049939409ceba7dbafc079138553977dafac5284fdb39e1481c1d2ac29bef22123496819356f9e29d73705d3a9c71075823f0ad102293c4d9efd06fac00c diff --git a/dev-libs/libmodbus/libmodbus-3.1.9.ebuild b/dev-libs/libmodbus/libmodbus-3.1.9.ebuild deleted file mode 100644 index 3f234eeed373..000000000000 --- a/dev-libs/libmodbus/libmodbus-3.1.9.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DESCRIPTION="Modbus library which supports RTU communication over a serial line or a TCP link" -HOMEPAGE="https://libmodbus.org/" -SRC_URI="https://github.com/stephane/${PN}/releases/download/v${PV}/${P}.tar.gz" - -LICENSE="LGPL-3" -SLOT="0" -KEYWORDS="amd64 ~arm64 x86" -IUSE="static-libs test" -RESTRICT="!test? ( test )" - -src_configure() { - local myeconfargs=( - $(use_enable test tests) - $(use_enable static-libs static) - ) - - econf "${myeconfargs[@]}" -} - -src_install() { - default - - if ! use static-libs; then - find "${ED}" -name '*.la' -delete || die - fi -}