Bug#745762: java-package: Please support creating a Debian source package

2014-05-08 Thread Benjamin Drung
Hi Emmanuel,

Am Donnerstag, den 24.04.2014, 23:38 +0200 schrieb Emmanuel Bourg:
> Thank you for the patches. I applied some of them, could you commit
> directly the remaining ones please?

I committed the remaining patches to the git repository and added a
--source option to make-jpkg.

-- 
Benjamin Drung
System Developer

ProfitBricks GmbH - The IaaS-Company
Greifswalder Str. 207
D - 10405 Berlin

Mail: benjamin.dr...@profitbricks.com
Fax:  +49 30 577 008 598
URL:  http://www.profitbricks.com

Sitz der Gesellschaft: Berlin.
Registergericht: Amtsgericht Charlottenburg, HRB 125506 B.
Geschäftsführer: Andreas Gauger, Achim Weiss.

__
This is the maintainer address of Debian's Java team
<http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers>. 
Please use
debian-j...@lists.debian.org for discussions and questions.

Bug#745762: java-package: Please support creating a Debian source package

2014-04-24 Thread Benjamin Drung
Package: java-package
Version: 0.54
Severity: wishlist
Tags: patch

Please support creating a Debian source package instead of only creating a
Debian binary package. I want to use make-jpkg to create a Debian source package
that I can upload to our build infrastructure to get it build and released to
our local repository.

I created a bunch of patches (attached) to create a full source package that can
be build with dpkg-buildpackage.
>From 863de6685b954cdacef2a51cc81c320620a00cfd Mon Sep 17 00:00:00 2001
From: Benjamin Drung 
Date: Thu, 24 Apr 2014 22:03:08 +0200
Subject: [PATCH 7/8] Fix path reference of copyright files.

---
 lib/javase.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/javase.sh b/lib/javase.sh
index d8ea025..7efc779 100644
--- a/lib/javase.sh
+++ b/lib/javase.sh
@@ -51,7 +51,7 @@ EOF
 while read file; do
 cat << EOF
 
-File: /$file
+File: $jvm_base$file
 
 --
 
-- 
1.9.1

>From 963868700195579560097814cff159da39992acd Mon Sep 17 00:00:00 2001
From: Benjamin Drung 
Date: Thu, 24 Apr 2014 17:26:12 +0200
Subject: [PATCH 2/8] Bump Standards-Version of guest package to 3.9.5.

---
 lib/javase.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/javase.sh b/lib/javase.sh
index 65c6272..e8b1cce 100644
--- a/lib/javase.sh
+++ b/lib/javase.sh
@@ -29,7 +29,7 @@ Section: non-free/devel
 Priority: optional
 Maintainer: $maintainer_name <$maintainer_email>
 Build-Depends: debhelper (>= 4.0.0)
-Standards-Version: 3.7.2
+Standards-Version: 3.9.5
 
 EOF
 }
-- 
1.9.1

>From 1bdd95a489fdd6698d903a8ed6856538ada7dbd8 Mon Sep 17 00:00:00 2001
From: Benjamin Drung 
Date: Thu, 24 Apr 2014 21:51:14 +0200
Subject: [PATCH 5/8] Add ${misc:Depends} to the guest dependency.

---
 lib/jdk-doc.sh | 4 +---
 lib/jdk.sh | 2 +-
 lib/jre.sh | 2 +-
 3 files changed, 3 insertions(+), 5 deletions(-)

