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

2017-06-02 Thread Christian Hesse
Date: Friday, June 2, 2017 @ 12:16:57
  Author: eworm
Revision: 233411

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

Added:
  packagekit/repos/community-i686/0001-alpm-hooks.patch
(from rev 233410, packagekit/trunk/0001-alpm-hooks.patch)
  packagekit/repos/community-i686/PKGBUILD
(from rev 233410, packagekit/trunk/PKGBUILD)
  packagekit/repos/community-x86_64/0001-alpm-hooks.patch
(from rev 233410, packagekit/trunk/0001-alpm-hooks.patch)
  packagekit/repos/community-x86_64/PKGBUILD
(from rev 233410, packagekit/trunk/PKGBUILD)
Deleted:
  packagekit/repos/community-i686/PKGBUILD
  packagekit/repos/community-x86_64/PKGBUILD

+
 /PKGBUILD  |  130 +
 community-i686/0001-alpm-hooks.patch   |  235 +++
 community-i686/PKGBUILD|   57 ---
 community-x86_64/0001-alpm-hooks.patch |  235 +++
 community-x86_64/PKGBUILD  |   57 ---
 5 files changed, 600 insertions(+), 114 deletions(-)

Copied: packagekit/repos/community-i686/0001-alpm-hooks.patch (from rev 233410, 
packagekit/trunk/0001-alpm-hooks.patch)
===
--- community-i686/0001-alpm-hooks.patch(rev 0)
+++ community-i686/0001-alpm-hooks.patch2017-06-02 12:16:57 UTC (rev 
233411)
@@ -0,0 +1,235 @@
+From 826e8e12424260d50834f1beb8ecd2ad8eed3618 Mon Sep 17 00:00:00 2001
+From: Christian Hesse 
+Date: Mon, 15 May 2017 23:26:41 +0200
+Subject: [PATCH 1/4] Add new status "Running hooks"
+---
+ lib/packagekit-glib2/pk-console-shared.c | 4 
+ lib/packagekit-glib2/pk-enum.h   | 1 +
+ 2 files changed, 5 insertions(+)
+
+diff --git a/lib/packagekit-glib2/pk-console-shared.c 
b/lib/packagekit-glib2/pk-console-shared.c
+index d61f3a13e..5810e160a 100644
+--- a/lib/packagekit-glib2/pk-console-shared.c
 b/lib/packagekit-glib2/pk-console-shared.c
+@@ -324,6 +324,10 @@ pk_status_enum_to_localised_text (PkStatusEnum status)
+   /* TRANSLATORS: transaction state, we are copying package files 
before or after the transaction */
+   text = _("Copying files");
+   break;
++  case PK_STATUS_ENUM_RUN_HOOK:
++  /* TRANSLATORS: transaction state, we are running hooks before 
or after the transaction */
++  text = _("Running hooks");
++  break;
+   default:
+   g_warning ("status unrecognised: %s", pk_status_enum_to_string 
(status));
+   }
+diff --git a/lib/packagekit-glib2/pk-enum.h b/lib/packagekit-glib2/pk-enum.h
+index 4bf93df51..b52690f44 100644
+--- a/lib/packagekit-glib2/pk-enum.h
 b/lib/packagekit-glib2/pk-enum.h
+@@ -143,6 +143,7 @@ typedef enum {
+   PK_STATUS_ENUM_CHECK_EXECUTABLE_FILES,
+   PK_STATUS_ENUM_CHECK_LIBRARIES,
+   PK_STATUS_ENUM_COPY_FILES,
++  PK_STATUS_ENUM_RUN_HOOK,
+   PK_STATUS_ENUM_LAST
+ } PkStatusEnum;
+ 
+From 91d6a48511818840addb7ad06efea209c57717e7 Mon Sep 17 00:00:00 2001
+From: Christian Hesse 
+Date: Tue, 23 May 2017 12:21:46 +0200
+Subject: [PATCH 2/4] alpm: use enum for upgrade/reinstall/downgrade
+---
+ backends/alpm/pk-alpm-transaction.c | 16 
+ 1 file changed, 8 insertions(+), 8 deletions(-)
+
+diff --git a/backends/alpm/pk-alpm-transaction.c 
b/backends/alpm/pk-alpm-transaction.c
+index 54bf8e6c4..674bb9d93 100644
+--- a/backends/alpm/pk-alpm-transaction.c
 b/backends/alpm/pk-alpm-transaction.c
