Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (3)
Standards-Version: 4.2.1
· 11eb1491
Andreas Tille
authored
Oct 08, 2018
11eb1491
Provide copies of manpages instead of broken symlinks
· cbaef838
Andreas Tille
authored
Oct 08, 2018
cbaef838
Upload to unstable
· d949172e
Andreas Tille
authored
Oct 08, 2018
d949172e
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
d949172e
murasaki (1.68.6-8) unstable; urgency=medium
* Standards-Version: 4.2.1
* Provide copies of manpages instead of broken symlinks
Closes: #910421
-- Andreas Tille <tille@debian.org> Mon, 08 Oct 2018 12:49:39 +0200
murasaki (1.68.6-7) unstable; urgency=medium
* debhelper 11
...
...
debian/control
View file @
d949172e
...
...
@@ -12,7 +12,7 @@ Build-Depends: debhelper (>= 11~),
libcrypto++-dev,
libpstreams-dev,
libopenmpi-dev
Standards-Version: 4.
1.5
Standards-Version: 4.
2.1
Vcs-Browser: https://salsa.debian.org/med-team/murasaki
Vcs-Git: https://salsa.debian.org/med-team/murasaki.git
Homepage: http://murasaki.dna.bio.keio.ac.jp/wiki/
...
...
debian/rules
View file @
d949172e
...
...
@@ -35,11 +35,11 @@ override_dh_installman-indep:
done
find $(CMANDIR) -empty -delete
override_dh_
link
:
dh_
link
override_dh_
installman-arch
:
dh_
installman -a
mkdir -p $(MMANDIR)
for man in $(MANDIR)/* ; do \
ln -s `basename
$${man}
`.gz
$(MMANDIR)/`basename $${man} .1`-mpi.1
.gz
; \
for man in $(MANDIR)/*
.1
; do \
cp -a
$${man} $(MMANDIR)/`basename $${man} .1`-mpi.1 ; \
done
override_dh_install-arch:
...
...