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 5D16B158094 for ; Wed, 24 Aug 2022 19:08:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 90DFAE077A; Wed, 24 Aug 2022 19:08:45 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 69DC7E077A for ; Wed, 24 Aug 2022 19:08:45 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5C9E1340EDF for ; Wed, 24 Aug 2022 19:08:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C884B58B for ; Wed, 24 Aug 2022 19:08:42 +0000 (UTC) From: "Matthew Smith" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matthew Smith" Message-ID: <1661368054.8fe6d9d1231876e871d462b251c1d438251d6b29.matthew@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-embedded/libjaylink/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-embedded/libjaylink/libjaylink-9999.ebuild X-VCS-Directories: dev-embedded/libjaylink/ X-VCS-Committer: matthew X-VCS-Committer-Name: Matthew Smith X-VCS-Revision: 8fe6d9d1231876e871d462b251c1d438251d6b29 X-VCS-Branch: master Date: Wed, 24 Aug 2022 19:08:42 +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: f1c1d794-9c2f-4f94-92ff-8fde9771f8c0 X-Archives-Hash: 535429fc42279096abbd71a6c8bb26f5 commit: 8fe6d9d1231876e871d462b251c1d438251d6b29 Author: Matthew Smith gentoo org> AuthorDate: Wed Aug 24 19:07:34 2022 +0000 Commit: Matthew Smith gentoo org> CommitDate: Wed Aug 24 19:07:34 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fe6d9d1 dev-embedded/libjaylink: drop live ebuild It was added before a version was tagged upstream and is no longer needed. Signed-off-by: Matthew Smith gentoo.org> dev-embedded/libjaylink/libjaylink-9999.ebuild | 36 -------------------------- 1 file changed, 36 deletions(-) diff --git a/dev-embedded/libjaylink/libjaylink-9999.ebuild b/dev-embedded/libjaylink/libjaylink-9999.ebuild deleted file mode 100644 index f1cfbdf3cbac..000000000000 --- a/dev-embedded/libjaylink/libjaylink-9999.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" - -EGIT_REPO_URI="https://gitlab.zapb.de/libjaylink/libjaylink.git" - -inherit git-r3 autotools multilib-minimal - -DESCRIPTION="Library to access J-Link devices" -HOMEPAGE="https://gitlab.zapb.de/libjaylink/libjaylink" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="" -IUSE="static-libs" - -DEPEND="virtual/libusb:1[${MULTILIB_USEDEP}]" -RDEPEND="${DEPEND}" -BDEPEND="virtual/pkgconfig" - -src_prepare() { - sed -i -e "/^JAYLINK_CFLAGS=/ s/ -Werror / /" configure.ac || die - eapply_user - eautoreconf - multilib_copy_sources -} - -multilib_src_configure() { - econf $(use_enable static-libs static) -} - -multilib_src_install_all() { - einstalldocs - use static-libs || find "${D}" -name '*.la' -delete || die -}