diff options
author | Christian Faulhammer <opfer@gentoo.org> | 2008-03-21 11:02:14 +0000 |
---|---|---|
committer | Christian Faulhammer <opfer@gentoo.org> | 2008-03-21 11:02:14 +0000 |
commit | f3f40e5b88d1d4e0795a95696d57f2bfca82c330 (patch) | |
tree | 8aaf20c43409c1423b61aac9e839f8b05851c00a /app-portage | |
parent | Version bump, bug #211892 (diff) | |
download | gentoo-2-f3f40e5b88d1d4e0795a95696d57f2bfca82c330.tar.gz gentoo-2-f3f40e5b88d1d4e0795a95696d57f2bfca82c330.tar.bz2 gentoo-2-f3f40e5b88d1d4e0795a95696d57f2bfca82c330.zip |
version bump with latest fixes included we had as separate patches; clean up
(Portage version: 2.1.4.4)
Diffstat (limited to 'app-portage')
-rw-r--r-- | app-portage/elogv/ChangeLog | 9 | ||||
-rw-r--r-- | app-portage/elogv/elogv-0.6.4.ebuild (renamed from app-portage/elogv/elogv-0.6.3-r1.ebuild) | 9 | ||||
-rw-r--r-- | app-portage/elogv/files/elogv-0.6.3-addstr.patch | 34 |
3 files changed, 9 insertions, 43 deletions
diff --git a/app-portage/elogv/ChangeLog b/app-portage/elogv/ChangeLog index 6495050c7b08..3ecd04c11d53 100644 --- a/app-portage/elogv/ChangeLog +++ b/app-portage/elogv/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for app-portage/elogv # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-portage/elogv/ChangeLog,v 1.34 2008/03/21 08:59:29 opfer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-portage/elogv/ChangeLog,v 1.35 2008/03/21 11:02:13 opfer Exp $ + +*elogv-0.6.4 (21 Mar 2008) + + 21 Mar 2008; Christian Faulhammer <opfer@gentoo.org> + -files/elogv-0.6.3-addstr.patch, -elogv-0.6.3-r1.ebuild, + +elogv-0.6.4.ebuild: + version bump with latest fixes included we had as separate patches; clean up *elogv-0.6.3-r1 (21 Mar 2008) diff --git a/app-portage/elogv/elogv-0.6.3-r1.ebuild b/app-portage/elogv/elogv-0.6.4.ebuild index 639c756db9a5..f34042f0eec0 100644 --- a/app-portage/elogv/elogv-0.6.3-r1.ebuild +++ b/app-portage/elogv/elogv-0.6.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-portage/elogv/elogv-0.6.3-r1.ebuild,v 1.1 2008/03/21 08:59:29 opfer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-portage/elogv/elogv-0.6.4.ebuild,v 1.1 2008/03/21 11:02:13 opfer Exp $ inherit distutils eutils @@ -27,13 +27,6 @@ pkg_setup() { fi } -src_unpack() { - unpack ${A} - cd "${S}" - # Bug 214063 - epatch "${FILESDIR}/${P}-addstr.patch" -} - src_compile() { einfo "Nothing to compile" } diff --git a/app-portage/elogv/files/elogv-0.6.3-addstr.patch b/app-portage/elogv/files/elogv-0.6.3-addstr.patch deleted file mode 100644 index d9a5678e8b4c..000000000000 --- a/app-portage/elogv/files/elogv-0.6.3-addstr.patch +++ /dev/null @@ -1,34 +0,0 @@ -Index: elogv -=================================================================== ---- elogv (wersja 440) -+++ elogv (kopia robocza) -@@ -354,16 +354,19 @@ - self.f = None - break - -- if x.startswith('INFO:'): -- self.log_win.addstr(x[:self.width-2],curses.color_pair(einfo)) -- elif x.startswith('WARN:'): -- self.log_win.addstr(x[:self.width-2],curses.color_pair(ewarn)) -- elif x.startswith('ERROR:'): -- self.log_win.addstr(x[:self.width-2],curses.color_pair(eerror)) -- elif x.startswith('LOG:'): -- self.log_win.addstr(x[:self.width-2],curses.color_pair(elog)) -- else: -- self.log_win.addstr(x[:self.width-2],curses.color_pair(normal)) -+ try: -+ if x.startswith('INFO:'): -+ self.log_win.addstr(x[:self.width-2],curses.color_pair(einfo)) -+ elif x.startswith('WARN:'): -+ self.log_win.addstr(x[:self.width-2],curses.color_pair(ewarn)) -+ elif x.startswith('ERROR:'): -+ self.log_win.addstr(x[:self.width-2],curses.color_pair(eerror)) -+ elif x.startswith('LOG:'): -+ self.log_win.addstr(x[:self.width-2],curses.color_pair(elog)) -+ else: -+ self.log_win.addstr(x[:self.width-2],curses.color_pair(normal)) -+ except curses.error: -+ pass - - if self.f: - self.log_win.addstr(self.height/2-3, self.width-15, "Continue...", |