[SCM] eclipse - Powerful IDE written in java - Debian package. branch, master-4.2, updated. debian/3.8.0_rc4-1-20-gd48f3a1
Niels Thykier
niels at thykier.net
Wed Sep 19 13:09:25 UTC 2012
The following commit has been merged in the master-4.2 branch:
commit d48f3a12ffe53947b5115bd14f678c972a1b0697
Author: Angel Guzman Maeso <shakaran+launchpad at gmail.com>
Date: Wed Sep 19 15:08:40 2012 +0200
apport hook: Fix error when run with Python 3
Signed-off-by: Niels Thykier <niels at thykier.net>
diff --git a/debian/changelog b/debian/changelog
index 0af24f0..6f87b2f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,10 +1,15 @@
eclipse (4.2.0-1) UNRELEASED; urgency=low
+ [ Jakub Adam ]
* New upstream release (Closes: #681726).
* Update extended description of eclipse-platform-data (Closes: #679423).
* Fix libgnomeproxy compilation with glib >= 2.32 (Closes: #679328).
* Install libunixfile_1_0_0.so into /usr/lib/<arch>/jni.
+ [ Niels Thykier ]
+ * Apply patch from Angel Guzman Maeso to port apport hook to Python3.
+ (LP: #1052181)
+
-- Jakub Adam <jakub.adam at ktknet.cz> Sat, 04 Aug 2012 17:25:50 +0200
eclipse (3.8.0~rc4-1) unstable; urgency=low
diff --git a/debian/source_eclipse.py b/debian/source_eclipse.py
index 24d3c58..665024d 100644
--- a/debian/source_eclipse.py
+++ b/debian/source_eclipse.py
@@ -19,7 +19,7 @@ def add_info(report):
".settings/org.eclipse.ui.ide.prefs"
for preffile in glob.glob(os.path.expanduser(preffile_pattern)):
lines = open(preffile).readlines()
- lines = filter(lambda l: l.startswith("RECENT_WORKSPACES="), lines)
+ lines = list(filter(lambda l: l.startswith("RECENT_WORKSPACES="), lines))
if len(lines) > 0:
workspaces = lines[0].split("=")[1]
# workspaces are separated by "\n" - we take the first item
--
eclipse - Powerful IDE written in java - Debian package.
More information about the pkg-java-commits
mailing list