[arch-commits] Commit in gnokii/repos (20 files)

2017-01-21 Thread Balló György
Date: Saturday, January 21, 2017 @ 21:02:34
  Author: bgyorgy
Revision: 208333

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

Added:
  gnokii/repos/community-i686/PKGBUILD
(from rev 208332, gnokii/trunk/PKGBUILD)
  gnokii/repos/community-i686/gnokii-config.patch
(from rev 208332, gnokii/trunk/gnokii-config.patch)
  gnokii/repos/community-i686/gnokii-gcc5.patch
(from rev 208332, gnokii/trunk/gnokii-gcc5.patch)
  gnokii/repos/community-i686/gnokii-lock.patch
(from rev 208332, gnokii/trunk/gnokii-lock.patch)
  gnokii/repos/community-i686/gnokii.install
(from rev 208332, gnokii/trunk/gnokii.install)
  gnokii/repos/community-x86_64/PKGBUILD
(from rev 208332, gnokii/trunk/PKGBUILD)
  gnokii/repos/community-x86_64/gnokii-config.patch
(from rev 208332, gnokii/trunk/gnokii-config.patch)
  gnokii/repos/community-x86_64/gnokii-gcc5.patch
(from rev 208332, gnokii/trunk/gnokii-gcc5.patch)
  gnokii/repos/community-x86_64/gnokii-lock.patch
(from rev 208332, gnokii/trunk/gnokii-lock.patch)
  gnokii/repos/community-x86_64/gnokii.install
(from rev 208332, gnokii/trunk/gnokii.install)
Deleted:
  gnokii/repos/community-i686/PKGBUILD
  gnokii/repos/community-i686/gnokii-config.patch
  gnokii/repos/community-i686/gnokii-gcc5.patch
  gnokii/repos/community-i686/gnokii-lock.patch
  gnokii/repos/community-i686/gnokii.install
  gnokii/repos/community-x86_64/PKGBUILD
  gnokii/repos/community-x86_64/gnokii-config.patch
  gnokii/repos/community-x86_64/gnokii-gcc5.patch
  gnokii/repos/community-x86_64/gnokii-lock.patch
  gnokii/repos/community-x86_64/gnokii.install

--+
 /PKGBUILD|  144 +
 /gnokii-config.patch |   24 +
 /gnokii-gcc5.patch   |   54 
 /gnokii-lock.patch   |   30 ++
 /gnokii.install  |6 +
 community-i686/PKGBUILD  |   72 
 community-i686/gnokii-config.patch   |   12 --
 community-i686/gnokii-gcc5.patch |   27 --
 community-i686/gnokii-lock.patch |   15 ---
 community-i686/gnokii.install|   10 --
 community-x86_64/PKGBUILD|   72 
 community-x86_64/gnokii-config.patch |   12 --
 community-x86_64/gnokii-gcc5.patch   |   27 --
 community-x86_64/gnokii-lock.patch   |   15 ---
 community-x86_64/gnokii.install  |   10 --
 15 files changed, 258 insertions(+), 272 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-01-21 21:02:25 UTC (rev 208332)
