Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (3)
less debug info to avoid running out of address space
· 47c508bc
Andreas Tille
authored
Mar 27, 2018
47c508bc
bedops-doc: Breaks: bedops
· 72d1f25e
Andreas Tille
authored
Mar 27, 2018
72d1f25e
Upload to unstable
· c594f054
Andreas Tille
authored
Mar 27, 2018
c594f054
Hide whitespace changes
Inline
Side-by-side
debian/changelog
View file @
c594f054
bedops (2.4.32+dfsg-2) unstable; urgency=medium
* Team upload.
[ Adrian Bunk ]
* less debug info to avoid running out of address space
Closes: #894156
[ Andreas Tille ]
* bedops-doc: Breaks: bedops (<= 2.4.32) (due to separated documentation)
Closes: #894143
-- Andreas Tille <tille@debian.org> Tue, 27 Mar 2018 10:10:36 +0200
bedops (2.4.32+dfsg-1) unstable; urgency=medium
* Team upload.
...
...
debian/control
View file @
c594f054
...
...
@@ -35,6 +35,7 @@ Section: doc
Depends: ${misc:Depends},
libjs-sphinxdoc,
libjs-mathjax
Breaks: bedops (<= 2.4.32)
Description: high-performance genomic feature operations (documentation)
BEDOPS is a suite of tools to address common questions raised in genomic
studies, mostly with regard to overlap and proximity relationships between
...
...
debian/rules
View file @
c594f054
...
...
@@ -10,6 +10,15 @@ include /usr/share/dpkg/pkg-info.mk
include /usr/share/dpkg/default.mk
include /usr/share/dpkg/architecture.mk
# less debug info to avoid running
# out of address space
ifneq (,$(filter $(DEB_HOST_ARCH), mips mipsel))
export DEB_CFLAGS_MAINT_APPEND = -g1
export DEB_CXXFLAGS_MAINT_APPEND = -g1
endif
docpkg := $(DEB_SOURCE)-doc
%:
...
...