[arch-commits] Commit in deja-dup/repos (10 files)

Balló György bgyorgy at nymeria.archlinux.org
Mon Apr 7 21:26:43 UTC 2014


    Date: Monday, April 7, 2014 @ 23:26:40
  Author: bgyorgy
Revision: 108944

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

Added:
  deja-dup/repos/community-i686/PKGBUILD
    (from rev 108943, deja-dup/trunk/PKGBUILD)
  deja-dup/repos/community-i686/deja-dup.install
    (from rev 108943, deja-dup/trunk/deja-dup.install)
  deja-dup/repos/community-x86_64/PKGBUILD
    (from rev 108943, deja-dup/trunk/PKGBUILD)
  deja-dup/repos/community-x86_64/deja-dup.install
    (from rev 108943, deja-dup/trunk/deja-dup.install)
Deleted:
  deja-dup/repos/community-i686/PKGBUILD
  deja-dup/repos/community-i686/deja-dup.install
  deja-dup/repos/community-i686/fix-build.patch
  deja-dup/repos/community-x86_64/PKGBUILD
  deja-dup/repos/community-x86_64/deja-dup.install
  deja-dup/repos/community-x86_64/fix-build.patch

-----------------------------------+
 /PKGBUILD                         |   84 ++++++++++++++++++++++++++++++++++++
 /deja-dup.install                 |   24 ++++++++++
 community-i686/PKGBUILD           |   45 -------------------
 community-i686/deja-dup.install   |   12 -----
 community-i686/fix-build.patch    |   24 ----------
 community-x86_64/PKGBUILD         |   45 -------------------
 community-x86_64/deja-dup.install |   12 -----
 community-x86_64/fix-build.patch  |   24 ----------
 8 files changed, 108 insertions(+), 162 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2014-04-07 21:26:29 UTC (rev 108943)
+++ community-i686/PKGBUILD	2014-04-07 21:26:40 UTC (rev 108944)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Balló György <ballogyor+arch at gmail dot com>
-
-pkgname=deja-dup
-pkgver=28.0
-pkgrel=1
-pkgdesc="Simple backup tool, that hides the complexity of backing up the Right Way and uses duplicity as the backend"
-arch=('i686' 'x86_64')
-url="https://launchpad.net/deja-dup"
-license=('GPL')
-depends=('duplicity' 'libpeas' 'libnotify' 'python2-gobject' 'gvfs' 'xdg-utils')
-makedepends=('vala' 'intltool' 'itstool' 'nautilus')
-optdepends=('gnome-keyring: save passwords'
-            'nautilus: backup extension'
-            'python2-boto: Amazon S3 backend'
-            'ubuntuone-client: Ubuntu One backend')
-install=$pkgname.install
-source=(http://launchpad.net/$pkgname/${pkgver%.*}/$pkgver/+download/$pkgname-$pkgver.tar.xz
-        fix-build.patch)
-md5sums=('480516869f49813880f2bbb35700c9af'
-         '4988fed3a3d3c2fec9318cc57e1710df')
-
-prepare() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  # Python2 fix
-  sed -i 's/\"python\", \"-c\"/\"python2\", \"-c\"/' libdeja/PythonChecker.vala
-
-  # Fix build
-  patch -Np0 -i ../fix-build.patch
-}
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --libexecdir=/usr/lib/$pkgname \
-              --disable-static --disable-schemas-compile --without-unity
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  make DESTDIR="$pkgdir/" install
-}

