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 E1D011382C5 for ; Wed, 24 Feb 2021 22:40:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 93D2CE0869; Wed, 24 Feb 2021 22:40:12 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 7CBF3E0869 for ; Wed, 24 Feb 2021 22:40:12 +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 9DEA3340E10 for ; Wed, 24 Feb 2021 22:40:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BC708591 for ; Wed, 24 Feb 2021 22:40:05 +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: <1614206386.193ee5c1fbb0ed6ee6b3fe85b4c251a2cea3846a.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/dbus-c++/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/dbus-c++/dbus-c++-0.9.0-r3.ebuild X-VCS-Directories: dev-libs/dbus-c++/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 193ee5c1fbb0ed6ee6b3fe85b4c251a2cea3846a X-VCS-Branch: master Date: Wed, 24 Feb 2021 22:40:05 +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: 18dea515-ffb8-4048-82d8-5f27518b82b7 X-Archives-Hash: 560cf01780be7697f16703b4b6441b4a commit: 193ee5c1fbb0ed6ee6b3fe85b4c251a2cea3846a Author: Andreas Sturmlechner gentoo org> AuthorDate: Wed Feb 24 21:34:52 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Feb 24 22:39:46 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=193ee5c1 dev-libs/dbus-c++: Drop 0.9.0-r3, EAPI5-- Bug: https://bugs.gentoo.org/766791 Package-Manager: Portage-3.0.15, Repoman-3.0.2 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-libs/dbus-c++/dbus-c++-0.9.0-r3.ebuild | 64 ------------------------------ 1 file changed, 64 deletions(-) diff --git a/dev-libs/dbus-c++/dbus-c++-0.9.0-r3.ebuild b/dev-libs/dbus-c++/dbus-c++-0.9.0-r3.ebuild deleted file mode 100644 index afa3caaaab8..00000000000 --- a/dev-libs/dbus-c++/dbus-c++-0.9.0-r3.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" - -AUTOTOOLS_PRUNE_LIBTOOL_FILES="modules" - -inherit autotools-multilib eutils - -DESCRIPTION="Provides a C++ API for D-BUS" -HOMEPAGE="https://sourceforge.net/projects/dbus-cplusplus/ https://sourceforge.net/apps/mediawiki/dbus-cplusplus/index.php?title=Main_Page" -SRC_URI="mirror://sourceforge/dbus-cplusplus/lib${P}.tar.gz" - -LICENSE="LGPL-2.1+" -SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc x86" -IUSE="doc ecore glib static-libs test" -RESTRICT="!test? ( test )" - -RDEPEND="sys-apps/dbus[${MULTILIB_USEDEP}] - ecore? ( dev-libs/efl ) - glib? ( dev-libs/glib:2[${MULTILIB_USEDEP}] )" -DEPEND="${RDEPEND} - doc? ( app-doc/doxygen ) - dev-util/cppunit[${MULTILIB_USEDEP}] - virtual/pkgconfig" - -S=${WORKDIR}/lib${P} - -PATCHES=( - "${FILESDIR}"/${P}-gcc-4.7.patch #424707 - "${FILESDIR}"/${PN}-gcc7.patch #622790 -) - -multilib_src_configure() { - # not just using autotools-multilib_src_configure because of multilib_native... logic - - # TODO : add ecore multilib support if/when it is multilibified - ECONF_SOURCE="${S}" econf \ - --disable-examples \ - $(multilib_native_use_enable doc doxygen-docs) \ - $(multilib_native_use_enable ecore) \ - $(use_enable glib) \ - $(use_enable static-libs static) \ - $(use_enable test tests) \ - PTHREAD_LIBS=-lpthread - # ACX_PTHREAD sets PTHREAD_CFLAGS but not PTHREAD_LIBS for some reason... - - if multilib_is_native_abi; then - # docs don't like out-of-source builds - local d - for d in img html; do - ln -s "${S}"/doc/${d} "${BUILD_DIR}"/doc/${d} || die - done - fi -} - -multilib_src_install_all() { - einstalldocs - - if use doc; then - dohtml -r "${S}"/doc/html/* - fi -}