Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
work around old timestamps
· 359f53d3
Clint Adams
authored
Jul 27, 2019
359f53d3
changelog for 0.15.0
· 5aecf2c4
Clint Adams
authored
Jul 27, 2019
5aecf2c4
Show whitespace changes
Inline
Side-by-side
Dh_Haskell.sh
View file @
5aecf2c4
...
...
@@ -443,6 +443,16 @@ make_setup_recipe(){
configure_recipe
(){
# local PS5=$PS4; PS4=" + configure_recipe> "; set -x
# dak gets all neurotic about file timestamps older than 1975
# new tarballs from Hackage have files with mtimes at the
# beginning of the epoch, so work around this pair of silliness
# by setting old mtimes to 1998
reftime
=
$(
mktemp
)
touch
-d
1975-01-01
"
${
reftime
}
"
find
.
\!
-newer
"
${
reftime
}
"
-exec
touch
-d
1998-01-01
{}
\;
rm
"
${
reftime
}
"
hc
=
`
packages_hc
`
ENABLE_PROFILING
=
`
{
for
i
in
${
DEB_PACKAGES
}
;
do
package_ext
$i
|
grep
prof
;
done
;
}
|
LC_ALL
=
C
sort
-u
|
sed
's/prof/--enable-library-profiling/'
`
...
...
debian/changelog
View file @
5aecf2c4
haskell-devscripts (0.15.0) unstable; urgency=medium
* Work around old timestamps in new Hackage tarballs.
-- Clint Adams <clint@debian.org> Sat, 27 Jul 2019 11:56:27 -0400
haskell-devscripts (0.14.0) unstable; urgency=medium
* Bump compat level
...
...