Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (4)
QA-build with Salsa.
· 22403e2c
Charles Plessy
authored
Feb 13, 2019
22403e2c
Disable the shuffle test on other 32-bit architectures.
· 72faeba5
Charles Plessy
authored
Feb 13, 2019
72faeba5
Restrict build to little-endian release architectures.
· 25d45b7a
Charles Plessy
authored
Feb 13, 2019
Closes: #890117
25d45b7a
Provisional changelog.
· a65041e2
Charles Plessy
authored
Feb 13, 2019
a65041e2
Hide whitespace changes
Inline
Side-by-side
debian/changelog
View file @
a65041e2
bedtools (2.27.1+dfsg-4) UNRELEASED; urgency=medium
* Disable the shuffle test on other 32-bit architectures.
* Restrict build to little-endian release architectures. Closes: #890117
* QA-build with Salsa.
-- Charles Plessy <plessy@debian.org> Wed, 13 Feb 2019 22:14:54 +0900
bedtools (2.27.1+dfsg-3) unstable; urgency=medium
* Team upload.
...
...
debian/control
View file @
a65041e2
...
...
@@ -14,7 +14,7 @@ Vcs-Git: https://salsa.debian.org/med-team/bedtools.git
Homepage: https://github.com/arq5x/bedtools2
Package: bedtools
Architecture: a
ny
Architecture: a
md64 arm64 armel armhf i386 mips64el mipsel ppc64el
Depends: ${shlibs:Depends},
${misc:Depends}
Conflicts: filo
...
...
debian/gitlab-ci.yml
0 → 100644
View file @
a65041e2
include
:
-
https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/salsa-ci.yml
-
https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/pipeline-jobs.yml
variables
:
RELEASE
:
'
unstable'
debian/rules
View file @
a65041e2
...
...
@@ -40,11 +40,11 @@ override_dh_fixperms-arch:
override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
ifneq (,$(filter $(DEB_HOST_ARCH),i386 kfreebsd-i386 hurd-i386))
ifneq (,$(filter $(DEB_HOST_ARCH),i386 kfreebsd-i386 hurd-i386
armel armhf mipsel
))
mv test/shuffle debian/
endif
dh_auto_test
ifneq (,$(filter $(DEB_HOST_ARCH),i386 kfreebsd-i386 hurd-i386))
ifneq (,$(filter $(DEB_HOST_ARCH),i386 kfreebsd-i386 hurd-i386
armel armhf mipsel
))
mv debian/shuffle test/
endif
endif