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: Wed, 24 Aug 2022 19:08:46
Message-Id: 1661368054.8fe6d9d1231876e871d462b251c1d438251d6b29.matthew@gentoo
1 commit: 8fe6d9d1231876e871d462b251c1d438251d6b29
2 Author: Matthew Smith <matthew <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 24 19:07:34 2022 +0000
4 Commit: Matthew Smith <matthew <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 24 19:07:34 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fe6d9d1
7
8 dev-embedded/libjaylink: drop live ebuild
9
10 It was added before a version was tagged upstream and is no longer
11 needed.
12
13 Signed-off-by: Matthew Smith <matthew <AT> gentoo.org>
14
15 dev-embedded/libjaylink/libjaylink-9999.ebuild | 36 --------------------------
16 1 file changed, 36 deletions(-)
17
18 diff --git a/dev-embedded/libjaylink/libjaylink-9999.ebuild b/dev-embedded/libjaylink/libjaylink-9999.ebuild
19 deleted file mode 100644
20 index f1cfbdf3cbac..000000000000
21 --- a/dev-embedded/libjaylink/libjaylink-9999.ebuild
22 +++ /dev/null
23 @@ -1,36 +0,0 @@
24 -# Copyright 1999-2022 Gentoo Authors
25 -# Distributed under the terms of the GNU General Public License v2
26 -
27 -EAPI="7"
28 -
29 -EGIT_REPO_URI="https://gitlab.zapb.de/libjaylink/libjaylink.git"
30 -
31 -inherit git-r3 autotools multilib-minimal
32 -
33 -DESCRIPTION="Library to access J-Link devices"
34 -HOMEPAGE="https://gitlab.zapb.de/libjaylink/libjaylink"
35 -
36 -LICENSE="GPL-2+"
37 -SLOT="0"
38 -KEYWORDS=""
39 -IUSE="static-libs"
40 -
41 -DEPEND="virtual/libusb:1[${MULTILIB_USEDEP}]"
42 -RDEPEND="${DEPEND}"
43 -BDEPEND="virtual/pkgconfig"
44 -
45 -src_prepare() {
46 - sed -i -e "/^JAYLINK_CFLAGS=/ s/ -Werror / /" configure.ac || die
47 - eapply_user
48 - eautoreconf
49 - multilib_copy_sources
50 -}
51 -
52 -multilib_src_configure() {
53 - econf $(use_enable static-libs static)
54 -}
55 -
56 -multilib_src_install_all() {
57 - einstalldocs
58 - use static-libs || find "${D}" -name '*.la' -delete || die
59 -}