Gentoo Archives: gentoo-commits

From: Matthew Smith <matthew@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-embedded/libjaylink/
Date: Fri, 09 Sep 2022 09:48:17
Message-Id: 1662716780.e44c0832ca074b28bd9ac585c506a9a6b7825350.matthew@gentoo
1 commit: e44c0832ca074b28bd9ac585c506a9a6b7825350
2 Author: Matthew Smith <matthew <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 9 08:47:24 2022 +0000
4 Commit: Matthew Smith <matthew <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 9 09:46:20 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e44c0832
7
8 dev-embedded/libjaylink: drop 0.3.0
9
10 Signed-off-by: Matthew Smith <matthew <AT> gentoo.org>
11
12 dev-embedded/libjaylink/Manifest | 1 -
13 dev-embedded/libjaylink/libjaylink-0.3.0.ebuild | 45 -------------------------
14 2 files changed, 46 deletions(-)
15
16 diff --git a/dev-embedded/libjaylink/Manifest b/dev-embedded/libjaylink/Manifest
17 index d59d17908f63..bb5b029dcc4a 100644
18 --- a/dev-embedded/libjaylink/Manifest
19 +++ b/dev-embedded/libjaylink/Manifest
20 @@ -1,3 +1,2 @@
21 DIST libjaylink-0.2.0.tar.bz2 59078 BLAKE2B 7928875248972bc00ec46511861e160491f7a53f729e0fbfe3a6d08335532fffc9e285e8a354a390037bebe696b6740bdc422164238947baf5e0fcf8f55c0dd5 SHA512 5a8c458982fdea2025aa3ce774d41cc58a283824dcd90a94531ee5e6ca50d9961b0ebb40a6dd3a97fdfcb44625437d685151560185449c3161fe399e0651da44
22 -DIST libjaylink-0.3.0.tar.bz2 61075 BLAKE2B 84946fbe0a061117f92b8011c0b5eeb30f8f74817128a5fd6a6d519c7a0f07f447d87d0fe72d7a47d17ab2fa33cdc3820e0c556f75c5dedad30faf5e6cf5739d SHA512 714de9297fb59eccee7eb461f37b20459991bffd31aac8eb20014f00716bb94ff4cda96a3d1746419c7722b6b7d97e7a42df9fb3b5c4f83a3f1ac79647159426
23 DIST libjaylink-0.3.1.tar.bz2 61062 BLAKE2B 7a220b7e1ae1818b9d65d6bb92b282516ce6e4144ce77ee8b77088ebc92f9a091ae04a78c043afaa90ee9f737baa7c2fcd0a9237b60662af0d858fb24cef1c5e SHA512 4964e522cb59f59db444ca350529dd3695e2ccb451f7607e2c14074bafe47688f35b2e8b3304170a611db2d21040f3f98c95def179cf4f95733287986811fd78
24
25 diff --git a/dev-embedded/libjaylink/libjaylink-0.3.0.ebuild b/dev-embedded/libjaylink/libjaylink-0.3.0.ebuild
26 deleted file mode 100644
27 index 8601f4cec5f0..000000000000
28 --- a/dev-embedded/libjaylink/libjaylink-0.3.0.ebuild
29 +++ /dev/null
30 @@ -1,45 +0,0 @@
31 -# Copyright 1999-2022 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=8
35 -
36 -inherit autotools udev
37 -
38 -DESCRIPTION="Library to access J-Link devices"
39 -HOMEPAGE="https://gitlab.zapb.de/libjaylink/libjaylink"
40 -SRC_URI="https://gitlab.zapb.de/libjaylink/libjaylink/-/archive/${PV}/${P}.tar.bz2"
41 -
42 -LICENSE="GPL-2+"
43 -SLOT="0"
44 -KEYWORDS="~amd64 ~arm ~riscv ~x86"
45 -
46 -DEPEND="virtual/libusb:1"
47 -RDEPEND="${DEPEND}"
48 -BDEPEND="virtual/pkgconfig"
49 -
50 -src_prepare() {
51 - default
52 -
53 - # Remove -Werror from CFLAGS.
54 - sed -i '/^JAYLINK_CFLAGS=/s/ -Werror//' configure.ac || die
55 -
56 - eautoreconf
57 -}
58 -
59 -src_configure() {
60 - econf --disable-static
61 -}
62 -
63 -src_install() {
64 - default
65 - udev_dorules contrib/99-${PN}.rules
66 - find "${D}" -type f -name '*.la' -delete || die
67 -}
68 -
69 -pkg_postinst() {
70 - udev_reload
71 -}
72 -
73 -pkg_postrm() {
74 - udev_reload
75 -}