Emmanuel Bourg pushed to branch master at Debian Java Maintainers / xml-commons-external
Commits: 730603a7 by Niels Thykier at 2020-04-17T19:00:58+00:00 Import Debian changes 1.4.01-4 xml-commons-external (1.4.01-4) unstable; urgency=low * QA Upload. [ Niels Thykier ] * Set Rules-Requires-Root to no. * Bump debhelper-compat to 13. * Remove obsolete get-orig-source target (which just called uscan). * Bump Standards-Version to 4.5.0 - no additional changes required. * Bump Homepage field to use https://xerces.apache.org/xml-commons/ (which is where the previous homepage redirected to). * Drop old Vcs fields to (now) defunct Alioth. * Make debian/copyright use standard "public-domain" label as "license" for files under public domain to avoid false positive warnings from Lintian. [ Helmut Grohne ] * Mark all packages Multi-Arch: foreign. (Closes: #913430) - - - - - c2b946e7 by Emmanuel Bourg at 2020-05-11T00:37:35+02:00 Assigned the package back to the Java Team (Closes: #897313) - - - - - c3136cae by Emmanuel Bourg at 2020-05-11T00:37:47+02:00 Generate Java 7 compatible bytecode - - - - - 3a4e594a by Emmanuel Bourg at 2020-05-11T00:37:47+02:00 Removed the -doc package - - - - - 402aa607 by Emmanuel Bourg at 2020-05-11T00:41:15+02:00 Upload to unstable - - - - - 6 changed files: - debian/changelog - − debian/compat - debian/control - debian/copyright - − debian/libxml-commons-external-java-doc.install - debian/rules Changes: ===================================== debian/changelog ===================================== @@ -1,3 +1,33 @@ +xml-commons-external (1.4.01-5) unstable; urgency=medium + + * Team upload. + * Generate Java 7 compatible bytecode + * Assigned the package back to the Java Team (Closes: #897313) + * Removed the -doc package + + -- Emmanuel Bourg <[email protected]> Mon, 11 May 2020 00:40:50 +0200 + +xml-commons-external (1.4.01-4) unstable; urgency=low + + * QA Upload. + + [ Niels Thykier ] + * Set Rules-Requires-Root to no. + * Bump debhelper-compat to 13. + * Remove obsolete get-orig-source target (which just called uscan). + * Bump Standards-Version to 4.5.0 - no additional changes required. + * Bump Homepage field to use https://xerces.apache.org/xml-commons/ + (which is where the previous homepage redirected to). + * Drop old Vcs fields to (now) defunct Alioth. + * Make debian/copyright use standard "public-domain" label as + "license" for files under public domain to avoid false positive + warnings from Lintian. + + [ Helmut Grohne ] + * Mark all packages Multi-Arch: foreign. (Closes: #913430) + + -- Niels Thykier <[email protected]> Fri, 17 Apr 2020 19:00:58 +0000 + xml-commons-external (1.4.01-3) unstable; urgency=low * Team upload. ===================================== debian/compat deleted ===================================== @@ -1 +0,0 @@ -11 ===================================== debian/control ===================================== @@ -2,37 +2,24 @@ Source: xml-commons-external Section: java Priority: optional Maintainer: Debian Java Maintainers <[email protected]> -Uploaders: - Vincent Fourmond <[email protected]>, - Onkar Shinde <[email protected]> +Uploaders: Emmanuel Bourg <[email protected]> Build-Depends: - debhelper (>= 11), + debhelper-compat (= 13), default-jdk, javahelper, maven-repo-helper -Standards-Version: 4.1.3 -Vcs-Git: https://anonscm.debian.org/git/pkg-java/xml-commons-external.git -Vcs-Browser: https://anonscm.debian.org/cgit/pkg-java/xml-commons-external.git -Homepage: http://xml.apache.org/commons/ +Rules-Requires-Root: no +Standards-Version: 4.5.0 +Vcs-Git: https://salsa.debian.org/java-team/xml-commons-external.git +Vcs-Browser: https://salsa.debian.org/java-team/xml-commons-external +Homepage: https://xerces.apache.org/xml-commons/ Package: libxml-commons-external-java Architecture: all +Multi-Arch: foreign Depends: ${misc:Depends} Description: XML Commons external code - DOM, SAX, and JAXP, etc xml-commons is focused on common code and guidelines for xml projects. The first focus will be to organize and have common packaging for the various externally-defined standards code relating to XML - things like the DOM, SAX, and JAXP interfaces. - -Package: libxml-commons-external-java-doc -Section: doc -Architecture: all -Depends: ${misc:Depends} -Description: Documentation of XML Commons external API - xml-commons is focussed on common code and guidelines for xml - projects. The first focus will be to organize and have common - packaging for the various externally-defined standards code relating - to XML - things like the DOM, SAX, and JAXP interfaces. - . - This package contains class API documentation for XML Commons - external API. ===================================== debian/copyright ===================================== @@ -22,7 +22,7 @@ License: Apache-2.0 /usr/share/common-licenses/Apache-2.0 on debian systems. Files: org/xml/sax/* -License: PD +License: public-domain These files are in the public domain Files: org/w3c/css/sac/* ===================================== debian/libxml-commons-external-java-doc.install deleted ===================================== @@ -1 +0,0 @@ -api/* /usr/share/doc/libxml-commons-external-java/api/ ===================================== debian/rules ===================================== @@ -8,7 +8,7 @@ include /usr/share/dpkg/pkg-info.mk override_dh_auto_build: # Build all classes mkdir classes - javac -source 1.7 -d classes `find org/ javax/ -name '*.java'` + javac -source 7 -target 7 -d classes `find org/ javax/ -name '*.java'` # Build xml-apis-ext and xml-apis jar (cd classes/; jar -cvfm ../xml-apis-ext.jar ../manifest.commons \ @@ -16,15 +16,8 @@ override_dh_auto_build: (cd classes/; jar -cvfm ../xml-apis.jar ../manifest.commons \ `find -type f ! \( -wholename "*/sac/*" -o -wholename "*/smil/*" -o -wholename "*/svg/*" \)`) - # Build api documentation - mkdir -p api - javadoc -d api org.apache.xmlcommons org.w3c.css.sac - override_dh_link: dh_link dh_link -plibxml-commons-external-java /usr/share/java/xml-apis-ext-${DEB_VERSION_UPSTREAM}.jar /usr/share/java/xml-commons-external-${DEB_VERSION_UPSTREAM}.jar dh_link -plibxml-commons-external-java /usr/share/java/xml-apis-ext-${DEB_VERSION_UPSTREAM}.jar /usr/share/java/xml-commons-external.jar dh_link -plibxml-commons-external-java /usr/share/java/xml-apis-${DEB_VERSION_UPSTREAM}.jar /usr/share/java/jaxp-1.4.jar - -get-orig-source:: - uscan --force-download --rename View it on GitLab: https://salsa.debian.org/java-team/xml-commons-external/-/compare/5a85e98868ddeb564f8a16ea7e46251dee781c2c...402aa6078aa7fc3b3a647305cf3f855fe3045f25 -- View it on GitLab: https://salsa.debian.org/java-team/xml-commons-external/-/compare/5a85e98868ddeb564f8a16ea7e46251dee781c2c...402aa6078aa7fc3b3a647305cf3f855fe3045f25 You're receiving this email because of your account on salsa.debian.org.
_______________________________________________ pkg-java-commits mailing list [email protected] https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-java-commits

