[arch-commits] Commit in gpm/repos (10 files)

Eric Bélanger eric at nymeria.archlinux.org
Sun May 12 08:15:51 UTC 2013


    Date: Sunday, May 12, 2013 @ 10:15:51
  Author: eric
Revision: 185215

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  gpm/repos/testing-i686/
  gpm/repos/testing-i686/PKGBUILD
    (from rev 185214, gpm/trunk/PKGBUILD)
  gpm/repos/testing-i686/gpm.install
    (from rev 185214, gpm/trunk/gpm.install)
  gpm/repos/testing-i686/gpm.service
    (from rev 185214, gpm/trunk/gpm.service)
  gpm/repos/testing-i686/gpm.sh
    (from rev 185214, gpm/trunk/gpm.sh)
  gpm/repos/testing-x86_64/
  gpm/repos/testing-x86_64/PKGBUILD
    (from rev 185214, gpm/trunk/PKGBUILD)
  gpm/repos/testing-x86_64/gpm.install
    (from rev 185214, gpm/trunk/gpm.install)
  gpm/repos/testing-x86_64/gpm.service
    (from rev 185214, gpm/trunk/gpm.service)
  gpm/repos/testing-x86_64/gpm.sh
    (from rev 185214, gpm/trunk/gpm.sh)

----------------------------+
 testing-i686/PKGBUILD      |   37 +++++++++++++++++++++++++++++++++++++
 testing-i686/gpm.install   |   16 ++++++++++++++++
 testing-i686/gpm.service   |    9 +++++++++
 testing-i686/gpm.sh        |    3 +++
 testing-x86_64/PKGBUILD    |   37 +++++++++++++++++++++++++++++++++++++
 testing-x86_64/gpm.install |   16 ++++++++++++++++
 testing-x86_64/gpm.service |    9 +++++++++
 testing-x86_64/gpm.sh      |    3 +++
 8 files changed, 130 insertions(+)

Copied: gpm/repos/testing-i686/PKGBUILD (from rev 185214, gpm/trunk/PKGBUILD)
===================================================================
--- testing-i686/PKGBUILD	                        (rev 0)
+++ testing-i686/PKGBUILD	2013-05-12 08:15:51 UTC (rev 185215)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Eric Bélanger <eric at archlinux.org>
+
+pkgname=gpm
+pkgver=1.20.7
+pkgrel=3
+pkgdesc="A mouse server for the console and xterm"
+arch=('i686' 'x86_64')
+url="http://www.nico.schottelius.org/software/gpm/"
+license=('GPL')
+depends=('bash')
+options=('!makeflags')
+install=gpm.install
+source=(http://www.nico.schottelius.org/software/gpm/archives/${pkgname}-${pkgver}.tar.lzma \
+        gpm.sh gpm.service)
+sha1sums=('8d9f3655c80ce7667d31ede2a100b44986480369'
+          '88fe5ff10916c68a87abc8418a56eb0073f69fa9'
+          'f9bde96eb9c78da9f225bcf40822647f6592cf23')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./autogen.sh
+  ./configure --prefix=/usr --sysconfdir=/etc --sbindir=/usr/bin
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -D -m755 ../gpm.sh "${pkgdir}/etc/profile.d/gpm.sh"
+  install -D -m644 ../gpm.service "${pkgdir}/usr/lib/systemd/system/gpm.service"
+
+# library fixes
+  cd "${pkgdir}/usr/lib/"
+  ln -s libgpm.so.2.* libgpm.so
+  chmod 755 "${pkgdir}"/usr/lib/libgpm.so.*
+}

Copied: gpm/repos/testing-i686/gpm.install (from rev 185214, gpm/trunk/gpm.install)
===================================================================
--- testing-i686/gpm.install	                        (rev 0)
+++ testing-i686/gpm.install	2013-05-12 08:15:51 UTC (rev 185215)
@@ -0,0 +1,16 @@
+infodir=/usr/share/info
+file=gpm.info.gz
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  install-info $infodir/$file $infodir/dir 2> /dev/null
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  install-info --delete $infodir/$file $infodir/dir 2> /dev/null
+}

