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 6A1B9139082 for ; Mon, 27 Nov 2017 23:58:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 733FCE0F4E; Mon, 27 Nov 2017 23:58:45 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 4F661E0F4E for ; Mon, 27 Nov 2017 23:58:45 +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 91E6633D3C7 for ; Mon, 27 Nov 2017 23:58:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C43C7A9E0 for ; Mon, 27 Nov 2017 23:58:41 +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: <1511827045.5f1599119320e66090ce36f24941fbfb0261ee64.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/jreen/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/jreen/jreen-1.3.0.ebuild X-VCS-Directories: net-libs/jreen/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 5f1599119320e66090ce36f24941fbfb0261ee64 X-VCS-Branch: master Date: Mon, 27 Nov 2017 23:58:41 +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-Archives-Salt: d58ad8ef-e5eb-4580-ac8f-26fce205c612 X-Archives-Hash: 444228fb0bdb39a4e8e8e42896af14f4 commit: 5f1599119320e66090ce36f24941fbfb0261ee64 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Nov 26 22:05:25 2017 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Nov 27 23:57:25 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f159911 net-libs/jreen: Drop old Package-Manager: Portage-2.3.16, Repoman-2.3.6 net-libs/jreen/jreen-1.3.0.ebuild | 73 --------------------------------------- 1 file changed, 73 deletions(-) diff --git a/net-libs/jreen/jreen-1.3.0.ebuild b/net-libs/jreen/jreen-1.3.0.ebuild deleted file mode 100644 index aea62ff6125..00000000000 --- a/net-libs/jreen/jreen-1.3.0.ebuild +++ /dev/null @@ -1,73 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -if [[ ${PV} != *9999* ]]; then - SRC_URI="https://github.com/euroelessar/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="amd64 ~ppc x86" -else - GIT_ECLASS="git-r3" - EGIT_REPO_URI="https://github.com/euroelessar/${PN}.git" -fi - -inherit cmake-utils multibuild ${GIT_ECLASS} - -DESCRIPTION="Qt XMPP library" -HOMEPAGE="https://github.com/euroelessar/jreen" - -LICENSE="GPL-2" -SLOT="0" -IUSE="debug +qt4 qt5" - -REQUIRED_USE="|| ( qt4 qt5 )" - -DEPEND=" - media-libs/speex - net-libs/libgsasl - sys-libs/zlib - qt4? ( - dev-qt/qtcore:4[ssl] - dev-qt/qtgui:4 - ) - qt5? ( - dev-qt/qtcore:5 - dev-qt/qtnetwork:5 - ) -" -RDEPEND="${DEPEND}" - -DOCS=( AUTHORS ChangeLog README.md ) - -pkg_setup() { - MULTIBUILD_VARIANTS=( $(usev qt4) $(usev qt5) ) -} - -src_configure() { - myconfigure() { - local mycmakeargs=() - - if [[ ${MULTIBUILD_VARIANT} = qt4 ]]; then - mycmakeargs+=( -DJREEN_FORCE_QT4=ON ) - fi - if [[ ${MULTIBUILD_VARIANT} = qt5 ]]; then - mycmakeargs+=( -DJREEN_FORCE_QT4=OFF ) - fi - - cmake-utils_src_configure - } - - multibuild_foreach_variant myconfigure -} - -src_compile() { - multibuild_foreach_variant cmake-utils_src_compile -} - -src_install() { - multibuild_foreach_variant cmake-utils_src_install -} - -src_test() { - multibuild_foreach_variant cmake-utils_src_test -}