[arch-commits] Commit in brltty/repos (6 files)

2020-04-27 Thread Evangelos Foutras via arch-commits
Date: Monday, April 27, 2020 @ 12:45:03
  Author: foutrelis
Revision: 381720

archrelease: copy trunk to staging-x86_64

Added:
  brltty/repos/staging-x86_64/
  brltty/repos/staging-x86_64/PKGBUILD
(from rev 381719, brltty/trunk/PKGBUILD)
  brltty/repos/staging-x86_64/brltty.install
(from rev 381719, brltty/trunk/brltty.install)
  brltty/repos/staging-x86_64/brltty.service
(from rev 381719, brltty/trunk/brltty.service)
  brltty/repos/staging-x86_64/brltty.sysusers
(from rev 381719, brltty/trunk/brltty.sysusers)
  brltty/repos/staging-x86_64/brltty.tmpfiles
(from rev 381719, brltty/trunk/brltty.tmpfiles)

-+
 PKGBUILD|   60 ++
 brltty.install  |   12 ++
 brltty.service  |   12 ++
 brltty.sysusers |1 
 brltty.tmpfiles |1 
 5 files changed, 86 insertions(+)

Copied: brltty/repos/staging-x86_64/PKGBUILD (from rev 381719, 
brltty/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-04-27 12:45:03 UTC (rev 381720)
@@ -0,0 +1,60 @@
+# Maintainer: David Runge 
+# Contributor: Tom Gundersen 
+# Contributor: Jan de Groot 
+# Contributor: Giovanni Scafora 
+
+pkgname=brltty
+pkgver=6.0
+pkgrel=9
+pkgdesc="Braille display driver for Linux/Unix"
+arch=('x86_64')
+url="https://brltty.app;
+license=('LGPL2.1')
+depends=('gpm' 'icu' 'liblouis' 'tcl')
+makedepends=('at-spi2-core' 'bluez-libs' 'cython' 'espeak' 'java-environment'
+'libxaw' 'ocaml-ctypes' 'ocaml-findlib' 'polkit' 'speech-dispatcher')
+optdepends=('at-spi2-core: X11/GNOME Apps accessibility'
+'atk: ATK bridge for X11/GNOME accessibility'
+'bluez-libs: bluetooth support'
+'espeak: espeak driver'
+'java-runtime: Java support'
+'libxaw: X11 support'
+'ocaml: OCaml support'
+'polkit: PolicyKit support'
+'python: Python support'
+'speech-dispatcher: speech-dispatcher driver')
+backup=(etc/brltty.conf)
+options=('!emptydirs')
+install=brltty.install
+source=("https://brltty.app/archive/${pkgname}-${pkgver}.tar.bz2;
+"${pkgname}.service"
+"${pkgname}.tmpfiles"
+"${pkgname}.sysusers")
+sha512sums=('b114cb55916109ddeb472df1e5d206c27e93cab64c4b51f82cf0887f63f6fa90064230f769302b1ba9ba7259079026a83e7b7ed46ba20a40676a487df317902e'
+
'5da854db7612b7fcc1f1a8da0825e19509158041ceedbefc7649d220fd94a17c11044985abfc435b65a8b795c19dd2d16ff05f59641e57805f710b76570a5af4'
+
'a530fe66983768f9dc544af01c586abc101dfa2ed76885b4f1fd78c483b59e8445f2c0dbbfb865dd1cf2874342c346bd35ce978ab246e9cdd31d2d489a14e770'
+
'cc2e2d5f33d4e11d6ff828aefc0773ccdc02127ce2f00649c1e3f8d4b39b90789f4a0e41385b344f850c38bd4a1df36d3d9d413a59144d431defdd343633f800')
+
+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
+  make -j1
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make INSTALL_ROOT="${pkgdir}" install
+  install -vDm 644 "Documents/${pkgname}.conf" -t "${pkgdir}/etc/"
+  install -vDm 644 "../${pkgname}.service" \
+-t "${pkgdir}/usr/lib/systemd/system/"
+  install -vDm 644 "../${pkgname}.sysusers" \
+"${pkgdir}/usr/lib/sysusers.d/${pkgname}.conf"
+  install -vDm 644 "../${pkgname}.tmpfiles" \
+"${pkgdir}/usr/lib/tmpfiles.d/${pkgname}.conf"
+}

Copied: brltty/repos/staging-x86_64/brltty.install (from rev 381719, 
brltty/trunk/brltty.install)
===
--- staging-x86_64/brltty.install   (rev 0)
+++ staging-x86_64/brltty.install   2020-04-27 12:45:03 UTC (rev 381720)
@@ -0,0 +1,12 @@
+post_install () {
+  [ ! -e /etc/brlapi.key ] && mcookie -v > /etc/brlapi.key
+  echo "Please add your user to the brlapi group."
+}
+
+post_upgrade () {
+  post_install
+}
+
+post_remove() {
+  [ -e /etc/brlapi.key ] && rm -v /etc/brlapi.key
+}

