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