[Git][java-team/msv][master] 11 commits: Standards-Version updated to 4.2.1

Emmanuel Bourg gitlab at salsa.debian.org
Mon Nov 5 22:40:23 GMT 2018


Emmanuel Bourg pushed to branch master at Debian Java Maintainers / msv


Commits:
6c8c5bf0 by Emmanuel Bourg at 2018-11-05T21:23:31Z
Standards-Version updated to 4.2.1

- - - - -
3a6263c2 by Emmanuel Bourg at 2018-11-05T21:25:48Z
Wrap and sort

- - - - -
789cde21 by Emmanuel Bourg at 2018-11-05T21:25:55Z
Switch to debhelper level 11

- - - - -
686d8e86 by Emmanuel Bourg at 2018-11-05T21:29:29Z
Build with the DH sequencer instead of CDBS

- - - - -
e81ae6dc by Emmanuel Bourg at 2018-11-05T21:30:00Z
Use salsa.debian.org Vcs-* URLs

- - - - -
459af5a5 by Emmanuel Bourg at 2018-11-05T21:34:38Z
Fixed the build failure with Java 11 (Closes: #912359)

- - - - -
302bf507 by Emmanuel Bourg at 2018-11-05T21:36:29Z
Removed the unused ${shlibs:Depends} variable

- - - - -
8e64caec by Emmanuel Bourg at 2018-11-05T21:41:36Z
Changed the priority from extra to optional

- - - - -
6a7cf761 by Emmanuel Bourg at 2018-11-05T21:42:19Z
Removed the documentation from the package

- - - - -
5c47019e by Emmanuel Bourg at 2018-11-05T21:55:23Z
Track and download the new releases from GitHub

- - - - -
d2738750 by Emmanuel Bourg at 2018-11-05T22:37:24Z
Upload to unstable

- - - - -


9 changed files:

- debian/changelog
- debian/compat
- debian/control
- debian/copyright
- − debian/docs
- debian/maven.properties
- − debian/orig-tar.sh
- debian/rules
- debian/watch


Changes:

=====================================
debian/changelog
=====================================
@@ -1,3 +1,17 @@
+msv (2009.1+dfsg1-6) unstable; urgency=medium
+
+  * Team upload.
+  * Fixed the build failure with Java 11 (Closes: #912359)
+  * Build with the DH sequencer instead of CDBS
+  * Standards-Version updated to 4.2.1
+  * Switch to debhelper level 11
+  * Use salsa.debian.org Vcs-* URLs
+  * Changed the priority from extra to optional
+  * Removed the documentation from the package
+  * Track and download the new releases from GitHub
+
+ -- Emmanuel Bourg <ebourg at apache.org>  Mon, 05 Nov 2018 23:37:18 +0100
+
 msv (2009.1+dfsg1-5) unstable; urgency=medium
 
   * Team upload.


=====================================
debian/compat
=====================================
@@ -1 +1 @@
-7
+11


=====================================
debian/control
=====================================
@@ -1,19 +1,28 @@
 Source: msv
 Section: java
-Priority: extra
+Priority: optional
 Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
 Uploaders: Giovanni Mascellani <gio at debian.org>
-Build-Depends: debhelper (>= 7.0.50~), maven-debian-helper, default-jdk, cdbs,
- libisorelax-java, libjdom1-java, librelaxng-datatype-java, libxalan2-java,
- libxerces2-java, libxml-commons-resolver1.1-java, ant, junit4
-Standards-Version: 3.9.6
-Homepage: http://java.net/projects/msv
-Vcs-Git: git://anonscm.debian.org/pkg-java/msv.git
-Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-java/msv.git;a=summary
+Build-Depends:
+ ant,
+ debhelper (>= 11),
+ default-jdk,
+ junit4,
+ libisorelax-java,
+ libjdom1-java,
+ librelaxng-datatype-java,
+ libxalan2-java,
+ libxerces2-java,
+ libxml-commons-resolver1.1-java,
+ maven-debian-helper
+Standards-Version: 4.2.1
+Vcs-Git: https://salsa.debian.org/java-team/msv.git
+Vcs-Browser: https://salsa.debian.org/java-team/msv;a=summary
+Homepage: https://github.com/kohsuke/msv
 
 Package: libmsv-java
 Architecture: all
-Depends: ${shlibs:Depends}, ${misc:Depends}, ${maven:Depends}
+Depends: ${misc:Depends}, ${maven:Depends}
 Description: Sun multi-schema XML validator
  The Sun Multi-Schema XML Validator is a Java tool to validate XML
  documents against several kinds of XML schemata. It supports DTD,


=====================================
debian/copyright
=====================================
@@ -1,6 +1,10 @@
 Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0
 Upstream-Name: msv
 Source: http://java.net/projects/msv
+Files-Excluded: *.vsd
+                generator/*
+                *.jar
+                *.zip
 
 Files: *
 Copyright: © 1998-2009, Sun Microsystems, Inc.


=====================================
debian/docs deleted
=====================================
@@ -1,11 +0,0 @@
-readme.html
-msv/doc/acceptor.html
-msv/doc/commandline.html
-msv/doc/developer.html
-msv/doc/JARV_API.gif
-msv/doc/JARV.html
-msv/doc/JAXPmasquerading.html
-msv/doc/nativeAPI.html
-msv/doc/README.txt
-msv/doc/RNGDatatypeLibrary.html
-msv/doc/SAXfilter.gif


=====================================
debian/maven.properties
=====================================
@@ -1 +1,2 @@
 maven.test.failure.ignore=true
+maven.compiler.release=8


=====================================
debian/orig-tar.sh deleted
=====================================
@@ -1,15 +0,0 @@
-#!/bin/bash
-
-set -e
-
-VERSION="$2"
-DOWNLOADED_FILE="$3"
-PACKAGE="$(dpkg-parsechangelog | sed -n 's/^Source: //p')"
-TEMPDIR="$(mktemp -d)"
-DIR="${PACKAGE}-${VERSION}"
-
-rm -f "$DOWNLOADED_FILE"
-svn export "https://svn.java.net/svn/msv~svn/tags/msv-$VERSION" "$TEMPDIR/$DIR"
-find "$TEMPDIR/$DIR" -name '*.vsd' -delete
-GZIP=--best tar -c -z -f "../${PACKAGE}_$VERSION.orig.tar.gz" -C "$TEMPDIR" "$DIR"
-rm -fr "$TEMPDIR"


=====================================
debian/rules
=====================================
@@ -1,11 +1,4 @@
 #!/usr/bin/make -f
-# -*- makefile -*-
 
-# Uncomment this to turn on verbose mode.
-#export DH_VERBOSE=1
-
-include /usr/share/cdbs/1/rules/debhelper.mk
-include /usr/share/cdbs/1/class/maven.mk
-
-JAVA_HOME := /usr/lib/jvm/default-java
-DEB_INSTALL_CHANGELOGS_ALL := msv/doc/ChangeLog.txt
+%:
+	dh $@


=====================================
debian/watch
=====================================
@@ -1,3 +1,3 @@
-version=3
-opts=dversionmangle=s/\+dfsg.*// \
-https://java.net/projects/msv/sources/svn/show/tags .*/msv-([0-9]{4}\.[\d\.]+)\?.* debian ./debian/orig-tar.sh
+version=4
+opts="repack,compression=xz,dversionmangle=s/\+dfsg.*//" \
+https://github.com/kohsuke/msv/tags .*/msv(?:-core)?-([0-9]{4}\.[\d\.]+).tar.gz



View it on GitLab: https://salsa.debian.org/java-team/msv/compare/28aa7baf3d6ed67fa11aca2955685b6e7b903859...d2738750da09a8998df9e00d241ce79a8398c757

-- 
View it on GitLab: https://salsa.debian.org/java-team/msv/compare/28aa7baf3d6ed67fa11aca2955685b6e7b903859...d2738750da09a8998df9e00d241ce79a8398c757
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-java-commits/attachments/20181105/16858c3e/attachment.html>


More information about the pkg-java-commits mailing list