[Git][clojure-team/java-jmx-clojure][master] 10 commits: Fix urgency

Andreas Tille (@tille) gitlab at salsa.debian.org
Wed Feb 19 21:39:47 GMT 2025



Andreas Tille pushed to branch master at Debian Clojure Maintainers / java-jmx-clojure


Commits:
047799e9 by Andreas Tille at 2025-02-19T22:31:02+01:00
Fix urgency

- - - - -
bb5dd0c0 by Andreas Tille at 2025-02-19T22:31:49+01:00
Build-Depends: s/default-jdk/default-jdk-headless/

- - - - -
13e8ddf2 by Andreas Tille at 2025-02-19T22:33:12+01:00
d/rules: check DEB_BUILD_OPTIONS against nocheck

- - - - -
b1d915b0 by Andreas Tille at 2025-02-19T22:33:46+01:00
Standards-Version: 4.7.0 (routine-update)

- - - - -
fc9c9156 by Andreas Tille at 2025-02-19T22:33:46+01:00
debhelper-compat 13 (routine-update)

- - - - -
d220dcc7 by Andreas Tille at 2025-02-19T22:35:32+01:00
Reorder sequence of d/control fields by cme (routine-update)

- - - - -
5847e408 by Andreas Tille at 2025-02-19T22:35:32+01:00
Drop useless get-orig-source target (routine-update)

- - - - -
51a7f269 by Andreas Tille at 2025-02-19T22:35:32+01:00
Remove trailing whitespace in debian/rules (routine-update)

- - - - -
8d619e80 by Andreas Tille at 2025-02-19T22:38:01+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

- - - - -
0b435060 by Andreas Tille at 2025-02-19T22:38:46+01:00
Upload to unstable

- - - - -


5 changed files:

- debian/changelog
- − debian/compat
- debian/control
- debian/rules
- debian/watch


Changes:

=====================================
debian/changelog
=====================================
@@ -1,9 +1,21 @@
-java-jmx-clojure (0.3.4-2) UNRELEASED; urgency=normal
+java-jmx-clojure (0.3.4-2) unstable; urgency=medium
+
+  * Team upload.
 
   [ Louis-Philippe Véronneau ]
   * d/control: New email for the Clojure Team.
 
- -- Louis-Philippe Véronneau <pollo at debian.org>  Sat, 08 Jan 2022 18:33:09 -0500
+  [ Andreas Tille ]
+  * Build-Depends: s/default-jdk/default-jdk-headless/
+  * d/rules: check DEB_BUILD_OPTIONS against nocheck
+  * Standards-Version: 4.7.0 (routine-update)
+  * debhelper-compat 13 (routine-update)
+  * Reorder sequence of d/control fields by cme (routine-update)
+  * Drop useless get-orig-source target (routine-update)
+  * Remove trailing whitespace in debian/rules (routine-update)
+  * Update watch file format version to 4.
+
+ -- Andreas Tille <tille at debian.org>  Wed, 19 Feb 2025 22:38:08 +0100
 
 java-jmx-clojure (0.3.4-1) unstable; urgency=medium
 


=====================================
debian/compat deleted
=====================================
@@ -1 +0,0 @@
-10


=====================================
debian/control
=====================================
@@ -1,22 +1,23 @@
 Source: java-jmx-clojure
-Section: java
-Priority: optional
 Maintainer: Debian Clojure Maintainers <team+clojure at tracker.debian.org>
 Uploaders: Apollon Oikonomopoulos <apoikos at debian.org>
-Build-Depends: clojure (>= 1.8),
-               debhelper (>= 10),
-               default-jdk,
-               javahelper (>= 0.32),
+Section: java
+Priority: optional
+Build-Depends: clojure,
+               debhelper-compat (= 13),
+               default-jdk-headless,
+               javahelper,
                libtext-markdown-perl | markdown,
-               maven-repo-helper (>= 1.5~)
-Standards-Version: 4.0.0
-Vcs-Git: https://anonscm.debian.org/git/pkg-clojure/java-jmx-clojure.git
-Vcs-Browser: https://anonscm.debian.org/cgit/pkg-clojure/java-jmx-clojure.git;a=summary
+               maven-repo-helper
+Standards-Version: 4.7.0
+Vcs-Browser: https://salsa.debian.org/clojure-team/java-jmx-clojure
+Vcs-Git: https://salsa.debian.org/clojure-team/java-jmx-clojure.git
 Homepage: https://github.com/clojure/java.jmx
 
 Package: libjava-jmx-clojure
 Architecture: all
-Depends: ${java:Depends}, ${misc:Depends}
+Depends: ${java:Depends},
+         ${misc:Depends}
 Recommends: ${java:Recommends}
 Description: produce and consume JMX beans from Clojure
  java.jmx is a Clojure library for producing and consuming JMX beans.


=====================================
debian/rules
=====================================
@@ -17,9 +17,11 @@ override_jh_build: $(MDWN_DOCS)
 	mkdir -p $(CURDIR)/doc/html && mv $^ $(CURDIR)/doc/html
 
 override_dh_auto_test:
+ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
 	dh_auto_test
 	(cd src/test/clojure && \
 	  find . -name "test_*.clj" | xargs clojure -cp $(CURDIR)/$(PRODUCED_JAR))
+endif
 
 override_jh_classpath:
 	jh_classpath $(PRODUCED_JAR)
@@ -28,15 +30,13 @@ override_jh_installlibs:
 	jh_installlibs $(PRODUCED_JAR)
 
 override_dh_installdocs:
-	dh_installdocs $(CURDIR)/doc/html $(CURDIR)/*.md 
+	dh_installdocs $(CURDIR)/doc/html $(CURDIR)/*.md
 
 override_jh_clean:
 	jh_clean
 	rm -f $(CURDIR)/$(PRODUCED_JAR)
 	rm -rf $(CURDIR)/doc/html
 
-get-orig-source:
-	uscan --download-version $(DEB_VERSION_UPSTREAM) --force-download --rename
 
 %.html:%.md
 	@echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"' \


=====================================
debian/watch
=====================================
@@ -1,2 +1,2 @@
-version=3
+version=4
 https://github.com/clojure/java.jmx/tags .*\-([\d\.]+)\.tar\.gz



View it on GitLab: https://salsa.debian.org/clojure-team/java-jmx-clojure/-/compare/b3d955ea35b76716e4ec7f53eff16cf7cc1a3428...0b43506035a41f0f00310e97014364bd6326b3d2

-- 
View it on GitLab: https://salsa.debian.org/clojure-team/java-jmx-clojure/-/compare/b3d955ea35b76716e4ec7f53eff16cf7cc1a3428...0b43506035a41f0f00310e97014364bd6326b3d2
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/20250219/41073b21/attachment.htm>


More information about the pkg-java-commits mailing list