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

Andrea Scarpino andrea at nymeria.archlinux.org
Mon Oct 21 12:34:16 UTC 2013


    Date: Monday, October 21, 2013 @ 14:34:16
  Author: andrea
Revision: 98928

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

Added:
  signon/repos/community-i686/PKGBUILD
    (from rev 98927, signon/trunk/PKGBUILD)
  signon/repos/community-i686/signon.install
    (from rev 98927, signon/trunk/signon.install)
  signon/repos/community-i686/use_keyring.patch
    (from rev 98927, signon/trunk/use_keyring.patch)
  signon/repos/community-x86_64/PKGBUILD
    (from rev 98927, signon/trunk/PKGBUILD)
  signon/repos/community-x86_64/signon.install
    (from rev 98927, signon/trunk/signon.install)
  signon/repos/community-x86_64/use_keyring.patch
    (from rev 98927, signon/trunk/use_keyring.patch)
Deleted:
  signon/repos/community-i686/PKGBUILD
  signon/repos/community-i686/signon.install
  signon/repos/community-i686/use_keyring.patch
  signon/repos/community-x86_64/PKGBUILD
  signon/repos/community-x86_64/signon.install
  signon/repos/community-x86_64/use_keyring.patch

------------------------------------+
 /PKGBUILD                          |  106 +++++++++++++++++++++++++++++++++++
 /signon.install                    |   12 +++
 /use_keyring.patch                 |   24 +++++++
 community-i686/PKGBUILD            |   52 -----------------
 community-i686/signon.install      |    6 -
 community-i686/use_keyring.patch   |   12 ---
 community-x86_64/PKGBUILD          |   52 -----------------
 community-x86_64/signon.install    |    6 -
 community-x86_64/use_keyring.patch |   12 ---
 9 files changed, 142 insertions(+), 140 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2013-10-21 12:33:56 UTC (rev 98927)
+++ community-i686/PKGBUILD	2013-10-21 12:34:16 UTC (rev 98928)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Balló György <ballogyor+arch at gmail dot com>
-
-pkgbase=signon
-pkgname=('signon' 'signon-doc')
-pkgver=8.54
-pkgrel=1
-pkgdesc="Framework to provide credential storage and authentication service"
-arch=('i686' 'x86_64')
-url="http://code.google.com/p/accounts-sso/"
-license=('LGPL')
-depends=('qt4' 'libproxy')
-makedepends=('doxygen' 'graphviz' 'ttf-dejavu')
-backup=(etc/signond.conf)
-install=$pkgname.install
-source=(http://accounts-sso.googlecode.com/files/$pkgbase-$pkgver.tar.bz2
-        use_keyring.patch)
-sha1sums=('a29a12d6fe3747930e94932f6e1b1339b471d108'
-          'cfdd48b494ad267654ceba23f1b81bcb8f56b9a1')
-
-build() {
-  cd "$srcdir/$pkgbase-$pkgver"
-
-  # Use gnome-keyring secrets storage if signon-keyring-extension is available
-  patch -Np1 -i "$srcdir/use_keyring.patch"
-
-  # qt4 fix
-  sed -i 's/qdbusxml2cpp/qdbusxml2cpp-qt4/' src/signond/signond.pro
-
-  qmake-qt4 PREFIX=/usr LIBDIR=/usr/lib
-  make
-}
-
-package_signon() {
-  cd "$srcdir/$pkgbase-$pkgver"
-
-  make INSTALL_ROOT="$pkgdir" install
-
-  # Split out documentation
-  mv "$pkgdir/usr/share/doc" "$srcdir"
-}
-
-package_signon-doc() {
-  pkgdesc="Developer documention of signon"
-  depends=()
-  options=('!emptydirs')
-  backup=()
-  install=
-
-  mkdir -p "$pkgdir/usr/share"
-  mv "$srcdir/doc" "$pkgdir/usr/share"
-}

