[Git][clojure-team/ring-anti-forgery-clojure][master] 7 commits: Add changelog entry from NMU

Andreas Tille (@tille) gitlab at salsa.debian.org
Thu Feb 20 10:15:03 GMT 2025



Andreas Tille pushed to branch master at Debian Clojure Maintainers / ring-anti-forgery-clojure


Commits:
d9964d0a by Andreas Tille at 2025-02-20T11:09:27+01:00
Add changelog entry from NMU

- - - - -
f2d03ee9 by Andreas Tille at 2025-02-20T11:12:11+01:00
Fix watch file

- - - - -
7e60264c by Andreas Tille at 2025-02-20T11:13:16+01:00
d/rules: check DEB_BUILD_OPTIONS against nocheck

- - - - -
792f3eee by Andreas Tille at 2025-02-20T11:13:24+01:00
Standards-Version: 4.7.0 (routine-update)

- - - - -
8911b8f6 by Andreas Tille at 2025-02-20T11:13:24+01:00
debhelper-compat 13 (routine-update)

- - - - -
74c0fbcc by Andreas Tille at 2025-02-20T11:13:57+01:00
Reorder sequence of d/control fields by cme (routine-update)

- - - - -
bf9ed2ff by Andreas Tille at 2025-02-20T11:14:42+01:00
routine-update: Ready to upload to unstable

- - - - -


5 changed files:

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


Changes:

=====================================
debian/changelog
=====================================
@@ -1,9 +1,25 @@
-ring-anti-forgery-clojure (1.1.0-2) UNRELEASED; urgency=normal
+ring-anti-forgery-clojure (1.1.0-2) unstable; urgency=medium
+
+  * Team upload.
 
   [ Louis-Philippe Véronneau ]
   * d/control: Migrate to the Clojure Team.
 
- -- Louis-Philippe Véronneau <pollo at debian.org>  Sat, 08 Jan 2022 17:54:17 -0500
+  [ Andreas Tille ]
+  * Fix watch file
+  * 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)
+
+ -- Andreas Tille <tille at debian.org>  Thu, 20 Feb 2025 11:14:07 +0100
+
+ring-anti-forgery-clojure (1.1.0-1.1) unstable; urgency=medium
+
+  * Non maintainer upload by the Reproducible Builds team.
+  * No source change upload to rebuild on buildd with .buildinfo files.
+
+ -- Holger Levsen <holger at debian.org>  Wed, 06 Jan 2021 20:35:40 +0100
 
 ring-anti-forgery-clojure (1.1.0-1) unstable; urgency=medium
 


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


=====================================
debian/control
=====================================
@@ -1,29 +1,27 @@
 Source: ring-anti-forgery-clojure
-Section: java
-Priority: optional
 Maintainer: Debian Clojure Maintainers <team+clojure at tracker.debian.org>
 Uploaders: Apollon Oikonomopoulos <apoikos at debian.org>
-Build-Depends:
- debhelper (>= 10),
- javahelper (>= 0.32),
- maven-repo-helper (>= 1.7),
- clojure (>= 1.8),
- libtext-markdown-perl | markdown,
- libcrypto-random-clojure (>= 1.2.0),
- libcrypto-equality-clojure (>= 1.0.0),
- libhiccup-clojure (>= 1.0.5),
- libring-mock-clojure (>= 0.3.0),
- default-jdk-headless
-Standards-Version: 4.0.0
-Vcs-Git: https://salsa.debian.org/clojure-team/ring-anti-forgery-clojure.git
+Section: java
+Priority: optional
+Build-Depends: debhelper-compat (= 13),
+               javahelper,
+               maven-repo-helper,
+               clojure,
+               libtext-markdown-perl | markdown,
+               libcrypto-random-clojure,
+               libcrypto-equality-clojure,
+               libhiccup-clojure,
+               libring-mock-clojure,
+               default-jdk-headless
+Standards-Version: 4.7.0
 Vcs-Browser: https://salsa.debian.org/clojure-team/ring-anti-forgery-clojure
+Vcs-Git: https://salsa.debian.org/clojure-team/ring-anti-forgery-clojure.git
 Homepage: https://github.com/ring-clojure/ring-anti-forgery
 
 Package: libring-anti-forgery-clojure
 Architecture: all
-Depends:
- ${java:Depends},
- ${misc:Depends}
+Depends: ${java:Depends},
+         ${misc:Depends}
 Recommends: ${java:Recommends}
 Description: Ring middleware to prevent CSRF attacks
  ring-anti-forgery is a Ring middleware that prevents CSRF attacks via


=====================================
debian/rules
=====================================
@@ -30,6 +30,8 @@ override_jh_clean:
 	cat debian/footer.html >> $@
 
 override_dh_auto_test:
+ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
 	dh_auto_test
 	(cd test && find . -name "*.clj" | \
 		xargs --verbose clojure -cp $(CURDIR)/$(PRODUCED_JAR):$(CLASSPATH):$(TEST_CLASSPATH))
+endif


=====================================
debian/watch
=====================================
@@ -1,3 +1,4 @@
 version=4
-opts=filenamemangle=s!.*/archive/([\d.]+)\.tar\.gz!ring-anti-forgery-$1.tar.gz! \
- https://github.com/ring-clojure/ring-anti-forgery/releases .*/archive/([\d.]+)\.tar\.gz
+
+opts="filenamemangle=s%(?:.*?)?v?(\d[\d.]*)\.tar\.gz%@PACKAGE at -$1.tar.gz%" \
+  https://github.com/ring-clojure/ring-anti-forgery/tags (?:.*?/)?v?(\d[\d.]*)\.tar\.gz



View it on GitLab: https://salsa.debian.org/clojure-team/ring-anti-forgery-clojure/-/compare/652208c601c81dec089de56d845d553eadc946cd...bf9ed2fff88bb177b42d3bce63f6ec5cb223d1a9

-- 
View it on GitLab: https://salsa.debian.org/clojure-team/ring-anti-forgery-clojure/-/compare/652208c601c81dec089de56d845d553eadc946cd...bf9ed2fff88bb177b42d3bce63f6ec5cb223d1a9
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/20250220/a4b47122/attachment.htm>


More information about the pkg-java-commits mailing list