summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuben Undheim <ruben.undheim@gmail.com>2018-11-09 22:20:28 +0100
committerRuben Undheim <ruben.undheim@gmail.com>2018-11-09 22:22:46 +0100
commitef708c07defab523a288d011cb40c9c497d537f9 (patch)
treed3202f5d18471f6c8c4649e1ae46ffad9503336c
parenta1890ef8f8c65c19601e4358ed49a4903ee5874a (diff)
New version fixing build on some archsdebian/0.2.1-3
-rw-r--r--debian/changelog9
-rw-r--r--debian/control3
-rwxr-xr-xdebian/rules3
3 files changed, 14 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index 174f2a0..3944e80 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,12 @@
+osmo-hlr (0.2.1-3) unstable; urgency=medium
+
+ * debian/control:
+ - Add my name to uploaders
+ * debian/rules:
+ - Disable tests on the architectures mips64el, mipsel and alpha.
+
+ -- Ruben Undheim <rubund@debian.org> Fri, 09 Nov 2018 22:19:28 +0100
+
osmo-hlr (0.2.1-2) unstable; urgency=medium
* Team upload
diff --git a/debian/control b/debian/control
index 1413c1e..6b99da2 100644
--- a/debian/control
+++ b/debian/control
@@ -2,7 +2,8 @@ Source: osmo-hlr
Section: net
Priority: optional
Maintainer: Debian Mobcom Maintainers <Debian-mobcom-maintainers@lists.alioth.debian.org>
-Uploaders: Thorsten Alteholz <debian@alteholz.de>
+Uploaders: Thorsten Alteholz <debian@alteholz.de>,
+ Ruben Undheim <rubund@debian.org>
Build-Depends: debhelper (>= 11),
pkg-config,
python-minimal,
diff --git a/debian/rules b/debian/rules
index f143440..3cfe3e8 100755
--- a/debian/rules
+++ b/debian/rules
@@ -19,6 +19,9 @@ override_dh_auto_test:
[ "${arch}" = "powerpc" ] || \
[ "${arch}" = "ppc64" ] || \
[ "${arch}" = "sparc64" ] || \
+ [ "${arch}" = "mips64el" ] || \
+ [ "${arch}" = "mipsel" ] || \
+ [ "${arch}" = "alpha" ] || \
[ "${arch}" = "mips" ] ; then \
echo "Do not care of test result on this architecture" ;\
else \