Copied: gpm/repos/testing-i686/gpm.service (from rev 185214, gpm/trunk/gpm.service)
===================================================================
--- testing-i686/gpm.service	                        (rev 0)
+++ testing-i686/gpm.service	2013-05-12 08:15:51 UTC (rev 185215)
@@ -0,0 +1,9 @@
+[Unit]
+Description=Virtual console mouse server
+
+[Service]
+Type=forking
+ExecStart=/usr/bin/gpm -m /dev/input/mice -t imps2
+
+[Install]
+WantedBy=multi-user.target

Copied: gpm/repos/testing-i686/gpm.sh (from rev 185214, gpm/trunk/gpm.sh)
===================================================================
--- testing-i686/gpm.sh	                        (rev 0)
+++ testing-i686/gpm.sh	2013-05-12 08:15:51 UTC (rev 185215)
@@ -0,0 +1,3 @@
+case $( /usr/bin/tty ) in
+    /dev/tty[0-9]*) [ -n "$(pgrep gpm)" ] && /usr/bin/disable-paste ;;
+esac

Copied: gpm/repos/testing-x86_64/PKGBUILD (from rev 185214, gpm/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD	                        (rev 0)
+++ testing-x86_64/PKGBUILD	2013-05-12 08:15:51 UTC (rev 185215)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Eric Bélanger <eric at archlinux.org>
+
+pkgname=gpm
+pkgver=1.20.7
+pkgrel=3
+pkgdesc="A mouse server for the console and xterm"
+arch=('i686' 'x86_64')
+url="http://www.nico.schottelius.org/software/gpm/"
+license=('GPL')
+depends=('bash')
+options=('!makeflags')
+install=gpm.install
+source=(http://www.nico.schottelius.org/software/gpm/archives/${pkgname}-${pkgver}.tar.lzma \
+        gpm.sh gpm.service)
+sha1sums=('8d9f3655c80ce7667d31ede2a100b44986480369'
+          '88fe5ff10916c68a87abc8418a56eb0073f69fa9'
+          'f9bde96eb9c78da9f225bcf40822647f6592cf23')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./autogen.sh
+  ./configure --prefix=/usr --sysconfdir=/etc --sbindir=/usr/bin
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -D -m755 ../gpm.sh "${pkgdir}/etc/profile.d/gpm.sh"
+  install -D -m644 ../gpm.service "${pkgdir}/usr/lib/systemd/system/gpm.service"
+
+# library fixes
+  cd "${pkgdir}/usr/lib/"
+  ln -s libgpm.so.2.* libgpm.so
+  chmod 755 "${pkgdir}"/usr/lib/libgpm.so.*
+}

Copied: gpm/repos/testing-x86_64/gpm.install (from rev 185214, gpm/trunk/gpm.install)
===================================================================
--- testing-x86_64/gpm.install	                        (rev 0)
+++ testing-x86_64/gpm.install	2013-05-12 08:15:51 UTC (rev 185215)
@@ -0,0 +1,16 @@
+infodir=/usr/share/info
+file=gpm.info.gz
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  install-info $infodir/$file $infodir/dir 2> /dev/null
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  install-info --delete $infodir/$file $infodir/dir 2> /dev/null
+}

Copied: gpm/repos/testing-x86_64/gpm.service (from rev 185214, gpm/trunk/gpm.service)
===================================================================
--- testing-x86_64/gpm.service	                        (rev 0)
+++ testing-x86_64/gpm.service	2013-05-12 08:15:51 UTC (rev 185215)
@@ -0,0 +1,9 @@
+[Unit]
+Description=Virtual console mouse server
+
+[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.sh (from rev 185214, gpm/trunk/gpm.sh)
===================================================================
--- testing-x86_64/gpm.sh	                        (rev 0)
+++ testing-x86_64/gpm.sh	2013-05-12 08:15:51 UTC (rev 185215)
@@ -0,0 +1,3 @@
+case $( /usr/bin/tty ) in
+    /dev/tty[0-9]*) [ -n "$(pgrep gpm)" ] && /usr/bin/disable-paste ;;
+esac




More information about the arch-commits mailing list