summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog3
-rw-r--r--debian/control4
-rw-r--r--dummy/README2
-rw-r--r--dummy/java-compiler-dummy.control12
-rw-r--r--dummy/java-virtual-machine-dummy.control13
-rw-r--r--dummy/java1-runtime-dummy.control13
-rw-r--r--dummy/java2-compiler-dummy.control13
-rw-r--r--dummy/java2-runtime-dummy.control13
8 files changed, 72 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index 3d0df68..75fe4fa 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -6,6 +6,9 @@ java-common (0.15) unstable; urgency=low
* Java libraries should now only suggest java-virtual-machine,
closes: #159448.
* Documentation about -gcj and -jni, closes: #146771.
+ * Java-common now suggests equivs and contain instructions on how to create
+ a dummy package, closes: #159483. Thanks to
+ "Grzegorz Prokopski (Debian Developer)" <gadek@debian.org>.
-- Ola Lundqvist <opal@debian.org> Wed, 25 Sep 2002 07:41:45 +0200
diff --git a/debian/control b/debian/control
index f036dd4..ff2724d 100644
--- a/debian/control
+++ b/debian/control
@@ -7,7 +7,7 @@ Standards-Version: 3.5.2
Package: java-common
Architecture: all
-Depends:
+Suggests: equivs
Description: Base of all Java packages
This package must be installed in the system if a Java environment
is desired. It covers useful information for Java users in
@@ -17,3 +17,5 @@ Description: Base of all Java packages
- The Debian-Java-FAQ which provides information on the status of
Java support in Debian, available compilers, virtual machines, Java
programs and libraries as well as on legal issues.
+ - Information on how to create dummy packages to fullfill java2
+ requirements.
diff --git a/dummy/README b/dummy/README
new file mode 100644
index 0000000..9f760eb
--- /dev/null
+++ b/dummy/README
@@ -0,0 +1,2 @@
+Those control files can be used to create dummy packages of needed components.
+Install "equivs" package and use "equivs-build" build needed dummy packages.
diff --git a/dummy/java-compiler-dummy.control b/dummy/java-compiler-dummy.control
new file mode 100644
index 0000000..1b7d02b
--- /dev/null
+++ b/dummy/java-compiler-dummy.control
@@ -0,0 +1,12 @@
+Package: java-compiler-dummy
+Architecture: all
+Section: misc
+Priority: optional
+Depends: java-common, java-runtime
+Provides: java-compiler
+Description: Dummy package providing java-compiler
+ This package does NOT provide java compiler binary, it is here only to fulfill
+ dependencies of other packages.
+ .
+ You probably will want to use this package if you have installed the compiler
+ "by hand" or from package that does not provide java-compiler dependency.
diff --git a/dummy/java-virtual-machine-dummy.control b/dummy/java-virtual-machine-dummy.control
new file mode 100644
index 0000000..d5d662e
--- /dev/null
+++ b/dummy/java-virtual-machine-dummy.control
@@ -0,0 +1,13 @@
+Package: java-virtual-machine-dummy
+Architecture: all
+Section: misc
+Priority: optional
+Depends: java-common
+Provides: java-virtual-machine
+Description: Dummy package providing java-virtual-machine
+ This package does NOT provide java virtual machine binary, it is here only
+ to fulfill dependencies of other packages.
+ .
+ You probably will want to use this package if you have installed JVM
+ "by hand" or from package that does not provide java-virtual-machine
+ dependency.
diff --git a/dummy/java1-runtime-dummy.control b/dummy/java1-runtime-dummy.control
new file mode 100644
index 0000000..73fa334
--- /dev/null
+++ b/dummy/java1-runtime-dummy.control
@@ -0,0 +1,13 @@
+Package: java1-runtime-dummy
+Architecture: all
+Section: misc
+Priority: optional
+Depends: java-common
+Provides: java1-runtime
+Description: Dummy package providing java1-runtime
+ This package does NOT provide java1 runtime environment, it is here only to
+ fulfill dependencies of other packages.
+ .
+ You probably will want to use this package if you have installed the
+ environment "by hand" or from package that does not provide java1-runtime
+ dependency.
diff --git a/dummy/java2-compiler-dummy.control b/dummy/java2-compiler-dummy.control
new file mode 100644
index 0000000..90574c3
--- /dev/null
+++ b/dummy/java2-compiler-dummy.control
@@ -0,0 +1,13 @@
+Package: java2-compiler-dummy
+Architecture: all
+Section: misc
+Priority: optional
+Depends: java2-common, java2-runtime
+Provides: java2-compiler
+Description: Dummy package providing java2-compiler
+ This package does NOT provide java2 compiler binary, it is here only to fulfill
+ dependencies of other packages.
+ .
+ You probably will want to use this package if you have installed the compiler
+ "by hand" or from package that does not provide java2-compiler dependency.
+
diff --git a/dummy/java2-runtime-dummy.control b/dummy/java2-runtime-dummy.control
new file mode 100644
index 0000000..3d5cdff
--- /dev/null
+++ b/dummy/java2-runtime-dummy.control
@@ -0,0 +1,13 @@
+Package: java2-runtime-dummy
+Architecture: all
+Section: misc
+Priority: optional
+Depends: java-common
+Provides: java2-runtime
+Description: Dummy package providing java2-runtime
+ This package does NOT provide java2 runtime environment, it is here only to
+ fulfill dependencies of other packages.
+ .
+ You probably will want to use this package if you have installed the
+ environment "by hand" or from package that does not provide java2-runtime
+ dependency.