From ed40676841e317a2aafa04c4c804bb6043864740 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Fri, 26 Feb 2016 23:50:05 +0000 Subject: repo cleanup...drop old ebuilds, drop ebuilds already in portage tree --- media-sound/pithos/Manifest | 1 - .../files/pithos-20130808-detect-datadir.patch | 16 ------- .../files/pithos-20130808-dont-notify-volume.patch | 13 ------ media-sound/pithos/files/setup.py | 37 ---------------- media-sound/pithos/metadata.xml | 8 ---- media-sound/pithos/pithos-20130808.ebuild | 49 ---------------------- 6 files changed, 124 deletions(-) delete mode 100644 media-sound/pithos/Manifest delete mode 100644 media-sound/pithos/files/pithos-20130808-detect-datadir.patch delete mode 100644 media-sound/pithos/files/pithos-20130808-dont-notify-volume.patch delete mode 100644 media-sound/pithos/files/setup.py delete mode 100644 media-sound/pithos/metadata.xml delete mode 100644 media-sound/pithos/pithos-20130808.ebuild (limited to 'media-sound/pithos') diff --git a/media-sound/pithos/Manifest b/media-sound/pithos/Manifest deleted file mode 100644 index 810e6ce3..00000000 --- a/media-sound/pithos/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST pithos-20130808.tar.gz 138217 SHA256 aee6755562a5391ad9e1edcc35633e11f8575ee128da4d0faf5d8746966ca317 SHA512 c62df5c9b45569ea59cc013c69c2359e8217ee2aac4d87dbc7bdd0af6a72926f1962f213bec9885891621abb9f4ffe01b9f49e6728b1025042eadc5ddabe49a4 WHIRLPOOL d21ca3695a96d12c5a93f21d3b9c109b2dd1b72c289a5aac00a59ca40cdf3bf72ffe8a0d2a56cd210e44d2173fc6c38c9f0d02ac7cb8af7d5d5d390c0d49a28a diff --git a/media-sound/pithos/files/pithos-20130808-detect-datadir.patch b/media-sound/pithos/files/pithos-20130808-detect-datadir.patch deleted file mode 100644 index ba3414bb..00000000 --- a/media-sound/pithos/files/pithos-20130808-detect-datadir.patch +++ /dev/null @@ -1,16 +0,0 @@ -diff --git a/pithos/pithosconfig.py b/pithos/pithosconfig.py -index dfaaf5d..f82b458 100644 ---- a/pithos/pithosconfig.py -+++ b/pithos/pithosconfig.py -@@ -16,7 +16,10 @@ - - # where your project will head for your data (for instance, images and ui files) - # by default, this is ../data, relative your trunk layout --__pithos_data_directory__ = '../data/' -+from os.path import isdir, normpath, join -+__pithos_data_directory__ = (normpath(join(__file__, '../data/')) -+ if isdir(join(__file__, '../data/')) -+ else '/usr/share/pithos') - __license__ = 'GPL-3' - - VERSION = '0.3.17' diff --git a/media-sound/pithos/files/pithos-20130808-dont-notify-volume.patch b/media-sound/pithos/files/pithos-20130808-dont-notify-volume.patch deleted file mode 100644 index cf605b32..00000000 --- a/media-sound/pithos/files/pithos-20130808-dont-notify-volume.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/bin/pithos b/bin/pithos -index 725ad7b..62ddd88 100755 ---- a/bin/pithos -+++ b/bin/pithos -@@ -204,7 +204,7 @@ class PithosWindow(gtk.Window): - bus.connect("message::eos", self.on_gst_eos) - bus.connect("message::buffering", self.on_gst_buffering) - bus.connect("message::error", self.on_gst_error) -- self.player.connect("notify::volume", self.on_gst_volume) -+ #self.player.connect("notify::volume", self.on_gst_volume) - self.player.connect("notify::source", self.on_gst_source) - self.time_format = gst.Format(gst.FORMAT_TIME) - diff --git a/media-sound/pithos/files/setup.py b/media-sound/pithos/files/setup.py deleted file mode 100644 index 0d5776ae..00000000 --- a/media-sound/pithos/files/setup.py +++ /dev/null @@ -1,37 +0,0 @@ -# replacement for setup.py for pithos as the included one is.. less than ideal - -from os import walk -from glob import glob -from os.path import join -from setuptools import setup, find_packages - -DATA_DIR = '/usr/share/pithos/' -ICON_DIR = '/usr/share/icons/hicolor/' -APP_DIR = '/usr/share/applications' - -datadir = 'data' -datadirs = ['ui', 'media'] -icondir = 'data/icons' -bindir = 'bin' - -datafiles = [[(join(DATA_DIR, root.partition(datadir)[2].lstrip('/')), [join(root, f) for f in files]) - for root, dirs, files in walk(join(datadir, data))][0] for data in datadirs] - -datafiles += ([(join(ICON_DIR, root.partition(icondir)[2].lstrip('/')), [join(root, f) for f in files]) - for root, dirs, files in walk(icondir)]) - -datafiles += [(APP_DIR, glob('*.desktop'))] - -setup( - name='pithos', - version='0.3', - ext_modules=[], - license='GPL-3', - author='Kevin Mehall', - author_email='km@kevinmehall.net', - description='Pandora.com client for the GNOME desktop', - packages=find_packages(), - url='https://launchpad.net/pithos', - data_files=datafiles, - scripts=glob('bin/*'), -) diff --git a/media-sound/pithos/metadata.xml b/media-sound/pithos/metadata.xml deleted file mode 100644 index 34013640..00000000 --- a/media-sound/pithos/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - chutzpah@gentoo.org - Patrick McLean - - diff --git a/media-sound/pithos/pithos-20130808.ebuild b/media-sound/pithos/pithos-20130808.ebuild deleted file mode 100644 index c7dddcc0..00000000 --- a/media-sound/pithos/pithos-20130808.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/pithos/pithos-20130808.ebuild,v 1.2 2014/04/06 10:45:27 eva Exp $ - -EAPI=5 -PYTHON_COMPAT=(python2_7) -inherit eutils distutils-r1 - -if [[ ${PV} == 99999999 ]]; then - inherit git-2 - EGIT_REPO_URI="git://github.com/kevinmehall/pithos.git - https://github.com/kevinmehall/pithos.git" -else - MY_PV="6c9a9ff1660bb8c35b846cb5763f8a131228b6d4" - SRC_URI="https://github.com/kevinmehall/${PN}/archive/${MY_PV}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/${PN}-${MY_PV}" -fi - -DESCRIPTION="A Pandora Radio (pandora.com) player for the GNOME Desktop" -HOMEPAGE="http://kevinmehall.net/p/pithos/" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="gnome" - -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" - -RDEPEND="dev-python/pyxdg[${PYTHON_USEDEP}] - dev-python/pygobject:2[${PYTHON_USEDEP}] - dev-python/notify-python[${PYTHON_USEDEP}] - dev-python/pygtk[${PYTHON_USEDEP}] - dev-python/gst-python:0.10[${PYTHON_USEDEP}] - dev-python/dbus-python[${PYTHON_USEDEP}] - media-plugins/gst-plugins-meta:0.10[aac,http,mp3] - gnome? ( gnome-base/gnome-settings-daemon ) - !gnome? ( dev-libs/keybinder[python] )" - -PATCHES=( - "${FILESDIR}"/${P}-detect-datadir.patch - "${FILESDIR}"/${P}-dont-notify-volume.patch -) - -src_prepare() { - # replace the build system with something more sane - cp "${FILESDIR}"/setup.py "${S}" - - distutils-r1_src_prepare -} -- cgit v1.2.3