+@@ -550,17 +550,17 @@ pk_alpm_transaction_upgrade_done (PkBackendJob *job, 
alpm_pkg_t *pkg,
+   const gchar *name, *pre, *post;
+ 
+   g_return_if_fail (pkg != NULL);
+-  g_return_if_fail (old != NULL || direction == 0);
++  g_return_if_fail (old != NULL || direction == ALPM_PACKAGE_REINSTALL);
+ 
+   name = alpm_pkg_get_name (pkg);
+-  if (direction != 0)
++  if (direction != ALPM_PACKAGE_REINSTALL)
+   pre = alpm_pkg_get_version (old);
+   post = alpm_pkg_get_version (pkg);
+ 
+-  if (direction > 0) {
++  if (direction == ALPM_PACKAGE_UPGRADE) {
+   alpm_logaction (priv->alpm, PK_LOG_PREFIX, "upgraded %s (%s -> 
%s)\n",
+   name, pre, post);
+-  } else if (direction < 0) {
++  } else if (direction == ALPM_PACKAGE_DOWNGRADE) {
+   alpm_logaction (priv->alpm, PK_LOG_PREFIX,
+   "downgraded %s (%s -> %s)\n", name, pre, post);
+   } else {
+@@ -569,7 +569,7 @@ pk_alpm_transaction_upgrade_done (PkBackendJob *job, 
alpm_pkg_t *pkg,
+   }
+   pk_alpm_pkg_emit (job, pkg, PK_INFO_ENUM_FINISHED);
+ 
+-  if (direction != 0)
++  if (direction != ALPM_PACKAGE_REINSTALL)
+   pk_alpm_transaction_process_new_optdepends (pkg, old);
+   pk_alpm_transaction_output_end ();
+ }
+@@ -665,13 +665,13 @@ 

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

2016-04-27 Thread Christian Hesse
Date: Wednesday, April 27, 2016 @ 15:01:50
  Author: eworm
Revision: 172037

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

Added:
  packagekit/repos/community-i686/PKGBUILD
(from rev 172036, packagekit/trunk/PKGBUILD)
  packagekit/repos/community-x86_64/PKGBUILD
(from rev 172036, packagekit/trunk/PKGBUILD)
Deleted:
  packagekit/repos/community-i686/PKGBUILD
  packagekit/repos/community-i686/packagekit.install
  packagekit/repos/community-x86_64/PKGBUILD
  packagekit/repos/community-x86_64/packagekit.install

-+
 /PKGBUILD   |  108 ++
 community-i686/PKGBUILD |   55 -
 community-i686/packagekit.install   |   11 ---
 community-x86_64/PKGBUILD   |   55 -
 community-x86_64/packagekit.install |   11 ---
 5 files changed, 108 insertions(+), 132 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-04-27 13:01:46 UTC (rev 172036)
+++ community-i686/PKGBUILD 2016-04-27 13:01:50 UTC (rev 172037)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Christian Hesse 
-# Contributor: Jonathan Conder 
-
-pkgname='packagekit'
-pkgver=1.1.1
-pkgrel=1
-pkgdesc='A system designed to make installation and updates of packages easier'
-arch=('i686' 'x86_64')
-url='http://www.packagekit.org/'
-license=('GPL')
-depends=('dbus-glib' 'pacman>=5.0.0' 'polkit' 'shared-mime-info' 'sqlite')
-makedepends=('gobject-introspection' 'gtk-doc' 'intltool'
-   'networkmanager' 'bash-completion' 'vala' 'autoconf-archive')
-optdepends=('networkmanager: detect connection status'
-   'bash-completion: command completion in bash')
-install='packagekit.install'
-backup=('var/lib/PackageKit/transactions.db'
-   'etc/PackageKit/alpm.d/pacman.conf'
-   'etc/PackageKit/alpm.d/repos.list')
-validpgpkeys=('163EB50119225DB3DF8F49EA17ACBA8DFA970E17') # Richard Hughes
-source=("http://www.freedesktop.org/software/PackageKit/releases/PackageKit-${pkgver}.tar.xz"{,.asc})
-sha256sums=('483348a54c92419d713a8a153926ec6e1ab70ba64ae4afd3f0a6d63d10b1cac4'
-'SKIP')
-
-build() {
-   cd "${srcdir}/PackageKit-${pkgver}"
-
-   ./autogen.sh --prefix=/usr \
-   --sysconfdir=/etc \
-   --localstatedir=/var \
-   --libexecdir=/usr/lib/PackageKit \
-   --disable-static \
-   --disable-gtk-doc \
-   --disable-local \
-   --disable-browser-plugin \
-   --disable-gstreamer-plugin \
-   --disable-gtk-module \
-   --disable-command-not-found \
-   --disable-cron \
-   --disable-dummy \
-   --enable-alpm
-   make
-}
-
-package() {
-   cd "${srcdir}/PackageKit-${pkgver}"
-
-   # install directory with root owner, polkit group and
-   # correct permission
-   install -d -o root -g 102 -m 750 "${pkgdir}/usr/share/polkit-1/rules.d"
-
-   make DESTDIR="${pkgdir}" install
-}
-

Copied: packagekit/repos/community-i686/PKGBUILD (from rev 172036, 
packagekit/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-04-27 13:01:50 UTC (rev 172037)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Christian Hesse 
+# Contributor: Jonathan Conder 
+
+pkgname='packagekit'
+pkgver=1.1.1
+pkgrel=2
+pkgdesc='A system designed to make installation and updates of packages easier'
+arch=('i686' 'x86_64')
+url='http://www.packagekit.org/'
+license=('GPL')
+depends=('dbus-glib' 'pacman>=5.0.0' 'polkit' 'shared-mime-info' 'sqlite')
+makedepends=('gobject-introspection' 'gtk-doc' 'intltool'
+   'networkmanager' 'bash-completion' 'vala' 'autoconf-archive')
+optdepends=('networkmanager: detect connection status'
+   'bash-completion: command completion in bash')
+backup=('var/lib/PackageKit/transactions.db'
+   'etc/PackageKit/alpm.d/pacman.conf'
+   'etc/PackageKit/alpm.d/repos.list')
+validpgpkeys=('163EB50119225DB3DF8F49EA17ACBA8DFA970E17') # Richard Hughes
+source=("http://www.freedesktop.org/software/PackageKit/releases/PackageKit-${pkgver}.tar.xz"{,.asc})
+sha256sums=('483348a54c92419d713a8a153926ec6e1ab70ba64ae4afd3f0a6d63d10b1cac4'
+'SKIP')
+
+build() {
+   cd "${srcdir}/PackageKit-${pkgver}"
+
+   ./autogen.sh --prefix=/usr \
+   --sysconfdir=/etc \
+   --localstatedir=/var \
+   --libexecdir=/usr/lib/PackageKit \
+   --disable-static \
+   --disable-gtk-doc \
+   --disable-local \
+   --disable-browser-plugin \
+   --disable-gstreamer-plugin \
+   --disable-gtk-module \
+   

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

2016-02-12 Thread Christian Hesse
Date: Friday, February 12, 2016 @ 23:05:57
  Author: eworm
Revision: 161436

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

Added:
  packagekit/repos/community-testing-i686/
  packagekit/repos/community-testing-i686/PKGBUILD
(from rev 161435, packagekit/trunk/PKGBUILD)
  packagekit/repos/community-testing-i686/packagekit.install
(from rev 161435, packagekit/trunk/packagekit.install)
  packagekit/repos/community-testing-x86_64/
  packagekit/repos/community-testing-x86_64/PKGBUILD
(from rev 161435, packagekit/trunk/PKGBUILD)
  packagekit/repos/community-testing-x86_64/packagekit.install
(from rev 161435, packagekit/trunk/packagekit.install)

-+
 community-testing-i686/PKGBUILD |   63 ++
 community-testing-i686/packagekit.install   |   11 
 community-testing-x86_64/PKGBUILD   |   63 ++
 community-testing-x86_64/packagekit.install |   11 
 4 files changed, 148 insertions(+)

Copied: packagekit/repos/community-testing-i686/PKGBUILD (from rev 161435, 
packagekit/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2016-02-12 22:05:57 UTC (rev 161436)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Christian Hesse 
+# Contributor: Jonathan Conder 
+
+pkgname='packagekit'
+pkgver=1.1.0
+pkgrel=1
+pkgdesc='A system designed to make installation and updates of packages easier'
+arch=('i686' 'x86_64')
+url='http://www.packagekit.org/'
+license=('GPL')
+depends=('dbus-glib' 'pacman>=5.0.0' 'polkit' 'shared-mime-info' 'sqlite')
+makedepends=('gobject-introspection' 'gtk-doc' 'intltool'
+   'networkmanager' 'bash-completion' 'vala' 'autoconf-archive')
+optdepends=('networkmanager: detect connection status'
+   'bash-completion: command completion in bash')
+install='packagekit.install'
+backup=('var/lib/PackageKit/transactions.db'
+   'etc/PackageKit/alpm.d/pacman.conf'
+   'etc/PackageKit/alpm.d/repos.list')
+validpgpkeys=('163EB50119225DB3DF8F49EA17ACBA8DFA970E17') # Richard Hughes
+source=("http://www.freedesktop.org/software/PackageKit/releases/PackageKit-${pkgver}.tar.xz"{,.asc}
+
'0001-alpm-port-to-g_autoptr.patch::https://github.com/eworm-de/PackageKit/commit/80be181752a6ff396147802e818f7c38c1651050.patch')
+sha256sums=('4f1d878391ccc63a1dda99006a9f918f54f2568a328991534b5d1a06d042c36a'
+'SKIP'
+'f299d9f1c65659e4d388aa20958e1e2110f2d473cfad07738771ce53423a0dbb')
+
+prepare() {
+   cd "${srcdir}/PackageKit-${pkgver}"
+
+   patch -Np1 < "${srcdir}/0001-alpm-port-to-g_autoptr.patch"
+}
+
+build() {
+   cd "${srcdir}/PackageKit-${pkgver}"
+
+   ./autogen.sh --prefix=/usr \
+   --sysconfdir=/etc \
+   --localstatedir=/var \
+   --libexecdir=/usr/lib/PackageKit \
+   --disable-static \
+   --disable-gtk-doc \
+   --disable-local \
+   --disable-browser-plugin \
+   --disable-gstreamer-plugin \
+   --disable-gtk-module \
+   --disable-command-not-found \
+   --disable-cron \
+   --disable-dummy \
+   --enable-alpm
+   make
+}
+
+package() {
+   cd "${srcdir}/PackageKit-${pkgver}"
+
+   # install directory with root owner, polkit group and
+   # correct permission
+   install -d -o root -g 102 -m 750 "${pkgdir}/usr/share/polkit-1/rules.d"
+
+   make DESTDIR="${pkgdir}" install
+}
+

Copied: packagekit/repos/community-testing-i686/packagekit.install (from rev 
161435, packagekit/trunk/packagekit.install)
===
--- community-testing-i686/packagekit.install   (rev 0)
+++ community-testing-i686/packagekit.install   2016-02-12 22:05:57 UTC (rev 
161436)
@@ -0,0 +1,11 @@
+post_install() {
+   update-mime-database usr/share/mime &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: packagekit/repos/community-testing-x86_64/PKGBUILD (from rev 161435, 
packagekit/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2016-02-12 22:05:57 UTC (rev 161436)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Christian Hesse 
+# Contributor: Jonathan Conder 
+
+pkgname='packagekit'
+pkgver=1.1.0
+pkgrel=1
+pkgdesc='A system designed to make installation and updates of packages easier'
+arch=('i686' 'x86_64')
+url='http://www.packagekit.org/'
+license=('GPL')
+depends=('dbus-glib' 'pacman>=5.0.0' 'polkit' 'shared-mime-info' 'sqlite')

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

2016-01-30 Thread Christian Hesse
Date: Saturday, January 30, 2016 @ 11:29:58
  Author: eworm
Revision: 159505

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

Added:
  packagekit/repos/community-testing-i686/
  packagekit/repos/community-testing-i686/PKGBUILD
(from rev 159504, packagekit/trunk/PKGBUILD)
  packagekit/repos/community-testing-i686/packagekit.install
(from rev 159504, packagekit/trunk/packagekit.install)
  packagekit/repos/community-testing-x86_64/
  packagekit/repos/community-testing-x86_64/PKGBUILD
(from rev 159504, packagekit/trunk/PKGBUILD)
  packagekit/repos/community-testing-x86_64/packagekit.install
(from rev 159504, packagekit/trunk/packagekit.install)

-+
 community-testing-i686/PKGBUILD |   66 ++
 community-testing-i686/packagekit.install   |   11 
 community-testing-x86_64/PKGBUILD   |   66 ++
 community-testing-x86_64/packagekit.install |   11 
 4 files changed, 154 insertions(+)

Copied: packagekit/repos/community-testing-i686/PKGBUILD (from rev 159504, 
packagekit/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2016-01-30 10:29:58 UTC (rev 159505)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Christian Hesse 
+# Contributor: Jonathan Conder 
+
+pkgname='packagekit'
+pkgver=1.0.11
+pkgrel=4
+pkgdesc='A system designed to make installation and updates of packages easier'
+arch=('i686' 'x86_64')
+url='http://www.packagekit.org/'
+license=('GPL')
+depends=('dbus-glib' 'pacman>=5.0.0' 'polkit' 'shared-mime-info' 'sqlite')
+makedepends=('gobject-introspection' 'gtk-doc' 'intltool'
+   'networkmanager' 'bash-completion' 'vala')
+optdepends=('networkmanager: detect connection status'
+   'bash-completion: command completion in bash')
+install='packagekit.install'
+backup=('var/lib/PackageKit/transactions.db'
+   'etc/PackageKit/alpm.d/pacman.conf'
+   'etc/PackageKit/alpm.d/repos.list')
+validpgpkeys=('163EB50119225DB3DF8F49EA17ACBA8DFA970E17') # Richard Hughes
+source=("http://www.freedesktop.org/software/PackageKit/releases/PackageKit-${pkgver}.tar.xz"{,.asc}
+   
'0001-require-dbus.socket-for-offline-update.patch::https://github.com/hughsie/PackageKit/commit/a54c5ae66c8f8a4227c22419140d66a02f56f25c.patch'
+   
'0002-update-for-pacman-5-x-API-change.patch::https://github.com/hughsie/PackageKit/commit/d2db149e4987290f3a425b45ef51e2eb00e1990e.patch')
+sha256sums=('bbd27bbc77795394f25ab009fe1b3420e365541c99248b18bbaa2fa7f029eaf7'
+'SKIP'
+'c87318eb0404c6e3e2fcbaaf1116a63668c066e3aff488d0ff9c8ac6fd97'
+'cc14ca7d42abe1e4371218dc42206a713467064f291c71ee68ef7abddf90cca1')
+
+prepare() {
+   cd "${srcdir}/PackageKit-${pkgver}"
+
+   patch -Np1 < 
"${srcdir}/0001-require-dbus.socket-for-offline-update.patch"
+   patch -Np1 < "${srcdir}/0002-update-for-pacman-5-x-API-change.patch"
+}
+
+build() {
+   cd "${srcdir}/PackageKit-${pkgver}"
+
+   ./autogen.sh --prefix=/usr \
+   --sysconfdir=/etc \
+   --localstatedir=/var \
+   --libexecdir=/usr/lib/PackageKit \
+   --disable-static \
+   --disable-gtk-doc \
+   --disable-local \
+   --disable-browser-plugin \
+   --disable-gstreamer-plugin \
+   --disable-gtk-module \
+   --disable-command-not-found \
+   --disable-cron \
+   --disable-dummy \
+   --enable-alpm
+   make
+}
+
+package() {
+   cd "${srcdir}/PackageKit-${pkgver}"
+
+   # install directory with root owner, polkit group and
+   # correct permission
+   install -d -o root -g 102 -m 750 "${pkgdir}/usr/share/polkit-1/rules.d"
+
+   make DESTDIR="${pkgdir}" install
+}
+

Copied: packagekit/repos/community-testing-i686/packagekit.install (from rev 
159504, packagekit/trunk/packagekit.install)
===
--- community-testing-i686/packagekit.install   (rev 0)
+++ community-testing-i686/packagekit.install   2016-01-30 10:29:58 UTC (rev 
159505)
@@ -0,0 +1,11 @@
+post_install() {
+   update-mime-database usr/share/mime &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: packagekit/repos/community-testing-x86_64/PKGBUILD (from rev 159504, 
packagekit/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2016-01-30 10:29:58 UTC (rev 159505)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Christian Hesse 
+# Contributor: Jonathan Conder 

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

2015-09-15 Thread Christian Hesse
Date: Tuesday, September 15, 2015 @ 17:37:04
  Author: eworm
Revision: 140334

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

Added:
  packagekit/repos/community-testing-i686/
  packagekit/repos/community-testing-i686/PKGBUILD
(from rev 140333, packagekit/trunk/PKGBUILD)
  packagekit/repos/community-testing-i686/packagekit.install
(from rev 140333, packagekit/trunk/packagekit.install)
  packagekit/repos/community-testing-x86_64/
  packagekit/repos/community-testing-x86_64/PKGBUILD
(from rev 140333, packagekit/trunk/PKGBUILD)
  packagekit/repos/community-testing-x86_64/packagekit.install
(from rev 140333, packagekit/trunk/packagekit.install)

-+
 community-testing-i686/PKGBUILD |   54 ++
 community-testing-i686/packagekit.install   |   11 +
 community-testing-x86_64/PKGBUILD   |   54 ++
 community-testing-x86_64/packagekit.install |   11 +
 4 files changed, 130 insertions(+)

Copied: packagekit/repos/community-testing-i686/PKGBUILD (from rev 140333, 
packagekit/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2015-09-15 15:37:04 UTC (rev 140334)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Christian Hesse 
+# Contributor: Jonathan Conder 
+
+pkgname='packagekit'
+pkgver=1.0.9
+pkgrel=1
+pkgdesc='A system designed to make installation and updates of packages easier'
+arch=('i686' 'x86_64')
+url='http://www.packagekit.org/'
+license=('GPL')
+depends=('dbus-glib' 'pacman>=4.2.0' 'polkit' 'shared-mime-info' 'sqlite')
+makedepends=('gobject-introspection' 'gtk-doc' 'intltool'
+   'networkmanager' 'bash-completion' 'vala')
+optdepends=('networkmanager: detect connection status'
+   'bash-completion: command completion in bash')
+install='packagekit.install'
+backup=('var/lib/PackageKit/transactions.db'
+   'etc/PackageKit/alpm.d/pacman.conf'
+   'etc/PackageKit/alpm.d/repos.list')
+validpgpkeys=('163EB50119225DB3DF8F49EA17ACBA8DFA970E17') # Richard Hughes
+source=("http://www.freedesktop.org/software/PackageKit/releases/PackageKit-${pkgver}.tar.xz"{,.asc})
+sha256sums=('c10a276055a4cad063c312b112a0dc1462b9dc055ae30e22946e93872e8fbc1a'
+'SKIP')
+
+build() {
+   cd "${srcdir}/PackageKit-${pkgver}"
+
+   ./autogen.sh --prefix=/usr \
+   --sysconfdir=/etc \
+   --localstatedir=/var \
+   --libexecdir=/usr/lib/PackageKit \
+   --disable-static \
+   --disable-gtk-doc \
+   --disable-local \
+   --disable-browser-plugin \
+   --disable-gstreamer-plugin \
+   --disable-gtk-module \
+   --disable-command-not-found \
+   --disable-cron \
+   --disable-dummy \
+   --enable-alpm
+   make
+}
+
+package() {
+   cd "${srcdir}/PackageKit-${pkgver}"
+
+   # install directory with polkit's owner and permission
+   install -d -m0700 -o 102 "${pkgdir}"/usr/share/polkit-1/rules.d
+
+   make DESTDIR="${pkgdir}" install
+}
+

Copied: packagekit/repos/community-testing-i686/packagekit.install (from rev 
140333, packagekit/trunk/packagekit.install)
===
--- community-testing-i686/packagekit.install   (rev 0)
+++ community-testing-i686/packagekit.install   2015-09-15 15:37:04 UTC (rev 
140334)
@@ -0,0 +1,11 @@
+post_install() {
+   update-mime-database usr/share/mime &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: packagekit/repos/community-testing-x86_64/PKGBUILD (from rev 140333, 
packagekit/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2015-09-15 15:37:04 UTC (rev 140334)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Christian Hesse 
+# Contributor: Jonathan Conder 
+
+pkgname='packagekit'
+pkgver=1.0.9
+pkgrel=1
+pkgdesc='A system designed to make installation and updates of packages easier'
+arch=('i686' 'x86_64')
+url='http://www.packagekit.org/'
+license=('GPL')
+depends=('dbus-glib' 'pacman>=4.2.0' 'polkit' 'shared-mime-info' 'sqlite')
+makedepends=('gobject-introspection' 'gtk-doc' 'intltool'
+   'networkmanager' 'bash-completion' 'vala')
+optdepends=('networkmanager: detect connection status'
+   'bash-completion: command completion in bash')
+install='packagekit.install'
+backup=('var/lib/PackageKit/transactions.db'
+   'etc/PackageKit/alpm.d/pacman.conf'
+   'etc/PackageKit/alpm.d/repos.list')

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

2015-08-19 Thread Christian Hesse
Date: Wednesday, August 19, 2015 @ 17:41:17
  Author: eworm
Revision: 138512

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

Added:
  packagekit/repos/community-testing-i686/
  packagekit/repos/community-testing-i686/PKGBUILD
(from rev 138511, packagekit/trunk/PKGBUILD)
  packagekit/repos/community-testing-i686/packagekit.install
(from rev 138511, packagekit/trunk/packagekit.install)
  packagekit/repos/community-testing-x86_64/
  packagekit/repos/community-testing-x86_64/PKGBUILD
(from rev 138511, packagekit/trunk/PKGBUILD)
  packagekit/repos/community-testing-x86_64/packagekit.install
(from rev 138511, packagekit/trunk/packagekit.install)

-+
 community-testing-i686/PKGBUILD |   58 ++
 community-testing-i686/packagekit.install   |   11 
 community-testing-x86_64/PKGBUILD   |   58 ++
 community-testing-x86_64/packagekit.install |   11 
 4 files changed, 138 insertions(+)

Copied: packagekit/repos/community-testing-i686/PKGBUILD (from rev 138511, 
packagekit/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2015-08-19 15:41:17 UTC (rev 138512)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Christian Hesse m...@eworm.de
+# Contributor: Jonathan Conder jonno.con...@gmail.com
+
+pkgname='packagekit'
+pkgver=1.0.8
+pkgrel=1
+pkgdesc='A system designed to make installation and updates of packages easier'
+arch=('i686' 'x86_64')
+url='http://www.packagekit.org/'
+license=('GPL')
+depends=('dbus-glib' 'pacman=4.2.0' 'polkit' 'shared-mime-info' 'sqlite')
+makedepends=('gobject-introspection' 'gtk-doc' 'intltool'
+   'networkmanager' 'bash-completion' 'vala')
+optdepends=('networkmanager: detect connection status'
+   'bash-completion: command completion in bash')
+install='packagekit.install'
+backup=('var/lib/PackageKit/transactions.db'
+   'etc/PackageKit/alpm.d/pacman.conf'
+   'etc/PackageKit/alpm.d/repos.list')
+validpgpkeys=('163EB50119225DB3DF8F49EA17ACBA8DFA970E17') # Richard Hughes
+source=(http://www.freedesktop.org/software/PackageKit/releases/PackageKit-${pkgver}.tar.xz{,.asc}
+   
'https://raw.githubusercontent.com/hughsie/PackageKit/master/lib/packagekit-glib2/PackageKitGlib-1.0.metadata')
+sha256sums=('74b013689561322527429addbe1858d450d196bd64226407b8a6f3c627b15ded'
+'SKIP'
+'c906451b6a0462e48cbdf05de7efdbf0bc9ca58d686b8329f5dfb29cacdc260a')
+
+build() {
+   cd ${srcdir}/PackageKit-${pkgver}
+
+   cp ${srcdir}/PackageKitGlib-1.0.metadata lib/packagekit-glib2/
+
+   ./autogen.sh --prefix=/usr \
+   --sysconfdir=/etc \
+   --localstatedir=/var \
+   --libexecdir=/usr/lib/PackageKit \
+   --disable-static \
+   --disable-gtk-doc \
+   --disable-local \
+   --disable-browser-plugin \
+   --disable-gstreamer-plugin \
+   --disable-gtk-module \
+   --disable-command-not-found \
+   --disable-cron \
+   --disable-dummy \
+   --enable-alpm
+   make
+}
+
+package() {
+   cd ${srcdir}/PackageKit-${pkgver}
+
+   # install directory with polkit's owner and permission
+   install -d -m0700 -o 102 ${pkgdir}/usr/share/polkit-1/rules.d
+
+   make DESTDIR=${pkgdir} install
+}
+

Copied: packagekit/repos/community-testing-i686/packagekit.install (from rev 
138511, packagekit/trunk/packagekit.install)
===
--- community-testing-i686/packagekit.install   (rev 0)
+++ community-testing-i686/packagekit.install   2015-08-19 15:41:17 UTC (rev 
138512)
@@ -0,0 +1,11 @@
+post_install() {
+   update-mime-database usr/share/mime  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: packagekit/repos/community-testing-x86_64/PKGBUILD (from rev 138511, 
packagekit/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2015-08-19 15:41:17 UTC (rev 138512)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Christian Hesse m...@eworm.de
+# Contributor: Jonathan Conder jonno.con...@gmail.com
+
+pkgname='packagekit'
+pkgver=1.0.8
+pkgrel=1
+pkgdesc='A system designed to make installation and updates of packages easier'
+arch=('i686' 'x86_64')
+url='http://www.packagekit.org/'
+license=('GPL')
+depends=('dbus-glib' 'pacman=4.2.0' 'polkit' 'shared-mime-info' 'sqlite')
+makedepends=('gobject-introspection' 'gtk-doc' 'intltool'
+   'networkmanager' 'bash-completion' 'vala')
+optdepends=('networkmanager: detect connection status'
+   

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

2015-07-13 Thread Christian Hesse
Date: Monday, July 13, 2015 @ 13:52:25
  Author: eworm
Revision: 136776

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

Added:
  packagekit/repos/community-testing-i686/
  packagekit/repos/community-testing-i686/PKGBUILD
(from rev 136775, packagekit/trunk/PKGBUILD)
  packagekit/repos/community-testing-i686/packagekit.install
(from rev 136775, packagekit/trunk/packagekit.install)
  packagekit/repos/community-testing-x86_64/
  packagekit/repos/community-testing-x86_64/PKGBUILD
(from rev 136775, packagekit/trunk/PKGBUILD)
  packagekit/repos/community-testing-x86_64/packagekit.install
(from rev 136775, packagekit/trunk/packagekit.install)

-+
 community-testing-i686/PKGBUILD |   54 ++
 community-testing-i686/packagekit.install   |   11 +
 community-testing-x86_64/PKGBUILD   |   54 ++
 community-testing-x86_64/packagekit.install |   11 +
 4 files changed, 130 insertions(+)

Copied: packagekit/repos/community-testing-i686/PKGBUILD (from rev 136775, 
packagekit/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2015-07-13 11:52:25 UTC (rev 136776)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Christian Hesse m...@eworm.de
+# Contributor: Jonathan Conder jonno.con...@gmail.com
+
+pkgname='packagekit'
+pkgver=1.0.7
+pkgrel=1
+pkgdesc='A system designed to make installation and updates of packages easier'
+arch=('i686' 'x86_64')
+url='http://www.packagekit.org/'
+license=('GPL')
+depends=('dbus-glib' 'pacman=4.2.0' 'polkit' 'shared-mime-info' 'sqlite')
+makedepends=('gobject-introspection' 'gtk-doc' 'intltool'
+   'networkmanager' 'bash-completion')
+optdepends=('networkmanager: detect connection status'
+   'bash-completion: command completion in bash')
+install='packagekit.install'
+backup=('var/lib/PackageKit/transactions.db'
+   'etc/PackageKit/alpm.d/pacman.conf'
+   'etc/PackageKit/alpm.d/repos.list')
+validpgpkeys=('163EB50119225DB3DF8F49EA17ACBA8DFA970E17') # Richard Hughes
+source=(http://www.freedesktop.org/software/PackageKit/releases/PackageKit-${pkgver}.tar.xz{,.asc})
+sha256sums=('b186c5b4d53a5dd2ebf8b0c5b255c8a5ef3de6728a6cbeccbf5d1c353cc89c4e'
+'SKIP')
+
+build() {
+   cd ${srcdir}/PackageKit-${pkgver}
+
+   ./autogen.sh --prefix=/usr \
+   --sysconfdir=/etc \
+   --localstatedir=/var \
+   --libexecdir=/usr/lib/PackageKit \
+   --disable-static \
+   --disable-gtk-doc \
+   --disable-local \
+   --disable-browser-plugin \
+   --disable-gstreamer-plugin \
+   --disable-gtk-module \
+   --disable-command-not-found \
+   --disable-cron \
+   --disable-dummy \
+   --enable-alpm
+   make
+}
+
+package() {
+   cd ${srcdir}/PackageKit-${pkgver}
+
+   # install directory with polkit's owner and permission
+   install -d -m0700 -o 102 ${pkgdir}/usr/share/polkit-1/rules.d
+
+   make DESTDIR=${pkgdir} install
+}
+

Copied: packagekit/repos/community-testing-i686/packagekit.install (from rev 
136775, packagekit/trunk/packagekit.install)
===
--- community-testing-i686/packagekit.install   (rev 0)
+++ community-testing-i686/packagekit.install   2015-07-13 11:52:25 UTC (rev 
136776)
@@ -0,0 +1,11 @@
+post_install() {
+   update-mime-database usr/share/mime  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: packagekit/repos/community-testing-x86_64/PKGBUILD (from rev 136775, 
packagekit/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2015-07-13 11:52:25 UTC (rev 136776)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Christian Hesse m...@eworm.de
+# Contributor: Jonathan Conder jonno.con...@gmail.com
+
+pkgname='packagekit'
+pkgver=1.0.7
+pkgrel=1
+pkgdesc='A system designed to make installation and updates of packages easier'
+arch=('i686' 'x86_64')
+url='http://www.packagekit.org/'
+license=('GPL')
+depends=('dbus-glib' 'pacman=4.2.0' 'polkit' 'shared-mime-info' 'sqlite')
+makedepends=('gobject-introspection' 'gtk-doc' 'intltool'
+   'networkmanager' 'bash-completion')
+optdepends=('networkmanager: detect connection status'
+   'bash-completion: command completion in bash')
+install='packagekit.install'
+backup=('var/lib/PackageKit/transactions.db'
+   'etc/PackageKit/alpm.d/pacman.conf'
+   'etc/PackageKit/alpm.d/repos.list')
+validpgpkeys=('163EB50119225DB3DF8F49EA17ACBA8DFA970E17') # Richard 

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

2015-04-07 Thread Christian Hesse
Date: Tuesday, April 7, 2015 @ 14:49:58
  Author: eworm
Revision: 130888

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

Added:
  packagekit/repos/community-testing-i686/
  packagekit/repos/community-testing-i686/PKGBUILD
(from rev 130887, packagekit/trunk/PKGBUILD)
  packagekit/repos/community-testing-i686/packagekit.install
(from rev 130887, packagekit/trunk/packagekit.install)
  packagekit/repos/community-testing-x86_64/
  packagekit/repos/community-testing-x86_64/PKGBUILD
(from rev 130887, packagekit/trunk/PKGBUILD)
  packagekit/repos/community-testing-x86_64/packagekit.install
(from rev 130887, packagekit/trunk/packagekit.install)

-+
 community-testing-i686/PKGBUILD |   54 ++
 community-testing-i686/packagekit.install   |   11 +
 community-testing-x86_64/PKGBUILD   |   54 ++
 community-testing-x86_64/packagekit.install |   11 +
 4 files changed, 130 insertions(+)

Copied: packagekit/repos/community-testing-i686/PKGBUILD (from rev 130887, 
packagekit/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2015-04-07 12:49:58 UTC (rev 130888)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Christian Hesse m...@eworm.de
+# Contributor: Jonathan Conder jonno.con...@gmail.com
+
+pkgname='packagekit'
+pkgver=1.0.6
+pkgrel=1
+pkgdesc='A system designed to make installation and updates of packages easier'
+arch=('i686' 'x86_64')
+url='http://www.packagekit.org/'
+license=('GPL')
+depends=('dbus-glib' 'pacman=4.2.0' 'polkit' 'shared-mime-info' 'sqlite')
+makedepends=('gobject-introspection' 'gtk-doc' 'intltool'
+   'networkmanager' 'bash-completion')
+optdepends=('networkmanager: detect connection status'
+   'bash-completion: command completion in bash')
+install='packagekit.install'
+backup=('var/lib/PackageKit/transactions.db'
+   'etc/PackageKit/alpm.d/pacman.conf'
+   'etc/PackageKit/alpm.d/repos.list')
+validpgpkeys=('163EB50119225DB3DF8F49EA17ACBA8DFA970E17') # Richard Hughes
+source=(http://www.freedesktop.org/software/PackageKit/releases/PackageKit-${pkgver}.tar.xz{,.asc})
+sha256sums=('9f9986c004d3120dc9fa8b1e5aa6ff4171d05ee0e1a04667e5e8ff305ae308a3'
+   'SKIP')
+
+build() {
+   cd ${srcdir}/PackageKit-${pkgver}
+
+   ./autogen.sh --prefix=/usr \
+   --sysconfdir=/etc \
+   --localstatedir=/var \
+   --libexecdir=/usr/lib/PackageKit \
+   --disable-static \
+   --disable-gtk-doc \
+   --disable-local \
+   --disable-browser-plugin \
+   --disable-gstreamer-plugin \
+   --disable-gtk-module \
+   --disable-command-not-found \
+   --disable-cron \
+   --disable-dummy \
+   --enable-alpm
+   make
+}
+
+package() {
+   cd ${srcdir}/PackageKit-${pkgver}
+
+   # install directory with polkit's owner and permission
+   install -d -m0700 -o 102 ${pkgdir}/usr/share/polkit-1/rules.d
+
+   make DESTDIR=${pkgdir} install
+}
+

Copied: packagekit/repos/community-testing-i686/packagekit.install (from rev 
130887, packagekit/trunk/packagekit.install)
===
--- community-testing-i686/packagekit.install   (rev 0)
+++ community-testing-i686/packagekit.install   2015-04-07 12:49:58 UTC (rev 
130888)
@@ -0,0 +1,11 @@
+post_install() {
+   update-mime-database usr/share/mime  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: packagekit/repos/community-testing-x86_64/PKGBUILD (from rev 130887, 
packagekit/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2015-04-07 12:49:58 UTC (rev 130888)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Christian Hesse m...@eworm.de
+# Contributor: Jonathan Conder jonno.con...@gmail.com
+
+pkgname='packagekit'
+pkgver=1.0.6
+pkgrel=1
+pkgdesc='A system designed to make installation and updates of packages easier'
+arch=('i686' 'x86_64')
+url='http://www.packagekit.org/'
+license=('GPL')
+depends=('dbus-glib' 'pacman=4.2.0' 'polkit' 'shared-mime-info' 'sqlite')
+makedepends=('gobject-introspection' 'gtk-doc' 'intltool'
+   'networkmanager' 'bash-completion')
+optdepends=('networkmanager: detect connection status'
+   'bash-completion: command completion in bash')
+install='packagekit.install'
+backup=('var/lib/PackageKit/transactions.db'
+   'etc/PackageKit/alpm.d/pacman.conf'
+   'etc/PackageKit/alpm.d/repos.list')
+validpgpkeys=('163EB50119225DB3DF8F49EA17ACBA8DFA970E17') # Richard Hughes

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

2015-03-10 Thread Christian Hesse
Date: Tuesday, March 10, 2015 @ 11:28:38
  Author: eworm
Revision: 128999

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

Added:
  packagekit/repos/community-testing-i686/
  packagekit/repos/community-testing-i686/PKGBUILD
(from rev 128998, packagekit/trunk/PKGBUILD)
  packagekit/repos/community-testing-i686/packagekit.install
(from rev 128998, packagekit/trunk/packagekit.install)
  packagekit/repos/community-testing-x86_64/
  packagekit/repos/community-testing-x86_64/PKGBUILD
(from rev 128998, packagekit/trunk/PKGBUILD)
  packagekit/repos/community-testing-x86_64/packagekit.install
(from rev 128998, packagekit/trunk/packagekit.install)

-+
 community-testing-i686/PKGBUILD |   55 ++
 community-testing-i686/packagekit.install   |   11 +
 community-testing-x86_64/PKGBUILD   |   55 ++
 community-testing-x86_64/packagekit.install |   11 +
 4 files changed, 132 insertions(+)

Copied: packagekit/repos/community-testing-i686/PKGBUILD (from rev 128998, 
packagekit/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2015-03-10 10:28:38 UTC (rev 128999)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Christian Hesse m...@eworm.de
+# Contributor: Jonathan Conder jonno.con...@gmail.com
+
+pkgname='packagekit'
+pkgver=1.0.5
+pkgrel=2
+pkgdesc='A system designed to make installation and updates of packages easier'
+arch=('i686' 'x86_64')
+url='http://www.packagekit.org/'
+license=('GPL')
+depends=('dbus-glib' 'pacman' 'polkit' 'shared-mime-info' 'sqlite')
+makedepends=('dbus-glib' 'gobject-introspection' 'gtk-doc' 'intltool'
+   'networkmanager' 'pacman=4.2.0' 'polkit'
+   'shared-mime-info' 'sqlite' 'bash-completion')
+optdepends=('networkmanager: detect connection status'
+   'bash-completion: command completion in bash')
+install='packagekit.install'
+backup=('var/lib/PackageKit/transactions.db'
+   'etc/PackageKit/alpm.d/pacman.conf'
+   'etc/PackageKit/alpm.d/repos.list')
+validpgpkeys=('163EB50119225DB3DF8F49EA17ACBA8DFA970E17') # Richard Hughes
+source=(http://www.freedesktop.org/software/PackageKit/releases/PackageKit-${pkgver}.tar.xz{,.asc})
+sha256sums=('e0010fbe266042f07aa3b47377e94139466876dabe86a191587758f23c1ac8d6'
+   'SKIP')
+
+build() {
+   cd ${srcdir}/PackageKit-${pkgver}
+
+   ./autogen.sh --prefix=/usr \
+   --sysconfdir=/etc \
+   --localstatedir=/var \
+   --libexecdir=/usr/lib/PackageKit \
+   --disable-static \
+   --disable-gtk-doc \
+   --disable-local \
+   --disable-browser-plugin \
+   --disable-gstreamer-plugin \
+   --disable-gtk-module \
+   --disable-command-not-found \
+   --disable-cron \
+   --disable-dummy \
+   --enable-alpm
+   make
+}
+
+package() {
+   cd ${srcdir}/PackageKit-${pkgver}
+
+   # install directory with polkit's owner and permission
+   install -d -m0700 -o 102 ${pkgdir}/usr/share/polkit-1/rules.d
+
+   make DESTDIR=${pkgdir} install
+}
+

Copied: packagekit/repos/community-testing-i686/packagekit.install (from rev 
128998, packagekit/trunk/packagekit.install)
===
--- community-testing-i686/packagekit.install   (rev 0)
+++ community-testing-i686/packagekit.install   2015-03-10 10:28:38 UTC (rev 
128999)
@@ -0,0 +1,11 @@
+post_install() {
+   update-mime-database usr/share/mime  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: packagekit/repos/community-testing-x86_64/PKGBUILD (from rev 128998, 
packagekit/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2015-03-10 10:28:38 UTC (rev 128999)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Christian Hesse m...@eworm.de
+# Contributor: Jonathan Conder jonno.con...@gmail.com
+
+pkgname='packagekit'
+pkgver=1.0.5
+pkgrel=2
+pkgdesc='A system designed to make installation and updates of packages easier'
+arch=('i686' 'x86_64')
+url='http://www.packagekit.org/'
+license=('GPL')
+depends=('dbus-glib' 'pacman' 'polkit' 'shared-mime-info' 'sqlite')
+makedepends=('dbus-glib' 'gobject-introspection' 'gtk-doc' 'intltool'
+   'networkmanager' 'pacman=4.2.0' 'polkit'
+   'shared-mime-info' 'sqlite' 'bash-completion')
+optdepends=('networkmanager: detect connection status'
+   'bash-completion: command completion in bash')
+install='packagekit.install'
+backup=('var/lib/PackageKit/transactions.db'
+   

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

2015-01-20 Thread Antonio Rojas
Date: Tuesday, January 20, 2015 @ 09:32:18
  Author: arojas
Revision: 126282

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

Added:
  packagekit/repos/community-i686/
  packagekit/repos/community-i686/PKGBUILD
(from rev 126281, packagekit/trunk/PKGBUILD)
  packagekit/repos/community-i686/packagekit.install
(from rev 126281, packagekit/trunk/packagekit.install)
  packagekit/repos/community-x86_64/
  packagekit/repos/community-x86_64/PKGBUILD
(from rev 126281, packagekit/trunk/PKGBUILD)
  packagekit/repos/community-x86_64/packagekit.install
(from rev 126281, packagekit/trunk/packagekit.install)

-+
 community-i686/PKGBUILD |   58 ++
 community-i686/packagekit.install   |   11 ++
 community-x86_64/PKGBUILD   |   58 ++
 community-x86_64/packagekit.install |   11 ++
 4 files changed, 138 insertions(+)

Copied: packagekit/repos/community-i686/PKGBUILD (from rev 126281, 
packagekit/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-01-20 08:32:18 UTC (rev 126282)
@@ -0,0 +1,58 @@
+# Maintainer: Christian Hesse m...@eworm.de
+# Contributor: Jonathan Conder jonno.con...@gmail.com
+
+pkgname='packagekit'
+pkgver=1.0.4
+pkgrel=1
+pkgdesc='A system designed to make installation and updates of packages easier'
+arch=('i686' 'x86_64')
+url='http://www.packagekit.org/'
+license=('GPL')
+depends=('dbus-glib' 'pacman' 'polkit' 'shared-mime-info' 'sqlite')
+makedepends=('dbus-glib' 'gobject-introspection' 'gtk-doc' 'intltool'
+   'networkmanager' 'pacman=4.2.0'  'pm-utils' 'polkit'
+   'shared-mime-info' 'sqlite' 'bash-completion')
+optdepends=('networkmanager: detect connection status'
+   'bash-completion: command completion in bash')
+install='packagekit.install'
+backup=('var/lib/PackageKit/transactions.db'
+   'etc/PackageKit/alpm.d/pacman.conf'
+   'etc/PackageKit/alpm.d/repos.list')
+source=(http://www.freedesktop.org/software/PackageKit/releases/PackageKit-${pkgver}.tar.xz;)
+sha256sums=('1b949a7dc92e20f7d7deb634e5b399148dbb749e813cea955f1546a99e169a71')
+
+prepare() {
+   cd ${srcdir}/PackageKit-${pkgver}
+
+   # packagekit does not know about updates made by pacman while daemon is 
running
+   # https://github.com/hughsie/PackageKit/issues/15
+   # For now we just exit the daemon... It will launch with a clean status 
if required.
+   sed -i '/ExecStart=/s/$/ --timed-exit/' data/packagekit.service.in
+}
+
+build() {
+   cd ${srcdir}/PackageKit-${pkgver}
+
+   ./autogen.sh --prefix=/usr \
+   --sysconfdir=/etc \
+   --localstatedir=/var \
+   --libexecdir=/usr/lib/PackageKit \
+   --disable-static \
+   --disable-gtk-doc \
+   --disable-local \
+   --disable-browser-plugin \
+   --disable-gstreamer-plugin \
+   --disable-gtk-module \
+   --disable-command-not-found \
+   --disable-cron \
+   --disable-dummy \
+   --enable-alpm
+   make
+}
+
+package() {
+   cd ${srcdir}/PackageKit-${pkgver}
+
+   make DESTDIR=${pkgdir} install
+}
+

Copied: packagekit/repos/community-i686/packagekit.install (from rev 126281, 
packagekit/trunk/packagekit.install)
===
--- community-i686/packagekit.install   (rev 0)
+++ community-i686/packagekit.install   2015-01-20 08:32:18 UTC (rev 126282)
@@ -0,0 +1,11 @@
+post_install() {
+   update-mime-database usr/share/mime  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: packagekit/repos/community-x86_64/PKGBUILD (from rev 126281, 
packagekit/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-01-20 08:32:18 UTC (rev 126282)
@@ -0,0 +1,58 @@
+# Maintainer: Christian Hesse m...@eworm.de
+# Contributor: Jonathan Conder jonno.con...@gmail.com
+
+pkgname='packagekit'
+pkgver=1.0.4
+pkgrel=1
+pkgdesc='A system designed to make installation and updates of packages easier'
+arch=('i686' 'x86_64')
+url='http://www.packagekit.org/'
+license=('GPL')
+depends=('dbus-glib' 'pacman' 'polkit' 'shared-mime-info' 'sqlite')
+makedepends=('dbus-glib' 'gobject-introspection' 'gtk-doc' 'intltool'
+   'networkmanager' 'pacman=4.2.0'  'pm-utils' 'polkit'
+   'shared-mime-info' 'sqlite' 'bash-completion')
+optdepends=('networkmanager: detect connection status'
+   'bash-completion: command completion in bash')
+install='packagekit.install'
+backup=('var/lib/PackageKit/transactions.db'
+   

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

2014-09-26 Thread Jan de Groot
Date: Friday, September 26, 2014 @ 12:53:50
  Author: jgc
Revision: 223054

db-move: moved packagekit from [gnome-unstable] to [testing] (i686, x86_64)

Added:
  packagekit/repos/testing-i686/
  packagekit/repos/testing-i686/PKGBUILD
(from rev 223030, packagekit/repos/gnome-unstable-i686/PKGBUILD)
  packagekit/repos/testing-x86_64/
  packagekit/repos/testing-x86_64/PKGBUILD
(from rev 223030, packagekit/repos/gnome-unstable-x86_64/PKGBUILD)
Deleted:
  packagekit/repos/gnome-unstable-i686/
  packagekit/repos/gnome-unstable-x86_64/

-+
 testing-i686/PKGBUILD   |   43 +++
 testing-x86_64/PKGBUILD |   43 +++
 2 files changed, 86 insertions(+)

Copied: packagekit/repos/testing-i686/PKGBUILD (from rev 223030, 
packagekit/repos/gnome-unstable-i686/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-09-26 10:53:50 UTC (rev 223054)
@@ -0,0 +1,43 @@
+pkgname=packagekit
+pkgver=1.0.0
+pkgrel=1
+pkgdesc=DBUS abstraction layer that allows the session user to manage 
packages in a secure way using a cross-distro, cross-architecture API
+arch=(i686 x86_64)
+license=('GPL2')
+url=http://www.packagekit.org/;
+depends=(glib2 dbus-glib pam sqlite polkit systemd pacman python)
+makedepends=(gtk3 gtk2 xmlto gtk-doc intltool bash-completion 
gobject-introspection python2)
+options=('!libtool' 'emptydirs')
+source=(http://www.freedesktop.org/software/PackageKit/releases/PackageKit-$pkgver.tar.xz)
+sha256sums=('2b7d7af178431391f64a118a0d693106e9603b9db7bcf0f9cde5c5d62a0b60bf')
+
+build() {
+  cd PackageKit-$pkgver
+  ./configure --prefix=/usr \
+  --sysconfdir=/etc \
+  --localstatedir=/var \
+  --libexecdir=/usr/lib/PackageKit \
+  --disable-static \
+  --disable-schemas-compile \
+  --disable-browser-plugin \
+  --enable-gtk-doc \
+  --enable-python3 \
+  --enable-systemd \
+  --enable-systemd-updates \
+  --enable-gstreamer-plugin \
+  --enable-alpm \
+  --disable-tests \
+  --disable-qt
+  make
+}
+
+package() {
+  cd PackageKit-$pkgver
+  make DESTDIR=${pkgdir} install
+
+  #PackageKit initializes and upgrades this at runtime
+  rm -f ${pkgdir}/var/lib/PackageKit/transactions.db
+
+  rm -rf ${pkgdir}/var/cache
+  rm -rf ${pkgdir}/var/log
+}

Copied: packagekit/repos/testing-x86_64/PKGBUILD (from rev 223030, 
packagekit/repos/gnome-unstable-x86_64/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-09-26 10:53:50 UTC (rev 223054)
@@ -0,0 +1,43 @@
+pkgname=packagekit
+pkgver=1.0.0
+pkgrel=1
+pkgdesc=DBUS abstraction layer that allows the session user to manage 
packages in a secure way using a cross-distro, cross-architecture API
+arch=(i686 x86_64)
+license=('GPL2')
+url=http://www.packagekit.org/;
+depends=(glib2 dbus-glib pam sqlite polkit systemd pacman python)
+makedepends=(gtk3 gtk2 xmlto gtk-doc intltool bash-completion 
gobject-introspection python2)
+options=('!libtool' 'emptydirs')
+source=(http://www.freedesktop.org/software/PackageKit/releases/PackageKit-$pkgver.tar.xz)
+sha256sums=('2b7d7af178431391f64a118a0d693106e9603b9db7bcf0f9cde5c5d62a0b60bf')
+
+build() {
+  cd PackageKit-$pkgver
+  ./configure --prefix=/usr \
+  --sysconfdir=/etc \
+  --localstatedir=/var \
+  --libexecdir=/usr/lib/PackageKit \
+  --disable-static \
+  --disable-schemas-compile \
+  --disable-browser-plugin \
+  --enable-gtk-doc \
+  --enable-python3 \
+  --enable-systemd \
+  --enable-systemd-updates \
+  --enable-gstreamer-plugin \
+  --enable-alpm \
+  --disable-tests \
+  --disable-qt
+  make
+}
+
+package() {
+  cd PackageKit-$pkgver
+  make DESTDIR=${pkgdir} install
+
+  #PackageKit initializes and upgrades this at runtime
+  rm -f ${pkgdir}/var/lib/PackageKit/transactions.db
+
+  rm -rf ${pkgdir}/var/cache
+  rm -rf ${pkgdir}/var/log
+}