[arch-commits] Commit in libevdev/repos/extra-x86_64 (3 files)

Andreas Radke andyrtr at gemini.archlinux.org
Sat Mar 26 20:28:57 UTC 2022


    Date: Saturday, March 26, 2022 @ 20:28:57
  Author: andyrtr
Revision: 440701

archrelease: copy trunk to extra-x86_64

Added:
  libevdev/repos/extra-x86_64/0001_install_the_mouse-dpi-tool_man_page.diff
    (from rev 440700, libevdev/trunk/0001_install_the_mouse-dpi-tool_man_page.diff)
  libevdev/repos/extra-x86_64/PKGBUILD
    (from rev 440700, libevdev/trunk/PKGBUILD)
Deleted:
  libevdev/repos/extra-x86_64/PKGBUILD

-----------------------------------------------+
 0001_install_the_mouse-dpi-tool_man_page.diff |   27 +++++++++
 PKGBUILD                                      |   71 +++++++++++++-----------
 2 files changed, 66 insertions(+), 32 deletions(-)

Copied: libevdev/repos/extra-x86_64/0001_install_the_mouse-dpi-tool_man_page.diff (from rev 440700, libevdev/trunk/0001_install_the_mouse-dpi-tool_man_page.diff)
===================================================================
--- 0001_install_the_mouse-dpi-tool_man_page.diff	                        (rev 0)
+++ 0001_install_the_mouse-dpi-tool_man_page.diff	2022-03-26 20:28:57 UTC (rev 440701)
@@ -0,0 +1,27 @@
+From de2daf8d361ce2387514c846fe3d741f3d7572ab Mon Sep 17 00:00:00 2001
+From: Peter Hutterer <peter.hutterer at who-t.net>
+Date: Fri, 25 Mar 2022 14:37:28 +1000
+Subject: [PATCH] meson.build: install the mouse-dpi-tool man page
+
+Signed-off-by: Peter Hutterer <peter.hutterer at who-t.net>
+---
+ meson.build | 3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+
+diff --git a/meson.build b/meson.build
+index 63504ac..33365c9 100644
+--- a/meson.build
++++ b/meson.build
+@@ -130,7 +130,8 @@ executable('libevdev-tweak-device',
+ 	   dependencies: dep_libevdev,
+ 	   install: true)
+ install_man('tools/libevdev-tweak-device.1',
+-            'tools/touchpad-edge-detector.1')
++	    'tools/touchpad-edge-detector.1',
++	    'tools/mouse-dpi-tool.1')
+ 
+ # tests
+ dep_check = dependency('check', version: '>= 0.9.9',
+-- 
+GitLab
+

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2022-03-26 20:28:51 UTC (rev 440700)
+++ PKGBUILD	2022-03-26 20:28:57 UTC (rev 440701)
@@ -1,32 +0,0 @@
-# Maintainer: Andreas Radke <andyrtr at archlinux.org>
-
-pkgname=libevdev
-pkgver=1.12.0
-pkgrel=1
-pkgdesc="Wrapper library for evdev devices"
-arch=(x86_64)
-url="https://www.freedesktop.org/wiki/Software/libevdev/"
-license=(custom:MIT)
-depends=('glibc')
-makedepends=('python' 'check' 'valgrind' 'doxygen' 'meson')
-provides=('libevdev.so')
-source=(https://freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
-sha512sums=('6c1c1362d5112cdf3816d1f735c27e625f5463ebf10a83d675cd9364c3fb291ebcb91c051da442f1a36ed28ba7dd99af74546707f61274f7d5715c544a0ed04c'
-            'SKIP')
-validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer (Who-T) <office at who-t.net>
-
-build() {
-  arch-meson $pkgname-$pkgver build \
-    -D documentation=disabled
-  meson compile -C build
-}
-check() {
-  meson test -C build
-}
-
-package() {
-  DESTDIR="$pkgdir" meson install -C build
-
-  install -Dm644 $pkgname-$pkgver/COPYING \
-    "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-}

Copied: libevdev/repos/extra-x86_64/PKGBUILD (from rev 440700, libevdev/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2022-03-26 20:28:57 UTC (rev 440701)
@@ -0,0 +1,39 @@
+# Maintainer: Andreas Radke <andyrtr at archlinux.org>
+
+pkgname=libevdev
+pkgver=1.12.1
+pkgrel=1
+pkgdesc="Wrapper library for evdev devices"
+arch=(x86_64)
+url="https://www.freedesktop.org/wiki/Software/libevdev/"
+license=(custom:MIT)
+depends=('glibc')
+makedepends=('python' 'check' 'valgrind' 'doxygen' 'meson')
+provides=('libevdev.so')
+source=(https://freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz{,.sig}
+        0001_install_the_mouse-dpi-tool_man_page.diff)
+sha512sums=('eefce287a665e4f89eb2e0437dfefd45ecf8925c7dac35a1bdd46158541f77f2032c6146900a30a01321751d55a9b537bd1d61777cca9cfa02c39a6e31c97be4'
+            'SKIP'
+            '5bfdb686c1ed1b936d199babae5d9294c3ee158ab4849930a358ad1ae17a50011bd7132ff18614326af0ed73ce5bb887da28c41143daa8f61b74d3d6d047b7d8')
+validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer (Who-T) <office at who-t.net>
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -Np1 -i ../0001_install_the_mouse-dpi-tool_man_page.diff
+}
+
+build() {
+  arch-meson $pkgname-$pkgver build \
+    -D documentation=disabled
+  meson compile -C build
+}
+check() {
+  meson test -C build
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+
+  install -Dm644 $pkgname-$pkgver/COPYING \
+    "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}



More information about the arch-commits mailing list