summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2016-11-09 11:57:25 +0100
committerPacho Ramos <pacho@gentoo.org>2016-11-09 11:59:16 +0100
commit517f783331e1c17e007963be5222369445a9904d (patch)
tree3db29a0de27c2855e2c572f4ad7f8f567f0decf5 /x11-plugins
parentpackage.mask drop obsolete entries (diff)
downloadgentoo-517f783331e1c17e007963be5222369445a9904d.tar.gz
gentoo-517f783331e1c17e007963be5222369445a9904d.tar.bz2
gentoo-517f783331e1c17e007963be5222369445a9904d.zip
Remove masked for removal packages
Diffstat (limited to 'x11-plugins')
-rw-r--r--x11-plugins/screenlets/Manifest1
-rw-r--r--x11-plugins/screenlets/metadata.xml26
-rw-r--r--x11-plugins/screenlets/screenlets-0.1.6.ebuild62
3 files changed, 0 insertions, 89 deletions
diff --git a/x11-plugins/screenlets/Manifest b/x11-plugins/screenlets/Manifest
deleted file mode 100644
index abce77cc6f72..000000000000
--- a/x11-plugins/screenlets/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST screenlets-0.1.6.tar.bz2 814470 SHA256 65383faaf02b6d571d2136c849cec5885583f513a9bbffacd3381cd998ee86e3 SHA512 f7b38de88ca500bef49a1be327aae29bb2c784e63b3ba0f7b02ed8d235935e0d372e7c1cf55e8ecff9bc91cb88fb2a697d70d18812ff06ff63935aca1612cb15 WHIRLPOOL cf3a25476323d433b03414f210afa7c384738b29167694d2c938c9fbe285d25e392679f348232758cc17a1e95af75dc90ee8a77d859d8452890fc77250c1fd69
diff --git a/x11-plugins/screenlets/metadata.xml b/x11-plugins/screenlets/metadata.xml
deleted file mode 100644
index 3e4125fe52a2..000000000000
--- a/x11-plugins/screenlets/metadata.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>desktop-misc@gentoo.org</email>
- <name>Gentoo Desktop Miscellaneous Project</name>
- </maintainer>
- <longdescription lang="en">
- Screenlets are small owner-drawn applications (written in Python) that
- can be described as "the virtual representation of things lying/standing
- around on your desk". Sticknotes, clocks, rulers, ... the possibilities
- are endless.
-
- The goal of the Screenlets base-classes is to simplify the creation of
- fully themeable mini-apps that each solve basic desktop-work-related
- needs and generally improve the usability and eye-candy of the modern
- composited Linux-desktop.
- </longdescription>
- <use>
- <flag name="svg">Highly Recommended: Enable SVG graphics via
- <pkg>dev-python/librsvg-python</pkg></flag>
- </use>
- <upstream>
- <remote-id type="launchpad">screenlets</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/x11-plugins/screenlets/screenlets-0.1.6.ebuild b/x11-plugins/screenlets/screenlets-0.1.6.ebuild
deleted file mode 100644
index 21e5a1a8bb8d..000000000000
--- a/x11-plugins/screenlets/screenlets-0.1.6.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-DISTUTILS_SINGLE_IMPL=yes
-
-inherit distutils-r1 eutils
-
-DESCRIPTION="Screenlets are small owner-drawn applications"
-HOMEPAGE="http://www.screenlets.org https://launchpad.net/screenlets"
-SRC_URI="https://code.launchpad.net/screenlets/trunk/${PV}/+download/screenlets-${PV}.tar.bz2"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="+svg"
-
-RDEPEND="
- dev-python/beautifulsoup:python-2
- dev-python/dbus-python
- dev-python/gconf-python
- dev-python/gnome-keyring-python
- dev-python/libwnck-python
- dev-python/pyxdg
- svg? ( dev-python/librsvg-python )
- x11-libs/libnotify
- x11-misc/xdg-utils
-"
-
-src_prepare() {
- # this is tricky because screenlets translations do not always have -manager
- # translations and vice versa, which is also why we do not die() on rm fail
- strip-linguas -u ${PN}/ ${PN}-manager/
- local lingua pofile
- for pofile in ${PN}/*.po ${PN}-manager/*.po; do
- lingua=${pofile/$PN*\/}
- lingua=${lingua/.po}
-
- if ! has ${lingua} ${LINGUAS}; then
- rm -f ${PN}/${lingua}.po
- rm -f ${PN}-manager/${lingua}.po
- fi
- done
-
- distutils-r1_src_prepare
- python_fix_shebang src/
- sed -i $(find src/ -type f) -e 's|exec python|&2|g;s|python -u|python2 -u|g' || die
- sed -i desktop-menu/screenlets-{daemon,manager}.desktop -e 's|> .*||g' || die
-}
-
-src_install() {
- distutils-r1_src_install
-
- insinto /usr/share/icons
- doins desktop-menu/screenlets.svg
-
- # Insert .desktop files
- domenu desktop-menu/*.desktop
-}