Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libmodbus/
Date: Sun, 25 Sep 2022 23:12:17
Message-Id: 1664147500.795209a34e0fd572b64ff3abc42d915b697762fb.conikost@gentoo
1 commit: 795209a34e0fd572b64ff3abc42d915b697762fb
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 25 22:24:50 2022 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 25 23:11:40 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=795209a3
7
8 dev-libs/libmodbus: drop 3.1.7
9
10 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
11
12 dev-libs/libmodbus/Manifest | 1 -
13 dev-libs/libmodbus/libmodbus-3.1.7.ebuild | 39 -------------------------------
14 2 files changed, 40 deletions(-)
15
16 diff --git a/dev-libs/libmodbus/Manifest b/dev-libs/libmodbus/Manifest
17 index fbf6b94a5550..bd90ff635514 100644
18 --- a/dev-libs/libmodbus/Manifest
19 +++ b/dev-libs/libmodbus/Manifest
20 @@ -1,2 +1 @@
21 -DIST libmodbus-3.1.7.tar.gz 490162 BLAKE2B 3ba8353fbf6849597b1affdb8dc318b8dc1e2f66b0c1bc9f5f3c8286d48609be6d85d84269d31510fe292a48010a72e7a678b748f3c03117a6230651fa80fe91 SHA512 e2c00bd06d0b4a16c8edbfd25a95695b782cf459cd69a7cefc1cfa5e4025f23b2896487b48876ccf2f8050e8cdef4a76d322c9752a43cd8dd2c634df9406bada
22 DIST libmodbus-3.1.8.tar.gz 459999 BLAKE2B e5cb17dd260f3d0a25aedb2cecaa35f21c116458b0a46c7fe3ecc51d6ceb162fa387bb3ad18ff78c89f39645184ecc5bb164ef7cef2d091d2727750bdb0e429a SHA512 1158ac52cf92d3f8f8afaa23b67e841018f94c09521464a4c28ab724f7f2beb0eb567d574c2d81cfb1e3df9436cd2635b52a886656985b27df3a27693957d2df
23
24 diff --git a/dev-libs/libmodbus/libmodbus-3.1.7.ebuild b/dev-libs/libmodbus/libmodbus-3.1.7.ebuild
25 deleted file mode 100644
26 index 0cc9f045c687..000000000000
27 --- a/dev-libs/libmodbus/libmodbus-3.1.7.ebuild
28 +++ /dev/null
29 @@ -1,39 +0,0 @@
30 -# Copyright 1999-2022 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -DESCRIPTION="Modbus library which supports RTU communication over a serial line or a TCP link"
36 -HOMEPAGE="https://libmodbus.org/"
37 -SRC_URI="https://libmodbus.org/releases/${P}.tar.gz"
38 -
39 -LICENSE="LGPL-3"
40 -SLOT="0"
41 -KEYWORDS="amd64 ~arm64 x86"
42 -IUSE="static-libs test doc"
43 -RESTRICT="!test? ( test )"
44 -
45 -BDEPEND="
46 - doc? (
47 - app-text/asciidoc
48 - app-text/xmlto
49 - )
50 -"
51 -
52 -src_configure() {
53 - local myeconfargs=(
54 - $(use_enable test tests)
55 - $(use_enable static-libs static)
56 - $(use_with doc documentation)
57 - )
58 -
59 - econf "${myeconfargs[@]}"
60 -}
61 -
62 -src_install() {
63 - default
64 -
65 - if ! use static-libs; then
66 - find "${ED}" -name '*.la' -delete || die
67 - fi
68 -}