+++ community-i686/PKGBUILD 2017-01-21 21:02:34 UTC (rev 208333)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Andrea Scarpino 
-# Contributor: Roman Kyrylych 
-# Contributor: Aurelien Foret 
-
-pkgname=gnokii
-pkgver=0.6.31
-pkgrel=10
-pkgdesc="Tools and user space driver for use with mobile phones"
-arch=('i686' 'x86_64')
-url="http://www.gnokii.org/;
-license=('GPL')
-depends=('libusb-compat' 'libxpm' 'bluez-libs' 'libical' 'sqlite')
-makedepends=('gtk2' 'libmariadbclient' 'postgresql-libs' 'intltool')
-optdepends=('dialog: sendsms tool'
-'gtk2: xgnokii GUI'
-'libmariadbclient: smsd mysql backend'
-'postgresql-libs: smsd postgresql backend')
-backup=('etc/gnokiirc')
-install=$pkgname.install
-source=("https://www.gnokii.org/download/$pkgname/$pkgname-$pkgver.tar.bz2;
-'gnokii-config.patch'
-'gnokii-lock.patch'
-   'gnokii-gcc5.patch')
-md5sums=('d9627f4a1152d3ea7806df4532850d5f'
- 'b2961b52ac1f770c4704ccc50b64fde2'
- '17b629db85a6bb2b98ca59941aa95295'
- '5bcf2dadd31a826d1f80b53bb37d9bd0')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  # Set bindir location
-  patch -Np1 -i "$srcdir/gnokii-config.patch"
-
-  # Set lock path
-  patch -Np1 -i "$srcdir/gnokii-lock.patch"
-
-  # Fix build with GCC 5 (Fedora patch)
-  patch -Np1 -i "$srcdir/gnokii-gcc5.patch"
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --sbindir=/usr/bin \
-  --enable-security
-  make
-  pushd xgnokii
-  make
-  popd
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make DESTDIR="$pkgdir" install
-  pushd xgnokii
-  make DESTDIR="$pkgdir" install
-  popd
-
-  # Install initial config file
-  install -Dm644 Docs/sample/gnokiirc "$pkgdir/etc/gnokiirc"
-
-  # Fix file permission
-  chmod 755 "$pkgdir/usr/bin/sendsms"
-
-  # Setup lock directory
-  install -dm755 "$pkgdir"/usr/lib/{sysusers,tmpfiles}.d
-  echo 'g lock - - -' > "$pkgdir/usr/lib/sysusers.d/$pkgname.conf"
-  echo 'd /run/lock/lockdev 0775 root lock -' > 
"$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf"
-}

Copied: gnokii/repos/community-i686/PKGBUILD (from rev 208332, 
gnokii/trunk/PKGBUILD)

[arch-commits] Commit in gnokii/repos (20 files)

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 17:53:23
  Author: bgyorgy
Revision: 198322

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

Added:
  gnokii/repos/community-i686/PKGBUILD
(from rev 198321, gnokii/trunk/PKGBUILD)
  gnokii/repos/community-i686/gnokii-config.patch
(from rev 198321, gnokii/trunk/gnokii-config.patch)
  gnokii/repos/community-i686/gnokii-gcc5.patch
(from rev 198321, gnokii/trunk/gnokii-gcc5.patch)
  gnokii/repos/community-i686/gnokii-lock.patch
(from rev 198321, gnokii/trunk/gnokii-lock.patch)
  gnokii/repos/community-i686/gnokii.install
(from rev 198321, gnokii/trunk/gnokii.install)
  gnokii/repos/community-x86_64/PKGBUILD
(from rev 198321, gnokii/trunk/PKGBUILD)
  gnokii/repos/community-x86_64/gnokii-config.patch
(from rev 198321, gnokii/trunk/gnokii-config.patch)
  gnokii/repos/community-x86_64/gnokii-gcc5.patch
(from rev 198321, gnokii/trunk/gnokii-gcc5.patch)
  gnokii/repos/community-x86_64/gnokii-lock.patch
(from rev 198321, gnokii/trunk/gnokii-lock.patch)
  gnokii/repos/community-x86_64/gnokii.install
(from rev 198321, gnokii/trunk/gnokii.install)
Deleted:
  gnokii/repos/community-i686/PKGBUILD
  gnokii/repos/community-i686/gnokii-config.patch
  gnokii/repos/community-i686/gnokii-gcc5.patch
  gnokii/repos/community-i686/gnokii-lock.patch
  gnokii/repos/community-i686/gnokii.install
  gnokii/repos/community-x86_64/PKGBUILD
  gnokii/repos/community-x86_64/gnokii-config.patch
  gnokii/repos/community-x86_64/gnokii-gcc5.patch
  gnokii/repos/community-x86_64/gnokii-lock.patch
  gnokii/repos/community-x86_64/gnokii.install

--+
 /PKGBUILD|  144 +
 /gnokii-config.patch |   24 +
 /gnokii-gcc5.patch   |   54 
 /gnokii-lock.patch   |   30 ++
 /gnokii.install  |   20 
 community-i686/PKGBUILD  |   72 
 community-i686/gnokii-config.patch   |   12 --
 community-i686/gnokii-gcc5.patch |   27 --
 community-i686/gnokii-lock.patch |   15 ---
 community-i686/gnokii.install|   10 --
 community-x86_64/PKGBUILD|   72 
 community-x86_64/gnokii-config.patch |   12 --
 community-x86_64/gnokii-gcc5.patch   |   27 --
 community-x86_64/gnokii-lock.patch   |   15 ---
 community-x86_64/gnokii.install  |   10 --
 15 files changed, 272 insertions(+), 272 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-12-07 17:53:06 UTC (rev 198321)
