[Git][java-team/scala-parser-combinators][master] 9 commits: Fix Vcs fields
Andreas Tille (@tille)
gitlab at salsa.debian.org
Sun Jul 20 09:56:38 BST 2025
Andreas Tille pushed to branch master at Debian Java Maintainers / scala-parser-combinators
Commits:
2dea57ae by Andreas Tille at 2025-07-20T10:40:09+02:00
Fix Vcs fields
- - - - -
905ca101 by Andreas Tille at 2025-07-20T10:41:11+02:00
Standards-Version: 4.7.2 (routine-update)
- - - - -
1d294745 by Andreas Tille at 2025-07-20T10:41:11+02:00
debhelper-compat 13 (routine-update)
- - - - -
5d978ce5 by Andreas Tille at 2025-07-20T10:41:20+02:00
Secure URI in copyright format (routine-update)
- - - - -
77e1d63e by Andreas Tille at 2025-07-20T10:41:20+02:00
Drop useless get-orig-source target (routine-update)
- - - - -
40b6e2cd by Andreas Tille at 2025-07-20T10:41:20+02:00
Remove trailing whitespace in debian/rules (routine-update)
- - - - -
baa01bf4 by Andreas Tille at 2025-07-20T10:48:04+02:00
Do not parse d/changelog (routine-update)
- - - - -
dc3677bb by Andreas Tille at 2025-07-20T09:48:04+01:00
Trim trailing whitespace.
Changes-By: lintian-brush
Fixes: lintian: trailing-whitespace
See-also: https://lintian.debian.org/tags/trailing-whitespace.html
- - - - -
259648f8 by Andreas Tille at 2025-07-20T09:48:04+01:00
Update watch file format version to 4.
Changes-By: lintian-brush
Fixes: lintian: older-debian-watch-file-standard
See-also: https://lintian.debian.org/tags/older-debian-watch-file-standard.html
- - - - -
6 changed files:
- debian/changelog
- − debian/compat
- debian/control
- debian/copyright
- debian/rules
- debian/watch
Changes:
=====================================
debian/changelog
=====================================
@@ -1,3 +1,18 @@
+scala-parser-combinators (1.0.3-4) UNRELEASED; urgency=medium
+
+ * Team upload.
+ * Fix Vcs fields
+ * Standards-Version: 4.7.2 (routine-update)
+ * debhelper-compat 13 (routine-update)
+ * Secure URI in copyright format (routine-update)
+ * Drop useless get-orig-source target (routine-update)
+ * Remove trailing whitespace in debian/rules (routine-update)
+ * Do not parse d/changelog (routine-update)
+ Trim trailing whitespace.
+ Update watch file format version to 4.
+
+ -- Andreas Tille <tille at debian.org> Sun, 20 Jul 2025 10:39:51 +0200
+
scala-parser-combinators (1.0.3-3) unstable; urgency=medium
* Added the missing build dependency on default-jdk (Closes: #789743)
=====================================
debian/compat deleted
=====================================
@@ -1 +0,0 @@
-9
=====================================
debian/control
=====================================
@@ -1,12 +1,15 @@
Source: scala-parser-combinators
-Section: devel
-Priority: optional
Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
Uploaders: Emmanuel Bourg <ebourg at apache.org>
-Build-Depends: debhelper (>= 9), default-jdk, maven-repo-helper, scala (>= 2.11)
-Standards-Version: 3.9.6
-Vcs-Browser: https://anonscm.debian.org/cgit/pkg-java/scala-parser-combinators.git
-Vcs-Git: git://anonscm.debian.org/pkg-java/scala-parser-combinators.git
+Section: devel
+Priority: optional
+Build-Depends: debhelper-compat (= 13),
+ default-jdk,
+ maven-repo-helper,
+ scala
+Standards-Version: 4.7.2
+Vcs-Browser: https://salsa.debian.org/java-team/scala-parser-combinators
+Vcs-Git: https://salsa.debian.org/java-team/scala-parser-combinators.git
Homepage: https://github.com/scala/scala-parser-combinators
Package: scala-parser-combinators
=====================================
debian/copyright
=====================================
@@ -1,4 +1,4 @@
-Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: Scala Standard Parser Combinator Library
Source: https://github.com/scala/scala-parser-combinators
=====================================
debian/rules
=====================================
@@ -3,26 +3,22 @@
%:
dh $@ --with maven_repo_helper
-PACKAGE=$(shell dpkg-parsechangelog --show-field Source)
+include /usr/share/dpkg/default.mk
SCALA_VERSION=$(shell scala -version 2>&1 | cut -f 5 -d ' ')
SCALA_MAJOR=$(shell scala -version 2>&1 | cut -f 5 -d ' ' | cut -f 1 -d '.')
SCALA_MINOR=$(shell scala -version 2>&1 | cut -f 5 -d ' ' | cut -f 2 -d '.')
SCALA_BINARY_VERSION=$(SCALA_MAJOR).$(SCALA_MINOR)
-VERSION=$(shell dpkg-parsechangelog | sed -rne 's/^Version: ([0-9.]+)[-+].*$$/\1/p')
override_dh_auto_build:
mkdir -p target/classes
scalac -d target/classes $(shell find src/main/scala -name *.scala)
-
- echo "scala.version.number=$(SCALA_VERSION)" >> target/classes/$(PACKAGE).properties
- echo "scala.binary.version.number=$(SCALA_BINARY_VERSION)" >> target/classes/$(PACKAGE).properties
- echo "version.number=$(VERSION)" >> target/classes/$(PACKAGE).properties
-
- jar cfm target/$(PACKAGE).jar debian/manifest -C target/classes .
+
+ echo "scala.version.number=$(SCALA_VERSION)" >> target/classes/$(DEB_SOURCE).properties
+ echo "scala.binary.version.number=$(SCALA_BINARY_VERSION)" >> target/classes/$(DEB_SOURCE).properties
+ echo "version.number=$(DEB_VERSION_UPSTREAM)" >> target/classes/$(DEB_SOURCE).properties
+
+ jar cfm target/$(DEB_SOURCE).jar debian/manifest -C target/classes .
override_dh_auto_clean:
rm -Rf target
-
-get-orig-source:
- uscan --download-current-version --rename
=====================================
debian/watch
=====================================
@@ -1,2 +1,2 @@
-version=3
+version=4
https://github.com/scala/scala-parser-combinators/tags .*/v([\d\.]+).tar.gz
View it on GitLab: https://salsa.debian.org/java-team/scala-parser-combinators/-/compare/8eaa11df21973b628e56d007fa1536783c99eda1...259648f8eebbc24ca32171a06f900a545859fd5f
--
View it on GitLab: https://salsa.debian.org/java-team/scala-parser-combinators/-/compare/8eaa11df21973b628e56d007fa1536783c99eda1...259648f8eebbc24ca32171a06f900a545859fd5f
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/20250720/8edf9960/attachment.htm>
More information about the pkg-java-commits
mailing list