[arch-commits] Commit in (23 files)

Antonio Rojas arojas at archlinux.org
Tue Nov 10 20:26:47 UTC 2015


    Date: Tuesday, November 10, 2015 @ 21:26:46
  Author: arojas
Revision: 250575

Rename KDE4 kdegraphics libs in preparation for upcoming KF5 versions

Added:
  libkdcraw4/
  libkdcraw4/trunk/
  libkdcraw4/trunk/PKGBUILD
  libkdcraw4/trunk/libkdcraw4.install
  libkexiv2_4/
  libkexiv2_4/trunk/
  libkexiv2_4/trunk/PKGBUILD
  libkface4/
  libkface4/trunk/
  libkface4/trunk/PKGBUILD
  libkface4/trunk/libkface4.install
  libkgeomap4/
  libkgeomap4/trunk/
  libkgeomap4/trunk/PKGBUILD
  libkgeomap4/trunk/libkgeomap4.install
  libkipi4/
  libkipi4/trunk/
  libkipi4/trunk/PKGBUILD
  libkipi4/trunk/libkipi4.install
  libksane4/
  libksane4/trunk/
  libksane4/trunk/PKGBUILD
  libksane4/trunk/libksane4.install

---------------------------------------+
 libkdcraw4/trunk/PKGBUILD             |   38 +++++++++++++++++++++++++++++
 libkdcraw4/trunk/libkdcraw4.install   |   11 ++++++++
 libkexiv2_4/trunk/PKGBUILD            |   37 ++++++++++++++++++++++++++++
 libkface4/trunk/PKGBUILD              |   38 +++++++++++++++++++++++++++++
 libkface4/trunk/libkface4.install     |   11 ++++++++
 libkgeomap4/trunk/PKGBUILD            |   41 ++++++++++++++++++++++++++++++++
 libkgeomap4/trunk/libkgeomap4.install |   11 ++++++++
 libkipi4/trunk/PKGBUILD               |   38 +++++++++++++++++++++++++++++
 libkipi4/trunk/libkipi4.install       |   11 ++++++++
 libksane4/trunk/PKGBUILD              |   38 +++++++++++++++++++++++++++++
 libksane4/trunk/libksane4.install     |   11 ++++++++
 11 files changed, 285 insertions(+)

Added: libkdcraw4/trunk/PKGBUILD
===================================================================
--- libkdcraw4/trunk/PKGBUILD	                        (rev 0)
+++ libkdcraw4/trunk/PKGBUILD	2015-11-10 20:26:46 UTC (rev 250575)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Antonio Rojas <arojas at archlinux.org>
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Andrea Scarpino <andrea at archlinux.org>
+
+pkgname=libkdcraw4
+_pkgname=libkdcraw
+pkgver=15.08.3
+pkgrel=1
+pkgdesc="A C++ interface used to decode RAW picture"
+url="https://projects.kde.org/projects/kde/kdegraphics/libs/libkdcraw"
+arch=(i686 x86_64)
+license=(GPL LGPL FDL)
+depends=(kdelibs libraw)
+makedepends=(cmake automoc4)
+replaces=('libkdcraw<15.11')
+conflicts=('libkdcraw<15.11')
+install=$pkgname.install
+source=("http://download.kde.org/stable/applications/$pkgver/src/$_pkgname-$pkgver.tar.xz")
+sha1sums=('faf93404a36162a381abcafd289e3de811774a25')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$_pkgname-$pkgver \
+    -DCMAKE_BUILD_TYPE=Release \
+    -DKDE4_BUILD_TESTS=OFF \
+    -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


Property changes on: libkdcraw4/trunk/PKGBUILD
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: libkdcraw4/trunk/libkdcraw4.install
===================================================================
--- libkdcraw4/trunk/libkdcraw4.install	                        (rev 0)
+++ libkdcraw4/trunk/libkdcraw4.install	2015-11-10 20:26:46 UTC (rev 250575)
@@ -0,0 +1,11 @@
+post_install() {
+	xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+	post_install
+}
+
+post_remove() {
+	post_install
+}