+++ community-i686/PKGBUILD 2016-12-07 17:53:23 UTC (rev 198322)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Andrea Scarpino 
-# Contributor: Roman Kyrylych 
-# Contributor: Aurelien Foret 
-
-pkgname=gnokii
-pkgver=0.6.31
-pkgrel=10
-pkgdesc="Tools and user space driver for use with mobile phones"
-arch=('i686' 'x86_64')
-url="http://www.gnokii.org/;
-license=('GPL')
-depends=('libusb-compat' 'libxpm' 'bluez-libs' 'libical' 'sqlite')
-makedepends=('gtk2' 'libmariadbclient' 'postgresql-libs' 'intltool')
-optdepends=('dialog: sendsms tool'
-'gtk2: xgnokii GUI'
-'libmariadbclient: smsd mysql backend'
-'postgresql-libs: smsd postgresql backend')
-backup=('etc/gnokiirc')
-install=$pkgname.install
-source=("http://www.gnokii.org/download/$pkgname/$pkgname-$pkgver.tar.bz2;
-'gnokii-config.patch'
-'gnokii-lock.patch'
-   'gnokii-gcc5.patch')
-md5sums=('d9627f4a1152d3ea7806df4532850d5f'
- 'b2961b52ac1f770c4704ccc50b64fde2'
- '17b629db85a6bb2b98ca59941aa95295'
- '5bcf2dadd31a826d1f80b53bb37d9bd0')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  # Set bindir location
-  patch -Np1 -i "$srcdir/gnokii-config.patch"
-
-  # Set lock path
-  patch -Np1 -i "$srcdir/gnokii-lock.patch"
-
-  # Fix build with GCC 5 (Fedora patch)
-  patch -Np1 -i "$srcdir/gnokii-gcc5.patch"
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --sbindir=/usr/bin \
-  --enable-security
-  make
-  pushd xgnokii
-  make
-  popd
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make DESTDIR="$pkgdir" install
-  pushd xgnokii
-  make DESTDIR="$pkgdir" install
-  popd
-
-  # Install initial config file
-  install -Dm644 Docs/sample/gnokiirc "$pkgdir/etc/gnokiirc"
-
-  # Fix file permission
-  chmod 755 "$pkgdir/usr/bin/sendsms"
-
-  # Setup lock directory
-  install -dm755 "$pkgdir"/usr/lib/{sysusers,tmpfiles}.d
-  echo 'g lock - - -' > "$pkgdir/usr/lib/sysusers.d/$pkgname.conf"
-  echo 'd /run/lock/lockdev 0775 root lock -' > 
"$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf"
-}

Copied: gnokii/repos/community-i686/PKGBUILD (from rev 198321, 
gnokii/trunk/PKGBUILD)

[arch-commits] Commit in gnokii/repos (20 files)

2016-08-03 Thread Balló György
Date: Wednesday, August 3, 2016 @ 09:26:38
  Author: bgyorgy
Revision: 184969

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

Added:
  gnokii/repos/community-i686/PKGBUILD
(from rev 184968, gnokii/trunk/PKGBUILD)
  gnokii/repos/community-i686/gnokii-config.patch
(from rev 184968, gnokii/trunk/gnokii-config.patch)
  gnokii/repos/community-i686/gnokii-gcc5.patch
(from rev 184968, gnokii/trunk/gnokii-gcc5.patch)
  gnokii/repos/community-i686/gnokii-lock.patch
(from rev 184968, gnokii/trunk/gnokii-lock.patch)
  gnokii/repos/community-i686/gnokii.install
(from rev 184968, gnokii/trunk/gnokii.install)
  gnokii/repos/community-x86_64/PKGBUILD
(from rev 184968, gnokii/trunk/PKGBUILD)
  gnokii/repos/community-x86_64/gnokii-config.patch
(from rev 184968, gnokii/trunk/gnokii-config.patch)
  gnokii/repos/community-x86_64/gnokii-gcc5.patch
