public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: media-video/minitube/files/, profiles/, media-video/minitube/
@ 2019-11-25 16:32 Andreas Sturmlechner
  0 siblings, 0 replies; only message in thread
From: Andreas Sturmlechner @ 2019-11-25 16:32 UTC (permalink / raw
  To: gentoo-commits

commit:     523ea70346737a0642483be2e7345f19ebabc75f
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 25 16:30:51 2019 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Mon Nov 25 16:32:06 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=523ea703

media-video/minitube: Drop last-rited package

Bug: https://bugs.gentoo.org/608334
Bug: https://bugs.gentoo.org/671652
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 media-video/minitube/Manifest                      |  1 -
 .../files/minitube-2.5.1-disable-updates.patch     | 11 ---
 media-video/minitube/metadata.xml                  | 14 ----
 media-video/minitube/minitube-2.5.2-r1.ebuild      | 88 ----------------------
 profiles/package.mask                              |  6 --
 5 files changed, 120 deletions(-)

diff --git a/media-video/minitube/Manifest b/media-video/minitube/Manifest
deleted file mode 100644
index baa93a2b8b2..00000000000
--- a/media-video/minitube/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST minitube-2.5.2.tar.gz 1063794 BLAKE2B 511923c85efc8f4b8db621047d1887d54f518ef7f01fa1dc76a05bbc4bc8e1e0038318d2fee280b6e0f06a5e1d46e02ddc547a60f62086ea24ad28849ec728a3 SHA512 4001ea95e6d3b541e9a8a2555830238f6e3a0b4749566dfd67ae48fdc6102ec77a38e162e04fb2637cc5ff2b3dccdca541119531302332ffa3b90d9db8809284

diff --git a/media-video/minitube/files/minitube-2.5.1-disable-updates.patch b/media-video/minitube/files/minitube-2.5.1-disable-updates.patch
deleted file mode 100644
index a5f496e92b2..00000000000
--- a/media-video/minitube/files/minitube-2.5.1-disable-updates.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- minitube-2.5.1.orig/src/mainwindow.cpp
-+++ minitube-2.5.1/src/mainwindow.cpp
-@@ -232,8 +232,6 @@
- 
-     ChannelAggregator::instance()->start();
- 
--    checkForUpdate();
--
-     initialized = true;
- }
- 

diff --git a/media-video/minitube/metadata.xml b/media-video/minitube/metadata.xml
deleted file mode 100644
index fb12418babd..00000000000
--- a/media-video/minitube/metadata.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-	<maintainer type="project">
-		<email>media-video@gentoo.org</email>
-		<name>Gentoo Video project</name>
-	</maintainer>
-	<use>
-		<flag name="download">Enable support for downloading YouTube videos</flag>
-	</use>
-	<upstream>
-		<remote-id type="github">flaviotordini/minitube</remote-id>
-	</upstream>
-</pkgmetadata>

diff --git a/media-video/minitube/minitube-2.5.2-r1.ebuild b/media-video/minitube/minitube-2.5.2-r1.ebuild
deleted file mode 100644
index 97e767c3afe..00000000000
--- a/media-video/minitube/minitube-2.5.2-r1.ebuild
+++ /dev/null
@@ -1,88 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-PLOCALES="ar ca ca_ES da de_DE el en es es_AR es_ES fi fi_FI fr he_IL hr hu
-ia it jv nl pl pl_PL pt_BR ro ru sk sl tr zh_CN"
-PLOCALE_BACKUP="en"
-
-inherit l10n qmake-utils
-
-DESCRIPTION="Qt5 YouTube Client"
-HOMEPAGE="https://flavio.tordini.org/minitube"
-SRC_URI="https://github.com/flaviotordini/${PN}/archive/${PV}.tar.gz ->
-${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="debug download"
-
-DEPEND="dev-qt/qtgui:5[accessibility]
-	dev-qt/qtdbus:5
-	dev-qt/qtnetwork:5
-	dev-qt/qtscript:5
-	dev-qt/qtsql:5[sqlite]
-	dev-qt/qtwidgets:5
-	dev-qt/qtsingleapplication[qt5(+),X]
-	media-libs/phonon[qt5(+)]
-"
-RDEPEND="${DEPEND}"
-
-DOCS="AUTHORS CHANGES TODO"
-
-#455976
-PATCHES=( "${FILESDIR}"/${PN}-2.5.1-disable-updates.patch )
-
-src_prepare() {
-	epatch "${PATCHES[@]}"
-
-	# Remove unneeded translations
-	local trans=
-	for x in $(l10n_get_locales); do
-		trans+="${x}.ts "
-	done
-	if [[ -n ${trans} ]]; then
-		sed -i -e "/^TRANSLATIONS/s/+=.*/+=${trans}/" locale/locale.pri || die
-	fi
-	sed -i \
-		's|include(src/qtsingleapplication/qtsingleapplication.pri)|CONFIG += qtsingleapplication|g' \
-		${PN}.pro || die "Failed to unbundle qtsingleapplication"
-
-	# Enable video downloads. Bug #491344
-	use download && { echo "DEFINES += APP_DOWNLOADS" >> ${PN}.pro; }
-	echo "DEFINES += APP_GOOGLE_API_KEY=${MINITUBE_GOOGLE_API_KEY}" >> ${PN}.pro
-
-	epatch_user
-}
-
-src_configure() {
-	eqmake5
-}
-
-src_install() {
-	emake INSTALL_ROOT="${D}" install
-	einstalldocs
-	newicon images/app.png minitube.png
-}
-
-pkg_postinst() {
-	elog ""
-	elog "Since version 2.4, you need to generate a Google API Key to use"
-	elog "with this application. Please head over to"
-	elog "https://console.developers.google.com/ and"
-	elog "https://github.com/flaviotordini/minitube/blob/master/README.md"
-	elog "for more information. Once you have generated your key,"
-	elog "please put it in QSettings key \"googleApiKey\", e.g.:"
-	elog "# echo 'googleApiKey=YourKeyHere' >> \"\${HOME}/.config/Flavio Tordini/Minitube.conf\""
-	elog ""
-
-	if use download; then
-		elog "You activated the 'download' USE flag. This allows you to"
-		elog "download videos from youtube, which might violate the youtube"
-		elog "terms-of-service (TOS) in some legislations. If downloading"
-		elog "youtube-videos is not allowed in your legislation, please"
-		elog "disable the 'download' use flag. For details on the youtube TOS,"
-		elog "see http://www.youtube.com/t/terms"
-	fi
-}

diff --git a/profiles/package.mask b/profiles/package.mask
index 3944c7915bb..18b9ce2dddc 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -278,12 +278,6 @@ net-analyzer/openvas-cli
 net-analyzer/openvas-tools
 dev-ruby/openvas-omp
 
-# Andreas Sturmlechner <asturm@gentoo.org> (2019-10-26)
-# Version in Gentoo is years old, does not work, no one stepped up
-# to maintain it. Package needs Google API key to actually work.
-# Removal in 30 days. Bug #608334
-media-video/minitube
-
 # Michał Górny <mgorny@gentoo.org> (2019-10-26)
 # Incorrect LICENSE entry, and no clear license information to be found.
 # Homepage gone, and source of some of the files unknown.


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2019-11-25 16:32 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-11-25 16:32 [gentoo-commits] repo/gentoo:master commit in: media-video/minitube/files/, profiles/, media-video/minitube/ Andreas Sturmlechner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox