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 C27C115808B for ; Fri, 1 Apr 2022 18:35:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1281AE07EF; Fri, 1 Apr 2022 18:35:31 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 E68D9E07EF for ; Fri, 1 Apr 2022 18:35:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E8ECD341889 for ; Fri, 1 Apr 2022 18:35:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8814BD0 for ; Fri, 1 Apr 2022 18:35:28 +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: <1648838121.290935efb0bf7e33219923992e4183d1370b0576.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-r2.ebuild X-VCS-Directories: dev-libs/openobex/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 290935efb0bf7e33219923992e4183d1370b0576 X-VCS-Branch: master Date: Fri, 1 Apr 2022 18:35:28 +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: 9cc5153c-9676-4fc0-801d-dac3804b52ac X-Archives-Hash: b1bb98c007fdafb0be8fba3bf7138792 commit: 290935efb0bf7e33219923992e4183d1370b0576 Author: Andreas Sturmlechner gentoo org> AuthorDate: Fri Apr 1 18:35:00 2022 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Apr 1 18:35:21 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=290935ef dev-libs/openobex: Drop 1.7.2-r2, cmake-utils-- Closes: https://bugs.gentoo.org/834125 Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-libs/openobex/openobex-1.7.2-r2.ebuild | 43 ------------------------------ 1 file changed, 43 deletions(-) diff --git a/dev-libs/openobex/openobex-1.7.2-r2.ebuild b/dev-libs/openobex/openobex-1.7.2-r2.ebuild deleted file mode 100644 index 0ca2449f9f24..000000000000 --- a/dev-libs/openobex/openobex-1.7.2-r2.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -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" - -BDEPEND=" - doc? ( app-doc/doxygen ) - virtual/pkgconfig -" -DEPEND=" - bluetooth? ( net-wireless/bluez:= ) - usb? ( virtual/libusb:= ) -" -RDEPEND="${DEPEND}" - -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}" - ) - use usb && mycmakeargs+=( -DCMAKE_INSTALL_UDEVRULESDIR="$(get_udevdir)/rules.d" ) - - cmake-utils_src_configure -}