(from rev 184968, gnokii/trunk/gnokii-gcc5.patch)
  gnokii/repos/community-x86_64/gnokii-lock.patch
(from rev 184968, gnokii/trunk/gnokii-lock.patch)
  gnokii/repos/community-x86_64/gnokii.install
(from rev 184968, gnokii/trunk/gnokii.install)
Deleted:
  gnokii/repos/community-i686/PKGBUILD
  gnokii/repos/community-i686/gnokii-config.patch
  gnokii/repos/community-i686/gnokii-gcc5.patch
  gnokii/repos/community-i686/gnokii-lock.patch
  gnokii/repos/community-i686/gnokii.install
  gnokii/repos/community-x86_64/PKGBUILD
  gnokii/repos/community-x86_64/gnokii-config.patch
  gnokii/repos/community-x86_64/gnokii-gcc5.patch
  gnokii/repos/community-x86_64/gnokii-lock.patch
  gnokii/repos/community-x86_64/gnokii.install

--+
 /PKGBUILD|  144 +
 /gnokii-config.patch |   24 +
 /gnokii-gcc5.patch   |   54 
 /gnokii-lock.patch   |   30 ++
 /gnokii.install  |   20 
 community-i686/PKGBUILD  |   67 ---
 community-i686/gnokii-config.patch   |   12 --
 community-i686/gnokii-gcc5.patch |   27 --
 community-i686/gnokii-lock.patch |   15 ---
 community-i686/gnokii.install|3 
 community-x86_64/PKGBUILD|   67 ---
 community-x86_64/gnokii-config.patch |   12 --
 community-x86_64/gnokii-gcc5.patch   |   27 --
 community-x86_64/gnokii-lock.patch   |   15 ---
 community-x86_64/gnokii.install  |3 
 15 files changed, 272 insertions(+), 248 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-08-03 09:26:30 UTC (rev 184968)
+++ community-i686/PKGBUILD 2016-08-03 09:26:38 UTC (rev 184969)
@@ -1,67 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Andrea Scarpino 
-# Contributor: Roman Kyrylych 
-# Contributor: Aurelien Foret 
-
-pkgname=gnokii
-pkgver=0.6.31
-pkgrel=8
-pkgdesc="Tools and user space driver for use with mobile phones"
-arch=('i686' 'x86_64')
-url="http://www.gnokii.org/;
-license=('GPL')
-depends=('libusb-compat' 'libxpm' 'bluez-libs' 'libical' 'sqlite')
-makedepends=('gtk2' 'libmariadbclient' 'postgresql-libs' 'intltool')
-optdepends=('dialog: sendsms tool'
-'gtk2: xgnokii GUI'
-'libmariadbclient: smsd mysql backend'
-'postgresql-libs: smsd postgresql backend')
-backup=('etc/gnokiirc')
-install=$pkgname.install
-source=("http://www.gnokii.org/download/$pkgname/$pkgname-$pkgver.tar.bz2;
-'gnokii-config.patch'
-'gnokii-lock.patch'
-   'gnokii-gcc5.patch')
-md5sums=('d9627f4a1152d3ea7806df4532850d5f'
- 'b2961b52ac1f770c4704ccc50b64fde2'
- '17b629db85a6bb2b98ca59941aa95295'
- '5bcf2dadd31a826d1f80b53bb37d9bd0')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  # Set bindir location
-  patch -Np1 -i "$srcdir/gnokii-config.patch"
-
-  # Set lock path
-  patch -Np1 -i "$srcdir/gnokii-lock.patch"
-
-  # Fix build with GCC 5 (Fedora patch)
-  patch -Np1 -i "$srcdir/gnokii-gcc5.patch"
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --sbindir=/usr/bin \
-  --disable-static --enable-security
-  make
-  pushd xgnokii
-  make
-  popd
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make DESTDIR="$pkgdir" install
-  pushd xgnokii
-  make DESTDIR="$pkgdir" install
-  popd
-
-  # Install inital config file
-  install -Dm644 Docs/sample/gnokiirc "$pkgdir/etc/gnokiirc"
-
-  # Fix file permission
-  chmod 755 "$pkgdir/usr/bin/sendsms"
-}

Copied: gnokii/repos/community-i686/PKGBUILD (from rev 184968, 
gnokii/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-08-03 09:26:38 UTC (rev 184969)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Balló