[arch-commits] Commit in libkolab (kde-unstable kde-unstable/PKGBUILD)

2015-11-20 Thread Antonio Rojas
Date: Friday, November 20, 2015 @ 09:14:27
  Author: arojas
Revision: 251677

Git snapshot for kde-unstable

Added:
  libkolab/kde-unstable/
Modified:
  libkolab/kde-unstable/PKGBUILD

--+
 PKGBUILD |   18 +++---
 1 file changed, 7 insertions(+), 11 deletions(-)

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2015-08-19 17:27:31 UTC (rev 244387)
+++ kde-unstable/PKGBUILD   2015-11-20 08:14:27 UTC (rev 251677)
@@ -1,9 +1,9 @@
 # $Id$
-# Maintaier: Antonio Rojas 
+# Maintainer: Antonio Rojas 
 # Contributor: Andrea Scarpino 
 
 pkgname=libkolab
-pkgver=1.0.1
+pkgver=1.0.1.git20151120
 pkgrel=1
 pkgdesc="Advanced Kolab Object Handling Library"
 url='http://git.kolab.org/libkolab/'
@@ -11,22 +11,18 @@
 license=(GPL)
 depends=(libkolabxml akonadi-notes akonadi-client kcontacts kcalutils)
 makedepends=(extra-cmake-modules kdoctools boost)
-source=("http://mirror.kolabsys.com/pub/releases/$pkgname-$pkgver.tar.gz"{,.gpg}
 'fix-build.patch')
-md5sums=('3e6a023da106fd6723f92cf96aad47c6'
- 'e406079c5bd1bbc5eab96d9dead42714'
- '46198b207b39d9f067812ce10114ab19')
+makedepends+=(git)
+#source=("http://mirror.kolabsys.com/pub/releases/$pkgname-$pkgver.tar.gz"{,.gpg})
+source=("git+https://git.kolab.org/diffusion/LK/libkolab.git#commit=6cb420ec6f71;)
+md5sums=('SKIP')
 
 prepare() {
   mkdir -p build
-
-# Fix build against kcontacts 15.08
-  cd $pkgname-$pkgver
-  patch -p1 -i "$srcdir"/fix-build.patch
 }
 
 build() {
   cd build
-  cmake ../$pkgname-$pkgver \
+  cmake ../$pkgname \
 -DCMAKE_BUILD_TYPE=Release \
 -DCMAKE_INSTALL_PREFIX=/usr
   make


[arch-commits] Commit in libkolab (kde-unstable kde-unstable/PKGBUILD)

2015-07-28 Thread Antonio Rojas
Date: Tuesday, July 28, 2015 @ 11:35:51
  Author: arojas
Revision: 242560

Update to 1.0.0, build fails

Added:
  libkolab/kde-unstable/
Modified:
  libkolab/kde-unstable/PKGBUILD

--+
 PKGBUILD |   29 -
 1 file changed, 12 insertions(+), 17 deletions(-)

Modified: kde-unstable/PKGBUILD
===
--- trunk/PKGBUILD  2015-05-06 11:51:05 UTC (rev 238545)
+++ kde-unstable/PKGBUILD   2015-07-28 09:35:51 UTC (rev 242560)
@@ -1,33 +1,28 @@
 # $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
+# Maintaier: Antonio Rojas aro...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
 
 pkgname=libkolab
-pkgver=0.6.0
+pkgver=1.0.0
 pkgrel=1
 pkgdesc=Advanced Kolab Object Handling Library
 url='http://git.kolab.org/libkolab/'
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('libkolabxml' 'kdepimlibs')
-makedepends=('cmake' 'automoc4' 'boost')
-source=(http://mirror.kolabsys.com/pub/releases/${pkgname}-${pkgver}.tar.gz{,.gpg}
 'check_for_generic_tag.patch')
-md5sums=('3c4fc1fec2dfcc0841f29de8f6ff0cd3'
- '237fe4fda389cb8cf167e84aea2b90b0'
- '6588bc470183e56ca77f12e1dbb5b1ee')
+arch=(i686 x86_64)
+license=(GPL)
+depends=(libkolabxml akonadi-notes akonadi-client kcontacts kcalutils)
+makedepends=(extra-cmake-modules kdoctools boost)
+source=(http://mirror.kolabsys.com/pub/releases/$pkgname-$pkgver.tar.gz{,.gpg})
+md5sums=('3670aae0d6b2ad32f65abd65352e79eb'
+ 'c88d8e0945048f798a85b38e9d401460')
 
 prepare() {
   mkdir -p build
-
-  cd $pkgname-$pkgver
-# fix build against kdepimlibs 4.14
-  patch -p1 -i $srcdir/check_for_generic_tag.patch
 }
 
 build() {
   cd build
-  cmake ../${pkgname}-${pkgver} \
+  cmake ../$pkgname-$pkgver \
 -DCMAKE_BUILD_TYPE=Release \
--DCMAKE_SKIP_RPATH=ON \
 -DCMAKE_INSTALL_PREFIX=/usr
   make
 }
@@ -34,5 +29,5 @@
 
 package() {
   cd build
-  make DESTDIR=${pkgdir} install
+  make DESTDIR=$pkgdir install
 }