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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D878F138239 for ; Thu, 13 May 2021 10:59:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 304FFE08C8; Thu, 13 May 2021 10:59:54 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 17F9EE08C3 for ; Thu, 13 May 2021 10:59:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2BCF8335C03 for ; Thu, 13 May 2021 10:59:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DAA51750 for ; Thu, 13 May 2021 10:59:51 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1620903561.6448da1464c20d32d35926166f586c0837f29d4e.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libusb-compat/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libusb-compat/libusb-compat-0.1.5-r2.ebuild X-VCS-Directories: dev-libs/libusb-compat/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 6448da1464c20d32d35926166f586c0837f29d4e X-VCS-Branch: master Date: Thu, 13 May 2021 10:59:51 +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: e49793af-a36b-4ba6-9deb-2a1a81c125b6 X-Archives-Hash: 19a8f3590706a2f1586f898a03410085 commit: 6448da1464c20d32d35926166f586c0837f29d4e Author: David Seifert gentoo org> AuthorDate: Thu May 13 10:59:21 2021 +0000 Commit: David Seifert gentoo org> CommitDate: Thu May 13 10:59:21 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6448da14 dev-libs/libusb-compat: Remove old 0.1.5-r2 Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: David Seifert gentoo.org> .../libusb-compat/libusb-compat-0.1.5-r2.ebuild | 49 ---------------------- 1 file changed, 49 deletions(-) diff --git a/dev-libs/libusb-compat/libusb-compat-0.1.5-r2.ebuild b/dev-libs/libusb-compat/libusb-compat-0.1.5-r2.ebuild deleted file mode 100644 index bb832fd0476..00000000000 --- a/dev-libs/libusb-compat/libusb-compat-0.1.5-r2.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit multilib-minimal usr-ldscript - -DESCRIPTION="Userspace access to USB devices (libusb-0.1 compat wrapper)" -HOMEPAGE="http://libusb.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN/-compat}/${P}.tar.bz2" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" -IUSE="debug examples static-libs" - -RDEPEND=">=virtual/libusb-1-r1:1[${MULTILIB_USEDEP}] - !dev-libs/libusb:0" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -DOCS="AUTHORS ChangeLog NEWS README" - -PATCHES=( - "${FILESDIR}"/${PN/-compat}-0.1-ansi.patch -) - -multilib_src_configure() { - ECONF_SOURCE="${S}" \ - econf \ - $(use_enable static-libs static) \ - $(use_enable debug debug-log) -} - -multilib_src_install() { - emake DESTDIR="${D}" install - - gen_usr_ldscript -a usb -} - -multilib_src_install_all() { - find "${ED}" -name '*.la' -delete || die - einstalldocs - - if use examples; then - insinto /usr/share/doc/${PF}/examples - doins examples/*.c - fi -}