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 DD535158089 for ; Tue, 19 Sep 2023 20:49:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1E8982BC079; Tue, 19 Sep 2023 20:49:15 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 01AAD2BC079 for ; Tue, 19 Sep 2023 20:49:15 +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 1CCB6335CEC for ; Tue, 19 Sep 2023 20:49:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A740011F7 for ; Tue, 19 Sep 2023 20:49:10 +0000 (UTC) From: "Bernard Cafarelli" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Bernard Cafarelli" Message-ID: <1695156531.1073621489e63137be274e6320352b5fa8c6710c.voyageur@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: gnustep-libs/dbuskit/ X-VCS-Repository: repo/gentoo X-VCS-Files: gnustep-libs/dbuskit/dbuskit-0.1.1-r2.ebuild X-VCS-Directories: gnustep-libs/dbuskit/ X-VCS-Committer: voyageur X-VCS-Committer-Name: Bernard Cafarelli X-VCS-Revision: 1073621489e63137be274e6320352b5fa8c6710c X-VCS-Branch: master Date: Tue, 19 Sep 2023 20:49:10 +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: d1d49ff9-6a9e-4a4b-8c1e-01e78d49ff31 X-Archives-Hash: 3e8b1c6950611cc08201a9b136adc62c commit: 1073621489e63137be274e6320352b5fa8c6710c Author: Michael Mair-Keimberger levelnine at> AuthorDate: Tue Sep 19 17:55:08 2023 +0000 Commit: Bernard Cafarelli gentoo org> CommitDate: Tue Sep 19 20:48:51 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10736214 gnustep-libs/dbuskit: EAPI8 bump, fix LICENSE Signed-off-by: Michael Mair-Keimberger levelnine.at> Signed-off-by: Bernard Cafarelli gentoo.org> gnustep-libs/dbuskit/dbuskit-0.1.1-r2.ebuild | 36 ++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/gnustep-libs/dbuskit/dbuskit-0.1.1-r2.ebuild b/gnustep-libs/dbuskit/dbuskit-0.1.1-r2.ebuild new file mode 100644 index 000000000000..841a257ae165 --- /dev/null +++ b/gnustep-libs/dbuskit/dbuskit-0.1.1-r2.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools gnustep-2 + +DESCRIPTION="Framework that interfaces Objective-C applications with the D-Bus IPC service" +HOMEPAGE="https://github.com/gnustep/libs-dbuskit" +SRC_URI="https://github.com/gnustep/libs-dbuskit/archive/${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/libs-${P}" + +LICENSE="LGPL-2.1+" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" + +DEPEND=">=sys-apps/dbus-1.2.1" +RDEPEND="${DEPEND}" + +PATCHES=( "${FILESDIR}"/${P}-remove_gc.patch ) + +src_prepare() { + default + + if ! use doc; then + # Remove doc target + sed -i -e "/SUBPROJECTS/s/Documentation//" GNUmakefile \ + || die "doc sed failed" + fi + + # Bug 410697 + sed -e "s#ObjectiveC2/runtime.h#ObjectiveC2/objc/runtime.h#" \ + -i configure.ac || die "ObjectiveC2 runtime sed failed" + + eautoreconf +}