diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2013-05-11 22:30:19 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2013-05-11 22:30:19 +0000 |
commit | dc39bda970fc969177f76f36668a2caa3366db2b (patch) | |
tree | 857efcefafd824ddc52caa2018a1a838be1b5b2e /sys-fs | |
parent | Linux patches 3.0.78, 3.4.45 and 3.8.13. (diff) | |
download | gentoo-2-dc39bda970fc969177f76f36668a2caa3366db2b.tar.gz gentoo-2-dc39bda970fc969177f76f36668a2caa3366db2b.tar.bz2 gentoo-2-dc39bda970fc969177f76f36668a2caa3366db2b.zip |
Futher fixes
(Portage version: 2.2.0_alpha174/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
Diffstat (limited to 'sys-fs')
-rw-r--r-- | sys-fs/traydevice/ChangeLog | 5 | ||||
-rw-r--r-- | sys-fs/traydevice/traydevice-1.6.2-r1.ebuild | 14 |
2 files changed, 9 insertions, 10 deletions
diff --git a/sys-fs/traydevice/ChangeLog b/sys-fs/traydevice/ChangeLog index e36f9fc869f0..28d0a46c9330 100644 --- a/sys-fs/traydevice/ChangeLog +++ b/sys-fs/traydevice/ChangeLog @@ -1,11 +1,10 @@ # ChangeLog for sys-fs/traydevice # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/traydevice/ChangeLog,v 1.11 2013/05/11 22:24:52 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/traydevice/ChangeLog,v 1.12 2013/05/11 22:30:19 ssuominen Exp $ 11 May 2013; Samuli Suominen <ssuominen@gentoo.org> traydevice-1.6.2-r1.ebuild: - Remove duplicate readme.txt and rely on LICENSE instead of installing it to - live filesystem. Build only for python2_7. + Punt duplicate documentation files. Use DISTUTILS_SINGLE_IMPL=1. *traydevice-1.6.2-r1 (11 May 2013) diff --git a/sys-fs/traydevice/traydevice-1.6.2-r1.ebuild b/sys-fs/traydevice/traydevice-1.6.2-r1.ebuild index a899fe1c2032..a7276f6b7a32 100644 --- a/sys-fs/traydevice/traydevice-1.6.2-r1.ebuild +++ b/sys-fs/traydevice/traydevice-1.6.2-r1.ebuild @@ -1,11 +1,10 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/traydevice/traydevice-1.6.2-r1.ebuild,v 1.2 2013/05/11 22:24:52 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/traydevice/traydevice-1.6.2-r1.ebuild,v 1.3 2013/05/11 22:30:19 ssuominen Exp $ EAPI=5 - -PYTHON_COMPAT=( python2_7 ) - +DISTUTILS_SINGLE_IMPL=1 +PYTHON_COMPAT=( python{2_6,2_7} ) inherit distutils-r1 DESCRIPTION="A little desktop application displaying systray icon for UDisks" @@ -23,9 +22,7 @@ RDEPEND="dev-python/dbus-python[${PYTHON_USEDEP}] sys-fs/udisks:2" DEPEND="app-text/docbook2X" -src_compile() { - return 0 -} +src_compile() { :; } python_install() { distutils-r1_python_install \ @@ -33,6 +30,9 @@ python_install() { --install-data=/usr/share/${PN} \ --install-man=/usr/share/man \ --docbook2man=docbook2man.pl +} +python_install_all() { + distutils-r1_python_install_all rm -f "${ED}"/usr/share/${PN}/doc/*.txt } |