Date: Tuesday, April 23, 2013 @ 14:32:27 Author: tomegun Revision: 183560
archrelease: copy trunk to testing-i686, testing-x86_64 Added: brltty/repos/testing-i686/PKGBUILD (from rev 183559, brltty/trunk/PKGBUILD) brltty/repos/testing-i686/brltty.install (from rev 183559, brltty/trunk/brltty.install) brltty/repos/testing-i686/brltty.service (from rev 183559, brltty/trunk/brltty.service) brltty/repos/testing-x86_64/PKGBUILD (from rev 183559, brltty/trunk/PKGBUILD) brltty/repos/testing-x86_64/brltty.install (from rev 183559, brltty/trunk/brltty.install) brltty/repos/testing-x86_64/brltty.service (from rev 183559, brltty/trunk/brltty.service) Deleted: brltty/repos/testing-i686/PKGBUILD brltty/repos/testing-i686/brltty.install brltty/repos/testing-i686/brltty.service brltty/repos/testing-x86_64/PKGBUILD brltty/repos/testing-x86_64/brltty.install brltty/repos/testing-x86_64/brltty.service -------------------------------+ /PKGBUILD | 88 ++++++++++++++++++++++++++++++++++++++++ /brltty.install | 40 ++++++++++++++++++ /brltty.service | 24 ++++++++++ testing-i686/PKGBUILD | 42 ------------------- testing-i686/brltty.install | 20 --------- testing-i686/brltty.service | 12 ----- testing-x86_64/PKGBUILD | 42 ------------------- testing-x86_64/brltty.install | 20 --------- testing-x86_64/brltty.service | 12 ----- 9 files changed, 152 insertions(+), 148 deletions(-) Deleted: testing-i686/PKGBUILD =================================================================== --- testing-i686/PKGBUILD 2013-04-23 12:32:17 UTC (rev 183559) +++ testing-i686/PKGBUILD 2013-04-23 12:32:27 UTC (rev 183560) @@ -1,42 +0,0 @@ -# $Id$ -# Maintainer: Tom Gundersen <t...@jklm.no> -# Contributor: Jan de Groot <j...@archlinux.org> -# Contributor: Giovanni Scafora <giova...@archlinux.org> - -pkgname=brltty -pkgver=4.5 -pkgrel=2 -pkgdesc="Braille display driver for Linux/Unix" -arch=(i686 x86_64) -url="http://mielke.cc/brltty" -license=(GPL LGPL) -depends=(libxaw at-spi2-core gpm 'icu' tcl atk cython) -makedepends=(bluez) -optdepends=('bluez: bluetooth support') -backup=(etc/brltty.conf) -options=('!emptydirs') -install=brltty.install -source=(http://mielke.cc/$pkgname/releases/$pkgname-$pkgver.tar.gz - brltty.service) - -build() { - cd $pkgname-$pkgver - ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \ - --mandir=/usr/share/man \ - --with-tables-directory=/usr/share/brltty \ - --with-screen-driver=a2 \ - --enable-gpm \ - --disable-java-bindings \ - --disable-static - - make -} - -package() { - cd $pkgname-$pkgver - make INSTALL_ROOT="$pkgdir" install - install -Dm644 Documents/brltty.conf "$pkgdir/etc/brltty.conf" - install -Dm644 ../brltty.service "$pkgdir/usr/lib/systemd/system/brltty.service" -} -md5sums=('7b52fa7746fed41ed344a1f75ce55951' - '0cad54bb5470122535f5e3a11d5ca123') Copied: brltty/repos/testing-i686/PKGBUILD (from rev 183559, brltty/trunk/PKGBUILD) =================================================================== --- testing-i686/PKGBUILD (rev 0) +++ testing-i686/PKGBUILD 2013-04-23 12:32:27 UTC (rev 183560) @@ -0,0 +1,44 @@ +# $Id$ +# Maintainer: Tom Gundersen <t...@jklm.no> +# Contributor: Jan de Groot <j...@archlinux.org> +# Contributor: Giovanni Scafora <giova...@archlinux.org> + +pkgname=brltty +pkgver=4.5 +pkgrel=3 +pkgdesc="Braille display driver for Linux/Unix" +arch=(i686 x86_64) +url="http://mielke.cc/brltty" +license=(GPL LGPL) +depends=(libxaw gpm icu tcl cython) +makedepends=(bluez at-spi2-core) +optdepends=('bluez: bluetooth support' + 'at-spi2-core: X11/GNOME Apps accessibility' + 'atk: ATK bridge for X11/GNOME accessibility') +backup=(etc/brltty.conf) +options=('!emptydirs') +install=brltty.install +source=(http://mielke.cc/$pkgname/releases/$pkgname-$pkgver.tar.gz + brltty.service) + +build() { + cd $pkgname-$pkgver + ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \ + --mandir=/usr/share/man \ + --with-tables-directory=/usr/share/brltty \ + --with-screen-driver=lx \ + --enable-gpm \ + --disable-java-bindings \ + --disable-static + + make +} + +package() { + cd $pkgname-$pkgver + make INSTALL_ROOT="$pkgdir" install + install -Dm644 Documents/brltty.conf "$pkgdir/etc/brltty.conf" + install -Dm644 ../brltty.service "$pkgdir/usr/lib/systemd/system/brltty.service" +} +md5sums=('7b52fa7746fed41ed344a1f75ce55951' + '0cad54bb5470122535f5e3a11d5ca123') Deleted: testing-i686/brltty.install =================================================================== --- testing-i686/brltty.install 2013-04-23 12:32:17 UTC (rev 183559) +++ testing-i686/brltty.install 2013-04-23 12:32:27 UTC (rev 183560) @@ -1,20 +0,0 @@ -post_install () { - getent group brlapi &>/dev/null || groupadd -r brlapi - if [ ! -e /etc/brlapi.key ]; then - mcookie >/etc/brlapi.key - chmod 0640 /etc/brlapi.key - chgrp brlapi /etc/brlapi.key - echo "Please add your user to the brlapi group." - fi -} - -post_upgrade () { - post_install -} - -post_remove () { - getent group brlapi >/dev/null 2>&1 && groupdel brlapi - if [ -e /etc/brlapi.key ]; then - rm -f /etc/brlapi.key - fi -} Copied: brltty/repos/testing-i686/brltty.install (from rev 183559, brltty/trunk/brltty.install) =================================================================== --- testing-i686/brltty.install (rev 0) +++ testing-i686/brltty.install 2013-04-23 12:32:27 UTC (rev 183560) @@ -0,0 +1,20 @@ +post_install () { + getent group brlapi &>/dev/null || groupadd -r brlapi + if [ ! -e /etc/brlapi.key ]; then + mcookie >/etc/brlapi.key + chmod 0640 /etc/brlapi.key + chgrp brlapi /etc/brlapi.key + echo "Please add your user to the brlapi group." + fi +} + +post_upgrade () { + post_install +} + +post_remove () { + getent group brlapi >/dev/null 2>&1 && groupdel brlapi + if [ -e /etc/brlapi.key ]; then + rm -f /etc/brlapi.key + fi +} Deleted: testing-i686/brltty.service =================================================================== --- testing-i686/brltty.service 2013-04-23 12:32:17 UTC (rev 183559) +++ testing-i686/brltty.service 2013-04-23 12:32:27 UTC (rev 183560) @@ -1,12 +0,0 @@ -[Unit] -Description=Braille Console Driver -DefaultDependencies=no -Before=sysinit.target - -[Service] -ExecStart=/usr/bin/brltty --pid-file=/run/brltty.pid -Type=forking -PIDFile=/run/brltty.pid - -[Install] -WantedBy=sysinit.target Copied: brltty/repos/testing-i686/brltty.service (from rev 183559, brltty/trunk/brltty.service) =================================================================== --- testing-i686/brltty.service (rev 0) +++ testing-i686/brltty.service 2013-04-23 12:32:27 UTC (rev 183560) @@ -0,0 +1,12 @@ +[Unit] +Description=Braille Console Driver +DefaultDependencies=no +Before=sysinit.target + +[Service] +ExecStart=/usr/bin/brltty --pid-file=/run/brltty.pid +Type=forking +PIDFile=/run/brltty.pid + +[Install] +WantedBy=sysinit.target Deleted: testing-x86_64/PKGBUILD =================================================================== --- testing-x86_64/PKGBUILD 2013-04-23 12:32:17 UTC (rev 183559) +++ testing-x86_64/PKGBUILD 2013-04-23 12:32:27 UTC (rev 183560) @@ -1,42 +0,0 @@ -# $Id$ -# Maintainer: Tom Gundersen <t...@jklm.no> -# Contributor: Jan de Groot <j...@archlinux.org> -# Contributor: Giovanni Scafora <giova...@archlinux.org> - -pkgname=brltty -pkgver=4.5 -pkgrel=2 -pkgdesc="Braille display driver for Linux/Unix" -arch=(i686 x86_64) -url="http://mielke.cc/brltty" -license=(GPL LGPL) -depends=(libxaw at-spi2-core gpm 'icu' tcl atk cython) -makedepends=(bluez) -optdepends=('bluez: bluetooth support') -backup=(etc/brltty.conf) -options=('!emptydirs') -install=brltty.install -source=(http://mielke.cc/$pkgname/releases/$pkgname-$pkgver.tar.gz - brltty.service) - -build() { - cd $pkgname-$pkgver - ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \ - --mandir=/usr/share/man \ - --with-tables-directory=/usr/share/brltty \ - --with-screen-driver=a2 \ - --enable-gpm \ - --disable-java-bindings \ - --disable-static - - make -} - -package() { - cd $pkgname-$pkgver - make INSTALL_ROOT="$pkgdir" install - install -Dm644 Documents/brltty.conf "$pkgdir/etc/brltty.conf" - install -Dm644 ../brltty.service "$pkgdir/usr/lib/systemd/system/brltty.service" -} -md5sums=('7b52fa7746fed41ed344a1f75ce55951' - '0cad54bb5470122535f5e3a11d5ca123') Copied: brltty/repos/testing-x86_64/PKGBUILD (from rev 183559, brltty/trunk/PKGBUILD) =================================================================== --- testing-x86_64/PKGBUILD (rev 0) +++ testing-x86_64/PKGBUILD 2013-04-23 12:32:27 UTC (rev 183560) @@ -0,0 +1,44 @@ +# $Id$ +# Maintainer: Tom Gundersen <t...@jklm.no> +# Contributor: Jan de Groot <j...@archlinux.org> +# Contributor: Giovanni Scafora <giova...@archlinux.org> + +pkgname=brltty +pkgver=4.5 +pkgrel=3 +pkgdesc="Braille display driver for Linux/Unix" +arch=(i686 x86_64) +url="http://mielke.cc/brltty" +license=(GPL LGPL) +depends=(libxaw gpm icu tcl cython) +makedepends=(bluez at-spi2-core) +optdepends=('bluez: bluetooth support' + 'at-spi2-core: X11/GNOME Apps accessibility' + 'atk: ATK bridge for X11/GNOME accessibility') +backup=(etc/brltty.conf) +options=('!emptydirs') +install=brltty.install +source=(http://mielke.cc/$pkgname/releases/$pkgname-$pkgver.tar.gz + brltty.service) + +build() { + cd $pkgname-$pkgver + ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \ + --mandir=/usr/share/man \ + --with-tables-directory=/usr/share/brltty \ + --with-screen-driver=lx \ + --enable-gpm \ + --disable-java-bindings \ + --disable-static + + make +} + +package() { + cd $pkgname-$pkgver + make INSTALL_ROOT="$pkgdir" install + install -Dm644 Documents/brltty.conf "$pkgdir/etc/brltty.conf" + install -Dm644 ../brltty.service "$pkgdir/usr/lib/systemd/system/brltty.service" +} +md5sums=('7b52fa7746fed41ed344a1f75ce55951' + '0cad54bb5470122535f5e3a11d5ca123') Deleted: testing-x86_64/brltty.install =================================================================== --- testing-x86_64/brltty.install 2013-04-23 12:32:17 UTC (rev 183559) +++ testing-x86_64/brltty.install 2013-04-23 12:32:27 UTC (rev 183560) @@ -1,20 +0,0 @@ -post_install () { - getent group brlapi &>/dev/null || groupadd -r brlapi - if [ ! -e /etc/brlapi.key ]; then - mcookie >/etc/brlapi.key - chmod 0640 /etc/brlapi.key - chgrp brlapi /etc/brlapi.key - echo "Please add your user to the brlapi group." - fi -} - -post_upgrade () { - post_install -} - -post_remove () { - getent group brlapi >/dev/null 2>&1 && groupdel brlapi - if [ -e /etc/brlapi.key ]; then - rm -f /etc/brlapi.key - fi -} Copied: brltty/repos/testing-x86_64/brltty.install (from rev 183559, brltty/trunk/brltty.install) =================================================================== --- testing-x86_64/brltty.install (rev 0) +++ testing-x86_64/brltty.install 2013-04-23 12:32:27 UTC (rev 183560) @@ -0,0 +1,20 @@ +post_install () { + getent group brlapi &>/dev/null || groupadd -r brlapi + if [ ! -e /etc/brlapi.key ]; then + mcookie >/etc/brlapi.key + chmod 0640 /etc/brlapi.key + chgrp brlapi /etc/brlapi.key + echo "Please add your user to the brlapi group." + fi +} + +post_upgrade () { + post_install +} + +post_remove () { + getent group brlapi >/dev/null 2>&1 && groupdel brlapi + if [ -e /etc/brlapi.key ]; then + rm -f /etc/brlapi.key + fi +} Deleted: testing-x86_64/brltty.service =================================================================== --- testing-x86_64/brltty.service 2013-04-23 12:32:17 UTC (rev 183559) +++ testing-x86_64/brltty.service 2013-04-23 12:32:27 UTC (rev 183560) @@ -1,12 +0,0 @@ -[Unit] -Description=Braille Console Driver -DefaultDependencies=no -Before=sysinit.target - -[Service] -ExecStart=/usr/bin/brltty --pid-file=/run/brltty.pid -Type=forking -PIDFile=/run/brltty.pid - -[Install] -WantedBy=sysinit.target Copied: brltty/repos/testing-x86_64/brltty.service (from rev 183559, brltty/trunk/brltty.service) =================================================================== --- testing-x86_64/brltty.service (rev 0) +++ testing-x86_64/brltty.service 2013-04-23 12:32:27 UTC (rev 183560) @@ -0,0 +1,12 @@ +[Unit] +Description=Braille Console Driver +DefaultDependencies=no +Before=sysinit.target + +[Service] +ExecStart=/usr/bin/brltty --pid-file=/run/brltty.pid +Type=forking +PIDFile=/run/brltty.pid + +[Install] +WantedBy=sysinit.target