Commit 755d2ecd authored by Clint Adams's avatar Clint Adams
Browse files

githash: work around testsuite build weirdness

parent ecfe2b43
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
haskell-githash (0.1.3.1-3) unstable; urgency=medium

  * Work around the weirdness of a testsuite that needs to be built
    in a git repository with at least one commit in it.

 -- Clint Adams <clint@debian.org>  Sat, 31 Aug 2019 15:13:42 -0400

haskell-githash (0.1.3.1-2) unstable; urgency=medium

  * Gratuitous sourceful post-NEW upload.
+1 −0
Original line number Diff line number Diff line
@@ -14,6 +14,7 @@ Build-Depends: debhelper (>= 10),
 libghc-temporary-prof,
 libghc-unliftio-dev,
 libghc-unliftio-prof,
 git <!nocheck>,
Build-Depends-Indep: ghc-doc,
Standards-Version: 4.4.0
Homepage: https://github.com/snoyberg/githash#readme
+7 −0
Original line number Diff line number Diff line
@@ -7,3 +7,10 @@ DEB_DEFAULT_COMPILER = ghc

include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/hlibrary.mk

clean::
	if ! test -d .git; then \
	git init; \
	git add README.md; \
	git commit -m "this is terrible"; \
	fi