diff --git a/lib/jdk-doc.sh b/lib/jdk-doc.sh
index 4dbfa04..a1891ba 100644
--- a/lib/jdk-doc.sh
+++ b/lib/jdk-doc.sh
@@ -3,9 +3,7 @@ j2sdk_doc_control() {
 cat << EOF
 Package: $j2se_package
 Architecture: any
-Depends: 
-Recommends: 
-Provides: 
+Depends: \${misc:Depends}
 Description: $j2se_title
  The Java(TM) SE JDK is a development environment for building
  applications, applets, and components that can be deployed on the
diff --git a/lib/jdk.sh b/lib/jdk.sh
index 55802e6..220f213 100644
--- a/lib/jdk.sh
+++ b/lib/jdk.sh
@@ -15,7 +15,7 @@ j2sdk_control() {
 cat << EOF
 Package: $j2se_package
 Architecture: any
-Depends: $depends
+Depends: \${misc:Depends}, $depends
 Recommends: netbase
 Provides: java-virtual-machine, java-runtime, java2-runtime, java${j2se_release}-runtime, java$((${j2se_release}-1))-runtime, java$((${j2se_release}-2))-runtime, $java_browser_plugin java-compiler, java2-compiler, java-runtime-headless, java2-runtime-headless, java${j2se_release}-runtime-headless, java$((${j2se_release}-1))-runtime-headless, java$((${j2se_release}-2))-runtime-headless, java-sdk, java2-sdk, java$((${j2se_release}-2))-sdk, java$((${j2se_release}-1))-sdk, java${j2se_release}-sdk
 Description: $j2se_title
diff --git a/lib/jre.sh b/lib/jre.sh
index 9d12cb6..9154993 100644
--- a/lib/jre.sh
+++ b/lib/jre.sh
@@ -4,7 +4,7 @@ j2re_control() {
 cat << EOF
 Package: $j2se_package
 Architecture: any
-Depends: \${shlibs:Depends}
+Depends: \${misc:Depends}, \${shlibs:Depends}
 Recommends: netbase
 Provides: java-virtual-machine, java-runtime, java2-runtime, java${j2se_release}-runtime, java$((${j2se_release}-1))-runtime, java$((${j2se_release}-2))-runtime, java-runtime-headless, java2-runtime-headless, java${j2se_release}-runtime-headless, java$((${j2se_release}-1))-runtime-headless, java$((${j2se_release}-2))-runtime-headless, java-browser-plugin
 Description: $j2se_title
-- 
1.9.1

>From 4afb08b562eb8d8f9ece2e477d108baf41ffedf1 Mon Sep 17 00:00:00 2001
From: Benjamin Drung 
Date: Thu, 24 Apr 2014 17:28:30 +0200
Subject: [PATCH 3/8] Use debhelper 9 for guest package.

---
 debian/control | 2 +-
 lib/javase.sh  | 3 +--
 lib/jdk-doc.sh | 2 +-
 lib/jdk.sh | 2 +-
 lib/jre.sh | 2 +-
 5 files changed, 5 insertions(+), 6 deletions(-)

diff --git a/debian/control b/debian/control
index 834396c..753f37b 100644
--- a/debian/control
+++ b/debian/control
@@ -10,7 +10,7 @@ Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-java/java-package.git
 
 Package: java-package
 Architecture: all
-Depends: ${misc:Depends}, debhelper, fakeroot, unzip, libx11-6, libasound2,
+Depends: ${misc:Depends}, debhelper (>= 9), fakeroot, unzip, libx11-6, libasound2,
  lsb-release
 Recommends: dpkg-dev, gcc
 Suggests: openjdk-7-jre
diff --git a/lib/javase.sh b/lib/javase.sh
index e8b1cce..cb4ed49 100644
--- a/lib/javase.sh
+++ b/lib/javase.sh
@@ -28,7 +28,7 @@ Source: $j2se_package
 Section: non-free/devel
 Priority: optional
 Maintainer: $maintainer_name <$ma

Bug#655931: java-access-bridge: Multi-arch package is not co-installable

2012-01-14 Thread Benjamin Drung
Package: java-access-bridge
Version: 1.26.2-8
Severity: normal
Tags: patch

The i386 and amd64 libaccess-bridge-java-jni packages are not co-installable.
libaccess-bridge-java needs to be marked as Multi-Arch: foreign (patch 
attached).
diff -Nru java-access-bridge-1.26.2/debian/control java-access-bridge-1.26.2/debian/control
--- java-access-bridge-1.26.2/debian/control	2011-09-06 23:50:54.0 +0200
+++ java-access-bridge-1.26.2/debian/control	2012-01-14 22:37:47.0 +0100
@@ -23,7 +23,9 @@
 Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/java-access-bridge/
 
 Package: libaccess-bridge-java
+Multi-Arch: foreign
 Architecture: all
+Pre-Depends: ${misc:Pre-Depends}
 Depends: ${misc:Depends}
 Recommends: libaccess-bridge-java-jni
 Description: Java Access Bridge for GNOME
__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.

[SCM] eclipse - Powerful IDE written in java - Debian package. annotated tag, debian/3.7.1-1, created. debian/3.7.1-1

2011-12-31 Thread Benjamin Drung
The annotated tag, debian/3.7.1-1 has been created
at  38d6178b4a5c96f48cc66d7acb45f05d5fba5936 (tag)
   tagging  aacbfc98735013e692dd3db215cbfc3ba4a8a05d (commit)
  replaces  debian/3.7_exp-5
 tagged by  Benjamin Drung
on  Sat Dec 31 16:03:45 2011 +0100

- Shortlog 
Debian version 3.7.1-1

Benjamin Drung (30):
  Use pkg-config to determine CFLAGS and LIBS for gnomeproxy.
  Correct strip level of gnomeproxy-makefile.patch
  Eclipse 3.7 requires at least version 3.3 of asm3.
  Update debian/changelog.
  Add bug link to gnomeproxy-makefile.patch.
  Correct file permission.
  Remove unnecessary CVS directories.
  Merge branch 'upstream'
  Update debian/copyright.
  Import eclipse-build master branch (revision 1eb6f9eb from 2011-09-09).
  Merge branch 'upstream'
  Update debian/changelog.
  Drop xulrunner from Apport hook.
  Follow PEP-8 in Apport hook.
  Drop debian/source/include-binaries.
  Drop 0001-pdebuild-Pass-data-to-eclipse-and-VM-args-to-the-VM.patch 
(included upstream).
  Refresh patches.
  Update debian/watch file.
  Update debian/changelog.
  Run wrap-and-sort partially.
  Switch from bzip2 to xz source tarball.
  Correct short license name.
  Add patch to find libjasper-java 5.5.33-1 on Debian.
  debian/copyright: revert " " -> "?" to make nthykier happy.
  Use modified eclipse-build-generatedScripts tarball.
  Update lintian overrides.
  Update debian/changelog.
  Release 3.7.0-1 to Debian unstable.
  Remove myself from Uploaders.
  Release 3.7.1-1 to Debian unstable.

Damien Raude-Morvan (1):
  d/patches/find-newer-servlet-api.patch: Patch to support libservlet2.5.

Jakub Adam (22):
  Fix FTBFS with libjasper-java 5.5.33-2
  Add myself to Uploaders
  Imported eclipse-3.7.1-src.tar.bz2 tarball
  Import eclipse-build master branch (revision ee1a5caf from 2011-09-29).
  Add arm, ia64 and mips architectures to additionalArchs tarball
  Merge branch 'upstream'
  Updated d/changelog
  Regenerated d/eclipse-build-generatedScripts.tar.bz2
  d/eclipse-platform.install: remove org.apache.jasper_*.jar
  Removed find-newer-system-jasper.patch (included upstream)
  Fix path to org.eclipse.swt
  Remove org.apache.lucene
  Relabel to 3.7.1
  Don't search com.ibm.icu jar in /usr/lib/eclipse/plugins
  Set custom shared config directory when uninstalling the initializer
  Do not package useless files from configuration/org.eclipse.osgi
  d/rules: really delete hierarchy of empty directories
  Fix #648641: missing versioned depends on libjasper-java
  Updated d/eclipse-build-additionalArchs.tar.bz2 for 3.7.1 release
  Merge remote-tracking branch 'origin/master'
  Removed GDK_NATIVE_WINDOWS=true workaround
  Fixed update site injection and changed URL to Indigo update site

Niels Thykier (2):
  Corrected the ranges for servlet-api
  Partial fix for #649912: FTBFS on various archs

---

-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


[SCM] eclipse - Powerful IDE written in java - Debian package. branch, master, updated. debian/3.7_exp-5-55-gaacbfc9

2011-12-31 Thread Benjamin Drung
The following commit has been merged in the master branch:
commit aacbfc98735013e692dd3db215cbfc3ba4a8a05d
Author: Benjamin Drung 
Date:   Sat Dec 31 15:49:42 2011 +0100

Release 3.7.1-1 to Debian unstable.

diff --git a/debian/changelog b/debian/changelog
index 97fce2a..dd57095 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-eclipse (3.7.1-1) UNRELEASED; urgency=low
+eclipse (3.7.1-1) unstable; urgency=low
 
   * New upstream release (Closes: #652839).
   * Fix FTBFS with libjasper-java 5.5.33-2
@@ -8,7 +8,7 @@ eclipse (3.7.1-1) UNRELEASED; urgency=low
   * Fixed update site injection on first Eclipse startup and changed
 URL to Indigo update site
 
- -- Jakub Adam   Tue, 27 Dec 2011 01:04:14 +0100
+ -- Jakub Adam   Sat, 31 Dec 2011 15:49:15 +0100
 
 eclipse (3.7.0-1) unstable; urgency=low
 

-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


[SCM] eclipse-mylyn - Plug-in for eclipse - Debian package. branch, master, updated. upstream/3.6.4-30-g1f00198

2011-12-29 Thread Benjamin Drung
The following commit has been merged in the master branch:
commit 1f001983592e902d3293edfc4812c985d697d65f
Author: Benjamin Drung 
Date:   Thu Dec 29 18:34:35 2011 +0100

Remove myself from Uploaders.

diff --git a/debian/control b/debian/control
index 4efeac9..d984804 100644
--- a/debian/control
+++ b/debian/control
@@ -3,7 +3,6 @@ Section: devel
 Priority: optional
 Maintainer: Debian Java Maintainers 

 Uploaders: Niels Thykier ,
-   Benjamin Drung ,
Adrian Perez ,
Jakub Adam 
 Build-Depends: debhelper (>= 8~),

-- 
eclipse-mylyn - Plug-in for eclipse - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


[SCM] eclipse-rse - Plug-in for eclipse - Debian package. branch, master, updated. debian/3.1.2-1-2-g6b50fca

2011-12-29 Thread Benjamin Drung
The following commit has been merged in the master branch:
commit 6b50fcac8a10cb6dd1f8848517636f9e57bbb0e7
Author: Benjamin Drung 
Date:   Thu Dec 29 18:32:21 2011 +0100

Remove myself from Uploaders.

diff --git a/debian/control b/debian/control
index 4dedaa0..936768c 100644
--- a/debian/control
+++ b/debian/control
@@ -2,8 +2,7 @@ Source: eclipse-rse
 Section: java
 Priority: optional
 Maintainer: Debian Orbital Alignment Team 

-Uploaders: Niels Thykier ,
-   Benjamin Drung 
+Uploaders: Niels Thykier 
 Build-Depends: debhelper (>= 7),
default-jdk,
javahelper (>= 0.31~),

-- 
eclipse-rse - Plug-in for eclipse - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


[SCM] UNNAMED PROJECT branch, master, updated. debian/1.1.0-1-15-g767ef00

2011-12-29 Thread Benjamin Drung
The following commit has been merged in the master branch:
commit 767ef0047b4a0b9dd8ac7741145824c65c8a18ac
Author: Benjamin Drung 
Date:   Thu Dec 29 18:31:10 2011 +0100

Remove myself from Uploaders.

diff --git a/debian/control b/debian/control
index 78a616a..8fd3dfa 100644
--- a/debian/control
+++ b/debian/control
@@ -3,7 +3,6 @@ Priority: optional
 Section: java
 Maintainer: Debian Java Maintainers 

 Uploaders: Niels Thykier ,
-   Benjamin Drung ,
Jakub Adam 
 Build-Depends: debhelper (>= 8~),
cdbs,

-- 
UNNAMED PROJECT

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


[SCM] eclipse-emf - Plug-in for eclipse - Debian package. branch, master, updated. debian/2.5.0-1-4-gc439203

2011-12-29 Thread Benjamin Drung
The following commit has been merged in the master branch:
commit c439203b153c86f7ce5571da834837647e797ab8
Author: Benjamin Drung 
Date:   Thu Dec 29 18:29:57 2011 +0100

Remove myself from Uploaders.

diff --git a/debian/control b/debian/control
index 77a1a7b..8cce335 100644
--- a/debian/control
+++ b/debian/control
@@ -2,8 +2,7 @@ Source: eclipse-emf
 Section: java
 Priority: optional
 Maintainer: Debian Java Maintainers 

-Uploaders: Niels Thykier ,
-   Benjamin Drung 
+Uploaders: Niels Thykier 
 Build-Depends: debhelper (>= 7),
default-jdk,
eclipse-pde (>= 3.5.2),

-- 
eclipse-emf - Plug-in for eclipse - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


[SCM] Eclipse Team provider for the Git version control system branch, master, updated. debian/1.1.0-1-9-gf4b3a11

2011-12-29 Thread Benjamin Drung
The following commit has been merged in the master branch:
commit f4b3a11711f879e0c1113117b45a8f742d2bba20
Author: Benjamin Drung 
Date:   Thu Dec 29 18:28:55 2011 +0100

Remove myself from Uploaders.

diff --git a/debian/control b/debian/control
index d57a3ef..f6107de 100644
--- a/debian/control
+++ b/debian/control
@@ -3,7 +3,6 @@ Priority: optional
 Section: devel
 Maintainer: Debian Java Maintainers 

 Uploaders: Niels Thykier ,
-   Benjamin Drung ,
Jakub Adam 
 Build-Depends: debhelper (>= 8~),
default-jdk,

-- 
Eclipse Team provider for the Git version control system

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


[SCM] eclipse-cdt - Plug-in for eclipse to handle C/C++ - Debian package. branch, master, updated. debian/8.0.1-1-1-gb8b2034

2011-12-29 Thread Benjamin Drung
The following commit has been merged in the master branch:
commit b8b2034c1be98688f7d3b64092b5c4af7ed014df
Author: Benjamin Drung 
Date:   Thu Dec 29 18:27:07 2011 +0100

Remove myself from Uploaders.

diff --git a/debian/control b/debian/control
index a0c029c..6a30f42 100644
--- a/debian/control
+++ b/debian/control
@@ -3,7 +3,6 @@ Section: java
 Priority: optional
 Maintainer: Debian Java Maintainers 

 Uploaders: Niels Thykier ,
-   Benjamin Drung ,
Jakub Adam 
 Build-Depends: debhelper (>= 8~),
default-jdk,

-- 
eclipse-cdt - Plug-in for eclipse to handle C/C++ - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


[SCM] eclipse - Powerful IDE written in java - Debian package. branch, master, updated. debian/3.7_exp-5-33-g40f9c17

2011-12-29 Thread Benjamin Drung
The following commit has been merged in the master branch:
commit 40f9c1769dc673525981c9944ec136b42bc9e4b9
Author: Benjamin Drung 
Date:   Thu Dec 29 18:15:39 2011 +0100

Remove myself from Uploaders.

diff --git a/debian/control b/debian/control
index 6aec397..92336d7 100644
--- a/debian/control
+++ b/debian/control
@@ -3,7 +3,6 @@ Section: devel
 Priority: optional
 Maintainer: Debian Orbital Alignment Team 

 Uploaders: Niels Thykier ,
-   Benjamin Drung ,
Adnan Hodzic ,
Jimmy Kaplowitz ,
Andres Mejia ,

-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


[SCM] eclipse - Powerful IDE written in java - Debian package. tag, debian/3.7.0-1, created. debian/3.7_exp-5-30-gc9862e6

2011-10-22 Thread Benjamin Drung
The tag, debian/3.7.0-1 has been created
at  c9862e69a42806cc65a97179913db4bafb4032b3 (commit)

- Shortlog 
commit c9862e69a42806cc65a97179913db4bafb4032b3
Author: Benjamin Drung 
Date:   Sat Oct 22 16:15:39 2011 +0200

Release 3.7.0-1 to Debian unstable.
---

-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


[SCM] eclipse - Powerful IDE written in java - Debian package. branch, master, updated. debian/3.7_exp-5-30-gc9862e6

2011-10-22 Thread Benjamin Drung
The following commit has been merged in the master branch:
commit c9862e69a42806cc65a97179913db4bafb4032b3
Author: Benjamin Drung 
Date:   Sat Oct 22 16:15:39 2011 +0200

Release 3.7.0-1 to Debian unstable.

diff --git a/debian/changelog b/debian/changelog
index b7f5482..61a60d0 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,7 +1,7 @@
-eclipse (3.7.0-1) UNRELEASED; urgency=low
+eclipse (3.7.0-1) unstable; urgency=low
 
   [ Benjamin Drung ]
-  * Upload to unstable.
+  * Upload to unstable (Closes: #631382, #642085).
   * Use pkg-config to determine CFLAGS and LIBS for gnomeproxy.
   * Eclipse 3.7 requires at least version 3.3 of asm3.
   * Update debian/copyright.
@@ -13,7 +13,7 @@ eclipse (3.7.0-1) UNRELEASED; urgency=low
   [ Damien Raude-Morvan ]
   * d/patches/find-newer-servlet-api.patch: Patch to support libservlet2.5.
 
- -- Damien Raude-Morvan   Sat, 22 Oct 2011 10:17:47 +0200
+ -- Benjamin Drung   Sat, 22 Oct 2011 16:01:50 +0200
 
 eclipse (3.7~exp-5) experimental; urgency=low
 

-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


[SCM] eclipse - Powerful IDE written in java - Debian package. tag, debian/3.7.0-0ubuntu1, created. debian/3.7_exp-5-41-g0b7fc4e

2011-09-27 Thread Benjamin Drung
The tag, debian/3.7.0-0ubuntu1 has been created
at  0b7fc4e72093ac500c786845d80313b24977dde9 (commit)

- Shortlog 
commit 0b7fc4e72093ac500c786845d80313b24977dde9
Author: Benjamin Drung 
Date:   Tue Sep 27 22:25:48 2011 +0200

Release 3.7.0-0ubuntu1 to Ubuntu oneiric.
---

-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


[SCM] eclipse - Powerful IDE written in java - Debian package. branch, oneiric, updated. debian/3.7_exp-5-41-g0b7fc4e

2011-09-27 Thread Benjamin Drung
The following commit has been merged in the oneiric branch:
commit 0b7fc4e72093ac500c786845d80313b24977dde9
Author: Benjamin Drung 
Date:   Tue Sep 27 22:25:48 2011 +0200

Release 3.7.0-0ubuntu1 to Ubuntu oneiric.

diff --git a/debian/changelog b/debian/changelog
index 8cd7af4..a48512c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,6 @@
-eclipse (3.7.0-1) UNRELEASED; urgency=low
+eclipse (3.7.0-0ubuntu1) oneiric; urgency=low
 
-  * Upload to unstable.
+  * Upload to Ubuntu (LP: #860723).
   * Use pkg-config to determine CFLAGS and LIBS for gnomeproxy.
   * Eclipse 3.7 requires at least version 3.3 of asm3.
   * Update debian/copyright.
@@ -9,7 +9,7 @@ eclipse (3.7.0-1) UNRELEASED; urgency=low
   * Add patch to find libjasper-java 5.5.33-1 on Debian.
   * Update lintian overrides.
 
- -- Benjamin Drung   Tue, 20 Sep 2011 16:07:58 +0200
+ -- Benjamin Drung   Tue, 27 Sep 2011 22:15:03 +0200
 
 eclipse (3.7~exp-5) experimental; urgency=low
 
diff --git a/debian/control b/debian/control
index 1ace7e6..d413137 100644
--- a/debian/control
+++ b/debian/control
@@ -1,7 +1,8 @@
 Source: eclipse
 Section: devel
 Priority: optional
-Maintainer: Debian Orbital Alignment Team 

+Maintainer: Ubuntu Developers 
+XSBC-Original-Maintainer: Debian Orbital Alignment Team 

 Uploaders: Niels Thykier ,
Benjamin Drung ,
Adnan Hodzic ,
diff --git a/debian/gbp.conf b/debian/gbp.conf
index fa22434..d243816 100644
--- a/debian/gbp.conf
+++ b/debian/gbp.conf
@@ -1,7 +1,7 @@
 [DEFAULT]
 compression = xz
 upstream-branch = upstream
-debian-branch = master
+debian-branch = oneiric
 
 [git-dch]
 meta = True

-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


[SCM] eclipse - Powerful IDE written in java - Debian package. branch, oneiric, updated. debian/3.7_exp-5-41-g0b7fc4e

2011-09-27 Thread Benjamin Drung
The following commit has been merged in the oneiric branch:
commit b98974fa8bad3284ef3c64c7fd54a31f90a8c1c2
Merge: abdcbaef8f58e43539c1f932b91d7f81c71d05b8 
977c49fb2ad48c3c52a0c22cd0e9674e97544422
Author: Benjamin Drung 
Date:   Tue Sep 27 22:14:19 2011 +0200

Sync branch 'master' into oneiric


-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


[SCM] eclipse - Powerful IDE written in java - Debian package. branch, master, updated. debian/3.7_exp-5-27-g977c49f

2011-09-20 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, master has been updated
   via  977c49fb2ad48c3c52a0c22cd0e9674e97544422 (commit)
  from  5a99a253740e307ba6254f5a9cbb85a982d9ef34 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit 977c49fb2ad48c3c52a0c22cd0e9674e97544422
Author: Benjamin Drung 
Date:   Tue Sep 20 16:08:16 2011 +0200

Update debian/changelog.

---

Summary of changes:
 debian/changelog |4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 906326a..8cd7af4 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -6,8 +6,10 @@ eclipse (3.7.0-1) UNRELEASED; urgency=low
   * Update debian/copyright.
   * Drop xulrunner from Apport hook.
   * Update debian/watch file.
+  * Add patch to find libjasper-java 5.5.33-1 on Debian.
+  * Update lintian overrides.
 
- -- Benjamin Drung   Tue, 20 Sep 2011 14:37:32 +0200
+ -- Benjamin Drung   Tue, 20 Sep 2011 16:07:58 +0200
 
 eclipse (3.7~exp-5) experimental; urgency=low
 


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


[SCM] eclipse - Powerful IDE written in java - Debian package. branch, master, updated. debian/3.7_exp-5-26-g5a99a25

2011-09-20 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, master has been updated
   via  5a99a253740e307ba6254f5a9cbb85a982d9ef34 (commit)
  from  977190d2f46b14de4b0258cefeca9c5045ce567c (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit 5a99a253740e307ba6254f5a9cbb85a982d9ef34
Author: Benjamin Drung 
Date:   Tue Sep 20 16:06:58 2011 +0200

Update lintian overrides.

---

Summary of changes:
 debian/eclipse-platform-data.lintian-overrides |2 +-
 debian/libequinox-osgi-java.lintian-overrides  |1 +
 2 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/debian/eclipse-platform-data.lintian-overrides 
b/debian/eclipse-platform-data.lintian-overrides
index 8d0a4a3..1bee348 100644
--- a/debian/eclipse-platform-data.lintian-overrides
+++ b/debian/eclipse-platform-data.lintian-overrides
@@ -1 +1 @@
-codeless-jar usr/share/eclipse/plugins/org.eclipse.core.boot_*.jar
+codeless-jar
diff --git a/debian/libequinox-osgi-java.lintian-overrides 
b/debian/libequinox-osgi-java.lintian-overrides
new file mode 100644
index 000..2e661ba
--- /dev/null
+++ b/debian/libequinox-osgi-java.lintian-overrides
@@ -0,0 +1 @@
+jar-not-in-usr-share


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


[SCM] eclipse - Powerful IDE written in java - Debian package. branch, master, updated. debian/3.7_exp-5-25-g977190d

2011-09-20 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, master has been updated
   via  977190d2f46b14de4b0258cefeca9c5045ce567c (commit)
   via  bf73ab73ed6e328e420aab4779d662354a9fd62b (commit)
  from  c5a6972b5a922a959a63f3fd8aced896ac618bf8 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit 977190d2f46b14de4b0258cefeca9c5045ce567c
Author: Benjamin Drung 
Date:   Tue Sep 20 15:56:09 2011 +0200

Use modified eclipse-build-generatedScripts tarball.

commit bf73ab73ed6e328e420aab4779d662354a9fd62b
Author: Benjamin Drung 
Date:   Tue Sep 20 15:50:54 2011 +0200

debian/copyright: revert " " -> "?" to make nthykier happy.

---

Summary of changes:
 debian/copyright   |  352 ++--
 debian/eclipse-build-generatedScripts.tar.bz2  |  Bin 0 -> 22113 bytes
 debian/extra/copyright-gen.pl  |2 +-
 .../patches/eclipse-build-generatedScripts.patch   |8 +-
 debian/patches/osgi-services.patch |1 +
 debian/patches/series  |3 +-
 debian/source/include-binaries |1 +
 7 files changed, 184 insertions(+), 183 deletions(-)

diff --git a/debian/copyright b/debian/copyright
index 78a549e..de97e39 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -110,80 +110,80 @@ Copyright: 2008-2009, Adobe Systems, Inc. and others
2009-2011, eXXcellent solutions gmbh, EclipseSource Corporation
 License: EPL-1.0
 
-Files: eclipse/plugins/org.eclipse.swt/Eclipse?SWT?PI/gtk/library/atk.c
-   eclipse/plugins/org.eclipse.swt/Eclipse?SWT?PI/gtk/library/atk.h
-   eclipse/plugins/org.eclipse.swt/Eclipse?SWT?PI/gtk/library/atk_custom.c
-   eclipse/plugins/org.eclipse.swt/Eclipse?SWT?PI/gtk/library/atk_custom.h
-   eclipse/plugins/org.eclipse.swt/Eclipse?SWT?PI/gtk/library/atk_stats.c
-   eclipse/plugins/org.eclipse.swt/Eclipse?SWT?PI/gtk/library/atk_stats.h
-   eclipse/plugins/org.eclipse.swt/Eclipse?SWT?PI/gtk/library/atk_structs.c
-   eclipse/plugins/org.eclipse.swt/Eclipse?SWT?PI/gtk/library/atk_structs.h
-   eclipse/plugins/org.eclipse.swt/Eclipse?SWT?PI/gtk/library/os.c
-   eclipse/plugins/org.eclipse.swt/Eclipse?SWT?PI/gtk/library/os.h
-   eclipse/plugins/org.eclipse.swt/Eclipse?SWT?PI/gtk/library/os_custom.c
-   eclipse/plugins/org.eclipse.swt/Eclipse?SWT?PI/gtk/library/os_custom.h
-   eclipse/plugins/org.eclipse.swt/Eclipse?SWT?PI/gtk/library/os_stats.c
-   eclipse/plugins/org.eclipse.swt/Eclipse?SWT?PI/gtk/library/os_stats.h
-   eclipse/plugins/org.eclipse.swt/Eclipse?SWT?PI/gtk/library/os_structs.c
-   eclipse/plugins/org.eclipse.swt/Eclipse?SWT?PI/gtk/library/os_structs.h
-   
eclipse/plugins/org.eclipse.swt/Eclipse?SWT?PI/gtk/org/eclipse/swt/internal/Platform.java
-   
eclipse/plugins/org.eclipse.swt/Eclipse?SWT?PI/gtk/org/eclipse/swt/internal/accessibility/gtk/*
-   
eclipse/plugins/org.eclipse.swt/Eclipse?SWT?PI/gtk/org/eclipse/swt/internal/gtk/GInterfaceInfo.java
-   
eclipse/plugins/org.eclipse.swt/Eclipse?SWT?PI/gtk/org/eclipse/swt/internal/gtk/GObjectClass.java
-   
eclipse/plugins/org.eclipse.swt/Eclipse?SWT?PI/gtk/org/eclipse/swt/internal/gtk/GTypeInfo.java
-   
eclipse/plugins/org.eclipse.swt/Eclipse?SWT?PI/gtk/org/eclipse/swt/internal/gtk/GTypeQuery.java
-   
eclipse/plugins/org.eclipse.swt/Eclipse?SWT?PI/gtk/org/eclipse/swt/internal/gtk/GdkColor.java
-   
eclipse/plugins/org.eclipse.swt/Eclipse?SWT?PI/gtk/org/eclipse/swt/internal/gtk/GdkDragContext.java
-   
eclipse/plugins/org.eclipse.swt/Eclipse?SWT?PI/gtk/org/eclipse/swt/internal/gtk/GdkEvent.java
-   
eclipse/plugins/org.eclipse.swt/Eclipse?SWT?PI/gtk/org/eclipse/swt/internal/gtk/GdkEventAny.java
-   
eclipse/plugins/org.eclipse.swt/Eclipse?SWT?PI/gtk/org/eclipse/swt/internal/gtk/GdkEventButton.java
-   
eclipse/plugins/org.eclipse.swt/Eclipse?SWT?PI/gtk/org/eclipse/swt/internal/gtk/GdkEventCrossing.java
-   
eclipse/plugins/org.eclipse.swt/Eclipse?SWT?PI/gtk/org/eclipse/swt/internal/gtk/GdkEventExpose.java
-   
eclipse/plugins/org.eclipse.swt/Eclipse?SWT?PI/gtk/org/eclipse/swt/internal/gtk/GdkEventFocus.java
-   
eclipse/plugins/org.eclipse.swt/Eclipse?SWT?PI/gtk/org/eclipse/swt/internal/gtk/GdkEventKey.java
-   
eclipse/plugins/org.eclipse.swt/Eclipse?SWT?PI/gtk/org/eclipse/swt/internal/gtk/GdkEventMotion.java
-   
eclipse/plugins/org.eclipse.swt/Eclipse?SWT?PI/gtk/org/eclipse/swt/internal/gtk/Gd

[SCM] eclipse - Powerful IDE written in java - Debian package. branch, master, updated. debian/3.7_exp-5-23-gc5a6972

2011-09-20 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, master has been updated
   via  c5a6972b5a922a959a63f3fd8aced896ac618bf8 (commit)
  from  73c909ab58e08ac19f7f3a520bbe81aa58678638 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit c5a6972b5a922a959a63f3fd8aced896ac618bf8
Author: Benjamin Drung 
Date:   Tue Sep 20 15:46:52 2011 +0200

Add patch to find libjasper-java 5.5.33-1 on Debian.

---

Summary of changes:
 debian/control|4 ++--
 debian/patches/find-newer-system-jasper.patch |   15 +++
 debian/patches/series |1 +
 3 files changed, 18 insertions(+), 2 deletions(-)

diff --git a/debian/control b/debian/control
index d4581d6..1ace7e6 100644
--- a/debian/control
+++ b/debian/control
@@ -28,7 +28,7 @@ Build-Depends: ant (>= 1.8.2),
libgtk2.0-dev,
libhamcrest-java (>= 1.1-8~),
libicu4j-4.4-java (>= 4.4.2),
-   libjasper-java,
+   libjasper-java (>= 5.5.26),
libjetty-java (>= 6.1.24-4~),
libjsch-java (>= 0.1.37-3),
liblucene2-java (>= 2.9.4+ds1-3~),
@@ -130,7 +130,7 @@ Depends: ant (>= 1.8.2),
  libcommons-el-java (>= 1.0-5),
  libcommons-httpclient-java (>= 3.1-9),
  libcommons-logging-java (>= 1.1.1-6),
- libjasper-java,
+ libjasper-java (>= 5.5.26),
  libjetty-java (>= 6.1.24-4~),
  libjsch-java (>= 0.1.37-3),
  liblucene2-java (>= 2.9.4+ds1-3~),
diff --git a/debian/patches/find-newer-system-jasper.patch 
b/debian/patches/find-newer-system-jasper.patch
new file mode 100644
index 000..1ab6e14
--- /dev/null
+++ b/debian/patches/find-newer-system-jasper.patch
@@ -0,0 +1,15 @@
+Description: Support finding libjasper-java 5.5.33-1 or newer on Debian.
+Author: Benjamin Drung 
+Bug: https://bugs.eclipse.org/bugs/show_bug.cgi?id=358246
+
+--- a/dependencies.properties
 b/dependencies.properties
+@@ -6,7 +6,7 @@
+ org.apache.commons.el_1.0.0.v200806031608.jar=/usr/share/java/commons-el.jar
+ 
org.apache.commons.httpclient_3.1.0.v201005080502.jar=/usr/share/java/commons-httpclient.jar
+ 
org.apache.commons.logging_1.0.4.v201101211617.jar=/usr/share/java/commons-logging.jar
+-org.apache.jasper_5.5.17.v200903231320.jar=/usr/share/eclipse/plugins/org.apache.jasper_5.5.17.v200706111724.jar:/usr/share/java/jasper-5.5.26.jar
++org.apache.jasper_5.5.17.v200903231320.jar=/usr/share/eclipse/plugins/org.apache.jasper_5.5.17.v200706111724.jar:/usr/share/java/jasper-5.5.26.jar:/usr/share/java/jasper-5.5.jar
+ 
org.apache.lucene.core_2.9.1.v201101211721.jar=/usr/share/java/lucene.jar:/usr/share/java/lucene-core.jar
+ 
org.apache.lucene.analysis_2.9.1.v201101211721.jar=/usr/share/java/lucene-contrib/lucene-analyzers.jar:/usr/share/java/lucene-analyzers.jar
+ 
org.mortbay.jetty.util_6.1.23.v201004211559.jar=/usr/share/java/jetty/jetty-util.jar:/usr/share/java/jetty-util.jar
diff --git a/debian/patches/series b/debian/patches/series
index 9016c03..9a393a5 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -15,3 +15,4 @@ osgi-services.patch
 #eclipse-build-generatedScripts.patch
 debian-load-internal-swt.patch
 gnomeproxy-makefile.patch
+find-newer-system-jasper.patch


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


[SCM] eclipse - Powerful IDE written in java - Debian package. tag, upstream/3.7.0, created. upstream/3.7-exp-3-g758b27a

2011-09-20 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The tag, upstream/3.7.0 has been created
at  758b27a81c2d18e86981b49d2a8e9fb27c74d206 (commit)

- Log -
commit 758b27a81c2d18e86981b49d2a8e9fb27c74d206
Author: Benjamin Drung 
Date:   Tue Sep 20 14:10:42 2011 +0200

Import eclipse-build master branch (revision 1eb6f9eb from 2011-09-09).
---


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


[pkg-java] r14954 - trunk/lucene2/debian

2011-09-19 Thread Benjamin Drung
Author: bdrung
Date: 2011-09-19 20:01:58 + (Mon, 19 Sep 2011)
New Revision: 14954

Modified:
   trunk/lucene2/debian/changelog
Log:
Release 2.9.4+ds1-4 to Debian unstable.

Modified: trunk/lucene2/debian/changelog
===
--- trunk/lucene2/debian/changelog  2011-09-19 19:34:58 UTC (rev 14953)
+++ trunk/lucene2/debian/changelog  2011-09-19 20:01:58 UTC (rev 14954)
@@ -1,13 +1,17 @@
-lucene2 (2.9.4+ds1-4) UNRELEASED; urgency=low
+lucene2 (2.9.4+ds1-4) unstable; urgency=low
 
+  [ Benjamin Drung ]
+  * Team upload.
+  * Upload to unstable (Closes: #640494).
+  * Use versioned format link in debian/copyright (Closes: #631632).
+  * Build with default-jdk instead of openjdk-6-jdk.
+  * Use dpkg-source version 1.0 until we switch to quilt.
+
   [ Jan-Pascal van Best ]
   * Removed Jan-Pascal van Best from Uploaders
 
-  [ Benjamin Drung ]
-  * Use versioned format link in debian/copyright (Closes: #631632).
+ -- Benjamin Drung   Mon, 19 Sep 2011 21:37:46 +0200
 
- -- Benjamin Drung   Mon, 19 Sep 2011 17:53:44 +0200
-
 lucene2 (2.9.4+ds1-3) experimental; urgency=low
 
   * Team upload.


___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


[pkg-java] r14953 - trunk/lucene2/debian

2011-09-19 Thread Benjamin Drung
Author: bdrung
Date: 2011-09-19 19:34:58 + (Mon, 19 Sep 2011)
New Revision: 14953

Modified:
   trunk/lucene2/debian/liblucene2-java.prerm
Log:
Explicitely call 'set -e' in prerm.

Modified: trunk/lucene2/debian/liblucene2-java.prerm
===
--- trunk/lucene2/debian/liblucene2-java.prerm  2011-09-19 19:33:55 UTC (rev 
14952)
+++ trunk/lucene2/debian/liblucene2-java.prerm  2011-09-19 19:34:58 UTC (rev 
14953)
@@ -1,5 +1,6 @@
-#!/bin/sh -e
-# 
+#!/bin/sh
+set -e
+
 # prerm maintainer script for the Debian liblucene2-java package.
 #
 # summary of how this script can be called:


___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


[pkg-java] r14952 - trunk/lucene2/debian

2011-09-19 Thread Benjamin Drung
Author: bdrung
Date: 2011-09-19 19:33:55 + (Mon, 19 Sep 2011)
New Revision: 14952

Modified:
   trunk/lucene2/debian/control
   trunk/lucene2/debian/rules
Log:
Build with default-jdk instead of openjdk-6-jdk.

Modified: trunk/lucene2/debian/control
===
--- trunk/lucene2/debian/control2011-09-19 19:30:43 UTC (rev 14951)
+++ trunk/lucene2/debian/control2011-09-19 19:33:55 UTC (rev 14952)
@@ -14,10 +14,10 @@
ant-optional (>= 1.8),
cdbs (>= 0.4.49),
debhelper (>= 6),
+   default-jdk,
dpatch (>= 2.0),
javacc,
-   junit,
-   openjdk-6-jdk
+   junit
 Build-Depends-Indep: libcommons-beanutils-java (>= 1.7.0),
  libcommons-collections3-java (>= 3.1),
  libcommons-compress-java (>= 1.0),

Modified: trunk/lucene2/debian/rules
===
--- trunk/lucene2/debian/rules  2011-09-19 19:30:43 UTC (rev 14951)
+++ trunk/lucene2/debian/rules  2011-09-19 19:33:55 UTC (rev 14952)
@@ -10,8 +10,7 @@
 
 DEB_INSTALL_CHANGELOGS_liblucene2-java := CHANGES.txt
 
-# Build with OpenJDK
-JAVA_HOME := /usr/lib/jvm/java-6-openjdk
+JAVA_HOME := /usr/lib/jvm/default-java
 
 DEB_ANT_BUILD_TARGET := javacc jar-core build-contrib war-demo javadocs
 DEB_ANT_CHECK_TARGET := test


___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


[pkg-java] r14951 - in trunk/lucene2/debian: . source

2011-09-19 Thread Benjamin Drung
Author: bdrung
Date: 2011-09-19 19:30:43 + (Mon, 19 Sep 2011)
New Revision: 14951

Added:
   trunk/lucene2/debian/source/
   trunk/lucene2/debian/source/format
Log:
Use dpkg-source version 1.0 until we switch to quilt.

Added: trunk/lucene2/debian/source/format
===
--- trunk/lucene2/debian/source/format  (rev 0)
+++ trunk/lucene2/debian/source/format  2011-09-19 19:30:43 UTC (rev 14951)
@@ -0,0 +1 @@
+1.0


___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


[pkg-java] r14944 - trunk/lucene2/debian

2011-09-19 Thread Benjamin Drung
Author: bdrung
Date: 2011-09-19 16:16:12 + (Mon, 19 Sep 2011)
New Revision: 14944

Modified:
   trunk/lucene2/debian/control
   trunk/lucene2/debian/copyright
Log:
Run wrap-and-sort.

Modified: trunk/lucene2/debian/control
===
--- trunk/lucene2/debian/control2011-09-19 15:55:18 UTC (rev 14943)
+++ trunk/lucene2/debian/control2011-09-19 16:16:12 UTC (rev 14944)
@@ -2,43 +2,50 @@
 Section: java
 Priority: optional
 Maintainer: Debian Java Maintainers 

-Uploaders: Barry Hawkins , 
- Jeff Breidenbach , Michael Koch , Rene 
Engelhard 
+Uploaders: Barry Hawkins ,
+   Jeff Breidenbach ,
+   Michael Koch ,
+   Rene Engelhard 
 DM-Upload-Allowed: yes
 Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/lucene2/
 Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/lucene2/
 Homepage: http://lucene.apache.org/java/
-Build-Depends: cdbs (>= 0.4.49), debhelper (>= 6), dpatch (>= 2.0),
- openjdk-6-jdk, 
- ant-optional (>= 1.8), ant-contrib, javacc, junit
-Build-Depends-Indep: libjline-java (>= 0.9.5), 
- libcommons-digester-java (>= 1.7), 
- libregexp-java (>= 1.4), 
- libdb-java (>= 5.1.4),
- libdb-je-java (>= 3.2.68),
- libcommons-collections3-java (>= 3.1), 
- libcommons-logging-java (>= 1.0.4), 
- libcommons-beanutils-java (>= 1.7.0),
- libcommons-compress-java (>= 1.0),
- libicu4j-java (>= 3.8.1),
- libjtidy-java (>= 7+svn20070309)
+Build-Depends: ant-contrib,
+   ant-optional (>= 1.8),
+   cdbs (>= 0.4.49),
+   debhelper (>= 6),
+   dpatch (>= 2.0),
+   javacc,
+   junit,
+   openjdk-6-jdk
+Build-Depends-Indep: libcommons-beanutils-java (>= 1.7.0),
+ libcommons-collections3-java (>= 3.1),
+ libcommons-compress-java (>= 1.0),
+ libcommons-digester-java (>= 1.7),
+ libcommons-logging-java (>= 1.0.4),
+ libdb-java (>= 5.1.4),
+ libdb-je-java (>= 3.2.68),
+ libicu4j-java (>= 3.8.1),
+ libjline-java (>= 0.9.5),
+ libjtidy-java (>= 7+svn20070309),
+ libregexp-java (>= 1.4)
 Standards-Version: 3.9.2
 
 Package: liblucene2-java
 Architecture: all
-Depends: ${misc:Depends},
+Depends: ${misc:Depends}
 Recommends: libcommons-beanutils-java (>= 1.7.0),
- libcommons-collections3-java (>= 3.1), 
- libcommons-compress-java (>= 1.0),
- libcommons-digester-java (>= 1.7), 
- libcommons-logging-java (>= 1.0.4), 
- libdb-java (>= 5.1.4),
- libdb-je-java (>= 3.2.68),
- libicu4j-java (>= 3.8.1),
- libjline-java (>= 0.9.5), 
- libjtidy-java (>= 7+svn20070309),
- libregexp-java (>= 1.4)
-Breaks: solr-common (<< 1.2.0+ds2-3), eclipse-platform (<= 3.5.2-11)
+libcommons-collections3-java (>= 3.1),
+libcommons-compress-java (>= 1.0),
+libcommons-digester-java (>= 1.7),
+libcommons-logging-java (>= 1.0.4),
+libdb-java (>= 5.1.4),
+libdb-je-java (>= 3.2.68),
+libicu4j-java (>= 3.8.1),
+libjline-java (>= 0.9.5),
+libjtidy-java (>= 7+svn20070309),
+libregexp-java (>= 1.4)
+Breaks: eclipse-platform (<= 3.5.2-11), solr-common (<< 1.2.0+ds2-3)
 Description: Full-text search engine library for Java(TM)
  Lucene is a full-text search engine for the Java(TM) programming language.
  Lucene is not a complete application, but rather a code library and API
@@ -51,7 +58,7 @@
 Architecture: all
 Section: doc
 Depends: ${misc:Depends}
-Recommends: libregexp-java (>= 1.4), ant-doc
+Recommends: ant-doc, libregexp-java (>= 1.4)
 Description: Documentation for Lucene
  Lucene is a full-text search engine for the Java(TM) programming language.
  Lucene is not a complete application, but rather a code library and API

Modified: trunk/lucene2/debian/copyright
===
--- trunk/lucene2/debian/copyright  2011-09-19 15:55:18 UTC (rev 14943)
+++ trunk/lucene2/debian/copyright  2011-09-19 16:16:12 UTC (rev 14944)
@@ -7,7 +7,7 @@
 License: Apache-2
 
 Files: debian/*
-Copyright: 2007-2009 Jan-Pascal van Best  
+Copyright: 2007-2009 Jan-Pascal van Best 
 License: Apache-2
 
 Files: src/java/org/apache/lucene/util/UnicodeUtil.java


___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


[SCM] eclipse - Powerful IDE written in java - Debian package. branch, master, updated. debian/3.7_exp-5-5-g01a2940

2011-09-19 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, master has been updated
   via  01a29407301f7fb0812cbeecb8b1c2b83df3a7e2 (commit)
  from  daa9254a2cf8fc4656813455c11c882390a2be60 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit 01a29407301f7fb0812cbeecb8b1c2b83df3a7e2
Author: Benjamin Drung 
Date:   Mon Sep 19 18:13:57 2011 +0200

Add bug link to gnomeproxy-makefile.patch.

---

Summary of changes:
 debian/patches/gnomeproxy-makefile.patch |4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/debian/patches/gnomeproxy-makefile.patch 
b/debian/patches/gnomeproxy-makefile.patch
index 8d818e1..987ff98 100644
--- a/debian/patches/gnomeproxy-makefile.patch
+++ b/debian/patches/gnomeproxy-makefile.patch
@@ -1,11 +1,13 @@
 Description: Use pkg-config to determine CFLAGS and LIBS for gnomeproxy.
 Author: Benjamin Drung 
+Bug: https://bugs.eclipse.org/bugs/show_bug.cgi?id=358133
 
 --- a/patches/gnomeproxy-makefile.patch
 +++ b/patches/gnomeproxy-makefile.patch
-@@ -1,12 +1,35 @@
+@@ -1,12 +1,36 @@
 +Description: Use pkg-config to determine CFLAGS and LIBS for gnomeproxy.
 +Author: Benjamin Drung 
++Bug: https://bugs.eclipse.org/bugs/show_bug.cgi?id=358133
 +
  --- a/plugins/org.eclipse.core.net/natives/unix/linux/makefile
  +++ b/plugins/org.eclipse.core.net/natives/unix/linux/makefile


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


[pkg-java] r14943 - trunk/lucene2/debian

2011-09-19 Thread Benjamin Drung
Author: bdrung
Date: 2011-09-19 15:55:18 + (Mon, 19 Sep 2011)
New Revision: 14943

Modified:
   trunk/lucene2/debian/changelog
   trunk/lucene2/debian/copyright
Log:
Use versioned format link in debian/copyright (Closes: #631632).

Modified: trunk/lucene2/debian/changelog
===
--- trunk/lucene2/debian/changelog  2011-09-18 21:59:35 UTC (rev 14942)
+++ trunk/lucene2/debian/changelog  2011-09-19 15:55:18 UTC (rev 14943)
@@ -1,9 +1,13 @@
 lucene2 (2.9.4+ds1-4) UNRELEASED; urgency=low
 
+  [ Jan-Pascal van Best ]
   * Removed Jan-Pascal van Best from Uploaders
 
- -- Jan-Pascal van Best   Tue, 16 Aug 2011 17:53:16 
+0200
+  [ Benjamin Drung ]
+  * Use versioned format link in debian/copyright (Closes: #631632).
 
+ -- Benjamin Drung   Mon, 19 Sep 2011 17:53:44 +0200
+
 lucene2 (2.9.4+ds1-3) experimental; urgency=low
 
   * Team upload.

Modified: trunk/lucene2/debian/copyright
===
--- trunk/lucene2/debian/copyright  2011-09-18 21:59:35 UTC (rev 14942)
+++ trunk/lucene2/debian/copyright  2011-09-19 15:55:18 UTC (rev 14943)
@@ -1,6 +1,5 @@
-Format-Specification: 
http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=REVISION
-Name: lucene2
-Maintainer: Debian Java Maintainers 

+Format: http://anonscm.debian.org/viewvc/dep/web/deps/dep5.mdwn?revision=174
+Upstream-Name: lucene2
 Source: http://lucene.apache.org/java/
 
 Files: *
@@ -21,18 +20,18 @@
 
 License: Apache-2
  On Debian systems, the complete text of the Apache
- License, version 2.0, can be found in the 
+ License, version 2.0, can be found in the
  `/usr/share/common-licenses/Apache-2.0' file.
 
 License: PSF-2.4
  PSF LICENSE AGREEMENT FOR PYTHON 2.4
  
- 
+ .
  1. This LICENSE AGREEMENT is between the Python Software Foundation
  ("PSF"), and the Individual or Organization ("Licensee") accessing and
  otherwise using Python 2.4 software in source or binary form and its
  associated documentation.
- 
+ .
  2. Subject to the terms and conditions of this License Agreement, PSF
  hereby grants Licensee a nonexclusive, royalty-free, world-wide
  license to reproduce, analyze, test, perform and/or display publicly,
@@ -42,41 +41,41 @@
  2001, 2002, 2003, 2004 Python Software Foundation; All Rights Reserved"
  are retained in Python 2.4 alone or in any derivative version prepared
  by Licensee.
- 
+ .
  3. In the event Licensee prepares a derivative work that is based on
  or incorporates Python 2.4 or any part thereof, and wants to make
  the derivative work available to others as provided herein, then
  Licensee hereby agrees to include in any such work a brief summary of
  the changes made to Python 2.4.
- 
+ .
  4. PSF is making Python 2.4 available to Licensee on an "AS IS"
  basis.  PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
  IMPLIED.  BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND
  DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
  FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 2.4 WILL NOT
  INFRINGE ANY THIRD PARTY RIGHTS.
- 
+ .
  5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
  2.4 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
  A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 2.4,
  OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
- 
+ .
  6. This License Agreement will automatically terminate upon a material
  breach of its terms and conditions.
- 
+ .
  7. Nothing in this License Agreement shall be deemed to create any
  relationship of agency, partnership, or joint venture between PSF and
  Licensee.  This License Agreement does not grant permission to use PSF
  trademarks or trade name in a trademark sense to endorse or promote
  products or services of Licensee, or any third party.
- 
+ .
  8. By copying, installing or otherwise using Python 2.4, Licensee
  agrees to be bound by the terms and conditions of this License
  Agreement.
 
 License: Unicode
  Disclaimer
- 
+ .
  This source code is provided as is by Unicode, Inc. No claims are
  made as to fitness for any particular purpose. No warranties of any
  kind are expressed or implied. The recipient agrees to determine
@@ -84,12 +83,11 @@
  purchased on magnetic or optical media from Unicode, Inc., the
  sole remedy for any claim will be exchange of defective media
  within 90 days of receipt.
- 
+ .
  Limitations on Rights to Redistribute This Code
- 
+ .
  Unicode, Inc. hereby grants the right to freely use the information
  supplied in this file in the creation of products supporting the
  Unicode Standard, and to make copies of this file in any form
  for internal or external distribution as long as this notice
  remains attached.
-


___
pkg-java-commits mailing list
p

[SCM] eclipse - Powerful IDE written in java - Debian package. branch, master, updated. debian/3.7_exp-5-4-gdaa9254

2011-09-19 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, master has been updated
   via  daa9254a2cf8fc4656813455c11c882390a2be60 (commit)
  from  6b35c056f750748289b5f24e72b3b3ebbf46989b (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit daa9254a2cf8fc4656813455c11c882390a2be60
Author: Benjamin Drung 
Date:   Mon Sep 19 17:02:04 2011 +0200

Update debian/changelog.

---

Summary of changes:
 debian/changelog |7 +++
 1 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 25770ae..221c0a2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+eclipse (3.7~exp-6) UNRELEASED; urgency=low
+
+  * Use pkg-config to determine CFLAGS and LIBS for gnomeproxy.
+  * Eclipse 3.7 requires at least version 3.3 of asm3.
+
+ -- Benjamin Drung   Mon, 19 Sep 2011 17:01:44 +0200
+
 eclipse (3.7~exp-5) experimental; urgency=low
 
   * Forced many Eclipse version qualifiers to "dist" to avoid buildd


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


[SCM] eclipse - Powerful IDE written in java - Debian package. branch, master, updated. debian/3.7_exp-5-3-g6b35c05

2011-09-19 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, master has been updated
   via  6b35c056f750748289b5f24e72b3b3ebbf46989b (commit)
  from  1c4f2542d2d01f1fa3fb0b2ea24487e9b5ec3c47 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit 6b35c056f750748289b5f24e72b3b3ebbf46989b
Author: Benjamin Drung 
Date:   Mon Sep 19 16:21:45 2011 +0200

Eclipse 3.7 requires at least version 3.3 of asm3.

---

Summary of changes:
 debian/control |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/control b/debian/control
index 84fd2d3..d4581d6 100644
--- a/debian/control
+++ b/debian/control
@@ -14,7 +14,7 @@ Build-Depends: ant (>= 1.8.2),
docbook2x,
junit (>= 3.8.2-4),
junit4 (>= 4.7-3),
-   libasm3-java (>= 3.2-3),
+   libasm3-java (>= 3.3),
libatk1.0-dev,
libcairo2-dev,
libcommons-codec-java (>= 1.4-2),
@@ -102,7 +102,7 @@ Architecture: any
 Depends: default-jre | java5-runtime | java6-runtime,
  eclipse-jdt (= ${binary:Version}),
  eclipse-platform (= ${binary:Version}),
- libasm3-java (>= 3.2-3),
+ libasm3-java (>= 3.3),
  ${misc:Depends}
 Suggests: eclipse
 Replaces: eclipse-pde-gcj


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


[SCM] eclipse - Powerful IDE written in java - Debian package. branch, master, updated. debian/3.7_exp-5-2-g1c4f254

2011-09-19 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, master has been updated
   via  1c4f2542d2d01f1fa3fb0b2ea24487e9b5ec3c47 (commit)
  from  f56b07e84fffef6d32dbb79531659f098aa5abcf (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit 1c4f2542d2d01f1fa3fb0b2ea24487e9b5ec3c47
Author: Benjamin Drung 
Date:   Mon Sep 19 16:14:57 2011 +0200

Correct strip level of gnomeproxy-makefile.patch

---

Summary of changes:
 debian/patches/gnomeproxy-makefile.patch |8 +++-
 1 files changed, 3 insertions(+), 5 deletions(-)

diff --git a/debian/patches/gnomeproxy-makefile.patch 
b/debian/patches/gnomeproxy-makefile.patch
index ed4f25d..8d818e1 100644
--- a/debian/patches/gnomeproxy-makefile.patch
+++ b/debian/patches/gnomeproxy-makefile.patch
@@ -4,14 +4,12 @@ Author: Benjamin Drung 
 --- a/patches/gnomeproxy-makefile.patch
 +++ b/patches/gnomeproxy-makefile.patch
 @@ -1,12 +1,35 @@
- a/plugins/org.eclipse.core.net/natives/unix/linux/makefile
--+++ b/plugins/org.eclipse.core.net/natives/unix/linux/makefile
--@@ -20,7 +20,8 @@
 +Description: Use pkg-config to determine CFLAGS and LIBS for gnomeproxy.
 +Author: Benjamin Drung 
 +
-+--- a/eclipse/plugins/org.eclipse.core.net/natives/unix/linux/makefile
- b/eclipse/plugins/org.eclipse.core.net/natives/unix/linux/makefile
+ --- a/plugins/org.eclipse.core.net/natives/unix/linux/makefile
+ +++ b/plugins/org.eclipse.core.net/natives/unix/linux/makefile
+-@@ -20,7 +20,8 @@
 +@@ -18,12 +18,17 @@ GNOMEPROXY.O = gnomeproxy.o
 + LIB_NAME = gnomeproxy.so
 + LIB_NAME_FULL = libgnomeproxy-1.0.0.so


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


[SCM] eclipse - Powerful IDE written in java - Debian package. branch, master, updated. debian/3.7_exp-5-1-gf56b07e

2011-09-19 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, master has been updated
   via  f56b07e84fffef6d32dbb79531659f098aa5abcf (commit)
  from  d29ccfd55165d4230302158ea5d08aa6b8419698 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit f56b07e84fffef6d32dbb79531659f098aa5abcf
Author: Benjamin Drung 
Date:   Mon Sep 19 16:04:24 2011 +0200

Use pkg-config to determine CFLAGS and LIBS for gnomeproxy.

---

Summary of changes:
 debian/patches/gnomeproxy-makefile.patch |   48 ++
 debian/patches/series|1 +
 2 files changed, 49 insertions(+), 0 deletions(-)

diff --git a/debian/patches/gnomeproxy-makefile.patch 
b/debian/patches/gnomeproxy-makefile.patch
new file mode 100644
index 000..ed4f25d
--- /dev/null
+++ b/debian/patches/gnomeproxy-makefile.patch
@@ -0,0 +1,48 @@
+Description: Use pkg-config to determine CFLAGS and LIBS for gnomeproxy.
+Author: Benjamin Drung 
+
+--- a/patches/gnomeproxy-makefile.patch
 b/patches/gnomeproxy-makefile.patch
+@@ -1,12 +1,35 @@
+ a/plugins/org.eclipse.core.net/natives/unix/linux/makefile
+-+++ b/plugins/org.eclipse.core.net/natives/unix/linux/makefile
+-@@ -20,7 +20,8 @@
++Description: Use pkg-config to determine CFLAGS and LIBS for gnomeproxy.
++Author: Benjamin Drung 
++
++--- a/eclipse/plugins/org.eclipse.core.net/natives/unix/linux/makefile
+ b/eclipse/plugins/org.eclipse.core.net/natives/unix/linux/makefile
++@@ -18,12 +18,17 @@ GNOMEPROXY.O = gnomeproxy.o
++ LIB_NAME = gnomeproxy.so
++ LIB_NAME_FULL = libgnomeproxy-1.0.0.so
+  
+++GCONF_CFLAGS = `pkg-config --cflags gconf-2.0`
+++GCONF_LIBS = `pkg-config --libs gconf-2.0`
+++
+++GLIB_CFLAGS = `pkg-config --cflags glib-2.0`
+++GLIB_LIBS = `pkg-config --libs glib-2.0`
+++
+  OS_TYPE = linux
+  JDK_INCLUDE = -I${JAVA_HOME}/include -I${JAVA_HOME}/include/${OS_TYPE}
+ -INCLUDE = -I/usr/include/gconf/2/ -I/usr/include/orbit-2.0/ 
-I/usr/include/glib-2.0/ -I/usr/lib/glib-2.0/include/
+-+INCLUDE = -I/usr/include/gconf/2/ -I/usr/include/orbit-2.0/ 
-I/usr/include/glib-2.0/ -I/usr/lib/glib-2.0/include/ \
+-+   -I$(JAVA_HOME)/include -I$(JAVA_HOME)/include/linux
+- COMPILER_FLAGS = -O0 -fPIC -g3 -Wall -c -fmessage-length=0 -m32
++-COMPILER_FLAGS = -O0 -fPIC -g3 -Wall -c -fmessage-length=0 -m32
+++COMPILER_FLAGS = -O0 -fPIC -g3 -Wall -c -fmessage-length=0 -m32 
$(GCONF_CFLAGS) $(GLIB_CFLAGS)
++ 
++-LIBS := -lgconf-2 -lORBit-2 -lgthread-2.0 -lrt -lgobject-2.0 -lglib-2.0
+++LIBS := $(GCONF_LIBS) $(GLIB_LIBS)
++ LINKER_FLAGS= -m32
++ 
++ all: link
++@@ -31,7 +36,7 @@ all: link
++ compile:
++  @echo "Building file: $(GNOMEPROXY.O)"
++  @echo "Invoking: GCC C Compiler"
++- gcc $(INCLUDE) $(JDK_INCLUDE) $(COMPILER_FLAGS) -o $(GNOMEPROXY.O) 
$(GNOMEPROXY.C)
+++ gcc $(JDK_INCLUDE) $(COMPILER_FLAGS) -o $(GNOMEPROXY.O) $(GNOMEPROXY.C)
++  @echo "Finished building: $(GNOMEPROXY.O)"
++  @echo " "
+  
+- LIBS := -lgconf-2 -lORBit-2 -lgthread-2.0 -lrt -lgobject-2.0 -lglib-2.0
diff --git a/debian/patches/series b/debian/patches/series
index 3ed7ed6..f1daa96 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -15,3 +15,4 @@ clean-source.patch
 osgi-services.patch
 #eclipse-build-generatedScripts.patch
 debian-load-internal-swt.patch
+gnomeproxy-makefile.patch


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


Bug#631235: liblucene2-java: Wrong Bundle-SymbolicName for lucene-core

2011-06-21 Thread Benjamin Drung
Package: liblucene2-java
Version: 2.9.4+ds1-1
Severity: normal

When working on getting Eclipse 3.7 build, I stumbled over a wrong
Bundle-SymbolicName entry in the manifest file for lucene-core. The symbolic
name should be org.apache.lucene.core instead of org.apache.lucene.



__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.


[SCM] eclipse - Powerful IDE written in java - Debian package. branch, master, updated. debian/3.6.2-exp-1-34-gb60abc1

2011-05-29 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, master has been updated
   via  b60abc1bc9224714646869d412d595388e3d56da (commit)
   via  a7dda7aceffedabce6c501341a1e3017e48a498d (commit)
  from  40fd42eb67720ba050914115cbf85b01479e1f96 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit b60abc1bc9224714646869d412d595388e3d56da
Author: Benjamin Drung 
Date:   Sat May 28 21:03:40 2011 +0200

Readd upstream patches that were dropped in master-3.6 merge.

commit a7dda7aceffedabce6c501341a1e3017e48a498d
Author: Benjamin Drung 
Date:   Sat May 28 20:51:26 2011 +0200

Drop buildArch=x86 from build.properties.

---

Summary of changes:
 build.properties  |1 -
 patches/droppluginversions.patch  |   65 +
 patches/eclipse-swt-compile-xpt.patch |   31 
 patches/osgi-util.patch   |   18 +
 4 files changed, 114 insertions(+), 1 deletions(-)

diff --git a/build.properties b/build.properties
index 741f1aa..96844d8 100644
--- a/build.properties
+++ b/build.properties
@@ -11,7 +11,6 @@ featureToBuild=eclipse-build-feature
 skipBase=true
 skipFetch=true
 individualSourceBundles=true
-buildArch=x86
 ws=gtk
 os=linux
 includeLaunchers=true
diff --git a/patches/droppluginversions.patch b/patches/droppluginversions.patch
new file mode 100644
index 000..66f5128
--- /dev/null
+++ b/patches/droppluginversions.patch
@@ -0,0 +1,65 @@
+--- pluginVersions.properties.sav  2010-03-18 13:10:05.0 +0200
 pluginVersions.properties  2010-03-18 13:14:44.477528467 +0200
+@@ -27,7 +27,7 @@ org.eclipse.equinox.simpleconfigurator.m
+ org.eclipse.pde.api.tools.ui,0.0.0=v20090820
+ org.eclipse.jdt.debug,0.0.0=v20090526
+ org.eclipse.sdk.examples,0.0.0=v20080612
+-org.eclipse.pde,0.0.0=v20090527
++org.eclipse.pde,0.0.0=v201002111343
+ org.eclipse.compare.core,0.0.0=I20090430-0408
+ org.eclipse.equinox.p2.engine,0.0.0=R35x_v20091117
+ org.eclipse.equinox.launcher.motif.hpux.ia64_32,0.0.0=v20090519
+@@ -38,7 +38,7 @@ org.eclipse.equinox.p2.ui.admin,0.0.0=v2
+ org.eclipse.equinox.transforms.xslt,0.0.0=R35x_v20100209
+ org.eclipse.jface.databinding,0.0.0=M20090826-0800
+ org.eclipse.equinox.p2.touchpoint.eclipse,0.0.0=R35x_20090820-1821
+-org.eclipse.help.base,0.0.0=v20090526
++org.eclipse.help.base,0.0.0=v201002111343
+ org.eclipse.ui.presentations.r21,0.0.0=M20091015-0930
+ org.eclipse.equinox.frameworkadmin,0.0.0=v20090520-1905
+ org.eclipse.ui.intro,0.0.0=v20100111_35x
+@@ -76,7 +76,7 @@ org.eclipse.team.ui,0.0.0=I20090430-0408
+ org.eclipse.equinox.p2.metadata,0.0.0=R35x_v20100112
+ org.eclipse.swt.cocoa.macosx.x86_64,0.0.0=v3557f
+ org.eclipse.jdt.compiler.tool,0.0.0=v_981_R35x
+-org.eclipse.platform,0.0.0=R35x_v20100121
++org.eclipse.platform,0.0.0=v201002111343
+ org.eclipse.core.databinding.observable,0.0.0=M20090902-0800
+ org.eclipse.team.examples.filesystem,0.0.0=I20090210-0800
+ org.eclipse.pde.core,0.0.0=v20100104
+@@ -191,7 +191,7 @@ org.eclipse.pde.api.tools.ee.javase16,0.
+ org.eclipse.compare.win32,0.0.0=I20090430-0408
+ org.eclipse.equinox.p2.installer,0.0.0=R35x_v20090717
+ org.eclipse.debug.examples.core,0.0.0=v20090504
+-org.eclipse.rcp,0.0.0=R35x_v20100119
++org.eclipse.rcp,0.0.0=v201002111343
+ org.eclipse.pde.ds.core,0.0.0=v20100118
+ org.eclipse.equinox.registry,0.0.0=v20090520-1800
+ org.eclipse.ui.examples.readmetool,0.0.0=I20090526-2000
+@@ -233,7 +233,7 @@ org.eclipse.update.configurator,0.0.0=v2
+ org.eclipse.core.filesystem.win32.x86,0.0.0=v20080604-1400
+ org.eclipse.equinox.p2.core,0.0.0=R35x_v20090819
+ org.eclipse.swt.examples,0.0.0=v3557f
+-org.eclipse.cvs,0.0.0=R35x_v20100119
++org.eclipse.cvs,0.0.0=v201002111343
+ org.eclipse.swt.gtk.linux.x86,0.0.0=v3557f
+ org.eclipse.equinox.log,0.0.0=v20090520-1800
+ org.eclipse.equinox.jmx.client,0.0.0=v20070515
+@@ -250,7 +250,7 @@ org.eclipse.platform.doc.user,0.0.0=r352
+ org.eclipse.equinox.security.macosx,0.0.0=v20090520-1800
+ org.eclipse.equinox.supplement,0.0.0=v20090518
+ org.eclipse.team.cvs.ssh,0.0.0=I20090508-2000
+-org.eclipse.sdk,0.0.0=R35x_v20100204
++org.eclipse.sdk,0.0.0=v201002111343
+ org.eclipse.jsch.ui,0.0.0=r35x_20100210-1114
+ org.eclipse.core.filesystem.win32.x86_64,0.0.0=v20090316-0910
+ org.eclipse.equinox.security.win32.x86,0.0.0=v20090520-1800
+@@ -289,7 +289,7 @@ org.eclipse.equinox.p2.ui.sdk.scheduler,
+ org.eclipse.ui.editors,0.0.0=v20090527-2000
+ org.eclipse.core.filebuffers,0.0.0=v20090526-2000
+ org.eclipse.equinox.ip,0.0.0=R35x_v20090803
+-org.eclipse

[SCM] eclipse - Powerful IDE written in java - Debian package. branch, master, updated. debian/3.6.2-exp-1-32-g40fd42e

2011-05-28 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, master has been updated
   via  40fd42eb67720ba050914115cbf85b01479e1f96 (commit)
  from  0dbe3bbabed2d0a814bb91a0faeb400fcc096917 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit 40fd42eb67720ba050914115cbf85b01479e1f96
Author: Benjamin Drung 
Date:   Sat May 28 19:57:18 2011 +0200

Drop backported patches.

---

Summary of changes:
 debian/patches/bp-build-with-ant-1.8.2.patch   |   18 -
 .../bp-eclipse-help-webapps-xss-BZ661901.patch |   34 -
 .../bp-osgi-allow-illegal-os-qualifier.patch   |   23 --
 debian/patches/bp-osgi-ignore-root-CA.patch|   77 
 debian/patches/bp-pdebuild-fixes.patch |   25 ---
 debian/patches/pdebuild-workspace.patch|   70 --
 6 files changed, 0 insertions(+), 247 deletions(-)

diff --git a/debian/patches/bp-build-with-ant-1.8.2.patch 
b/debian/patches/bp-build-with-ant-1.8.2.patch
deleted file mode 100644
index 4f09afe..000
--- a/debian/patches/bp-build-with-ant-1.8.2.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-Description: Remove ant+trax and ant-nodeps that has been removed in ant
- 1.8.2.
-Origin: upstream
-
-diff --git a/nonosgidependencies.properties b/nonosgidependencies.properties
-index 2a28ce9..9ae7ec5 100644
 a/nonosgidependencies.properties
-+++ b/nonosgidependencies.properties
-@@ -13,9 +13,7 @@ 
org.apache.ant_1.7.1.v20090120-1145/lib/ant-jdepend.jar=/usr/share/java/ant/ant-
- 
org.apache.ant_1.7.1.v20090120-1145/lib/ant-jsch.jar=/usr/share/java/ant/ant-jsch.jar:/usr/share/java/ant-jsch.jar
- 
org.apache.ant_1.7.1.v20090120-1145/lib/ant-junit.jar=/usr/share/java/ant/ant-junit.jar:/usr/share/java/ant-junit.jar
- 
org.apache.ant_1.7.1.v20090120-1145/lib/ant-launcher.jar=/usr/share/java/ant-launcher.jar:/usr/share/java/ant-launcher.jar
--org.apache.ant_1.7.1.v20090120-1145/lib/ant-nodeps.jar=/usr/share/java/ant/ant-nodeps.jar:/usr/share/java/ant-nodeps.jar
- 
org.apache.ant_1.7.1.v20090120-1145/lib/ant-swing.jar=/usr/share/java/ant/ant-swing.jar:/usr/share/java/ant-swing.jar
--org.apache.ant_1.7.1.v20090120-1145/lib/ant-trax.jar=/usr/share/java/ant/ant-trax.jar:/usr/share/java/ant-trax.jar
- org.junit_3.8.2.v20090203-1005/junit.jar=/usr/share/java/junit.jar
- org.junit4/junit.jar=/usr/share/java/junit4.jar
- org.apache.ant_1.7.1.v20090120-1145/bin/ant=/usr/share/ant/bin/ant
diff --git a/debian/patches/bp-eclipse-help-webapps-xss-BZ661901.patch 
b/debian/patches/bp-eclipse-help-webapps-xss-BZ661901.patch
deleted file mode 100644
index ebe1665..000
--- a/debian/patches/bp-eclipse-help-webapps-xss-BZ661901.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-Description: Backported patch for fixing CVE-2010-4647.
-Origin: Fedora, 
http://pkgs.fedoraproject.org/gitweb/?p=eclipse.git;a=commit;h=5c1617b
-Bug: https://bugs.eclipse.org/bugs/show_bug.cgi?id=329582
-Bug-Debian: http://bugs.debian.org/611849
-Bug-Fedora: https://bugzilla.redhat.com/show_bug.cgi?id=661901
-
-diff --git a/eclipse/plugins/org.eclipse.help.webapp/advanced/content.jsp 
b/eclipse/plugins/org.eclipse.help.webapp/advanced/content.jsp
-index fc9998f..73712b4 100644
 a/eclipse/plugins/org.eclipse.help.webapp/advanced/content.jsp
-+++ b/eclipse/plugins/org.eclipse.help.webapp/advanced/content.jsp
-@@ -46,7 +46,7 @@ FRAMESET {
- 
- 
- 
--  " 
src='<%="contentToolbar.jsp"+data.getQuery()%>'  marginwidth="0" 
marginheight="0" scrolling="no" frameborder="0" noresize=0>
-+  " 
src='<%="contentToolbar.jsp"+UrlUtil.htmlEncode(data.getQuery())%>'  
marginwidth="0" marginheight="0" scrolling="no" frameborder="0" noresize=0>
-   " 
src='<%=UrlUtil.htmlEncode(data.getContentURL())%>'  
marginwidth="10"<%=(data.isIE() && "6.0".compareTo(data.getIEVersion()) 
<=0)?"scrolling=\"yes\"":""%> marginheight="0" frameborder="0" >
- 
- 
-diff --git a/eclipse/plugins/org.eclipse.help.webapp/basic/index.jsp 
b/eclipse/plugins/org.eclipse.help.webapp/basic/index.jsp
-index c405813..5639f62 100644
 a/eclipse/plugins/org.eclipse.help.webapp/basic/index.jsp
-+++ b/eclipse/plugins/org.eclipse.help.webapp/basic/index.jsp
-@@ -29,8 +29,8 @@
- <%
-   }
- %>
--  " 
src='<%="basic/tabs.jsp"+data.getQuery()%>' marginwidth=&qu

[SCM] eclipse - Powerful IDE written in java - Debian package. tag, debian/3.5.2-10ubuntu2, created. debian/3.5.2-10-11-g690102a

2011-05-28 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The tag, debian/3.5.2-10ubuntu2 has been created
at  690102a27a06527d724986e88890d0b775e1b903 (commit)

- Log -
commit 690102a27a06527d724986e88890d0b775e1b903
Author: Benjamin Drung 
Date:   Thu May 26 23:02:11 2011 +0200

Fix FTBFS on i386.

* debian/patches/gnomeproxy-makefile.patch: Set Java include path for
  libgnomeproxy.
* debian/patches/gnomeproxy-pkg-config.patch: Use pkg-config to find
  include files and libraries for libgnomeproxy.  (LP: #749218)
---


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


[SCM] eclipse - Powerful IDE written in java - Debian package. branch, oneiric, updated. debian/3.5.2-10-11-g690102a

2011-05-26 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, oneiric has been updated
   via  690102a27a06527d724986e88890d0b775e1b903 (commit)
  from  0373f95faa64be5ef127087432945a893f9e1c76 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit 690102a27a06527d724986e88890d0b775e1b903
Author: Benjamin Drung 
Date:   Thu May 26 23:02:11 2011 +0200

Fix FTBFS on i386.

* debian/patches/gnomeproxy-makefile.patch: Set Java include path for
  libgnomeproxy.
* debian/patches/gnomeproxy-pkg-config.patch: Use pkg-config to find
  include files and libraries for libgnomeproxy.  (LP: #749218)

---

Summary of changes:
 debian/changelog   |9 +++
 debian/patches/gnomeproxy-makefile.patch   |   20 
 debian/patches/gnomeproxy-pkg-config.patch |   24 
 debian/patches/series  |2 +
 .../natives/unix/linux/makefile|5 ++-
 5 files changed, 58 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 7d332c3..d485456 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,12 @@
+eclipse (3.5.2-10ubuntu2) oneiric; urgency=low
+
+  * debian/patches/gnomeproxy-makefile.patch: Set Java include path for
+libgnomeproxy.
+  * debian/patches/gnomeproxy-pkg-config.patch: Use pkg-config to find
+include files and libraries for libgnomeproxy.  (LP: #749218)
+
+ -- Anders Kaseorg   Thu, 26 May 2011 22:19:59 +0200
+
 eclipse (3.5.2-10ubuntu1) oneiric; urgency=low
 
   * Merge from Debian unstable (LP: #780267). Remaining changes:
diff --git a/debian/patches/gnomeproxy-makefile.patch 
b/debian/patches/gnomeproxy-makefile.patch
new file mode 100644
index 000..13b9114
--- /dev/null
+++ b/debian/patches/gnomeproxy-makefile.patch
@@ -0,0 +1,20 @@
+Description: Set Java include path for libgnomeproxy
+Origin: upstream, patches/gnomeproxy.patch
+Bug: https://bugs.eclipse.org/bugs/show_bug.cgi?id=292078
+Last-Update: 2011-05-19
+
+---
+Index: 
eclipse-3.5.2/eclipse/plugins/org.eclipse.core.net/natives/unix/linux/makefile
+===
+--- 
eclipse-3.5.2.orig/eclipse/plugins/org.eclipse.core.net/natives/unix/linux/makefile
2011-05-19 21:54:58.704010055 -0400
 
eclipse-3.5.2/eclipse/plugins/org.eclipse.core.net/natives/unix/linux/makefile  
   2011-05-19 21:56:54.135957161 -0400
+@@ -18,7 +18,8 @@
+ LIB_NAME = gnomeproxy.so
+ LIB_NAME_FULL = libgnomeproxy-1.0.0.so
+ 
+-INCLUDE = -I/usr/include/gconf/2/ -I/usr/include/orbit-2.0/ 
-I/usr/include/glib-2.0/ -I/usr/lib/glib-2.0/include/
++INCLUDE = -I/usr/include/gconf/2/ -I/usr/include/orbit-2.0/ 
-I/usr/include/glib-2.0/ -I/usr/lib/glib-2.0/include/ \
++-I$(JAVA_HOME)/include -I$(JAVA_HOME)/include/linux
+ COMPILER_FLAGS= -O0 -fPIC -g3 -Wall -c -fmessage-length=0 -m32
+ 
+ LIBS := -lgconf-2 -lORBit-2 -lgthread-2.0 -lrt -lgobject-2.0 -lglib-2.0
diff --git a/debian/patches/gnomeproxy-pkg-config.patch 
b/debian/patches/gnomeproxy-pkg-config.patch
new file mode 100644
index 000..a9fd2d7
--- /dev/null
+++ b/debian/patches/gnomeproxy-pkg-config.patch
@@ -0,0 +1,24 @@
+Description: Use pkg-config to find include files and libraries for 
libgnomeproxy
+Author: Anders Kaseorg 
+Bug-Ubuntu: https://bugs.launchpad.net/bugs/749218
+Last-Update: 2011-05-19
+
+---
+Index: 
eclipse-3.5.2/eclipse/plugins/org.eclipse.core.net/natives/unix/linux/makefile
+===
+--- 
eclipse-3.5.2.orig/eclipse/plugins/org.eclipse.core.net/natives/unix/linux/makefile
2011-05-19 21:56:00.0 -0400
 
eclipse-3.5.2/eclipse/plugins/org.eclipse.core.net/natives/unix/linux/makefile  
   2011-05-19 21:56:23.235442580 -0400
+@@ -18,11 +18,11 @@
+ LIB_NAME = gnomeproxy.so
+ LIB_NAME_FULL = libgnomeproxy-1.0.0.so
+ 
+-INCLUDE = -I/usr/include/gconf/2/ -I/usr/include/orbit-2.0/ 
-I/usr/include/glib-2.0/ -I/usr/lib/glib-2.0/include/ \
++INCLUDE := $(shell pkg-config --cflags gconf-2.0 glib-2.0) \
+ -I$(JAVA_HOME)/include -I$(JAVA_HOME)/include/linux
+ COMPILER_FLAGS= -O0 -fPIC -g3 -Wall -c -fmessage-length=0 -m32
+ 
+-LIBS := -lgconf-2 -lORBit-2 -lgthread-2.0 -lrt -lgobject-2.0 -lglib-2.0
++LIBS := $(shell pkg-config --libs gconf-2.0 glib-2.0)
+ LINKER_FLAGS= -m32
+ 
+ all: link
diff --git a/debian/patches/series b/debian/patches/series
index 8439669..72421ff 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -

[SCM] eclipse - Powerful IDE written in java - Debian package. tag, debian/3.5.2-8ubuntu3, created. debian/3.5.2-7-10-g35824fe

2011-05-10 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The tag, debian/3.5.2-8ubuntu3 has been created
at  35824fef596e886692746fd47140fa448cf90ed1 (commit)

- Log -
commit 35824fef596e886692746fd47140fa448cf90ed1
Author: Benjamin Drung 
Date:   Wed May 11 01:27:26 2011 +0200

Imported Debian patch 3.5.2-8ubuntu3
---


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits


[SCM] eclipse - Powerful IDE written in java - Debian package. tag, debian/3.5.2-8ubuntu2, created. debian/3.5.2-7-9-g696a43c

2011-05-10 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The tag, debian/3.5.2-8ubuntu2 has been created
at  696a43cde289423edbf2b90505c207139df48aad (commit)

- Log -
commit 696a43cde289423edbf2b90505c207139df48aad
Author: Benjamin Drung 
Date:   Wed May 11 01:25:58 2011 +0200

Imported Debian patch 3.5.2-8ubuntu2
---


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits


[SCM] eclipse - Powerful IDE written in java - Debian package. tag, debian/3.5.2-10ubuntu1, created. debian/3.5.2-10-10-g0373f95

2011-05-10 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The tag, debian/3.5.2-10ubuntu1 has been created
at  0373f95faa64be5ef127087432945a893f9e1c76 (commit)

- Log -
commit 0373f95faa64be5ef127087432945a893f9e1c76
Author: Benjamin Drung 
Date:   Wed May 11 02:08:03 2011 +0200

Release 3.5.2-10ubuntu1 to Ubuntu oneiric.
---


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits


[SCM] eclipse - Powerful IDE written in java - Debian package. branch, oneiric, created. debian/3.5.2-10-10-g0373f95

2011-05-10 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, oneiric has been created
at  0373f95faa64be5ef127087432945a893f9e1c76 (commit)

- Log -
commit 0373f95faa64be5ef127087432945a893f9e1c76
Author: Benjamin Drung 
Date:   Wed May 11 02:08:03 2011 +0200

Release 3.5.2-10ubuntu1 to Ubuntu oneiric.

commit 6ef9a65c64ea439b870df8ccb9467da464aa9f33
Author: Benjamin Drung 
Date:   Wed May 11 02:07:36 2011 +0200

debian/gbp.conf: Update debian-branch.

commit 9b3a04f2f7587fe673b8fe8275527e72ee6f11ba
Author: Benjamin Drung 
Date:   Wed May 11 02:06:10 2011 +0200

Drop superseeded do-not-symlink-ant-trax.patch.

commit f9260a8354d142496f7348e9ccd17597320a85db
Merge: 35824fe 2f5f7b8
Author: Benjamin Drung 
Date:   Wed May 11 01:37:06 2011 +0200

Merge branch 'master' into oneiric

---


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits


[SCM] eclipse - Powerful IDE written in java - Debian package. branch, master-3.6, updated. eclipse-ppa/maverick-193-g8d24cb7

2011-03-31 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, master-3.6 has been updated
   via  8d24cb77f3cc24a0fce30a8a23dd46eb48207096 (commit)
  from  7a6726b069eb60ec7cea87e09fe200f513006ee7 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit 8d24cb77f3cc24a0fce30a8a23dd46eb48207096
Author: Benjamin Drung 
Date:   Thu Mar 31 14:38:29 2011 +0200

Refresh patches.

---

Summary of changes:
 debian/patches/clean-source.patch  |4 ++--
 debian/patches/compile-IPluginDescriptor.patch |2 +-
 debian/patches/eclipse-manpage.patch   |4 ++--
 ...nerate-metadata-and-extract-swt-libraries.patch |2 +-
 debian/patches/remove-unnecessary-files.patch  |2 +-
 debian/patches/strip-destDir.patch |2 +-
 6 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/debian/patches/clean-source.patch 
b/debian/patches/clean-source.patch
index d45955e..bc7ed0c 100644
--- a/debian/patches/clean-source.patch
+++ b/debian/patches/clean-source.patch
@@ -4,7 +4,7 @@ Bug: https://bugs.eclipse.org/bugs/show_bug.cgi?id=304112
 
 --- a/buildSDKSource.sh
 +++ b/buildSDKSource.sh
-@@ -159,21 +159,18 @@
+@@ -163,21 +163,18 @@
  rm -rf ecfBundles orbitRepo
  
  # Remove files from the version control system
@@ -28,7 +28,7 @@ Bug: https://bugs.eclipse.org/bugs/show_bug.cgi?id=304112
  # Remove fetch logs
  rm fetch_*
  
-@@ -184,6 +181,24 @@
+@@ -188,6 +185,24 @@
  # Remove temporary files
  find -name '*.orig' -delete
  
diff --git a/debian/patches/compile-IPluginDescriptor.patch 
b/debian/patches/compile-IPluginDescriptor.patch
index bc5dc71..9c88c66 100644
--- a/debian/patches/compile-IPluginDescriptor.patch
+++ b/debian/patches/compile-IPluginDescriptor.patch
@@ -4,7 +4,7 @@ Bug: https://bugs.eclipse.org/bugs/show_bug.cgi?id=319478
 
 --- a/build.xml
 +++ b/build.xml
-@@ -371,7 +371,38 @@
+@@ -372,7 +372,38 @@


  
diff --git a/debian/patches/eclipse-manpage.patch 
b/debian/patches/eclipse-manpage.patch
index 0e5db13..c6f8b53 100644
--- a/debian/patches/eclipse-manpage.patch
+++ b/debian/patches/eclipse-manpage.patch
@@ -624,10 +624,10 @@ Bug-Ubuntu: https://launchpad.net/bugs/494065
 +
 --- a/build.xml
 +++ b/build.xml
-@@ -951,6 +951,12 @@
+@@ -952,6 +952,12 @@


-   
+   
 +  
 +  
 +  
diff --git a/debian/patches/generate-metadata-and-extract-swt-libraries.patch 
b/debian/patches/generate-metadata-and-extract-swt-libraries.patch
index 6c84b39..b9bdb65 100644
--- a/debian/patches/generate-metadata-and-extract-swt-libraries.patch
+++ b/debian/patches/generate-metadata-and-extract-swt-libraries.patch
@@ -4,7 +4,7 @@ From: Benjamin Drung 
 
 --- a/build.xml
 +++ b/build.xml
-@@ -1002,6 +1002,55 @@
+@@ -1003,6 +1003,55 @@
  

  
diff --git a/debian/patches/remove-unnecessary-files.patch 
b/debian/patches/remove-unnecessary-files.patch
index f1ca1b8..8b49ac1 100644
--- a/debian/patches/remove-unnecessary-files.patch
+++ b/debian/patches/remove-unnecessary-files.patch
@@ -3,7 +3,7 @@ From: Benjamin Drung 
 
 --- a/build.xml
 +++ b/build.xml
-@@ -1137,6 +1137,10 @@
+@@ -1138,6 +1138,10 @@



diff --git a/debian/patches/strip-destDir.patch 
b/debian/patches/strip-destDir.patch
index e0394a6..0047122 100644
--- a/debian/patches/strip-destDir.patch
+++ b/debian/patches/strip-destDir.patch
@@ -4,7 +4,7 @@ Bug: https://bugs.eclipse.org/bugs/show_bug.cgi?id=319473
 
 --- a/build.xml
 +++ b/build.xml
-@@ -1141,6 +1141,21 @@
+@@ -1142,6 +1142,21 @@





hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits


[SCM] eclipse - Powerful IDE written in java - Debian package. branch, master-3.6, updated. eclipse-ppa/maverick-188-gc811940

2011-03-26 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, master-3.6 has been updated
   via  c8119405f5861d89069738c590a94f2dddbf2e11 (commit)
  from  65aca3d333d2d581c17c4d207d5b18a0a83ab190 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit c8119405f5861d89069738c590a94f2dddbf2e11
Author: Benjamin Drung 
Date:   Sat Mar 26 22:34:29 2011 +0100

Update my email address.

---

Summary of changes:
 debian/control |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/debian/control b/debian/control
index 5ffbffe..25d3400 100644
--- a/debian/control
+++ b/debian/control
@@ -3,7 +3,7 @@ Section: devel
 Priority: optional
 Maintainer: Debian Orbital Alignment Team 

 Uploaders: Niels Thykier ,
-   Benjamin Drung ,
+   Benjamin Drung ,
Adnan Hodzic 
 Build-Depends: ant (>= 1.7.1),
ant-optional,


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits


[SCM] eclipse - Powerful IDE written in java - Debian package. branch, master, updated. debian/3.5.2-9-3-g4a97a8c

2011-03-26 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, master has been updated
   via  4a97a8cc673bec70f2a87aca19063f197e8852f7 (commit)
  from  bc8428bc760c061fdc137e0e23fee69a4d33f5ec (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit 4a97a8cc673bec70f2a87aca19063f197e8852f7
Author: Benjamin Drung 
Date:   Sat Mar 26 22:34:29 2011 +0100

Update my email address.

---

Summary of changes:
 debian/control |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/debian/control b/debian/control
index aeaa483..0eccbe7 100644
--- a/debian/control
+++ b/debian/control
@@ -3,7 +3,7 @@ Section: devel
 Priority: optional
 Maintainer: Debian Orbital Alignment Team 

 Uploaders: Niels Thykier ,
-   Benjamin Drung ,
+   Benjamin Drung ,
Adnan Hodzic 
 Build-Depends: ant (>= 1.7.1),
ant-optional,


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits


[SCM] eclipse-cdt - Plug-in for eclipse to handle C/C++ - Debian package. branch, master, updated. 91f8dbff9b2f598446d71dd3d05d426a5c900264

2011-03-26 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse-cdt - Plug-in for eclipse to handle C/C++ - Debian 
package.".

The branch, master has been updated
   via  91f8dbff9b2f598446d71dd3d05d426a5c900264 (commit)
  from  992701b6d99ce058158669659b717e701a9a1bcd (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit 91f8dbff9b2f598446d71dd3d05d426a5c900264
Author: Benjamin Drung 
Date:   Sat Mar 26 22:33:57 2011 +0100

Update my email address.

---

Summary of changes:
 debian/control |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/debian/control b/debian/control
index d0d8813..de3cbe1 100644
--- a/debian/control
+++ b/debian/control
@@ -3,7 +3,7 @@ Section: java
 Priority: optional
 Maintainer: Debian Java Maintainers 

 Uploaders: Niels Thykier ,
-   Benjamin Drung 
+   Benjamin Drung 
 Build-Depends: debhelper (>= 7.0.50~),
default-jdk,
eclipse-pde (>= 3.5.2),


hooks/post-receive
-- 
eclipse-cdt - Plug-in for eclipse to handle C/C++ - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits


[SCM] eclipse-emf - Plug-in for eclipse - Debian package. branch, master, updated. debian/2.5.0-1-1-gdf87378

2011-03-26 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse-emf - Plug-in for eclipse - Debian package.".

The branch, master has been updated
   via  df87378b440bc90dde48eff2e110ffe59205a074 (commit)
  from  f14462b90ce94b1ef539646e2b6f26292783b8bd (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit df87378b440bc90dde48eff2e110ffe59205a074
Author: Benjamin Drung 
Date:   Sat Mar 26 22:33:06 2011 +0100

Update my email address.

---

Summary of changes:
 debian/control |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/debian/control b/debian/control
index 28346c7..77a1a7b 100644
--- a/debian/control
+++ b/debian/control
@@ -3,7 +3,7 @@ Section: java
 Priority: optional
 Maintainer: Debian Java Maintainers 

 Uploaders: Niels Thykier ,
-   Benjamin Drung 
+   Benjamin Drung 
 Build-Depends: debhelper (>= 7),
default-jdk,
eclipse-pde (>= 3.5.2),


hooks/post-receive
-- 
eclipse-emf - Plug-in for eclipse - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits


[SCM] eclipse-rse - Plug-in for eclipse - Debian package. branch, master, updated. debian/3.1.2-1-1-gba55af2

2011-03-26 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse-rse - Plug-in for eclipse - Debian package.".

The branch, master has been updated
   via  ba55af26d9d2b3aeafc37d00a530fb4f298bd696 (commit)
  from  234046dfc40598260d865c02f987d601d4c284d4 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit ba55af26d9d2b3aeafc37d00a530fb4f298bd696
Author: Benjamin Drung 
Date:   Sat Mar 26 22:32:35 2011 +0100

Update my email address.

---

Summary of changes:
 debian/control |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/debian/control b/debian/control
index b42afe7..4dedaa0 100644
--- a/debian/control
+++ b/debian/control
@@ -3,7 +3,7 @@ Section: java
 Priority: optional
 Maintainer: Debian Orbital Alignment Team 

 Uploaders: Niels Thykier ,
-   Benjamin Drung 
+   Benjamin Drung 
 Build-Depends: debhelper (>= 7),
default-jdk,
javahelper (>= 0.31~),


hooks/post-receive
-- 
eclipse-rse - Plug-in for eclipse - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits


[SCM] eclipse - Powerful IDE written in java - Debian package. branch, master, updated. debian/3.5.2-9-2-gbc8428b

2011-03-26 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, master has been updated
   via  bc8428bc760c061fdc137e0e23fee69a4d33f5ec (commit)
  from  f36cb7171b55f437e011dad57e702adaad964958 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit bc8428bc760c061fdc137e0e23fee69a4d33f5ec
Author: Benjamin Drung 
Date:   Sat Mar 26 19:29:23 2011 +0100

Update debian/changelog.

---

Summary of changes:
 debian/changelog |8 
 1 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 4dfbbc5..96951ef 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+eclipse (3.5.2-10) UNRELEASED; urgency=low
+
+  * debian/extra/eclipse: Actually, don't export UBUNTU_MENUPROXY=0 here
+because that affects launched applications too.  Instead, it is
+blacklisted by appmenu-gtk (Closes: #616003).
+
+ -- Benjamin Drung   Sat, 26 Mar 2011 19:28:21 +0100
+
 eclipse (3.5.2-9) unstable; urgency=low
 
   * Bump version for sat4j. (Closes: #612738)


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits


[SCM] eclipse - Powerful IDE written in java - Debian package. branch, master, updated. debian/3.5.2-9-1-gf36cb71

2011-03-26 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, master has been updated
   via  f36cb7171b55f437e011dad57e702adaad964958 (commit)
  from  60b33511401c27bf51bd504e47a0a587fe6f9321 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit f36cb7171b55f437e011dad57e702adaad964958
Author: Benjamin Drung 
Date:   Sat Mar 26 19:27:55 2011 +0100

debian/extra/eclipse: Actually, don't export UBUNTU_MENUPROXY=0 here 
because that affects launched applications too.  Instead, it is blacklisted by 
appmenu-gtk.

---

Summary of changes:
 debian/extra/eclipse |3 ---
 1 files changed, 0 insertions(+), 3 deletions(-)

diff --git a/debian/extra/eclipse b/debian/extra/eclipse
index ea4fe29..9b20395 100644
--- a/debian/extra/eclipse
+++ b/debian/extra/eclipse
@@ -5,9 +5,6 @@
 # https://bugs.launchpad.net/bugs/458703
 export GDK_NATIVE_WINDOWS=true
 
-# Eclipse doesn't work with Ubuntu appmenu
-export UBUNTU_MENUPROXY=0
-
 export MOZILLA_FIVE_HOME="@XULRUNNER_PATH@"
 
 ECLIPSE=/usr/lib/eclipse/eclipse


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits


[SCM] eclipse - Powerful IDE written in java - Debian package. branch, upstream-3.6, updated. 68f899e621857ab6f44c7926b80c1da742bf7adf

2011-02-01 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, upstream-3.6 has been updated
   via  68f899e621857ab6f44c7926b80c1da742bf7adf (commit)
  from  c4581570d622c04e03188f20aeb9f2149dff5724 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
---

Summary of changes:
 ChangeLog|   25 +++
 build.xml|   37 -
 patches/bz319476-compile-jar-in-jar-loader.patch |  197 ++
 patches/eclipse-help-webapps-xss-BZ329582.patch  |   25 +++
 runtests.sh  |   11 +-
 5 files changed, 286 insertions(+), 9 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 109c27a..dfc577b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,28 @@
+2011-01-19  Andrew Overholt  
+
+   * build.xml: Aggregate test results with proper JUNIT.XSL.
+
+2011-01-18  Andrew Overholt  
+
+   Bug #334716
+
+   * build.xml: Provision SDK and test framework for use by tests.
+   * runtests.sh: Use SDK and test framework provisioned by build.xml.
+
+2011-01-11  Andrew Overholt  
+
+   Bug #319476
+
+   * patches/bz319476-compile-jar-in-jar-loader.patch: Backport patch to
+   build jar-in-jar-loader in JDT UI (bz324794).
+   * build.xml: Add patch to build jar-in-jar-loader.
+
+2010-12-10  Severin Gehwolf 
+
+   * patches/eclipse-help-webapps-xss-BZ329582.patch: Backport patch for 
XSS vulnerability
+ of org.eclipse.help.webapp.
+   * build.xml: Add backport patch to applyPatches target.
+
 2010-10-26  Severin Gehwolf 
 
* patches/eclipse-pde.build-add-package-build.patch: Fix the
diff --git a/build.xml b/build.xml
index f88d145..a622819 100644
--- a/build.xml
+++ b/build.xml
@@ -60,6 +60,7 @@



+   
 

@@ -312,6 +313,8 @@



+   
+   



@@ -784,6 +787,36 @@


 
+   
+   
+   
+   
+   
+   
+
+   
+   
+   
+   
+
+   
+   
+
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   



@@ -801,7 +834,7 @@



-   
+   



@@ -826,7 +859,7 @@



-   
+   

 

diff --git a/patches/bz319476-compile-jar-in-jar-loader.patch 
b/patches/bz319476-compile-jar-in-jar-loader.patch
new file mode 100644
index 000..25fccef
--- /dev/null
+++ b/patches/bz319476-compile-jar-in-jar-loader.patch
@@ -0,0 +1,197 @@
+### Eclipse Workspace Patch 1.0
+#P org.eclipse.jdt.ui
+Index: build.properties
+===
+RCS file: /cvsroot/eclipse/org.eclipse.jdt.ui/build.properties,v
+retrieving revision 1.39
+diff -u -r1.39 build.properties
+--- build.properties   14 Jan 2010 16:57:59 -  1.39
 build.properties   20 Oct 2010 19:00:04 -
+@@ -31,3 +31,4 @@
+core extension/,\
+internal compatibility/
+ jars.compile.order = .
++customBuildCallbacks = customBuildCallbacks.xml
+Index: customBuildCallbacks.xml
+===
+RCS file: customBuildCallbacks.xml
+diff -N customBuildCallbacks.xml
+--- /dev/null  1 Jan 1970 00:00:00 -
 customBuildCallbacks.xml   1 Jan 1970 00:00:00 -
+@@ -0,0 +1,176 @@
++
++
++
++
++
++
++  
++  
++  
++  
++  
++  
++  
++  
++
++  
++  
++  
++  
++  
++  
++  
++
++  
++  
++  
++  
++  
++  
++  
++
++  
++  
++  
++  
++  
++  
++  
++
++  
++  
++  
++  
++  
++  
++  
++
++  
++  
++  
++  
++  
++  
++  
++  
++  
++  
++  
++
++  
++  
++
++  
++  
++   

[SCM] eclipse - Powerful IDE written in java - Debian package. branch, master-3.6, updated. eclipse-ppa/maverick-187-g65aca3d

2011-02-01 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, master-3.6 has been updated
   via  65aca3d333d2d581c17c4d207d5b18a0a83ab190 (commit)
   via  8a90f6f63427ad22deee2c59711513d728de82e4 (commit)
   via  ff028ae3cb9c3066288605b13c0bf61754aa5a5c (commit)
   via  68f899e621857ab6f44c7926b80c1da742bf7adf (commit)
  from  356d32c3a7f6fbe4f219f39826cb5e6f8fc1fef7 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit 65aca3d333d2d581c17c4d207d5b18a0a83ab190
Author: Benjamin Drung 
Date:   Tue Feb 1 14:13:12 2011 +0100

Refresh patches.

commit 8a90f6f63427ad22deee2c59711513d728de82e4
Author: Benjamin Drung 
Date:   Tue Feb 1 14:06:12 2011 +0100

Drop compile-jarinjarloader.patch (applied upstream).

commit ff028ae3cb9c3066288605b13c0bf61754aa5a5c
Merge: 356d32c 68f899e
Author: Benjamin Drung 
Date:   Tue Feb 1 14:03:18 2011 +0100

Merge branch 'upstream-3.6' into master-3.6

---

Summary of changes:
 ChangeLog  |   25 +++
 build.xml  |   37 -
 debian/patches/compile-IPluginDescriptor.patch |   21 ++-
 debian/patches/compile-jarinjarloader.patch|   40 
 debian/patches/eclipse-manpage.patch   |2 +-
 ...nerate-metadata-and-extract-swt-libraries.patch |2 +-
 debian/patches/remove-unnecessary-files.patch  |2 +-
 debian/patches/series  |1 -
 debian/patches/strip-destDir.patch |2 +-
 patches/bz319476-compile-jar-in-jar-loader.patch   |  197 
 patches/eclipse-help-webapps-xss-BZ329582.patch|   25 +++
 runtests.sh|   11 +-
 12 files changed, 304 insertions(+), 61 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 109c27a..dfc577b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,28 @@
+2011-01-19  Andrew Overholt  
+
+   * build.xml: Aggregate test results with proper JUNIT.XSL.
+
+2011-01-18  Andrew Overholt  
+
+   Bug #334716
+
+   * build.xml: Provision SDK and test framework for use by tests.
+   * runtests.sh: Use SDK and test framework provisioned by build.xml.
+
+2011-01-11  Andrew Overholt  
+
+   Bug #319476
+
+   * patches/bz319476-compile-jar-in-jar-loader.patch: Backport patch to
+   build jar-in-jar-loader in JDT UI (bz324794).
+   * build.xml: Add patch to build jar-in-jar-loader.
+
+2010-12-10  Severin Gehwolf 
+
+   * patches/eclipse-help-webapps-xss-BZ329582.patch: Backport patch for 
XSS vulnerability
+ of org.eclipse.help.webapp.
+   * build.xml: Add backport patch to applyPatches target.
+
 2010-10-26  Severin Gehwolf 
 
* patches/eclipse-pde.build-add-package-build.patch: Fix the
diff --git a/build.xml b/build.xml
index f88d145..a622819 100644
--- a/build.xml
+++ b/build.xml
@@ -60,6 +60,7 @@



+   
 

@@ -312,6 +313,8 @@



+   
+   



@@ -784,6 +787,36 @@


 
+   
+   
+   
+   
+   
+   
+
+   
+   
+   
+   
+
+   
+   
+
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   



@@ -801,7 +834,7 @@



-   
+   



@@ -826,7 +859,7 @@



-   
+   

 

diff --git a/debian/patches/compile-IPluginDescriptor.patch 
b/debian/patches/compile-IPluginDescriptor.patch
index bf2995f..bc5dc71 100644
--- a/debian/patches/compile-IPluginDescriptor.patch
+++ b/debian/patches/compile-IPluginDescriptor.patch
@@ -4,10 +4,12 @@ Bug: https://bugs.eclipse.org/bugs/show_bug.cgi?id=319478
 
 --- a/build.xml
 +++ b/build.xml
-@@ -382,6 +382,32 @@
-   
-  

[SCM] eclipse - Powerful IDE written in java - Debian package. branch, master-3.6, updated. eclipse-ppa/maverick-183-g356d32c

2011-01-25 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, master-3.6 has been updated
   via  356d32c3a7f6fbe4f219f39826cb5e6f8fc1fef7 (commit)
  from  efc6fcd41f3869d993ddb4fbab4665bd23eeea24 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit 356d32c3a7f6fbe4f219f39826cb5e6f8fc1fef7
Author: Benjamin Drung 
Date:   Tue Jan 25 22:51:54 2011 +0100

wrap-and-sort

Git-Dch: Ignore

---

Summary of changes:
 debian/control |3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/debian/control b/debian/control
index 000c4b1..5ffbffe 100644
--- a/debian/control
+++ b/debian/control
@@ -244,8 +244,7 @@ Section: java
 Depends: ${misc:Depends}
 Recommends: libservlet2.5-java
 Breaks: eclipse-rcp (<< 3.5.1-0ubuntu3)
-Replaces: eclipse-platform-gcj,
-  eclipse-rcp-gcj
+Replaces: eclipse-platform-gcj, eclipse-rcp-gcj
 Description: Equinox OSGi framework
  The Eclipse Platform is an open and extensible platform for anything and yet
  nothing in particular. It provides a foundation for constructing and running


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits


[SCM] eclipse - Powerful IDE written in java - Debian package. branch, master, updated. debian/3.5.2-7-7-g90641b2

2010-12-12 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, master has been updated
   via  90641b241ec3d8dfbe1a6bd5eebbdaa3eee49598 (commit)
   via  aee5a1205e07a6e1b4b798dd023f5649f704facc (commit)
  from  0011845766a4a1ca8f7e8f2013b8e0b006f84e4f (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit 90641b241ec3d8dfbe1a6bd5eebbdaa3eee49598
Author: Benjamin Drung 
Date:   Fri Nov 19 17:11:56 2010 +0100

Ignore .pc directory.

commit aee5a1205e07a6e1b4b798dd023f5649f704facc
Author: Benjamin Drung 
Date:   Tue Oct 19 13:32:45 2010 +0200

Add local-options to set unapply-patches by default.

---

Summary of changes:
 .gitignore  |1 +
 debian/source/local-options |1 +
 2 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000..845ca06
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+.pc
diff --git a/debian/source/local-options b/debian/source/local-options
new file mode 100644
index 000..4aceb10
--- /dev/null
+++ b/debian/source/local-options
@@ -0,0 +1 @@
+unapply-patches


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits


[SCM] eclipse - Powerful IDE written in java - Debian package. branch, upstream-3.6, updated. c4581570d622c04e03188f20aeb9f2149dff5724

2010-11-19 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, upstream-3.6 has been updated
   via  c4581570d622c04e03188f20aeb9f2149dff5724 (commit)
  from  c87c8524df271c61bd838a7b96c506efebfd8389 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
---

Summary of changes:
 ChangeLog |6 ++
 patches/eclipse-pde.build-add-package-build.patch |4 ++--
 2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index c72cfdb..109c27a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2010-10-26  Severin Gehwolf 
+
+   * patches/eclipse-pde.build-add-package-build.patch: Fix the
+ patch. Earlier version produced syntax errors such as:
+ 'prepare-build-dir.sh: line 60: [: argument expected'
+
 2010-10-02  Alexander Kurtakov  
 
* build.properties: Update for 3.6.1.
diff --git a/patches/eclipse-pde.build-add-package-build.patch 
b/patches/eclipse-pde.build-add-package-build.patch
index a7039c5..b374ccc 100644
--- a/patches/eclipse-pde.build-add-package-build.patch
+++ b/patches/eclipse-pde.build-add-package-build.patch
@@ -62,7 +62,7 @@
 +fi
 +
 +if [ "x$ERROR" != "xyes" ]; then
-+  if [ $TESTING != true -o `echo $PROJECTNAME | grep "org.eclipse"` ]; 
then
++  if [ $TESTING != true ] || `echo "$PROJECTNAME" | grep "org.eclipse"`; 
then
 +echo "  making symlink: $BUILDDIR/features/$PROJECTNAME -> 
$PROJECTDIR"
 +ln -sfT "$PROJECTDIR" $BUILDDIR/features/"$PROJECTNAME"
 +  fi
@@ -96,7 +96,7 @@
 +fi
 +
 +if [ "x$ERROR" != "xyes" ]; then
-+  if [ $TESTING != true -o `echo $PROJECTNAME | grep "org.eclipse"` ]; 
then
++  if [ $TESTING != true ] || `echo "$PROJECTNAME" | grep "org.eclipse"`; 
then
 +echo "  making symlink: $BUILDDIR/plugins/$PROJECTNAME -> $dir"
 +ln -sfT "$dir" $BUILDDIR/plugins/"$PROJECTNAME"
 +  fi


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits


[SCM] eclipse - Powerful IDE written in java - Debian package. branch, master-3.6, updated. eclipse-ppa/maverick-182-gefc6fcd

2010-11-19 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, master-3.6 has been updated
   via  efc6fcd41f3869d993ddb4fbab4665bd23eeea24 (commit)
   via  f4480f058b86091f411f9d26c14f3b0d735ced88 (commit)
   via  c4581570d622c04e03188f20aeb9f2149dff5724 (commit)
  from  79b66fcf6c64b2876cdb5c815f73d6b845ff0b37 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit efc6fcd41f3869d993ddb4fbab4665bd23eeea24
Author: Benjamin Drung 
Date:   Fri Nov 19 17:11:56 2010 +0100

Ignore .pc directory.

commit f4480f058b86091f411f9d26c14f3b0d735ced88
Merge: 79b66fc c458157
Author: Benjamin Drung 
Date:   Fri Nov 19 17:10:43 2010 +0100

Merge branch 'upstream-3.6' into master-3.6

---

Summary of changes:
 .gitignore|1 +
 ChangeLog |6 ++
 patches/eclipse-pde.build-add-package-build.patch |4 ++--
 3 files changed, 9 insertions(+), 2 deletions(-)

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000..845ca06
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+.pc
diff --git a/ChangeLog b/ChangeLog
index c72cfdb..109c27a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2010-10-26  Severin Gehwolf 
+
+   * patches/eclipse-pde.build-add-package-build.patch: Fix the
+ patch. Earlier version produced syntax errors such as:
+ 'prepare-build-dir.sh: line 60: [: argument expected'
+
 2010-10-02  Alexander Kurtakov  
 
* build.properties: Update for 3.6.1.
diff --git a/patches/eclipse-pde.build-add-package-build.patch 
b/patches/eclipse-pde.build-add-package-build.patch
index a7039c5..b374ccc 100644
--- a/patches/eclipse-pde.build-add-package-build.patch
+++ b/patches/eclipse-pde.build-add-package-build.patch
@@ -62,7 +62,7 @@
 +fi
 +
 +if [ "x$ERROR" != "xyes" ]; then
-+  if [ $TESTING != true -o `echo $PROJECTNAME | grep "org.eclipse"` ]; 
then
++  if [ $TESTING != true ] || `echo "$PROJECTNAME" | grep "org.eclipse"`; 
then
 +echo "  making symlink: $BUILDDIR/features/$PROJECTNAME -> 
$PROJECTDIR"
 +ln -sfT "$PROJECTDIR" $BUILDDIR/features/"$PROJECTNAME"
 +  fi
@@ -96,7 +96,7 @@
 +fi
 +
 +if [ "x$ERROR" != "xyes" ]; then
-+  if [ $TESTING != true -o `echo $PROJECTNAME | grep "org.eclipse"` ]; 
then
++  if [ $TESTING != true ] || `echo "$PROJECTNAME" | grep "org.eclipse"`; 
then
 +echo "  making symlink: $BUILDDIR/plugins/$PROJECTNAME -> $dir"
 +ln -sfT "$dir" $BUILDDIR/plugins/"$PROJECTNAME"
 +  fi


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits


[SCM] eclipse - Powerful IDE written in java - Debian package. tag, debian/3.5.2-6ubuntu1.1, created. debian/3.5.2-6-5-g3117f4a

2010-10-19 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The tag, debian/3.5.2-6ubuntu1.1 has been created
at  3117f4ac09806cfecbb6646dd347b8e266687bd5 (commit)

- Log -
commit 3117f4ac09806cfecbb6646dd347b8e266687bd5
Author: Benjamin Drung 
Date:   Wed Oct 20 01:17:04 2010 +0200

Update Maintainer field.
---


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits


[SCM] eclipse - Powerful IDE written in java - Debian package. branch, maverick, updated. debian/3.5.2-6-5-g3117f4a

2010-10-19 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, maverick has been updated
   via  3117f4ac09806cfecbb6646dd347b8e266687bd5 (commit)
   via  80057d5fe42016a745494420a21fbec7d2440c49 (commit)
   via  e7c384be925c2e16437858f63047b55e9fa31d0f (commit)
   via  d204af835d431ddf9e14e69ed295e9fd77a4eec6 (commit)
  from  1c787f5a3c181fc5549308fff9d44d4cf2bbea19 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit 3117f4ac09806cfecbb6646dd347b8e266687bd5
Author: Benjamin Drung 
Date:   Wed Oct 20 01:17:04 2010 +0200

Update Maintainer field.

commit 80057d5fe42016a745494420a21fbec7d2440c49
Author: Benjamin Drung 
Date:   Wed Oct 20 01:16:22 2010 +0200

Added NEWS entry about how to workaround #587657.

commit e7c384be925c2e16437858f63047b55e9fa31d0f
Author: Benjamin Drung 
Date:   Wed Oct 20 01:11:46 2010 +0200

Backported fix for finding root CA in keystore rather than from JAR. (LP: 
#655833)

commit d204af835d431ddf9e14e69ed295e9fd77a4eec6
Author: Benjamin Drung 
Date:   Wed Oct 20 01:09:39 2010 +0200

Update git-buildpackage configuration.

---

Summary of changes:
 debian/NEWS|   15 
 debian/changelog   |   11 +++
 debian/control |3 +-
 debian/eclipse-platform.NEWS   |   39 ++
 debian/gbp.conf|4 +
 debian/patches/bp-osgi-ignore-root-CA.patch|   77 
 debian/patches/series  |1 +
 .../service/security/KeyStoreTrustEngine.java  |   37 ++
 8 files changed, 157 insertions(+), 30 deletions(-)

diff --git a/debian/NEWS b/debian/NEWS
deleted file mode 100644
index bc09e60..000
--- a/debian/NEWS
+++ /dev/null
@@ -1,15 +0,0 @@
-eclipse (3.5.2-1) unstable; urgency=low
-
-  In previous versions of eclipse (<< 3.5), it would extract shared
-  libraries to users ~/.eclipse. This has been fixed in the 3.5
-  series, but means that eclipse will have issues starting if you are
-  upgrading from an eclipse older than 3.5. Removing or renaming
-  ~/.eclipse fixes this at the cost of losing personal configuration.
-
-  In 3.5 all the "choose a suitable JVM" code has been removed and
-  instead eclipse now respect alternatives. Old configuration files
-  for this purpose (including the user file ~/.eclipse/eclipserc) is
-  now obsolete and will be silently ignored.
-
- -- Debian Orbital Alignment Team 
  Thu, 18 Mar 2010 12:13:51 +0100
-
diff --git a/debian/changelog b/debian/changelog
index 2421ea8..c0bc163 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,14 @@
+eclipse (3.5.2-6ubuntu1.1) maverick-proposed; urgency=low
+
+  [ Thomas Watson ]
+  * Backported fix for finding root CA in keystore rather than from JAR.
+(LP: #655833)
+
+  [ Benjamin Drung ]
+  * Added NEWS entry about how to workaround #587657.
+
+ -- Benjamin Drung   Wed, 20 Oct 2010 01:15:47 +0200
+
 eclipse (3.5.2-6ubuntu1) maverick; urgency=low
 
   * debian/extra/eclipse:
diff --git a/debian/control b/debian/control
index 0464305..e31a1c6 100644
--- a/debian/control
+++ b/debian/control
@@ -1,7 +1,8 @@
 Source: eclipse
 Section: devel
 Priority: optional
-Maintainer: Debian Orbital Alignment Team 

+Maintainer: Ubuntu Developers 
+XSBC-Original-Maintainer: Debian Orbital Alignment Team 

 Uploaders: Niels Thykier ,
Benjamin Drung ,
Adrian Perez ,
diff --git a/debian/eclipse-platform.NEWS b/debian/eclipse-platform.NEWS
new file mode 100644
index 000..22d3289
--- /dev/null
+++ b/debian/eclipse-platform.NEWS
@@ -0,0 +1,39 @@
+eclipse-platform (3.5.2-6) unstable; urgency=low
+
+  The upgrade of eclipse may cause plugins to silently disappear.
+  The exact reason has yet to be determined and we are looking for
+  an automatic solution for this problem.
+  
+  There are two known workarounds; one is two completely remove
+  ~/.eclipse and re-install all user plugins. The other is to
+  manually merge "bundles.info" from ~/.eclipse with the
+  "bundles.info" from /usr/lib/eclipse. This solution is slightly
+  more complicated, but appears to restore user installed plugins
+  without having to reinstall them.
+  
+  For more information on how to merge the bundles.info files,
+  you may want to have a look at #587657[1].
+  
+  Note: this issue may also affect plugins installed via packages
+  from repositories (such as the packages eclipse-emf and
+  e

[SCM] eclipse - Powerful IDE written in java - Debian package. tag, debian/3.5.2-2ubuntu4.3, created. 6825b436e148d1071f0b779f086d41109e95b499

2010-10-19 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The tag, debian/3.5.2-2ubuntu4.3 has been created
at  6825b436e148d1071f0b779f086d41109e95b499 (commit)

- Log -
commit 6825b436e148d1071f0b779f086d41109e95b499
Author: Benjamin Drung 
Date:   Wed Oct 20 01:03:32 2010 +0200

Backported fix for finding root CA in keystore rather than from JAR. (LP: 
#655833)
---


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits


[SCM] eclipse - Powerful IDE written in java - Debian package. branch, lucid, updated. 6825b436e148d1071f0b779f086d41109e95b499

2010-10-19 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, lucid has been updated
   via  6825b436e148d1071f0b779f086d41109e95b499 (commit)
   via  04836a0e0ddc4842d17e9d2efcb3c667f37229fd (commit)
  from  c83804cd06d9cdf403b487821b0c141cb2a76459 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit 6825b436e148d1071f0b779f086d41109e95b499
Author: Benjamin Drung 
Date:   Wed Oct 20 01:03:32 2010 +0200

Backported fix for finding root CA in keystore rather than from JAR. (LP: 
#655833)

commit 04836a0e0ddc4842d17e9d2efcb3c667f37229fd
Author: Benjamin Drung 
Date:   Wed Oct 20 01:03:18 2010 +0200

Add git-buildpackage configuration.

---

Summary of changes:
 debian/changelog   |7 ++
 debian/gbp.conf|6 ++
 debian/patches/bp-osgi-ignore-root-CA.patch|   77 
 debian/patches/series  |1 +
 .../service/security/KeyStoreTrustEngine.java  |   37 ++
 5 files changed, 114 insertions(+), 14 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index dcc123c..9a212f8 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+eclipse (3.5.2-2ubuntu4.3) lucid-proposed; urgency=low
+
+  * Backported fix for finding root CA in keystore rather than from JAR.
+(LP: #655833)
+
+ -- Thomas Watson   Wed, 20 Oct 2010 00:58:03 +0200
+
 eclipse (3.5.2-2ubuntu4.2) lucid-proposed; urgency=low
 
   * Backported fix for poor tooltip colors with certain themes. (LP: #540332)
diff --git a/debian/gbp.conf b/debian/gbp.conf
new file mode 100644
index 000..50c0367
--- /dev/null
+++ b/debian/gbp.conf
@@ -0,0 +1,6 @@
+[DEFAULT]
+compression = bzip2
+debian-branch = lucid
+
+[git-dch]
+meta = True
diff --git a/debian/patches/bp-osgi-ignore-root-CA.patch 
b/debian/patches/bp-osgi-ignore-root-CA.patch
new file mode 100644
index 000..ec0d4e0
--- /dev/null
+++ b/debian/patches/bp-osgi-ignore-root-CA.patch
@@ -0,0 +1,77 @@
+Description: If the root CA in a signed jar is invalid, check the cacerts
+ for an alternative/newer root CA.
+ .
+ This fixes the issue where signed jars has root CAs using MD2withRSA or
+ other weak signatures that are now automatically rejected by e.g. OpenJDK.
+Author: Thomas Watson 
+Bug-Ubuntu: https://launchpad.net/bugs/655833
+Bug: https://bugs.eclipse.org/bugs/show_bug.cgi?id=309059
+Applied-Upstream: yes
+
+--- 
a/eclipse/plugins/org.eclipse.osgi/security/src/org/eclipse/osgi/internal/service/security/KeyStoreTrustEngine.java
 
b/eclipse/plugins/org.eclipse.osgi/security/src/org/eclipse/osgi/internal/service/security/KeyStoreTrustEngine.java
+@@ -101,27 +101,19 @@
+ 
+   try {
+   Certificate rootCert = null;
+-
+   KeyStore store = getKeyStore();
+   for (int i = 0; i < certChain.length; i++) {
+   if (certChain[i] instanceof X509Certificate) {
+-  if (i == certChain.length - 1) { //this 
is the last certificate in the chain
++  if (i == certChain.length - 1) {
++  // this is the last certificate 
in the chain
++  // determine if we have a valid 
root
+   X509Certificate cert = 
(X509Certificate) certChain[i];
+   if 
(cert.getSubjectDN().equals(cert.getIssuerDN())) {
+-  
certChain[i].verify(certChain[i].getPublicKey());
+-  rootCert = 
certChain[i]; // this is a self-signed certificate
++  
cert.verify(cert.getPublicKey());
++  rootCert = cert; // 
this is a self-signed certificate
+   } else {
+   // try to find a 
parent, we have an incomplete chain
+-  synchronized (store) {
+-  for 
(Enumeration e = store.aliases(); e.hasMoreElements();) {
+-  
Certificate nextCert = store.getCertificate((String) 

[SCM] eclipse - Powerful IDE written in java - Debian package. branch, master-3.6, updated. eclipse-ppa/maverick-179-g79b66fc

2010-10-19 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, master-3.6 has been updated
   via  79b66fcf6c64b2876cdb5c815f73d6b845ff0b37 (commit)
   via  4b5c9cbf6e334773a6031e441e1772593f12ed53 (commit)
  from  5c7b26e0ecf68b3bc6f1f64a4c64bac6701fc9f9 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit 79b66fcf6c64b2876cdb5c815f73d6b845ff0b37
Author: Benjamin Drung 
Date:   Tue Oct 19 13:32:45 2010 +0200

Add local-options to set unapply-patches by default.

commit 4b5c9cbf6e334773a6031e441e1772593f12ed53
Author: Benjamin Drung 
Date:   Tue Oct 19 13:29:59 2010 +0200

Enable meta in git-buildpackage configuration.

---

Summary of changes:
 debian/gbp.conf |9 ++---
 debian/source/local-options |1 +
 2 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/debian/gbp.conf b/debian/gbp.conf
index a966fba..a2aa4fb 100644
--- a/debian/gbp.conf
+++ b/debian/gbp.conf
@@ -1,4 +1,7 @@
 [DEFAULT]
-compression=bzip2
-upstream-branch=upstream-3.6
-debian-branch=master-3.6
+compression = bzip2
+upstream-branch = upstream-3.6
+debian-branch = master-3.6
+
+[git-dch]
+meta = True
diff --git a/debian/source/local-options b/debian/source/local-options
new file mode 100644
index 000..4aceb10
--- /dev/null
+++ b/debian/source/local-options
@@ -0,0 +1 @@
+unapply-patches


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits


[SCM] eclipse - Powerful IDE written in java - Debian package. branch, ubuntu, deleted. 5ddb9f97f7e05e8eb48d70f2d653bb854cd31d2c

2010-10-19 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, ubuntu has been deleted
   was  5ddb9f97f7e05e8eb48d70f2d653bb854cd31d2c

---
5ddb9f97f7e05e8eb48d70f2d653bb854cd31d2c Release 3.5.1+repack~3-0ubuntu2 to 
Ubuntu lucid.
---


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits


[SCM] eclipse - Powerful IDE written in java - Debian package. tag, debian/3.5.2-8ubuntu1, created. debian/3.5.2-7-6-gd4c3308

2010-10-19 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The tag, debian/3.5.2-8ubuntu1 has been created
at  d4c3308f7d790bc863299b2014ae38923af449a9 (commit)

- Log -
commit d4c3308f7d790bc863299b2014ae38923af449a9
Author: Benjamin Drung 
Date:   Tue Oct 19 13:14:18 2010 +0200

Update branch in debian/gbp.conf.
---


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits


[SCM] eclipse - Powerful IDE written in java - Debian package. tag, debian/3.5.2-8, created. debian/3.5.2-7-4-g361d965

2010-10-19 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The tag, debian/3.5.2-8 has been created
at  361d965618e17f09b91c1caa0ca25e4d8fa14a8d (commit)

- Log -
commit 361d965618e17f09b91c1caa0ca25e4d8fa14a8d
Author: Benjamin Drung 
Date:   Tue Oct 19 11:56:06 2010 +0200

Release 3.5.2-8 to Debian unstable.
---


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits


[SCM] eclipse - Powerful IDE written in java - Debian package. branch, natty, created. debian/3.5.2-7-6-gd4c3308

2010-10-19 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, natty has been created
at  d4c3308f7d790bc863299b2014ae38923af449a9 (commit)

- Log -
commit d4c3308f7d790bc863299b2014ae38923af449a9
Author: Benjamin Drung 
Date:   Tue Oct 19 13:14:18 2010 +0200

Update branch in debian/gbp.conf.

commit 9f17859ee252c4382bba3a4cc81a833223d0c171
Author: Benjamin Drung 
Date:   Tue Oct 19 12:18:47 2010 +0200

Do not symlink ant-trax.jar, because ant 1.8.1-1 does not ship it any more.

---


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits


[SCM] eclipse - Powerful IDE written in java - Debian package. branch, master, updated. debian/3.5.2-7-4-g361d965

2010-10-19 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, master has been updated
   via  361d965618e17f09b91c1caa0ca25e4d8fa14a8d (commit)
  from  2801cfa0a3a654bb8d0a0832725c4debcccb29e7 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit 361d965618e17f09b91c1caa0ca25e4d8fa14a8d
Author: Benjamin Drung 
Date:   Tue Oct 19 11:56:06 2010 +0200

Release 3.5.2-8 to Debian unstable.

---

Summary of changes:
 debian/changelog |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index a921738..645b55f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-eclipse (3.5.2-8) UNRELEASED; urgency=low
+eclipse (3.5.2-8) unstable; urgency=low
 
   [ Niels Thykier ]
   * Imported debdiffs from TJ and Didier Roche (see below).
@@ -11,7 +11,7 @@ eclipse (3.5.2-8) UNRELEASED; urgency=low
   * debian/extra/eclipse:
 - no appmenu for eclipse (thanks bratsche) (LP: #613119)
 
- -- Niels Thykier   Fri, 15 Oct 2010 08:16:30 +0200
+ -- Benjamin Drung   Tue, 19 Oct 2010 11:55:12 +0200
 
 eclipse (3.5.2-7) unstable; urgency=low
 


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits


[SCM] eclipse - Powerful IDE written in java - Debian package. branch, master, updated. debian/3.5.2-7-3-g2801cfa

2010-10-18 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, master has been updated
   via  2801cfa0a3a654bb8d0a0832725c4debcccb29e7 (commit)
  from  437318ee817d3bfc26b8b7469f78f77e45a11b7e (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit 2801cfa0a3a654bb8d0a0832725c4debcccb29e7
Author: Benjamin Drung 
Date:   Tue Oct 19 00:22:26 2010 +0200

Shorten bug link.

---

Summary of changes:
 debian/patches/bp-osgi-ignore-root-CA.patch |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/debian/patches/bp-osgi-ignore-root-CA.patch 
b/debian/patches/bp-osgi-ignore-root-CA.patch
index 8498e99..ec0d4e0 100644
--- a/debian/patches/bp-osgi-ignore-root-CA.patch
+++ b/debian/patches/bp-osgi-ignore-root-CA.patch
@@ -4,7 +4,7 @@ Description: If the root CA in a signed jar is invalid, check 
the cacerts
  This fixes the issue where signed jars has root CAs using MD2withRSA or
  other weak signatures that are now automatically rejected by e.g. OpenJDK.
 Author: Thomas Watson 
-Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/eclipse/+bug/655833
+Bug-Ubuntu: https://launchpad.net/bugs/655833
 Bug: https://bugs.eclipse.org/bugs/show_bug.cgi?id=309059
 Applied-Upstream: yes
 


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits


[SCM] eclipse - Powerful IDE written in java - Debian package. branch, master-3.6, updated. eclipse-ppa/maverick-177-g5c7b26e

2010-10-12 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, master-3.6 has been updated
   via  5c7b26e0ecf68b3bc6f1f64a4c64bac6701fc9f9 (commit)
  from  aa280a9a95ea21046419e17773ff573bcff5fe43 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit 5c7b26e0ecf68b3bc6f1f64a4c64bac6701fc9f9
Author: Benjamin Drung 
Date:   Tue Oct 12 12:58:45 2010 +0200

Refresh patches.

---

Summary of changes:
 .../patches/eclipse-build-generatedScripts.patch   |2 +-
 debian/patches/osgi-services-symlink-javax.patch   |2 +-
 debian/patches/osgi-services.patch |4 ++--
 debian/patches/series  |3 +++
 4 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/debian/patches/eclipse-build-generatedScripts.patch 
b/debian/patches/eclipse-build-generatedScripts.patch
index b2916a8..398216a 100644
--- a/debian/patches/eclipse-build-generatedScripts.patch
+++ b/debian/patches/eclipse-build-generatedScripts.patch
@@ -13,7 +13,7 @@ Forwarded: not-needed


  
-@@ -139,7 +139,7 @@
+@@ -152,7 +152,7 @@

  

diff --git a/debian/patches/osgi-services-symlink-javax.patch 
b/debian/patches/osgi-services-symlink-javax.patch
index d55de68..e5bbf17 100644
--- a/debian/patches/osgi-services-symlink-javax.patch
+++ b/debian/patches/osgi-services-symlink-javax.patch
@@ -4,7 +4,7 @@ Bug: https://bugs.eclipse.org/bugs/show_bug.cgi?id=304710
 
 --- a/build.xml
 +++ b/build.xml
-@@ -286,6 +286,7 @@
+@@ -310,6 +310,7 @@



diff --git a/debian/patches/osgi-services.patch 
b/debian/patches/osgi-services.patch
index 8df6c4c..20258f9 100644
--- a/debian/patches/osgi-services.patch
+++ b/debian/patches/osgi-services.patch
@@ -5,8 +5,8 @@ Applied-Upstream: no
 
 --- a/build.xml
 +++ b/build.xml
-@@ -285,6 +285,7 @@
-   
+@@ -309,6 +309,7 @@
+   


 +  
diff --git a/debian/patches/series b/debian/patches/series
index 3bbbd51..dcc87d7 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -12,3 +12,6 @@ generate-metadata-and-extract-swt-libraries.patch
 remove-unnecessary-files.patch
 strip-destDir.patch
 clean-source.patch
+#osgi-services.patch
+#osgi-services-symlink-javax.patch
+#eclipse-build-generatedScripts.patch


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits


[SCM] eclipse-cdt - Plug-in for eclipse to handle C/C++ - Debian package. tag, debian/6.0.2-1, updated. 992701b6d99ce058158669659b717e701a9a1bcd

2010-10-08 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse-cdt - Plug-in for eclipse to handle C/C++ - Debian 
package.".

The tag, debian/6.0.2-1 has been updated
to  992701b6d99ce058158669659b717e701a9a1bcd (commit)
  from  3401b8a9203ad4f444dd7e34d17e515f63db3d3e

- Log -
commit 992701b6d99ce058158669659b717e701a9a1bcd
Author: Benjamin Drung 
Date:   Fri Oct 8 12:05:30 2010 +0200

Close some Launchpad bugs too.
---


hooks/post-receive
-- 
eclipse-cdt - Plug-in for eclipse to handle C/C++ - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits


[SCM] eclipse-cdt - Plug-in for eclipse to handle C/C++ - Debian package. tag, upstream/6.0.2, created. 401be68be45098c3f542405199b11408f70c351e

2010-10-08 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse-cdt - Plug-in for eclipse to handle C/C++ - Debian 
package.".

The tag, upstream/6.0.2 has been created
at  401be68be45098c3f542405199b11408f70c351e (commit)

- Log -
commit 401be68be45098c3f542405199b11408f70c351e
Author: Niels Thykier 
Date:   Thu Oct 7 16:29:59 2010 +0200

Imported Upstream version 6.0.2
---


hooks/post-receive
-- 
eclipse-cdt - Plug-in for eclipse to handle C/C++ - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits


[SCM] eclipse-cdt - Plug-in for eclipse to handle C/C++ - Debian package. annotated tag, upstream/6.0.2, deleted. f7c4a07ce76af91f95a8fcc48298a06889a517c0

2010-10-08 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse-cdt - Plug-in for eclipse to handle C/C++ - Debian 
package.".

The annotated tag, upstream/6.0.2 has been deleted
   was  f7c4a07ce76af91f95a8fcc48298a06889a517c0

---
tag upstream/6.0.2

Upstream version 6.0.2
401be68be45098c3f542405199b11408f70c351e Imported Upstream version 6.0.2
---


hooks/post-receive
-- 
eclipse-cdt - Plug-in for eclipse to handle C/C++ - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits


[SCM] eclipse-cdt - Plug-in for eclipse to handle C/C++ - Debian package. branch, master, updated. debian/6.0.2-1-2-g992701b

2010-10-08 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse-cdt - Plug-in for eclipse to handle C/C++ - Debian 
package.".

The branch, master has been updated
   via  992701b6d99ce058158669659b717e701a9a1bcd (commit)
   via  c39037db1e75fce5a37f93b727b41a6a2fb823f3 (commit)
  from  3e1ce887c830b5f44e8f99cdc85311fae9e14816 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit 992701b6d99ce058158669659b717e701a9a1bcd
Author: Benjamin Drung 
Date:   Fri Oct 8 12:05:30 2010 +0200

Close some Launchpad bugs too.

commit c39037db1e75fce5a37f93b727b41a6a2fb823f3
Author: Benjamin Drung 
Date:   Fri Oct 8 12:04:03 2010 +0200

Add debian/watch file.

---

Summary of changes:
 debian/changelog |   10 +-
 debian/watch |4 
 2 files changed, 9 insertions(+), 5 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index a858931..2dce0d7 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,13 +2,13 @@ eclipse-cdt (6.0.2-1) unstable; urgency=low
 
   * New upstream release.
 - eclipse-cdt no longer quits when looking up a declaration.
-(Closes: #348393)
+  (Closes: #348393)
 - Works with current eclipse in Debian, provided that you are not
-affected by #587657 (See the bug or the NEWS file in
-eclipse-platform for more information on hold to deal with #597657).
-(Closes: #574611)
+  affected by #587657 (See the bug or the NEWS file in
+  eclipse-platform for more information on hold to deal with #597657).
+  (Closes: #574611)
 - Upgraded to newest (possible) version with the current eclipse
-in Debian. (Closes: #441313)
+  in Debian. (Closes: #441313, LP: #163739, #446131)
   * Fixed the build system. (Closes: #542977, #596851)
   * New maintainers (Closes: #555663)
   * Bumped Standards-Version to 3.9.1.
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 000..4c911ab
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,4 @@
+version=3
+# http://www.eclipse.org/cdt/downloads.php
+ftp://ftp-stud.fht-esslingen.de/pub/Mirrors/eclipse/tools/cdt/releases/galileo/dist/cdt-master-([\d\.]*)\.zip
 \
+  debian debian/fetch-cdt.sh


hooks/post-receive
-- 
eclipse-cdt - Plug-in for eclipse to handle C/C++ - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits


[SCM] eclipse - Powerful IDE written in java - Debian package. branch, master-3.6, updated. eclipse-ppa/maverick-176-gaa280a9

2010-10-08 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, master-3.6 has been updated
   via  aa280a9a95ea21046419e17773ff573bcff5fe43 (commit)
  from  2aa5198c7813004d6a9aaba384fdf72ee7f0d808 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit aa280a9a95ea21046419e17773ff573bcff5fe43
Author: Benjamin Drung 
Date:   Fri Oct 8 11:44:07 2010 +0200

Update watch file.

---

Summary of changes:
 debian/watch |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/debian/watch b/debian/watch
index e946044..82b1a41 100644
--- a/debian/watch
+++ b/debian/watch
@@ -1,3 +1,3 @@
 version=3
 # http://download.eclipse.org/technology/linuxtools/eclipse-build/
-http://ftp-stud.fht-esslingen.de/pub/Mirrors/eclipse/technology/linuxtools/eclipse-build/eclipse-([\d\.]*)-src\.tar\.bz2
+ftp://ftp-stud.fht-esslingen.de/pub/Mirrors/eclipse/technology/linuxtools/eclipse-build/3.6.x_Helios/eclipse-([\d\.]*)-src\.tar\.bz2


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits


[SCM] eclipse-cdt - Plug-in for eclipse to handle C/C++ - Debian package. branch, master, updated. 0c604672c9afc4eb5d4f2df57165024e8f451ff9

2010-10-07 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse-cdt - Plug-in for eclipse to handle C/C++ - Debian 
package.".

The branch, master has been updated
   via  0c604672c9afc4eb5d4f2df57165024e8f451ff9 (commit)
  from  6fb37823d3c1480bcd2fee102b27a16f29cac15d (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit 0c604672c9afc4eb5d4f2df57165024e8f451ff9
Author: Benjamin Drung 
Date:   Thu Oct 7 15:27:50 2010 +0200

Add get-orig-source rule.

---

Summary of changes:
 debian/fetch-cdt.sh |2 +-
 debian/rules|3 +++
 2 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/debian/fetch-cdt.sh b/debian/fetch-cdt.sh
index e4e6d77..0a8abb2 100755
--- a/debian/fetch-cdt.sh
+++ b/debian/fetch-cdt.sh
@@ -56,6 +56,6 @@ find eclipse-cdt-${UPSTREAM_VERSION} -depth -type d -empty 
-delete
 sed -i s/^#.*//g 
eclipse-cdt-${UPSTREAM_VERSION}/results/pluginVersions.properties \

eclipse-cdt-${UPSTREAM_VERSION}/results/featureVersions.properties
 
-tar jcf ../../eclipse-cdt_${UPSTREAM_VERSION}.orig.tar.bz2 
eclipse-cdt-${UPSTREAM_VERSION}
+tar jcf ../../../eclipse-cdt_${UPSTREAM_VERSION}.orig.tar.bz2 
eclipse-cdt-${UPSTREAM_VERSION}
 cd ../../
 rm -fr temp/
diff --git a/debian/rules b/debian/rules
index a482492..706f86f 100755
--- a/debian/rules
+++ b/debian/rules
@@ -50,3 +50,6 @@ override_jh_installeclipse:
rm -fr 
debian/eclipse-cdt/usr/lib/eclipse/dropins/cdt/eclipse/plugins/org.eclipse.cdt.platform.source_*/src/org.eclipse.cdt.ui_*/about_files/
cd debian/eclipse-cdt/usr && \
find lib/ -type f \( -name '*.bmp' -o -name '*.gif' -o -name 
'*.jpg' -o -name '*.png' \) | perl ../../../debian/imagemv.pl
+
+get-orig-source:
+   debian/fetch-cdt.sh


hooks/post-receive
-- 
eclipse-cdt - Plug-in for eclipse to handle C/C++ - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits


[SCM] eclipse-cdt - Plug-in for eclipse to handle C/C++ - Debian package. branch, master, updated. bb370c041fd3587632e21caea7c8eb57c68d0d25

2010-10-03 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse-cdt - Plug-in for eclipse to handle C/C++ - Debian 
package.".

The branch, master has been updated
   via  bb370c041fd3587632e21caea7c8eb57c68d0d25 (commit)
  from  3f71e1f00a7f6adde1def45046a320d5607f8e63 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit bb370c041fd3587632e21caea7c8eb57c68d0d25
Author: Benjamin Drung 
Date:   Sun Oct 3 18:16:45 2010 +0200

Add git-buildpackage configuration.

Git-Dch: Ignore

---

Summary of changes:
 debian/gbp.conf |2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/debian/gbp.conf b/debian/gbp.conf
new file mode 100644
index 000..a7cda7e
--- /dev/null
+++ b/debian/gbp.conf
@@ -0,0 +1,2 @@
+[DEFAULT]
+compression=bzip2


hooks/post-receive
-- 
eclipse-cdt - Plug-in for eclipse to handle C/C++ - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits


[SCM] eclipse - Powerful IDE written in java - Debian package. branch, upstream-3.6, updated. c87c8524df271c61bd838a7b96c506efebfd8389

2010-10-02 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, upstream-3.6 has been updated
   via  c87c8524df271c61bd838a7b96c506efebfd8389 (commit)
  from  088de2fb40b252d6360b9b4efd2352306a060dbe (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
---

Summary of changes:
 ChangeLog   |6 ++
 build.properties|6 +++---
 build.xml   |6 +++---
 pdebuild.properties |6 +++---
 4 files changed, 15 insertions(+), 9 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 919b7f5..c72cfdb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2010-10-02  Alexander Kurtakov  
+
+   * build.properties: Update for 3.6.1.
+   * build.xml: Better fail messages.
+   * pdebuild.properties: Update for 3.6.1
+
 2010-10-01  Alexander Kurtakov  
 Update buildSDKSource.sh for 3.6.1 release. (Chris Aniszczyk bz#326597)
* patches/eclipse-removeSkipMapsCheck.patch: New file.
diff --git a/build.properties b/build.properties
index b8dc287..77c0ccf 100644
--- a/build.properties
+++ b/build.properties
@@ -1,9 +1,9 @@
 #baseLocation=${basedir}/bootstrap
 # Note:  this is also in pdebuild.properties
-buildId=I20100608-0911
+buildId=M20100909-0800
 buildTag=vI20100603-1500
-label=3.6.0
-testsBuildLabel=3.6.0
+label=3.6.1
+testsBuildLabel=3.6.1
 testframework=org.eclipse.test_3.3.0
 p2.director.version=${testsBuildLabel}
 testsBuildId=v20100211
diff --git a/build.xml b/build.xml
index 152a5f1..f88d145 100644
--- a/build.xml
+++ b/build.xml
@@ -139,15 +139,15 @@

 

-   http://www.eclipse.org/downloads/download.php?file=/technology/linuxtools/eclipse-build
 or generate one by running ./buildSDKSource.sh." />
+   http://www.eclipse.org/downloads/download.php?file=/technology/linuxtools/eclipse-build
 or generate one by running ./buildSDKSource.sh." />

 

-   http://www.eclipse.org/downloads/download.php?file=/technology/linuxtools/eclipse-build
 or generate one by running ./buildSDKSource.sh." />
+   http://www.eclipse.org/downloads/download.php?file=/technology/linuxtools/eclipse-build
 or generate one by running ./buildSDKSource.sh." />

 

-   http://www.eclipse.org/downloads/download.php?file=/technology/linuxtools/eclipse-build
 or generate one by running ./buildSDKSource.sh." />
+   http://www.eclipse.org/downloads/download.php?file=/technology/linuxtools/eclipse-build
 or generate one by running ./buildSDKSource.sh." />

 

diff --git a/pdebuild.properties b/pdebuild.properties
index ead1e12..f44dd5c 100644
--- a/pdebuild.properties
+++ b/pdebuild.properties
@@ -2,9 +2,9 @@ buildArch=x86
 ws=gtk
 os=linux
 
-buildId=M20100211-1343
-buildTag=vM20100211-1343
-label=3.6.0
+buildId=M20100909-0800
+buildTag=M20100909-0800
+label=3.6.1
 
bootclasspath=/usr/lib/jvm/java/jre/lib/rt.jar:/usr/lib/jvm/java/jre/lib/jce.jar:/usr/lib/jvm/default-java/jre/lib/rt.jar:/usr/lib/jvm/default-java/jre/lib/jce.jar
 #build.compiler=org.eclipse.jdt.core.JDTCompilerAdapter
 


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits


[SCM] eclipse - Powerful IDE written in java - Debian package. tag, upstream/3.6.1, created. 088de2fb40b252d6360b9b4efd2352306a060dbe

2010-10-01 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The tag, upstream/3.6.1 has been created
at  088de2fb40b252d6360b9b4efd2352306a060dbe (commit)

- Log -
commit 088de2fb40b252d6360b9b4efd2352306a060dbe
Author: Benjamin Drung 
Date:   Sat Oct 2 02:06:05 2010 +0200

Import eclipse-build trunk branch (revision 25506).
---


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits


[SCM] eclipse - Powerful IDE written in java - Debian package. tag, upstream/3.6.0, deleted. 264e65a60e8df23aa0b76d0664da9608fa048ba0

2010-10-01 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The tag, upstream/3.6.0 has been deleted
   was  264e65a60e8df23aa0b76d0664da9608fa048ba0

---
264e65a60e8df23aa0b76d0664da9608fa048ba0 Import eclipse-build trunk branch 
(revision 25368).
---


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits


[SCM] eclipse - Powerful IDE written in java - Debian package. tag, upstream/3.6, deleted. a6de11ca0ad4a1c57edc7caa3b1d2bc2c482073a

2010-10-01 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The tag, upstream/3.6 has been deleted
   was  a6de11ca0ad4a1c57edc7caa3b1d2bc2c482073a

---
a6de11ca0ad4a1c57edc7caa3b1d2bc2c482073a Extract org.eclipse.osgi.services 
source zip.
---


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits


[SCM] eclipse - Powerful IDE written in java - Debian package. tag, upstream/3.6.0, updated. 264e65a60e8df23aa0b76d0664da9608fa048ba0

2010-08-18 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The tag, upstream/3.6.0 has been updated
to  264e65a60e8df23aa0b76d0664da9608fa048ba0 (commit)
  from  1676b59c23e8593a3f17a5da19af2d73bb29d53a

- Log -
commit 264e65a60e8df23aa0b76d0664da9608fa048ba0
Author: Benjamin Drung 
Date:   Thu Aug 19 02:09:20 2010 +0200

Import eclipse-build trunk branch (revision 25368).
---


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits


[SCM] eclipse - Powerful IDE written in java - Debian package. branch, upstream-3.6, updated. 264e65a60e8df23aa0b76d0664da9608fa048ba0

2010-08-18 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, upstream-3.6 has been updated
   via  264e65a60e8df23aa0b76d0664da9608fa048ba0 (commit)
  from  1676b59c23e8593a3f17a5da19af2d73bb29d53a (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit 264e65a60e8df23aa0b76d0664da9608fa048ba0
Author: Benjamin Drung 
Date:   Thu Aug 19 02:09:20 2010 +0200

Import eclipse-build trunk branch (revision 25368).

---

Summary of changes:
 ChangeLog  |   24 ++
 build.xml  |  334 ++--
 jdtdependencies.properties |1 +
 ...properties => jdtnonosgidependencies.properties |0
 sdkdependencies.properties |1 -
 5 files changed, 337 insertions(+), 23 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index a7840f1..c3bd975 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,27 @@
+2010-08-17  Andrew Overholt  
+
+   * build.xml: Use ${label} instead of "3.5.2" for SWT JAR
+   symlinks.  Pass in profile to use when installing.  Further
+   clean installation of build path references.  Apply patch from
+   Benjamin Drung to clean up some of these references (bug
+   #322283).
+
+2010-08-17  Andrew Overholt  
+
+   Bug #294114
+
+   * build.xml: New target 'provisionSDKinDropins' which copies JDT
+   and SDK into the dropins directory of the installation.  New
+   target 'installPlatformAndCVS' which wraps provision.cvs and
+   install.
+   * jdtnonosgidependencies.properties: Re-name from
+   sdknonosgidependencies.properties.
+   * sdknonosgidependencies.properties: Renamed.
+   * jdtdependencies.properties: New file.  OSGi dependencies
+   present in the JDT but not the Platform.
+   * sdkdependencies.properties: Move JDT bits to
+   jdtdependencies.properties.
+
 2010-08-11  Andrew Overholt  
 
* build.xml: Make symlink to eclipse.ini absolute again to
diff --git a/build.xml b/build.xml
index 74ade9e..38dc64f 100644
--- a/build.xml
+++ b/build.xml
@@ -45,6 +45,7 @@



+   

 

@@ -343,8 +344,9 @@



+   
+   

-   



@@ -665,6 +667,9 @@


 
+   
+   
+   


 
@@ -677,6 +682,9 @@


 
+   
+   
+   


 
@@ -696,8 +704,11 @@

 

+   
+   
+   
+   

-   
 


@@ -721,10 +732,28 @@



+   
 
-   
-   
-   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+
+   
+   
+   
+   
+   

 

@@ -844,32 +873,30 @@



-   
-   

+   
+   


-   
-   
-   
-   
-   



-   
-   
-   
-   
-   
-   
-   
-   
-   


 

+   
+   
+   
+   
+
+   
+   
+   
+   
+   
+
+   



@@ -899,7 +926,7 @@



-   
+   
  

[SCM] eclipse - Powerful IDE written in java - Debian package. branch, master-3.6, updated. eclipse-ppa/maverick-167-gba44b74

2010-08-17 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, master-3.6 has been updated
   via  ba44b74b0a40e9f0c184f5416b465a3b974a3d3c (commit)
  from  952b828402c054f67f9c5b942e85be07599e8fa8 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit ba44b74b0a40e9f0c184f5416b465a3b974a3d3c
Author: Benjamin Drung 
Date:   Tue Aug 17 14:34:22 2010 +0200

Cleanup with wrap-and-sort

Git-Dch: ignore

---

Summary of changes:
 debian/control   |   19 +--
 debian/copyright |1 -
 2 files changed, 9 insertions(+), 11 deletions(-)

diff --git a/debian/control b/debian/control
index 812a2bf..1d8319e 100644
--- a/debian/control
+++ b/debian/control
@@ -142,10 +142,10 @@ Replaces: eclipse-jdt (<< 3.5.1+repack~3),
   eclipse-source (<= 3.1.1-3),
   libeclipse-jni
 Breaks: eclipse-source (<= 3.1.1-3)
-Conflicts: eclipse-platform-common,
-   libeclipse-jni,
+Conflicts: eclipse-common-nls,
+   eclipse-platform-common,
eclipse-platform-nls,
-   eclipse-common-nls
+   libeclipse-jni
 Suggests: eclipse-jdt
 Description: Eclipse platform without plug-ins to develop any language
  The Eclipse Platform is an open and extensible platform for anything and yet
@@ -210,17 +210,17 @@ Architecture: any
 Depends: default-jre | java5-runtime | java6-runtime,
  libequinox-osgi-java (= ${source:Version}),
  libicu4j-4.2-java (>= 4.2),
- ${shlibs:Depends},
- ${misc:Depends}
+ ${misc:Depends},
+ ${shlibs:Depends}
 Recommends: ${shlibs:Recommends}
 Suggests: eclipse
 Replaces: eclipse-rcp-gcj,
-  libswt3.2-gtk-java,
-  libswt3.2-gtk-gcj,
-  libswt3.2-gtk-jni,
   libswt-gtk-3.4-java,
   libswt-gtk-3.4-jni,
-  libswt-gtk-3.5-jni (<< 3.5.1+repack)
+  libswt-gtk-3.5-jni (<< 3.5.1+repack),
+  libswt3.2-gtk-gcj,
+  libswt3.2-gtk-java,
+  libswt3.2-gtk-jni
 Description: Eclipse Rich Client Platform (RCP)
  The Eclipse Platform is an open and extensible platform for anything and yet
  nothing in particular. It provides a foundation for constructing and running
@@ -255,4 +255,3 @@ Description: Equinox OSGi framework
  .
  This package includes only the Eclipse Equinox OSGi framework, which can
  be used outside Eclipse.
-
diff --git a/debian/copyright b/debian/copyright
index 0cc7581..e8f5490 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -1060,4 +1060,3 @@ License: MPL-v1.1
   the notices in the Source Code files of the Original Code. You should
   use the text of this Exhibit A rather than the text found in the
   Original Code Source Code for Your Modifications.]
- 


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits


[SCM] eclipse - Powerful IDE written in java - Debian package. tag, upstream/3.6.0, updated. 1676b59c23e8593a3f17a5da19af2d73bb29d53a

2010-08-11 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The tag, upstream/3.6.0 has been updated
to  1676b59c23e8593a3f17a5da19af2d73bb29d53a (commit)
  from  d1bba732ef09fe688dbaea31fe8635ac089167c7

- Log -
commit 1676b59c23e8593a3f17a5da19af2d73bb29d53a
Author: Benjamin Drung 
Date:   Thu Aug 12 00:29:33 2010 +0200

Import eclipse-build trunk branch (revision 25352).
---


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits


[SCM] eclipse - Powerful IDE written in java - Debian package. branch, upstream-3.6, updated. 1676b59c23e8593a3f17a5da19af2d73bb29d53a

2010-08-11 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, upstream-3.6 has been updated
   via  1676b59c23e8593a3f17a5da19af2d73bb29d53a (commit)
  from  d1bba732ef09fe688dbaea31fe8635ac089167c7 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
---

Summary of changes:
 ChangeLog |   35 ++
 build.xml |  226 +++--
 dependencies.properties   |2 -
 nonosgidependencies.properties|3 -
 publishProduct.xml|3 +-
 sdkdependencies.properties|2 +
 sdknonosgidependencies.properties |3 +
 7 files changed, 184 insertions(+), 90 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 3aaddb6..a7840f1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,38 @@
+2010-08-11  Andrew Overholt  
+
+   * build.xml: Make symlink to eclipse.ini absolute again to
+   please our Debian friends.
+
+2010-08-11  Andrew Overholt  
+
+   Bug #293731
+
+   * build.xml: Add ability to provision just the platform or just the
+   platform and the CVS feature (default is still entire SDK).  Parametrize
+   JUnit4 JAR location.  Replace @qualifier@ also in platform.product since
+   we're using it now.  No longer copy content.{xml,jar} over for debugging
+   during publishing.  Extract publishing of SDK into a common target that
+   can be used by other publishing tasks.  Extract provisioning of SDK into
+   common target.  Add installPlatform/installPlatformAndCVS targets for
+   installing just the platform/platform+CVS.
+   * publishProduct.xml: Parametrize the product file to use.
+   * sdknonosgidependencies.properties: New file.  Non-OSGi dependencies
+   present in the SDK but not the platform.
+   * sdkdependencies.properties: New file.  OSGi dependencies present in 
the
+   SDK but not the platform.
+   * nonosgidependencies.properties: Strip SDK-only dependencies.
+   * dependencies.properties: Likewise.
+
+2010-08-11  Andrew Overholt  
+
+   * build.xml: Make symlink to eclipse.ini relative.
+   * Xvnc.cfg: Add to svn:ignore.
+
+2010-08-09  Andrew Overholt  
+
+   * build.xml: Apply ant core and UI test patch to not be so strict with
+   ant -version output.
+
 2010-08-06  Andrew Overholt  
 
Bug #286825
diff --git a/build.xml b/build.xml
index ce157a0..74ade9e 100644
--- a/build.xml
+++ b/build.xml
@@ -1,8 +1,8 @@
 

-   
+   

-   
+   



@@ -41,6 +41,8 @@



+   
+   



@@ -58,21 +60,25 @@


 
+   
+   
+





-   
+   


-   
+   


-   
+   


-   
+   



@@ -84,7 +90,7 @@



-   
+   
 


@@ -296,11 +302,11 @@



-   
-   
-   
+   
+   
+   

-   
+   



@@ -318,48 +324,42 @@



+   
+   


 

-   
-   
+   
+   

 

-   
-   
-   
+   
+   
+   

 

-   
-   
+   
+   
+   
+   

-   
-   
+   
+   


-   
-   
+   
+   


-   
-   
+   
+   


-   
-   
+   
+   

 

@@ -423,11 +423,11 @@
 


-   
+   


 
-

[SCM] eclipse - Powerful IDE written in java - Debian package. branch, master-3.6, updated. eclipse-ppa/maverick-166-g952b828

2010-08-11 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, master-3.6 has been updated
   via  952b828402c054f67f9c5b942e85be07599e8fa8 (commit)
   via  256614afaef8835cf9741cae6317a10b80cfa410 (commit)
   via  1676b59c23e8593a3f17a5da19af2d73bb29d53a (commit)
  from  cea61d6b0ce2e600e1d04017b8ba9dadc188809e (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit 952b828402c054f67f9c5b942e85be07599e8fa8
Author: Benjamin Drung 
Date:   Thu Aug 12 01:07:16 2010 +0200

Refresh patches.

commit 256614afaef8835cf9741cae6317a10b80cfa410
Merge: cea61d6 1676b59
Author: Benjamin Drung 
Date:   Thu Aug 12 00:29:49 2010 +0200

Merge branch 'upstream-3.6' into master-3.6

---

Summary of changes:
 ChangeLog  |   35 +++
 build.xml  |  226 ---
 debian/patches/eclipse-manpage.patch   |2 +-
 ...nerate-metadata-and-extract-swt-libraries.patch |2 +-
 debian/patches/remove-unnecessary-files.patch  |2 +-
 debian/patches/strip-destDir.patch |2 +-
 debian/patches/symlink-system-files.patch  |8 +-
 dependencies.properties|2 -
 nonosgidependencies.properties |3 -
 publishProduct.xml |3 +-
 sdkdependencies.properties |2 +
 sdknonosgidependencies.properties  |3 +
 12 files changed, 192 insertions(+), 98 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 3aaddb6..a7840f1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,38 @@
+2010-08-11  Andrew Overholt  
+
+   * build.xml: Make symlink to eclipse.ini absolute again to
+   please our Debian friends.
+
+2010-08-11  Andrew Overholt  
+
+   Bug #293731
+
+   * build.xml: Add ability to provision just the platform or just the
+   platform and the CVS feature (default is still entire SDK).  Parametrize
+   JUnit4 JAR location.  Replace @qualifier@ also in platform.product since
+   we're using it now.  No longer copy content.{xml,jar} over for debugging
+   during publishing.  Extract publishing of SDK into a common target that
+   can be used by other publishing tasks.  Extract provisioning of SDK into
+   common target.  Add installPlatform/installPlatformAndCVS targets for
+   installing just the platform/platform+CVS.
+   * publishProduct.xml: Parametrize the product file to use.
+   * sdknonosgidependencies.properties: New file.  Non-OSGi dependencies
+   present in the SDK but not the platform.
+   * sdkdependencies.properties: New file.  OSGi dependencies present in 
the
+   SDK but not the platform.
+   * nonosgidependencies.properties: Strip SDK-only dependencies.
+   * dependencies.properties: Likewise.
+
+2010-08-11  Andrew Overholt  
+
+   * build.xml: Make symlink to eclipse.ini relative.
+   * Xvnc.cfg: Add to svn:ignore.
+
+2010-08-09  Andrew Overholt  
+
+   * build.xml: Apply ant core and UI test patch to not be so strict with
+   ant -version output.
+
 2010-08-06  Andrew Overholt  
 
Bug #286825
diff --git a/build.xml b/build.xml
index ce157a0..74ade9e 100644
--- a/build.xml
+++ b/build.xml
@@ -1,8 +1,8 @@
 

-   
+   

-   
+   



@@ -41,6 +41,8 @@



+   
+   



@@ -58,21 +60,25 @@


 
+   
+   
+





-   
+   


-   
+   


-   
+   


-   
+   



@@ -84,7 +90,7 @@



-   
+   
 


@@ -296,11 +302,11 @@



-   
-   
-   
+   
+   
+   

-   
+   


  

[SCM] eclipse - Powerful IDE written in java - Debian package. tag, upstream/3.6.0, updated. d1bba732ef09fe688dbaea31fe8635ac089167c7

2010-08-06 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The tag, upstream/3.6.0 has been updated
to  d1bba732ef09fe688dbaea31fe8635ac089167c7 (commit)
  from  05536433516f7cd82ff3dab90e1cb4c0e768e69a

- Log -
commit d1bba732ef09fe688dbaea31fe8635ac089167c7
Author: Benjamin Drung 
Date:   Fri Aug 6 23:11:11 2010 +0200

Import eclipse-build trunk branch (revision 25335).
---


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits


[SCM] eclipse - Powerful IDE written in java - Debian package. branch, upstream-3.6, updated. d1bba732ef09fe688dbaea31fe8635ac089167c7

2010-08-06 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, upstream-3.6 has been updated
   via  d1bba732ef09fe688dbaea31fe8635ac089167c7 (commit)
  from  05536433516f7cd82ff3dab90e1cb4c0e768e69a (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
---

Summary of changes:
 ChangeLog|   22 
 build.xml|   87 +
 patches/donotstorebuildlogsinfiles.patch |   11 
 runtests.sh  |   70 +---
 4 files changed, 147 insertions(+), 43 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index c8a49f2..3aaddb6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,25 @@
+2010-08-06  Andrew Overholt  
+
+   Bug #286825
+
+   * patches/donotstorebuildlogsinfiles.patch: Output SWT build information
+   to stdout and not a log file (Niels Thykier).
+
+2010-08-04  Andrew Overholt  
+
+   Bug #321612
+
+   * build.xml: Add ability to pass through -v and -d flags to runtests.sh.
+   Use -DdebugTests=true or -DverboseTests=true.
+   * runtests.sh: Add verbose option (-v).  Pass -data option to test runs.
+
+2010-08-04  Andrew Overholt  
+ 
+   Bug #321660
+
+   * build.xml: Remove sdk-tests.properties in clean-sdk task and tests_* 
in
+   distclean task.  Clean up formatting a bit. 
+
 2010-08-03  Andrew Overholt  
 
Bug #321284
diff --git a/build.xml b/build.xml
index 2118530..ce157a0 100644
--- a/build.xml
+++ b/build.xml
@@ -1,7 +1,7 @@
 

-   
- 
+   
+   



@@ -75,10 +75,14 @@



-   
+   
+   
+   


-   
+   
+   
+   


 
@@ -246,6 +250,7 @@



+   

 

@@ -261,6 +266,9 @@



+   
+   
+   

 

@@ -330,26 +338,26 @@

classname="org.eclipse.linuxtools.eclipsebuild.SymlinkNonOSGiJars"
classpath="${basedir}/task-bin" />

-   
+

-   
-   
-
+   



-
+   



-
+   



-
+   



@@ -412,15 +420,15 @@
-->
 

-   
+

-   
-   
-
+   
+   
+   

 

-   
+



@@ -640,7 +648,7 @@



-   
+



@@ -654,10 +662,10 @@
topLevelDir="${provisionDir}/plugins"/>
 

-   
+   


-   
+


@@ -666,8 +674,35 @@
 


+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
 
-   



@@ -679,10 +714,14 @@



+   




+   



@@ -786,7 +825,7 @@



-   
+



@@ -800,7 +839,7 @@



-
+  

[SCM] eclipse - Powerful IDE written in java - Debian package. branch, master-3.6, updated. eclipse-ppa/maverick-163-gcea61d6

2010-08-06 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, master-3.6 has been updated
   via  cea61d6b0ce2e600e1d04017b8ba9dadc188809e (commit)
   via  05e400e1d809a3b78e97b76e263c71569a8956ca (commit)
   via  d1bba732ef09fe688dbaea31fe8635ac089167c7 (commit)
  from  1e571bd03f6a324a729dd066ecf98a0f623be8d4 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit cea61d6b0ce2e600e1d04017b8ba9dadc188809e
Author: Benjamin Drung 
Date:   Fri Aug 6 23:14:25 2010 +0200

Refresh patches.

commit 05e400e1d809a3b78e97b76e263c71569a8956ca
Merge: 1e571bd d1bba73
Author: Benjamin Drung 
Date:   Fri Aug 6 23:12:14 2010 +0200

Merge branch 'upstream-3.6' into master-3.6

---

Summary of changes:
 ChangeLog  |   22 +
 build.xml  |   87 ++--
 debian/patches/compile-IPluginDescriptor.patch |2 +-
 debian/patches/compile-jarinjarloader.patch|2 +-
 debian/patches/eclipse-manpage.patch   |4 +-
 ...nerate-metadata-and-extract-swt-libraries.patch |4 +-
 debian/patches/remove-unnecessary-files.patch  |2 +-
 debian/patches/strip-destDir.patch |2 +-
 patches/donotstorebuildlogsinfiles.patch   |   11 +++
 runtests.sh|   70 
 10 files changed, 155 insertions(+), 51 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index c8a49f2..3aaddb6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,25 @@
+2010-08-06  Andrew Overholt  
+
+   Bug #286825
+
+   * patches/donotstorebuildlogsinfiles.patch: Output SWT build information
+   to stdout and not a log file (Niels Thykier).
+
+2010-08-04  Andrew Overholt  
+
+   Bug #321612
+
+   * build.xml: Add ability to pass through -v and -d flags to runtests.sh.
+   Use -DdebugTests=true or -DverboseTests=true.
+   * runtests.sh: Add verbose option (-v).  Pass -data option to test runs.
+
+2010-08-04  Andrew Overholt  
+ 
+   Bug #321660
+
+   * build.xml: Remove sdk-tests.properties in clean-sdk task and tests_* 
in
+   distclean task.  Clean up formatting a bit. 
+
 2010-08-03  Andrew Overholt  
 
Bug #321284
diff --git a/build.xml b/build.xml
index 2118530..ce157a0 100644
--- a/build.xml
+++ b/build.xml
@@ -1,7 +1,7 @@
 

-   
- 
+   
+   



@@ -75,10 +75,14 @@



-   
+   
+   
+   


-   
+   
+   
+   


 
@@ -246,6 +250,7 @@



+   

 

@@ -261,6 +266,9 @@



+   
+   
+   

 

@@ -330,26 +338,26 @@

classname="org.eclipse.linuxtools.eclipsebuild.SymlinkNonOSGiJars"
classpath="${basedir}/task-bin" />

-   
+

-   
-   
-
+   



-
+   



-
+   



-
+   



@@ -412,15 +420,15 @@
-->
 

-   
+

-   
-   
-
+   
+   
+   

 

-   
+



@@ -640,7 +648,7 @@



-   
+



@@ -654,10 +662,10 @@
topLevelDir="${provisionDir}/plugins"/>
 

-   
+   


-  

[SCM] eclipse - Powerful IDE written in java - Debian package. tag, upstream/3.6.0, updated. 05536433516f7cd82ff3dab90e1cb4c0e768e69a

2010-08-03 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The tag, upstream/3.6.0 has been updated
to  05536433516f7cd82ff3dab90e1cb4c0e768e69a (commit)
  from  ffd4c7fade62cadfa92968d1cdd783694b5273f6

- Log -
commit 05536433516f7cd82ff3dab90e1cb4c0e768e69a
Author: Benjamin Drung 
Date:   Tue Aug 3 17:24:30 2010 +0200

Import eclipse-build trunk branch (revision 25323).
---


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits


[SCM] eclipse - Powerful IDE written in java - Debian package. branch, upstream-3.6, updated. 05536433516f7cd82ff3dab90e1cb4c0e768e69a

2010-08-03 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, upstream-3.6 has been updated
   via  05536433516f7cd82ff3dab90e1cb4c0e768e69a (commit)
   via  4fa8277a7eefe73e556cd70c61a24eb93622ec0f (commit)
  from  d57ae342b6d4013ff6ef79c155d8fd56c338b702 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
---

Summary of changes:
 ChangeLog  |   66 +++
 build.properties   |1 +
 build.xml  |  124 ++-
 junitHelper.xml|8 +-
 patches/eclipse-swt-compile-xpt.patch  |   31 +
 patches/tests-nop2discoverytests.patch |   25 
 ...e.pde.ui.tests-LocalTargetDefinitionTests.patch |   21 
 runtests.sh|   43 +--
 8 files changed, 249 insertions(+), 70 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 49a4875..c8a49f2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,9 +1,75 @@
+2010-08-03  Andrew Overholt  
+
+   Bug #321284
+
+   * build.xml: Set installation directory after resolving libdir.
+
+2010-07-29  Andrew Overholt  
+
+   Bug #319479
+
+   * patches/eclipse-swt-compile-xpt.patch: New file.  Patch from Benjamin
+   Drung to build .xpt file for SWT.
+   * build.xml: Apply above patch.
+
+2010-07-28  Andrew Overholt  
+
+   * build.xml: Use bootstrap JARs to build Equinox Initializer.
+
+2010-07-28  Andrew Overholt  
+
+   * runtests.sh: Properly canonicalize test build and installation
+   directories.
+
+2010-07-28  Andrew Overholt  
+
+   * build.properties: Property-ify test framework.
+   * build.xml: Use variables for provision and installation directories.
+   Build Equinox Initializer application in build target and not in
+   provision.sdk target.  Pass tests build directory and provisioned SDK
+   directory to runtests.sh.
+   * runtests.sh: Take passed-in tests build directory and provisioned SDK
+   directory.  Pass testframework variable to runtests.sh.
+   * junitHelper.xml: Use property of testframework.
+
+2010-07-28  Andrew Overholt  
+
+   * build.xml: Fix version of org.eclipse.test (3.2.0 -> 3.3.0).
+   * junitHelper.xml: Likewise.
+   * runtests.sh: Likewise.
+   * sdk-tests.properties: Add to svn:ignore.
+   * tests_*: Add to svn:ignore.
+
+2010-07-23  Andrew Overholt  
+
+   * dependencies.properties: 
+   * junitHelper.xml: 
+   * runtests.sh: 
+   * patches/tests-nop2discoverytests.patch: New file.  Don't build the p2
+   discovery tests since that feature isn't part of the SDK.
+   * patches/org.eclipse.pde.ui.tests-LocalTargetDefinitionTests.patch: 
Removed.
+   * 
patches/tests-org.eclipse.pde.ui.tests-LocalTargetDefinitionTests.patch:
+   Renamed to clarify that it's a patch for the tests. 
+   * build.xml: Correct typo with LocationTargetDefinitionTests patch name.
+   
+2010-07-27  Andrew Overholt  
+
+   Bug #295098
+
+   * patches/org.eclipse.pde.ui.tests-LocalTargetDefinitionTests.patch: New
+   file.  Patch out checking for source bundles not likely to be present in
+   distros.
+   * build.xml: Apply above patch to tests.
+   * symlinks-stamp: Add to svn:ignore.
+   * task-bin: Likewise.
+
 2010-07-27  Andrew Overholt  
 
Bug #320328
 
* pdebuild.xml: Use ${label} instead of hard-coding "3.5.0".
* build.xml: Use PDE Build of built SDK to build SDK tests.
+   
 
 2010-07-19  Andrew Overholt  
 
diff --git a/build.properties b/build.properties
index ec76547..b8dc287 100644
--- a/build.properties
+++ b/build.properties
@@ -4,6 +4,7 @@ buildId=I20100608-0911
 buildTag=vI20100603-1500
 label=3.6.0
 testsBuildLabel=3.6.0
+testframework=org.eclipse.test_3.3.0
 p2.director.version=${testsBuildLabel}
 testsBuildId=v20100211
 featureToBuild=eclipse-build-feature
diff --git a/build.xml b/build.xml
index 72c775c..2118530 100644
--- a/build.xml
+++ b/build.xml
@@ -56,6 +56,7 @@



+   
 


@@ -105,6 +106,7 @@
 


+   

 

@@ -290,6 +292,7 @@



+   



@@ -304,8 +307,9 @@
 


-   

+   
+   
   

[SCM] eclipse - Powerful IDE written in java - Debian package. branch, master-3.6, updated. eclipse-ppa/maverick-160-g1e571bd

2010-08-03 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, master-3.6 has been updated
   via  1e571bd03f6a324a729dd066ecf98a0f623be8d4 (commit)
   via  05536433516f7cd82ff3dab90e1cb4c0e768e69a (commit)
   via  6d163cc19ccb2692c42d1732023d5ed19250cf51 (commit)
   via  2a310b5331c28711d08f3f478ebf6d3b8049d48a (commit)
   via  13b0ec042a2419e041a87a20672dad994fcf1bb8 (commit)
   via  4fa8277a7eefe73e556cd70c61a24eb93622ec0f (commit)
  from  cc886b71ad448269f4a1f016f756425d6714d260 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit 1e571bd03f6a324a729dd066ecf98a0f623be8d4
Merge: 6d163cc 0553643
Author: Benjamin Drung 
Date:   Tue Aug 3 17:24:47 2010 +0200

Merge branch 'upstream-3.6' into master-3.6

commit 6d163cc19ccb2692c42d1732023d5ed19250cf51
Author: Benjamin Drung 
Date:   Thu Jul 29 23:22:19 2010 +0200

Refresh patches.

commit 2a310b5331c28711d08f3f478ebf6d3b8049d48a
Author: Benjamin Drung 
Date:   Thu Jul 29 23:19:06 2010 +0200

Drop swt-compile-xpt.patch (accepted upstream).

commit 13b0ec042a2419e041a87a20672dad994fcf1bb8
Merge: cc886b7 4fa8277
Author: Benjamin Drung 
Date:   Thu Jul 29 23:17:57 2010 +0200

Merge branch 'upstream-3.6' into master-3.6

---

Summary of changes:
 ChangeLog  |   66 +++
 build.properties   |1 +
 build.xml  |  124 ++-
 debian/patches/compile-IPluginDescriptor.patch |2 +-
 debian/patches/compile-jarinjarloader.patch|2 +-
 debian/patches/eclipse-manpage.patch   |6 +-
 ...nerate-metadata-and-extract-swt-libraries.patch |4 +-
 debian/patches/remove-unnecessary-files.patch  |6 +-
 debian/patches/series  |1 -
 debian/patches/strip-destDir.patch |4 +-
 debian/patches/swt-compile-xpt.patch   |   48 
 junitHelper.xml|8 +-
 patches/eclipse-swt-compile-xpt.patch  |   31 +
 patches/tests-nop2discoverytests.patch |   25 
 ...e.pde.ui.tests-LocalTargetDefinitionTests.patch |   21 
 runtests.sh|   43 +--
 16 files changed, 261 insertions(+), 131 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 49a4875..c8a49f2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,9 +1,75 @@
+2010-08-03  Andrew Overholt  
+
+   Bug #321284
+
+   * build.xml: Set installation directory after resolving libdir.
+
+2010-07-29  Andrew Overholt  
+
+   Bug #319479
+
+   * patches/eclipse-swt-compile-xpt.patch: New file.  Patch from Benjamin
+   Drung to build .xpt file for SWT.
+   * build.xml: Apply above patch.
+
+2010-07-28  Andrew Overholt  
+
+   * build.xml: Use bootstrap JARs to build Equinox Initializer.
+
+2010-07-28  Andrew Overholt  
+
+   * runtests.sh: Properly canonicalize test build and installation
+   directories.
+
+2010-07-28  Andrew Overholt  
+
+   * build.properties: Property-ify test framework.
+   * build.xml: Use variables for provision and installation directories.
+   Build Equinox Initializer application in build target and not in
+   provision.sdk target.  Pass tests build directory and provisioned SDK
+   directory to runtests.sh.
+   * runtests.sh: Take passed-in tests build directory and provisioned SDK
+   directory.  Pass testframework variable to runtests.sh.
+   * junitHelper.xml: Use property of testframework.
+
+2010-07-28  Andrew Overholt  
+
+   * build.xml: Fix version of org.eclipse.test (3.2.0 -> 3.3.0).
+   * junitHelper.xml: Likewise.
+   * runtests.sh: Likewise.
+   * sdk-tests.properties: Add to svn:ignore.
+   * tests_*: Add to svn:ignore.
+
+2010-07-23  Andrew Overholt  
+
+   * dependencies.properties: 
+   * junitHelper.xml: 
+   * runtests.sh: 
+   * patches/tests-nop2discoverytests.patch: New file.  Don't build the p2
+   discovery tests since that feature isn't part of the SDK.
+   * patches/org.eclipse.pde.ui.tests-LocalTargetDefinitionTests.patch: 
Removed.
+   * 
patches/tests-org.eclipse.pde.ui.tests-LocalTargetDefinitionTests.patch:
+   Renamed to clarify that it's a patch for the tests. 
+   * build.xml: Correct typo with LocationTargetDefinitionTests patch name.
+   
+2010-07-27  Andrew Overholt  
+
+   Bug #295

[SCM] eclipse - Powerful IDE written in java - Debian package. branch, upstream-3.6, updated. d57ae342b6d4013ff6ef79c155d8fd56c338b702

2010-07-27 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, upstream-3.6 has been updated
   via  d57ae342b6d4013ff6ef79c155d8fd56c338b702 (commit)
  from  2695d071a39ba0c6801b723e0e3e69b0cad6a1b6 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
---

Summary of changes:
 ChangeLog|7 +++
 build.xml|   14 --
 pdebuild.xml |4 ++--
 3 files changed, 21 insertions(+), 4 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 0381055..49a4875 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2010-07-27  Andrew Overholt  
+
+   Bug #320328
+
+   * pdebuild.xml: Use ${label} instead of hard-coding "3.5.0".
+   * build.xml: Use PDE Build of built SDK to build SDK tests.
+
 2010-07-19  Andrew Overholt  
 
Bug #319110
diff --git a/build.xml b/build.xml
index 0c44879..72c775c 100644
--- a/build.xml
+++ b/build.xml
@@ -395,12 +395,22 @@
-->
 

+   
+   
+   
+   
+   
+
+   
+
+   
+   





-   
+   



@@ -413,7 +423,7 @@



-   
+   



diff --git a/pdebuild.xml b/pdebuild.xml
index d585267..87f0584 100644
--- a/pdebuild.xml
+++ b/pdebuild.xml
@@ -351,9 +351,9 @@



-   



hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits


[SCM] eclipse - Powerful IDE written in java - Debian package. branch, master-3.6, updated. eclipse-ppa/maverick-154-gcc886b7

2010-07-27 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, master-3.6 has been updated
   via  cc886b71ad448269f4a1f016f756425d6714d260 (commit)
   via  d57ae342b6d4013ff6ef79c155d8fd56c338b702 (commit)
  from  53d2849094b89b925c3ce585c01a6091c93914ac (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit cc886b71ad448269f4a1f016f756425d6714d260
Merge: 53d2849 d57ae34
Author: Benjamin Drung 
Date:   Tue Jul 27 23:04:28 2010 +0200

Merge branch 'upstream-3.6' into master-3.6

---

Summary of changes:
 ChangeLog|7 +++
 build.xml|   14 --
 pdebuild.xml |4 ++--
 3 files changed, 21 insertions(+), 4 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 0381055..49a4875 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2010-07-27  Andrew Overholt  
+
+   Bug #320328
+
+   * pdebuild.xml: Use ${label} instead of hard-coding "3.5.0".
+   * build.xml: Use PDE Build of built SDK to build SDK tests.
+
 2010-07-19  Andrew Overholt  
 
Bug #319110
diff --git a/build.xml b/build.xml
index 0c44879..72c775c 100644
--- a/build.xml
+++ b/build.xml
@@ -395,12 +395,22 @@
-->
 

+   
+   
+   
+   
+   
+
+   
+
+   
+   





-   
+   



@@ -413,7 +423,7 @@



-   
+   



diff --git a/pdebuild.xml b/pdebuild.xml
index d585267..87f0584 100644
--- a/pdebuild.xml
+++ b/pdebuild.xml
@@ -351,9 +351,9 @@



-   



hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits


[SCM] eclipse - Powerful IDE written in java - Debian package. branch, upstream-3.6, updated. 2695d071a39ba0c6801b723e0e3e69b0cad6a1b6

2010-07-20 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, upstream-3.6 has been updated
   via  2695d071a39ba0c6801b723e0e3e69b0cad6a1b6 (commit)
  from  ffd4c7fade62cadfa92968d1cdd783694b5273f6 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
---

Summary of changes:
 ChangeLog|   15 +++
 build.xml|   40 ++--
 extract_patterns.txt |1 +
 3 files changed, 54 insertions(+), 2 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index cd34aba..0381055 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,18 @@
+2010-07-19  Andrew Overholt  
+
+   Bug #319110
+
+   * build.xml: Apply patch from Benjamin Drung to rename some ant targets
+   (distclean -> clean, clean -> clean-sdk).  "distclean" now removes 
*.log.
+
+2010-07-19  Andrew Overholt  
+
+   Bug #319473
+
+   * build.xml: Apply patch from Benjamin Drung to extract SWT .so files.
+   * extract_patterns.txt: New file.  Filename patterns to extract
+   ("initialize") from bundle JARs. 
+
 2010-07-14  Andrew Overholt  
 
* additionalArchs/rename.sh: Add svn:executable property.
diff --git a/build.xml b/build.xml
index 18657e6..0c44879 100644
--- a/build.xml
+++ b/build.xml
@@ -231,7 +231,7 @@


 
-   
+   



@@ -246,7 +246,7 @@


 
-   
+   



@@ -255,6 +255,12 @@


 
+   
+   
+   
+   
+   
+



@@ -792,6 +798,36 @@


 
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+
+   
+   
+   
+   
+   
+   
+   
+



diff --git a/extract_patterns.txt b/extract_patterns.txt
new file mode 100644
index 000..8e0dff8
--- /dev/null
+++ b/extract_patterns.txt
@@ -0,0 +1 @@
+.* = *.so
\ No newline at end of file


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits


[SCM] eclipse - Powerful IDE written in java - Debian package. branch, master-3.6, updated. eclipse-ppa/maverick-152-g53d2849

2010-07-20 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, master-3.6 has been updated
   via  53d2849094b89b925c3ce585c01a6091c93914ac (commit)
   via  b88e2c7432783dd00b95096ce92209756698e550 (commit)
   via  f8e6177d9d2b741732cf353bb817102a12f66b20 (commit)
   via  2695d071a39ba0c6801b723e0e3e69b0cad6a1b6 (commit)
  from  444d6304a71c94d22b3ac6c64de48384bf7e07e5 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit 53d2849094b89b925c3ce585c01a6091c93914ac
Author: Benjamin Drung 
Date:   Tue Jul 20 21:53:58 2010 +0200

Refresh patches.

commit b88e2c7432783dd00b95096ce92209756698e550
Author: Benjamin Drung 
Date:   Tue Jul 20 20:50:40 2010 +0200

Drop distclean-logfiles.patch (accepted upstream).

commit f8e6177d9d2b741732cf353bb817102a12f66b20
Merge: 444d630 2695d07
Author: Benjamin Drung 
Date:   Tue Jul 20 20:49:52 2010 +0200

Merge branch 'upstream-3.6' into master-3.6

---

Summary of changes:
 ChangeLog  |   15 +++
 build.xml  |   40 +++-
 debian/patches/compile-IPluginDescriptor.patch |2 +-
 debian/patches/compile-jarinjarloader.patch|2 +-
 debian/patches/distclean-logfiles.patch|   37 --
 debian/patches/eclipse-manpage.patch   |2 +-
 ...nerate-metadata-and-extract-swt-libraries.patch |   34 +++-
 debian/patches/remove-unnecessary-files.patch  |   17 ++--
 debian/patches/series  |1 -
 debian/patches/strip-destDir.patch |2 +-
 debian/patches/swt-compile-xpt.patch   |2 +-
 extract_patterns.txt   |1 +
 12 files changed, 71 insertions(+), 84 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index cd34aba..0381055 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,18 @@
+2010-07-19  Andrew Overholt  
+
+   Bug #319110
+
+   * build.xml: Apply patch from Benjamin Drung to rename some ant targets
+   (distclean -> clean, clean -> clean-sdk).  "distclean" now removes 
*.log.
+
+2010-07-19  Andrew Overholt  
+
+   Bug #319473
+
+   * build.xml: Apply patch from Benjamin Drung to extract SWT .so files.
+   * extract_patterns.txt: New file.  Filename patterns to extract
+   ("initialize") from bundle JARs. 
+
 2010-07-14  Andrew Overholt  
 
* additionalArchs/rename.sh: Add svn:executable property.
diff --git a/build.xml b/build.xml
index 18657e6..0c44879 100644
--- a/build.xml
+++ b/build.xml
@@ -231,7 +231,7 @@


 
-   
+   



@@ -246,7 +246,7 @@


 
-   
+   



@@ -255,6 +255,12 @@


 
+   
+   
+   
+   
+   
+



@@ -792,6 +798,36 @@


 
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+
+   
+   
+   
+   
+   
+   
+   
+



diff --git a/debian/patches/compile-IPluginDescriptor.patch 
b/debian/patches/compile-IPluginDescriptor.patch
index 35ba66c..9532272 100644
--- a/debian/patches/compile-IPluginDescriptor.patch
+++ b/debian/patches/compile-IPluginDescriptor.patch
@@ -4,7 +4,7 @@ Bug: https://bugs.eclipse.org/bugs/show_bug.cgi?id=319478
 
 --- a/build.xml
 +++ b/build.xml
-@@ -363,6 +363,32 @@
+@@ -369,6 +369,32 @@


diff --git a/debian/patches/compile-jarinjarloader.patch 
b/debian/patches/compile-jarinjarloader.patch
index 303999b..79fe43a 100644
--- a/debian/patches/compile-jarinjarloader.patch
+++ b/debian/patches/compile-jarinjarloader.patch
@@ -12,7 +12,7 @@ Bug: https://bugs.eclipse.org/bugs/show_bug.cgi?id=319476

[SCM] eclipse - Powerful IDE written in java - Debian package. branch, master-3.6, updated. eclipse-ppa/maverick-148-g444d630

2010-07-16 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, master-3.6 has been updated
   via  444d6304a71c94d22b3ac6c64de48384bf7e07e5 (commit)
  from  74d2d6142e7e724b46e5fac2c8e0dddb36218c95 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit 444d6304a71c94d22b3ac6c64de48384bf7e07e5
Author: Benjamin Drung 
Date:   Fri Jul 16 23:54:58 2010 +0200

Drop disable-logging.patch and add distclean-logfiles.patch instead.

---

Summary of changes:
 debian/patches/disable-logging.patch|   16 -
 debian/patches/distclean-logfiles.patch |   37 +++
 debian/patches/series   |2 +-
 3 files changed, 38 insertions(+), 17 deletions(-)

diff --git a/debian/patches/disable-logging.patch 
b/debian/patches/disable-logging.patch
deleted file mode 100644
index 71c1b02..000
--- a/debian/patches/disable-logging.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-Description: Disable logging
-From: Benjamin Drung 
-
 a/build.xml
-+++ b/build.xml
-@@ -2,8 +2,8 @@
-   
-   
- 
--  
--  
-+
-+
-   
-   
-   
diff --git a/debian/patches/distclean-logfiles.patch 
b/debian/patches/distclean-logfiles.patch
new file mode 100644
index 000..97145ac
--- /dev/null
+++ b/debian/patches/distclean-logfiles.patch
@@ -0,0 +1,37 @@
+Description: Remove log files on distclean
+From: Benjamin Drung 
+Bug: https://bugs.eclipse.org/bugs/show_bug.cgi?id=319110
+
+--- a/build.xml
 b/build.xml
+@@ -232,7 +232,7 @@
+   
+   
+ 
+-  
++  
+   
+   
+   
+@@ -247,7 +247,7 @@
+   
+   
+ 
+-  
++  
+   
+   
+   
+@@ -256,6 +256,12 @@
+   
+   
+ 
++  
++  
++  
++  
++  
++
+   
+   
+   
diff --git a/debian/patches/series b/debian/patches/series
index cc0e10d..58775b5 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -9,8 +9,8 @@ fix-help-contents.patch
 pdebuild-path-copy-platform.patch
 pdebuild-script.patch
 symlink-system-files.patch
-disable-logging.patch
 generate-metadata-and-extract-swt-libraries.patch
 remove-unnecessary-files.patch
 strip-destDir.patch
 clean-source.patch
+distclean-logfiles.patch


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits


[SCM] eclipse - Powerful IDE written in java - Debian package. tag, upstream/3.6.0, updated. ffd4c7fade62cadfa92968d1cdd783694b5273f6

2010-07-16 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The tag, upstream/3.6.0 has been updated
to  ffd4c7fade62cadfa92968d1cdd783694b5273f6 (commit)
  from  9232b24715aa56e7ebec648952cd86ef065f4099

- Log -
commit ffd4c7fade62cadfa92968d1cdd783694b5273f6
Author: Benjamin Drung 
Date:   Fri Jul 16 21:46:21 2010 +0200

Import eclipse-build trunk branch (revision 25283).
---


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits


[SCM] eclipse - Powerful IDE written in java - Debian package. branch, upstream-3.6, updated. ffd4c7fade62cadfa92968d1cdd783694b5273f6

2010-07-16 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, upstream-3.6 has been updated
   via  ffd4c7fade62cadfa92968d1cdd783694b5273f6 (commit)
  from  83402ea3deb7844503e44a8ee9b2e89fa7555883 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
---

Summary of changes:
 ChangeLog  |8 +
 .../META-INF/MANIFEST.MF   |  541 
 eclipse-build-config/ChangeLog |6 +
 eclipse-build-feature/ChangeLog|5 +
 patches/tests-org.eclipse.ant.tests.core.patch |   27 +
 patches/tests-org.eclipse.ant.tests.ui.patch   |   51 ++
 runtests.sh|   24 +
 7 files changed, 121 insertions(+), 541 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 3bb2f75..cd34aba 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,13 @@
 2010-07-14  Andrew Overholt  
 
+   * additionalArchs/rename.sh: Add svn:executable property.
+   * pdebuild/eclipse-copy-platform.sh: Likewise.
+   * regenerateBootstrapFiles.sh: Likewise.
+   * runtests.sh: Likewise.
+   * swt_bundle.sh: Likewise.
+
+2010-07-14  Andrew Overholt  
+ 
Bug #319474
 
* patches/eclipse-pde.build-add-package-build.patch: Apply patch from
diff --git 
a/dependencyManifests/org.sat4j.core_2.2.0.v20100225.jar/META-INF/MANIFEST.MF 
b/dependencyManifests/org.sat4j.core_2.2.0.v20100225.jar/META-INF/MANIFEST.MF
deleted file mode 100644
index 2407cb4..000
--- 
a/dependencyManifests/org.sat4j.core_2.2.0.v20100225.jar/META-INF/MANIFEST.MF
+++ /dev/null
@@ -1,541 +0,0 @@
-Manifest-Version: 1.0
-Implementation-Vendor: CRIL CNRS UMR 8188 - Universite d'Artois
-Bundle-Localization: plugin
-Main-Class: org.sat4j.BasicLauncher
-Bundle-RequiredExecutionEnvironment: J2SE-1.4
-Built-By: Daniel Le Berre
-Bundle-SymbolicName: org.sat4j.core
-Bundle-Version: 2.2.0.v20100225
-Export-Package: org.sat4j;version="2.2.0.v20100225",org.sat4j.core;ver
- sion="2.2.0.v20100225",org.sat4j.minisat;version="2.2.0.v20100225",or
- g.sat4j.minisat.constraints;version="2.2.0.v20100225",org.sat4j.minis
- at.constraints.card;version="2.2.0.v20100225",org.sat4j.minisat.const
- raints.cnf;version="2.2.0.v20100225",org.sat4j.minisat.core;version="
- 2.2.0.v20100225",org.sat4j.minisat.learning;version="2.2.0.v20100225"
- ,org.sat4j.minisat.orders;version="2.2.0.v20100225",org.sat4j.minisat
- .restarts;version="2.2.0.v20100225",org.sat4j.minisat.uip;version="2.
- 2.0.v20100225",org.sat4j.opt;version="2.2.0.v20100225",org.sat4j.read
- er;version="2.2.0.v20100225",org.sat4j.specs;version="2.2.0.v20100225
- ",org.sat4j.tools;version="2.2.0.v20100225",org.sat4j.tools.xplain;ve
- rsion="2.2.0.v20100225"
-Specification-Version: NA
-Specification-Title: SAT4J
-Specification-Vendor: Daniel Le Berre
-Ant-Version: Apache Ant 1.7.1
-Bundle-Vendor: %providerName
-Bundle-Name: %bundleName
-Created-By: 14.0-b16 (Sun Microsystems Inc.)
-Implementation-Version: 2.2.0.v20100225 
-Implementation-Title: SAT4J
-Bundle-ManifestVersion: 2
-
-Name: overview.html
-SHA1-Digest: dn/2qZIKrR/o7110Zst9XnBMJQs=
-
-Name: org/sat4j/tools/GateTranslator.class
-SHA1-Digest: Yh6sCzxURtlx8qrFaI+xhO7taJM=
-
-Name: org/sat4j/minisat/core/IOrder.class
-SHA1-Digest: X18Zt59LqRUfn0D/p7+Yulvx6A4=
-
-Name: org/sat4j/minisat/core/Solver$6.class
-SHA1-Digest: A9NaKDVPCX8avbQtiIcVsSUi0AQ=
-
-Name: org/sat4j/tools/SingleSolutionDetector.class
-SHA1-Digest: xRDSLeA8py9/4oqlAOAZCB5FuBo=
-
-Name: org/sat4j/minisat/constraints/AbstractDataStructureFactory.class
-SHA1-Digest: QC7DJMLxn40aJ6PtPaZzka0do/4=
-
-Name: sat4j.version
-SHA1-Digest: aT1eYqSubFFctDavMxlTg98Eup0=
-
-Name: org/sat4j/minisat/core/VoidTracing.class
-SHA1-Digest: qab4ylcy9igxerjR3oNVShe7oUg=
-
-Name: org/sat4j/tools/xplain/Xplain.class
-SHA1-Digest: 1jX6dpnW8uoWTkXC5s16bjMuF0I=
-
-Name: org/sat4j/minisat/constraints/CardinalityDataStructureYanMin.cla
- ss
-SHA1-Digest: XvPtjZJs9rA05nolsi/QNsXXlvU=
-
-Name: org/sat4j/minisat/orders/VarOrderHeap.class
-SHA1-Digest: IfBRX8A9zzfGV1SbWEpHN2hyqmA=
-
-Name: org/sat4j/minisat/constraints/cnf/OriginalWLClause.class
-SHA1-Digest: e5hXI5VqiNVDnFSAf3+N9cWe+2c=
-
-Name: org/sat4j/minisat/core/ConflictTimerContainer.class
-SHA1-Digest: WZnSTl/i/51xiYxIutjbXSBBrzM=
-
-Name: org/sat4j/minisat/core/Solver$4$1.class
-SHA1-Digest: NkmAx0lapXofeVNwuxwX8QdoNsU=
-
-Name: org/sat4j/minisat/core/Solver$5$1.class
-SHA1-Digest: 8wcs6u5RIDbL8/R64JGfFlClLWk=
-
-Name: org/sat4j/minisat/learning/LimitedLearning.class
-SHA1-Digest: ErjN2ShX727XdTOX

[SCM] eclipse - Powerful IDE written in java - Debian package. branch, master-3.6, updated. eclipse-ppa/maverick-147-g74d2d61

2010-07-16 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, master-3.6 has been updated
   via  74d2d6142e7e724b46e5fac2c8e0dddb36218c95 (commit)
   via  ffd4c7fade62cadfa92968d1cdd783694b5273f6 (commit)
  from  8fe50f845be670c5731d7cf0fb707571e8712987 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit 74d2d6142e7e724b46e5fac2c8e0dddb36218c95
Merge: 8fe50f8 ffd4c7f
Author: Benjamin Drung 
Date:   Fri Jul 16 21:46:38 2010 +0200

Merge branch 'upstream-3.6' into master-3.6

---

Summary of changes:
 ChangeLog  |8 +
 .../META-INF/MANIFEST.MF   |  541 
 eclipse-build-config/ChangeLog |6 +
 eclipse-build-feature/ChangeLog|5 +
 patches/tests-org.eclipse.ant.tests.core.patch |   27 +
 patches/tests-org.eclipse.ant.tests.ui.patch   |   51 ++
 runtests.sh|   24 +
 7 files changed, 121 insertions(+), 541 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 3bb2f75..cd34aba 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,13 @@
 2010-07-14  Andrew Overholt  
 
+   * additionalArchs/rename.sh: Add svn:executable property.
+   * pdebuild/eclipse-copy-platform.sh: Likewise.
+   * regenerateBootstrapFiles.sh: Likewise.
+   * runtests.sh: Likewise.
+   * swt_bundle.sh: Likewise.
+
+2010-07-14  Andrew Overholt  
+ 
Bug #319474
 
* patches/eclipse-pde.build-add-package-build.patch: Apply patch from
diff --git 
a/dependencyManifests/org.sat4j.core_2.2.0.v20100225.jar/META-INF/MANIFEST.MF 
b/dependencyManifests/org.sat4j.core_2.2.0.v20100225.jar/META-INF/MANIFEST.MF
deleted file mode 100644
index 2407cb4..000
--- 
a/dependencyManifests/org.sat4j.core_2.2.0.v20100225.jar/META-INF/MANIFEST.MF
+++ /dev/null
@@ -1,541 +0,0 @@
-Manifest-Version: 1.0
-Implementation-Vendor: CRIL CNRS UMR 8188 - Universite d'Artois
-Bundle-Localization: plugin
-Main-Class: org.sat4j.BasicLauncher
-Bundle-RequiredExecutionEnvironment: J2SE-1.4
-Built-By: Daniel Le Berre
-Bundle-SymbolicName: org.sat4j.core
-Bundle-Version: 2.2.0.v20100225
-Export-Package: org.sat4j;version="2.2.0.v20100225",org.sat4j.core;ver
- sion="2.2.0.v20100225",org.sat4j.minisat;version="2.2.0.v20100225",or
- g.sat4j.minisat.constraints;version="2.2.0.v20100225",org.sat4j.minis
- at.constraints.card;version="2.2.0.v20100225",org.sat4j.minisat.const
- raints.cnf;version="2.2.0.v20100225",org.sat4j.minisat.core;version="
- 2.2.0.v20100225",org.sat4j.minisat.learning;version="2.2.0.v20100225"
- ,org.sat4j.minisat.orders;version="2.2.0.v20100225",org.sat4j.minisat
- .restarts;version="2.2.0.v20100225",org.sat4j.minisat.uip;version="2.
- 2.0.v20100225",org.sat4j.opt;version="2.2.0.v20100225",org.sat4j.read
- er;version="2.2.0.v20100225",org.sat4j.specs;version="2.2.0.v20100225
- ",org.sat4j.tools;version="2.2.0.v20100225",org.sat4j.tools.xplain;ve
- rsion="2.2.0.v20100225"
-Specification-Version: NA
-Specification-Title: SAT4J
-Specification-Vendor: Daniel Le Berre
-Ant-Version: Apache Ant 1.7.1
-Bundle-Vendor: %providerName
-Bundle-Name: %bundleName
-Created-By: 14.0-b16 (Sun Microsystems Inc.)
-Implementation-Version: 2.2.0.v20100225 
-Implementation-Title: SAT4J
-Bundle-ManifestVersion: 2
-
-Name: overview.html
-SHA1-Digest: dn/2qZIKrR/o7110Zst9XnBMJQs=
-
-Name: org/sat4j/tools/GateTranslator.class
-SHA1-Digest: Yh6sCzxURtlx8qrFaI+xhO7taJM=
-
-Name: org/sat4j/minisat/core/IOrder.class
-SHA1-Digest: X18Zt59LqRUfn0D/p7+Yulvx6A4=
-
-Name: org/sat4j/minisat/core/Solver$6.class
-SHA1-Digest: A9NaKDVPCX8avbQtiIcVsSUi0AQ=
-
-Name: org/sat4j/tools/SingleSolutionDetector.class
-SHA1-Digest: xRDSLeA8py9/4oqlAOAZCB5FuBo=
-
-Name: org/sat4j/minisat/constraints/AbstractDataStructureFactory.class
-SHA1-Digest: QC7DJMLxn40aJ6PtPaZzka0do/4=
-
-Name: sat4j.version
-SHA1-Digest: aT1eYqSubFFctDavMxlTg98Eup0=
-
-Name: org/sat4j/minisat/core/VoidTracing.class
-SHA1-Digest: qab4ylcy9igxerjR3oNVShe7oUg=
-
-Name: org/sat4j/tools/xplain/Xplain.class
-SHA1-Digest: 1jX6dpnW8uoWTkXC5s16bjMuF0I=
-
-Name: org/sat4j/minisat/constraints/CardinalityDataStructureYanMin.cla
- ss
-SHA1-Digest: XvPtjZJs9rA05nolsi/QNsXXlvU=
-
-Name: org/sat4j/minisat/orders/VarOrderHeap.class
-SHA1-Digest: IfBRX8A9zzfGV1SbWEpHN2hyqmA=
-
-Name: org/sat4j/minisat/constraints/cnf/OriginalWLC

[SCM] eclipse - Powerful IDE written in java - Debian package. branch, master-3.6, updated. eclipse-ppa/maverick-139-gd6d70dc

2010-07-12 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, master-3.6 has been updated
   via  d6d70dc2013fa9511530a978f07de0b0163afc33 (commit)
  from  2d309a0aa962f07029cd30c65767b21aa0616978 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit d6d70dc2013fa9511530a978f07de0b0163afc33
Author: Benjamin Drung 
Date:   Mon Jul 12 22:08:47 2010 +0200

Update debian/changelog.

---

Summary of changes:
 debian/changelog |   16 ++--
 1 files changed, 14 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 52408e6..0e41ca4 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -3,12 +3,24 @@ eclipse (3.6.0-1) UNRELEASED; urgency=low
   [ Benjamin Drung ]
   * New upstream version (Closes: #587742, LP: #604390).
 - Allows kernels with weird versions (LP: #600584).
+  * Use a svn e3.6 branch snapshot of eclipse-build.
+  * Drop four backported patches.
+  * Drop fix-shell-script-perm.patch.
+  * Refresh remaining patches.
+  * Drop removed plugins and install new plugins.
+  * Drop uname workaround.
+  * Add six new patches.
+  * Add three patches that moves commands from debian/rules into the ant build
+process.
+  * Drop seven patches that are accepted upstream.
 
   [ Niels Thykier ]
   * Removed Adrian Perez, thanks for your support.
-  * Updated d/copyright.
+  * Updated debian/copyright.
+  * Bumped B-D on icu4j.
+  * Added B-D to build swt with webkit support.
 
- -- Benjamin Drung   Mon, 12 Jul 2010 01:41:36 +0200
+ -- Benjamin Drung   Mon, 12 Jul 2010 21:36:34 +0200
 
 eclipse (3.5.2-5) unstable; urgency=medium
 


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits


  1   2   3   4   >