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 731761382C5 for ; Sun, 18 Apr 2021 21:27:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D0019E079E; Sun, 18 Apr 2021 21:27:29 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 B743BE079E for ; Sun, 18 Apr 2021 21:27:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 76925340E51 for ; Sun, 18 Apr 2021 21:27:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 14FD6CC for ; Sun, 18 Apr 2021 21:27:25 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1618781234.2a61da5e04f77bf6383b56893dab49216d6fde73.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/openobex/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/openobex/openobex-1.7.2-r1.ebuild X-VCS-Directories: dev-libs/openobex/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 2a61da5e04f77bf6383b56893dab49216d6fde73 X-VCS-Branch: master Date: Sun, 18 Apr 2021 21:27:25 +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: b2fcb80e-0b5d-48f4-93d8-53cb081d1403 X-Archives-Hash: fed3ce28a837becd904926550610fc74 commit: 2a61da5e04f77bf6383b56893dab49216d6fde73 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Apr 18 21:26:26 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Apr 18 21:27:14 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a61da5e dev-libs/openobex: Drop 1.7.2-r1 Bug: https://bugs.gentoo.org/687432 Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-libs/openobex/openobex-1.7.2-r1.ebuild | 41 ------------------------------ 1 file changed, 41 deletions(-) diff --git a/dev-libs/openobex/openobex-1.7.2-r1.ebuild b/dev-libs/openobex/openobex-1.7.2-r1.ebuild deleted file mode 100644 index edcdf803d0a..00000000000 --- a/dev-libs/openobex/openobex-1.7.2-r1.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils udev - -DESCRIPTION="Implementation of the OBEX protocol used for transferring data to mobile devices" -HOMEPAGE="https://sourceforge.net/projects/openobex/" -SRC_URI="mirror://sourceforge/${PN}/${PV}/${P}-Source.tar.gz" - -LICENSE="GPL-2 LGPL-2.1" -SLOT="0/2" -KEYWORDS="amd64 arm ~hppa ppc ppc64 ~sparc x86" -IUSE="bluetooth doc irda usb" - -RDEPEND=" - bluetooth? ( net-wireless/bluez:= ) - usb? ( virtual/libusb:= )" -DEPEND="${RDEPEND} - virtual/pkgconfig - doc? ( app-doc/doxygen )" - -S="${WORKDIR}/${P}-Source" - -PATCHES=( "${FILESDIR}/${P}-version.h.patch" ) -DOCS=( AUTHORS ChangeLog README UPGRADING.txt ) - -src_configure() { - local mycmakeargs=( - -DBUILD_DOCUMENTATION=$(usex doc) - -DOPENOBEX_BLUETOOTH=$(usex bluetooth) - -DOPENOBEX_IRDA=$(usex irda) - -DOPENOBEX_USB=$(usex usb) - - -DCMAKE_INSTALL_DOCDIR="${EPREFIX}/usr/share/doc/${PF}" - -DCMAKE_INSTALL_UDEVRULESDIR="$(get_udevdir)/rules.d" - ) - - cmake-utils_src_configure -}