Skip to content
Commits on Source (3)
clj-time-clojure (0.14.0-2) unstable; urgency=medium
* Team upload.
* Sort filenames for tests found using find, to ensure a reproducible
list of test files, as order matters for successful test runs. This
fixes the intermittent FTBFS due to test failures (Closes: #917743).
* Update Vcs-{Browser,Git} to point to salsa (alioth's replacement).
-- Cyril Brulebois <kibi@debian.org> Fri, 08 Feb 2019 14:23:34 +0000
clj-time-clojure (0.14.0-1) unstable; urgency=medium
* Initial release (Closes: #847713)
......
......@@ -12,8 +12,8 @@ Build-Depends: clojure (>= 1.8),
markdown,
maven-repo-helper (>= 1.5~)
Standards-Version: 4.0.0
Vcs-Git: https://anonscm.debian.org/git/pkg-java/clj-time-clojure.git
Vcs-Browser: https://anonscm.debian.org/git/pkg-java/clj-time-clojure.git
Vcs-Git: https://salsa.debian.org/java-team/clj-time-clojure.git
Vcs-Browser: https://salsa.debian.org/java-team/clj-time-clojure
Homepage: https://github.com/clj-time/clj-time
Package: libclj-time-clojure
......
......@@ -25,8 +25,11 @@ override_jh_clean:
override_jh_classpath:
jh_classpath $(PRODUCED_JAR)
# Sorting the filenames according to the C locale is sufficient to get a
# successful run as of 0.14.0 but further updates might need to encode a
# specific sequence instead (#917743):
override_dh_auto_test:
(cd test && find . -name '*.clj' | \
(cd test && find . -name '*.clj' | LC_ALL=C sort | \
xargs --verbose clojure -cp $(CURDIR)/$(PRODUCED_JAR):$(CLASSPATH):$(TEST_CLASSPATH))
get-orig-source:
......