[arch-commits] Commit in billreminder/repos/community-any (4 files)
Balló György
bgyorgy at nymeria.archlinux.org
Sat Jan 11 10:18:30 UTC 2014
Date: Saturday, January 11, 2014 @ 11:18:30
Author: bgyorgy
Revision: 103747
archrelease: copy trunk to community-any
Added:
billreminder/repos/community-any/PKGBUILD
(from rev 103746, billreminder/trunk/PKGBUILD)
billreminder/repos/community-any/billreminder.install
(from rev 103746, billreminder/trunk/billreminder.install)
Deleted:
billreminder/repos/community-any/PKGBUILD
billreminder/repos/community-any/billreminder.install
----------------------+
PKGBUILD | 90 ++++++++++++++++++++++++++-----------------------
billreminder.install | 30 ++++++++--------
2 files changed, 64 insertions(+), 56 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2014-01-11 10:18:25 UTC (rev 103746)
+++ PKGBUILD 2014-01-11 10:18:30 UTC (rev 103747)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau <dragonlord at aur.archlinus.org>
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Daniel J Griffiths <ghost1227 at archlinux.us>
-# Contributor: Hugo Doria <hugo at archlinux.org>
-
-pkgname=billreminder
-pkgver=0.4.0
-pkgrel=5
-pkgdesc="Small and quick accounting application designed to allow for easy tracking of bills"
-arch=('any')
-url="http://billreminder.gnulinuxbrasil.org/"
-license=('GPL3')
-depends=('python2-pysqlite' 'python2-dbus' 'desktop-file-utils' 'pygtk' 'python2-xdg'
- 'xdg-utils' 'python2-gconf' 'python2-sqlalchemy' 'hicolor-icon-theme')
-makedepends=('intltool')
-install=$pkgname.install
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('6a89584a1c90f661a7954a0c5c8bd392b8e2712d6cfd759fb6e588548ac8ff4e')
-
-build() {
- cd "${srcdir}/${pkgname}-${pkgver}"
-
- # python2 fix
- for file in billreminder.in billreminderd.in src/gui/widgets/*.py ; do
- sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' $file
- done
-
- ./configure \
- --prefix=/usr \
- --sysconfdir=/etc \
- --with-gconf-schema-file-dir=/usr/share/gconf/schemas
-
- make
-}
-
-package() {
- cd "${srcdir}/${pkgname}-${pkgver}"
-
- make DESTDIR="${pkgdir}" install
-}
Copied: billreminder/repos/community-any/PKGBUILD (from rev 103746, billreminder/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2014-01-11 10:18:30 UTC (rev 103747)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau <dragonlord at aur.archlinus.org>
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Daniel J Griffiths <ghost1227 at archlinux.us>
+# Contributor: Hugo Doria <hugo at archlinux.org>
+
+pkgname=billreminder
+pkgver=0.4.0
+pkgrel=6
+pkgdesc="Small and quick accounting application designed to allow for easy tracking of bills"
+arch=('any')
+url="http://billreminder.gnulinuxbrasil.org/"
+license=('GPL3')
+depends=('python2-dbus' 'desktop-file-utils' 'pygtk' 'python2-xdg'
+ 'xdg-utils' 'python2-gconf' 'python2-sqlalchemy' 'hicolor-icon-theme')
+makedepends=('intltool')
+install=$pkgname.install
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('6a89584a1c90f661a7954a0c5c8bd392b8e2712d6cfd759fb6e588548ac8ff4e')
+
+prepare() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+
+ # python2 fix
+ for file in billreminder.in billreminderd.in src/gui/widgets/*.py ; do
+ sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' $file
+ done
+
+ # fix python version check
+ sed -i 's/"x$PYTHON_VERSION" = "x2.5"/"x$PYTHON_VERSION" > "x2.4"/' configure
+}
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+
+ ./configure \
+ --prefix=/usr \
+ --sysconfdir=/etc \
+ --disable-schemas-install \
+ --with-gconf-schema-file-dir=/usr/share/gconf/schemas
+
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+
+ make DESTDIR="${pkgdir}" install
+}
Deleted: billreminder.install
===================================================================
--- billreminder.install 2014-01-11 10:18:25 UTC (rev 103746)
+++ billreminder.install 2014-01-11 10:18:30 UTC (rev 103747)
@@ -1,15 +0,0 @@
-post_install() {
- gconfpkg --install billreminder
-
- update-desktop-database -q
- which xdg-icon-resource 1>/dev/null 2>/dev/null && xdg-icon-resource forceupdate || true
-}
-
-pre_remove() {
- gconfpkg --uninstall billreminder
-}
-
-post_remove() {
- update-desktop-database -q
- which xdg-icon-resource 1>/dev/null 2>/dev/null && xdg-icon-resource forceupdate || true
-}
Copied: billreminder/repos/community-any/billreminder.install (from rev 103746, billreminder/trunk/billreminder.install)
===================================================================
--- billreminder.install (rev 0)
+++ billreminder.install 2014-01-11 10:18:30 UTC (rev 103747)
@@ -0,0 +1,15 @@
+post_install() {
+ gconfpkg --install billreminder
+
+ update-desktop-database -q
+ which xdg-icon-resource 1>/dev/null 2>/dev/null && xdg-icon-resource forceupdate || true
+}
+
+pre_remove() {
+ gconfpkg --uninstall billreminder
+}
+
+post_remove() {
+ update-desktop-database -q
+ which xdg-icon-resource 1>/dev/null 2>/dev/null && xdg-icon-resource forceupdate || true
+}
More information about the arch-commits
mailing list