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

Giovanni Scafora giovanni at nymeria.archlinux.org
Sun Feb 3 16:05:50 UTC 2013


    Date: Sunday, February 3, 2013 @ 17:05:49
  Author: giovanni
Revision: 83602

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

Added:
  pcsclite/repos/community-i686/PKGBUILD
    (from rev 83601, pcsclite/trunk/PKGBUILD)
  pcsclite/repos/community-x86_64/PKGBUILD
    (from rev 83601, pcsclite/trunk/PKGBUILD)
Deleted:
  pcsclite/repos/community-i686/PKGBUILD
  pcsclite/repos/community-i686/pcscd
  pcsclite/repos/community-x86_64/PKGBUILD
  pcsclite/repos/community-x86_64/pcscd

---------------------------+
 community-i686/PKGBUILD   |   83 +++++++++++++++++++++-----------------------
 community-i686/pcscd      |   53 ----------------------------
 community-x86_64/PKGBUILD |   83 +++++++++++++++++++++-----------------------
 community-x86_64/pcscd    |   53 ----------------------------
 4 files changed, 80 insertions(+), 192 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2013-02-03 16:05:41 UTC (rev 83601)
+++ community-i686/PKGBUILD	2013-02-03 16:05:49 UTC (rev 83602)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora <giovanni at archlinux.org>
-# Contributor: Daniel Plaza <daniel.plaza.espi at gmail.com>
-
-pkgname=pcsclite
-pkgver=1.8.8
-pkgrel=1
-pkgdesc="PC/SC Architecture smartcard middleware library"
-arch=('i686' 'x86_64')
-url="https://alioth.debian.org/projects/pcsclite/"
-license=('BSD')
-depends=('python2' 'systemd-tools')
-makedepends=('pkg-config')
-options=('!libtool' '!docs')
-source=("https://alioth.debian.org/frs/download.php/3862/pcsc-lite-${pkgver}.tar.bz2"
-        'pcscd')
-md5sums=('069dc875a2ae2d85a2ebceac73252c0a'
-         'c97b6bce695222efb0f003d8e8369010')
-
-build() {
-  cd "${srcdir}/pcsc-lite-${pkgver}"
-
-  sed -i -e "s:python:python2:g" src/spy/pcsc-spy
-
-  ./configure --prefix=/usr \
-              --enable-libudev \
-              --sysconfdir=/etc \
-              --enable-ipcdir=/run/pcscd \
-              --enable-usbdropdir=/usr/lib/pcsc/drivers \
-              --with-systemdsystemunitdir=/usr/lib/systemd/system
-
-  make
-}
-
-package() {
-  cd "${srcdir}/pcsc-lite-${pkgver}"
-
-  make DESTDIR="${pkgdir}" install
-
-  install -D -m644 ${srcdir}/pcsc-lite-${pkgver}/COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-  install -D -m755 ${srcdir}/pcscd ${pkgdir}/etc/rc.d/pcscd
-  install -d ${pkgdir}/usr/lib/pcsc/drivers
-}

Copied: pcsclite/repos/community-i686/PKGBUILD (from rev 83601, pcsclite/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2013-02-03 16:05:49 UTC (rev 83602)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Giovanni Scafora <giovanni at archlinux.org>
+# Contributor: Daniel Plaza <daniel.plaza.espi at gmail.com>
+
+pkgname=pcsclite
+pkgver=1.8.8
+pkgrel=2
+pkgdesc="PC/SC Architecture smartcard middleware library"
+arch=('i686' 'x86_64')
+url="https://alioth.debian.org/projects/pcsclite/"
+license=('BSD')
+depends=('python2' 'systemd')
+makedepends=('pkg-config')
+options=('!libtool' '!docs')
+source=("https://alioth.debian.org/frs/download.php/3862/pcsc-lite-${pkgver}.tar.bz2")
+md5sums=('069dc875a2ae2d85a2ebceac73252c0a')
+
+build() {
+  cd "${srcdir}/pcsc-lite-${pkgver}"
+
+  sed -i -e "s:python:python2:g" src/spy/pcsc-spy
+
+  ./configure --prefix=/usr \
+              --enable-libudev \
+              --sysconfdir=/etc \
+              --enable-ipcdir=/run/pcscd \
+              --enable-usbdropdir=/usr/lib/pcsc/drivers \
+              --with-systemdsystemunitdir=/usr/lib/systemd/system
+
+  make
+}
+
+package() {
+  cd "${srcdir}/pcsc-lite-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+
+  install -D -m644 ${srcdir}/pcsc-lite-${pkgver}/COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+  install -d ${pkgdir}/usr/lib/pcsc/drivers
+}

Deleted: community-i686/pcscd
===================================================================
--- community-i686/pcscd	2013-02-03 16:05:41 UTC (rev 83601)
+++ community-i686/pcscd	2013-02-03 16:05:49 UTC (rev 83602)
@@ -1,53 +0,0 @@
-#!/bin/bash
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-DAEMON=/usr/sbin/pcscd
-NAME=pcscd
-DESC="PC/SC smart card daemon"
-PID_FILE=/run/pcscd/pcscd.pid
-PCSCD_OPTIONS=
-
-case "$1" in
-    start)
-        stat_busy "Starting $DESC"
-        $DAEMON $PCSCD_OPTIONS
-        if [ $? -gt 0 ]; then
-            stat_fail
-        else
-            add_daemon $NAME
-            stat_done
-        fi
-        ;;
-
-    stop)
-        stat_busy "Stopping $DESC"
-        [ -f $PID_FILE ] && kill `cat $PID_FILE` &> /dev/null
-        if [ $? -gt 0 ]; then
-            stat_fail
-        else
-            rm_daemon $NAME
-            stat_done
-        fi
-        ;;
-
-    restart)
-        $0 stop
-        sleep 3
-        $0 start
-        ;;
-
-    status)
-        stat_busy "Checking $NAME status";
-        ck_status $NAME
-        ;;
-
-    *)
-        echo "usage: $0 {start|stop|restart|status}"
-	;;
-
-esac
-
-exit 0
-

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2013-02-03 16:05:41 UTC (rev 83601)
+++ community-x86_64/PKGBUILD	2013-02-03 16:05:49 UTC (rev 83602)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora <giovanni at archlinux.org>
-# Contributor: Daniel Plaza <daniel.plaza.espi at gmail.com>
-
-pkgname=pcsclite
-pkgver=1.8.8
-pkgrel=1
-pkgdesc="PC/SC Architecture smartcard middleware library"
-arch=('i686' 'x86_64')
-url="https://alioth.debian.org/projects/pcsclite/"
-license=('BSD')
-depends=('python2' 'systemd-tools')
-makedepends=('pkg-config')
-options=('!libtool' '!docs')
-source=("https://alioth.debian.org/frs/download.php/3862/pcsc-lite-${pkgver}.tar.bz2"
-        'pcscd')
-md5sums=('069dc875a2ae2d85a2ebceac73252c0a'
-         'c97b6bce695222efb0f003d8e8369010')
-
-build() {
-  cd "${srcdir}/pcsc-lite-${pkgver}"
-
-  sed -i -e "s:python:python2:g" src/spy/pcsc-spy
-
-  ./configure --prefix=/usr \
-              --enable-libudev \
-              --sysconfdir=/etc \
-              --enable-ipcdir=/run/pcscd \
-              --enable-usbdropdir=/usr/lib/pcsc/drivers \
-              --with-systemdsystemunitdir=/usr/lib/systemd/system
-
-  make
-}
-
-package() {
-  cd "${srcdir}/pcsc-lite-${pkgver}"
-
-  make DESTDIR="${pkgdir}" install
-
-  install -D -m644 ${srcdir}/pcsc-lite-${pkgver}/COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-  install -D -m755 ${srcdir}/pcscd ${pkgdir}/etc/rc.d/pcscd
-  install -d ${pkgdir}/usr/lib/pcsc/drivers
-}