Copied: brltty/repos/staging-x86_64/brltty.service (from rev 381719, 
brltty/trunk/brltty.service)
===
--- staging-x86_64/brltty.service   (rev 0)
+++ staging-x86_64/brltty.service   2020-04-27 12:45:03 UTC (rev 381720)
@@ -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

Copied: brltty/repos/staging-x86_64/brltty.sysusers (from rev 381719, 
brltty/trunk/brltty.sysusers)

[arch-commits] Commit in brltty/repos (6 files)

2019-12-02 Thread Antonio Rojas via arch-commits
Date: Monday, December 2, 2019 @ 19:19:13
  Author: arojas
Revision: 370224

archrelease: copy trunk to staging-x86_64

Added:
  brltty/repos/staging-x86_64/
  brltty/repos/staging-x86_64/PKGBUILD
(from rev 370223, brltty/trunk/PKGBUILD)
  brltty/repos/staging-x86_64/brltty.install
(from rev 370223, brltty/trunk/brltty.install)
  brltty/repos/staging-x86_64/brltty.service
(from rev 370223, brltty/trunk/brltty.service)
  brltty/repos/staging-x86_64/brltty.sysusers
(from rev 370223, brltty/trunk/brltty.sysusers)
  brltty/repos/staging-x86_64/brltty.tmpfiles
(from rev 370223, brltty/trunk/brltty.tmpfiles)

-+
 PKGBUILD|   60 ++
 brltty.install  |   12 ++
 brltty.service  |   12 ++
 brltty.sysusers |1 
 brltty.tmpfiles |1 
 5 files changed, 86 insertions(+)

Copied: brltty/repos/staging-x86_64/PKGBUILD (from rev 370223, 
brltty/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-12-02 19:19:13 UTC (rev 370224)
@@ -0,0 +1,60 @@
+# Maintainer: David Runge 
+# Contributor: Tom Gundersen 
+# Contributor: Jan de Groot 
+# Contributor: Giovanni Scafora 
+
+pkgname=brltty
+pkgver=6.0
+pkgrel=8
+pkgdesc="Braille display driver for Linux/Unix"
+arch=('x86_64')
+url="https://brltty.app;
+license=('LGPL2.1')
+depends=('gpm' 'icu' 'liblouis' 'tcl')
+makedepends=('at-spi2-core' 'bluez-libs' 'cython' 'espeak' 'java-environment'
+'libxaw' 'ocaml-ctypes' 'ocaml-findlib' 'polkit' 'speech-dispatcher')
+optdepends=('at-spi2-core: X11/GNOME Apps accessibility'
+'atk: ATK bridge for X11/GNOME accessibility'
+'bluez-libs: bluetooth support'
+'espeak: espeak driver'
+'java-runtime: Java support'
+'libxaw: X11 support'
+'ocaml: OCaml support'
+'polkit: PolicyKit support'
+'python: Python support'
+'speech-dispatcher: speech-dispatcher driver')
+backup=(etc/brltty.conf)
+options=('!emptydirs')
+install=brltty.install
+source=("https://brltty.app/archive/${pkgname}-${pkgver}.tar.bz2;
+"${pkgname}.service"
+"${pkgname}.tmpfiles"
+"${pkgname}.sysusers")
+sha512sums=('b114cb55916109ddeb472df1e5d206c27e93cab64c4b51f82cf0887f63f6fa90064230f769302b1ba9ba7259079026a83e7b7ed46ba20a40676a487df317902e'
+
'5da854db7612b7fcc1f1a8da0825e19509158041ceedbefc7649d220fd94a17c11044985abfc435b65a8b795c19dd2d16ff05f59641e57805f710b76570a5af4'
+
'a530fe66983768f9dc544af01c586abc101dfa2ed76885b4f1fd78c483b59e8445f2c0dbbfb865dd1cf2874342c346bd35ce978ab246e9cdd31d2d489a14e770'
+
'cc2e2d5f33d4e11d6ff828aefc0773ccdc02127ce2f00649c1e3f8d4b39b90789f4a0e41385b344f850c38bd4a1df36d3d9d413a59144d431defdd343633f800')
+
+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
+  make -j1
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make INSTALL_ROOT="${pkgdir}" install
+  install -vDm 644 "Documents/${pkgname}.conf" -t "${pkgdir}/etc/"
+  install -vDm 644 "../${pkgname}.service" \
+-t "${pkgdir}/usr/lib/systemd/system/"
+  install -vDm 644 "../${pkgname}.sysusers" \
+"${pkgdir}/usr/lib/sysusers.d/${pkgname}.conf"
+  install -vDm 644 "../${pkgname}.tmpfiles" \
+"${pkgdir}/usr/lib/tmpfiles.d/${pkgname}.conf"
+}

