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

2016-07-02 Thread Lukas Fleischer
Date: Saturday, July 2, 2016 @ 22:22:19
  Author: lfleischer
Revision: 270869

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

Added:
  lirc/repos/testing-i686/
  lirc/repos/testing-i686/PKGBUILD
(from rev 270868, lirc/trunk/PKGBUILD)
  lirc/repos/testing-i686/lirc.install
(from rev 270868, lirc/trunk/lirc.install)
  lirc/repos/testing-i686/lirc.logrotate
(from rev 270868, lirc/trunk/lirc.logrotate)
  lirc/repos/testing-i686/lirc.tmpfiles
(from rev 270868, lirc/trunk/lirc.tmpfiles)
  lirc/repos/testing-x86_64/
  lirc/repos/testing-x86_64/PKGBUILD
(from rev 270868, lirc/trunk/PKGBUILD)
  lirc/repos/testing-x86_64/lirc.install
(from rev 270868, lirc/trunk/lirc.install)
  lirc/repos/testing-x86_64/lirc.logrotate
(from rev 270868, lirc/trunk/lirc.logrotate)
  lirc/repos/testing-x86_64/lirc.tmpfiles
(from rev 270868, lirc/trunk/lirc.tmpfiles)

---+
 testing-i686/PKGBUILD |   45 
 testing-i686/lirc.install |   13 +++
 testing-i686/lirc.logrotate   |5 
 testing-i686/lirc.tmpfiles|1 
 testing-x86_64/PKGBUILD   |   45 
 testing-x86_64/lirc.install   |   13 +++
 testing-x86_64/lirc.logrotate |5 
 testing-x86_64/lirc.tmpfiles  |1 
 8 files changed, 128 insertions(+)