Added: libkexiv2_4/trunk/PKGBUILD
===================================================================
--- libkexiv2_4/trunk/PKGBUILD	                        (rev 0)
+++ libkexiv2_4/trunk/PKGBUILD	2015-11-10 20:26:46 UTC (rev 250575)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Antonio Rojas <arojas at archlinux.org>
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Andrea Scarpino <andrea at archlinux.org>
+
+pkgname=libkexiv2_4
+_pkgname=libkexiv2
+pkgver=15.08.3
+pkgrel=1
+pkgdesc="A library to manipulate pictures metadata"
+url="https://projects.kde.org/projects/kde/kdegraphics/libs/libkexiv2"
+arch=(i686 x86_64)
+license=(GPL LGPL FDL)
+depends=(kdelibs)
+makedepends=(cmake automoc4)
+replaces=('libkexiv2<15.11')
+conflicts=('libkexiv2<15.11')
+source=("http://download.kde.org/stable/applications/$pkgver/src/$_pkgname-$pkgver.tar.xz")
+sha1sums=('09adf7887dc644431a6930ba645162707c16bb3d')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$_pkgname-$pkgver \
+    -DCMAKE_BUILD_TYPE=Release \
+    -DKDE4_BUILD_TESTS=OFF \
+    -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


Property changes on: libkexiv2_4/trunk/PKGBUILD
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: libkface4/trunk/PKGBUILD
===================================================================
--- libkface4/trunk/PKGBUILD	                        (rev 0)
+++ libkface4/trunk/PKGBUILD	2015-11-10 20:26:46 UTC (rev 250575)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Antonio Rojas <arojas at archlinux.org>
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Andrea Scarpino <andrea at archlinux.org>
+
+pkgname=libkface4
+_pkgname=libkface
+pkgver=15.08.3
+pkgrel=1
+pkgdesc="A Qt/C++ wrapper around LibFace library to perform face recognition and detection over pictures"
+url="https://projects.kde.org/projects/kde/kdegraphics/libs/libkface"
+arch=(i686 x86_64)
+license=(GPL LGPL FDL)
+depends=(kdelibs opencv)
+makedepends=(cmake automoc4)
+replaces=('libkface<15.11')
+conflicts=('libkface<15.11')
+install=$pkgname.install
+source=("http://download.kde.org/stable/applications/$pkgver/src/$_pkgname-$pkgver.tar.xz")
+sha1sums=('cc65ff362ffad872917aac0a184c6903a90b3cbe')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$_pkgname-$pkgver \
+    -DCMAKE_BUILD_TYPE=Release \
+    -DKDE4_BUILD_TESTS=OFF \
+    -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


Property changes on: libkface4/trunk/PKGBUILD
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: libkface4/trunk/libkface4.install
===================================================================
--- libkface4/trunk/libkface4.install	                        (rev 0)
+++ libkface4/trunk/libkface4.install	2015-11-10 20:26:46 UTC (rev 250575)
@@ -0,0 +1,11 @@
+post_install() {
+	xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+	post_install
+}
+
+post_remove() {
+	post_install
+}