Copied: brltty/repos/staging-x86_64/brltty.install (from rev 370223, 
brltty/trunk/brltty.install)
===
--- staging-x86_64/brltty.install   (rev 0)
+++ staging-x86_64/brltty.install   2019-12-02 19:19:13 UTC (rev 370224)
@@ -0,0 +1,12 @@
+post_install () {
+  [ ! -e /etc/brlapi.key ] && mcookie -v > /etc/brlapi.key
+  echo "Please add your user to the brlapi group."
+}
+
+post_upgrade () {
+  post_install
+}
+
+post_remove() {
+  [ -e /etc/brlapi.key ] && rm -v /etc/brlapi.key
+}

Copied: brltty/repos/staging-x86_64/brltty.service (from rev 370223, 
brltty/trunk/brltty.service)
===
--- staging-x86_64/brltty.service   (rev 0)
+++ staging-x86_64/brltty.service   2019-12-02 19:19:13 UTC (rev 370224)
@@ -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

Copied: brltty/repos/staging-x86_64/brltty.sysusers (from rev 370223, 
brltty/trunk/brltty.sysusers)

[arch-commits] Commit in brltty/repos (6 files)

2019-11-11 Thread Evangelos Foutras via arch-commits
Date: Tuesday, November 12, 2019 @ 02:16:53
  Author: foutrelis
Revision: 367843

archrelease: copy trunk to staging-x86_64

Added:
  brltty/repos/staging-x86_64/
  brltty/repos/staging-x86_64/PKGBUILD
(from rev 367842, brltty/trunk/PKGBUILD)
  brltty/repos/staging-x86_64/brltty.install
(from rev 367842, brltty/trunk/brltty.install)
  brltty/repos/staging-x86_64/brltty.service
(from rev 367842, brltty/trunk/brltty.service)
  brltty/repos/staging-x86_64/brltty.sysusers
(from rev 367842, brltty/trunk/brltty.sysusers)
  brltty/repos/staging-x86_64/brltty.tmpfiles
(from rev 367842, brltty/trunk/brltty.tmpfiles)

-+
 PKGBUILD|   60 ++
 brltty.install  |   12 ++
 brltty.service  |   12 ++
 brltty.sysusers |1 
 brltty.tmpfiles |1 
 5 files changed, 86 insertions(+)

Copied: brltty/repos/staging-x86_64/PKGBUILD (from rev 367842, 
brltty/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-11-12 02:16:53 UTC (rev 367843)
@@ -0,0 +1,60 @@
+# Maintainer: David Runge 
+# Contributor: Tom Gundersen 
+# Contributor: Jan de Groot 
+# Contributor: Giovanni Scafora 
+
+pkgname=brltty
+pkgver=6.0
+pkgrel=7
+pkgdesc="Braille display driver for Linux/Unix"
+arch=('x86_64')
+url="https://brltty.app;
+license=('LGPL2.1')
+depends=('gpm' 'icu' 'liblouis' 'tcl')
+makedepends=('at-spi2-core' 'bluez-libs' 'cython' 'espeak' 'java-environment'
+'libxaw' 'ocaml-ctypes' 'ocaml-findlib' 'polkit' 'speech-dispatcher')
+optdepends=('at-spi2-core: X11/GNOME Apps accessibility'
+'atk: ATK bridge for X11/GNOME accessibility'
+'bluez-libs: bluetooth support'
+'espeak: espeak driver'
+'java-runtime: Java support'
+'libxaw: X11 support'
+'ocaml: OCaml support'
+'polkit: PolicyKit support'
+'python: Python support'
+'speech-dispatcher: speech-dispatcher driver')
+backup=(etc/brltty.conf)
+options=('!emptydirs')
+install=brltty.install
+source=("https://brltty.app/archive/${pkgname}-${pkgver}.tar.bz2;
+"${pkgname}.service"
+"${pkgname}.tmpfiles"
+"${pkgname}.sysusers")
+sha512sums=('b114cb55916109ddeb472df1e5d206c27e93cab64c4b51f82cf0887f63f6fa90064230f769302b1ba9ba7259079026a83e7b7ed46ba20a40676a487df317902e'
+
'5da854db7612b7fcc1f1a8da0825e19509158041ceedbefc7649d220fd94a17c11044985abfc435b65a8b795c19dd2d16ff05f59641e57805f710b76570a5af4'
+
'a530fe66983768f9dc544af01c586abc101dfa2ed76885b4f1fd78c483b59e8445f2c0dbbfb865dd1cf2874342c346bd35ce978ab246e9cdd31d2d489a14e770'
+
'cc2e2d5f33d4e11d6ff828aefc0773ccdc02127ce2f00649c1e3f8d4b39b90789f4a0e41385b344f850c38bd4a1df36d3d9d413a59144d431defdd343633f800')
+
+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
+  make
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make INSTALL_ROOT="${pkgdir}" install
+  install -vDm 644 "Documents/${pkgname}.conf" -t "${pkgdir}/etc/"
+  install -vDm 644 "../${pkgname}.service" \
+-t "${pkgdir}/usr/lib/systemd/system/"
+  install -vDm 644 "../${pkgname}.sysusers" \
+"${pkgdir}/usr/lib/sysusers.d/${pkgname}.conf"
+  install -vDm 644 "../${pkgname}.tmpfiles" \
+"${pkgdir}/usr/lib/tmpfiles.d/${pkgname}.conf"
+}

