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 D149D15808B for ; Fri, 11 Mar 2022 14:50:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1D8CAE081E; Fri, 11 Mar 2022 14:50:15 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 E9F43E07F0 for ; Fri, 11 Mar 2022 14:50:14 +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 6AE5F342E9F for ; Fri, 11 Mar 2022 14:50:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0ECA02B0 for ; Fri, 11 Mar 2022 14:50:07 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1647010152.29a35c5602f906a610af5bb33ae88bec581029fd.sam@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-r3.ebuild X-VCS-Directories: dev-libs/openobex/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 29a35c5602f906a610af5bb33ae88bec581029fd X-VCS-Branch: master Date: Fri, 11 Mar 2022 14:50:07 +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: 1db5a1b0-1305-4657-935f-aa52394da993 X-Archives-Hash: d9283f1c81b48d983840c1133f87c7ad commit: 29a35c5602f906a610af5bb33ae88bec581029fd Author: Sam James gentoo org> AuthorDate: Fri Mar 11 14:49:12 2022 +0000 Commit: Sam James gentoo org> CommitDate: Fri Mar 11 14:49:12 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29a35c56 dev-libs/openobex: update EAPI 7 -> 8 Bug: https://bugs.gentoo.org/834125 Signed-off-by: Sam James gentoo.org> dev-libs/openobex/openobex-1.7.2-r3.ebuild | 43 ++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/dev-libs/openobex/openobex-1.7.2-r3.ebuild b/dev-libs/openobex/openobex-1.7.2-r3.ebuild new file mode 100644 index 000000000000..ce0a1b44448b --- /dev/null +++ b/dev-libs/openobex/openobex-1.7.2-r3.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake 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_src_configure +}