diff options
author | Justin Lecher <jlec@gentoo.org> | 2013-09-25 15:51:09 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2013-09-25 15:51:09 +0000 |
commit | 28ec0431dfa42fa32e888dfa1fd53d1364d8fca3 (patch) | |
tree | 9d5cff54556423fd1a41549d046427cb21d18ad1 /x11-terms | |
parent | Automated update. (diff) | |
download | gentoo-2-28ec0431dfa42fa32e888dfa1fd53d1364d8fca3.tar.gz gentoo-2-28ec0431dfa42fa32e888dfa1fd53d1364d8fca3.tar.bz2 gentoo-2-28ec0431dfa42fa32e888dfa1fd53d1364d8fca3.zip |
x11-terms/terminator: Backport patch for brightness setting problems, #485750
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
Diffstat (limited to 'x11-terms')
-rw-r--r-- | x11-terms/terminator/ChangeLog | 8 | ||||
-rw-r--r-- | x11-terms/terminator/files/terminator-0.97-brightness.patch | 35 | ||||
-rw-r--r-- | x11-terms/terminator/terminator-0.97-r1.ebuild | 64 |
3 files changed, 106 insertions, 1 deletions
diff --git a/x11-terms/terminator/ChangeLog b/x11-terms/terminator/ChangeLog index 7350fd3b0a86..ca9315d33be6 100644 --- a/x11-terms/terminator/ChangeLog +++ b/x11-terms/terminator/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-terms/terminator # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-terms/terminator/ChangeLog,v 1.29 2013/04/30 12:59:49 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-terms/terminator/ChangeLog,v 1.30 2013/09/25 15:51:09 jlec Exp $ + +*terminator-0.97-r1 (25 Sep 2013) + + 25 Sep 2013; Justin Lecher <jlec@gentoo.org> +terminator-0.97-r1.ebuild, + +files/terminator-0.97-brightness.patch: + Backport patch for brightness setting problems, #485750 *terminator-0.97 (30 Apr 2013) diff --git a/x11-terms/terminator/files/terminator-0.97-brightness.patch b/x11-terms/terminator/files/terminator-0.97-brightness.patch new file mode 100644 index 000000000000..9e35d7d593f6 --- /dev/null +++ b/x11-terms/terminator/files/terminator-0.97-brightness.patch @@ -0,0 +1,35 @@ +=== modified file 'terminatorlib/prefseditor.py' +--- terminatorlib/prefseditor.py 2013-02-16 00:10:45 +0000 ++++ terminatorlib/prefseditor.py 2013-05-11 22:03:46 +0000 +@@ -923,6 +923,8 @@ + + def on_inactive_color_offset_change_value(self, widget, scroll, value): + """Inactive color offset setting changed""" ++ if value > 1.0: ++ value = 1.0 + self.config['inactive_color_offset'] = round(value, 2) + self.config.save() + + +=== modified file 'terminatorlib/terminal.py' +--- terminatorlib/terminal.py 2013-02-15 15:10:55 +0000 ++++ terminatorlib/terminal.py 2013-05-11 22:03:46 +0000 +@@ -621,11 +621,17 @@ + + factor = self.config['inactive_color_offset'] + self.fgcolor_inactive = self.fgcolor_active.copy() ++ dbg(("fgcolor_inactive set to: RGB(%s,%s,%s)", getattr(self.fgcolor_inactive, "red"), ++ getattr(self.fgcolor_inactive, "green"), ++ getattr(self.fgcolor_inactive, "blue"))) + + for bit in ['red', 'green', 'blue']: + setattr(self.fgcolor_inactive, bit, + getattr(self.fgcolor_inactive, bit) * factor) + ++ dbg(("fgcolor_inactive set to: RGB(%s,%s,%s)", getattr(self.fgcolor_inactive, "red"), ++ getattr(self.fgcolor_inactive, "green"), ++ getattr(self.fgcolor_inactive, "blue"))) + colors = self.config['palette'].split(':') + self.palette_active = [] + self.palette_inactive = [] + diff --git a/x11-terms/terminator/terminator-0.97-r1.ebuild b/x11-terms/terminator/terminator-0.97-r1.ebuild new file mode 100644 index 000000000000..6c4d76c8b853 --- /dev/null +++ b/x11-terms/terminator/terminator-0.97-r1.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-terms/terminator/terminator-0.97-r1.ebuild,v 1.1 2013/09/25 15:51:09 jlec Exp $ + +EAPI=5 + +PYTHON_COMPAT=( python{2_6,2_7} ) +DISTUTILS_NO_PARALLEL_BUILD=true + +inherit gnome2 distutils-r1 + +DESCRIPTION="Multiple GNOME terminals in one window" +HOMEPAGE="http://www.tenshu.net/p/terminator.html" +SRC_URI="http://launchpad.net/${PN}/trunk/${PV}/+download/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="dbus gnome +libnotify" + +RDEPEND=" + dev-libs/keybinder:0[python] + x11-libs/vte:0[python] + dbus? ( sys-apps/dbus ) + gnome? ( + dev-python/gconf-python + dev-python/libgnome-python + dev-python/pygobject:2[${PYTHON_USEDEP}] + dev-python/pygtk:2[${PYTHON_USEDEP}] + ) + libnotify? ( dev-python/notify-python[${PYTHON_USEDEP}] )" +DEPEND="dev-util/intltool" + +S="${WORKDIR}"/trunk + +python_prepare_all() { + local PATCHES=( + "${FILESDIR}"/0.90-without-icon-cache.patch + "${FILESDIR}"/0.94-session.patch + "${FILESDIR}"/${P}-brightness.patch + ) + + local i p + if [[ -n "${LINGUAS+x}" ]] ; then + pushd "${S}"/po > /dev/null + strip-linguas -i . + for i in *.po; do + if ! has ${i%.po} ${LINGUAS} ; then + rm ${i} || die + fi + done + popd > /dev/null + fi + + distutils-r1_python_prepare_all +} + +pkg_postinst() { + gnome2_pkg_postinst +} + +pkg_postrm() { + gnome2_pkg_postrm +} |