Copied: brltty/repos/staging-x86_64/brltty.install (from rev 367842, 
brltty/trunk/brltty.install)
===
--- staging-x86_64/brltty.install   (rev 0)
+++ staging-x86_64/brltty.install   2019-11-12 02:16:53 UTC (rev 367843)
@@ -0,0 +1,12 @@
+post_install () {
+  [ ! -e /etc/brlapi.key ] && mcookie -v > /etc/brlapi.key
+  echo "Please add your user to the brlapi group."
+}
+
+post_upgrade () {
+  post_install
+}
+
+post_remove() {
+  [ -e /etc/brlapi.key ] && rm -v /etc/brlapi.key
+}

Copied: brltty/repos/staging-x86_64/brltty.service (from rev 367842, 
brltty/trunk/brltty.service)
===
--- staging-x86_64/brltty.service   (rev 0)
+++ staging-x86_64/brltty.service   2019-11-12 02:16:53 UTC (rev 367843)
@@ -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

Copied: brltty/repos/staging-x86_64/brltty.sysusers (from rev 367842, 
brltty/trunk/brltty.sysusers)

[arch-commits] Commit in brltty/repos (6 files)

2019-10-25 Thread Evangelos Foutras via arch-commits
Date: Saturday, October 26, 2019 @ 05:21:00
  Author: foutrelis
Revision: 365786

archrelease: copy trunk to staging-x86_64

Added:
  brltty/repos/staging-x86_64/
  brltty/repos/staging-x86_64/PKGBUILD
(from rev 365785, brltty/trunk/PKGBUILD)
  brltty/repos/staging-x86_64/brltty.install
(from rev 365785, brltty/trunk/brltty.install)
  brltty/repos/staging-x86_64/brltty.service
(from rev 365785, brltty/trunk/brltty.service)
  brltty/repos/staging-x86_64/brltty.sysusers
(from rev 365785, brltty/trunk/brltty.sysusers)
  brltty/repos/staging-x86_64/brltty.tmpfiles
(from rev 365785, brltty/trunk/brltty.tmpfiles)

-+
 PKGBUILD|   60 ++
 brltty.install  |   12 ++
 brltty.service  |   12 ++
 brltty.sysusers |1 
 brltty.tmpfiles |1 
 5 files changed, 86 insertions(+)

