Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
haskell-devscripts
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Debian Haskell Group
haskell-devscripts
Commits
57fe7663
Commit
57fe7663
authored
5 years ago
by
Ilias Tsitsimpis
Browse files
Options
Downloads
Patches
Plain Diff
Fix bug in install_doc_recipe() causing builds to fail
parent
688edbab
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Dh_Haskell.sh
+5
-3
5 additions, 3 deletions
Dh_Haskell.sh
debian/changelog
+8
-0
8 additions, 0 deletions
debian/changelog
with
13 additions
and
3 deletions
Dh_Haskell.sh
+
5
−
3
View file @
57fe7663
...
...
@@ -642,10 +642,12 @@ install_doc_recipe(){
# either libghc-*-dev or all the binary packages, neither of
# which is desirable (see dh_link (1)). So we just create a
# (policy-compliant) symlink ourselves
source
=
`
find
debian/
${
PKG
}
/
${
htmldir
}
-name
"*
.txt"
`
source
=
"
debian/
${
PKG
}
/
${
htmldir
}
/
${
CABAL_PACKAGE
}
.txt"
dest
=
debian/
${
PKG
}${
hoogle
}${
PKG
}
.txt
run
mkdir
-p
`
dirname
$dest
`
run
ln
-rs
-T
$source
$dest
if
[
-f
${
source
}
]
;
then
run
mkdir
-p
`
dirname
$dest
`
run
ln
-rs
-T
$source
$dest
fi
fi
run dh_haskell_depends
-p
${
PKG
}
# PS4=$PS5
...
...
This diff is collapsed.
Click to expand it.
debian/changelog
+
8
−
0
View file @
57fe7663
haskell-devscripts (0.15.3) unstable; urgency=medium
* Fix bug in install_doc_recipe() which wrongly assumed that
${CABAL_PACKAGE}.txt was the only txt file generated by haddock
(Closes: #952617).
-- Ilias Tsitsimpis <iliastsi@debian.org> Wed, 26 Feb 2020 20:38:16 +0200
haskell-devscripts (0.15.2) unstable; urgency=medium
* Ensure build fails when dh_haskell_{depends,provides} fail
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment