[Git][java-team/jayway-jsonpath][master] 6 commits: Standards-Version updated to 4.2.1
Emmanuel Bourg
gitlab at salsa.debian.org
Thu Sep 6 08:21:45 BST 2018
Emmanuel Bourg pushed to branch master at Debian Java Maintainers / jayway-jsonpath
Commits:
7f500b09 by Emmanuel Bourg at 2018-09-06T07:09:15Z
Standards-Version updated to 4.2.1
- - - - -
ae3e4145 by Emmanuel Bourg at 2018-09-06T07:09:22Z
Switch to debhelper level 11
- - - - -
e4a2c020 by Emmanuel Bourg at 2018-09-06T07:09:28Z
Use salsa.debian.org Vcs-* URLs
- - - - -
d4b4ee5b by Emmanuel Bourg at 2018-09-06T07:10:01Z
Wrap and sort
- - - - -
41b15c72 by Emmanuel Bourg at 2018-09-06T07:20:06Z
Fixed the compatibility with Gradle 3.4+ (Closes: #894292)
- - - - -
11ceba98 by Emmanuel Bourg at 2018-09-06T07:20:16Z
Upload to unstable
- - - - -
7 changed files:
- debian/changelog
- debian/compat
- debian/control
- + debian/patches/03-gradle-compatibility.patch
- debian/patches/series
- debian/rules
- debian/watch
Changes:
=====================================
debian/changelog
=====================================
@@ -1,3 +1,12 @@
+jayway-jsonpath (2.0.0-4) unstable; urgency=medium
+
+ * Fixed the compatibility with Gradle 3.4+ (Closes: #894292)
+ * Standards-Version updated to 4.2.1
+ * Switch to debhelper level 11
+ * Use salsa.debian.org Vcs-* URLs
+
+ -- Emmanuel Bourg <ebourg at apache.org> Thu, 06 Sep 2018 09:20:10 +0200
+
jayway-jsonpath (2.0.0-3) unstable; urgency=medium
[ Kai-Chung Yan ]
=====================================
debian/compat
=====================================
@@ -1 +1 @@
-10
+11
=====================================
debian/control
=====================================
@@ -3,25 +3,35 @@ Section: java
Priority: optional
Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
Uploaders: Emmanuel Bourg <ebourg at apache.org>
-Build-Depends: debhelper (>= 10), default-jdk, gradle-debian-helper (>= 1.3), maven-repo-helper
-Build-Depends-Indep: junit4,
- libcommons-io-java,
- libgoogle-gson-java,
- libhamcrest-java,
- libjackson-json-java,
- libjackson2-databind-java,
- libjson-smart-java (>= 2.1),
- libmaven-bundle-plugin-java,
- libslf4j-java
-Standards-Version: 3.9.8
-Vcs-Git: https://anonscm.debian.org/git/pkg-java/jayway-jsonpath.git
-Vcs-Browser: https://anonscm.debian.org/cgit/pkg-java/jayway-jsonpath.git
+Build-Depends:
+ debhelper (>= 11~),
+ default-jdk,
+ gradle-debian-helper (>= 1.3),
+ junit4,
+ libcommons-io-java,
+ libgoogle-gson-java,
+ libhamcrest-java,
+ libjackson-json-java,
+ libjackson2-databind-java,
+ libjson-smart-java (>= 2.1),
+ libmaven-bundle-plugin-java,
+ libslf4j-java,
+ maven-repo-helper
+Standards-Version: 4.2.1
+Vcs-Git: https://salsa.debian.org/java-team/jayway-jsonpath.git
+Vcs-Browser: https://salsa.debian.org/java-team/jayway-jsonpath
Homepage: https://github.com/jayway/JsonPath
Package: libjsonpath-java
Architecture: all
-Depends: ${misc:Depends}, libhamcrest-java, libjson-smart-java, libslf4j-java
-Suggests: libgoogle-gson-java, libjackson2-databind-java
+Depends:
+ libhamcrest-java,
+ libjson-smart-java,
+ libslf4j-java,
+ ${misc:Depends}
+Suggests:
+ libgoogle-gson-java,
+ libjackson2-databind-java
Description: Jayway JsonPath - XPath like expressions for JSON
Jayway JsonPath is a Java port of Stefan Goessner JSONPath
implementation. It provides a XPath like syntax to query JSON
=====================================
debian/patches/03-gradle-compatibility.patch
=====================================
@@ -0,0 +1,34 @@
+Description: Fixes the compatibility with Gradle 3.4+
+Author: Emmanuel Bourg <ebourg at apache.org>
+Forwarded: no
+--- a/json-path/build.gradle
++++ b/json-path/build.gradle
+@@ -1,8 +1,6 @@
+ apply from: "$rootDir/gradle/publishMaven.gradle"
+
+
+-displayName = "Json Path"
+-
+ description = "Java port of Stefan Goessner JsonPath."
+
+ jar {
+--- a/json-path-assert/build.gradle
++++ b/json-path-assert/build.gradle
+@@ -1,7 +1,5 @@
+ apply from: "$rootDir/gradle/publishMaven.gradle"
+
+-displayName = "JsonPath Assert"
+-
+ description = "Assertions on Json using JsonPath"
+
+ jar {
+--- a/json-path-web-test/build.gradle
++++ b/json-path-web-test/build.gradle
+@@ -1,7 +1,5 @@
+ apply plugin: 'application'
+
+-displayName = "JsonPath Test Bench"
+-
+ description = "Web app that compares different JsonPath implementations."
+
+ mainClassName = 'com.jayway.jsonpath.web.boot.Main'
=====================================
debian/patches/series
=====================================
@@ -1,2 +1,3 @@
01-disable-binary-compatibility-report.patch
02-disable-shadow-plugin.patch
+03-gradle-compatibility.patch
=====================================
debian/rules
=====================================
@@ -5,6 +5,3 @@
override_dh_auto_build:
dh_auto_build -- jar install -x :json-path-web-test:jar -x :json-path:javadoc -x :json-path-web-test:install
-
-get-orig-source:
- uscan --download-current-version --force-download --no-symlink
=====================================
debian/watch
=====================================
@@ -1,2 +1,3 @@
-version=3
+version=4
+opts="repack,compression=xz" \
https://github.com/jayway/JsonPath/tags .*/(?:.*?)([\d\.]+)\.tar\.gz
View it on GitLab: https://salsa.debian.org/java-team/jayway-jsonpath/compare/1078e15e50fb4d31f509f6c518bdd1a39b65efca...11ceba986a0d1903de11a130173c0ec5dd32eff1
--
View it on GitLab: https://salsa.debian.org/java-team/jayway-jsonpath/compare/1078e15e50fb4d31f509f6c518bdd1a39b65efca...11ceba986a0d1903de11a130173c0ec5dd32eff1
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/20180906/957f7eb3/attachment.html>
More information about the pkg-java-commits
mailing list