Copied: brltty/repos/staging-x86_64/PKGBUILD (from rev 365785, 
brltty/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-10-26 05:21:00 UTC (rev 365786)
@@ -0,0 +1,60 @@
+# Maintainer: David Runge 
+# Contributor: Tom Gundersen 
+# Contributor: Jan de Groot 
+# Contributor: Giovanni Scafora 
+
+pkgname=brltty
+pkgver=6.0
+pkgrel=5
+pkgdesc="Braille display driver for Linux/Unix"
+arch=('x86_64')
+url="https://brltty.app;
+license=('LGPL2.1')
+depends=('gpm' 'icu' 'liblouis' 'tcl')
+makedepends=('at-spi2-core' 'bluez-libs' 'cython' 'espeak' 'java-environment'
+'libxaw' 'ocaml-ctypes' 'ocaml-findlib' 'polkit' 'speech-dispatcher')
+optdepends=('at-spi2-core: X11/GNOME Apps accessibility'
+'atk: ATK bridge for X11/GNOME accessibility'
+'bluez-libs: bluetooth support'
+'espeak: espeak driver'
+'java-runtime: Java support'
+'libxaw: X11 support'
+'ocaml: OCaml support'
+'polkit: PolicyKit support'
+'python: Python support'
+'speech-dispatcher: speech-dispatcher driver')
+backup=(etc/brltty.conf)
+options=('!emptydirs')
+install=brltty.install
+source=("https://brltty.app/archive/${pkgname}-${pkgver}.tar.bz2;
+"${pkgname}.service"
+"${pkgname}.tmpfiles"
+"${pkgname}.sysusers")
+sha512sums=('b114cb55916109ddeb472df1e5d206c27e93cab64c4b51f82cf0887f63f6fa90064230f769302b1ba9ba7259079026a83e7b7ed46ba20a40676a487df317902e'
+
'5da854db7612b7fcc1f1a8da0825e19509158041ceedbefc7649d220fd94a17c11044985abfc435b65a8b795c19dd2d16ff05f59641e57805f710b76570a5af4'
+
'a530fe66983768f9dc544af01c586abc101dfa2ed76885b4f1fd78c483b59e8445f2c0dbbfb865dd1cf2874342c346bd35ce978ab246e9cdd31d2d489a14e770'
+
'cc2e2d5f33d4e11d6ff828aefc0773ccdc02127ce2f00649c1e3f8d4b39b90789f4a0e41385b344f850c38bd4a1df36d3d9d413a59144d431defdd343633f800')
+
+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
+  make
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make INSTALL_ROOT="${pkgdir}" install
+  install -vDm 644 "Documents/${pkgname}.conf" -t "${pkgdir}/etc/"
+  install -vDm 644 "../${pkgname}.service" \
+-t "${pkgdir}/usr/lib/systemd/system/"
+  install -vDm 644 "../${pkgname}.sysusers" \
+"${pkgdir}/usr/lib/sysusers.d/${pkgname}.conf"
+  install -vDm 644 "../${pkgname}.tmpfiles" \
+"${pkgdir}/usr/lib/tmpfiles.d/${pkgname}.conf"
+}

Copied: brltty/repos/staging-x86_64/brltty.install (from rev 365785, 
brltty/trunk/brltty.install)
===
--- staging-x86_64/brltty.install   (rev 0)
+++ staging-x86_64/brltty.install   2019-10-26 05:21:00 UTC (rev 365786)
@@ -0,0 +1,12 @@
+post_install () {
+  [ ! -e /etc/brlapi.key ] && mcookie -v > /etc/brlapi.key
+  echo "Please add your user to the brlapi group."
+}
+
+post_upgrade () {
+  post_install
+}
+
+post_remove() {
+  [ -e /etc/brlapi.key ] && rm -v /etc/brlapi.key
+}

Copied: brltty/repos/staging-x86_64/brltty.service (from rev 365785, 
brltty/trunk/brltty.service)
===
--- staging-x86_64/brltty.service   (rev 0)
+++ staging-x86_64/brltty.service   2019-10-26 05:21:00 UTC (rev 365786)
@@ -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

Copied: brltty/repos/staging-x86_64/brltty.sysusers (from rev 365785, 
brltty/trunk/brltty.sysusers)

[arch-commits] Commit in brltty/repos (6 files)

2019-09-02 Thread David Runge via arch-commits
Date: Monday, September 2, 2019 @ 10:54:31
  Author: dvzrv
Revision: 361488

archrelease: copy trunk to testing-x86_64

Added:
  brltty/repos/testing-x86_64/
  brltty/repos/testing-x86_64/PKGBUILD
(from rev 361487, brltty/trunk/PKGBUILD)
  brltty/repos/testing-x86_64/brltty.install
(from rev 361487, brltty/trunk/brltty.install)
  brltty/repos/testing-x86_64/brltty.service
(from rev 361487, brltty/trunk/brltty.service)
  brltty/repos/testing-x86_64/brltty.sysusers
(from rev 361487, brltty/trunk/brltty.sysusers)
  brltty/repos/testing-x86_64/brltty.tmpfiles
(from rev 361487, brltty/trunk/brltty.tmpfiles)

-+
 PKGBUILD|   60 ++
 brltty.install  |   12 ++
 brltty.service  |   12 ++
 brltty.sysusers |1 
 brltty.tmpfiles |1 
 5 files changed, 86 insertions(+)

