summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorOtto Sabart2019-12-15 12:58:09 +0100
committerOtto Sabart2019-12-15 12:58:09 +0100
commit560ee50d9da24187688161f12087215cbce520c3 (patch)
tree0b7b70d65ff2a6a2ff706d3e6673239e5ab68941
parentbdb1231b533cd2e8d81d290d6f1f64abf332a14f (diff)
downloadaur-560ee50d9da24187688161f12087215cbce520c3.tar.gz
Squashed commit of the following:
commit 3f91df24a030d1a5750a078478c736b1feecbde8 Author: Otto Sabart <seberm@seberm.com> Date: Sun Dec 15 12:57:15 2019 +0100 makefile: add qubes-usb-proxy generated package into clean rule commit 6e44d56cb92d142d933e59ada01ea2f4da72cfec Author: Otto Sabart <seberm@seberm.com> Date: Sun Dec 15 12:56:23 2019 +0100 add makefile with clean rule commit 7fb8adaf76dd41e3f7c596ba194087277f934535 Author: Otto Sabart <seberm@seberm.com> Date: Sun Dec 15 12:53:47 2019 +0100 update SRCINFO commit cf4beb35f66522b8198b1dcc2e588f0856b90831 Author: Otto Sabart <seberm@seberm.com> Date: Sun Dec 15 12:53:36 2019 +0100 update integrity checksums commit c29fa20cf6540da6bb636116eb90ae319e421f92 Author: Otto Sabart <seberm@seberm.com> Date: Sun Dec 15 12:52:55 2019 +0100 add usbutils into deps commit f4521262f4b92f3f38423795a7cb1ee9fddd58f1 Author: Otto Sabart <seberm@seberm.com> Date: Sun Dec 15 12:52:44 2019 +0100 remove i686 architecture commit 3b0d851ea54c7ce98f042c9a90faec7d9da790bc Author: Otto Sabart <seberm@seberm.com> Date: Sun Dec 15 12:52:28 2019 +0100 add me as a maintainer commit 81634c49e5732fd355b2a117b2a6d30a4014f65a Author: Otto Sabart <seberm@seberm.com> Date: Sun Dec 15 12:51:49 2019 +0100 bump version to v1.0.24
-rw-r--r--.SRCINFO8
-rw-r--r--Makefile10
-rw-r--r--PKGBUILD9
3 files changed, 19 insertions, 8 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 8531f826771d..5be0b78cae10 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,18 +1,18 @@
pkgbase = qubes-usb-proxy
pkgdesc = The Qubes service for proxying USB devices
- pkgver = 1.0.18
+ pkgver = 1.0.24
pkgrel = 1
url = https://qubes-os.org
arch = x86_64
- arch = i686
license = GPL
makedepends = pkg-config
makedepends = make
makedepends = gcc
depends = sh
depends = qubes-vm-core
- source = https://github.com/QubesOS/qubes-app-linux-usb-proxy/archive/v1.0.18.tar.gz
- sha256sums = 5e7107810301e949acd2e5204cf12320e73a792b77d420f0f22b6f26b72c992f
+ depends = usbutils
+ source = https://github.com/QubesOS/qubes-app-linux-usb-proxy/archive/v1.0.24.tar.gz
+ sha512sums = 109885b4a44b2834318fe1a33abe39367642166202aad5d2c1170cd8b7ad056d89b329ba670523f244f6e3291404661c565be8015b38b8be5e493c91370e9d61
pkgname = qubes-usb-proxy
diff --git a/Makefile b/Makefile
new file mode 100644
index 000000000000..bc020699b674
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,10 @@
+.PHONY: all help clean
+
+all: help
+
+help:
+ @echo "help - print this help message"
+ @echo "clean - clean this repository"
+
+clean:
+ rm -rfv ./src ./pkg ./v*.tar.gz ./qubes-usb-proxy-*.pkg.tar.xz
diff --git a/PKGBUILD b/PKGBUILD
index e15634c0303f..7ffebfe455b7 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,17 +1,18 @@
+# Maintainer: Otto Sabart <aur@seberm.com>
# Maintainer: arjan5 <aur@anymore.nl>
pkgname=qubes-usb-proxy
-pkgver=1.0.18
+pkgver=1.0.24
pkgrel=1
pkgdesc="The Qubes service for proxying USB devices"
-arch=("x86_64" "i686")
+arch=("x86_64")
url="https://qubes-os.org"
license=('GPL')
-depends=('sh' 'qubes-vm-core')
+depends=('sh' 'qubes-vm-core' 'usbutils')
makedepends=(pkg-config make gcc)
source=(https://github.com/QubesOS/qubes-app-linux-usb-proxy/archive/v${pkgver}.tar.gz)
-sha256sums=('5e7107810301e949acd2e5204cf12320e73a792b77d420f0f22b6f26b72c992f')
+sha512sums=('109885b4a44b2834318fe1a33abe39367642166202aad5d2c1170cd8b7ad056d89b329ba670523f244f6e3291404661c565be8015b38b8be5e493c91370e9d61')
_srcname=qubes-app-linux-usb-proxy-${pkgver}