Copied: lirc/repos/testing-i686/PKGBUILD (from rev 270868, lirc/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-07-02 22:22:19 UTC (rev 270869)
@@ -0,0 +1,45 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Paul Mattal 
+
+pkgname=lirc
+_pkgver=0.9.4a
+[[ $_pkgver =~ [a-z]$ ]] && pkgver="${_pkgver:0:-1}.${_pkgver: -1}" || 
pkgver="$_pkgver"
+pkgrel=1
+epoch=1
+pkgdesc="Linux Infrared Remote Control utilities"
+arch=('i686' 'x86_64')
+url="http://www.lirc.org/;
+license=('GPL')
+depends=('alsa-lib' 'libx11' 'libftdi')
+makedepends=('help2man' 'alsa-lib' 'libx11' 'libxslt' 'python')
+optdepends=('python: for lirc-setup, irdb-get and pronto2lirc')
+provides=('lirc-utils')
+conflicts=('lirc-utils')
+replaces=('lirc-utils')
+backup=('etc/lirc/lirc_options.conf' 'etc/lirc/lircd.conf' 
'etc/lirc/lircmd.conf')
+install=lirc.install
+source=("http://prdownloads.sourceforge.net/${pkgname}/${pkgname}-${_pkgver}.tar.bz2;
+lirc.logrotate
+lirc.tmpfiles)
+md5sums=('d38566cb159c864089c24f2fcc7c5ccc'
+ '3deb02604b37811d41816e9b4385fcc3'
+ 'febf25c154a7d36f01159e84f26c2d9a')
+
+build() {
+  cd "${srcdir}/lirc-${_pkgver}"
+
+  ./configure --prefix=/usr --sbindir=/usr/bin --sysconfdir=/etc 
--localstatedir=/var \
+ --with-transmitter --enable-sandboxed
+  make
+}
+
+package() {
+  cd "${srcdir}/lirc-${_pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 "${srcdir}"/lirc.tmpfiles 
"${pkgdir}"/usr/lib/tmpfiles.d/lirc.conf
+  install -Dm644 "${srcdir}"/lirc.logrotate "${pkgdir}"/etc/logrotate.d/lirc
+
+  rmdir "${pkgdir}"/var/{run/lirc/,run/}
+}

Copied: lirc/repos/testing-i686/lirc.install (from rev 270868, 
lirc/trunk/lirc.install)
===
--- testing-i686/lirc.install   (rev 0)
+++ testing-i686/lirc.install   2016-07-02 22:22:19 UTC (rev 270869)
@@ -0,0 +1,13 @@
+post_install() {
+   systemd-tmpfiles --create lirc.conf
+}
+
+post_upgrade() {
+   post_install
+
+   if [[ "$(vercmp $2 1:0.9.1-1)" -lt 0 ]]; then
+   echo ':: lirc.service and lircm.service have been replaced'
+   echo '   by the upstream unit files lircd.service and'
+   echo '   lircmd.service.'
+   fi
+}

Copied: lirc/repos/testing-i686/lirc.logrotate (from rev 270868, 
lirc/trunk/lirc.logrotate)
===
--- testing-i686/lirc.logrotate (rev 0)
+++ testing-i686/lirc.logrotate 2016-07-02 22:22:19 UTC (rev 270869)
@@ -0,0 +1,5 @@
+/var/log/lircd {
+   missingok
+   notifempty
+   delaycompress
+}

Copied: lirc/repos/testing-i686/lirc.tmpfiles (from rev 270868, 
lirc/trunk/lirc.tmpfiles)
===
--- testing-i686/lirc.tmpfiles  (rev 0)
+++ testing-i686/lirc.tmpfiles  2016-07-02 22:22:19 UTC (rev 270869)
@@ -0,0 +1 @@
+d /run/lirc 0755 root root -

Copied: lirc/repos/testing-x86_64/PKGBUILD (from rev 270868, 
lirc/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-07-02 22:22:19 UTC (rev 270869)
@@ -0,0 +1,45 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Paul Mattal 
+
+pkgname=lirc

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

2016-02-07 Thread Evangelos Foutras
Date: Monday, February 8, 2016 @ 00:56:12
  Author: foutrelis
Revision: 258956

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

Added:
  lirc/repos/staging-i686/
  lirc/repos/staging-i686/PKGBUILD
(from rev 258955, lirc/trunk/PKGBUILD)
  lirc/repos/staging-i686/lirc.install
(from rev 258955, lirc/trunk/lirc.install)
  lirc/repos/staging-i686/lirc.logrotate
(from rev 258955, lirc/trunk/lirc.logrotate)
  lirc/repos/staging-i686/lirc.tmpfiles
(from rev 258955, lirc/trunk/lirc.tmpfiles)
  lirc/repos/staging-x86_64/
  lirc/repos/staging-x86_64/PKGBUILD
(from rev 258955, lirc/trunk/PKGBUILD)
  lirc/repos/staging-x86_64/lirc.install
(from rev 258955, lirc/trunk/lirc.install)
  lirc/repos/staging-x86_64/lirc.logrotate
(from rev 258955, lirc/trunk/lirc.logrotate)
  lirc/repos/staging-x86_64/lirc.tmpfiles
(from rev 258955, lirc/trunk/lirc.tmpfiles)

---+
 staging-i686/PKGBUILD |   45 
 staging-i686/lirc.install |   13 +++
 staging-i686/lirc.logrotate   |5 
 staging-i686/lirc.tmpfiles|1 
 staging-x86_64/PKGBUILD   |   45 
 staging-x86_64/lirc.install   |   13 +++
 staging-x86_64/lirc.logrotate |5 
 staging-x86_64/lirc.tmpfiles  |1 
 8 files changed, 128 insertions(+)

Copied: lirc/repos/staging-i686/PKGBUILD (from rev 258955, lirc/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-02-07 23:56:12 UTC (rev 258956)
@@ -0,0 +1,45 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Paul Mattal 
+
+pkgname=lirc
+_pkgver=0.9.3a
+[[ $_pkgver =~ [a-z]$ ]] && pkgver="${_pkgver:0:-1}.${_pkgver: -1}" || 
pkgver="$_pkgver"
+pkgrel=2
+epoch=1
+pkgdesc="Linux Infrared Remote Control utils"
+arch=('i686' 'x86_64')
+url="http://www.lirc.org/;
+license=('GPL')
+depends=('alsa-lib' 'libx11' 'libftdi-compat' 'libirman')
+makedepends=('help2man' 'alsa-lib' 'libx11' 'libftdi-compat' 'libirman' 
'libxslt' 'python')
+optdepends=('python: for lirc-setup, irdb-get and pronto2lirc')
+provides=('lirc-utils')
+conflicts=('lirc-utils')
+replaces=('lirc-utils')
+backup=('etc/lirc/lirc_options.conf' 'etc/lirc/lircd.conf' 
'etc/lirc/lircmd.conf')
+install=lirc.install
+source=("http://prdownloads.sourceforge.net/${pkgname}/${pkgname}-${_pkgver}.tar.bz2;
+lirc.logrotate
+lirc.tmpfiles)
+md5sums=('f9ed5dd0684a52c7cd98672e71e81b05'
+ '3deb02604b37811d41816e9b4385fcc3'
+ 'febf25c154a7d36f01159e84f26c2d9a')
+
+build() {
+  cd "${srcdir}/lirc-${_pkgver}"
+
+  ./configure --prefix=/usr --sbindir=/usr/bin --sysconfdir=/etc 
--localstatedir=/var \
+ --with-transmitter --enable-sandboxed 
+  make
+}
+
+package() {
+  cd "${srcdir}/lirc-${_pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 "${srcdir}"/lirc.tmpfiles 
"${pkgdir}"/usr/lib/tmpfiles.d/lirc.conf
+  install -Dm644 "${srcdir}"/lirc.logrotate "${pkgdir}"/etc/logrotate.d/lirc
+
+  rmdir "${pkgdir}"/var/{run/lirc/,run/,}
+}

Copied: lirc/repos/staging-i686/lirc.install (from rev 258955, 
lirc/trunk/lirc.install)
===
--- staging-i686/lirc.install   (rev 0)
+++ staging-i686/lirc.install   2016-02-07 23:56:12 UTC (rev 258956)
@@ -0,0 +1,13 @@
+post_install() {
+   systemd-tmpfiles --create lirc.conf
+}
+
+post_upgrade() {
+   post_install
+
+   if [[ "$(vercmp $2 1:0.9.1-1)" -lt 0 ]]; then
+   echo ':: lirc.service and lircm.service have been replaced'
+   echo '   by the upstream unit files lircd.service and'
+   echo '   lircmd.service.'
+   fi
+}

Copied: lirc/repos/staging-i686/lirc.logrotate (from rev 258955, 
lirc/trunk/lirc.logrotate)
===
--- staging-i686/lirc.logrotate (rev 0)
+++ staging-i686/lirc.logrotate 2016-02-07 23:56:12 UTC (rev 258956)
@@ -0,0 +1,5 @@
+/var/log/lircd {
+   missingok
+   notifempty
+   delaycompress
+}

Copied: lirc/repos/staging-i686/lirc.tmpfiles (from rev 258955, 
lirc/trunk/lirc.tmpfiles)
===
--- staging-i686/lirc.tmpfiles  (rev 0)
+++ staging-i686/lirc.tmpfiles  2016-02-07 23:56:12 UTC (rev 258956)
@@ -0,0 +1 @@
+d /run/lirc 0755 root root -

Copied: lirc/repos/staging-x86_64/PKGBUILD (from rev 258955, 
lirc/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-02-07 23:56:12 UTC (rev 258956)
@@ -0,0 +1,45 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Paul 

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

2015-11-07 Thread Lukas Fleischer
Date: Saturday, November 7, 2015 @ 11:33:05
  Author: lfleischer
Revision: 250188

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

Added:
  lirc/repos/community-i686/
  lirc/repos/community-i686/PKGBUILD
(from rev 250187, lirc/trunk/PKGBUILD)
  lirc/repos/community-i686/lirc.install
(from rev 250187, lirc/trunk/lirc.install)
  lirc/repos/community-i686/lirc.logrotate
(from rev 250187, lirc/trunk/lirc.logrotate)
  lirc/repos/community-i686/lirc.tmpfiles
(from rev 250187, lirc/trunk/lirc.tmpfiles)
  lirc/repos/community-x86_64/
  lirc/repos/community-x86_64/PKGBUILD
(from rev 250187, lirc/trunk/PKGBUILD)
  lirc/repos/community-x86_64/lirc.install
(from rev 250187, lirc/trunk/lirc.install)
  lirc/repos/community-x86_64/lirc.logrotate
(from rev 250187, lirc/trunk/lirc.logrotate)
  lirc/repos/community-x86_64/lirc.tmpfiles
(from rev 250187, lirc/trunk/lirc.tmpfiles)

-+
 community-i686/PKGBUILD |   45 ++
 community-i686/lirc.install |   13 ++
 community-i686/lirc.logrotate   |5 
 community-i686/lirc.tmpfiles|1 
 community-x86_64/PKGBUILD   |   45 ++
 community-x86_64/lirc.install   |   13 ++
 community-x86_64/lirc.logrotate |5 
 community-x86_64/lirc.tmpfiles  |1 
 8 files changed, 128 insertions(+)

Copied: lirc/repos/community-i686/PKGBUILD (from rev 250187, 
lirc/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-11-07 10:33:05 UTC (rev 250188)
@@ -0,0 +1,45 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Paul Mattal 
+
+pkgname=lirc
+_pkgver=0.9.3a
+[[ $_pkgver =~ [a-z]$ ]] && pkgver="${_pkgver:0:-1}.${_pkgver: -1}" || 
pkgver="$_pkgver"
+pkgrel=1
+epoch=1
+pkgdesc="Linux Infrared Remote Control utils"
+arch=('i686' 'x86_64')
+url="http://www.lirc.org/;
+license=('GPL')
+depends=('alsa-lib' 'libx11' 'libftdi-compat' 'libirman')
+makedepends=('help2man' 'alsa-lib' 'libx11' 'libftdi-compat' 'libirman' 
'libxslt' 'python')
+optdepends=('python: for lirc-setup, irdb-get and pronto2lirc')
+provides=('lirc-utils')
+conflicts=('lirc-utils')
+replaces=('lirc-utils')
+backup=('etc/lirc/lirc_options.conf' 'etc/lirc/lircd.conf' 
'etc/lirc/lircmd.conf')
+install=lirc.install
+source=("http://prdownloads.sourceforge.net/${pkgname}/${pkgname}-${_pkgver}.tar.bz2;
+lirc.logrotate
+lirc.tmpfiles)
+md5sums=('f9ed5dd0684a52c7cd98672e71e81b05'
+ '3deb02604b37811d41816e9b4385fcc3'
+ 'febf25c154a7d36f01159e84f26c2d9a')
+
+build() {
+  cd "${srcdir}/lirc-${_pkgver}"
+
+  ./configure --prefix=/usr --sbindir=/usr/bin --sysconfdir=/etc 
--localstatedir=/var \
+ --with-transmitter --enable-sandboxed 
+  make
+}
+
+package() {
+  cd "${srcdir}/lirc-${_pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 "${srcdir}"/lirc.tmpfiles 
"${pkgdir}"/usr/lib/tmpfiles.d/lirc.conf
+  install -Dm644 "${srcdir}"/lirc.logrotate "${pkgdir}"/etc/logrotate.d/lirc
+
+  rmdir "${pkgdir}"/var/{run/lirc/,run/,}
+}

Copied: lirc/repos/community-i686/lirc.install (from rev 250187, 
lirc/trunk/lirc.install)
===
--- community-i686/lirc.install (rev 0)
+++ community-i686/lirc.install 2015-11-07 10:33:05 UTC (rev 250188)
@@ -0,0 +1,13 @@
+post_install() {
+   systemd-tmpfiles --create lirc.conf
+}
+
+post_upgrade() {
+   post_install
+
+   if [[ "$(vercmp $2 1:0.9.1-1)" -lt 0 ]]; then
+   echo ':: lirc.service and lircm.service have been replaced'
+   echo '   by the upstream unit files lircd.service and'
+   echo '   lircmd.service.'
+   fi
+}

Copied: lirc/repos/community-i686/lirc.logrotate (from rev 250187, 
lirc/trunk/lirc.logrotate)
===
--- community-i686/lirc.logrotate   (rev 0)
+++ community-i686/lirc.logrotate   2015-11-07 10:33:05 UTC (rev 250188)
@@ -0,0 +1,5 @@
+/var/log/lircd {
+   missingok
+   notifempty
+   delaycompress
+}

Copied: lirc/repos/community-i686/lirc.tmpfiles (from rev 250187, 
lirc/trunk/lirc.tmpfiles)
===
--- community-i686/lirc.tmpfiles(rev 0)
+++ community-i686/lirc.tmpfiles2015-11-07 10:33:05 UTC (rev 250188)
@@ -0,0 +1 @@
+d /run/lirc 0755 root root -

Copied: lirc/repos/community-x86_64/PKGBUILD (from rev 250187, 
lirc/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-11-07 10:33:05 UTC (rev 250188)
@@ -0,0 +1,45 @@

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

2015-09-21 Thread Allan McRae
Date: Monday, September 21, 2015 @ 09:55:18
  Author: allan
Revision: 247030

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

Added:
  lirc/repos/staging-i686/
  lirc/repos/staging-i686/PKGBUILD
(from rev 247029, lirc/trunk/PKGBUILD)
  lirc/repos/staging-i686/lirc.install
(from rev 247029, lirc/trunk/lirc.install)
  lirc/repos/staging-i686/lirc.logrotate
(from rev 247029, lirc/trunk/lirc.logrotate)
  lirc/repos/staging-i686/lirc.tmpfiles
(from rev 247029, lirc/trunk/lirc.tmpfiles)
  lirc/repos/staging-x86_64/
  lirc/repos/staging-x86_64/PKGBUILD
(from rev 247029, lirc/trunk/PKGBUILD)
  lirc/repos/staging-x86_64/lirc.install
(from rev 247029, lirc/trunk/lirc.install)
  lirc/repos/staging-x86_64/lirc.logrotate
(from rev 247029, lirc/trunk/lirc.logrotate)
  lirc/repos/staging-x86_64/lirc.tmpfiles
(from rev 247029, lirc/trunk/lirc.tmpfiles)

---+
 staging-i686/PKGBUILD |   45 
 staging-i686/lirc.install |   13 +++
 staging-i686/lirc.logrotate   |5 
 staging-i686/lirc.tmpfiles|1 
 staging-x86_64/PKGBUILD   |   45 
 staging-x86_64/lirc.install   |   13 +++
 staging-x86_64/lirc.logrotate |5 
 staging-x86_64/lirc.tmpfiles  |1 
 8 files changed, 128 insertions(+)

Copied: lirc/repos/staging-i686/PKGBUILD (from rev 247029, lirc/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-09-21 07:55:18 UTC (rev 247030)
@@ -0,0 +1,45 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Paul Mattal 
+
+pkgname=lirc
+_pkgver=0.9.2a
+[[ $_pkgver =~ [a-z]$ ]] && pkgver="${_pkgver:0:-1}.${_pkgver: -1}" || 
pkgver="$_pkgver"
+pkgrel=2
+epoch=1
+pkgdesc="Linux Infrared Remote Control utils"
+arch=('i686' 'x86_64')
+url="http://www.lirc.org/;
+license=('GPL')
+depends=('alsa-lib' 'libx11' 'libftdi-compat' 'libirman')
+makedepends=('help2man' 'alsa-lib' 'libx11' 'libftdi-compat' 'libirman' 
'python')
+optdepends=('python: for lirc-setup, irdb-get and pronto2lirc')
+provides=('lirc-utils')
+conflicts=('lirc-utils')
+replaces=('lirc-utils')
+backup=('etc/lirc/lirc_options.conf' 'etc/lirc/lircd.conf' 
'etc/lirc/lircmd.conf')
+install=lirc.install
+source=("http://prdownloads.sourceforge.net/${pkgname}/${pkgname}-${_pkgver}.tar.bz2;
+lirc.logrotate
+lirc.tmpfiles)
+md5sums=('639a14ed0b3b34ae227a047b952ea368'
+ '3deb02604b37811d41816e9b4385fcc3'
+ 'febf25c154a7d36f01159e84f26c2d9a')
+
+build() {
+  cd "${srcdir}/lirc-${_pkgver}"
+
+  ./configure --prefix=/usr --sbindir=/usr/bin --sysconfdir=/etc 
--localstatedir=/var \
+ --with-transmitter --enable-sandboxed 
+  make
+}
+
+package() {
+  cd "${srcdir}/lirc-${_pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 "${srcdir}"/lirc.tmpfiles 
"${pkgdir}"/usr/lib/tmpfiles.d/lirc.conf
+  install -Dm644 "${srcdir}"/lirc.logrotate "${pkgdir}"/etc/logrotate.d/lirc
+
+  rmdir "${pkgdir}"/var/{run/lirc/,run/,}
+}

Copied: lirc/repos/staging-i686/lirc.install (from rev 247029, 
lirc/trunk/lirc.install)
===
--- staging-i686/lirc.install   (rev 0)
+++ staging-i686/lirc.install   2015-09-21 07:55:18 UTC (rev 247030)
@@ -0,0 +1,13 @@
+post_install() {
+   systemd-tmpfiles --create lirc.conf
+}
+
+post_upgrade() {
+   post_install
+
+   if [[ "$(vercmp $2 1:0.9.1-1)" -lt 0 ]]; then
+   echo ':: lirc.service and lircm.service have been replaced'
+   echo '   by the upstream unit files lircd.service and'
+   echo '   lircmd.service.'
+   fi
+}

Copied: lirc/repos/staging-i686/lirc.logrotate (from rev 247029, 
lirc/trunk/lirc.logrotate)
===
--- staging-i686/lirc.logrotate (rev 0)
+++ staging-i686/lirc.logrotate 2015-09-21 07:55:18 UTC (rev 247030)
@@ -0,0 +1,5 @@
+/var/log/lircd {
+   missingok
+   notifempty
+   delaycompress
+}

Copied: lirc/repos/staging-i686/lirc.tmpfiles (from rev 247029, 
lirc/trunk/lirc.tmpfiles)
===
--- staging-i686/lirc.tmpfiles  (rev 0)
+++ staging-i686/lirc.tmpfiles  2015-09-21 07:55:18 UTC (rev 247030)
@@ -0,0 +1 @@
+d /run/lirc 0755 root root -

Copied: lirc/repos/staging-x86_64/PKGBUILD (from rev 247029, 
lirc/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-09-21 07:55:18 UTC (rev 247030)
@@ -0,0 +1,45 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Paul Mattal 
+
+pkgname=lirc
+_pkgver=0.9.2a
+[[ 

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

2015-02-17 Thread Lukas Fleischer
Date: Tuesday, February 17, 2015 @ 22:20:29
  Author: lfleischer
Revision: 231663

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

Added:
  lirc/repos/community-i686/
  lirc/repos/community-i686/PKGBUILD
(from rev 231662, lirc/trunk/PKGBUILD)
  lirc/repos/community-i686/lirc.install
(from rev 231662, lirc/trunk/lirc.install)
  lirc/repos/community-i686/lirc.logrotate
(from rev 231662, lirc/trunk/lirc.logrotate)
  lirc/repos/community-i686/lirc.tmpfiles
(from rev 231662, lirc/trunk/lirc.tmpfiles)
  lirc/repos/community-x86_64/
  lirc/repos/community-x86_64/PKGBUILD
(from rev 231662, lirc/trunk/PKGBUILD)
  lirc/repos/community-x86_64/lirc.install
(from rev 231662, lirc/trunk/lirc.install)
  lirc/repos/community-x86_64/lirc.logrotate
(from rev 231662, lirc/trunk/lirc.logrotate)
  lirc/repos/community-x86_64/lirc.tmpfiles
(from rev 231662, lirc/trunk/lirc.tmpfiles)

-+
 community-i686/PKGBUILD |   45 ++
 community-i686/lirc.install |   13 ++
 community-i686/lirc.logrotate   |5 
 community-i686/lirc.tmpfiles|1 
 community-x86_64/PKGBUILD   |   45 ++
 community-x86_64/lirc.install   |   13 ++
 community-x86_64/lirc.logrotate |5 
 community-x86_64/lirc.tmpfiles  |1 
 8 files changed, 128 insertions(+)

Copied: lirc/repos/community-i686/PKGBUILD (from rev 231662, 
lirc/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-02-17 21:20:29 UTC (rev 231663)
@@ -0,0 +1,45 @@
+# Maintainer: Lukas Fleischer archlinux at cryptocrack dot de
+# Contributor: Paul Mattal p...@archlinux.org
+
+pkgname=lirc
+_pkgver=0.9.2a
+[[ $_pkgver =~ [a-z]$ ]]  pkgver=${_pkgver:0:-1}.${_pkgver: -1} || 
pkgver=$_pkgver
+pkgrel=1
+epoch=1
+pkgdesc=Linux Infrared Remote Control utils
+arch=('i686' 'x86_64')
+url=http://www.lirc.org/;
+license=('GPL')
+depends=('alsa-lib' 'libx11' 'libftdi-compat' 'libirman')
+makedepends=('help2man' 'alsa-lib' 'libx11' 'libftdi-compat' 'libirman' 
'python')
+optdepends=('python: for lirc-setup, irdb-get and pronto2lirc')
+provides=('lirc-utils')
+conflicts=('lirc-utils')
+replaces=('lirc-utils')
+backup=('etc/lirc/lirc_options.conf' 'etc/lirc/lircd.conf' 
'etc/lirc/lircmd.conf')
+install=lirc.install
+source=(http://prdownloads.sourceforge.net/${pkgname}/${pkgname}-${_pkgver}.tar.bz2;
+lirc.logrotate
+lirc.tmpfiles)
+md5sums=('639a14ed0b3b34ae227a047b952ea368'
+ '3deb02604b37811d41816e9b4385fcc3'
+ 'febf25c154a7d36f01159e84f26c2d9a')
+
+build() {
+  cd ${srcdir}/lirc-${_pkgver}
+
+  ./configure --prefix=/usr --sbindir=/usr/bin --sysconfdir=/etc 
--localstatedir=/var \
+ --with-transmitter --enable-sandboxed 
+  make
+}
+
+package() {
+  cd ${srcdir}/lirc-${_pkgver}
+
+  make DESTDIR=${pkgdir} install
+
+  install -Dm644 ${srcdir}/lirc.tmpfiles 
${pkgdir}/usr/lib/tmpfiles.d/lirc.conf
+  install -Dm644 ${srcdir}/lirc.logrotate ${pkgdir}/etc/logrotate.d/lirc
+
+  rmdir ${pkgdir}/var/{run/lirc/,run/,}
+}

Copied: lirc/repos/community-i686/lirc.install (from rev 231662, 
lirc/trunk/lirc.install)
===
--- community-i686/lirc.install (rev 0)
+++ community-i686/lirc.install 2015-02-17 21:20:29 UTC (rev 231663)
@@ -0,0 +1,13 @@
+post_install() {
+   systemd-tmpfiles --create lirc.conf
+}
+
+post_upgrade() {
+   post_install
+
+   if [[ $(vercmp $2 1:0.9.1-1) -lt 0 ]]; then
+   echo ':: lirc.service and lircm.service have been replaced'
+   echo '   by the upstream unit files lircd.service and'
+   echo '   lircmd.service.'
+   fi
+}

Copied: lirc/repos/community-i686/lirc.logrotate (from rev 231662, 
lirc/trunk/lirc.logrotate)
===
--- community-i686/lirc.logrotate   (rev 0)
+++ community-i686/lirc.logrotate   2015-02-17 21:20:29 UTC (rev 231663)
@@ -0,0 +1,5 @@
+/var/log/lircd {
+   missingok
+   notifempty
+   delaycompress
+}

Copied: lirc/repos/community-i686/lirc.tmpfiles (from rev 231662, 
lirc/trunk/lirc.tmpfiles)
===
--- community-i686/lirc.tmpfiles(rev 0)
+++ community-i686/lirc.tmpfiles2015-02-17 21:20:29 UTC (rev 231663)
@@ -0,0 +1 @@
+d /run/lirc 0755 root root -

Copied: lirc/repos/community-x86_64/PKGBUILD (from rev 231662, 
lirc/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-02-17 21:20:29 UTC (rev 231663)
@@ -0,0 +1,45 @@
+# Maintainer: Lukas Fleischer