Copied: pcsclite/repos/community-x86_64/PKGBUILD (from rev 83601, pcsclite/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2013-02-03 16:05:49 UTC (rev 83602)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Giovanni Scafora <giovanni at archlinux.org>
+# Contributor: Daniel Plaza <daniel.plaza.espi at gmail.com>
+
+pkgname=pcsclite
+pkgver=1.8.8
+pkgrel=2
+pkgdesc="PC/SC Architecture smartcard middleware library"
+arch=('i686' 'x86_64')
+url="https://alioth.debian.org/projects/pcsclite/"
+license=('BSD')
+depends=('python2' 'systemd')
+makedepends=('pkg-config')
+options=('!libtool' '!docs')
+source=("https://alioth.debian.org/frs/download.php/3862/pcsc-lite-${pkgver}.tar.bz2")
+md5sums=('069dc875a2ae2d85a2ebceac73252c0a')
+
+build() {
+  cd "${srcdir}/pcsc-lite-${pkgver}"
+
+  sed -i -e "s:python:python2:g" src/spy/pcsc-spy
+
+  ./configure --prefix=/usr \
+              --enable-libudev \
+              --sysconfdir=/etc \
+              --enable-ipcdir=/run/pcscd \
+              --enable-usbdropdir=/usr/lib/pcsc/drivers \
+              --with-systemdsystemunitdir=/usr/lib/systemd/system
+
+  make
+}
+
+package() {
+  cd "${srcdir}/pcsc-lite-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+
+  install -D -m644 ${srcdir}/pcsc-lite-${pkgver}/COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+  install -d ${pkgdir}/usr/lib/pcsc/drivers
+}

Deleted: community-x86_64/pcscd
===================================================================
--- community-x86_64/pcscd	2013-02-03 16:05:41 UTC (rev 83601)
+++ community-x86_64/pcscd	2013-02-03 16:05:49 UTC (rev 83602)
@@ -1,53 +0,0 @@
-#!/bin/bash
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-DAEMON=/usr/sbin/pcscd
-NAME=pcscd
-DESC="PC/SC smart card daemon"
-PID_FILE=/run/pcscd/pcscd.pid
-PCSCD_OPTIONS=
-
-case "$1" in
-    start)
-        stat_busy "Starting $DESC"
-        $DAEMON $PCSCD_OPTIONS
-        if [ $? -gt 0 ]; then
-            stat_fail
-        else
-            add_daemon $NAME
-            stat_done
-        fi
-        ;;
-
-    stop)
-        stat_busy "Stopping $DESC"
-        [ -f $PID_FILE ] && kill `cat $PID_FILE` &> /dev/null
-        if [ $? -gt 0 ]; then
-            stat_fail
-        else
-            rm_daemon $NAME
-            stat_done
-        fi
-        ;;
-
-    restart)
-        $0 stop
-        sleep 3
-        $0 start
-        ;;
-
-    status)
-        stat_busy "Checking $NAME status";
-        ck_status $NAME
-        ;;
-
-    *)
-        echo "usage: $0 {start|stop|restart|status}"
-	;;
-
-esac
-
-exit 0
-




More information about the arch-commits mailing list