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

2020-07-07 Thread Felix Yan via arch-commits
Date: Tuesday, July 7, 2020 @ 17:38:34
  Author: felixonmars
Revision: 659816

archrelease: copy trunk to community-staging-x86_64

Added:
  gnokii/repos/community-staging-x86_64/
  gnokii/repos/community-staging-x86_64/PKGBUILD
(from rev 659815, gnokii/trunk/PKGBUILD)
  gnokii/repos/community-staging-x86_64/gnokii-config.patch
(from rev 659815, gnokii/trunk/gnokii-config.patch)
  gnokii/repos/community-staging-x86_64/gnokii-gcc5.patch
(from rev 659815, gnokii/trunk/gnokii-gcc5.patch)
  gnokii/repos/community-staging-x86_64/gnokii-gcc7.patch
(from rev 659815, gnokii/trunk/gnokii-gcc7.patch)
  gnokii/repos/community-staging-x86_64/gnokii-lock.patch
(from rev 659815, gnokii/trunk/gnokii-lock.patch)
  gnokii/repos/community-staging-x86_64/gnokii.install
(from rev 659815, gnokii/trunk/gnokii.install)

-+
 PKGBUILD|   75 ++
 gnokii-config.patch |   12 
 gnokii-gcc5.patch   |   27 ++
 gnokii-gcc7.patch   |   13 
 gnokii-lock.patch   |   15 ++
 gnokii.install  |3 ++
 6 files changed, 145 insertions(+)

Copied: gnokii/repos/community-staging-x86_64/PKGBUILD (from rev 659815, 
gnokii/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-07-07 17:38:34 UTC (rev 659816)
@@ -0,0 +1,75 @@
+# Maintainer: Balló György 
+# Contributor: Andrea Scarpino 
+# Contributor: Roman Kyrylych 
+# Contributor: Aurelien Foret 
+
+pkgname=gnokii
+pkgver=0.6.31
+pkgrel=19
+pkgdesc="Tools and user space driver for use with mobile phones"
+arch=('x86_64')
+url="https://www.gnokii.org/;
+license=('GPL')
+depends=('libusb-compat' 'libxpm' 'bluez-libs' 'libical' 'sqlite' 'systemd')
+makedepends=('gtk2' 'mariadb-libs' 'postgresql-libs' 'intltool')
+optdepends=('dialog: sendsms tool'
+'gtk2: xgnokii GUI'
+'mariadb-libs: 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'
+'gnokii-gcc7.patch')
+md5sums=('d9627f4a1152d3ea7806df4532850d5f'
+ 'b2961b52ac1f770c4704ccc50b64fde2'
+ '17b629db85a6bb2b98ca59941aa95295'
+ '5bcf2dadd31a826d1f80b53bb37d9bd0'
+ '338e376185ff5323c5fdd3538890f776')
+
+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"
+
+  # Fix build with GCC 7
+  patch -Np1 -i "$srcdir/gnokii-gcc7.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/tmpfiles.d
+  echo 'd /run/lock/lockdev 0775 root lock -' > 
"$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf"
+}

Copied: gnokii/repos/community-staging-x86_64/gnokii-config.patch (from rev 
659815, gnokii/trunk/gnokii-config.patch)
===
--- community-staging-x86_64/gnokii-config.patch
(rev 0)
+++ community-staging-x86_64/gnokii-config.patch2020-07-07 17:38:34 UTC 
(rev 659816)
@@ -0,0 +1,12 @@
+diff -Nura gnokii-0.6.31.orig/Docs/sample/gnokiirc 
gnokii-0.6.31/Docs/sample/gnokiirc
+--- gnokii-0.6.31.orig/Docs/sample/gnokiirc2011-12-02 15:53:04.0 
+0100
 gnokii-0.6.31/Docs/sample/gnokiirc 2012-02-18 12:49:26.957557504 +0100
+@@ -238,7 +238,7 @@
+ # In particular ensure that mgnokiidev is in this location, with
+ # permissions 4750, owned by root, group gnokii.  Ensure you
+ # are in the gnokii group and that the group exists...
+-bindir = /usr/local/sbin/
++bindir = /usr/bin/
+ 
+ # Any entries in the following two sections will be set as environment
+ # variables when running the scripts.

Copied: gnokii/repos/community-staging-x86_64/gnokii-gcc5.patch (from rev 
659815, gnokii/trunk/gnokii-gcc5.patch)
===
--- community-staging-x86_64/gnokii-gcc5.patch  (rev 0)
+++ community-staging-x86_64/gnokii-gcc5.patch  2020-07-07 17:38:34 UTC (rev 
659816)
@@ -0,0 +1,27 @@
+Patch by Robert Scheck  for gnokii <= 

[arch-commits] Commit in gnokii/trunk (PKGBUILD)

2020-07-07 Thread Felix Yan via arch-commits
Date: Tuesday, July 7, 2020 @ 17:38:17
  Author: felixonmars
Revision: 659815

upgpkg: gnokii 0.6.31-19: reproducibility rebuild

Modified:
  gnokii/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-07-07 17:38:16 UTC (rev 659814)
+++ PKGBUILD2020-07-07 17:38:17 UTC (rev 659815)
@@ -5,7 +5,7 @@
 
 pkgname=gnokii
 pkgver=0.6.31
-pkgrel=18
+pkgrel=19
 pkgdesc="Tools and user space driver for use with mobile phones"
 arch=('x86_64')
 url="https://www.gnokii.org/;


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

2019-01-16 Thread Evangelos Foutras via arch-commits
Date: Wednesday, January 16, 2019 @ 14:52:09
  Author: foutrelis
Revision: 423537

archrelease: copy trunk to community-staging-x86_64

Added:
  gnokii/repos/community-staging-x86_64/
  gnokii/repos/community-staging-x86_64/PKGBUILD
(from rev 423536, gnokii/trunk/PKGBUILD)
  gnokii/repos/community-staging-x86_64/gnokii-config.patch
(from rev 423536, gnokii/trunk/gnokii-config.patch)
  gnokii/repos/community-staging-x86_64/gnokii-gcc5.patch
(from rev 423536, gnokii/trunk/gnokii-gcc5.patch)
  gnokii/repos/community-staging-x86_64/gnokii-gcc7.patch
(from rev 423536, gnokii/trunk/gnokii-gcc7.patch)
  gnokii/repos/community-staging-x86_64/gnokii-lock.patch
(from rev 423536, gnokii/trunk/gnokii-lock.patch)
  gnokii/repos/community-staging-x86_64/gnokii.install
(from rev 423536, gnokii/trunk/gnokii.install)

-+
 PKGBUILD|   75 ++
 gnokii-config.patch |   12 
 gnokii-gcc5.patch   |   27 ++
 gnokii-gcc7.patch   |   13 
 gnokii-lock.patch   |   15 ++
 gnokii.install  |3 ++
 6 files changed, 145 insertions(+)

Copied: gnokii/repos/community-staging-x86_64/PKGBUILD (from rev 423536, 
gnokii/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-01-16 14:52:09 UTC (rev 423537)
@@ -0,0 +1,75 @@
+# Maintainer: Balló György 
+# Contributor: Andrea Scarpino 
+# Contributor: Roman Kyrylych 
+# Contributor: Aurelien Foret 
+
+pkgname=gnokii
+pkgver=0.6.31
+pkgrel=18
+pkgdesc="Tools and user space driver for use with mobile phones"
+arch=('x86_64')
+url="https://www.gnokii.org/;
+license=('GPL')
+depends=('libusb-compat' 'libxpm' 'bluez-libs' 'libical' 'sqlite' 'systemd')
+makedepends=('gtk2' 'mariadb-libs' 'postgresql-libs' 'intltool')
+optdepends=('dialog: sendsms tool'
+'gtk2: xgnokii GUI'
+'mariadb-libs: 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'
+'gnokii-gcc7.patch')
+md5sums=('d9627f4a1152d3ea7806df4532850d5f'
+ 'b2961b52ac1f770c4704ccc50b64fde2'
+ '17b629db85a6bb2b98ca59941aa95295'
+ '5bcf2dadd31a826d1f80b53bb37d9bd0'
+ '338e376185ff5323c5fdd3538890f776')
+
+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"
+
+  # Fix build with GCC 7
+  patch -Np1 -i "$srcdir/gnokii-gcc7.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/tmpfiles.d
+  echo 'd /run/lock/lockdev 0775 root lock -' > 
"$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf"
+}

Copied: gnokii/repos/community-staging-x86_64/gnokii-config.patch (from rev 
423536, gnokii/trunk/gnokii-config.patch)
===
--- community-staging-x86_64/gnokii-config.patch
(rev 0)
+++ community-staging-x86_64/gnokii-config.patch2019-01-16 14:52:09 UTC 
(rev 423537)
@@ -0,0 +1,12 @@
+diff -Nura gnokii-0.6.31.orig/Docs/sample/gnokiirc 
gnokii-0.6.31/Docs/sample/gnokiirc
+--- gnokii-0.6.31.orig/Docs/sample/gnokiirc2011-12-02 15:53:04.0 
+0100
 gnokii-0.6.31/Docs/sample/gnokiirc 2012-02-18 12:49:26.957557504 +0100
+@@ -238,7 +238,7 @@
+ # In particular ensure that mgnokiidev is in this location, with
+ # permissions 4750, owned by root, group gnokii.  Ensure you
+ # are in the gnokii group and that the group exists...
+-bindir = /usr/local/sbin/
++bindir = /usr/bin/
+ 
+ # Any entries in the following two sections will be set as environment
+ # variables when running the scripts.

Copied: gnokii/repos/community-staging-x86_64/gnokii-gcc5.patch (from rev 
423536, gnokii/trunk/gnokii-gcc5.patch)
===
--- community-staging-x86_64/gnokii-gcc5.patch  (rev 0)
+++ community-staging-x86_64/gnokii-gcc5.patch  2019-01-16 14:52:09 UTC (rev 
423537)
@@ -0,0 +1,27 @@
+Patch by Robert Scheck  for gnokii 

[arch-commits] Commit in gnokii/trunk (PKGBUILD)

2019-01-16 Thread Evangelos Foutras via arch-commits
Date: Wednesday, January 16, 2019 @ 14:52:01
  Author: foutrelis
Revision: 423536

MariaDB 10.3 rebuild

Modified:
  gnokii/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-01-16 14:52:01 UTC (rev 423535)
+++ PKGBUILD2019-01-16 14:52:01 UTC (rev 423536)
@@ -5,7 +5,7 @@
 
 pkgname=gnokii
 pkgver=0.6.31
-pkgrel=17
+pkgrel=18
 pkgdesc="Tools and user space driver for use with mobile phones"
 arch=('x86_64')
 url="https://www.gnokii.org/;


[arch-commits] Commit in gnokii/trunk (PKGBUILD)

2019-01-11 Thread Evangelos Foutras via arch-commits
Date: Friday, January 11, 2019 @ 08:20:52
  Author: foutrelis
Revision: 422336

Readline 8.0 rebuild

Modified:
  gnokii/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-01-11 08:20:31 UTC (rev 422335)
+++ PKGBUILD2019-01-11 08:20:52 UTC (rev 422336)
@@ -5,7 +5,7 @@
 
 pkgname=gnokii
 pkgver=0.6.31
-pkgrel=16
+pkgrel=17
 pkgdesc="Tools and user space driver for use with mobile phones"
 arch=('x86_64')
 url="https://www.gnokii.org/;


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

2019-01-11 Thread Evangelos Foutras via arch-commits
Date: Friday, January 11, 2019 @ 08:21:00
  Author: foutrelis
Revision: 422337

archrelease: copy trunk to community-staging-x86_64

Added:
  gnokii/repos/community-staging-x86_64/
  gnokii/repos/community-staging-x86_64/PKGBUILD
(from rev 422336, gnokii/trunk/PKGBUILD)
  gnokii/repos/community-staging-x86_64/gnokii-config.patch
(from rev 422336, gnokii/trunk/gnokii-config.patch)
  gnokii/repos/community-staging-x86_64/gnokii-gcc5.patch
(from rev 422336, gnokii/trunk/gnokii-gcc5.patch)
  gnokii/repos/community-staging-x86_64/gnokii-gcc7.patch
(from rev 422336, gnokii/trunk/gnokii-gcc7.patch)
  gnokii/repos/community-staging-x86_64/gnokii-lock.patch
(from rev 422336, gnokii/trunk/gnokii-lock.patch)
  gnokii/repos/community-staging-x86_64/gnokii.install
(from rev 422336, gnokii/trunk/gnokii.install)

-+
 PKGBUILD|   75 ++
 gnokii-config.patch |   12 
 gnokii-gcc5.patch   |   27 ++
 gnokii-gcc7.patch   |   13 
 gnokii-lock.patch   |   15 ++
 gnokii.install  |3 ++
 6 files changed, 145 insertions(+)

Copied: gnokii/repos/community-staging-x86_64/PKGBUILD (from rev 422336, 
gnokii/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-01-11 08:21:00 UTC (rev 422337)
@@ -0,0 +1,75 @@
+# Maintainer: Balló György 
+# Contributor: Andrea Scarpino 
+# Contributor: Roman Kyrylych 
+# Contributor: Aurelien Foret 
+
+pkgname=gnokii
+pkgver=0.6.31
+pkgrel=17
+pkgdesc="Tools and user space driver for use with mobile phones"
+arch=('x86_64')
+url="https://www.gnokii.org/;
+license=('GPL')
+depends=('libusb-compat' 'libxpm' 'bluez-libs' 'libical' 'sqlite' 'systemd')
+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'
+'gnokii-gcc7.patch')
+md5sums=('d9627f4a1152d3ea7806df4532850d5f'
+ 'b2961b52ac1f770c4704ccc50b64fde2'
+ '17b629db85a6bb2b98ca59941aa95295'
+ '5bcf2dadd31a826d1f80b53bb37d9bd0'
+ '338e376185ff5323c5fdd3538890f776')
+
+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"
+
+  # Fix build with GCC 7
+  patch -Np1 -i "$srcdir/gnokii-gcc7.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/tmpfiles.d
+  echo 'd /run/lock/lockdev 0775 root lock -' > 
"$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf"
+}

Copied: gnokii/repos/community-staging-x86_64/gnokii-config.patch (from rev 
422336, gnokii/trunk/gnokii-config.patch)
===
--- community-staging-x86_64/gnokii-config.patch
(rev 0)
+++ community-staging-x86_64/gnokii-config.patch2019-01-11 08:21:00 UTC 
(rev 422337)
@@ -0,0 +1,12 @@
+diff -Nura gnokii-0.6.31.orig/Docs/sample/gnokiirc 
gnokii-0.6.31/Docs/sample/gnokiirc
+--- gnokii-0.6.31.orig/Docs/sample/gnokiirc2011-12-02 15:53:04.0 
+0100
 gnokii-0.6.31/Docs/sample/gnokiirc 2012-02-18 12:49:26.957557504 +0100
+@@ -238,7 +238,7 @@
+ # In particular ensure that mgnokiidev is in this location, with
+ # permissions 4750, owned by root, group gnokii.  Ensure you
+ # are in the gnokii group and that the group exists...
+-bindir = /usr/local/sbin/
++bindir = /usr/bin/
+ 
+ # Any entries in the following two sections will be set as environment
+ # variables when running the scripts.

Copied: gnokii/repos/community-staging-x86_64/gnokii-gcc5.patch (from rev 
422336, gnokii/trunk/gnokii-gcc5.patch)
===
--- community-staging-x86_64/gnokii-gcc5.patch  (rev 0)
+++ community-staging-x86_64/gnokii-gcc5.patch  2019-01-11 08:21:00 UTC (rev 
422337)
@@ -0,0 +1,27 @@
+Patch by Robert Scheck  for 

[arch-commits] Commit in gnokii/repos/community-x86_64 (12 files)

2018-04-24 Thread Balló György via arch-commits
Date: Tuesday, April 24, 2018 @ 21:35:58
  Author: bgyorgy
Revision: 317633

archrelease: copy trunk to community-x86_64

Added:
  gnokii/repos/community-x86_64/PKGBUILD
(from rev 317632, gnokii/trunk/PKGBUILD)
  gnokii/repos/community-x86_64/gnokii-config.patch
(from rev 317632, gnokii/trunk/gnokii-config.patch)
  gnokii/repos/community-x86_64/gnokii-gcc5.patch
(from rev 317632, gnokii/trunk/gnokii-gcc5.patch)
  gnokii/repos/community-x86_64/gnokii-gcc7.patch
(from rev 317632, gnokii/trunk/gnokii-gcc7.patch)
  gnokii/repos/community-x86_64/gnokii-lock.patch
(from rev 317632, gnokii/trunk/gnokii-lock.patch)
  gnokii/repos/community-x86_64/gnokii.install
(from rev 317632, gnokii/trunk/gnokii.install)
Deleted:
  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-gcc7.patch
  gnokii/repos/community-x86_64/gnokii-lock.patch
  gnokii/repos/community-x86_64/gnokii.install

-+
 PKGBUILD|  153 --
 gnokii-config.patch |   24 +++
 gnokii-gcc5.patch   |   54 -
 gnokii-gcc7.patch   |   26 
 gnokii-lock.patch   |   30 -
 gnokii.install  |6 -
 6 files changed, 146 insertions(+), 147 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-24 21:35:52 UTC (rev 317632)
+++ PKGBUILD2018-04-24 21:35:58 UTC (rev 317633)
@@ -1,77 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Andrea Scarpino 
-# Contributor: Roman Kyrylych 
-# Contributor: Aurelien Foret 
-
-pkgname=gnokii
-pkgver=0.6.31
-pkgrel=15
-pkgdesc="Tools and user space driver for use with mobile phones"
-arch=('x86_64')
-url="http://www.gnokii.org/;
-license=('GPL')
-depends=('libusb-compat' 'libxpm' 'bluez-libs' 'libical' 'sqlite' 'systemd')
-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'
-'gnokii-gcc7.patch')
-md5sums=('d9627f4a1152d3ea7806df4532850d5f'
- 'b2961b52ac1f770c4704ccc50b64fde2'
- '17b629db85a6bb2b98ca59941aa95295'
- '5bcf2dadd31a826d1f80b53bb37d9bd0'
- '338e376185ff5323c5fdd3538890f776')
-
-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"
-
-  # Fix build with GCC 7
-  patch -Np1 -i "$srcdir/gnokii-gcc7.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-x86_64/PKGBUILD (from rev 317632, 
gnokii/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-04-24 21:35:58 UTC (rev 317633)
@@ -0,0 +1,76 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: Andrea Scarpino 
+# Contributor: Roman Kyrylych 
+# Contributor: Aurelien Foret 
+
+pkgname=gnokii
+pkgver=0.6.31
+pkgrel=16
+pkgdesc="Tools and user space driver for use with mobile phones"
+arch=('x86_64')
+url="https://www.gnokii.org/;
+license=('GPL')
+depends=('libusb-compat' 'libxpm' 'bluez-libs' 'libical' 'sqlite' 'systemd')
+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;
+ 

[arch-commits] Commit in gnokii/trunk (PKGBUILD)

2018-04-24 Thread Balló György via arch-commits
Date: Tuesday, April 24, 2018 @ 21:35:52
  Author: bgyorgy
Revision: 317632

upgpkg: gnokii 0.6.31-16

Don't create lock group, it's already created by the filesystem package 
(FS#58342)

Modified:
  gnokii/trunk/PKGBUILD

--+
 PKGBUILD |5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-04-24 21:32:06 UTC (rev 317631)
+++ PKGBUILD2018-04-24 21:35:52 UTC (rev 317632)
@@ -6,7 +6,7 @@
 
 pkgname=gnokii
 pkgver=0.6.31
-pkgrel=15
+pkgrel=16
 pkgdesc="Tools and user space driver for use with mobile phones"
 arch=('x86_64')
 url="https://www.gnokii.org/;
@@ -71,7 +71,6 @@
   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"
+  install -dm755 "$pkgdir"/usr/lib/tmpfiles.d
   echo 'd /run/lock/lockdev 0775 root lock -' > 
"$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf"
 }


[arch-commits] Commit in gnokii/trunk (PKGBUILD)

2018-01-13 Thread Balló György via arch-commits
Date: Sunday, January 14, 2018 @ 01:32:24
  Author: bgyorgy
Revision: 281869

gnokii: Use https URL

Modified:
  gnokii/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-01-14 00:21:10 UTC (rev 281868)
+++ PKGBUILD2018-01-14 01:32:24 UTC (rev 281869)
@@ -9,7 +9,7 @@
 pkgrel=15
 pkgdesc="Tools and user space driver for use with mobile phones"
 arch=('x86_64')
-url="http://www.gnokii.org/;
+url="https://www.gnokii.org/;
 license=('GPL')
 depends=('libusb-compat' 'libxpm' 'bluez-libs' 'libical' 'sqlite' 'systemd')
 makedepends=('gtk2' 'libmariadbclient' 'postgresql-libs' 'intltool')


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

2017-11-22 Thread Balló György
Date: Wednesday, November 22, 2017 @ 14:34:49
  Author: bgyorgy
Revision: 268037

archrelease: copy trunk to community-staging-x86_64

Added:
  gnokii/repos/community-staging-x86_64/
  gnokii/repos/community-staging-x86_64/PKGBUILD
(from rev 268036, gnokii/trunk/PKGBUILD)
  gnokii/repos/community-staging-x86_64/gnokii-config.patch
(from rev 268036, gnokii/trunk/gnokii-config.patch)
  gnokii/repos/community-staging-x86_64/gnokii-gcc5.patch
(from rev 268036, gnokii/trunk/gnokii-gcc5.patch)
  gnokii/repos/community-staging-x86_64/gnokii-gcc7.patch
(from rev 268036, gnokii/trunk/gnokii-gcc7.patch)
  gnokii/repos/community-staging-x86_64/gnokii-lock.patch
(from rev 268036, gnokii/trunk/gnokii-lock.patch)
  gnokii/repos/community-staging-x86_64/gnokii.install
(from rev 268036, gnokii/trunk/gnokii.install)

-+
 PKGBUILD|   77 ++
 gnokii-config.patch |   12 +++
 gnokii-gcc5.patch   |   27 +
 gnokii-gcc7.patch   |   13 
 gnokii-lock.patch   |   15 +
 gnokii.install  |3 +
 6 files changed, 147 insertions(+)

Copied: gnokii/repos/community-staging-x86_64/PKGBUILD (from rev 268036, 
gnokii/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-11-22 14:34:49 UTC (rev 268037)
@@ -0,0 +1,77 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: Andrea Scarpino 
+# Contributor: Roman Kyrylych 
+# Contributor: Aurelien Foret 
+
+pkgname=gnokii
+pkgver=0.6.31
+pkgrel=15
+pkgdesc="Tools and user space driver for use with mobile phones"
+arch=('x86_64')
+url="http://www.gnokii.org/;
+license=('GPL')
+depends=('libusb-compat' 'libxpm' 'bluez-libs' 'libical' 'sqlite' 'systemd')
+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'
+'gnokii-gcc7.patch')
+md5sums=('d9627f4a1152d3ea7806df4532850d5f'
+ 'b2961b52ac1f770c4704ccc50b64fde2'
+ '17b629db85a6bb2b98ca59941aa95295'
+ '5bcf2dadd31a826d1f80b53bb37d9bd0'
+ '338e376185ff5323c5fdd3538890f776')
+
+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"
+
+  # Fix build with GCC 7
+  patch -Np1 -i "$srcdir/gnokii-gcc7.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-staging-x86_64/gnokii-config.patch (from rev 
268036, gnokii/trunk/gnokii-config.patch)
===
--- community-staging-x86_64/gnokii-config.patch
(rev 0)
+++ community-staging-x86_64/gnokii-config.patch2017-11-22 14:34:49 UTC 
(rev 268037)
@@ -0,0 +1,12 @@
+diff -Nura gnokii-0.6.31.orig/Docs/sample/gnokiirc 
gnokii-0.6.31/Docs/sample/gnokiirc
+--- gnokii-0.6.31.orig/Docs/sample/gnokiirc2011-12-02 15:53:04.0 
+0100
 gnokii-0.6.31/Docs/sample/gnokiirc 2012-02-18 12:49:26.957557504 +0100
+@@ -238,7 +238,7 @@
+ # In particular ensure that mgnokiidev is in this location, with
+ # permissions 4750, owned by root, group gnokii.  Ensure you
+ # are in the gnokii group and that the group exists...
+-bindir = /usr/local/sbin/
++bindir = /usr/bin/
+ 
+ # Any entries in the following two sections will be set as environment
+ # variables when running the scripts.

Copied: gnokii/repos/community-staging-x86_64/gnokii-gcc5.patch (from rev 
268036, gnokii/trunk/gnokii-gcc5.patch)
===
--- 

[arch-commits] Commit in gnokii/trunk (PKGBUILD)

2017-11-22 Thread Balló György
Date: Wednesday, November 22, 2017 @ 14:34:29
  Author: bgyorgy
Revision: 268036

upgpkg: gnokii 0.6.31-15

Rebuild for libical 3

Modified:
  gnokii/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-11-22 14:32:00 UTC (rev 268035)
+++ PKGBUILD2017-11-22 14:34:29 UTC (rev 268036)
@@ -6,7 +6,7 @@
 
 pkgname=gnokii
 pkgver=0.6.31
-pkgrel=14
+pkgrel=15
 pkgdesc="Tools and user space driver for use with mobile phones"
 arch=('x86_64')
 url="http://www.gnokii.org/;



[arch-commits] Commit in gnokii/trunk (PKGBUILD)

2017-05-31 Thread Evangelos Foutras
Date: Wednesday, May 31, 2017 @ 07:06:48
  Author: foutrelis
Revision: 231439

MariaDB 10.2.6 rebuild

Modified:
  gnokii/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-05-31 07:04:50 UTC (rev 231438)
+++ PKGBUILD2017-05-31 07:06:48 UTC (rev 231439)
@@ -6,7 +6,7 @@
 
 pkgname=gnokii
 pkgver=0.6.31
-pkgrel=13
+pkgrel=14
 pkgdesc="Tools and user space driver for use with mobile phones"
 arch=('i686' 'x86_64')
 url="http://www.gnokii.org/;


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

2017-05-31 Thread Evangelos Foutras
Date: Wednesday, May 31, 2017 @ 07:07:12
  Author: foutrelis
Revision: 231440

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

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

--+
 /PKGBUILD|  154 +
 /gnokii-config.patch |   24 +++
 /gnokii-gcc5.patch   |   54 
 /gnokii-gcc7.patch   |   26 
 /gnokii-lock.patch   |   30 
 /gnokii.install  |6 
 community-staging-i686/PKGBUILD  |   77 
 community-staging-i686/gnokii-config.patch   |   12 -
 community-staging-i686/gnokii-gcc5.patch |   27 
 community-staging-i686/gnokii-gcc7.patch |   13 --
 community-staging-i686/gnokii-lock.patch |   15 --
 community-staging-i686/gnokii.install|3 
 community-staging-x86_64/PKGBUILD|   77 
 community-staging-x86_64/gnokii-config.patch |   12 -
 community-staging-x86_64/gnokii-gcc5.patch   |   27 
 community-staging-x86_64/gnokii-gcc7.patch   |   13 --
 community-staging-x86_64/gnokii-lock.patch   |   15 --
 community-staging-x86_64/gnokii.install  |3 
 18 files changed, 294 insertions(+), 294 deletions(-)

Deleted: community-staging-i686/PKGBUILD
===
--- community-staging-i686/PKGBUILD 2017-05-31 07:06:48 UTC (rev 231439)
+++ community-staging-i686/PKGBUILD 2017-05-31 07:07:12 UTC (rev 231440)
@@ -1,77 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Andrea Scarpino 
-# Contributor: Roman Kyrylych 
-# Contributor: Aurelien Foret 
-
-pkgname=gnokii
-pkgver=0.6.31
-pkgrel=13
-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' 'systemd')
-makedepends=('gtk2' 'libmariadb' 'postgresql-libs' 'intltool')
-optdepends=('dialog: sendsms tool'
-'gtk2: xgnokii GUI'
-'libmariadb: 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'
-'gnokii-gcc7.patch')
-md5sums=('d9627f4a1152d3ea7806df4532850d5f'
- 'b2961b52ac1f770c4704ccc50b64fde2'
- '17b629db85a6bb2b98ca59941aa95295'
- '5bcf2dadd31a826d1f80b53bb37d9bd0'
- '338e376185ff5323c5fdd3538890f776')
-
-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)
-  

[arch-commits] Commit in gnokii/trunk (PKGBUILD)

2017-05-25 Thread Evangelos Foutras
Date: Thursday, May 25, 2017 @ 23:53:35
  Author: foutrelis
Revision: 230337

MariaDB 10.2.6 rebuild

Modified:
  gnokii/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-05-25 23:51:15 UTC (rev 230336)
+++ PKGBUILD2017-05-25 23:53:35 UTC (rev 230337)
@@ -6,7 +6,7 @@
 
 pkgname=gnokii
 pkgver=0.6.31
-pkgrel=12
+pkgrel=13
 pkgdesc="Tools and user space driver for use with mobile phones"
 arch=('i686' 'x86_64')
 url="http://www.gnokii.org/;


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

2017-05-25 Thread Evangelos Foutras
Date: Thursday, May 25, 2017 @ 23:53:48
  Author: foutrelis
Revision: 230338

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

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

--+
 community-staging-i686/PKGBUILD  |   77 +
 community-staging-i686/gnokii-config.patch   |   12 +++
 community-staging-i686/gnokii-gcc5.patch |   27 
 community-staging-i686/gnokii-gcc7.patch |   13 
 community-staging-i686/gnokii-lock.patch |   15 
 community-staging-i686/gnokii.install|3 
 community-staging-x86_64/PKGBUILD|   77 +
 community-staging-x86_64/gnokii-config.patch |   12 +++
 community-staging-x86_64/gnokii-gcc5.patch   |   27 
 community-staging-x86_64/gnokii-gcc7.patch   |   13 
 community-staging-x86_64/gnokii-lock.patch   |   15 
 community-staging-x86_64/gnokii.install  |3 
 12 files changed, 294 insertions(+)