Copied: signon/repos/community-i686/PKGBUILD (from rev 98927, signon/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2013-10-21 12:34:16 UTC (rev 98928)
@@ -0,0 +1,53 @@
+# $Id$
+#Maintainer: Andrea Scarpino <andrea at archlinux.org>
+# Contributor: Balló György <ballogyor+arch at gmail dot com>
+
+pkgbase=signon
+pkgname=('signon' 'signon-doc')
+pkgver=8.54
+pkgrel=2
+arch=('i686' 'x86_64')
+url="http://code.google.com/p/accounts-sso/"
+license=('LGPL')
+makedepends=('qt4' 'libproxy' 'doxygen' 'graphviz' 'ttf-font')
+options=('!emptydirs')
+source=("http://accounts-sso.googlecode.com/files/$pkgbase-$pkgver.tar.bz2"
+        'use_keyring.patch')
+sha1sums=('a29a12d6fe3747930e94932f6e1b1339b471d108'
+          'cfdd48b494ad267654ceba23f1b81bcb8f56b9a1')
+
+prepare() {
+  cd $pkgbase-$pkgver
+  
+  # Use gnome-keyring secrets storage if signon-keyring-extension is available
+  patch -Np1 -i "$srcdir/use_keyring.patch"
+  
+  # qt4 fix
+  sed -i 's/qdbusxml2cpp/qdbusxml2cpp-qt4/' src/signond/signond.pro
+}
+
+build() {
+  cd $pkgbase-$pkgver
+  qmake-qt4 PREFIX=/usr LIBDIR=/usr/lib
+  make
+}
+
+package_signon() {
+  pkgdesc="Framework to provide credential storage and authentication service"
+  depends=('qt4' 'libproxy')
+  backup=('etc/signond.conf')
+  install=$pkgname.install
+
+  cd $pkgbase-$pkgver
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Split out documentation
+  mv "$pkgdir/usr/share/doc" "$srcdir"
+}
+
+package_signon-doc() {
+  pkgdesc="Developer documention of signon"
+
+  mkdir -p "$pkgdir/usr/share"
+  mv "$srcdir/doc" "$pkgdir/usr/share"
+}

Deleted: community-i686/signon.install
===================================================================
--- community-i686/signon.install	2013-10-21 12:33:56 UTC (rev 98927)
+++ community-i686/signon.install	2013-10-21 12:34:16 UTC (rev 98928)
@@ -1,6 +0,0 @@
-post_upgrade() {
-  if [ "$(vercmp 8.44 "$2")" -eq 1 ]; then
-    printf '==> Default config location changed\n'
-    printf '    Move the file signon.db from ~/.signon/ to ~/.config/signond/\n'
-  fi
-}

Copied: signon/repos/community-i686/signon.install (from rev 98927, signon/trunk/signon.install)
===================================================================
--- community-i686/signon.install	                        (rev 0)
+++ community-i686/signon.install	2013-10-21 12:34:16 UTC (rev 98928)
@@ -0,0 +1,6 @@
+post_upgrade() {
+  if [ "$(vercmp 8.44 "$2")" -eq 1 ]; then
+    printf '==> Default config location changed\n'
+    printf '    Move the file signon.db from ~/.signon/ to ~/.config/signond/\n'
+  fi
+}

Deleted: community-i686/use_keyring.patch
===================================================================
--- community-i686/use_keyring.patch	2013-10-21 12:33:56 UTC (rev 98927)
+++ community-i686/use_keyring.patch	2013-10-21 12:34:16 UTC (rev 98928)
@@ -1,12 +0,0 @@
-=== modified file 'src/signond/signond.conf'
---- old/src/signond/signond.conf	2012-07-25 14:57:50 +0000
-+++ new/src/signond/signond.conf	2012-07-25 19:27:16 +0000
-@@ -17,6 +17,7 @@
- FileSystemName=signonfs
- Size=8
- FileSystemType=ext2
-+SecretsStorage=gnome-keyring
- 
- [ObjectTimeouts]
- IdentityTimeout=300
-

Copied: signon/repos/community-i686/use_keyring.patch (from rev 98927, signon/trunk/use_keyring.patch)
===================================================================
--- community-i686/use_keyring.patch	                        (rev 0)
+++ community-i686/use_keyring.patch	2013-10-21 12:34:16 UTC (rev 98928)
@@ -0,0 +1,12 @@
+=== modified file 'src/signond/signond.conf'
+--- old/src/signond/signond.conf	2012-07-25 14:57:50 +0000
++++ new/src/signond/signond.conf	2012-07-25 19:27:16 +0000
+@@ -17,6 +17,7 @@
+ FileSystemName=signonfs
+ Size=8
+ FileSystemType=ext2
++SecretsStorage=gnome-keyring
+ 
+ [ObjectTimeouts]
+ IdentityTimeout=300
+

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2013-10-21 12:33:56 UTC (rev 98927)
+++ community-x86_64/PKGBUILD	2013-10-21 12:34:16 UTC (rev 98928)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Balló György <ballogyor+arch at gmail dot com>
-
-pkgbase=signon
-pkgname=('signon' 'signon-doc')
-pkgver=8.54
-pkgrel=1
-pkgdesc="Framework to provide credential storage and authentication service"
-arch=('i686' 'x86_64')
-url="http://code.google.com/p/accounts-sso/"
-license=('LGPL')
-depends=('qt4' 'libproxy')
-makedepends=('doxygen' 'graphviz' 'ttf-dejavu')
-backup=(etc/signond.conf)
-install=$pkgname.install
-source=(http://accounts-sso.googlecode.com/files/$pkgbase-$pkgver.tar.bz2
-        use_keyring.patch)
-sha1sums=('a29a12d6fe3747930e94932f6e1b1339b471d108'
-          'cfdd48b494ad267654ceba23f1b81bcb8f56b9a1')
-
-build() {
-  cd "$srcdir/$pkgbase-$pkgver"
-
-  # Use gnome-keyring secrets storage if signon-keyring-extension is available
-  patch -Np1 -i "$srcdir/use_keyring.patch"
-
-  # qt4 fix
-  sed -i 's/qdbusxml2cpp/qdbusxml2cpp-qt4/' src/signond/signond.pro
-
-  qmake-qt4 PREFIX=/usr LIBDIR=/usr/lib
-  make
-}
-
-package_signon() {
-  cd "$srcdir/$pkgbase-$pkgver"
-
-  make INSTALL_ROOT="$pkgdir" install
-
-  # Split out documentation
-  mv "$pkgdir/usr/share/doc" "$srcdir"
-}
-
-package_signon-doc() {
-  pkgdesc="Developer documention of signon"
-  depends=()
-  options=('!emptydirs')
-  backup=()
-  install=
-
-  mkdir -p "$pkgdir/usr/share"
-  mv "$srcdir/doc" "$pkgdir/usr/share"
-}

Copied: signon/repos/community-x86_64/PKGBUILD (from rev 98927, signon/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2013-10-21 12:34:16 UTC (rev 98928)
@@ -0,0 +1,53 @@
+# $Id$
+#Maintainer: Andrea Scarpino <andrea at archlinux.org>
+# Contributor: Balló György <ballogyor+arch at gmail dot com>
+
+pkgbase=signon
+pkgname=('signon' 'signon-doc')
+pkgver=8.54
+pkgrel=2
+arch=('i686' 'x86_64')
+url="http://code.google.com/p/accounts-sso/"
+license=('LGPL')
+makedepends=('qt4' 'libproxy' 'doxygen' 'graphviz' 'ttf-font')
+options=('!emptydirs')
+source=("http://accounts-sso.googlecode.com/files/$pkgbase-$pkgver.tar.bz2"
+        'use_keyring.patch')
+sha1sums=('a29a12d6fe3747930e94932f6e1b1339b471d108'
+          'cfdd48b494ad267654ceba23f1b81bcb8f56b9a1')
+
+prepare() {
+  cd $pkgbase-$pkgver
+  
+  # Use gnome-keyring secrets storage if signon-keyring-extension is available
+  patch -Np1 -i "$srcdir/use_keyring.patch"
+  
+  # qt4 fix
+  sed -i 's/qdbusxml2cpp/qdbusxml2cpp-qt4/' src/signond/signond.pro
+}
+
+build() {
+  cd $pkgbase-$pkgver
+  qmake-qt4 PREFIX=/usr LIBDIR=/usr/lib
+  make
+}
+
+package_signon() {
+  pkgdesc="Framework to provide credential storage and authentication service"
+  depends=('qt4' 'libproxy')
+  backup=('etc/signond.conf')
+  install=$pkgname.install
+
+  cd $pkgbase-$pkgver
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Split out documentation
+  mv "$pkgdir/usr/share/doc" "$srcdir"
+}
+
+package_signon-doc() {
+  pkgdesc="Developer documention of signon"
+
+  mkdir -p "$pkgdir/usr/share"
+  mv "$srcdir/doc" "$pkgdir/usr/share"
+}

Deleted: community-x86_64/signon.install
===================================================================
--- community-x86_64/signon.install	2013-10-21 12:33:56 UTC (rev 98927)
+++ community-x86_64/signon.install	2013-10-21 12:34:16 UTC (rev 98928)
@@ -1,6 +0,0 @@
-post_upgrade() {
-  if [ "$(vercmp 8.44 "$2")" -eq 1 ]; then
-    printf '==> Default config location changed\n'
-    printf '    Move the file signon.db from ~/.signon/ to ~/.config/signond/\n'
-  fi
-}

Copied: signon/repos/community-x86_64/signon.install (from rev 98927, signon/trunk/signon.install)
===================================================================
--- community-x86_64/signon.install	                        (rev 0)
+++ community-x86_64/signon.install	2013-10-21 12:34:16 UTC (rev 98928)
@@ -0,0 +1,6 @@
+post_upgrade() {
+  if [ "$(vercmp 8.44 "$2")" -eq 1 ]; then
+    printf '==> Default config location changed\n'
+    printf '    Move the file signon.db from ~/.signon/ to ~/.config/signond/\n'
+  fi
+}

Deleted: community-x86_64/use_keyring.patch
===================================================================
--- community-x86_64/use_keyring.patch	2013-10-21 12:33:56 UTC (rev 98927)
+++ community-x86_64/use_keyring.patch	2013-10-21 12:34:16 UTC (rev 98928)
@@ -1,12 +0,0 @@
-=== modified file 'src/signond/signond.conf'
---- old/src/signond/signond.conf	2012-07-25 14:57:50 +0000
-+++ new/src/signond/signond.conf	2012-07-25 19:27:16 +0000
-@@ -17,6 +17,7 @@
- FileSystemName=signonfs
- Size=8
- FileSystemType=ext2
-+SecretsStorage=gnome-keyring
- 
- [ObjectTimeouts]
- IdentityTimeout=300
-

Copied: signon/repos/community-x86_64/use_keyring.patch (from rev 98927, signon/trunk/use_keyring.patch)
===================================================================
--- community-x86_64/use_keyring.patch	                        (rev 0)
+++ community-x86_64/use_keyring.patch	2013-10-21 12:34:16 UTC (rev 98928)
@@ -0,0 +1,12 @@
+=== modified file 'src/signond/signond.conf'
+--- old/src/signond/signond.conf	2012-07-25 14:57:50 +0000
++++ new/src/signond/signond.conf	2012-07-25 19:27:16 +0000
+@@ -17,6 +17,7 @@
+ FileSystemName=signonfs
+ Size=8
+ FileSystemType=ext2
++SecretsStorage=gnome-keyring
+ 
+ [ObjectTimeouts]
+ IdentityTimeout=300
+




More information about the arch-commits mailing list