Copied: deja-dup/repos/community-i686/PKGBUILD (from rev 108943, deja-dup/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2014-04-07 21:26:40 UTC (rev 108944)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Balló György <ballogyor+arch at gmail dot com>
+
+pkgname=deja-dup
+pkgver=30.0
+pkgrel=1
+pkgdesc="Simple backup tool, that hides the complexity of backing up the Right Way and uses duplicity as the backend"
+arch=('i686' 'x86_64')
+url="https://launchpad.net/deja-dup"
+license=('GPL')
+depends=('duplicity' 'libpeas' 'libnotify' 'python2-gobject' 'gvfs' 'xdg-utils')
+makedepends=('cmake' 'vala' 'intltool' 'itstool' 'nautilus')
+optdepends=('gnome-keyring: save passwords'
+            'nautilus: backup extension'
+            'python2-boto: Amazon S3 backend')
+install=$pkgname.install
+source=(http://launchpad.net/$pkgname/${pkgver%.*}/$pkgver/+download/$pkgname-$pkgver.tar.xz)
+md5sums=('1f714b88cec80ed38f770e95708a16d8')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  # Python2 fix
+  sed -i 's/\"python\", \"-c\"/\"python2\", \"-c\"/' libdeja/PythonChecker.vala
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  cmake . -DCMAKE_BUILD_TYPE=Release \
+          -DCMAKE_INSTALL_PREFIX=/usr \
+          -DCMAKE_INSTALL_SYSCONFDIR=/etc \
+          -DCMAKE_INSTALL_LIBDIR=/usr/lib \
+          -DCMAKE_INSTALL_LIBEXECDIR=/usr/lib/$pkgname
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir/" install
+}

Deleted: community-i686/deja-dup.install
===================================================================
--- community-i686/deja-dup.install	2014-04-07 21:26:29 UTC (rev 108943)
+++ community-i686/deja-dup.install	2014-04-07 21:26:40 UTC (rev 108944)
@@ -1,12 +0,0 @@
-post_install() {
-  glib-compile-schemas usr/share/glib-2.0/schemas
-  xdg-icon-resource forceupdate
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}

Copied: deja-dup/repos/community-i686/deja-dup.install (from rev 108943, deja-dup/trunk/deja-dup.install)
===================================================================
--- community-i686/deja-dup.install	                        (rev 0)
+++ community-i686/deja-dup.install	2014-04-07 21:26:40 UTC (rev 108944)
@@ -0,0 +1,12 @@
+post_install() {
+  glib-compile-schemas usr/share/glib-2.0/schemas
+  xdg-icon-resource forceupdate
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}

Deleted: community-i686/fix-build.patch
===================================================================
--- community-i686/fix-build.patch	2014-04-07 21:26:29 UTC (rev 108943)
+++ community-i686/fix-build.patch	2014-04-07 21:26:40 UTC (rev 108944)
@@ -1,24 +0,0 @@
-=== modified file 'deja-dup/widgets/WidgetUtils.vala'
---- deja-dup/widgets/WidgetUtils.vala	2013-10-14 14:34:37 +0000
-+++ deja-dup/widgets/WidgetUtils.vala	2013-12-06 17:19:31 +0000
-@@ -19,6 +19,10 @@
- 
- using GLib;
- 
-+// vala 0.22.1 changed the prototype for Notify.get_server_caps.
-+// Rather than require that specific version, use 0.22.1's definition directly.
-+extern GLib.List notify_get_server_caps();
-+
- namespace DejaDup {
- 
- public void show_uri(Gtk.Window? parent, string link)
-@@ -59,7 +63,7 @@
-       // Use Legacy unless we detect a different shell.
-       shell = ShellEnv.LEGACY;
-       // Next check for Shell by notification capabilities
--      unowned List<string> caps = Notify.get_server_caps();
-+      List<string> caps = notify_get_server_caps();
-       bool persistence = false, actions = false;
-       foreach (string cap in caps) {
-         if (cap == "persistence")
-

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2014-04-07 21:26:29 UTC (rev 108943)
+++ community-x86_64/PKGBUILD	2014-04-07 21:26:40 UTC (rev 108944)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Balló György <ballogyor+arch at gmail dot com>
-
-pkgname=deja-dup
-pkgver=28.0
-pkgrel=1
-pkgdesc="Simple backup tool, that hides the complexity of backing up the Right Way and uses duplicity as the backend"
-arch=('i686' 'x86_64')
-url="https://launchpad.net/deja-dup"
-license=('GPL')
-depends=('duplicity' 'libpeas' 'libnotify' 'python2-gobject' 'gvfs' 'xdg-utils')
-makedepends=('vala' 'intltool' 'itstool' 'nautilus')
-optdepends=('gnome-keyring: save passwords'
-            'nautilus: backup extension'
-            'python2-boto: Amazon S3 backend'
-            'ubuntuone-client: Ubuntu One backend')
-install=$pkgname.install
-source=(http://launchpad.net/$pkgname/${pkgver%.*}/$pkgver/+download/$pkgname-$pkgver.tar.xz
-        fix-build.patch)
-md5sums=('480516869f49813880f2bbb35700c9af'
-         '4988fed3a3d3c2fec9318cc57e1710df')
-
-prepare() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  # Python2 fix
-  sed -i 's/\"python\", \"-c\"/\"python2\", \"-c\"/' libdeja/PythonChecker.vala
-
-  # Fix build
-  patch -Np0 -i ../fix-build.patch
-}
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --libexecdir=/usr/lib/$pkgname \
-              --disable-static --disable-schemas-compile --without-unity
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  make DESTDIR="$pkgdir/" install
-}

Copied: deja-dup/repos/community-x86_64/PKGBUILD (from rev 108943, deja-dup/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2014-04-07 21:26:40 UTC (rev 108944)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Balló György <ballogyor+arch at gmail dot com>
+
+pkgname=deja-dup
+pkgver=30.0
+pkgrel=1
+pkgdesc="Simple backup tool, that hides the complexity of backing up the Right Way and uses duplicity as the backend"
+arch=('i686' 'x86_64')
+url="https://launchpad.net/deja-dup"
+license=('GPL')
+depends=('duplicity' 'libpeas' 'libnotify' 'python2-gobject' 'gvfs' 'xdg-utils')
+makedepends=('cmake' 'vala' 'intltool' 'itstool' 'nautilus')
+optdepends=('gnome-keyring: save passwords'
+            'nautilus: backup extension'
+            'python2-boto: Amazon S3 backend')
+install=$pkgname.install
+source=(http://launchpad.net/$pkgname/${pkgver%.*}/$pkgver/+download/$pkgname-$pkgver.tar.xz)
+md5sums=('1f714b88cec80ed38f770e95708a16d8')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  # Python2 fix
+  sed -i 's/\"python\", \"-c\"/\"python2\", \"-c\"/' libdeja/PythonChecker.vala
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  cmake . -DCMAKE_BUILD_TYPE=Release \
+          -DCMAKE_INSTALL_PREFIX=/usr \
+          -DCMAKE_INSTALL_SYSCONFDIR=/etc \
+          -DCMAKE_INSTALL_LIBDIR=/usr/lib \
+          -DCMAKE_INSTALL_LIBEXECDIR=/usr/lib/$pkgname
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir/" install
+}

Deleted: community-x86_64/deja-dup.install
===================================================================
--- community-x86_64/deja-dup.install	2014-04-07 21:26:29 UTC (rev 108943)
+++ community-x86_64/deja-dup.install	2014-04-07 21:26:40 UTC (rev 108944)
@@ -1,12 +0,0 @@
-post_install() {
-  glib-compile-schemas usr/share/glib-2.0/schemas
-  xdg-icon-resource forceupdate
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}

Copied: deja-dup/repos/community-x86_64/deja-dup.install (from rev 108943, deja-dup/trunk/deja-dup.install)
===================================================================
--- community-x86_64/deja-dup.install	                        (rev 0)
+++ community-x86_64/deja-dup.install	2014-04-07 21:26:40 UTC (rev 108944)
@@ -0,0 +1,12 @@
+post_install() {
+  glib-compile-schemas usr/share/glib-2.0/schemas
+  xdg-icon-resource forceupdate
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}

Deleted: community-x86_64/fix-build.patch
===================================================================
--- community-x86_64/fix-build.patch	2014-04-07 21:26:29 UTC (rev 108943)
+++ community-x86_64/fix-build.patch	2014-04-07 21:26:40 UTC (rev 108944)
@@ -1,24 +0,0 @@
-=== modified file 'deja-dup/widgets/WidgetUtils.vala'
---- deja-dup/widgets/WidgetUtils.vala	2013-10-14 14:34:37 +0000
-+++ deja-dup/widgets/WidgetUtils.vala	2013-12-06 17:19:31 +0000
-@@ -19,6 +19,10 @@
- 
- using GLib;
- 
-+// vala 0.22.1 changed the prototype for Notify.get_server_caps.
-+// Rather than require that specific version, use 0.22.1's definition directly.
-+extern GLib.List notify_get_server_caps();
-+
- namespace DejaDup {
- 
- public void show_uri(Gtk.Window? parent, string link)
-@@ -59,7 +63,7 @@
-       // Use Legacy unless we detect a different shell.
-       shell = ShellEnv.LEGACY;
-       // Next check for Shell by notification capabilities
--      unowned List<string> caps = Notify.get_server_caps();
-+      List<string> caps = notify_get_server_caps();
-       bool persistence = false, actions = false;
-       foreach (string cap in caps) {
-         if (cap == "persistence")
-




More information about the arch-commits mailing list