Copied: brltty/repos/testing-x86_64/PKGBUILD (from rev 361487, 
brltty/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-09-02 10:54:31 UTC (rev 361488)
@@ -0,0 +1,60 @@
+# Maintainer: David Runge 
+# Contributor: Tom Gundersen 
+# Contributor: Jan de Groot 
+# Contributor: Giovanni Scafora 
+
+pkgname=brltty
+pkgver=6.0
+pkgrel=3
+pkgdesc="Braille display driver for Linux/Unix"
+arch=('x86_64')
+url="https://brltty.app;
+license=('LGPL2.1')
+depends=('gpm' 'icu' 'liblouis' 'tcl')
+makedepends=('at-spi2-core' 'bluez-libs' 'cython' 'espeak' 'java-environment'
+'libxaw' 'ocaml-ctypes' 'ocaml-findlib' 'polkit' 'speech-dispatcher')
+optdepends=('at-spi2-core: X11/GNOME Apps accessibility'
+'atk: ATK bridge for X11/GNOME accessibility'
+'bluez-libs: bluetooth support'
+'espeak: espeak driver'
+'java-runtime: Java support'
+'libxaw: X11 support'
+'ocaml: OCaml support'
+'polkit: PolicyKit support'
+'python: Python support'
+'speech-dispatcher: speech-dispatcher driver')
+backup=(etc/brltty.conf)
+options=('!emptydirs')
+install=brltty.install
+source=("https://brltty.app/archive/${pkgname}-${pkgver}.tar.bz2;
+"${pkgname}.service"
+"${pkgname}.tmpfiles"
+"${pkgname}.sysusers")
+sha512sums=('b114cb55916109ddeb472df1e5d206c27e93cab64c4b51f82cf0887f63f6fa90064230f769302b1ba9ba7259079026a83e7b7ed46ba20a40676a487df317902e'
+
'5da854db7612b7fcc1f1a8da0825e19509158041ceedbefc7649d220fd94a17c11044985abfc435b65a8b795c19dd2d16ff05f59641e57805f710b76570a5af4'
+
'a530fe66983768f9dc544af01c586abc101dfa2ed76885b4f1fd78c483b59e8445f2c0dbbfb865dd1cf2874342c346bd35ce978ab246e9cdd31d2d489a14e770'
+
'cc2e2d5f33d4e11d6ff828aefc0773ccdc02127ce2f00649c1e3f8d4b39b90789f4a0e41385b344f850c38bd4a1df36d3d9d413a59144d431defdd343633f800')
+
+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
+  make
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make INSTALL_ROOT="${pkgdir}" install
+  install -vDm 644 "Documents/${pkgname}.conf" -t "${pkgdir}/etc/"
+  install -vDm 644 "../${pkgname}.service" \
+-t "${pkgdir}/usr/lib/systemd/system/"
+  install -vDm 644 "../${pkgname}.sysusers" \
+"${pkgdir}/usr/lib/sysusers.d/${pkgname}.conf"
+  install -vDm 644 "../${pkgname}.tmpfiles" \
+"${pkgdir}/usr/lib/tmpfiles.d/${pkgname}.conf"
+}

Copied: brltty/repos/testing-x86_64/brltty.install (from rev 361487, 
brltty/trunk/brltty.install)
===
--- testing-x86_64/brltty.install   (rev 0)
+++ testing-x86_64/brltty.install   2019-09-02 10:54:31 UTC (rev 361488)
@@ -0,0 +1,12 @@
+post_install () {
+  [ ! -e /etc/brlapi.key ] && mcookie -v > /etc/brlapi.key
+  echo "Please add your user to the brlapi group."
+}
+
+post_upgrade () {
+  post_install
+}
+
+post_remove() {
+  [ -e /etc/brlapi.key ] && rm -v /etc/brlapi.key
+}

Copied: brltty/repos/testing-x86_64/brltty.service (from rev 361487, 
brltty/trunk/brltty.service)
===
--- testing-x86_64/brltty.service   (rev 0)
+++ testing-x86_64/brltty.service   2019-09-02 10:54:31 UTC (rev 361488)
@@ -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

Copied: brltty/repos/testing-x86_64/brltty.sysusers (from rev 361487, 
brltty/trunk/brltty.sysusers)

[arch-commits] Commit in brltty/repos (6 files)

2012-04-09 Thread andyrtr
Date: Monday, April 9, 2012 @ 09:40:39
  Author: andyrtr
Revision: 155930

db-move: moved brltty from [staging] to [testing] (x86_64)

Added:
  brltty/repos/testing-x86_64/
  brltty/repos/testing-x86_64/PKGBUILD
(from rev 155924, brltty/repos/staging-x86_64/PKGBUILD)
  brltty/repos/testing-x86_64/brltty
(from rev 155924, brltty/repos/staging-x86_64/brltty)
  brltty/repos/testing-x86_64/brltty.conf
(from rev 155924, brltty/repos/staging-x86_64/brltty.conf)
  brltty/repos/testing-x86_64/brltty.install
(from rev 155924, brltty/repos/staging-x86_64/brltty.install)
Deleted:
  brltty/repos/staging-x86_64/

+
 PKGBUILD   |   47 ++
 brltty |   68 +++
 brltty.conf|2 +
 brltty.install |   20 
 4 files changed, 137 insertions(+)

