[jboss-logmanager] 01/01: Imported Debian patch 1.5.4.Final-1

Markus Koschany apo-guest at moszumanska.debian.org
Tue Mar 3 10:53:17 UTC 2015


This is an automated email from the git hooks/post-receive script.

apo-guest pushed a commit to branch master
in repository jboss-logmanager.

commit 5a84ce5ff1edb60df6bb9cd1f04747256f891bda
Author: Markus Koschany <apo at gambaru.de>
Date:   Mon Mar 2 18:17:22 2015 +0100

    Imported Debian patch 1.5.4.Final-1
---
 debian/README.source                             |  9 ++++
 debian/changelog                                 |  5 +++
 debian/compat                                    |  1 +
 debian/control                                   | 55 ++++++++++++++++++++++++
 debian/copyright                                 | 15 +++++++
 debian/libjboss-logmanager-java-doc.doc-base.api | 10 +++++
 debian/libjboss-logmanager-java-doc.install      |  1 +
 debian/libjboss-logmanager-java.poms             | 28 ++++++++++++
 debian/maven.ignoreRules                         |  2 +
 debian/maven.properties                          |  5 +++
 debian/maven.rules                               |  2 +
 debian/patches/disable-apiviz.patch              | 29 +++++++++++++
 debian/patches/series                            |  1 +
 debian/rules                                     |  9 ++++
 debian/source/format                             |  1 +
 debian/watch                                     |  5 +++
 16 files changed, 178 insertions(+)

