Skip to content
Commits on Source (5)
......@@ -4,26 +4,45 @@
<include file="/usr/share/eclipse-debian-helper/build-eclipse-bundle.xml"/>
<!-- Eclipse File Buffers -->
<target name="org.eclipse.core.filebuffers">
<!-- TODO Eclipse UI -->
<make-bundle name="org.eclipse.core.filebuffers" basedir=".">
<target name="org.eclipse.core.filebuffers" depends="org.eclipse.text">
<make-bundle name="org.eclipse.core.filebuffers" basedir="." depends="org.eclipse.text">
<pathelement path="/usr/share/java/eclipse-core-contenttype.jar"/>
<pathelement path="/usr/share/java/eclipse-core-filesystem.jar"/>
<pathelement path="/usr/share/java/eclipse-core-jobs.jar"/>
<pathelement path="/usr/share/java/eclipse-core-resources.jar"/>
<pathelement path="/usr/share/java/eclipse-core-runtime.jar"/>
<pathelement path="/usr/share/java/equinox-common.jar"/>
<pathelement path="/usr/share/java/equinox-preferences.jar"/>
<pathelement path="/usr/share/java/equinox-registry.jar"/>
<pathelement path="/usr/share/java/icu4j.jar"/>
</make-bundle>
</target>
<!-- Eclipse JFace Text -->
<target name="org.eclipse.jface.text" depends="org.eclipse.text">
<make-bundle name="org.eclipse.jface.text" basedir="." depends="org.eclipse.text">
<pathelement path="/usr/share/java/eclipse-jface.jar"/>
<pathelement path="/usr/share/java/eclipse-core-commands.jar"/>
<pathelement path="/usr/share/java/eclipse-core-jobs.jar"/>
<pathelement path="/usr/share/java/eclipse-core-runtime.jar"/>
<pathelement path="/usr/share/java/equinox-common.jar"/>
<pathelement path="/usr/share/java/icu4j.jar"/>
<pathelement path="/usr/share/java/swt4.jar"/>
</make-bundle>
</target>
<!-- Eclipse Search Support-->
<target name="org.eclipse.search">
<target name="org.eclipse.search" depends="org.eclipse.core.filebuffers,org.eclipse.text">
<!-- TODO Eclipse UI -->
<make-bundle name="org.eclipse.search" basedir=".">
<make-bundle name="org.eclipse.search" basedir="." depends="org.eclipse.core.filebuffers,org.eclipse.text">
<pathelement path="/usr/share/java/eclipse-core-contenttype.jar"/>
<pathelement path="/usr/share/java/eclipse-core-jobs.jar"/>
<pathelement path="/usr/share/java/eclipse-core-resources.jar"/>
<pathelement path="/usr/share/java/eclipse-core-runtime.jar"/>
<pathelement path="/usr/share/java/eclipse-jface.jar"/>
<pathelement path="/usr/share/java/equinox-common.jar"/>
<pathelement path="/usr/share/java/equinox-registry.jar"/>
<pathelement path="/usr/share/java/icu4j.jar"/>
<pathelement path="/usr/share/java/swt4.jar"/>
</make-bundle>
</target>
......
#org.eclipse.core.filebuffers
org.eclipse.core.filebuffers
org.eclipse.jface.text
#org.eclipse.search
org.eclipse.text
eclipse-platform-text (4.7.3-3) unstable; urgency=medium
* Build more bundles:
- org.eclipse.core.filebuffers
- org.eclipse.jface.text
* Added the missing dependencies to libeclipse-text-java
-- Emmanuel Bourg <ebourg@apache.org> Wed, 26 Sep 2018 23:45:50 +0200
eclipse-platform-text (4.7.3-2) unstable; urgency=medium
* Removed the dependency on libequinox-osgi-java
......
......@@ -7,14 +7,19 @@ Build-Depends:
debhelper (>= 11~),
default-jdk,
libeclipse-core-commands-java,
# libeclipse-core-contenttype-java,
libeclipse-core-contenttype-java,
libeclipse-core-filesystem-java,
# libeclipse-core-expressions-java,
# libeclipse-core-jobs-java,
# libeclipse-core-runtime-java,
# libeclipse-osgi-java,
libeclipse-core-jobs-java,
libeclipse-core-resources-java,
libeclipse-core-runtime-java,
libeclipse-jface-java,
libeclipse-osgi-java,
libequinox-common-java,
# libequinox-preferences-java,
libequinox-preferences-java,
libequinox-registry-java,
libicu4j-java,
libswt-gtk-4-java,
eclipse-debian-helper
Standards-Version: 4.2.1
Vcs-Git: https://salsa.debian.org/java-team/eclipse-platform-text.git
......@@ -23,10 +28,55 @@ Homepage: http://www.eclipse.org/eclipse/platform-text/
Package: libeclipse-text-java
Architecture: all
Depends: ${misc:Depends}, ${bundle:Depends}
Depends:
${misc:Depends},
${bundle:Depends},
libequinox-common-java,
libeclipse-core-commands-java,
libicu4j-java
Description: Eclipse Text
Eclipse Platform Text is part of the Platform UI project and provides
the basic building blocks for text and text editors within Eclipse and
contributes the Eclipse default text editor.
.
This package contains the org.eclipse.text bundle.
Package: libeclipse-jface-text-java
Architecture: all
Depends:
${misc:Depends},
${bundle:Depends},
libeclipse-jface-java,
libeclipse-core-commands-java,
libeclipse-core-jobs-java,
libeclipse-core-runtime-java,
libequinox-common-java,
libicu4j-java,
libswt-gtk-4-java
Description: Eclipse JFace Text
Eclipse Platform Text is part of the Platform UI project and provides
the basic building blocks for text and text editors within Eclipse and
contributes the Eclipse default text editor.
.
This package contains the org.eclipse.jface.text bundle.
Package: libeclipse-core-filebuffers-java
Architecture: all
Depends:
${misc:Depends},
${bundle:Depends},
libeclipse-core-contenttype-java,
libeclipse-core-filesystem-java,
libeclipse-core-jobs-java,
libeclipse-core-resources-java,
libeclipse-core-runtime-java,
libequinox-common-java,
libequinox-preferences-java,
libequinox-registry-java,
libicu4j-java
Description: Eclipse File Buffers
Eclipse Platform Text is part of the Platform UI project and provides
the basic building blocks for text and text editors within Eclipse and
contributes the Eclipse default text editor.
.
This package contains the org.eclipse.core.filebuffers bundle.