Copied: brltty/repos/testing-x86_64/PKGBUILD (from rev 155924, 
brltty/repos/staging-x86_64/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2012-04-09 13:40:39 UTC (rev 155930)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer:
+# Contributor: Jan de Groot j...@archlinux.org
+# Contributor: Giovanni Scafora giova...@archlinux.org
+
+pkgname=brltty
+pkgver=4.3
+pkgrel=5
+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' 'python2' 'tcl' 'atk' 'libxtst' 
'pyrex')
+makedepends=('bluez')
+optdepends=('bluez: bluetooth support')
+backup=(etc/brltty.conf etc/conf.d/brltty.conf)
+options=('!makeflags' '!emptydirs')
+install=brltty.install
+source=(http://mielke.cc/$pkgname/releases/$pkgname-$pkgver.tar.gz
+'brltty'
+'brltty.conf')
+md5sums=('5ada573f88df32b6150db3b9a620e20b'
+ '831ebaf0c56091702929c68805d20c4f'
+ 'a8ab8b3dd059e96e1734bc9cdcf844fc')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--mandir=/usr/share/man \
+--localstatedir=/var \
+--with-screen-driver=a2 \
+--enable-gpm \
+--disable-java-bindings \
+--disable-caml-bindings \
+PYTHON=/usr/bin/python2
+
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make INSTALL_ROOT=$pkgdir install
+  install -D -m755 $srcdir/brltty $pkgdir/etc/rc.d/brltty
+  install -D -m644 $srcdir/brltty.conf $pkgdir/etc/conf.d/brltty.conf
+  install -D -m644 Documents/brltty.conf $pkgdir/etc/brltty.conf
+}

Copied: brltty/repos/testing-x86_64/brltty (from rev 155924, 
brltty/repos/staging-x86_64/brltty)
===
--- testing-x86_64/brltty   (rev 0)
+++ testing-x86_64/brltty   2012-04-09 13:40:39 UTC (rev 155930)
@@ -0,0 +1,68 @@
+#!/bin/bash
+
+daemon_name=brltty
+
+. /etc/rc.conf
+. /etc/rc.d/functions
+. /etc/conf.d/$daemon_name.conf
+
+get_pid() {
+   pidof -o %PPID $daemon_name
+}
+
+case $1 in
+  start)
+stat_busy Starting $daemon_name daemon
+
+PID=$(get_pid)
+if [ -z $PID ]; then
+  [ -f /var/run/$daemon_name.pid ]  rm -f /var/run/$daemon_name.pid
+  # RUN
+  $daemon_name $brltty_args
+  #
+  if [ $? -gt 0 ]; then
+stat_fail
+exit 1
+  else
+echo $(get_pid)  /var/run/$daemon_name.pid
+add_daemon $daemon_name
+stat_done
+  fi
+else
+  stat_fail
+  exit 1
+fi
+;;
+
+  stop)
+stat_busy Stopping $daemon_name daemon
+PID=$(get_pid)
+# KILL
+[ ! -z $PID ]  kill $PID  /dev/null
+#
+if [ $? -gt 0 ]; then
+  stat_fail
+  exit 1
+else
+  rm -f /var/run/$daemon_name.pid  /dev/null
+  rm_daemon $daemon_name
+  stat_done
+fi
+;;
+
+  restart)
+$0 stop
+sleep 3
+$0 start
+;;
+
+  status)
+stat_busy Checking $daemon_name status;
+ck_status $daemon_name
+;;
+
+  *)
+echo usage: $0 {start|stop|restart|status}
+esac
+
+exit 0

Copied: brltty/repos/testing-x86_64/brltty.conf (from rev 155924, 
brltty/repos/staging-x86_64/brltty.conf)
===
--- testing-x86_64/brltty.conf  (rev 0)
+++ testing-x86_64/brltty.conf  2012-04-09 13:40:39 UTC (rev 155930)
@@ -0,0 +1,2 @@
+# Specify any arguments to pass to brltty here.
+brltty_args=
\ No newline at end of file

