[arch-commits] Commit in gpm/repos/testing-x86_64 (6 files)

Christian Hesse eworm at archlinux.org
Tue Sep 15 15:05:31 UTC 2020


    Date: Tuesday, September 15, 2020 @ 15:05:30
  Author: eworm
Revision: 396156

archrelease: copy trunk to testing-x86_64

Added:
  gpm/repos/testing-x86_64/PKGBUILD
    (from rev 396155, gpm/trunk/PKGBUILD)
  gpm/repos/testing-x86_64/gpm.service
    (from rev 396155, gpm/trunk/gpm.service)
  gpm/repos/testing-x86_64/gpm.sh
    (from rev 396155, gpm/trunk/gpm.sh)
Deleted:
  gpm/repos/testing-x86_64/PKGBUILD
  gpm/repos/testing-x86_64/gpm.service
  gpm/repos/testing-x86_64/gpm.sh

-------------+
 PKGBUILD    |  117 +++++++++++++++++++++++++++++-----------------------------
 gpm.service |   24 +++++------
 gpm.sh      |    6 +-
 3 files changed, 74 insertions(+), 73 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2020-09-15 15:05:26 UTC (rev 396155)
+++ PKGBUILD	2020-09-15 15:05:30 UTC (rev 396156)
@@ -1,58 +0,0 @@
-# Maintainer: Eric Bélanger <eric at archlinux.org>
-
-pkgname=gpm
-pkgver=1.20.7.r38.ge82d1a6
-_commit='e82d1a653ca94aa4ed12441424da6ce780b1e530'
-pkgrel=1
-pkgdesc='A mouse server for the console and xterm'
-arch=('x86_64')
-url='https://www.nico.schottelius.org/software/gpm/'
-license=('GPL')
-depends=('bash' 'procps-ng')
-makedepends=('git')
-options=('!makeflags')
-source=("git+https://github.com/telmich/gpm.git#commit=${_commit}"
-        'gpm.sh'
-        'gpm.service')
-sha256sums=('SKIP'
-            'f41e90dcf6c0c6c4b8eff1c69039a20eb6b38ea851ffd1fa47ba311bf83d6ed8'
-            'dc7d2463f6670ff2c1646a571ffad51f7c603793c25c6f685efad13cbb444034')
-
-pkgver() {
-  cd "${srcdir}/${pkgname}"
-
-  GITTAG="$(git describe --abbrev=0 --tags 2>/dev/null)"
-  printf '%s.r%s.g%s' \
-    "${GITTAG}" \
-    "$(git rev-list --count ${GITTAG}..)" \
-    "$(git rev-parse --short HEAD)"
-}
-
-prepare() {
-  cd "${srcdir}/${pkgname}"
-
-  ./autogen.sh
-}
-
-build() {
-  cd "${srcdir}/${pkgname}"
-  
-  ./configure \
-    --prefix=/usr \
-    --sysconfdir=/etc \
-    --sbindir=/usr/bin
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}"
-
-  make DESTDIR="${pkgdir}" install
-  install -D -m0755 ../gpm.sh "${pkgdir}/etc/profile.d/gpm.sh"
-  install -D -m0644 ../gpm.service "${pkgdir}/usr/lib/systemd/system/gpm.service"
-
-# library fixes
-  cd "${pkgdir}/usr/lib/"
-  ln -s libgpm.so.2.* libgpm.so
-  chmod 0755 "${pkgdir}"/usr/lib/libgpm.so.*
-}

