Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (6)
Determine architecture via 'uname -m'
· 54d1d6f2
Guido Günther
authored
Jan 29, 2018
Closes: #888690
54d1d6f2
Add myself to uploaders
· b01d449d
Guido Günther
authored
Jan 29, 2018
b01d449d
Bump standards version to 4.1.3
· 13216500
Guido Günther
authored
Jan 29, 2018
13216500
Drop dh-autoreconf build-dep
· 5d4e9156
Guido Günther
authored
Jan 29, 2018
5d4e9156
Move to salsa.d.o
· c6f84a81
Guido Günther
authored
Jan 29, 2018
c6f84a81
Document changes and release 1.18-2
· e040e755
Guido Günther
authored
Jan 29, 2018
e040e755
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
e040e755
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@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
View file @
e040e755
...
...
@@ -2,11 +2,11 @@ Source: virt-what
Section: admin
Priority: optional
Maintainer: Debian Libvirt Maintainers <pkg-libvirt-maintainers@lists.alioth.debian.org>
Uploaders: Joao Eriberto Mota Filho <eriberto@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@debian.org>
, Guido Günther <agx@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
0 → 100644
View file @
e040e755
From: =?utf-8?q?Guido_G=C3=BCnther?= <agx@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
View file @
e040e755
From: =?utf-8?q?Guido_G=C3=BCnther
_agx=40
sigxcpu
=2E
org
?=
Date:
=?utf-8?q?Wed=2C_2_
Aug
_
2017
_
14
=3A16=3A
07
_
-0300
?=
Subject:
=?utf-8?q?
Remove
_
bashisms
?=
From: =?utf-8?q?Guido_G=C3=BCnther
?= <agx@
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
View file @
e040e755
Remove-bashisms.patch
Determine-architecture-via-uname-m.patch