[arch-commits] Commit in packagekit/repos (6 files)
Christian Hesse
eworm at archlinux.org
Fri Feb 12 22:05:57 UTC 2016
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 <mail at eworm.de>
+# Contributor: Jonathan Conder <jonno.conder at gmail.com>
+
+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 <mail at eworm.de>
+# Contributor: Jonathan Conder <jonno.conder at gmail.com>
+
+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-x86_64/packagekit.install (from rev 161435, packagekit/trunk/packagekit.install)
===================================================================
--- community-testing-x86_64/packagekit.install (rev 0)
+++ community-testing-x86_64/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
+}
More information about the arch-commits
mailing list