[arch-commits] Commit in xf86-input-synaptics/repos/extra-x86_64 (5 files)

Andreas Radke andyrtr at gemini.archlinux.org
Mon Jul 11 16:18:07 UTC 2022


    Date: Monday, July 11, 2022 @ 16:18:07
  Author: andyrtr
Revision: 450858

archrelease: copy trunk to extra-x86_64

Added:
  xf86-input-synaptics/repos/extra-x86_64/PKGBUILD
    (from rev 450857, xf86-input-synaptics/trunk/PKGBUILD)
  xf86-input-synaptics/repos/extra-x86_64/keys/
  xf86-input-synaptics/repos/extra-x86_64/xf86-input-synaptics.install
    (from rev 450857, xf86-input-synaptics/trunk/xf86-input-synaptics.install)
Deleted:
  xf86-input-synaptics/repos/extra-x86_64/PKGBUILD
  xf86-input-synaptics/repos/extra-x86_64/xf86-input-synaptics.install

------------------------------+
 PKGBUILD                     |   79 ++++++++++++++++++++---------------------
 xf86-input-synaptics.install |   22 +++++------
 2 files changed, 51 insertions(+), 50 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2022-07-11 16:17:59 UTC (rev 450857)
+++ PKGBUILD	2022-07-11 16:18:07 UTC (rev 450858)
@@ -1,39 +0,0 @@
-# Maintainer: Jan de Groot <jgc at archlinux.org>
-# Contributor: Tobias Powalowski  <tpowa at archlinux.org>
-# Contributor: Thomas Bächler <thomas at archlinux.org>
-# Contributor: Alexander Baldeck <alexander at archlinux.org>
-
-pkgname=xf86-input-synaptics
-pkgver=1.9.1
-pkgrel=3
-pkgdesc="Synaptics driver for notebook touchpads"
-arch=('x86_64')
-license=('MIT')
-url="https://xorg.freedesktop.org/"
-depends=('libxtst' 'libevdev')
-makedepends=('xorg-server-devel' 'X-ABI-XINPUT_VERSION=24.4' 'libxi' 'libx11' 'xorgproto')
-conflicts=('xorg-server<21.1.2' 'X-ABI-XINPUT_VERSION<24' 'X-ABI-XINPUT_VERSION>=25')
-replaces=('synaptics')
-provides=('synaptics')
-conflicts=('synaptics')
-groups=('xorg-drivers')
-install=xf86-input-synaptics.install
-source=(https://xorg.freedesktop.org/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2{,.sig})
-sha512sums=('978eddd456aa7361047bc3d72e5127b24b13de29b0dddb6a0acc9f9da93931baa2b22fb5d1e6be164f629a11e5d97d753b835426435396b45b1af5eb8d546c3f'
-            'SKIP')
-validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer (Who-T) <office at who-t.net>
-
-build() {
-  cd ${pkgname}-${pkgver}
-  
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  
-  make DESTDIR="${pkgdir}" install
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: xf86-input-synaptics/repos/extra-x86_64/PKGBUILD (from rev 450857, xf86-input-synaptics/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2022-07-11 16:18:07 UTC (rev 450858)
@@ -0,0 +1,40 @@
+# Maintainer: Andreas Radke <andyrtr at archlinux.org>
+# Contributor: Jan de Groot <jgc at archlinux.org>
+# Contributor: Tobias Powalowski  <tpowa at archlinux.org>
+# Contributor: Thomas Bächler <thomas at archlinux.org>
+# Contributor: Alexander Baldeck <alexander at archlinux.org>
+
+pkgname=xf86-input-synaptics
+pkgver=1.9.2
+pkgrel=1
+pkgdesc="Synaptics driver for notebook touchpads"
+arch=('x86_64')
+license=('MIT')
+url="https://xorg.freedesktop.org/"
+depends=('libxtst' 'libevdev')
+makedepends=('xorg-server-devel' 'X-ABI-XINPUT_VERSION=24.4' 'libxi' 'libx11' 'xorgproto')
+conflicts=('xorg-server<21.1.2' 'X-ABI-XINPUT_VERSION<24' 'X-ABI-XINPUT_VERSION>=25')
+replaces=('synaptics')
+provides=('synaptics')
+conflicts=('synaptics')
+groups=('xorg-drivers')
+install=xf86-input-synaptics.install
+source=(https://xorg.freedesktop.org/releases/individual/driver/${pkgname}-${pkgver}.tar.xz{,.sig})
+sha512sums=('6fd46505f22bba79f612fbd48dddd4818f7d874cc29caac71840744de27f1d224c68861e3a18d2a866b78178924d2f093f5260e27b221aa1fb17dbc09d66b649'
+            'SKIP')
+#validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer (Who-T) <office at who-t.net>
+validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # Alan Coopersmith <alan.coopersmith at oracle.com>
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  
+  make DESTDIR="${pkgdir}" install
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}

Deleted: xf86-input-synaptics.install
===================================================================
--- xf86-input-synaptics.install	2022-07-11 16:17:59 UTC (rev 450857)
+++ xf86-input-synaptics.install	2022-07-11 16:18:07 UTC (rev 450858)
@@ -1,11 +0,0 @@
-post_install() {
-  cat <<MSG
->>> xf86-input-synaptics driver is on maintenance mode and
-    xf86-input-libinput driver must be prefered over.
-MSG
-}
-
-post_upgrade() {
-	post_install
-}
-

Copied: xf86-input-synaptics/repos/extra-x86_64/xf86-input-synaptics.install (from rev 450857, xf86-input-synaptics/trunk/xf86-input-synaptics.install)
===================================================================
--- xf86-input-synaptics.install	                        (rev 0)
+++ xf86-input-synaptics.install	2022-07-11 16:18:07 UTC (rev 450858)
@@ -0,0 +1,11 @@
+post_install() {
+  cat <<MSG
+>>> xf86-input-synaptics driver is on maintenance mode and
+    xf86-input-libinput driver must be prefered over.
+MSG
+}
+
+post_upgrade() {
+	post_install
+}
+



More information about the arch-commits mailing list