summaryrefslogtreecommitdiff
path: root/x11-wm
diff options
context:
space:
mode:
authorTim Harder <radhermit@gentoo.org>2013-05-16 11:02:05 +0000
committerTim Harder <radhermit@gentoo.org>2013-05-16 11:02:05 +0000
commit9397cec1e50c02b1d0abde2fa1435831e83ab0b7 (patch)
treee31c5ce75da10202e6edc1a91136bd6df7bac7a4 /x11-wm
parentVersion bump and update live ebuild. (diff)
downloadgentoo-2-9397cec1e50c02b1d0abde2fa1435831e83ab0b7.tar.gz
gentoo-2-9397cec1e50c02b1d0abde2fa1435831e83ab0b7.tar.bz2
gentoo-2-9397cec1e50c02b1d0abde2fa1435831e83ab0b7.zip
Remove old.
(Portage version: 2.2.0_alpha175/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'x11-wm')
-rw-r--r--x11-wm/qtile/ChangeLog5
-rw-r--r--x11-wm/qtile/qtile-0.5.ebuild61
2 files changed, 4 insertions, 62 deletions
diff --git a/x11-wm/qtile/ChangeLog b/x11-wm/qtile/ChangeLog
index 9165306c5bd2..2ca2378bb62d 100644
--- a/x11-wm/qtile/ChangeLog
+++ b/x11-wm/qtile/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for x11-wm/qtile
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-wm/qtile/ChangeLog,v 1.4 2013/05/16 11:00:57 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-wm/qtile/ChangeLog,v 1.5 2013/05/16 11:02:05 radhermit Exp $
+
+ 16 May 2013; Tim Harder <radhermit@gentoo.org> -qtile-0.5.ebuild:
+ Remove old.
*qtile-0.6 (16 May 2013)
diff --git a/x11-wm/qtile/qtile-0.5.ebuild b/x11-wm/qtile/qtile-0.5.ebuild
deleted file mode 100644
index 1d3c029cc79d..000000000000
--- a/x11-wm/qtile/qtile-0.5.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-wm/qtile/qtile-0.5.ebuild,v 1.1 2012/11/13 05:03:09 radhermit Exp $
-
-EAPI="5"
-
-PYTHON_DEPEND="2"
-SUPPORT_PYTHON_ABIS="1"
-RESTRICT_PYTHON_ABIS="3.*"
-PYTHON_MODNAME="libqtile"
-DISTUTILS_SRC_TEST="nosetests"
-
-inherit distutils vcs-snapshot virtualx
-
-DESCRIPTION="A full-featured, hackable tiling window manager written in Python"
-HOMEPAGE="http://qtile.org/"
-SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc test"
-
-RDEPEND=">=dev-python/pycairo-1.10.0-r3[xcb]
- dev-python/pygtk:2
- >=x11-libs/xpyb-1.3.1"
-DEPEND="doc? ( dev-python/sphinx )
- test? (
- ${RDEPEND}
- dev-python/python-xlib
- x11-base/xorg-server[kdrive]
- )"
-
-# tests fail due to xauth errors from python-xlib
-RESTRICT="test"
-
-DOCS="TODO.rst"
-
-src_compile() {
- distutils_src_compile
- use doc && emake -C docs html
-}
-
-src_test() {
- testing() {
- VIRTUALX_COMMAND="nosetests"
- PYTHONPATH="build-${PYTHON_ABI}/lib" virtualmake
- }
- python_execute_function testing
-}
-
-src_install() {
- distutils_src_install
- use doc && dohtml -r docs/_build/html/*
-
- insinto /usr/share/xsessions
- doins resources/qtile.desktop
-
- exeinto /etc/X11/Sessions
- newexe "${FILESDIR}"/${PN}-session ${PN}
-}