diff --git a/debian/README.source b/debian/README.source
new file mode 100644
index 0000000..c130aee
--- /dev/null
+++ b/debian/README.source
@@ -0,0 +1,9 @@
+Information about jboss-logmanager
+----------------------------------
+
+This package was debianized using the mh_make command
+from the maven-debian-helper package.
+
+The build system uses Maven but prevents it from downloading
+anything from the Internet, making the build compliant with
+the Debian policy.
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..7cee9ac
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+jboss-logmanager (1.5.4.Final-1) unstable; urgency=medium
+
+  * Initial release (Closes: #779583)
+
+ -- Markus Koschany <apo at gambaru.de>  Mon, 02 Mar 2015 18:17:22 +0100
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..cadc330
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,55 @@
+Source: jboss-logmanager
+Section: java
+Priority: optional
+Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
+Uploaders:
+ Markus Koschany <apo at gambaru.de>
+Build-Depends:
+ cdbs,
+ debhelper (>= 9),
+ default-jdk,
+ maven-debian-helper (>= 1.5)
+Build-Depends-Indep:
+ default-jdk-doc,
+ junit4,
+ libjboss-modules-java,
+ libjboss-modules-java-doc,
+ libmaven-bundle-plugin-java,
+ libmaven-enforcer-plugin-java,
+ libmaven-javadoc-plugin-java,
+ libmaven-source-plugin-java
+Standards-Version: 3.9.6
+Vcs-Git: git://anonscm.debian.org/pkg-java/jboss-logmanager.git
+Vcs-Browser: https://anonscm.debian.org/cgit/pkg-java/jboss-logmanager.git
+Homepage: https://github.com/jboss-logging/jboss-logmanager
+
+Package: libjboss-logmanager-java
+Architecture: all
+Depends:
+ ${maven:Depends},
+ ${misc:Depends}
+Suggests:
+ libjboss-logmanager-java-doc,
+ ${maven:OptionalDepends}
+Description: implementation of java.util.logging.LogManager
+ JBoss LogManager is a replacement for the JDK 1.4 logging system LogManager
+ that fixes or works around many serious problems in the default
+ implementation. Since many frameworks and libraries (as well as the JDK
+ itself) use this logging facility, having robust support for it is an
+ essential requirement for many applications.
+
+Package: libjboss-logmanager-java-doc
+Architecture: all
+Section: doc
+Depends:
+ ${misc:Depends}
+Recommends:
+ ${maven:DocDepends},
+ ${maven:DocOptionalDepends}
+Suggests:
+ libjboss-logmanager-java
+Description: Documentation for JBoss Log Manager
+ An implementation of java.util.logging.LogManager which works around many
+ serious problems in the default logging facility.
+ .
+ This package contains the API documentation of libjboss-logmanager-java.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..6195ecd
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,15 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: JBoss Log Manager
+Source: https://github.com/jboss-logging/jboss-logmanager
+
+Files: *
+Copyright: 2014, Red Hat, Inc.
+License: Apache-2.0
+
+Files: debian/*
+Copyright: 2015, Markus Koschany <apo at gambaru.de>
+License: Apache-2.0
+
+License: Apache-2.0
+ On Debian systems, the full text of the Apache-2.0 license
+ can be found in the file '/usr/share/common-licenses/Apache-2.0'
diff --git a/debian/libjboss-logmanager-java-doc.doc-base.api b/debian/libjboss-logmanager-java-doc.doc-base.api
new file mode 100644
index 0000000..0a3ee32
--- /dev/null
+++ b/debian/libjboss-logmanager-java-doc.doc-base.api
@@ -0,0 +1,10 @@
+Document: libjboss-logmanager-java
+Title: API Javadoc for JBoss Log Manager
+Author: JBoss Log Manager developers
+Abstract: This is the API Javadoc provided for the
+ libjboss-logmanager-java library.
+Section: Programming
+
+Format: HTML
+Index: /usr/share/doc/libjboss-logmanager-java/api/index.html
+Files: /usr/share/doc/libjboss-logmanager-java/api/*
diff --git a/debian/libjboss-logmanager-java-doc.install b/debian/libjboss-logmanager-java-doc.install
new file mode 100644
index 0000000..edd166b
--- /dev/null
+++ b/debian/libjboss-logmanager-java-doc.install
@@ -0,0 +1 @@
+target/apidocs/* usr/share/doc/libjboss-logmanager-java/api
diff --git a/debian/libjboss-logmanager-java.poms b/debian/libjboss-logmanager-java.poms
new file mode 100644
index 0000000..5ad70f2
--- /dev/null
+++ b/debian/libjboss-logmanager-java.poms
@@ -0,0 +1,28 @@
+# List of POM files for the package
+# Format of this file is:
+# <path to pom file> [option]*
+# where option can be:
+#   --ignore: ignore this POM and its artifact if any
+#   --ignore-pom: don't install the POM. To use on POM files that are created
+#     temporarily for certain artifacts such as Javadoc jars. [mh_install, mh_installpoms]
+#   --no-parent: remove the <parent> tag from the POM
+#   --package=<package>: an alternative package to use when installing this POM
+#      and its artifact
+#   --has-package-version: to indicate that the original version of the POM is the same as the upstream part
+#      of the version for the package.
+#   --keep-elements=<elem1,elem2>: a list of XML elements to keep in the POM
+#      during a clean operation with mh_cleanpom or mh_installpom
+#   --artifact=<path>: path to the build artifact associated with this POM,
+#      it will be installed when using the command mh_install. [mh_install]
+#   --java-lib: install the jar into /usr/share/java to comply with Debian
+#      packaging guidelines
+#   --usj-name=<name>: name to use when installing the library in /usr/share/java
+#   --usj-version=<version>: version to use when installing the library in /usr/share/java
+#   --no-usj-versionless: don't install the versionless link in /usr/share/java
+#   --dest-jar=<path>: the destination for the real jar.
+#     It will be installed with mh_install. [mh_install]
+#   --classifier=<classifier>: Optional, the classifier for the jar. Empty by default.
+#   --site-xml=<location>: Optional, the location for site.xml if it needs to be installed.
+#     Empty by default. [mh_install]
+#
+pom.xml --no-parent --has-package-version
diff --git a/debian/maven.ignoreRules b/debian/maven.ignoreRules
new file mode 100644
index 0000000..29e4d77
--- /dev/null
+++ b/debian/maven.ignoreRules
@@ -0,0 +1,2 @@
+org.jboss.seven2six seven2six * * * *
+org.jboss.apiviz apiviz * * * *
diff --git a/debian/maven.properties b/debian/maven.properties
new file mode 100644
index 0000000..d66f1e8
--- /dev/null
+++ b/debian/maven.properties
@@ -0,0 +1,5 @@
+# Include here properties to pass to Maven during the build.
+# For example:
+#maven.test.skip=true
+maven.skipTests=true
+project.build.sourceEncoding=UTF-8
diff --git a/debian/maven.rules b/debian/maven.rules
new file mode 100644
index 0000000..1e1fb46
--- /dev/null
+++ b/debian/maven.rules
@@ -0,0 +1,2 @@
+junit junit jar s/4\..*/4.x/ * *
+org.jboss.logmanager jboss-logmanager jar s/.*/debian/ * *
diff --git a/debian/patches/disable-apiviz.patch b/debian/patches/disable-apiviz.patch
new file mode 100644
index 0000000..054d1a0
--- /dev/null
+++ b/debian/patches/disable-apiviz.patch
@@ -0,0 +1,29 @@
+From: Markus Koschany <apo at gambaru.de>
+Date: Tue, 3 Mar 2015 10:58:41 +0100
+Subject: disable apiviz
+
+Disable the apiviz JavaDoc doclet because it is not packaged yet.
+---
+ pom.xml | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/pom.xml b/pom.xml
+index b85fcf5..12a19f8 100644
+--- a/pom.xml
++++ b/pom.xml
+@@ -148,7 +148,7 @@
+             </plugin>
+         </plugins>
+     </build>
+-    <reporting>
++    <!-- <reporting>
+         <plugins>
+             <plugin>
+                 <artifactId>maven-javadoc-plugin</artifactId>
+@@ -170,5 +170,5 @@
+                 </configuration>
+             </plugin>
+         </plugins>
+-    </reporting>
++    </reporting> -->
+ </project>
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..fa19700
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+disable-apiviz.patch
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..4a061cf
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,9 @@
+#!/usr/bin/make -f
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/maven.mk
+
+JAVA_HOME := /usr/lib/jvm/default-java
+
+get-orig-source:
+	uscan --download-current-version --force-download --no-symlink
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..10dad09
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,5 @@
+version=3
+opts=dversionmangle=s/(\da?)[\+\.\-~](?:dfsg|debian|ds|repack|repacked)\.?\d*$/$1/,uversionmangle=s/_/./g \
+https://github.com/jboss-logging/jboss-logmanager/tags \
+.*/archive/(?:upstream/)?(?:v||version-|release-|X|R|r)(\d\S*)\.tar\.gz
+

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/jboss-logmanager.git



More information about the pkg-java-commits mailing list