Added: libkgeomap4/trunk/PKGBUILD
===================================================================
--- libkgeomap4/trunk/PKGBUILD	                        (rev 0)
+++ libkgeomap4/trunk/PKGBUILD	2015-11-10 20:26:46 UTC (rev 250575)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Antonio Rojas <arojas at archlinux.org>
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Andrea Scarpino <andrea at archlinux.org>
+
+pkgname=libkgeomap4
+_pkgname=libkgeomap
+pkgver=15.08.3
+pkgrel=1
+pkgdesc="A wrapper around world map components for browsing and arranging photos on a map"
+url="https://projects.kde.org/projects/kde/kdegraphics/libs/libkgeomap"
+arch=(i686 x86_64)
+license=(GPL LGPL FDL)
+depends=(kdelibs libmarble4)
+makedepends=(cmake automoc4)
+replaces=('libkgeomap<15.11')
+conflicts=('libkgeomap<15.11')
+install=$pkgname.install
+source=("http://download.kde.org/stable/applications/$pkgver/src/$_pkgname-$pkgver.tar.xz")
+sha1sums=('d6cf746741b9e344890db7dac36a7900b8f9ad62')
+
+prepare() {
+  mkdir -p build
+
+# Fix build with libmarble4
+  sed -e 's|#include <marble|#include <marble4|' -i $_pkgname-$pkgver/libkgeomap/*.cpp -i $_pkgname-$pkgver/libkgeomap/*.h
+}
+
+build() {
+  cd build
+  cmake ../$_pkgname-$pkgver \
+    -DCMAKE_BUILD_TYPE=Release \
+    -DKDE4_BUILD_TESTS=OFF \
+    -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


Property changes on: libkgeomap4/trunk/PKGBUILD
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: libkgeomap4/trunk/libkgeomap4.install
===================================================================
--- libkgeomap4/trunk/libkgeomap4.install	                        (rev 0)
+++ libkgeomap4/trunk/libkgeomap4.install	2015-11-10 20:26:46 UTC (rev 250575)
@@ -0,0 +1,11 @@
+post_install() {
+	xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+	post_install
+}
+
+post_remove() {
+	post_install
+}

Added: libkipi4/trunk/PKGBUILD
===================================================================
--- libkipi4/trunk/PKGBUILD	                        (rev 0)
+++ libkipi4/trunk/PKGBUILD	2015-11-10 20:26:46 UTC (rev 250575)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Antonio Rojas <arojas at archlinux.org>
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Andrea Scarpino <andrea at archlinux.org>
+
+pkgname=libkipi4
+_pkgname=libkipi
+pkgver=15.08.3
+pkgrel=1
+pkgdesc="An interface to use kipi-plugins from a KDE application"
+url="https://projects.kde.org/projects/kde/kdegraphics/libs/libkipi"
+arch=(i686 x86_64)
+license=(GPL LGPL FDL)
+depends=(kdelibs)
+makedepends=(cmake automoc4)
+replaces=('libkipi<15.11')
+conflicts=('libkipi<15.11')
+install=$pkgname.install
+source=("http://download.kde.org/stable/applications/$pkgver/src/$_pkgname-$pkgver.tar.xz")
+sha1sums=('e8d260f58d3287eec629fc8237f411831190f475')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$_pkgname-$pkgver \
+    -DCMAKE_BUILD_TYPE=Release \
+    -DKDE4_BUILD_TESTS=OFF \
+    -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


Property changes on: libkipi4/trunk/PKGBUILD
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: libkipi4/trunk/libkipi4.install
===================================================================
--- libkipi4/trunk/libkipi4.install	                        (rev 0)
+++ libkipi4/trunk/libkipi4.install	2015-11-10 20:26:46 UTC (rev 250575)
@@ -0,0 +1,11 @@
+post_install() {
+	xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+	post_install
+}
+
+post_remove() {
+	post_install
+}

Added: libksane4/trunk/PKGBUILD
===================================================================
--- libksane4/trunk/PKGBUILD	                        (rev 0)
+++ libksane4/trunk/PKGBUILD	2015-11-10 20:26:46 UTC (rev 250575)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Antonio Rojas <arojas at archlinux.org>
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Andrea Scarpino <andrea at archlinux.org>
+
+pkgname=libksane4
+_pkgname=libksane
+pkgver=15.08.3
+pkgrel=1
+pkgdesc="An image scanning library"
+url="https://projects.kde.org/projects/kde/kdegraphics/libs/libksane"
+arch=(i686 x86_64)
+license=(GPL LGPL FDL)
+depends=(kdelibs sane)
+makedepends=(cmake automoc4)
+replaces=('libksane<15.11')
+conflicts=('libksane<15.11')
+install=$pkgname.install
+source=("http://download.kde.org/stable/applications/$pkgver/src/$_pkgname-$pkgver.tar.xz")
+sha1sums=('2707d84bdcd0ec568ff47066012c3086b07477cc')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$_pkgname-$pkgver \
+    -DCMAKE_BUILD_TYPE=Release \
+    -DKDE4_BUILD_TESTS=OFF \
+    -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


Property changes on: libksane4/trunk/PKGBUILD
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: libksane4/trunk/libksane4.install
===================================================================
--- libksane4/trunk/libksane4.install	                        (rev 0)
+++ libksane4/trunk/libksane4.install	2015-11-10 20:26:46 UTC (rev 250575)
@@ -0,0 +1,11 @@
+post_install() {
+	xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+	post_install
+}
+
+post_remove() {
+	post_install
+}



More information about the arch-commits mailing list