Copied: gnokii/repos/community-staging-i686/PKGBUILD (from rev 230337, 
gnokii/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-25 23:53:48 UTC (rev 230338)
@@ -0,0 +1,77 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: Andrea Scarpino 
+# Contributor: Roman Kyrylych 
+# Contributor: Aurelien Foret 
+
+pkgname=gnokii
+pkgver=0.6.31
+pkgrel=13
+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' 'systemd')
+makedepends=('gtk2' 'libmariadb' 'postgresql-libs' 'intltool')
+optdepends=('dialog: sendsms tool'
+'gtk2: xgnokii GUI'
+'libmariadb: 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'
+'gnokii-gcc7.patch')
+md5sums=('d9627f4a1152d3ea7806df4532850d5f'
+ 'b2961b52ac1f770c4704ccc50b64fde2'
+ '17b629db85a6bb2b98ca59941aa95295'
+ '5bcf2dadd31a826d1f80b53bb37d9bd0'
+ '338e376185ff5323c5fdd3538890f776')
+
+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"
+
+  # Fix build with GCC 7
+  patch -Np1 -i "$srcdir/gnokii-gcc7.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: 

[arch-commits] Commit in gnokii/trunk (gnokii-gcc7.patch)

2017-05-25 Thread Christian Hesse
Date: Thursday, May 25, 2017 @ 23:50:00
  Author: eworm
Revision: 230334

add missing file

Added:
  gnokii/trunk/gnokii-gcc7.patch

---+
 gnokii-gcc7.patch |   13 +
 1 file changed, 13 insertions(+)

Added: gnokii-gcc7.patch
===
--- gnokii-gcc7.patch   (rev 0)
+++ gnokii-gcc7.patch   2017-05-25 23:50:00 UTC (rev 230334)
@@ -0,0 +1,13 @@
+diff --git a/common/gsm-filetypes.c b/common/gsm-filetypes.c
+index b4ceea1..264420a 100644
+--- a/common/gsm-filetypes.c
 b/common/gsm-filetypes.c
+@@ -1409,7 +1409,7 @@ static int get_next_token(char *src, int delim)
+ #define GET_NEXT_TOKEN()  o = get_next_token(line + offset, ';')
+ #define STORE_TOKEN(a)strip_slashes(a, line + offset, 
sizeof(a) - 1, o - 1)
+ 
+-inline int local_atoi(char *str, int len)
++int local_atoi(char *str, int len)
+ {
+   int retval;
+   char *aux = strndup(str, len);


[arch-commits] Commit in gnokii/trunk (PKGBUILD)

2017-05-25 Thread Christian Hesse
Date: Thursday, May 25, 2017 @ 23:44:00
  Author: eworm
Revision: 230331

fix build with gcc 7.x

Modified:
  gnokii/trunk/PKGBUILD

--+
 PKGBUILD |9 +++--
 1 file changed, 7 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-05-25 23:42:38 UTC (rev 230330)
+++ PKGBUILD2017-05-25 23:44:00 UTC (rev 230331)
@@ -22,11 +22,13 @@
 source=("https://www.gnokii.org/download/$pkgname/$pkgname-$pkgver.tar.bz2;
 'gnokii-config.patch'
 'gnokii-lock.patch'
-   'gnokii-gcc5.patch')
+'gnokii-gcc5.patch'
+'gnokii-gcc7.patch')
 md5sums=('d9627f4a1152d3ea7806df4532850d5f'
  'b2961b52ac1f770c4704ccc50b64fde2'
  '17b629db85a6bb2b98ca59941aa95295'
- '5bcf2dadd31a826d1f80b53bb37d9bd0')
+ '5bcf2dadd31a826d1f80b53bb37d9bd0'
+ '338e376185ff5323c5fdd3538890f776')
 
 prepare() {
   cd $pkgname-$pkgver
@@ -39,6 +41,9 @@
 
   # Fix build with GCC 5 (Fedora patch)
   patch -Np1 -i "$srcdir/gnokii-gcc5.patch"
+
+  # Fix build with GCC 7
+  patch -Np1 -i "$srcdir/gnokii-gcc7.patch"
 }
 
 build() {


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

2017-03-03 Thread Antonio Rojas
Date: Saturday, March 4, 2017 @ 00:29:08
  Author: arojas
Revision: 214729

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

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

--+
 community-staging-i686/PKGBUILD  |   72 +
 community-staging-i686/gnokii-config.patch   |   12 
 community-staging-i686/gnokii-gcc5.patch |   27 +
 community-staging-i686/gnokii-lock.patch |   15 +
 community-staging-i686/gnokii.install|3 +
 community-staging-x86_64/PKGBUILD|   72 +
 community-staging-x86_64/gnokii-config.patch |   12 
 community-staging-x86_64/gnokii-gcc5.patch   |   27 +
 community-staging-x86_64/gnokii-lock.patch   |   15 +
 community-staging-x86_64/gnokii.install  |3 +
 10 files changed, 258 insertions(+)

Copied: gnokii/repos/community-staging-i686/PKGBUILD (from rev 214728, 
gnokii/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-04 00:29:08 UTC (rev 214729)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: Andrea Scarpino 
+# Contributor: Roman Kyrylych 
+# Contributor: Aurelien Foret 
+
+pkgname=gnokii
+pkgver=0.6.31
+pkgrel=12
+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' 'systemd')
+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-staging-i686/gnokii-config.patch (from rev 
214728, gnokii/trunk/gnokii-config.patch)
===
--- community-staging-i686/gnokii-config.patch  (rev 0)
+++ community-staging-i686/gnokii-config.patch  2017-03-04 00:29:08 UTC (rev 
214729)
@@ -0,0 +1,12 @@
+diff -Nura gnokii-0.6.31.orig/Docs/sample/gnokiirc 
gnokii-0.6.31/Docs/sample/gnokiirc
+--- gnokii-0.6.31.orig/Docs/sample/gnokiirc

[arch-commits] Commit in gnokii/trunk (PKGBUILD)

2017-03-03 Thread Antonio Rojas
Date: Saturday, March 4, 2017 @ 00:28:19
  Author: arojas
Revision: 214728

openssl 1.1 rebuild

Modified:
  gnokii/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-04 00:26:20 UTC (rev 214727)
+++ PKGBUILD2017-03-04 00:28:19 UTC (rev 214728)
@@ -6,7 +6,7 @@
 
 pkgname=gnokii
 pkgver=0.6.31
-pkgrel=11
+pkgrel=12
 pkgdesc="Tools and user space driver for use with mobile phones"
 arch=('i686' 'x86_64')
 url="http://www.gnokii.org/;


[arch-commits] Commit in gnokii/trunk (PKGBUILD gnokii.install)

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

upgpkg: gnokii 0.6.31-11

Hooks rebuild

Modified:
  gnokii/trunk/PKGBUILD
  gnokii/trunk/gnokii.install

+
 PKGBUILD   |4 ++--
 gnokii.install |7 ---
 2 files changed, 2 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-01-21 20:58:08 UTC (rev 208331)
+++ PKGBUILD2017-01-21 21:02:25 UTC (rev 208332)
@@ -6,12 +6,12 @@
 
 pkgname=gnokii
 pkgver=0.6.31
-pkgrel=10
+pkgrel=11
 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')
+depends=('libusb-compat' 'libxpm' 'bluez-libs' 'libical' 'sqlite' 'systemd')
 makedepends=('gtk2' 'libmariadbclient' 'postgresql-libs' 'intltool')
 optdepends=('dialog: sendsms tool'
 'gtk2: xgnokii GUI'

Modified: gnokii.install
===
--- gnokii.install  2017-01-21 20:58:08 UTC (rev 208331)
+++ gnokii.install  2017-01-21 21:02:25 UTC (rev 208332)
@@ -1,10 +1,3 @@
 post_install() {
   echo "Users need to be in 'lock' and 'uucp' groups to connect to devices"
-  systemd-sysusers "/usr/lib/sysusers.d/gnokii.conf"
-  systemd-tmpfiles --create "/usr/lib/tmpfiles.d/gnokii.conf"
 }
-
-post_upgrade() {
-  systemd-sysusers "/usr/lib/sysusers.d/gnokii.conf"
-  systemd-tmpfiles --create "/usr/lib/tmpfiles.d/gnokii.conf"
-}


[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/trunk (PKGBUILD)

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

Use https source

Modified:
  gnokii/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-12-07 17:47:24 UTC (rev 198320)
+++ PKGBUILD2016-12-07 17:53:06 UTC (rev 198321)
@@ -19,7 +19,7 @@
 'postgresql-libs: smsd postgresql backend')
 backup=('etc/gnokiirc')
 install=$pkgname.install
-source=("http://www.gnokii.org/download/$pkgname/$pkgname-$pkgver.tar.bz2;
+source=("https://www.gnokii.org/download/$pkgname/$pkgname-$pkgver.tar.bz2;
 'gnokii-config.patch'
 'gnokii-lock.patch'
'gnokii-gcc5.patch')


[arch-commits] Commit in gnokii/trunk (PKGBUILD)

2016-11-07 Thread Bartłomiej Piotrowski
Date: Monday, November 7, 2016 @ 19:35:55
  Author: bpiotrowski
Revision: 194968

readline 7.0 rebuild

Modified:
  gnokii/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-11-07 19:34:55 UTC (rev 194967)
+++ PKGBUILD2016-11-07 19:35:55 UTC (rev 194968)
@@ -6,7 +6,7 @@
 
 pkgname=gnokii
 pkgver=0.6.31
-pkgrel=9
+pkgrel=10
 pkgdesc="Tools and user space driver for use with mobile phones"
 arch=('i686' 'x86_64')
 url="http://www.gnokii.org/;


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

2016-11-07 Thread Bartłomiej Piotrowski
Date: Monday, November 7, 2016 @ 19:36:03
  Author: bpiotrowski
Revision: 194969

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

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

--+
 community-staging-i686/PKGBUILD  |   72 +
 community-staging-i686/gnokii-config.patch   |   12 
 community-staging-i686/gnokii-gcc5.patch |   27 +
 community-staging-i686/gnokii-lock.patch |   15 +
 community-staging-i686/gnokii.install|   10 +++
 community-staging-x86_64/PKGBUILD|   72 +
 community-staging-x86_64/gnokii-config.patch |   12 
 community-staging-x86_64/gnokii-gcc5.patch   |   27 +
 community-staging-x86_64/gnokii-lock.patch   |   15 +
 community-staging-x86_64/gnokii.install  |   10 +++
 10 files changed, 272 insertions(+)

Copied: gnokii/repos/community-staging-i686/PKGBUILD (from rev 194968, 
gnokii/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-11-07 19:36:03 UTC (rev 194969)
@@ -0,0 +1,72 @@
+# $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-staging-i686/gnokii-config.patch (from rev 
194968, gnokii/trunk/gnokii-config.patch)
===
--- community-staging-i686/gnokii-config.patch  (rev 0)
+++ community-staging-i686/gnokii-config.patch  2016-11-07 19:36:03 UTC (rev 
194969)
@@ -0,0 +1,12 @@
+diff -Nura gnokii-0.6.31.orig/Docs/sample/gnokiirc 
gnokii-0.6.31/Docs/sample/gnokiirc
+--- gnokii-0.6.31.orig/Docs/sample/gnokiirc

[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ó 

[arch-commits] Commit in gnokii/trunk (PKGBUILD gnokii.install)

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

upgpkg: gnokii 0.6.31-9

Setup the required /run/lock/lockdev which was removed from systemd: 
https://github.com/systemd/systemd/commit/61f32bff6130a44d077886d38cff89ad161bf177

Modified:
  gnokii/trunk/PKGBUILD
  gnokii/trunk/gnokii.install

+
 PKGBUILD   |9 +++--
 gnokii.install |9 -
 2 files changed, 15 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-08-03 09:26:13 UTC (rev 184967)
+++ PKGBUILD2016-08-03 09:26:30 UTC (rev 184968)
@@ -6,7 +6,7 @@
 
 pkgname=gnokii
 pkgver=0.6.31
-pkgrel=8
+pkgrel=9
 pkgdesc="Tools and user space driver for use with mobile phones"
 arch=('i686' 'x86_64')
 url="http://www.gnokii.org/;
@@ -59,9 +59,14 @@
   make DESTDIR="$pkgdir" install
   popd
 
-  # Install inital config file
+  # 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"
 }

Modified: gnokii.install
===
--- gnokii.install  2016-08-03 09:26:13 UTC (rev 184967)
+++ gnokii.install  2016-08-03 09:26:30 UTC (rev 184968)
@@ -1,3 +1,10 @@
 post_install() {
-echo "Users need to be in 'lock' and 'uucp' groups to connect to devices"
+  echo "Users need to be in 'lock' and 'uucp' groups to connect to devices"
+  systemd-sysusers "/usr/lib/sysusers.d/gnokii.conf"
+  systemd-tmpfiles --create "/usr/lib/tmpfiles.d/gnokii.conf"
 }
+
+post_upgrade() {
+  systemd-sysusers "/usr/lib/sysusers.d/gnokii.conf"
+  systemd-tmpfiles --create "/usr/lib/tmpfiles.d/gnokii.conf"
+}


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

2016-03-04 Thread Bartłomiej Piotrowski
Date: Friday, March 4, 2016 @ 12:19:17
  Author: bpiotrowski
Revision: 164726

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

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

--+
 community-staging-i686/PKGBUILD  |   67 +
 community-staging-i686/gnokii-config.patch   |   12 
 community-staging-i686/gnokii-gcc5.patch |   27 ++
 community-staging-i686/gnokii-lock.patch |   15 +
 community-staging-i686/gnokii.install|3 +
 community-staging-x86_64/PKGBUILD|   67 +
 community-staging-x86_64/gnokii-config.patch |   12 
 community-staging-x86_64/gnokii-gcc5.patch   |   27 ++
 community-staging-x86_64/gnokii-lock.patch   |   15 +
 community-staging-x86_64/gnokii.install  |3 +
 10 files changed, 248 insertions(+)

Copied: gnokii/repos/community-staging-i686/PKGBUILD (from rev 164725, 
gnokii/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-04 11:19:17 UTC (rev 164726)
@@ -0,0 +1,67 @@
+# $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-staging-i686/gnokii-config.patch (from rev 
164725, gnokii/trunk/gnokii-config.patch)
===
--- community-staging-i686/gnokii-config.patch  (rev 0)
+++ community-staging-i686/gnokii-config.patch  2016-03-04 11:19:17 UTC (rev 
164726)
@@ -0,0 +1,12 @@
+diff -Nura gnokii-0.6.31.orig/Docs/sample/gnokiirc 
gnokii-0.6.31/Docs/sample/gnokiirc
+--- gnokii-0.6.31.orig/Docs/sample/gnokiirc2011-12-02 15:53:04.0 
+0100
 gnokii-0.6.31/Docs/sample/gnokiirc 2012-02-18 12:49:26.957557504 +0100
+@@ -238,7 +238,7 @@
+ # In particular ensure that mgnokiidev is in this location, with
+ # permissions 4750, owned by root, group 

[arch-commits] Commit in gnokii/trunk (PKGBUILD)

2016-03-04 Thread Bartłomiej Piotrowski
Date: Friday, March 4, 2016 @ 12:19:06
  Author: bpiotrowski
Revision: 164725

OpenSSL 1.0.2g rebuild

Modified:
  gnokii/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-04 11:17:47 UTC (rev 164724)
+++ PKGBUILD2016-03-04 11:19:06 UTC (rev 164725)
@@ -6,7 +6,7 @@
 
 pkgname=gnokii
 pkgver=0.6.31
-pkgrel=7
+pkgrel=8
 pkgdesc="Tools and user space driver for use with mobile phones"
 arch=('i686' 'x86_64')
 url="http://www.gnokii.org/;


[arch-commits] Commit in gnokii/trunk (PKGBUILD)

2016-01-09 Thread Antonio Rojas
Date: Saturday, January 9, 2016 @ 15:21:57
  Author: arojas
Revision: 155790

libical 2.0 rebuild

Modified:
  gnokii/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-01-09 14:19:57 UTC (rev 155789)
+++ PKGBUILD2016-01-09 14:21:57 UTC (rev 155790)
@@ -6,7 +6,7 @@
 
 pkgname=gnokii
 pkgver=0.6.31
-pkgrel=6
+pkgrel=7
 pkgdesc="Tools and user space driver for use with mobile phones"
 arch=('i686' 'x86_64')
 url="http://www.gnokii.org/;


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

2016-01-09 Thread Antonio Rojas
Date: Saturday, January 9, 2016 @ 15:22:45
  Author: arojas
Revision: 155791

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

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

--+
 community-staging-i686/PKGBUILD  |   67 +
 community-staging-i686/gnokii-config.patch   |   12 
 community-staging-i686/gnokii-gcc5.patch |   27 ++
 community-staging-i686/gnokii-lock.patch |   15 +
 community-staging-i686/gnokii.install|3 +
 community-staging-x86_64/PKGBUILD|   67 +
 community-staging-x86_64/gnokii-config.patch |   12 
 community-staging-x86_64/gnokii-gcc5.patch   |   27 ++
 community-staging-x86_64/gnokii-lock.patch   |   15 +
 community-staging-x86_64/gnokii.install  |3 +
 10 files changed, 248 insertions(+)

Copied: gnokii/repos/community-staging-i686/PKGBUILD (from rev 155790, 
gnokii/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-01-09 14:22:45 UTC (rev 155791)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: Andrea Scarpino 
+# Contributor: Roman Kyrylych 
+# Contributor: Aurelien Foret 
+
+pkgname=gnokii
+pkgver=0.6.31
+pkgrel=7
+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-staging-i686/gnokii-config.patch (from rev 
155790, gnokii/trunk/gnokii-config.patch)
===
--- community-staging-i686/gnokii-config.patch  (rev 0)
+++ community-staging-i686/gnokii-config.patch  2016-01-09 14:22:45 UTC (rev 
155791)
@@ -0,0 +1,12 @@
+diff -Nura gnokii-0.6.31.orig/Docs/sample/gnokiirc 
gnokii-0.6.31/Docs/sample/gnokiirc
+--- gnokii-0.6.31.orig/Docs/sample/gnokiirc2011-12-02 15:53:04.0 
+0100
 gnokii-0.6.31/Docs/sample/gnokiirc 2012-02-18 12:49:26.957557504 +0100
+@@ -238,7 +238,7 @@
+ # In particular ensure that mgnokiidev is in this location, with
+ # permissions 4750, owned by root, group 

[arch-commits] Commit in gnokii/trunk (PKGBUILD gnokii-gcc5.patch)

2016-01-09 Thread Antonio Rojas
Date: Saturday, January 9, 2016 @ 15:19:57
  Author: arojas
Revision: 155789

libical 2.0 rebuild, add Fedora patch to fix build with GCC 5

Added:
  gnokii/trunk/gnokii-gcc5.patch
Modified:
  gnokii/trunk/PKGBUILD

---+
 PKGBUILD  |9 +++--
 gnokii-gcc5.patch |   27 +++
 2 files changed, 34 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-01-09 14:10:15 UTC (rev 155788)
+++ PKGBUILD2016-01-09 14:19:57 UTC (rev 155789)
@@ -21,10 +21,12 @@
 install=$pkgname.install
 source=("http://www.gnokii.org/download/$pkgname/$pkgname-$pkgver.tar.bz2;
 'gnokii-config.patch'
-'gnokii-lock.patch')
+'gnokii-lock.patch'
+   'gnokii-gcc5.patch')
 md5sums=('d9627f4a1152d3ea7806df4532850d5f'
  'b2961b52ac1f770c4704ccc50b64fde2'
- '17b629db85a6bb2b98ca59941aa95295')
+ '17b629db85a6bb2b98ca59941aa95295'
+ '5bcf2dadd31a826d1f80b53bb37d9bd0')
 
 prepare() {
   cd $pkgname-$pkgver
@@ -34,6 +36,9 @@
 
   # 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() {

Added: gnokii-gcc5.patch
===
--- gnokii-gcc5.patch   (rev 0)
+++ gnokii-gcc5.patch   2016-01-09 14:19:57 UTC (rev 155789)
@@ -0,0 +1,27 @@
+Patch by Robert Scheck  for gnokii <= 0.6.31 to avoid
+build failures with GCC 5.x as "gnokii-0.6.31/xgnokii/xgnokii.c:1209: undefined
+reference to `GUI_HideAbout'" and "xgnokii-xgnokii_logos.o:(.data.rel+0xe0):
+undefined reference to `CloseLogosWindow'".
+
+--- gnokii-0.6.31/xgnokii/xgnokii.c2011-12-02 15:53:04.0 
+0100
 gnokii-0.6.31/xgnokii/xgnokii.c.gcc5   2015-06-20 15:49:59.0 
+0200
+@@ -798,7 +798,7 @@
+ }
+ 
+ 
+-inline void GUI_HideAbout(void)
++void GUI_HideAbout(void)
+ {
+   gtk_widget_hide(AboutDialog);
+ }
+--- gnokii-0.6.31/xgnokii/xgnokii_logos.c  2011-12-02 15:53:04.0 
+0100
 gnokii-0.6.31/xgnokii/xgnokii_logos.c.gcc5 2015-06-20 15:50:15.0 
+0200
+@@ -1304,7 +1304,7 @@
+   return 0;
+ }
+ 
+-inline void CloseLogosWindow(void)
++void CloseLogosWindow(void)
+ {
+   gtk_widget_hide(GUI_LogosWindow);
+ }


[arch-commits] Commit in gnokii/trunk (PKGBUILD)

2013-11-30 Thread Balló György
Date: Saturday, November 30, 2013 @ 18:50:37
  Author: bgyorgy
Revision: 101751

Implement prepare function

Modified:
  gnokii/trunk/PKGBUILD

--+
 PKGBUILD |5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-11-30 17:42:47 UTC (rev 101750)
+++ PKGBUILD2013-11-30 17:50:37 UTC (rev 101751)
@@ -26,7 +26,7 @@
  'b2961b52ac1f770c4704ccc50b64fde2'
  '17b629db85a6bb2b98ca59941aa95295')
 
-build() {
+prepare() {
   cd $pkgname-$pkgver
 
   # Set bindir location
@@ -34,7 +34,10 @@
 
   # Set lock path
   patch -Np1 -i $srcdir/gnokii-lock.patch
+}
 
+build() {
+  cd $pkgname-$pkgver
   ./configure --prefix=/usr --sysconfdir=/etc --sbindir=/usr/bin \
   --disable-static --enable-security
   make



[arch-commits] Commit in gnokii (3 files)

2013-10-30 Thread Allan McRae
Date: Thursday, October 31, 2013 @ 00:36:32
  Author: allan
Revision: 99770

remove !libtool

Modified:
  gnokii/repos/community-i686/PKGBUILD
  gnokii/repos/community-x86_64/PKGBUILD
  gnokii/trunk/PKGBUILD

-+
 repos/community-i686/PKGBUILD   |1 -
 repos/community-x86_64/PKGBUILD |1 -
 trunk/PKGBUILD  |1 -
 3 files changed, 3 deletions(-)

Modified: repos/community-i686/PKGBUILD
===
--- repos/community-i686/PKGBUILD   2013-10-30 23:36:07 UTC (rev 99769)
+++ repos/community-i686/PKGBUILD   2013-10-30 23:36:32 UTC (rev 99770)
@@ -18,7 +18,6 @@
 'libmariadbclient: smsd mysql backend'
 'postgresql-libs: smsd postgresql backend')
 backup=('etc/gnokiirc')
-options=('!libtool')
 install=$pkgname.install
 source=(http://www.gnokii.org/download/$pkgname/$pkgname-$pkgver.tar.bz2;
 'gnokii-config.patch'

Modified: repos/community-x86_64/PKGBUILD
===
--- repos/community-x86_64/PKGBUILD 2013-10-30 23:36:07 UTC (rev 99769)
+++ repos/community-x86_64/PKGBUILD 2013-10-30 23:36:32 UTC (rev 99770)
@@ -18,7 +18,6 @@
 'libmariadbclient: smsd mysql backend'
 'postgresql-libs: smsd postgresql backend')
 backup=('etc/gnokiirc')
-options=('!libtool')
 install=$pkgname.install
 source=(http://www.gnokii.org/download/$pkgname/$pkgname-$pkgver.tar.bz2;
 'gnokii-config.patch'

Modified: trunk/PKGBUILD
===
--- trunk/PKGBUILD  2013-10-30 23:36:07 UTC (rev 99769)
+++ trunk/PKGBUILD  2013-10-30 23:36:32 UTC (rev 99770)
@@ -18,7 +18,6 @@
 'libmariadbclient: smsd mysql backend'
 'postgresql-libs: smsd postgresql backend')
 backup=('etc/gnokiirc')
-options=('!libtool')
 install=$pkgname.install
 source=(http://www.gnokii.org/download/$pkgname/$pkgname-$pkgver.tar.bz2;
 'gnokii-config.patch'



[arch-commits] Commit in gnokii/trunk (5 files)

2013-08-12 Thread Balló György
Date: Monday, August 12, 2013 @ 22:27:08
  Author: bgyorgy
Revision: 95468

upgpkg: gnokii 0.6.31-6

* General cleanup
* Fix building xgnokii
* Fix device locking
* Make sendsms executable
* Add dialog to optdepends (required for sendsms tool)
* Notifiy the user about required group permissions

Added:
  gnokii/trunk/gnokii-config.patch
  gnokii/trunk/gnokii-lock.patch
  gnokii/trunk/gnokii.install
Modified:
  gnokii/trunk/PKGBUILD
Deleted:
  gnokii/trunk/gnokii.patch

-+
 PKGBUILD|   53 +++---
 gnokii-config.patch |   12 +++
 gnokii-lock.patch   |   15 ++
 gnokii.install  |3 ++
 gnokii.patch|   12 ---
 5 files changed, 63 insertions(+), 32 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-08-12 19:57:14 UTC (rev 95467)
+++ PKGBUILD2013-08-12 20:27:08 UTC (rev 95468)
@@ -1,47 +1,60 @@
 # $Id$
-# Maintainer:
+# Maintainer: Balló György ballogyor+arch at gmail dot com
 # Contributor: Andrea Scarpino and...@archlinux.org
 # Contributor: Roman Kyrylych ro...@archlinux.org
 # Contributor: Aurelien Foret orel...@chez.com
 
 pkgname=gnokii
 pkgver=0.6.31
-pkgrel=5
+pkgrel=6
 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' 'mariadb')
-optdepends=('gtk2: xgnokii GUI'
+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')
-options=('!libtool' '!makeflags')
-source=(http://www.gnokii.org/download/$pkgname/$pkgname-${pkgver}.tar.bz2;
-'gnokii.patch')
+options=('!libtool')
+install=$pkgname.install
+source=(http://www.gnokii.org/download/$pkgname/$pkgname-$pkgver.tar.bz2;
+'gnokii-config.patch'
+'gnokii-lock.patch')
 md5sums=('d9627f4a1152d3ea7806df4532850d5f'
- 'fd1c448114c2e0de8e05981030f0e69f')
+ 'b2961b52ac1f770c4704ccc50b64fde2'
+ '17b629db85a6bb2b98ca59941aa95295')
 
 build() {
-  cd ${pkgname}-${pkgver}
+  cd $pkgname-$pkgver
 
-  # FS#13249
-  sed -i 's|cellphone|phone|' xgnokii/xgnokii.desktop.in
+  # Set bindir location
+  patch -Np1 -i $srcdir/gnokii-config.patch
 
-  patch -Np1 -i ${srcdir}/gnokii.patch
+  # Set lock path
+  patch -Np1 -i $srcdir/gnokii-lock.patch
 
-  ./configure --prefix=/usr \
---sysconfdir=/etc \
---sbindir=/usr/bin \
---enable-security \
---disable-unix98test
+  ./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
+  cd $pkgname-$pkgver
 
-  install -Dm644 Docs/sample/gnokiirc ${pkgdir}/etc/gnokiirc
+  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
 }

Added: gnokii-config.patch
===
--- gnokii-config.patch (rev 0)
+++ gnokii-config.patch 2013-08-12 20:27:08 UTC (rev 95468)
@@ -0,0 +1,12 @@
+diff -Nura gnokii-0.6.31.orig/Docs/sample/gnokiirc 
gnokii-0.6.31/Docs/sample/gnokiirc
+--- gnokii-0.6.31.orig/Docs/sample/gnokiirc2011-12-02 15:53:04.0 
+0100
 gnokii-0.6.31/Docs/sample/gnokiirc 2012-02-18 12:49:26.957557504 +0100
+@@ -238,7 +238,7 @@
+ # In particular ensure that mgnokiidev is in this location, with
+ # permissions 4750, owned by root, group gnokii.  Ensure you
+ # are in the gnokii group and that the group exists...
+-bindir = /usr/local/sbin/
++bindir = /usr/bin/
+ 
+ # Any entries in the following two sections will be set as environment
+ # variables when running the scripts.

Added: gnokii-lock.patch
===
--- gnokii-lock.patch   (rev 0)
+++ gnokii-lock.patch   2013-08-12 20:27:08 UTC (rev 95468)
@@ -0,0 +1,15 @@
+diff -Naur gnokii-0.6.31.orig/common/misc.c gnokii-0.6.31/common/misc.c
+--- gnokii-0.6.31.orig/common/misc.c   2011-12-02 15:53:04.0 +0100
 gnokii-0.6.31/common/misc.c2013-08-12 18:38:41.021668458 +0200
+@@ -448,9 +448,9 @@
+ 
+ #define BUFFER_MAX_LENGTH 128
+ #if defined (__svr4__)
+-#  define lock_path /var/run/LCK..
++#  define lock_path /var/run/lockdev/LCK..
+ #else
+-#  define lock_path /var/lock/LCK..
++#  define lock_path /var/lock/lockdev/LCK..
+ #endif
+ 
+ /* Lock the device. Return 

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

2013-08-12 Thread Balló György
Date: Monday, August 12, 2013 @ 22:27:17
  Author: bgyorgy
Revision: 95469

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

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

--+
 /PKGBUILD|  120 +
 community-i686/PKGBUILD  |   47 
 community-i686/gnokii-config.patch   |   12 +++
 community-i686/gnokii-lock.patch |   15 
 community-i686/gnokii.install|3 
 community-i686/gnokii.patch  |   12 ---
 community-x86_64/PKGBUILD|   47 
 community-x86_64/gnokii-config.patch |   12 +++
 community-x86_64/gnokii-lock.patch   |   15 
 community-x86_64/gnokii.install  |3 
 community-x86_64/gnokii.patch|   12 ---
 11 files changed, 180 insertions(+), 118 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-08-12 20:27:08 UTC (rev 95468)
+++ community-i686/PKGBUILD 2013-08-12 20:27:17 UTC (rev 95469)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Roman Kyrylych ro...@archlinux.org
-# Contributor: Aurelien Foret orel...@chez.com
-
-pkgname=gnokii
-pkgver=0.6.31
-pkgrel=5
-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' 'mariadb')
-optdepends=('gtk2: xgnokii GUI'
-'libmariadbclient: smsd mysql backend'
-'postgresql-libs: smsd postgresql backend')
-backup=('etc/gnokiirc')
-options=('!libtool' '!makeflags')
-source=(http://www.gnokii.org/download/$pkgname/$pkgname-${pkgver}.tar.bz2;
-'gnokii.patch')
-md5sums=('d9627f4a1152d3ea7806df4532850d5f'
- 'fd1c448114c2e0de8e05981030f0e69f')
-
-build() {
-  cd ${pkgname}-${pkgver}
-
-  # FS#13249
-  sed -i 's|cellphone|phone|' xgnokii/xgnokii.desktop.in
-
-  patch -Np1 -i ${srcdir}/gnokii.patch
-
-  ./configure --prefix=/usr \
---sysconfdir=/etc \
---sbindir=/usr/bin \
---enable-security \
---disable-unix98test
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-
-  install -Dm644 Docs/sample/gnokiirc ${pkgdir}/etc/gnokiirc
-}

Copied: gnokii/repos/community-i686/PKGBUILD (from rev 95468, 
gnokii/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-08-12 20:27:17 UTC (rev 95469)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Balló György ballogyor+arch at gmail dot com
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Roman Kyrylych ro...@archlinux.org
+# Contributor: Aurelien Foret orel...@chez.com
+
+pkgname=gnokii
+pkgver=0.6.31
+pkgrel=6
+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')
+options=('!libtool')
+install=$pkgname.install
+source=(http://www.gnokii.org/download/$pkgname/$pkgname-$pkgver.tar.bz2;
+'gnokii-config.patch'
+'gnokii-lock.patch')
+md5sums=('d9627f4a1152d3ea7806df4532850d5f'
+ 'b2961b52ac1f770c4704ccc50b64fde2'
+ '17b629db85a6bb2b98ca59941aa95295')
+
+build() {
+  cd $pkgname-$pkgver
+
+  # Set bindir location
+  patch -Np1 -i $srcdir/gnokii-config.patch
+
+  # Set lock path
+  patch -Np1 -i $srcdir/gnokii-lock.patch
+
+  ./configure --prefix=/usr --sysconfdir=/etc --sbindir=/usr/bin \
+  

[arch-commits] Commit in gnokii/trunk (PKGBUILD)

2013-06-04 Thread Jan Steffens
Date: Tuesday, June 4, 2013 @ 08:32:02
  Author: heftig
Revision: 92347

bluez 5 rebuild

Modified:
  gnokii/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-06-04 06:11:10 UTC (rev 92346)
+++ PKGBUILD2013-06-04 06:32:02 UTC (rev 92347)
@@ -6,12 +6,12 @@
 
 pkgname=gnokii
 pkgver=0.6.31
-pkgrel=4
+pkgrel=5
 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' 'libical')
+depends=('libusb-compat' 'libxpm' 'bluez-libs' 'libical' 'sqlite')
 makedepends=('gtk2' 'libmariadbclient' 'postgresql-libs' 'intltool' 'mariadb')
 optdepends=('gtk2: xgnokii GUI'
 'libmariadbclient: smsd mysql backend'



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

2013-06-04 Thread Jan Steffens
Date: Tuesday, June 4, 2013 @ 08:33:02
  Author: heftig
Revision: 92349

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

Added:
  gnokii/repos/community-staging-i686/
  gnokii/repos/community-staging-i686/PKGBUILD
(from rev 92348, gnokii/trunk/PKGBUILD)
  gnokii/repos/community-staging-i686/gnokii.patch
(from rev 92348, gnokii/trunk/gnokii.patch)
  gnokii/repos/community-staging-x86_64/
  gnokii/repos/community-staging-x86_64/PKGBUILD
(from rev 92348, gnokii/trunk/PKGBUILD)
  gnokii/repos/community-staging-x86_64/gnokii.patch
(from rev 92348, gnokii/trunk/gnokii.patch)

---+
 community-staging-i686/PKGBUILD   |   47 
 community-staging-i686/gnokii.patch   |   12 
 community-staging-x86_64/PKGBUILD |   47 
 community-staging-x86_64/gnokii.patch |   12 
 4 files changed, 118 insertions(+)

Copied: gnokii/repos/community-staging-i686/PKGBUILD (from rev 92348, 
gnokii/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-06-04 06:33:02 UTC (rev 92349)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer:
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Roman Kyrylych ro...@archlinux.org
+# Contributor: Aurelien Foret orel...@chez.com
+
+pkgname=gnokii
+pkgver=0.6.31
+pkgrel=5
+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' 'mariadb')
+optdepends=('gtk2: xgnokii GUI'
+'libmariadbclient: smsd mysql backend'
+'postgresql-libs: smsd postgresql backend')
+backup=('etc/gnokiirc')
+options=('!libtool' '!makeflags')
+source=(http://www.gnokii.org/download/$pkgname/$pkgname-${pkgver}.tar.bz2;
+'gnokii.patch')
+md5sums=('d9627f4a1152d3ea7806df4532850d5f'
+ 'fd1c448114c2e0de8e05981030f0e69f')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  # FS#13249
+  sed -i 's|cellphone|phone|' xgnokii/xgnokii.desktop.in
+
+  patch -Np1 -i ${srcdir}/gnokii.patch
+
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--sbindir=/usr/bin \
+--enable-security \
+--disable-unix98test
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  install -Dm644 Docs/sample/gnokiirc ${pkgdir}/etc/gnokiirc
+}

Copied: gnokii/repos/community-staging-i686/gnokii.patch (from rev 92348, 
gnokii/trunk/gnokii.patch)
===
--- community-staging-i686/gnokii.patch (rev 0)
+++ community-staging-i686/gnokii.patch 2013-06-04 06:33:02 UTC (rev 92349)
@@ -0,0 +1,12 @@
+diff -Nura gnokii-0.6.31.orig/Docs/sample/gnokiirc 
gnokii-0.6.31/Docs/sample/gnokiirc
+--- gnokii-0.6.31.orig/Docs/sample/gnokiirc2011-12-02 15:53:04.0 
+0100
 gnokii-0.6.31/Docs/sample/gnokiirc 2012-02-18 12:49:26.957557504 +0100
+@@ -238,7 +238,7 @@
+ # In particular ensure that mgnokiidev is in this location, with
+ # permissions 4750, owned by root, group gnokii.  Ensure you
+ # are in the gnokii group and that the group exists...
+-bindir = /usr/local/sbin/
++bindir = /usr/sbin/
+ 
+ # Any entries in the following two sections will be set as environment
+ # variables when running the scripts.

Copied: gnokii/repos/community-staging-x86_64/PKGBUILD (from rev 92348, 
gnokii/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-06-04 06:33:02 UTC (rev 92349)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer:
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Roman Kyrylych ro...@archlinux.org
+# Contributor: Aurelien Foret orel...@chez.com
+
+pkgname=gnokii
+pkgver=0.6.31
+pkgrel=5
+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' 'mariadb')
+optdepends=('gtk2: xgnokii GUI'
+'libmariadbclient: smsd mysql backend'
+'postgresql-libs: smsd postgresql backend')
+backup=('etc/gnokiirc')
+options=('!libtool' '!makeflags')
+source=(http://www.gnokii.org/download/$pkgname/$pkgname-${pkgver}.tar.bz2;
+'gnokii.patch')
+md5sums=('d9627f4a1152d3ea7806df4532850d5f'
+ 'fd1c448114c2e0de8e05981030f0e69f')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  # FS#13249
+  sed -i 's|cellphone|phone|' xgnokii/xgnokii.desktop.in
+
+  patch -Np1 -i ${srcdir}/gnokii.patch
+
+  ./configure 

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

2013-05-13 Thread Jan Steffens
Date: Monday, May 13, 2013 @ 20:04:36
  Author: heftig
Revision: 90761

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

Added:
  gnokii/repos/community-i686/
  gnokii/repos/community-i686/PKGBUILD
(from rev 90760, gnokii/trunk/PKGBUILD)
  gnokii/repos/community-i686/gnokii.patch
(from rev 90760, gnokii/trunk/gnokii.patch)
  gnokii/repos/community-x86_64/
  gnokii/repos/community-x86_64/PKGBUILD
(from rev 90760, gnokii/trunk/PKGBUILD)
  gnokii/repos/community-x86_64/gnokii.patch
(from rev 90760, gnokii/trunk/gnokii.patch)

---+
 community-i686/PKGBUILD   |   46 
 community-i686/gnokii.patch   |   12 ++
 community-x86_64/PKGBUILD |   46 
 community-x86_64/gnokii.patch |   12 ++
 4 files changed, 116 insertions(+)

Copied: gnokii/repos/community-i686/PKGBUILD (from rev 90760, 
gnokii/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-05-13 18:04:36 UTC (rev 90761)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer:
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Roman Kyrylych ro...@archlinux.org
+# Contributor: Aurelien Foret orel...@chez.com
+
+pkgname=gnokii
+pkgver=0.6.31
+pkgrel=3
+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' 'libical')
+makedepends=('gtk2' 'libmariadbclient' 'postgresql-libs' 'intltool' 'mariadb')
+optdepends=('gtk2: xgnokii GUI'
+'libmariadbclient: smsd mysql backend'
+'postgresql-libs: smsd postgresql backend')
+backup=('etc/gnokiirc')
+options=('!libtool' '!makeflags')
+source=(http://www.gnokii.org/download/$pkgname/$pkgname-${pkgver}.tar.bz2;
+'gnokii.patch')
+md5sums=('d9627f4a1152d3ea7806df4532850d5f'
+ 'fd1c448114c2e0de8e05981030f0e69f')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  # FS#13249
+  sed -i 's|cellphone|phone|' xgnokii/xgnokii.desktop.in
+
+  patch -Np1 -i ${srcdir}/gnokii.patch
+
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--enable-security \
+--disable-unix98test
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  install -Dm644 Docs/sample/gnokiirc ${pkgdir}/etc/gnokiirc
+}

Copied: gnokii/repos/community-i686/gnokii.patch (from rev 90760, 
gnokii/trunk/gnokii.patch)
===
--- community-i686/gnokii.patch (rev 0)
+++ community-i686/gnokii.patch 2013-05-13 18:04:36 UTC (rev 90761)
@@ -0,0 +1,12 @@
+diff -Nura gnokii-0.6.31.orig/Docs/sample/gnokiirc 
gnokii-0.6.31/Docs/sample/gnokiirc
+--- gnokii-0.6.31.orig/Docs/sample/gnokiirc2011-12-02 15:53:04.0 
+0100
 gnokii-0.6.31/Docs/sample/gnokiirc 2012-02-18 12:49:26.957557504 +0100
+@@ -238,7 +238,7 @@
+ # In particular ensure that mgnokiidev is in this location, with
+ # permissions 4750, owned by root, group gnokii.  Ensure you
+ # are in the gnokii group and that the group exists...
+-bindir = /usr/local/sbin/
++bindir = /usr/sbin/
+ 
+ # Any entries in the following two sections will be set as environment
+ # variables when running the scripts.

Copied: gnokii/repos/community-x86_64/PKGBUILD (from rev 90760, 
gnokii/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-05-13 18:04:36 UTC (rev 90761)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer:
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Roman Kyrylych ro...@archlinux.org
+# Contributor: Aurelien Foret orel...@chez.com
+
+pkgname=gnokii
+pkgver=0.6.31
+pkgrel=3
+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' 'libical')
+makedepends=('gtk2' 'libmariadbclient' 'postgresql-libs' 'intltool' 'mariadb')
+optdepends=('gtk2: xgnokii GUI'
+'libmariadbclient: smsd mysql backend'
+'postgresql-libs: smsd postgresql backend')
+backup=('etc/gnokiirc')
+options=('!libtool' '!makeflags')
+source=(http://www.gnokii.org/download/$pkgname/$pkgname-${pkgver}.tar.bz2;
+'gnokii.patch')
+md5sums=('d9627f4a1152d3ea7806df4532850d5f'
+ 'fd1c448114c2e0de8e05981030f0e69f')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  # FS#13249
+  sed -i 's|cellphone|phone|' xgnokii/xgnokii.desktop.in
+
+  patch -Np1 -i ${srcdir}/gnokii.patch
+
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--enable-security \
+--disable-unix98test
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} 

[arch-commits] Commit in (gnokii)

2013-05-13 Thread Jan Steffens
Date: Monday, May 13, 2013 @ 20:05:03
  Author: heftig
Revision: 185375

extra2community: Moving gnokii from extra to community

Deleted:
  gnokii/



[arch-commits] Commit in gnokii/trunk (PKGBUILD)

2013-05-13 Thread Andrea Scarpino
Date: Monday, May 13, 2013 @ 20:21:31
  Author: andrea
Revision: 90762

upgpkg: gnokii 0.6.31-4

libical rebuild; move binaries to /usr/bin

Modified:
  gnokii/trunk/PKGBUILD

--+
 PKGBUILD |7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-05-13 18:04:36 UTC (rev 90761)
+++ PKGBUILD2013-05-13 18:21:31 UTC (rev 90762)
@@ -6,7 +6,7 @@
 
 pkgname=gnokii
 pkgver=0.6.31
-pkgrel=3
+pkgrel=4
 pkgdesc=Tools and user space driver for use with mobile phones
 arch=('i686' 'x86_64')
 url=http://www.gnokii.org/;
@@ -24,7 +24,7 @@
  'fd1c448114c2e0de8e05981030f0e69f')
 
 build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
+  cd ${pkgname}-${pkgver}
 
   # FS#13249
   sed -i 's|cellphone|phone|' xgnokii/xgnokii.desktop.in
@@ -33,13 +33,14 @@
 
   ./configure --prefix=/usr \
 --sysconfdir=/etc \
+--sbindir=/usr/bin \
 --enable-security \
 --disable-unix98test
   make
 }
 
 package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
+  cd ${pkgname}-${pkgver}
   make DESTDIR=${pkgdir} install
 
   install -Dm644 Docs/sample/gnokiirc ${pkgdir}/etc/gnokiirc



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

2013-05-13 Thread Andrea Scarpino
Date: Monday, May 13, 2013 @ 20:21:39
  Author: andrea
Revision: 90763

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

Added:
  gnokii/repos/staging-i686/
  gnokii/repos/staging-i686/PKGBUILD
(from rev 90762, gnokii/trunk/PKGBUILD)
  gnokii/repos/staging-i686/gnokii.patch
(from rev 90762, gnokii/trunk/gnokii.patch)
  gnokii/repos/staging-x86_64/
  gnokii/repos/staging-x86_64/PKGBUILD
(from rev 90762, gnokii/trunk/PKGBUILD)
  gnokii/repos/staging-x86_64/gnokii.patch
(from rev 90762, gnokii/trunk/gnokii.patch)

-+
 staging-i686/PKGBUILD   |   47 ++
 staging-i686/gnokii.patch   |   12 ++
 staging-x86_64/PKGBUILD |   47 ++
 staging-x86_64/gnokii.patch |   12 ++
 4 files changed, 118 insertions(+)

Copied: gnokii/repos/staging-i686/PKGBUILD (from rev 90762, 
gnokii/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-05-13 18:21:39 UTC (rev 90763)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer:
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Roman Kyrylych ro...@archlinux.org
+# Contributor: Aurelien Foret orel...@chez.com
+
+pkgname=gnokii
+pkgver=0.6.31
+pkgrel=4
+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' 'libical')
+makedepends=('gtk2' 'libmariadbclient' 'postgresql-libs' 'intltool' 'mariadb')
+optdepends=('gtk2: xgnokii GUI'
+'libmariadbclient: smsd mysql backend'
+'postgresql-libs: smsd postgresql backend')
+backup=('etc/gnokiirc')
+options=('!libtool' '!makeflags')
+source=(http://www.gnokii.org/download/$pkgname/$pkgname-${pkgver}.tar.bz2;
+'gnokii.patch')
+md5sums=('d9627f4a1152d3ea7806df4532850d5f'
+ 'fd1c448114c2e0de8e05981030f0e69f')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  # FS#13249
+  sed -i 's|cellphone|phone|' xgnokii/xgnokii.desktop.in
+
+  patch -Np1 -i ${srcdir}/gnokii.patch
+
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--sbindir=/usr/bin \
+--enable-security \
+--disable-unix98test
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  install -Dm644 Docs/sample/gnokiirc ${pkgdir}/etc/gnokiirc
+}

Copied: gnokii/repos/staging-i686/gnokii.patch (from rev 90762, 
gnokii/trunk/gnokii.patch)
===
--- staging-i686/gnokii.patch   (rev 0)
+++ staging-i686/gnokii.patch   2013-05-13 18:21:39 UTC (rev 90763)
@@ -0,0 +1,12 @@
+diff -Nura gnokii-0.6.31.orig/Docs/sample/gnokiirc 
gnokii-0.6.31/Docs/sample/gnokiirc
+--- gnokii-0.6.31.orig/Docs/sample/gnokiirc2011-12-02 15:53:04.0 
+0100
 gnokii-0.6.31/Docs/sample/gnokiirc 2012-02-18 12:49:26.957557504 +0100
+@@ -238,7 +238,7 @@
+ # In particular ensure that mgnokiidev is in this location, with
+ # permissions 4750, owned by root, group gnokii.  Ensure you
+ # are in the gnokii group and that the group exists...
+-bindir = /usr/local/sbin/
++bindir = /usr/sbin/
+ 
+ # Any entries in the following two sections will be set as environment
+ # variables when running the scripts.

Copied: gnokii/repos/staging-x86_64/PKGBUILD (from rev 90762, 
gnokii/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2013-05-13 18:21:39 UTC (rev 90763)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer:
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Roman Kyrylych ro...@archlinux.org
+# Contributor: Aurelien Foret orel...@chez.com
+
+pkgname=gnokii
+pkgver=0.6.31
+pkgrel=4
+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' 'libical')
+makedepends=('gtk2' 'libmariadbclient' 'postgresql-libs' 'intltool' 'mariadb')
+optdepends=('gtk2: xgnokii GUI'
+'libmariadbclient: smsd mysql backend'
+'postgresql-libs: smsd postgresql backend')
+backup=('etc/gnokiirc')
+options=('!libtool' '!makeflags')
+source=(http://www.gnokii.org/download/$pkgname/$pkgname-${pkgver}.tar.bz2;
+'gnokii.patch')
+md5sums=('d9627f4a1152d3ea7806df4532850d5f'
+ 'fd1c448114c2e0de8e05981030f0e69f')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  # FS#13249
+  sed -i 's|cellphone|phone|' xgnokii/xgnokii.desktop.in
+
+  patch -Np1 -i ${srcdir}/gnokii.patch
+
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--sbindir=/usr/bin \
+--enable-security \
+--disable-unix98test
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  

[arch-commits] Commit in gnokii/repos (staging-i686 staging-x86_64)

2013-05-13 Thread Andrea Scarpino
Date: Monday, May 13, 2013 @ 20:23:08
  Author: andrea
Revision: 90764

cleanup

Deleted:
  gnokii/repos/staging-i686/
  gnokii/repos/staging-x86_64/



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

2013-05-13 Thread Andrea Scarpino
Date: Monday, May 13, 2013 @ 20:23:21
  Author: andrea
Revision: 90765

archrelease: copy trunk to community-staging-x86_64

Added:
  gnokii/repos/community-staging-x86_64/
  gnokii/repos/community-staging-x86_64/PKGBUILD
(from rev 90764, gnokii/trunk/PKGBUILD)
  gnokii/repos/community-staging-x86_64/gnokii.patch
(from rev 90764, gnokii/trunk/gnokii.patch)

--+
 PKGBUILD |   47 +++
 gnokii.patch |   12 
 2 files changed, 59 insertions(+)

Copied: gnokii/repos/community-staging-x86_64/PKGBUILD (from rev 90764, 
gnokii/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-05-13 18:23:21 UTC (rev 90765)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer:
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Roman Kyrylych ro...@archlinux.org
+# Contributor: Aurelien Foret orel...@chez.com
+
+pkgname=gnokii
+pkgver=0.6.31
+pkgrel=4
+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' 'libical')
+makedepends=('gtk2' 'libmariadbclient' 'postgresql-libs' 'intltool' 'mariadb')
+optdepends=('gtk2: xgnokii GUI'
+'libmariadbclient: smsd mysql backend'
+'postgresql-libs: smsd postgresql backend')
+backup=('etc/gnokiirc')
+options=('!libtool' '!makeflags')
+source=(http://www.gnokii.org/download/$pkgname/$pkgname-${pkgver}.tar.bz2;
+'gnokii.patch')
+md5sums=('d9627f4a1152d3ea7806df4532850d5f'
+ 'fd1c448114c2e0de8e05981030f0e69f')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  # FS#13249
+  sed -i 's|cellphone|phone|' xgnokii/xgnokii.desktop.in
+
+  patch -Np1 -i ${srcdir}/gnokii.patch
+
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--sbindir=/usr/bin \
+--enable-security \
+--disable-unix98test
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  install -Dm644 Docs/sample/gnokiirc ${pkgdir}/etc/gnokiirc
+}

Copied: gnokii/repos/community-staging-x86_64/gnokii.patch (from rev 90764, 
gnokii/trunk/gnokii.patch)
===
--- community-staging-x86_64/gnokii.patch   (rev 0)
+++ community-staging-x86_64/gnokii.patch   2013-05-13 18:23:21 UTC (rev 
90765)
@@ -0,0 +1,12 @@
+diff -Nura gnokii-0.6.31.orig/Docs/sample/gnokiirc 
gnokii-0.6.31/Docs/sample/gnokiirc
+--- gnokii-0.6.31.orig/Docs/sample/gnokiirc2011-12-02 15:53:04.0 
+0100
 gnokii-0.6.31/Docs/sample/gnokiirc 2012-02-18 12:49:26.957557504 +0100
+@@ -238,7 +238,7 @@
+ # In particular ensure that mgnokiidev is in this location, with
+ # permissions 4750, owned by root, group gnokii.  Ensure you
+ # are in the gnokii group and that the group exists...
+-bindir = /usr/local/sbin/
++bindir = /usr/sbin/
+ 
+ # Any entries in the following two sections will be set as environment
+ # variables when running the scripts.



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

2013-05-13 Thread Andrea Scarpino
Date: Monday, May 13, 2013 @ 20:23:28
  Author: andrea
Revision: 90766

archrelease: copy trunk to community-staging-i686

Added:
  gnokii/repos/community-staging-i686/
  gnokii/repos/community-staging-i686/PKGBUILD
(from rev 90765, gnokii/trunk/PKGBUILD)
  gnokii/repos/community-staging-i686/gnokii.patch
(from rev 90765, gnokii/trunk/gnokii.patch)

--+
 PKGBUILD |   47 +++
 gnokii.patch |   12 
 2 files changed, 59 insertions(+)

Copied: gnokii/repos/community-staging-i686/PKGBUILD (from rev 90765, 
gnokii/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-05-13 18:23:28 UTC (rev 90766)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer:
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Roman Kyrylych ro...@archlinux.org
+# Contributor: Aurelien Foret orel...@chez.com
+
+pkgname=gnokii
+pkgver=0.6.31
+pkgrel=4
+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' 'libical')
+makedepends=('gtk2' 'libmariadbclient' 'postgresql-libs' 'intltool' 'mariadb')
+optdepends=('gtk2: xgnokii GUI'
+'libmariadbclient: smsd mysql backend'
+'postgresql-libs: smsd postgresql backend')
+backup=('etc/gnokiirc')
+options=('!libtool' '!makeflags')
+source=(http://www.gnokii.org/download/$pkgname/$pkgname-${pkgver}.tar.bz2;
+'gnokii.patch')
+md5sums=('d9627f4a1152d3ea7806df4532850d5f'
+ 'fd1c448114c2e0de8e05981030f0e69f')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  # FS#13249
+  sed -i 's|cellphone|phone|' xgnokii/xgnokii.desktop.in
+
+  patch -Np1 -i ${srcdir}/gnokii.patch
+
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--sbindir=/usr/bin \
+--enable-security \
+--disable-unix98test
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  install -Dm644 Docs/sample/gnokiirc ${pkgdir}/etc/gnokiirc
+}

Copied: gnokii/repos/community-staging-i686/gnokii.patch (from rev 90765, 
gnokii/trunk/gnokii.patch)
===
--- community-staging-i686/gnokii.patch (rev 0)
+++ community-staging-i686/gnokii.patch 2013-05-13 18:23:28 UTC (rev 90766)
@@ -0,0 +1,12 @@
+diff -Nura gnokii-0.6.31.orig/Docs/sample/gnokiirc 
gnokii-0.6.31/Docs/sample/gnokiirc
+--- gnokii-0.6.31.orig/Docs/sample/gnokiirc2011-12-02 15:53:04.0 
+0100
 gnokii-0.6.31/Docs/sample/gnokiirc 2012-02-18 12:49:26.957557504 +0100
+@@ -238,7 +238,7 @@
+ # In particular ensure that mgnokiidev is in this location, with
+ # permissions 4750, owned by root, group gnokii.  Ensure you
+ # are in the gnokii group and that the group exists...
+-bindir = /usr/local/sbin/
++bindir = /usr/sbin/
+ 
+ # Any entries in the following two sections will be set as environment
+ # variables when running the scripts.



[arch-commits] Commit in gnokii/trunk (PKGBUILD)

2013-03-05 Thread Bartłomiej Piotrowski
Date: Wednesday, March 6, 2013 @ 06:02:53
  Author: bpiotrowski
Revision: 179529

upgpkg: gnokii 0.6.31-3

Modified:
  gnokii/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-03-06 04:37:19 UTC (rev 179528)
+++ PKGBUILD2013-03-06 05:02:53 UTC (rev 179529)
@@ -6,15 +6,15 @@
 
 pkgname=gnokii
 pkgver=0.6.31
-pkgrel=2
+pkgrel=3
 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' 'libical')
-makedepends=('gtk2' 'libmariadbclient' 'postgresql-libs' 'intltool')
+makedepends=('gtk2' 'libmariadbclient' 'postgresql-libs' 'intltool' 'mariadb')
 optdepends=('gtk2: xgnokii GUI'
-'libmysqlclient: smsd mysql backend'
+'libmariadbclient: smsd mysql backend'
 'postgresql-libs: smsd postgresql backend')
 backup=('etc/gnokiirc')
 options=('!libtool' '!makeflags')



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

2013-03-05 Thread Bartłomiej Piotrowski
Date: Wednesday, March 6, 2013 @ 06:07:37
  Author: bpiotrowski
Revision: 179530

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

Added:
  gnokii/repos/staging-i686/PKGBUILD
(from rev 179529, gnokii/trunk/PKGBUILD)
  gnokii/repos/staging-i686/gnokii.patch
(from rev 179529, gnokii/trunk/gnokii.patch)
  gnokii/repos/staging-x86_64/PKGBUILD
(from rev 179529, gnokii/trunk/PKGBUILD)
  gnokii/repos/staging-x86_64/gnokii.patch
(from rev 179529, gnokii/trunk/gnokii.patch)
Deleted:
  gnokii/repos/staging-i686/PKGBUILD
  gnokii/repos/staging-i686/gnokii.patch
  gnokii/repos/staging-x86_64/PKGBUILD
  gnokii/repos/staging-x86_64/gnokii.patch

-+
 staging-i686/PKGBUILD   |   92 +-
 staging-i686/gnokii.patch   |   24 +-
 staging-x86_64/PKGBUILD |   92 +-
 staging-x86_64/gnokii.patch |   24 +-
 4 files changed, 116 insertions(+), 116 deletions(-)

Deleted: staging-i686/PKGBUILD
===
--- staging-i686/PKGBUILD   2013-03-06 05:02:53 UTC (rev 179529)
+++ staging-i686/PKGBUILD   2013-03-06 05:07:37 UTC (rev 179530)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Roman Kyrylych ro...@archlinux.org
-# Contributor: Aurelien Foret orel...@chez.com
-
-pkgname=gnokii
-pkgver=0.6.31
-pkgrel=2
-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' 'libical')
-makedepends=('gtk2' 'libmariadbclient' 'postgresql-libs' 'intltool')
-optdepends=('gtk2: xgnokii GUI'
-'libmysqlclient: smsd mysql backend'
-'postgresql-libs: smsd postgresql backend')
-backup=('etc/gnokiirc')
-options=('!libtool' '!makeflags')
-source=(http://www.gnokii.org/download/$pkgname/$pkgname-${pkgver}.tar.bz2;
-'gnokii.patch')
-md5sums=('d9627f4a1152d3ea7806df4532850d5f'
- 'fd1c448114c2e0de8e05981030f0e69f')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  # FS#13249
-  sed -i 's|cellphone|phone|' xgnokii/xgnokii.desktop.in
-
-  patch -Np1 -i ${srcdir}/gnokii.patch
-
-  ./configure --prefix=/usr \
---sysconfdir=/etc \
---enable-security \
---disable-unix98test
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-
-  install -Dm644 Docs/sample/gnokiirc ${pkgdir}/etc/gnokiirc
-}

Copied: gnokii/repos/staging-i686/PKGBUILD (from rev 179529, 
gnokii/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-03-06 05:07:37 UTC (rev 179530)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer:
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Roman Kyrylych ro...@archlinux.org
+# Contributor: Aurelien Foret orel...@chez.com
+
+pkgname=gnokii
+pkgver=0.6.31
+pkgrel=3
+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' 'libical')
+makedepends=('gtk2' 'libmariadbclient' 'postgresql-libs' 'intltool' 'mariadb')
+optdepends=('gtk2: xgnokii GUI'
+'libmariadbclient: smsd mysql backend'
+'postgresql-libs: smsd postgresql backend')
+backup=('etc/gnokiirc')
+options=('!libtool' '!makeflags')
+source=(http://www.gnokii.org/download/$pkgname/$pkgname-${pkgver}.tar.bz2;
+'gnokii.patch')
+md5sums=('d9627f4a1152d3ea7806df4532850d5f'
+ 'fd1c448114c2e0de8e05981030f0e69f')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  # FS#13249
+  sed -i 's|cellphone|phone|' xgnokii/xgnokii.desktop.in
+
+  patch -Np1 -i ${srcdir}/gnokii.patch
+
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--enable-security \
+--disable-unix98test
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  install -Dm644 Docs/sample/gnokiirc ${pkgdir}/etc/gnokiirc
+}

Deleted: staging-i686/gnokii.patch
===
--- staging-i686/gnokii.patch   2013-03-06 05:02:53 UTC (rev 179529)
+++ staging-i686/gnokii.patch   2013-03-06 05:07:37 UTC (rev 179530)
@@ -1,12 +0,0 @@
-diff -Nura gnokii-0.6.31.orig/Docs/sample/gnokiirc 
gnokii-0.6.31/Docs/sample/gnokiirc
 gnokii-0.6.31.orig/Docs/sample/gnokiirc2011-12-02 15:53:04.0 
+0100
-+++ gnokii-0.6.31/Docs/sample/gnokiirc 2012-02-18 12:49:26.957557504 +0100
-@@ -238,7 +238,7 @@
- # In particular ensure that mgnokiidev is in this location, with
- # permissions 4750, owned by root, group gnokii.  Ensure you
- # are in the gnokii group and that the group exists...
--bindir = /usr/local/sbin/
-+bindir = /usr/sbin/
- 
- # Any entries in the following two 

[arch-commits] Commit in gnokii/trunk (PKGBUILD)

2013-03-03 Thread Bartłomiej Piotrowski
Date: Sunday, March 3, 2013 @ 21:39:44
  Author: bpiotrowski
Revision: 179125

upgpkg: gnokii 0.6.31-2

Rebuild against libmariadbclient.

Modified:
  gnokii/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-03-03 20:34:54 UTC (rev 179124)
+++ PKGBUILD2013-03-03 20:39:44 UTC (rev 179125)
@@ -6,13 +6,13 @@
 
 pkgname=gnokii
 pkgver=0.6.31
-pkgrel=1
+pkgrel=2
 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' 'libical')
-makedepends=('gtk2' 'libmysqlclient' 'postgresql-libs' 'intltool')
+makedepends=('gtk2' 'libmariadbclient' 'postgresql-libs' 'intltool')
 optdepends=('gtk2: xgnokii GUI'
 'libmysqlclient: smsd mysql backend'
 'postgresql-libs: smsd postgresql backend')



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

2013-03-03 Thread Bartłomiej Piotrowski
Date: Sunday, March 3, 2013 @ 21:40:00
  Author: bpiotrowski
Revision: 179126

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

Added:
  gnokii/repos/staging-i686/
  gnokii/repos/staging-i686/PKGBUILD
(from rev 179125, gnokii/trunk/PKGBUILD)
  gnokii/repos/staging-i686/gnokii.patch
(from rev 179125, gnokii/trunk/gnokii.patch)
  gnokii/repos/staging-x86_64/
  gnokii/repos/staging-x86_64/PKGBUILD
(from rev 179125, gnokii/trunk/PKGBUILD)
  gnokii/repos/staging-x86_64/gnokii.patch
(from rev 179125, gnokii/trunk/gnokii.patch)

-+
 staging-i686/PKGBUILD   |   46 ++
 staging-i686/gnokii.patch   |   12 ++
 staging-x86_64/PKGBUILD |   46 ++
 staging-x86_64/gnokii.patch |   12 ++
 4 files changed, 116 insertions(+)

Copied: gnokii/repos/staging-i686/PKGBUILD (from rev 179125, 
gnokii/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-03-03 20:40:00 UTC (rev 179126)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer:
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Roman Kyrylych ro...@archlinux.org
+# Contributor: Aurelien Foret orel...@chez.com
+
+pkgname=gnokii
+pkgver=0.6.31
+pkgrel=2
+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' 'libical')
+makedepends=('gtk2' 'libmariadbclient' 'postgresql-libs' 'intltool')
+optdepends=('gtk2: xgnokii GUI'
+'libmysqlclient: smsd mysql backend'
+'postgresql-libs: smsd postgresql backend')
+backup=('etc/gnokiirc')
+options=('!libtool' '!makeflags')
+source=(http://www.gnokii.org/download/$pkgname/$pkgname-${pkgver}.tar.bz2;
+'gnokii.patch')
+md5sums=('d9627f4a1152d3ea7806df4532850d5f'
+ 'fd1c448114c2e0de8e05981030f0e69f')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  # FS#13249
+  sed -i 's|cellphone|phone|' xgnokii/xgnokii.desktop.in
+
+  patch -Np1 -i ${srcdir}/gnokii.patch
+
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--enable-security \
+--disable-unix98test
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  install -Dm644 Docs/sample/gnokiirc ${pkgdir}/etc/gnokiirc
+}

Copied: gnokii/repos/staging-i686/gnokii.patch (from rev 179125, 
gnokii/trunk/gnokii.patch)
===
--- staging-i686/gnokii.patch   (rev 0)
+++ staging-i686/gnokii.patch   2013-03-03 20:40:00 UTC (rev 179126)
@@ -0,0 +1,12 @@
+diff -Nura gnokii-0.6.31.orig/Docs/sample/gnokiirc 
gnokii-0.6.31/Docs/sample/gnokiirc
+--- gnokii-0.6.31.orig/Docs/sample/gnokiirc2011-12-02 15:53:04.0 
+0100
 gnokii-0.6.31/Docs/sample/gnokiirc 2012-02-18 12:49:26.957557504 +0100
+@@ -238,7 +238,7 @@
+ # In particular ensure that mgnokiidev is in this location, with
+ # permissions 4750, owned by root, group gnokii.  Ensure you
+ # are in the gnokii group and that the group exists...
+-bindir = /usr/local/sbin/
++bindir = /usr/sbin/
+ 
+ # Any entries in the following two sections will be set as environment
+ # variables when running the scripts.

Copied: gnokii/repos/staging-x86_64/PKGBUILD (from rev 179125, 
gnokii/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2013-03-03 20:40:00 UTC (rev 179126)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer:
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Roman Kyrylych ro...@archlinux.org
+# Contributor: Aurelien Foret orel...@chez.com
+
+pkgname=gnokii
+pkgver=0.6.31
+pkgrel=2
+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' 'libical')
+makedepends=('gtk2' 'libmariadbclient' 'postgresql-libs' 'intltool')
+optdepends=('gtk2: xgnokii GUI'
+'libmysqlclient: smsd mysql backend'
+'postgresql-libs: smsd postgresql backend')
+backup=('etc/gnokiirc')
+options=('!libtool' '!makeflags')
+source=(http://www.gnokii.org/download/$pkgname/$pkgname-${pkgver}.tar.bz2;
+'gnokii.patch')
+md5sums=('d9627f4a1152d3ea7806df4532850d5f'
+ 'fd1c448114c2e0de8e05981030f0e69f')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  # FS#13249
+  sed -i 's|cellphone|phone|' xgnokii/xgnokii.desktop.in
+
+  patch -Np1 -i ${srcdir}/gnokii.patch
+
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--enable-security \
+--disable-unix98test
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  install -Dm644 

[arch-commits] Commit in gnokii/trunk (PKGBUILD gnokii.patch)

2012-02-18 Thread Pierre Schmitz
Date: Saturday, February 18, 2012 @ 06:54:22
  Author: pierre
Revision: 150511

upgpkg: gnokii 0.6.31-1

upstream update

Modified:
  gnokii/trunk/PKGBUILD
  gnokii/trunk/gnokii.patch

--+
 PKGBUILD |   12 ++--
 gnokii.patch |   10 +-
 2 files changed, 11 insertions(+), 11 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-02-18 11:51:33 UTC (rev 150510)
+++ PKGBUILD2012-02-18 11:54:22 UTC (rev 150511)
@@ -5,8 +5,8 @@
 # Contributor: Aurelien Foret orel...@chez.com
 
 pkgname=gnokii
-pkgver=0.6.30
-pkgrel=2
+pkgver=0.6.31
+pkgrel=1
 pkgdesc=Tools and user space driver for use with mobile phones
 arch=('i686' 'x86_64')
 url=http://www.gnokii.org/;
@@ -15,13 +15,13 @@
 makedepends=('gtk2' 'libmysqlclient' 'postgresql-libs' 'intltool')
 optdepends=('gtk2: xgnokii GUI'
 'libmysqlclient: smsd mysql backend'
-   'postgresql-libs: smsd postgresql backend')
+'postgresql-libs: smsd postgresql backend')
 backup=('etc/gnokiirc')
 options=('!libtool' '!makeflags')
 source=(http://www.gnokii.org/download/$pkgname/$pkgname-${pkgver}.tar.bz2;
-   'gnokii.patch')
-md5sums=('c90137d403febbc16712d64f0eb196de'
- '4d764727686ee34bc73489c8b1321c82')
+'gnokii.patch')
+md5sums=('d9627f4a1152d3ea7806df4532850d5f'
+ 'fd1c448114c2e0de8e05981030f0e69f')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}

Modified: gnokii.patch
===
--- gnokii.patch2012-02-18 11:51:33 UTC (rev 150510)
+++ gnokii.patch2012-02-18 11:54:22 UTC (rev 150511)
@@ -1,10 +1,10 @@
-diff -ur gnokii-0.6.7-old/Docs/sample/gnokiirc 
gnokii-0.6.7/Docs/sample/gnokiirc
 gnokii-0.6.7-old/Docs/sample/gnokiirc  2005-05-16 20:55:13.0 
+0200
-+++ gnokii-0.6.7/Docs/sample/gnokiirc  2005-06-03 10:49:42.0 +0200
-@@ -112,7 +112,7 @@
+diff -Nura gnokii-0.6.31.orig/Docs/sample/gnokiirc 
gnokii-0.6.31/Docs/sample/gnokiirc
+--- gnokii-0.6.31.orig/Docs/sample/gnokiirc2011-12-02 15:53:04.0 
+0100
 gnokii-0.6.31/Docs/sample/gnokiirc 2012-02-18 12:49:26.957557504 +0100
+@@ -238,7 +238,7 @@
+ # In particular ensure that mgnokiidev is in this location, with
  # permissions 4750, owned by root, group gnokii.  Ensure you
  # are in the gnokii group and that the group exists...
- [gnokiid]
 -bindir = /usr/local/sbin/
 +bindir = /usr/sbin/
  



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

2012-02-18 Thread Pierre Schmitz
Date: Saturday, February 18, 2012 @ 06:55:01
  Author: pierre
Revision: 150512

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

Added:
  gnokii/repos/extra-i686/PKGBUILD
(from rev 150511, gnokii/trunk/PKGBUILD)
  gnokii/repos/extra-i686/gnokii.patch
(from rev 150511, gnokii/trunk/gnokii.patch)
  gnokii/repos/extra-x86_64/PKGBUILD
(from rev 150511, gnokii/trunk/PKGBUILD)
  gnokii/repos/extra-x86_64/gnokii.patch
(from rev 150511, gnokii/trunk/gnokii.patch)
Deleted:
  gnokii/repos/extra-i686/PKGBUILD
  gnokii/repos/extra-i686/gnokii.patch
  gnokii/repos/extra-x86_64/PKGBUILD
  gnokii/repos/extra-x86_64/gnokii.patch

---+
 extra-i686/PKGBUILD   |   92 ++--
 extra-i686/gnokii.patch   |   24 +--
 extra-x86_64/PKGBUILD |   92 ++--
 extra-x86_64/gnokii.patch |   24 +--
 4 files changed, 116 insertions(+), 116 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-02-18 11:54:22 UTC (rev 150511)
+++ extra-i686/PKGBUILD 2012-02-18 11:55:01 UTC (rev 150512)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Roman Kyrylych ro...@archlinux.org
-# Contributor: Aurelien Foret orel...@chez.com
-
-pkgname=gnokii
-pkgver=0.6.30
-pkgrel=2
-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' 'libical')
-makedepends=('gtk2' 'libmysqlclient' 'postgresql-libs' 'intltool')
-optdepends=('gtk2: xgnokii GUI'
-'libmysqlclient: smsd mysql backend'
-   'postgresql-libs: smsd postgresql backend')
-backup=('etc/gnokiirc')
-options=('!libtool' '!makeflags')
-source=(http://www.gnokii.org/download/$pkgname/$pkgname-${pkgver}.tar.bz2;
-   'gnokii.patch')
-md5sums=('c90137d403febbc16712d64f0eb196de'
- '4d764727686ee34bc73489c8b1321c82')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  # FS#13249
-  sed -i 's|cellphone|phone|' xgnokii/xgnokii.desktop.in
-
-  patch -Np1 -i ${srcdir}/gnokii.patch
-
-  ./configure --prefix=/usr \
---sysconfdir=/etc \
---enable-security \
---disable-unix98test
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-
-  install -Dm644 Docs/sample/gnokiirc ${pkgdir}/etc/gnokiirc
-}

Copied: gnokii/repos/extra-i686/PKGBUILD (from rev 150511, 
gnokii/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-02-18 11:55:01 UTC (rev 150512)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer:
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Roman Kyrylych ro...@archlinux.org
+# Contributor: Aurelien Foret orel...@chez.com
+
+pkgname=gnokii
+pkgver=0.6.31
+pkgrel=1
+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' 'libical')
+makedepends=('gtk2' 'libmysqlclient' 'postgresql-libs' 'intltool')
+optdepends=('gtk2: xgnokii GUI'
+'libmysqlclient: smsd mysql backend'
+'postgresql-libs: smsd postgresql backend')
+backup=('etc/gnokiirc')
+options=('!libtool' '!makeflags')
+source=(http://www.gnokii.org/download/$pkgname/$pkgname-${pkgver}.tar.bz2;
+'gnokii.patch')
+md5sums=('d9627f4a1152d3ea7806df4532850d5f'
+ 'fd1c448114c2e0de8e05981030f0e69f')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  # FS#13249
+  sed -i 's|cellphone|phone|' xgnokii/xgnokii.desktop.in
+
+  patch -Np1 -i ${srcdir}/gnokii.patch
+
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--enable-security \
+--disable-unix98test
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  install -Dm644 Docs/sample/gnokiirc ${pkgdir}/etc/gnokiirc
+}

Deleted: extra-i686/gnokii.patch
===
--- extra-i686/gnokii.patch 2012-02-18 11:54:22 UTC (rev 150511)
+++ extra-i686/gnokii.patch 2012-02-18 11:55:01 UTC (rev 150512)
@@ -1,12 +0,0 @@
-diff -ur gnokii-0.6.7-old/Docs/sample/gnokiirc 
gnokii-0.6.7/Docs/sample/gnokiirc
 gnokii-0.6.7-old/Docs/sample/gnokiirc  2005-05-16 20:55:13.0 
+0200
-+++ gnokii-0.6.7/Docs/sample/gnokiirc  2005-06-03 10:49:42.0 +0200
-@@ -112,7 +112,7 @@
- # permissions 4750, owned by root, group gnokii.  Ensure you
- # are in the gnokii group and that the group exists...
- [gnokiid]
--bindir = /usr/local/sbin/
-+bindir = /usr/sbin/
- 
- # Any entries in the following two sections will be set as environment
- # variables when running the scripts.

Copied: gnokii/repos/extra-i686/gnokii.patch (from rev 

[arch-commits] Commit in gnokii/trunk (PKGBUILD)

2011-04-11 Thread Andrea Scarpino
Date: Monday, April 11, 2011 @ 15:26:23
  Author: andrea
Revision: 119495

upgpkg: gnokii 0.6.30-2
remove postgresql-libs from depends array (FS#23688)

Modified:
  gnokii/trunk/PKGBUILD

--+
 PKGBUILD |   15 ---
 1 file changed, 8 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-04-11 18:49:53 UTC (rev 119494)
+++ PKGBUILD2011-04-11 19:26:23 UTC (rev 119495)
@@ -1,24 +1,25 @@
 # $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
+# Maintainer:
+# Contributor: Andrea Scarpino and...@archlinux.org
 # Contributor: Roman Kyrylych ro...@archlinux.org
 # Contributor: Aurelien Foret orel...@chez.com
 
 pkgname=gnokii
 pkgver=0.6.30
-pkgrel=1
+pkgrel=2
 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' 'libical' 'postgresql-libs')
-makedepends=('gtk2' 'libmysqlclient' 'intltool')
+depends=('libusb-compat' 'libxpm' 'bluez' 'libical')
+makedepends=('gtk2' 'libmysqlclient' 'postgresql-libs' 'intltool')
 optdepends=('gtk2: xgnokii GUI'
 'libmysqlclient: smsd mysql backend'
-   'postgresql-libs: smsd postgresql backend')
+   'postgresql-libs: smsd postgresql backend')
 backup=('etc/gnokiirc')
 options=('!libtool' '!makeflags')
-source=(http://www.gnokii.org/download/$pkgname/$pkgname-${pkgver}.tar.bz2
-   'gnokii.patch')
+source=(http://www.gnokii.org/download/$pkgname/$pkgname-${pkgver}.tar.bz2;
+   'gnokii.patch')
 md5sums=('c90137d403febbc16712d64f0eb196de'
  '4d764727686ee34bc73489c8b1321c82')
 



[arch-commits] Commit in gnokii/repos (extra-i686)

2011-04-11 Thread Andrea Scarpino
Date: Monday, April 11, 2011 @ 15:26:26
  Author: andrea
Revision: 119496

archrelease: remove extra-i686

Deleted:
  gnokii/repos/extra-i686/



[arch-commits] Commit in gnokii/repos (extra-i686)

2011-04-11 Thread Andrea Scarpino
Date: Monday, April 11, 2011 @ 15:26:40
  Author: andrea
Revision: 119497

archrelease: copy trunk to extra-i686

Added:
  gnokii/repos/extra-i686/



[arch-commits] Commit in gnokii/repos (extra-x86_64)

2011-04-11 Thread Andrea Scarpino
Date: Monday, April 11, 2011 @ 15:26:43
  Author: andrea
Revision: 119498

archrelease: remove extra-x86_64

Deleted:
  gnokii/repos/extra-x86_64/



[arch-commits] Commit in gnokii/repos (extra-x86_64)

2011-04-11 Thread Andrea Scarpino
Date: Monday, April 11, 2011 @ 15:26:56
  Author: andrea
Revision: 119499

archrelease: copy trunk to extra-x86_64

Added:
  gnokii/repos/extra-x86_64/



[arch-commits] Commit in gnokii/repos (extra-i686)

2011-03-24 Thread Andrea Scarpino
Date: Thursday, March 24, 2011 @ 06:27:16
  Author: andrea
Revision: 116519

db-move: gnokii removed by andrea for move to [extra] (i686)

Deleted:
  gnokii/repos/extra-i686/



[arch-commits] Commit in gnokii/repos (extra-i686 testing-i686)

2011-03-24 Thread Andrea Scarpino
Date: Thursday, March 24, 2011 @ 06:27:17
  Author: andrea
Revision: 116520

db-move: moved gnokii from [testing] to [extra] (i686)

Added:
  gnokii/repos/extra-i686/
Deleted:
  gnokii/repos/testing-i686/



[arch-commits] Commit in gnokii/repos (extra-x86_64)

2011-03-24 Thread Andrea Scarpino
Date: Thursday, March 24, 2011 @ 06:27:18
  Author: andrea
Revision: 116521

db-move: gnokii removed by andrea for move to [extra] (x86_64)

Deleted:
  gnokii/repos/extra-x86_64/



[arch-commits] Commit in gnokii/repos (extra-x86_64 testing-x86_64)

2011-03-24 Thread Andrea Scarpino
Date: Thursday, March 24, 2011 @ 06:27:18
  Author: andrea
Revision: 116522

db-move: moved gnokii from [testing] to [extra] (x86_64)

Added:
  gnokii/repos/extra-x86_64/
Deleted:
  gnokii/repos/testing-x86_64/



[arch-commits] Commit in gnokii/repos (staging-i686 testing-i686)

2011-03-17 Thread Andrea Scarpino
Date: Thursday, March 17, 2011 @ 08:38:12
  Author: andrea
Revision: 115236

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

Added:
  gnokii/repos/testing-i686/
Deleted:
  gnokii/repos/staging-i686/



[arch-commits] Commit in gnokii/repos (staging-x86_64 testing-x86_64)

2011-03-17 Thread Andrea Scarpino
Date: Thursday, March 17, 2011 @ 08:38:13
  Author: andrea
Revision: 115237

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

Added:
  gnokii/repos/testing-x86_64/
Deleted:
  gnokii/repos/staging-x86_64/



[arch-commits] Commit in gnokii/repos (extra-i686 testing-i686)

2011-02-07 Thread Angel Velásquez
Date: Monday, February 7, 2011 @ 09:11:15
  Author: angvp
Revision: 109196

db-move: moved gnokii from [testing] to [extra] (i686)

Added:
  gnokii/repos/extra-i686/
Deleted:
  gnokii/repos/testing-i686/



[arch-commits] Commit in gnokii/repos (extra-x86_64)

2011-02-07 Thread Angel Velásquez
Date: Monday, February 7, 2011 @ 09:11:16
  Author: angvp
Revision: 109197

db-move: gnokii removed by angvp for move to [extra] (x86_64)

Deleted:
  gnokii/repos/extra-x86_64/



[arch-commits] Commit in gnokii/repos (extra-i686)

2011-02-07 Thread Angel Velásquez
Date: Monday, February 7, 2011 @ 09:11:14
  Author: angvp
Revision: 109195

db-move: gnokii removed by angvp for move to [extra] (i686)

Deleted:
  gnokii/repos/extra-i686/



[arch-commits] Commit in gnokii/repos (extra-x86_64 testing-x86_64)

2011-02-07 Thread Angel Velásquez
Date: Monday, February 7, 2011 @ 09:11:16
  Author: angvp
Revision: 109198

db-move: moved gnokii from [testing] to [extra] (x86_64)

Added:
  gnokii/repos/extra-x86_64/
Deleted:
  gnokii/repos/testing-x86_64/



[arch-commits] Commit in gnokii/trunk (PKGBUILD)

2011-01-30 Thread andyrtr
Date: Sunday, January 30, 2011 @ 17:17:42
  Author: andyrtr
Revision: 108394

upgpkg: gnokii 0.6.29-3
MySQL rebuild

Modified:
  gnokii/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-01-30 22:14:51 UTC (rev 108393)
+++ PKGBUILD2011-01-30 22:17:42 UTC (rev 108394)
@@ -5,7 +5,7 @@
 
 pkgname=gnokii
 pkgver=0.6.29
-pkgrel=2
+pkgrel=3
 pkgdesc=Tools and user space driver for use with mobile phones
 arch=('i686' 'x86_64')
 url=http://www.gnokii.org/;
@@ -17,7 +17,7 @@
'postgresql-libs: smsd postgresql backend')
 backup=('etc/gnokiirc')
 options=('!libtool' '!makeflags')
-source=(http://www.gnokii.org/download/$pkgname/$pkgname-${pkgver}.tar.bz2
+source=(http://www.gnokii.org/download/gnokii/0.6.x/$pkgname-${pkgver}.tar.bz2
'gnokii.patch')
 md5sums=('6111e0158a1129062bda6420db67c313'
  '4d764727686ee34bc73489c8b1321c82')



[arch-commits] Commit in gnokii/repos (testing-i686)

2011-01-30 Thread andyrtr
Date: Sunday, January 30, 2011 @ 17:18:11
  Author: andyrtr
Revision: 108395

archrelease: copy trunk to testing-i686

Added:
  gnokii/repos/testing-i686/



[arch-commits] Commit in gnokii/repos (testing-x86_64)

2011-01-30 Thread andyrtr
Date: Sunday, January 30, 2011 @ 17:18:39
  Author: andyrtr
Revision: 108396

archrelease: copy trunk to testing-x86_64

Added:
  gnokii/repos/testing-x86_64/



[arch-commits] Commit in gnokii/repos (extra-i686 testing-i686)

2010-12-07 Thread Ionut Biru
Date: Tuesday, December 7, 2010 @ 17:05:19
  Author: ibiru
Revision: 102526

db-move: moved gnokii from [testing] to [extra] (i686)

Added:
  gnokii/repos/extra-i686/
Deleted:
  gnokii/repos/testing-i686/



[arch-commits] Commit in gnokii/repos (extra-x86_64)

2010-12-07 Thread Ionut Biru
Date: Tuesday, December 7, 2010 @ 17:05:21
  Author: ibiru
Revision: 102527

db-move: gnokii removed by ibiru for move to [extra] (x86_64)

Deleted:
  gnokii/repos/extra-x86_64/



[arch-commits] Commit in gnokii/repos (extra-x86_64 testing-x86_64)

2010-12-07 Thread Ionut Biru
Date: Tuesday, December 7, 2010 @ 17:05:24
  Author: ibiru
Revision: 102528

db-move: moved gnokii from [testing] to [extra] (x86_64)

Added:
  gnokii/repos/extra-x86_64/
Deleted:
  gnokii/repos/testing-x86_64/



[arch-commits] Commit in gnokii/repos (staging-i686 testing-i686)

2010-11-29 Thread Allan McRae
Date: Monday, November 29, 2010 @ 06:42:17
  Author: allan
Revision: 101501

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

Added:
  gnokii/repos/testing-i686/
Deleted:
  gnokii/repos/staging-i686/



[arch-commits] Commit in gnokii/repos (staging-x86_64 testing-x86_64)

2010-11-29 Thread Allan McRae
Date: Monday, November 29, 2010 @ 06:42:21
  Author: allan
Revision: 101502

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

Added:
  gnokii/repos/testing-x86_64/
Deleted:
  gnokii/repos/staging-x86_64/



[arch-commits] Commit in gnokii/trunk (PKGBUILD)

2010-11-28 Thread Tobias Powalowski
Date: Sunday, November 28, 2010 @ 18:05:23
  Author: tpowa
Revision: 101331

upgpkg: gnokii 0.6.29-2
rebuild against libusb

Modified:
  gnokii/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-11-28 22:54:22 UTC (rev 101330)
+++ PKGBUILD2010-11-28 23:05:23 UTC (rev 101331)
@@ -5,12 +5,12 @@
 
 pkgname=gnokii
 pkgver=0.6.29
-pkgrel=1
+pkgrel=2
 pkgdesc=Tools and user space driver for use with mobile phones
 arch=('i686' 'x86_64')
 url=http://www.gnokii.org/;
 license=('GPL')
-depends=('libusb' 'libxpm' 'bluez' 'libical' 'postgresql-libs')
+depends=('libusb-compat' 'libxpm' 'bluez' 'libical' 'postgresql-libs')
 makedepends=('gtk2' 'libmysqlclient' 'intltool')
 optdepends=('gtk2: xgnokii GUI'
 'libmysqlclient: smsd mysql backend'



[arch-commits] Commit in gnokii/repos (staging-i686)

2010-11-28 Thread Tobias Powalowski
Date: Sunday, November 28, 2010 @ 18:05:47
  Author: tpowa
Revision: 101332

archrelease: copy trunk to staging-i686

Added:
  gnokii/repos/staging-i686/



[arch-commits] Commit in gnokii/repos (staging-x86_64)

2010-11-28 Thread Tobias Powalowski
Date: Sunday, November 28, 2010 @ 18:06:11
  Author: tpowa
Revision: 101333

archrelease: copy trunk to staging-x86_64

Added:
  gnokii/repos/staging-x86_64/



[arch-commits] Commit in gnokii/trunk (PKGBUILD)

2010-06-20 Thread Andrea Scarpino
Date: Sunday, June 20, 2010 @ 12:51:19
  Author: andrea
Revision: 83010

upgpkg: gnokii 0.6.29-1
upstream release

Modified:
  gnokii/trunk/PKGBUILD

--+
 PKGBUILD |   26 +++---
 1 file changed, 15 insertions(+), 11 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-06-20 16:48:26 UTC (rev 83009)
+++ PKGBUILD2010-06-20 16:51:19 UTC (rev 83010)
@@ -4,14 +4,14 @@
 # Contributor: Aurelien Foret orel...@chez.com
 
 pkgname=gnokii
-pkgver=0.6.28.1
+pkgver=0.6.29
 pkgrel=1
 pkgdesc=Tools and user space driver for use with mobile phones
 arch=('i686' 'x86_64')
 url=http://www.gnokii.org/;
 license=('GPL')
-depends=('libusb' 'libxpm' 'bluez' 'libical' 'postgresql-libs=8.4.1')
-makedepends=('gtk2' 'libmysqlclient=5.1' 'perlxml' 'intltool')
+depends=('libusb' 'libxpm' 'bluez' 'libical' 'postgresql-libs')
+makedepends=('gtk2' 'libmysqlclient' 'perlxml' 'intltool')
 optdepends=('gtk2: xgnokii GUI'
 'libmysqlclient: smsd mysql backend'
'postgresql-libs: smsd postgresql backend')
@@ -19,23 +19,27 @@
 options=('!libtool' '!makeflags')
 source=(http://www.gnokii.org/download/$pkgname/$pkgname-${pkgver}.tar.bz2
'gnokii.patch')
-md5sums=('520d300f1838460d374410ea99ff9a11'
+md5sums=('6111e0158a1129062bda6420db67c313'
  '4d764727686ee34bc73489c8b1321c82')
 
 build() {
-  cd ${srcdir}/${pkgname}-0.6.28
+  cd ${srcdir}/${pkgname}-${pkgver}
 
   # FS#13249
-  sed -i 's|cellphone|phone|' xgnokii/xgnokii.desktop.in || return 1
+  sed -i 's|cellphone|phone|' xgnokii/xgnokii.desktop.in
 
-  patch -Np1 -i ${srcdir}/gnokii.patch || return 1
+  patch -Np1 -i ${srcdir}/gnokii.patch
 
   ./configure --prefix=/usr \
 --sysconfdir=/etc \
 --enable-security \
---disable-unix98test || return 1
-  make || return 1
-  make DESTDIR=${pkgdir} install || return 1
+--disable-unix98test
+  make
+}
 
-  install -Dm644 Docs/sample/gnokiirc ${pkgdir}/etc/gnokiirc || return 1
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  install -Dm644 Docs/sample/gnokiirc ${pkgdir}/etc/gnokiirc
 }



[arch-commits] Commit in gnokii/repos (extra-i686)

2010-06-20 Thread Andrea Scarpino
Date: Sunday, June 20, 2010 @ 12:51:42
  Author: andrea
Revision: 83011

archrelease: remove extra-i686

Deleted:
  gnokii/repos/extra-i686/



[arch-commits] Commit in gnokii/repos (extra-i686)

2010-06-20 Thread Andrea Scarpino
Date: Sunday, June 20, 2010 @ 12:52:03
  Author: andrea
Revision: 83012

archrelease: copy trunk to extra-i686

Added:
  gnokii/repos/extra-i686/



[arch-commits] Commit in gnokii/repos (extra-x86_64)

2010-06-20 Thread Andrea Scarpino
Date: Sunday, June 20, 2010 @ 12:52:27
  Author: andrea
Revision: 83013

archrelease: remove extra-x86_64

Deleted:
  gnokii/repos/extra-x86_64/



[arch-commits] Commit in gnokii/repos (extra-x86_64)

2010-06-20 Thread Andrea Scarpino
Date: Sunday, June 20, 2010 @ 12:52:50
  Author: andrea
Revision: 83015

archrelease: copy trunk to extra-x86_64

Added:
  gnokii/repos/extra-x86_64/