Copied: gpm/repos/testing-x86_64/PKGBUILD (from rev 396155, gpm/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2020-09-15 15:05:30 UTC (rev 396156)
@@ -0,0 +1,59 @@
+# Maintainer: Eric Bélanger <eric at archlinux.org>
+
+pkgname=gpm
+pkgver=1.20.7.r38.ge82d1a6
+_commit='e82d1a653ca94aa4ed12441424da6ce780b1e530'
+pkgrel=2
+pkgdesc='A mouse server for the console and xterm'
+arch=('x86_64')
+url='https://www.nico.schottelius.org/software/gpm/'
+license=('GPL')
+depends=('bash' 'procps-ng')
+makedepends=('git')
+provides=('libgpm.so')
+options=('!makeflags')
+source=("git+https://github.com/telmich/gpm.git#commit=${_commit}"
+        'gpm.sh'
+        'gpm.service')
+sha256sums=('SKIP'
+            'f41e90dcf6c0c6c4b8eff1c69039a20eb6b38ea851ffd1fa47ba311bf83d6ed8'
+            'dc7d2463f6670ff2c1646a571ffad51f7c603793c25c6f685efad13cbb444034')
+
+pkgver() {
+  cd "${srcdir}/${pkgname}"
+
+  GITTAG="$(git describe --abbrev=0 --tags 2>/dev/null)"
+  printf '%s.r%s.g%s' \
+    "${GITTAG}" \
+    "$(git rev-list --count ${GITTAG}..)" \
+    "$(git rev-parse --short HEAD)"
+}
+
+prepare() {
+  cd "${srcdir}/${pkgname}"
+
+  ./autogen.sh
+}
+
+build() {
+  cd "${srcdir}/${pkgname}"
+  
+  ./configure \
+    --prefix=/usr \
+    --sysconfdir=/etc \
+    --sbindir=/usr/bin
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}"
+
+  make DESTDIR="${pkgdir}" install
+  install -D -m0755 ../gpm.sh "${pkgdir}/etc/profile.d/gpm.sh"
+  install -D -m0644 ../gpm.service "${pkgdir}/usr/lib/systemd/system/gpm.service"
+
+# library fixes
+  cd "${pkgdir}/usr/lib/"
+  ln -s libgpm.so.2.* libgpm.so
+  chmod 0755 "${pkgdir}"/usr/lib/libgpm.so.*
+}

Deleted: gpm.service
===================================================================
--- gpm.service	2020-09-15 15:05:26 UTC (rev 396155)
+++ gpm.service	2020-09-15 15:05:30 UTC (rev 396156)
@@ -1,12 +0,0 @@
-[Unit]
-Description=Virtual console mouse server
-Requires=systemd-udevd.service
-After=systemd-udevd.service
-ConditionPathExists=/dev/input/mice
-
-[Service]
-Type=forking
-ExecStart=/usr/bin/gpm -m /dev/input/mice -t imps2
-
-[Install]
-WantedBy=multi-user.target

Copied: gpm/repos/testing-x86_64/gpm.service (from rev 396155, gpm/trunk/gpm.service)
===================================================================
--- gpm.service	                        (rev 0)
+++ gpm.service	2020-09-15 15:05:30 UTC (rev 396156)
@@ -0,0 +1,12 @@
+[Unit]
+Description=Virtual console mouse server
+Requires=systemd-udevd.service
+After=systemd-udevd.service
+ConditionPathExists=/dev/input/mice
+
+[Service]
+Type=forking
+ExecStart=/usr/bin/gpm -m /dev/input/mice -t imps2
+
+[Install]
+WantedBy=multi-user.target

Deleted: gpm.sh
===================================================================
--- gpm.sh	2020-09-15 15:05:26 UTC (rev 396155)
+++ gpm.sh	2020-09-15 15:05:30 UTC (rev 396156)
@@ -1,3 +0,0 @@
-case $( /usr/bin/tty ) in
-    /dev/tty[0-9]*) [ -n "$(pidof -s gpm)" ] && /usr/bin/disable-paste ;;
-esac

Copied: gpm/repos/testing-x86_64/gpm.sh (from rev 396155, gpm/trunk/gpm.sh)
===================================================================
--- gpm.sh	                        (rev 0)
+++ gpm.sh	2020-09-15 15:05:30 UTC (rev 396156)
@@ -0,0 +1,3 @@
+case $( /usr/bin/tty ) in
+    /dev/tty[0-9]*) [ -n "$(pidof -s gpm)" ] && /usr/bin/disable-paste ;;
+esac



More information about the arch-commits mailing list