Copied: brltty/repos/testing-x86_64/brltty.install (from rev 155924, 
brltty/repos/staging-x86_64/brltty.install)
===
--- testing-x86_64/brltty.install   (rev 0)
+++ testing-x86_64/brltty.install   2012-04-09 13:40:39 UTC (rev 155930)
@@ -0,0 +1,20 @@
+post_install () {
+ getent group brlapi  /dev/null || groupadd -r brlapi
+ if [ ! -e /etc/brlapi.key ]; 

[arch-commits] Commit in brltty/repos (6 files)

2012-04-09 Thread andyrtr
Date: Monday, April 9, 2012 @ 09:40:38
  Author: andyrtr
Revision: 155929

db-move: moved brltty from [staging] to [testing] (i686)

Added:
  brltty/repos/testing-i686/
  brltty/repos/testing-i686/PKGBUILD
(from rev 155924, brltty/repos/staging-i686/PKGBUILD)
  brltty/repos/testing-i686/brltty
(from rev 155924, brltty/repos/staging-i686/brltty)
  brltty/repos/testing-i686/brltty.conf
(from rev 155924, brltty/repos/staging-i686/brltty.conf)
  brltty/repos/testing-i686/brltty.install
(from rev 155924, brltty/repos/staging-i686/brltty.install)
Deleted:
  brltty/repos/staging-i686/

+
 PKGBUILD   |   47 ++
 brltty |   68 +++
 brltty.conf|2 +
 brltty.install |   20 
 4 files changed, 137 insertions(+)

Copied: brltty/repos/testing-i686/PKGBUILD (from rev 155924, 
brltty/repos/staging-i686/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-04-09 13:40:38 UTC (rev 155929)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer:
+# Contributor: Jan de Groot j...@archlinux.org
+# Contributor: Giovanni Scafora giova...@archlinux.org
+
+pkgname=brltty
+pkgver=4.3
+pkgrel=5
+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' 'python2' 'tcl' 'atk' 'libxtst' 
'pyrex')
+makedepends=('bluez')
+optdepends=('bluez: bluetooth support')
+backup=(etc/brltty.conf etc/conf.d/brltty.conf)
+options=('!makeflags' '!emptydirs')
+install=brltty.install
+source=(http://mielke.cc/$pkgname/releases/$pkgname-$pkgver.tar.gz
+'brltty'
+'brltty.conf')
+md5sums=('5ada573f88df32b6150db3b9a620e20b'
+ '831ebaf0c56091702929c68805d20c4f'
+ 'a8ab8b3dd059e96e1734bc9cdcf844fc')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--mandir=/usr/share/man \
+--localstatedir=/var \
+--with-screen-driver=a2 \
+--enable-gpm \
+--disable-java-bindings \
+--disable-caml-bindings \
+PYTHON=/usr/bin/python2
+
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make INSTALL_ROOT=$pkgdir install
+  install -D -m755 $srcdir/brltty $pkgdir/etc/rc.d/brltty
+  install -D -m644 $srcdir/brltty.conf $pkgdir/etc/conf.d/brltty.conf
+  install -D -m644 Documents/brltty.conf $pkgdir/etc/brltty.conf
+}

Copied: brltty/repos/testing-i686/brltty (from rev 155924, 
brltty/repos/staging-i686/brltty)
===
--- testing-i686/brltty (rev 0)
+++ testing-i686/brltty 2012-04-09 13:40:38 UTC (rev 155929)
@@ -0,0 +1,68 @@
+#!/bin/bash
+
+daemon_name=brltty
+
+. /etc/rc.conf
+. /etc/rc.d/functions
+. /etc/conf.d/$daemon_name.conf
+
+get_pid() {
+   pidof -o %PPID $daemon_name
+}
+
+case $1 in
+  start)
+stat_busy Starting $daemon_name daemon
+
+PID=$(get_pid)
+if [ -z $PID ]; then
+  [ -f /var/run/$daemon_name.pid ]  rm -f /var/run/$daemon_name.pid
+  # RUN
+  $daemon_name $brltty_args
+  #
+  if [ $? -gt 0 ]; then
+stat_fail
+exit 1
+  else
+echo $(get_pid)  /var/run/$daemon_name.pid
+add_daemon $daemon_name
+stat_done
+  fi
+else
+  stat_fail
+  exit 1
+fi
+;;
+
+  stop)
+stat_busy Stopping $daemon_name daemon
+PID=$(get_pid)
+# KILL
+[ ! -z $PID ]  kill $PID  /dev/null
+#
+if [ $? -gt 0 ]; then
+  stat_fail
+  exit 1
+else
+  rm -f /var/run/$daemon_name.pid  /dev/null
+  rm_daemon $daemon_name
+  stat_done
+fi
+;;
+
+  restart)
+$0 stop
+sleep 3
+$0 start
+;;
+
+  status)
+stat_busy Checking $daemon_name status;
+ck_status $daemon_name
+;;
+
+  *)
+echo usage: $0 {start|stop|restart|status}
+esac
+
+exit 0

Copied: brltty/repos/testing-i686/brltty.conf (from rev 155924, 
brltty/repos/staging-i686/brltty.conf)
===
--- testing-i686/brltty.conf(rev 0)
+++ testing-i686/brltty.conf2012-04-09 13:40:38 UTC (rev 155929)
@@ -0,0 +1,2 @@
+# Specify any arguments to pass to brltty here.
+brltty_args=
\ No newline at end of file

Copied: brltty/repos/testing-i686/brltty.install (from rev 155924, 
brltty/repos/staging-i686/brltty.install)
===
--- testing-i686/brltty.install (rev 0)
+++ testing-i686/brltty.install 2012-04-09 13:40:38 UTC (rev 155929)
@@ -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