[Pkg-libvirt-commits] [Git][libvirt-team/virt-what][debian/sid] 6 commits: Determine architecture via 'uname -m'

Guido Günther gitlab at salsa.debian.org
Mon Jan 29 09:18:23 UTC 2018


Guido Günther pushed to branch debian/sid at Libvirt Packaging Team / virt-what


Commits:
54d1d6f2 by Guido Günther at 2018-01-29T09:54:59+01:00
Determine architecture via 'uname -m'

Closes: #888690

- - - - -
b01d449d by Guido Günther at 2018-01-29T10:01:39+01:00
Add myself to uploaders

- - - - -
13216500 by Guido Günther at 2018-01-29T10:01:39+01:00
Bump standards version to 4.1.3

- - - - -
5d4e9156 by Guido Günther at 2018-01-29T10:01:39+01:00
Drop dh-autoreconf build-dep

- - - - -
c6f84a81 by Guido Günther at 2018-01-29T10:10:33+01:00
Move to salsa.d.o

- - - - -
e040e755 by Guido Günther at 2018-01-29T10:15:49+01:00
Document changes and release 1.18-2

- - - - -


5 changed files:

- debian/changelog
- debian/control
- + debian/patches/Determine-architecture-via-uname-m.patch
- debian/patches/Remove-bashisms.patch
- debian/patches/series


Changes:

=====================================
debian/changelog
=====================================
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,13 @@
+virt-what (1.18-2) unstable; urgency=medium
+
+  * Determine architecture via 'uname -m' (Closes: #888690)
+  * Add myself to uploaders
+  * Bump standards version to 4.1.3
+  * Drop dh-autoreconf build-dep
+  * Move to salsa.d.o
+
+ -- Guido Günther <agx at sigxcpu.org>  Mon, 29 Jan 2018 10:15:34 +0100
+
 virt-what (1.18-1) unstable; urgency=medium
 
   * [3d21237] New upstream version 1.18


=====================================
debian/control
=====================================
--- a/debian/control
+++ b/debian/control
@@ -2,11 +2,11 @@ Source: virt-what
 Section: admin
 Priority: optional
 Maintainer: Debian Libvirt Maintainers <pkg-libvirt-maintainers at lists.alioth.debian.org>
-Uploaders: Joao Eriberto Mota Filho <eriberto at debian.org>
-Build-Depends: debhelper (>= 10), dh-autoreconf
-Standards-Version: 3.9.8
-Vcs-Git: https://anonscm.debian.org/git/pkg-libvirt/virt-what.git
-Vcs-Browser: https://anonscm.debian.org/git/pkg-libvirt/virt-what.git
+Uploaders: Joao Eriberto Mota Filho <eriberto at debian.org>, Guido Günther <agx at sigxcpu.org>
+Build-Depends: debhelper (>= 10)
+Standards-Version: 4.1.3
+Vcs-Git: https://salsa.debian.org/libvirt-team/virt-what.git
+Vcs-Browser: https://salsa.debian.org/libvirt-team/virt-what
 Homepage: https://people.redhat.com/~rjones/virt-what/
 
 Package: virt-what


=====================================
debian/patches/Determine-architecture-via-uname-m.patch
=====================================
--- /dev/null
+++ b/debian/patches/Determine-architecture-via-uname-m.patch
@@ -0,0 +1,28 @@
+From: =?utf-8?q?Guido_G=C3=BCnther?= <agx at sigxcpu.org>
+Date: Sat, 27 Jan 2018 13:11:36 +0100
+Subject: Determine architecture via 'uname -m'
+
+'uname -p' only gives unknown on x86_64, i386, arm6l (rpi) and aarch64
+(scaleways).
+
+Closes: #888690
+---
+ virt-what.in | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/virt-what.in b/virt-what.in
+index 56af1ad..97ebd79 100644
+--- a/virt-what.in
++++ b/virt-what.in
+@@ -102,9 +102,9 @@ cpuid=$(virt-what-cpuid-helper)
+ dmi=$(LANG=C dmidecode 2>&1)
+ 
+ # Architecture.
+-# Note for the purpose of testing, we only call uname with -p option.
++# Note for the purpose of testing, we only call uname with -m option.
+ 
+-arch=$(uname -p | sed -e 's/i.86/i386/' | sed -e 's/arm.*/arm/')
++arch=$(uname -m | sed -e 's/i.86/i386/' | sed -e 's/arm.*/arm/')
+ 
+ # Check for VMware.
+ # cpuid check added by Chetan Loke.


=====================================
debian/patches/Remove-bashisms.patch
=====================================
--- a/debian/patches/Remove-bashisms.patch
+++ b/debian/patches/Remove-bashisms.patch
@@ -1,6 +1,6 @@
-From: =?utf-8?q?Guido_G=C3=BCnther_agx=40sigxcpu=2Eorg?=
-Date: =?utf-8?q?Wed=2C_2_Aug_2017_14=3A16=3A07_-0300?=
-Subject: =?utf-8?q?Remove_bashisms?=
+From: =?utf-8?q?Guido_G=C3=BCnther?= <agx at sigxcpu.org>
+Date: Wed, 2 Aug 2017 14:16:07 -0300
+Subject: Remove bashisms
 
 Use [ instead of [[ and -a instead of && so we fall back to test if
 necessary:


=====================================
debian/patches/series
=====================================
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1 +1,2 @@
 Remove-bashisms.patch
+Determine-architecture-via-uname-m.patch



View it on GitLab: https://salsa.debian.org/libvirt-team/virt-what/compare/1f77b480b974efe900c02c218b57e3c547fd36bf...e040e7558d720faad519cfaf8dc16868459fe951

---
View it on GitLab: https://salsa.debian.org/libvirt-team/virt-what/compare/1f77b480b974efe900c02c218b57e3c547fd36bf...e040e7558d720faad519cfaf8dc16868459fe951
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.alioth.debian.org/pipermail/pkg-libvirt-commits/attachments/20180129/8c87d5f8/attachment-0001.html>


More information about the Pkg-libvirt-commits mailing list