public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Andreas Sturmlechner" <asturm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/kde-sunset:master commit in: dev-libs/libdbusmenu-qt/
Date: Mon,  7 Sep 2020 17:54:26 +0000 (UTC)	[thread overview]
Message-ID: <1599501248.e249e40f789cfd533c18c863d823deca2f0044a2.asturm@gentoo> (raw)

commit:     e249e40f789cfd533c18c863d823deca2f0044a2
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Mon Sep  7 17:54:08 2020 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Mon Sep  7 17:54:08 2020 +0000
URL:        https://gitweb.gentoo.org/proj/kde-sunset.git/commit/?id=e249e40f

dev-libs/libdbusmenu-qt: Drop 0.9.3_pre20160218-r1

Package-Manager: Portage-3.0.5, Repoman-3.0.1
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 .../libdbusmenu-qt-0.9.3_pre20160218-r1.ebuild     | 124 ---------------------
 1 file changed, 124 deletions(-)

diff --git a/dev-libs/libdbusmenu-qt/libdbusmenu-qt-0.9.3_pre20160218-r1.ebuild b/dev-libs/libdbusmenu-qt/libdbusmenu-qt-0.9.3_pre20160218-r1.ebuild
deleted file mode 100644
index b8d06d40..00000000
--- a/dev-libs/libdbusmenu-qt/libdbusmenu-qt-0.9.3_pre20160218-r1.ebuild
+++ /dev/null
@@ -1,124 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-EBZR_REPO_URI="lp:libdbusmenu-qt"
-
-[[ ${PV} == 9999* ]] && inherit bzr
-inherit cmake-multilib multibuild virtualx
-
-DESCRIPTION="Library providing Qt implementation of DBusMenu specification"
-HOMEPAGE="https://launchpad.net/libdbusmenu-qt/"
-if [[ ${PV} != 9999* ]] ; then
-	MY_PV=${PV/_pre/+16.04.}
-	SRC_URI="https://launchpad.net/ubuntu/+archive/primary/+files/${PN}_${MY_PV}.orig.tar.gz"
-	KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
-fi
-
-LICENSE="LGPL-2"
-SLOT="0"
-IUSE="debug qt4"
-
-RDEPEND="
-	dev-qt/qtcore:5
-	dev-qt/qtdbus:5
-	dev-qt/qtgui:5
-	dev-qt/qtwidgets:5
-	qt4? (
-		>=dev-qt/qtcore-4.8.6:4[${MULTILIB_USEDEP}]
-		>=dev-qt/qtdbus-4.8.6:4[${MULTILIB_USEDEP}]
-		>=dev-qt/qtgui-4.8.6:4[${MULTILIB_USEDEP}]
-	)
-"
-DEPEND="${RDEPEND}
-	test? (
-		dev-qt/qttest:5
-		qt4? ( >=dev-qt/qttest-4.8.6:4[${MULTILIB_USEDEP}] )
-	)
-"
-
-[[ ${PV} == 9999* ]] || S=${WORKDIR}/${PN}-${MY_PV}
-
-DOCS=( NEWS README )
-
-# tests fail due to missing connection to dbus
-RESTRICT="test"
-
-pkg_setup() {
-	MULTIBUILD_VARIANTS=( $(usex qt4 4) 5 )
-}
-
-src_prepare() {
-	[[ ${PV} == 9999* ]] && bzr_src_prepare
-	cmake-utils_src_prepare
-
-	cmake_comment_add_subdirectory tools
-	use test || cmake_comment_add_subdirectory tests
-}
-
-multilib_src_configure() {
-	local mycmakeargs=(
-		-DWITH_DOC=OFF
-		-DUSE_QT${QT_MULTIBUILD_VARIANT}=ON
-		-DQT_QMAKE_EXECUTABLE="/usr/$(get_libdir)/qt${QT_MULTIBUILD_VARIANT}/bin/qmake"
-	)
-	cmake-utils_src_configure
-}
-
-src_configure() {
-	myconfigure() {
-		local QT_MULTIBUILD_VARIANT=${MULTIBUILD_VARIANT}
-		if [[ ${MULTIBUILD_VARIANT} = 4 ]] ; then
-			cmake-multilib_src_configure
-		elif [[ ${MULTIBUILD_VARIANT} = 5 ]] ; then
-			multilib_src_configure
-		fi
-	}
-
-	multibuild_foreach_variant myconfigure
-}
-
-src_compile() {
-	mycompile() {
-		if [[ ${MULTIBUILD_VARIANT} = 4 ]] ; then
-			cmake-multilib_src_compile
-		elif [[ ${MULTIBUILD_VARIANT} = 5 ]] ; then
-			cmake-utils_src_compile
-		fi
-	}
-
-	multibuild_foreach_variant mycompile
-}
-
-src_install() {
-	myinstall() {
-		if [[ ${MULTIBUILD_VARIANT} = 4 ]] ; then
-			cmake-multilib_src_install
-		elif [[ ${MULTIBUILD_VARIANT} = 5 ]] ; then
-			cmake-utils_src_install
-		fi
-	}
-
-	multibuild_foreach_variant myinstall
-}
-
-src_test() {
-	mytest() {
-		if [[ ${MULTIBUILD_VARIANT} = 4 ]] ; then
-			cmake-multilib_src_test
-		elif [[ ${MULTIBUILD_VARIANT} = 5 ]] ; then
-			multilib_src_test
-		fi
-	}
-
-	multibuild_foreach_variant mytest
-}
-
-multilib_src_test() {
-	local builddir=${BUILD_DIR}
-
-	BUILD_DIR=${BUILD_DIR}/tests virtx cmake-utils_src_test
-
-	BUILD_DIR=${builddir}
-}


             reply	other threads:[~2020-09-07 17:54 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-09-07 17:54 Andreas Sturmlechner [this message]
  -- strict thread matches above, loose matches on Subject: below --
2018-04-10 13:22 [gentoo-commits] proj/kde-sunset:master commit in: dev-libs/libdbusmenu-qt/ Andreas Sturmlechner

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1599501248.e249e40f789cfd533c18c863d823deca2f0044a2.asturm@gentoo \
    --to=asturm@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox