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] repo/gentoo:master commit in: media-libs/libmygpo-qt/
Date: Fri,  8 Dec 2017 18:32:30 +0000 (UTC)	[thread overview]
Message-ID: <1512757840.d3aa6207be79aeae23cbc1d155dfef6d6a55eab2.asturm@gentoo> (raw)

commit:     d3aa6207be79aeae23cbc1d155dfef6d6a55eab2
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Fri Dec  8 16:59:53 2017 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Fri Dec  8 18:30:40 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3aa6207

media-libs/libmygpo-qt: Drop old

Package-Manager: Portage-2.3.17, Repoman-2.3.6

 media-libs/libmygpo-qt/Manifest                    |  2 -
 media-libs/libmygpo-qt/libmygpo-qt-1.0.7-r1.ebuild | 45 ----------------------
 media-libs/libmygpo-qt/libmygpo-qt-1.0.7.ebuild    | 30 ---------------
 media-libs/libmygpo-qt/libmygpo-qt-1.0.8.ebuild    | 45 ----------------------
 4 files changed, 122 deletions(-)

diff --git a/media-libs/libmygpo-qt/Manifest b/media-libs/libmygpo-qt/Manifest
index 756fb143e63..f234e9f7465 100644
--- a/media-libs/libmygpo-qt/Manifest
+++ b/media-libs/libmygpo-qt/Manifest
@@ -1,3 +1 @@
-DIST libmygpo-qt-1.0.7.tar.gz 62703 SHA256 43b9c00ae2c206ac64cf725918024b3d0927bbde880196a016f2ee329bac50fd SHA512 b1aad4daa32a41173d060f026245074ff2d11b9747447cb97cea9e3b93ea42e9ce89f67d4ed6396ed2b087db1f149e12543fb0a5d897e74a359c3115a418b45b WHIRLPOOL 5d7bbcf724677bc326060d4c8f79cadddd32caa240b830acdf2bcf0f213f6712dc2082fd1d6ad711edd23addd72e7553fdce1f2f1726cc0f8694ed9d4c4e04ae
-DIST libmygpo-qt-1.0.8.tar.gz 65064 SHA256 a0133b9d1850140a85d045d5a5db568735d19d62cd2f415e56e8b96689e2ce2e SHA512 1681b37387f7c18b74acbe5babd0ed435b289e87bca16e8c9ac7de53ff16012a82ed091cb77fd8c7972d470a71f38d1c9ab7c5f1e1bfe69db74f6fdc8d8a9bc8 WHIRLPOOL 51f7a503dfd4a893857d35b53010cecb9d278e9f4ab6424e07fbe3bc4d6c124eb7d36fcf1b437ea5349312ae21862a91189dc8da9cae5f763717d94ed2f1725a
 DIST libmygpo-qt-1.0.9.tar.gz 65153 SHA256 65f477d8240aa3d173733bcf491d52663388f4aee0141184374a70f3ecb64ee0 SHA512 c7920841310c7b971d305e38586238e081c80a449a1b442e668d2b07ada5d6ff626e697db905a83d7b12a06127f975a9b02af13d8d3e1ebee04d407b4d4b48b6 WHIRLPOOL 9400de811157696c4cd2d274f05e00b2ad2323115f1e78e07c6859c312315f39181b1d41fd82f4bffa9d7ed10c97db57bffbca6c8007b455980c06de0855635a

diff --git a/media-libs/libmygpo-qt/libmygpo-qt-1.0.7-r1.ebuild b/media-libs/libmygpo-qt/libmygpo-qt-1.0.7-r1.ebuild
deleted file mode 100644
index c4feab6fe2d..00000000000
--- a/media-libs/libmygpo-qt/libmygpo-qt-1.0.7-r1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit cmake-utils
-
-DESCRIPTION="Qt/C++ library wrapping the gpodder.net webservice"
-HOMEPAGE="http://wiki.gpodder.org/wiki/Libmygpo-qt"
-
-if [[ ${PV} == *9999* ]]; then
-	EGIT_REPO_URI="https://github.com/gpodder/libmygpo-qt.git"
-	KEYWORDS=""
-	SRC_URI=""
-	inherit git-2
-else
-	KEYWORDS="amd64 x86"
-	SRC_URI="https://github.com/gpodder/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-fi
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-IUSE="test"
-
-RDEPEND="dev-qt/qtcore:4
-	>=dev-libs/qjson-0.5"
-DEPEND="${RDEPEND}
-	dev-qt/qttest:4
-	virtual/pkgconfig
-	test? ( dev-qt/qttest:4 )"
-
-DOCS=( AUTHORS README )
-
-src_prepare() {
-	cmake-utils_src_prepare
-	if ! use test ; then
-		sed -i -e '/find_package/s/QtTest//' CMakeLists.txt || die
-	fi
-}
-
-src_configure() {
-	local mycmakeargs=(
-		$(cmake-utils_use test MYGPO_BUILD_TESTS)
-	)
-	cmake-utils_src_configure
-}

diff --git a/media-libs/libmygpo-qt/libmygpo-qt-1.0.7.ebuild b/media-libs/libmygpo-qt/libmygpo-qt-1.0.7.ebuild
deleted file mode 100644
index 12525dabbcc..00000000000
--- a/media-libs/libmygpo-qt/libmygpo-qt-1.0.7.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit cmake-utils
-
-DESCRIPTION="Qt/C++ library wrapping the gpodder.net webservice"
-HOMEPAGE="http://wiki.gpodder.org/wiki/Libmygpo-qt"
-
-if [[ ${PV} == *9999* ]]; then
-	EGIT_REPO_URI="https://github.com/gpodder/libmygpo-qt.git"
-	KEYWORDS=""
-	SRC_URI=""
-	inherit git-2
-else
-	KEYWORDS="amd64 x86"
-	SRC_URI="https://github.com/gpodder/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-fi
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-IUSE=""
-
-RDEPEND="dev-qt/qtcore:4
-	>=dev-libs/qjson-0.5"
-DEPEND="${RDEPEND}
-	dev-qt/qttest:4
-	virtual/pkgconfig"
-
-DOCS=( AUTHORS README )

diff --git a/media-libs/libmygpo-qt/libmygpo-qt-1.0.8.ebuild b/media-libs/libmygpo-qt/libmygpo-qt-1.0.8.ebuild
deleted file mode 100644
index a58221b01f8..00000000000
--- a/media-libs/libmygpo-qt/libmygpo-qt-1.0.8.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit cmake-utils
-
-DESCRIPTION="Qt/C++ library wrapping the gpodder.net webservice"
-HOMEPAGE="http://wiki.gpodder.org/wiki/Libmygpo-qt"
-
-if [[ ${PV} == *9999* ]]; then
-	EGIT_REPO_URI="https://github.com/gpodder/libmygpo-qt.git"
-	KEYWORDS=""
-	SRC_URI=""
-	inherit git-2
-else
-	KEYWORDS="~amd64 ~x86"
-	SRC_URI="https://github.com/gpodder/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-fi
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-IUSE="test"
-
-RDEPEND="dev-qt/qtcore:4
-	>=dev-libs/qjson-0.5"
-DEPEND="${RDEPEND}
-	virtual/pkgconfig
-	test? ( dev-qt/qttest:4 )"
-
-DOCS=( AUTHORS README )
-PATCHES=( ${FILESDIR}/${P}-fix-JsonCreatorTest-failure.patch )
-
-src_prepare() {
-	cmake-utils_src_prepare
-	if ! use test ; then
-		sed -i -e '/find_package/s/QtTest//' CMakeLists.txt || die
-	fi
-}
-
-src_configure() {
-	local mycmakeargs=(
-		$(cmake-utils_use test MYGPO_BUILD_TESTS)
-	)
-	cmake-utils_src_configure
-}


             reply	other threads:[~2017-12-08 18:32 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-12-08 18:32 Andreas Sturmlechner [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-02-23 21:46 [gentoo-commits] repo/gentoo:master commit in: media-libs/libmygpo-qt/ Andreas Sturmlechner
2021-02-28 12:26 Andreas Sturmlechner
2021-02-16  8:25 Sergei Trofimovich
2020-12-07 18:48 Sam James
2019-04-28 23:45 Andreas Sturmlechner
2018-04-25 19:27 Thomas Deutschmann
2018-04-25 11:48 Aaron Bauman
2018-04-15 20:52 Andreas Sturmlechner
2018-04-12 21:08 Jonas Stein
2018-03-22 18:38 Andreas Sturmlechner
2018-03-22 18:38 Andreas Sturmlechner
2016-12-27  9:48 Aaron Bauman
2016-12-26 16:14 Lars Wendler
2016-12-26 16:14 Lars Wendler
2016-12-26 16:14 Lars Wendler
2016-01-13 17:21 Lars Wendler

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=1512757840.d3aa6207be79aeae23cbc1d155dfef6d6a55eab2.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