From: "Michael Palimaka" <kensington@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/telepathy-qt/
Date: Wed, 10 Aug 2016 18:44:30 +0000 (UTC) [thread overview]
Message-ID: <1470854662.bb19bea20e1d88160894f69c4987fd8818d1e5cd.kensington@gentoo> (raw)
commit: bb19bea20e1d88160894f69c4987fd8818d1e5cd
Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 10 18:41:48 2016 +0000
Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Wed Aug 10 18:44:22 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb19bea2
net-libs/telepathy-qt: remove old
Package-Manager: portage-2.3.0
net-libs/telepathy-qt/Manifest | 1 -
.../telepathy-qt/telepathy-qt-0.9.6.1-r1.ebuild | 112 ---------------------
net-libs/telepathy-qt/telepathy-qt-0.9.6.1.ebuild | 102 -------------------
3 files changed, 215 deletions(-)
diff --git a/net-libs/telepathy-qt/Manifest b/net-libs/telepathy-qt/Manifest
index dd26617..5f93a3d 100644
--- a/net-libs/telepathy-qt/Manifest
+++ b/net-libs/telepathy-qt/Manifest
@@ -1,2 +1 @@
-DIST telepathy-qt-0.9.6.1.tar.gz 6067468 SHA256 496eb4951ea9b181d7d68a2122a885474c4f73b519319496aa1b97d9b361a1f8 SHA512 d15bdf94ef2b546270130012e8636fb2801b0c4fb50513ac0dbc0e1f6255d84da6df12195b3d26dc6df5a9466929a1073e87d2a9e600c7bf26c3e1aa112113b7 WHIRLPOOL 621137fc10ce3db1d834711aaf876adf98056a5ca8bab22c011e881e71522060cd6110733880db4f6646872501b870305d3590428ea3d809b4b512bbc21e653b
DIST telepathy-qt-0.9.7.tar.gz 6213405 SHA256 21bad30be7ebc4ba667d53d92cd1cec1be23114103f2149404d9740721693d4f SHA512 081daecb2509ea690079014bcc88eacbf2b3e4f4ac42aaf1b0cb264c01b801bc499a041482571d383f258cb3d3e2c6ffa5682fbe417fe807fcc25a06d2ead877 WHIRLPOOL 81569b648ae51ba932d1a212d69cd51a727201f5c36f7b91fe2da52ec0ed3a3fc01165a260f262e182474a383ff614ea6e4ee7dd6691add04052b1f4d14cd63d
diff --git a/net-libs/telepathy-qt/telepathy-qt-0.9.6.1-r1.ebuild b/net-libs/telepathy-qt/telepathy-qt-0.9.6.1-r1.ebuild
deleted file mode 100644
index 1ac2c44..0000000
--- a/net-libs/telepathy-qt/telepathy-qt-0.9.6.1-r1.ebuild
+++ /dev/null
@@ -1,112 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 )
-inherit python-any-r1 cmake-utils virtualx multibuild
-
-DESCRIPTION="Qt bindings for the Telepathy D-Bus protocol"
-HOMEPAGE="https://telepathy.freedesktop.org/"
-SRC_URI="https://telepathy.freedesktop.org/releases/${PN}/${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
-IUSE="debug farstream +qt4 qt5 test"
-
-REQUIRED_USE="|| ( qt4 qt5 )"
-
-RDEPEND="
- farstream? (
- >=net-libs/telepathy-farstream-0.2.2
- >=net-libs/telepathy-glib-0.18.0
- )
- qt4? (
- dev-qt/qtcore:4
- dev-qt/qtdbus:4
- )
- qt5? (
- dev-qt/qtcore:5
- dev-qt/qtdbus:5
- dev-qt/qtgui:5
- dev-qt/qtnetwork:5
- dev-qt/qtxml:5
- )
- !net-libs/telepathy-qt4
-"
-DEPEND="${RDEPEND}
- ${PYTHON_DEPS}
- virtual/pkgconfig
- test? (
- dev-libs/dbus-glib
- dev-libs/glib:2
- dev-python/dbus-python
- qt4? ( dev-qt/qttest:4 )
- qt5? ( dev-qt/qttest:5 )
- )
-"
-
-DOCS=( AUTHORS ChangeLog HACKING NEWS README )
-
-PATCHES=(
- "${FILESDIR}/${P}-default-source.patch"
- "${FILESDIR}/${P}-yes-release.patch"
- "${FILESDIR}/${P}-gstreamer-1.5.patch"
- "${FILESDIR}/${P}-qtpath.patch"
- "${FILESDIR}/${P}-python.patch"
- "${FILESDIR}/${P}-includes.patch"
- "${FILESDIR}/${P}-service-dependencies.patch"
-)
-
-# bug 549448 - last checked with 0.9.6.1
-RESTRICT="test"
-
-pkg_setup() {
- python-any-r1_pkg_setup
-
- MULTIBUILD_VARIANTS=( $(usev qt4) $(usev qt5) )
-}
-
-src_configure() {
- myconfigure() {
- local mycmakeargs=(
- -DENABLE_DEBUG_OUTPUT=$(usex debug)
- -DENABLE_FARSTREAM=$(usex farstream)
- -DENABLE_TESTS=$(usex test)
- -DENABLE_EXAMPLES=OFF
- )
- if [[ ${MULTIBUILD_VARIANT} = qt4 ]]; then
- mycmakeargs+=( -DDESIRED_QT_VERSION=4 )
- fi
- if [[ ${MULTIBUILD_VARIANT} = qt5 ]]; then
- mycmakeargs+=( -DDESIRED_QT_VERSION=5 )
- fi
- cmake-utils_src_configure
- }
-
- multibuild_foreach_variant myconfigure
-}
-
-src_compile() {
- multibuild_foreach_variant cmake-utils_src_compile
-}
-
-src_test() {
- _test_runner() {
- ctest -E '(CallChannel)'
- }
-
- mytest() {
- pushd "${BUILD_DIR}" > /dev/null || die
- virtx _test_runner
- popd > /dev/null || die
- }
-
- multibuild_foreach_variant mytest
-}
-
-src_install() {
- multibuild_foreach_variant cmake-utils_src_install
-}
diff --git a/net-libs/telepathy-qt/telepathy-qt-0.9.6.1.ebuild b/net-libs/telepathy-qt/telepathy-qt-0.9.6.1.ebuild
deleted file mode 100644
index 7de0313..0000000
--- a/net-libs/telepathy-qt/telepathy-qt-0.9.6.1.ebuild
+++ /dev/null
@@ -1,102 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-inherit python-any-r1 cmake-utils virtualx multibuild
-
-DESCRIPTION="Qt bindings for the Telepathy D-Bus protocol"
-HOMEPAGE="https://telepathy.freedesktop.org/"
-SRC_URI="https://telepathy.freedesktop.org/releases/${PN}/${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="amd64 ~arm x86"
-IUSE="debug farstream +qt4 qt5 test"
-
-REQUIRED_USE="|| ( qt4 qt5 )"
-
-RDEPEND="
- farstream? (
- >=net-libs/telepathy-farstream-0.2.2
- >=net-libs/telepathy-glib-0.18.0
- )
- qt4? (
- dev-qt/qtcore:4
- dev-qt/qtdbus:4
- )
- qt5? (
- dev-qt/qtcore:5
- dev-qt/qtdbus:5
- dev-qt/qtgui:5
- dev-qt/qtnetwork:5
- dev-qt/qtxml:5
- )
- !net-libs/telepathy-qt4
-"
-DEPEND="${RDEPEND}
- ${PYTHON_DEPS}
- virtual/pkgconfig
- test? (
- dev-libs/dbus-glib
- dev-libs/glib:2
- dev-python/dbus-python
- qt4? ( dev-qt/qttest:4 )
- qt5? ( dev-qt/qttest:5 )
- )
-"
-
-DOCS=( AUTHORS ChangeLog HACKING NEWS README )
-
-PATCHES=(
- "${FILESDIR}/${P}-default-source.patch"
- "${FILESDIR}/${P}-yes-release.patch"
- "${FILESDIR}/${P}-gstreamer-1.5.patch"
- "${FILESDIR}/${P}-qtpath.patch"
-)
-
-pkg_setup() {
- python-any-r1_pkg_setup
-
- MULTIBUILD_VARIANTS=( $(usev qt4) $(usev qt5) )
-}
-
-src_configure() {
- myconfigure() {
- local mycmakeargs=(
- $(cmake-utils_use_enable debug DEBUG_OUTPUT)
- $(cmake-utils_use_enable farstream)
- $(cmake-utils_use_enable test TESTS)
- -DENABLE_EXAMPLES=OFF
- )
- if [[ ${MULTIBUILD_VARIANT} = qt4 ]]; then
- mycmakeargs+=(-DDESIRED_QT_VERSION=4)
- fi
- if [[ ${MULTIBUILD_VARIANT} = qt5 ]]; then
- mycmakeargs+=(-DDESIRED_QT_VERSION=5)
- fi
- cmake-utils_src_configure
- }
-
- multibuild_foreach_variant myconfigure
-}
-
-src_compile() {
- multibuild_foreach_variant cmake-utils_src_compile
-}
-
-src_test() {
- mytest() {
- pushd "${BUILD_DIR}" > /dev/null
- VIRTUALX_COMMAND="ctest -E '(CallChannel)'" virtualmake || die "tests failed"
- popd > /dev/null
- }
-
- multibuild_foreach_variant mytest
-}
-
-src_install() {
- multibuild_foreach_variant cmake-utils_src_install
-}
next reply other threads:[~2016-08-10 18:44 UTC|newest]
Thread overview: 31+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-08-10 18:44 Michael Palimaka [this message]
-- strict thread matches above, loose matches on Subject: below --
2022-10-25 19:40 [gentoo-commits] repo/gentoo:master commit in: net-libs/telepathy-qt/ Andreas Sturmlechner
2022-08-11 10:38 Sam James
2021-09-22 23:05 Andreas Sturmlechner
2021-09-22 23:05 Andreas Sturmlechner
2021-09-12 11:28 Yixun Lan
2021-01-24 14:46 Andreas Sturmlechner
2020-11-24 19:59 Andreas Sturmlechner
2020-07-15 13:27 Andreas Sturmlechner
2020-04-17 14:17 Andreas Sturmlechner
2020-04-17 14:17 Andreas Sturmlechner
2019-12-31 16:46 Andreas Sturmlechner
2019-12-08 16:00 Andreas Sturmlechner
2019-12-03 11:30 Andreas Sturmlechner
2019-12-02 23:29 Aaron Bauman
2019-12-02 16:33 Mikle Kolyada
2019-12-02 16:12 Mikle Kolyada
2019-11-17 12:46 Andreas Sturmlechner
2019-11-17 12:46 Andreas Sturmlechner
2019-11-17 12:46 Andreas Sturmlechner
2018-12-12 14:06 Andreas Sturmlechner
2017-12-09 8:09 Andreas Sturmlechner
2017-11-30 22:54 Andreas Sturmlechner
2017-11-30 19:02 Thomas Deutschmann
2017-08-31 20:54 Andreas Sturmlechner
2016-08-10 18:44 Michael Palimaka
2016-06-14 13:12 Amy Winston
2016-06-14 13:12 Amy Winston
2015-10-25 15:18 Michael Palimaka
2015-10-25 13:02 Mikle Kolyada
2015-10-19 9:27 Agostino Sarubbo
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=1470854662.bb19bea20e1d88160894f69c4987fd8818d1e5cd.kensington@gentoo \
--to=kensington@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