[arch-commits] Commit in libutf8proc/repos (8 files)

2017-10-31 Thread Alexander Rødseth
Date: Tuesday, October 31, 2017 @ 10:02:01
  Author: arodseth
Revision: 264882

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

Added:
  libutf8proc/repos/community-i686/PKGBUILD
(from rev 264881, libutf8proc/trunk/PKGBUILD)
  libutf8proc/repos/community-i686/libutf8proc.pc
(from rev 264881, libutf8proc/trunk/libutf8proc.pc)
  libutf8proc/repos/community-x86_64/PKGBUILD
(from rev 264881, libutf8proc/trunk/PKGBUILD)
  libutf8proc/repos/community-x86_64/libutf8proc.pc
(from rev 264881, libutf8proc/trunk/libutf8proc.pc)
Deleted:
  libutf8proc/repos/community-i686/PKGBUILD
  libutf8proc/repos/community-i686/libutf8proc.pc
  libutf8proc/repos/community-x86_64/PKGBUILD
  libutf8proc/repos/community-x86_64/libutf8proc.pc

-+
 /PKGBUILD   |  116 ++
 /libutf8proc.pc |   20 ++
 community-i686/PKGBUILD |   54 -
 community-i686/libutf8proc.pc   |   10 ---
 community-x86_64/PKGBUILD   |   54 -
 community-x86_64/libutf8proc.pc |   10 ---
 6 files changed, 136 insertions(+), 128 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-10-31 10:01:47 UTC (rev 264881)
+++ community-i686/PKGBUILD 2017-10-31 10:02:01 UTC (rev 264882)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-
-pkgname=libutf8proc
-pkgver=1.3.1_2
-pkgrel=3
-pkgdesc='C library for processing UTF-8 encoded Unicode strings'
-arch=('x86_64' 'i686')
-url='http://git.netsurf-browser.org/libutf8proc.git/'
-license=('MIT' 'custom')
-replaces=('utf8proc')
-depends=('glibc')
-makedepends=('git' 'ninja' 'cmake')
-source=("git://git.netsurf-browser.org/libutf8proc.git#tag=release/${pkgver/_/-}"
-'libutf8proc.pc')
-sha256sums=('SKIP'
-'345ea6782c361f5d38808c13e1e6ce6c2bef69a22a97d115b8ce950d74de1ed1')
-
-prepare() {
-  cd "$pkgname"
-
-  rm Makefile
-  find . -iwholename '*cmake*' -not -name CMakeLists.txt -not -name 
utils.cmake -delete
-  cp -r src/* include/$pkgname/* .
-}
-
-build() {
-  cd "$pkgname"
-
-  mkdir -p build
-  cd build
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DBUILD_SHARED_LIBS=ON \
--G Ninja
-  ninja
-}
-
-package() {
-  cd "$pkgname"
-
-  # The CMake/install configuration does not work for libutf8proc
-  # DESTDIR="$pkgdir" ninja -C "$pkgname-$pkgver/build" install
-
-  install -Dm644 utf8proc.h "$pkgdir/usr/include/utf8proc.h"
-  install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
-  install -Dm644 ../libutf8proc.pc "$pkgdir/usr/lib/pkgconfig/libutf8proc.pc"
-  install -Dm644 build/libutf8proc.so.1.3.1 
"$pkgdir/usr/lib/libutf8proc.so.1.3.1"
-  ln -s /usr/lib/libutf8proc.so.1.3.1 "$pkgdir/usr/lib/libutf8proc.so.1"
-  ln -s /usr/lib/libutf8proc.so.1.3.1 "$pkgdir/usr/lib/libutf8proc.so"
-}
-
-# getver: git.netsurf-browser.org/libutf8proc.git/
-# vim:set ts=2 sw=2 et:

Copied: libutf8proc/repos/community-i686/PKGBUILD (from rev 264881, 
libutf8proc/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-10-31 10:02:01 UTC (rev 264882)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+
+pkgname=libutf8proc
+pkgver=1.3.1_3
+pkgrel=1
+pkgdesc='C library for processing UTF-8 encoded Unicode strings'
+arch=('x86_64' 'i686')
+url='http://git.netsurf-browser.org/libutf8proc.git/'
+license=('MIT' 'custom')
+makedepends=('cmake' 'git' 'ninja')
+source=("git://git.netsurf-browser.org/libutf8proc.git#tag=release/${pkgver/_/-}"
+'libutf8proc.pc')
+sha256sums=('SKIP'
+'345ea6782c361f5d38808c13e1e6ce6c2bef69a22a97d115b8ce950d74de1ed1')
+
+prepare() {
+  cd "$pkgname"
+
+  find . -iwholename '*cmake*' \
+-not -name CMakeLists.txt \
+-not -name utils.cmake \
+-delete
+  rm -fv Makefile
+  cp -r src/* include/$pkgname/* .
+}
+
+build() {
+  cd "$pkgname"
+
+  mkdir -p build
+  cd build
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DBUILD_SHARED_LIBS=ON \
+-G Ninja
+  ninja
+}
+
+package() {
+  cd "$pkgname"
+
+  # The CMake/install configuration does not work for libutf8proc
+  # DESTDIR="$pkgdir" ninja -C "$pkgname-$pkgver/build" install
+
+  install -Dm644 utf8proc.h "$pkgdir/usr/include/utf8proc.h"
+  install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
+  install -Dm644 "$srcdir/libutf8proc.pc" \
+"$pkgdir/usr/lib/pkgconfig/libutf8proc.pc"
+  install -Dm644 build/libutf8proc.so.1.3.1 \
+"$pkgdir/usr/lib/libutf8proc.so.1.3.1"
+
+  ln -s /usr/lib/libutf8proc.so.1.3.1 "$pkgdir/usr/lib/libutf8proc.so.1"
+  ln -s /usr/lib/libutf8proc.so.1.3.1 "$pkgdir/usr/lib/libutf8proc.so"
+}
+
+# getver: git.netsurf-browser.org/libutf8proc.git/
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in libutf8proc/repos (8 files)

2016-05-28 Thread Alexander Rødseth
Date: Saturday, May 28, 2016 @ 23:45:42
  Author: arodseth
Revision: 177393

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

Added:
  libutf8proc/repos/community-i686/PKGBUILD
(from rev 177392, libutf8proc/trunk/PKGBUILD)
  libutf8proc/repos/community-i686/libutf8proc.pc
(from rev 177392, libutf8proc/trunk/libutf8proc.pc)
  libutf8proc/repos/community-x86_64/PKGBUILD
(from rev 177392, libutf8proc/trunk/PKGBUILD)
  libutf8proc/repos/community-x86_64/libutf8proc.pc
(from rev 177392, libutf8proc/trunk/libutf8proc.pc)
Deleted:
  libutf8proc/repos/community-i686/PKGBUILD
  libutf8proc/repos/community-i686/libutf8proc.pc
  libutf8proc/repos/community-x86_64/PKGBUILD
  libutf8proc/repos/community-x86_64/libutf8proc.pc

-+
 /PKGBUILD   |  108 ++
 /libutf8proc.pc |   20 +++
 community-i686/PKGBUILD |   54 ---
 community-i686/libutf8proc.pc   |   10 ---
 community-x86_64/PKGBUILD   |   54 ---
 community-x86_64/libutf8proc.pc |   10 ---
 6 files changed, 128 insertions(+), 128 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-05-28 21:45:24 UTC (rev 177392)
+++ community-i686/PKGBUILD 2016-05-28 21:45:42 UTC (rev 177393)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-
-pkgname=libutf8proc
-pkgver=1.3.1_2
-pkgrel=2
-pkgdesc='C library for processing UTF-8 encoded Unicode strings'
-arch=('x86_64' 'i686')
-url='http://git.netsurf-browser.org/libutf8proc.git/'
-license=('MIT' 'custom')
-replaces=('utf8proc')
-depends=('glibc')
-makedepends=('git' 'ninja' 'cmake')
-source=("git://git.netsurf-browser.org/libutf8proc.git#tag=release/${pkgver/_/-}"
- 'libutf8proc.pc')
-sha256sums=('SKIP'
-'345ea6782c361f5d38808c13e1e6ce6c2bef69a22a97d115b8ce950d74de1ed1')
-
-prepare() {
-  cd "$pkgname"
-
-  rm Makefile
-  find . -iwholename '*cmake*' -not -name CMakeLists.txt -not -name 
utils.cmake -delete
-  cp -r src/* include/$pkgname/* .
-}
-
-build() {
-  cd "$pkgname"
-
-  mkdir -p build
-  cd build
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DBUILD_SHARED_LIBS=ON \
--G Ninja
-  ninja
-}
-
-package() {
-  cd "$pkgname"
-
-  # The CMake/install configuration does not work for libutf8proc
-  # DESTDIR="$pkgdir" ninja -C "$pkgname-$pkgver/build" install
-
-  install -Dm644 utf8proc.h "$pkgdir/usr/include/utf8proc.h"
-  install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
-  install -Dm644 ../libutf8proc.pc "$pkgdir/usr/lib/pkgconfig/libutf8proc.pc"
-  install -Dm644 build/libutf8proc.so.1.3.1 
"$pkgdir/usr/lib/libutf8proc.so.1.3.1"
-  ln -s /usr/lib/libutf8proc.so.1.3.1 "$pkgdir/usr/lib/libutf8proc.so.1"
-  ln -s /usr/lib/libutf8proc.so.1.3.1 "$pkgdir/usr/lib/libutf8proc.so"
-}
-
-# getver: git.netsurf-browser.org/libutf8proc.git/
-# vim:set ts=2 sw=2 et:

Copied: libutf8proc/repos/community-i686/PKGBUILD (from rev 177392, 
libutf8proc/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-05-28 21:45:42 UTC (rev 177393)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+
+pkgname=libutf8proc
+pkgver=1.3.1_2
+pkgrel=3
+pkgdesc='C library for processing UTF-8 encoded Unicode strings'
+arch=('x86_64' 'i686')
+url='http://git.netsurf-browser.org/libutf8proc.git/'
+license=('MIT' 'custom')
+replaces=('utf8proc')
+depends=('glibc')
+makedepends=('git' 'ninja' 'cmake')
+source=("git://git.netsurf-browser.org/libutf8proc.git#tag=release/${pkgver/_/-}"
+'libutf8proc.pc')
+sha256sums=('SKIP'
+'345ea6782c361f5d38808c13e1e6ce6c2bef69a22a97d115b8ce950d74de1ed1')
+
+prepare() {
+  cd "$pkgname"
+
+  rm Makefile
+  find . -iwholename '*cmake*' -not -name CMakeLists.txt -not -name 
utils.cmake -delete
+  cp -r src/* include/$pkgname/* .
+}
+
+build() {
+  cd "$pkgname"
+
+  mkdir -p build
+  cd build
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DBUILD_SHARED_LIBS=ON \
+-G Ninja
+  ninja
+}
+
+package() {
+  cd "$pkgname"
+
+  # The CMake/install configuration does not work for libutf8proc
+  # DESTDIR="$pkgdir" ninja -C "$pkgname-$pkgver/build" install
+
+  install -Dm644 utf8proc.h "$pkgdir/usr/include/utf8proc.h"
+  install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
+  install -Dm644 ../libutf8proc.pc "$pkgdir/usr/lib/pkgconfig/libutf8proc.pc"
+  install -Dm644 build/libutf8proc.so.1.3.1 
"$pkgdir/usr/lib/libutf8proc.so.1.3.1"
+  ln -s /usr/lib/libutf8proc.so.1.3.1 "$pkgdir/usr/lib/libutf8proc.so.1"
+  ln -s /usr/lib/libutf8proc.so.1.3.1 "$pkgdir/usr/lib/libutf8proc.so"
+}
+
+# getver: git.netsurf-browser.org/libutf8proc.git/
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in libutf8proc/repos (8 files)

2016-05-28 Thread Alexander Rødseth
Date: Saturday, May 28, 2016 @ 23:40:19
  Author: arodseth
Revision: 177389

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

Added:
  libutf8proc/repos/community-i686/PKGBUILD
(from rev 177388, libutf8proc/trunk/PKGBUILD)
  libutf8proc/repos/community-i686/libutf8proc.pc
(from rev 177388, libutf8proc/trunk/libutf8proc.pc)
  libutf8proc/repos/community-x86_64/PKGBUILD
(from rev 177388, libutf8proc/trunk/PKGBUILD)
  libutf8proc/repos/community-x86_64/libutf8proc.pc
(from rev 177388, libutf8proc/trunk/libutf8proc.pc)
Deleted:
  libutf8proc/repos/community-i686/PKGBUILD
  libutf8proc/repos/community-i686/libutf8proc.pc
  libutf8proc/repos/community-x86_64/PKGBUILD
  libutf8proc/repos/community-x86_64/libutf8proc.pc

-+
 /PKGBUILD   |  108 ++
 /libutf8proc.pc |   20 +++
 community-i686/PKGBUILD |   54 ---
 community-i686/libutf8proc.pc   |   10 ---
 community-x86_64/PKGBUILD   |   54 ---
 community-x86_64/libutf8proc.pc |   10 ---
 6 files changed, 128 insertions(+), 128 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-05-28 21:18:07 UTC (rev 177388)
+++ community-i686/PKGBUILD 2016-05-28 21:40:19 UTC (rev 177389)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-
-pkgname=libutf8proc
-pkgver=1.3.1_2
-pkgrel=2
-pkgdesc='C library for processing UTF-8 encoded Unicode strings'
-arch=('x86_64' 'i686')
-url='http://git.netsurf-browser.org/libutf8proc.git/'
-license=('MIT' 'custom')
-replaces=('utf8proc')
-depends=('glibc')
-makedepends=('git' 'ninja' 'cmake')
-source=("git://git.netsurf-browser.org/libutf8proc.git#tag=release/${pkgver/_/-}"
- 'libutf8proc.pc')
-sha256sums=('SKIP'
-'345ea6782c361f5d38808c13e1e6ce6c2bef69a22a97d115b8ce950d74de1ed1')
-
-prepare() {
-  cd "$pkgname"
-
-  rm Makefile
-  find . -iwholename '*cmake*' -not -name CMakeLists.txt -not -name 
utils.cmake -delete
-  cp -r src/* include/$pkgname/* .
-}
-
-build() {
-  cd "$pkgname"
-
-  mkdir -p build
-  cd build
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DBUILD_SHARED_LIBS=ON \
--G Ninja
-  ninja
-}
-
-package() {
-  cd "$pkgname"
-
-  # The CMake/install configuration does not work for libutf8proc
-  # DESTDIR="$pkgdir" ninja -C "$pkgname-$pkgver/build" install
-
-  install -Dm644 utf8proc.h "$pkgdir/usr/include/utf8proc.h"
-  install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
-  install -Dm644 ../libutf8proc.pc "$pkgdir/usr/lib/pkgconfig/libutf8proc.pc"
-  install -Dm644 build/libutf8proc.so.1.3.1 
"$pkgdir/usr/lib/libutf8proc.so.1.3.1"
-  ln -s /usr/lib/libutf8proc.so.1.3.1 "$pkgdir/usr/lib/libutf8proc.so.1"
-  ln -s /usr/lib/libutf8proc.so.1.3.1 "$pkgdir/usr/lib/libutf8proc.so"
-}
-
-# getver: git.netsurf-browser.org/libutf8proc.git/
-# vim:set ts=2 sw=2 et:

Copied: libutf8proc/repos/community-i686/PKGBUILD (from rev 177388, 
libutf8proc/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-05-28 21:40:19 UTC (rev 177389)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+
+pkgname=libutf8proc
+pkgver=1.3.1_2
+pkgrel=2
+pkgdesc='C library for processing UTF-8 encoded Unicode strings'
+arch=('x86_64' 'i686')
+url='http://git.netsurf-browser.org/libutf8proc.git/'
+license=('MIT' 'custom')
+replaces=('utf8proc')
+depends=('glibc')
+makedepends=('git' 'ninja' 'cmake')
+source=("git://git.netsurf-browser.org/libutf8proc.git#tag=release/${pkgver/_/-}"
+ 'libutf8proc.pc')
+sha256sums=('SKIP'
+'345ea6782c361f5d38808c13e1e6ce6c2bef69a22a97d115b8ce950d74de1ed1')
+
+prepare() {
+  cd "$pkgname"
+
+  rm Makefile
+  find . -iwholename '*cmake*' -not -name CMakeLists.txt -not -name 
utils.cmake -delete
+  cp -r src/* include/$pkgname/* .
+}
+
+build() {
+  cd "$pkgname"
+
+  mkdir -p build
+  cd build
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DBUILD_SHARED_LIBS=ON \
+-G Ninja
+  ninja
+}
+
+package() {
+  cd "$pkgname"
+
+  # The CMake/install configuration does not work for libutf8proc
+  # DESTDIR="$pkgdir" ninja -C "$pkgname-$pkgver/build" install
+
+  install -Dm644 utf8proc.h "$pkgdir/usr/include/utf8proc.h"
+  install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
+  install -Dm644 ../libutf8proc.pc "$pkgdir/usr/lib/pkgconfig/libutf8proc.pc"
+  install -Dm644 build/libutf8proc.so.1.3.1 
"$pkgdir/usr/lib/libutf8proc.so.1.3.1"
+  ln -s /usr/lib/libutf8proc.so.1.3.1 "$pkgdir/usr/lib/libutf8proc.so.1"
+  ln -s /usr/lib/libutf8proc.so.1.3.1 "$pkgdir/usr/lib/libutf8proc.so"
+}
+
+# getver: git.netsurf-browser.org/libutf8proc.git/
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in libutf8proc/repos (8 files)

2016-04-30 Thread Alexander Rødseth
Date: Saturday, April 30, 2016 @ 14:07:18
  Author: arodseth
Revision: 173132

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

Added:
  libutf8proc/repos/community-i686/PKGBUILD
(from rev 173131, libutf8proc/trunk/PKGBUILD)
  libutf8proc/repos/community-i686/libutf8proc.pc
(from rev 173131, libutf8proc/trunk/libutf8proc.pc)
  libutf8proc/repos/community-x86_64/PKGBUILD
(from rev 173131, libutf8proc/trunk/PKGBUILD)
  libutf8proc/repos/community-x86_64/libutf8proc.pc
(from rev 173131, libutf8proc/trunk/libutf8proc.pc)
Deleted:
  libutf8proc/repos/community-i686/PKGBUILD
  libutf8proc/repos/community-i686/libutf8proc.pc
  libutf8proc/repos/community-x86_64/PKGBUILD
  libutf8proc/repos/community-x86_64/libutf8proc.pc

-+
 /PKGBUILD   |  108 ++
 /libutf8proc.pc |   20 +++
 community-i686/PKGBUILD |   51 -
 community-i686/libutf8proc.pc   |   10 ---
 community-x86_64/PKGBUILD   |   51 -
 community-x86_64/libutf8proc.pc |   10 ---
 6 files changed, 128 insertions(+), 122 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-04-30 12:07:07 UTC (rev 173131)
+++ community-i686/PKGBUILD 2016-04-30 12:07:18 UTC (rev 173132)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-
-pkgname=libutf8proc
-pkgver=1.3.1_2
-pkgrel=1
-pkgdesc='C library for processing UTF-8 encoded Unicode strings'
-arch=('x86_64' 'i686')
-url='http://git.netsurf-browser.org/libutf8proc.git/'
-license=('MIT' 'custom')
-replaces=('utf8proc')
-depends=('glibc')
-makedepends=('git' 'ninja' 'cmake')
-source=("git://git.netsurf-browser.org/libutf8proc.git#tag=release/${pkgver/_/-}")
-sha256sums=('SKIP')
-
-prepare() {
-  cd "$pkgname"
-
-  rm Makefile
-  find . -iwholename '*cmake*' -not -name CMakeLists.txt -not -name 
utils.cmake -delete
-  cp -r src/* include/$pkgname/* .
-}
-
-build() {
-  cd "$pkgname"
-
-  mkdir -p build
-  cd build
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DBUILD_SHARED_LIBS=ON \
--G Ninja
-  ninja
-}
-
-package() {
-  cd "$pkgname"
-
-  # The CMake/install configuration does not work for libutf8proc
-  # DESTDIR="$pkgdir" ninja -C "$pkgname-$pkgver/build" install
-
-  install -Dm644 utf8proc.h "$pkgdir/usr/include/utf8proc.h"
-  install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
-  install -Dm644 build/libutf8proc.so.1.3.1 
"$pkgdir/usr/lib/libutf8proc.so.1.3.1"
-  ln -s /usr/lib/libutf8proc.so.1.3.1 "$pkgdir/usr/lib/libutf8proc.so.1"
-  ln -s /usr/lib/libutf8proc.so.1.3.1 "$pkgdir/usr/lib/libutf8proc.so"
-}
-
-# getver: git.netsurf-browser.org/libutf8proc.git/
-# vim:set ts=2 sw=2 et:

Copied: libutf8proc/repos/community-i686/PKGBUILD (from rev 173131, 
libutf8proc/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-04-30 12:07:18 UTC (rev 173132)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+
+pkgname=libutf8proc
+pkgver=1.3.1_2
+pkgrel=2
+pkgdesc='C library for processing UTF-8 encoded Unicode strings'
+arch=('x86_64' 'i686')
+url='http://git.netsurf-browser.org/libutf8proc.git/'
+license=('MIT' 'custom')
+replaces=('utf8proc')
+depends=('glibc')
+makedepends=('git' 'ninja' 'cmake')
+source=("git://git.netsurf-browser.org/libutf8proc.git#tag=release/${pkgver/_/-}"
+ 'libutf8proc.pc')
+sha256sums=('SKIP'
+'345ea6782c361f5d38808c13e1e6ce6c2bef69a22a97d115b8ce950d74de1ed1')
+
+prepare() {
+  cd "$pkgname"
+
+  rm Makefile
+  find . -iwholename '*cmake*' -not -name CMakeLists.txt -not -name 
utils.cmake -delete
+  cp -r src/* include/$pkgname/* .
+}
+
+build() {
+  cd "$pkgname"
+
+  mkdir -p build
+  cd build
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DBUILD_SHARED_LIBS=ON \
+-G Ninja
+  ninja
+}
+
+package() {
+  cd "$pkgname"
+
+  # The CMake/install configuration does not work for libutf8proc
+  # DESTDIR="$pkgdir" ninja -C "$pkgname-$pkgver/build" install
+
+  install -Dm644 utf8proc.h "$pkgdir/usr/include/utf8proc.h"
+  install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
+  install -Dm644 ../libutf8proc.pc "$pkgdir/usr/lib/pkgconfig/libutf8proc.pc"
+  install -Dm644 build/libutf8proc.so.1.3.1 
"$pkgdir/usr/lib/libutf8proc.so.1.3.1"
+  ln -s /usr/lib/libutf8proc.so.1.3.1 "$pkgdir/usr/lib/libutf8proc.so.1"
+  ln -s /usr/lib/libutf8proc.so.1.3.1 "$pkgdir/usr/lib/libutf8proc.so"
+}
+
+# getver: git.netsurf-browser.org/libutf8proc.git/
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/libutf8proc.pc
===
--- community-i686/libutf8proc.pc   2016-04-30 12:07:07 UTC (rev 173131)
+++ 

[arch-commits] Commit in libutf8proc/repos (8 files)

2016-04-30 Thread Alexander Rødseth
Date: Saturday, April 30, 2016 @ 14:05:22
  Author: arodseth
Revision: 173130

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

Added:
  libutf8proc/repos/community-i686/PKGBUILD
(from rev 173129, libutf8proc/trunk/PKGBUILD)
  libutf8proc/repos/community-i686/libutf8proc.pc
(from rev 173129, libutf8proc/trunk/libutf8proc.pc)
  libutf8proc/repos/community-x86_64/PKGBUILD
(from rev 173129, libutf8proc/trunk/PKGBUILD)
  libutf8proc/repos/community-x86_64/libutf8proc.pc
(from rev 173129, libutf8proc/trunk/libutf8proc.pc)
Deleted:
  libutf8proc/repos/community-i686/PKGBUILD
  libutf8proc/repos/community-i686/libutf8proc.pc
  libutf8proc/repos/community-x86_64/PKGBUILD
  libutf8proc/repos/community-x86_64/libutf8proc.pc

-+
 /PKGBUILD   |  102 ++
 /libutf8proc.pc |   20 +++
 community-i686/PKGBUILD |   42 ---
 community-i686/libutf8proc.pc   |   10 ---
 community-x86_64/PKGBUILD   |   42 ---
 community-x86_64/libutf8proc.pc |   10 ---
 6 files changed, 122 insertions(+), 104 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-04-30 12:05:10 UTC (rev 173129)
+++ community-i686/PKGBUILD 2016-04-30 12:05:22 UTC (rev 173130)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-
-pkgname=libutf8proc
-pkgver=1.3.1
-pkgrel=3
-pkgdesc='C library for processing UTF-8 encoded Unicode strings'
-arch=('x86_64' 'i686')
-url='http://git.netsurf-browser.org/libutf8proc.git/'
-license=('MIT' 'custom')
-replaces=('utf8proc')
-depends=('glibc')
-makedepends=('git' 'ninja' 'cmake')
-source=("git://git.netsurf-browser.org/libutf8proc.git#tag=v$pkgver"
-'libutf8proc.pc')
-sha256sums=('SKIP'
-'6c6c05ff6c91777987d76f935c24c7a3f67eba12e420a437f03ee1545f404d31')
-
-build() {
-  cd "$pkgname"
-  mkdir -p build
-  cd build
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DBUILD_SHARED_LIBS=ON \
--G Ninja
-  ninja
-}
-
-package() {
-  cd "$pkgname"
-
-  install -Dm644 utf8proc.h "$pkgdir/usr/include/utf8proc.h"
-  install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
-  install -Dm644 ../libutf8proc.pc "$pkgdir/usr/lib/pkgconfig/libutf8proc.pc"
-  install -Dm644 build/libutf8proc.so.1.3.1 
"$pkgdir/usr/lib/libutf8proc.so.1.3.1"
-  ln -s /usr/lib/libutf8proc.so.1.3.1 "$pkgdir/usr/lib/libutf8proc.so.1"
-  ln -s /usr/lib/libutf8proc.so.1.3.1 "$pkgdir/usr/lib/libutf8proc.so"
-}
-
-# getver: git.netsurf-browser.org/libutf8proc.git/
-# vim:set ts=2 sw=2 et:

Copied: libutf8proc/repos/community-i686/PKGBUILD (from rev 173129, 
libutf8proc/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-04-30 12:05:22 UTC (rev 173130)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+
+pkgname=libutf8proc
+pkgver=1.3.1_2
+pkgrel=1
+pkgdesc='C library for processing UTF-8 encoded Unicode strings'
+arch=('x86_64' 'i686')
+url='http://git.netsurf-browser.org/libutf8proc.git/'
+license=('MIT' 'custom')
+replaces=('utf8proc')
+depends=('glibc')
+makedepends=('git' 'ninja' 'cmake')
+source=("git://git.netsurf-browser.org/libutf8proc.git#tag=release/${pkgver/_/-}")
+sha256sums=('SKIP')
+
+prepare() {
+  cd "$pkgname"
+
+  rm Makefile
+  find . -iwholename '*cmake*' -not -name CMakeLists.txt -not -name 
utils.cmake -delete
+  cp -r src/* include/$pkgname/* .
+}
+
+build() {
+  cd "$pkgname"
+
+  mkdir -p build
+  cd build
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DBUILD_SHARED_LIBS=ON \
+-G Ninja
+  ninja
+}
+
+package() {
+  cd "$pkgname"
+
+  # The CMake/install configuration does not work for libutf8proc
+  # DESTDIR="$pkgdir" ninja -C "$pkgname-$pkgver/build" install
+
+  install -Dm644 utf8proc.h "$pkgdir/usr/include/utf8proc.h"
+  install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
+  install -Dm644 build/libutf8proc.so.1.3.1 
"$pkgdir/usr/lib/libutf8proc.so.1.3.1"
+  ln -s /usr/lib/libutf8proc.so.1.3.1 "$pkgdir/usr/lib/libutf8proc.so.1"
+  ln -s /usr/lib/libutf8proc.so.1.3.1 "$pkgdir/usr/lib/libutf8proc.so"
+}
+
+# getver: git.netsurf-browser.org/libutf8proc.git/
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/libutf8proc.pc
===
--- community-i686/libutf8proc.pc   2016-04-30 12:05:10 UTC (rev 173129)
+++ community-i686/libutf8proc.pc   2016-04-30 12:05:22 UTC (rev 173130)
@@ -1,10 +0,0 @@
-prefix=/usr
-exec_prefix=${prefix}
-libdir=${exec_prefix}/lib
-includedir=${prefix}/include
-
-Name: libutf8proc
-Description: UTF8 processing
-Version: 1.3.1
-Libs: -L${libdir} -lutf8proc
-Cflags: -I${includedir}

Copied: 

[arch-commits] Commit in libutf8proc/repos (8 files)

2016-02-03 Thread Alexander Rødseth
Date: Wednesday, February 3, 2016 @ 22:37:30
  Author: arodseth
Revision: 160131

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

Added:
  libutf8proc/repos/community-i686/PKGBUILD
(from rev 160130, libutf8proc/trunk/PKGBUILD)
  libutf8proc/repos/community-i686/libutf8proc.pc
(from rev 160130, libutf8proc/trunk/libutf8proc.pc)
  libutf8proc/repos/community-x86_64/PKGBUILD
(from rev 160130, libutf8proc/trunk/PKGBUILD)
  libutf8proc/repos/community-x86_64/libutf8proc.pc
(from rev 160130, libutf8proc/trunk/libutf8proc.pc)
Deleted:
  libutf8proc/repos/community-i686/PKGBUILD
  libutf8proc/repos/community-i686/libutf8proc.pc
  libutf8proc/repos/community-x86_64/PKGBUILD
  libutf8proc/repos/community-x86_64/libutf8proc.pc

-+
 /PKGBUILD   |   84 ++
 /libutf8proc.pc |   20 +
 community-i686/PKGBUILD |   42 ---
 community-i686/libutf8proc.pc   |   10 
 community-x86_64/PKGBUILD   |   42 ---
 community-x86_64/libutf8proc.pc |   10 
 6 files changed, 104 insertions(+), 104 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-03 21:37:18 UTC (rev 160130)
+++ community-i686/PKGBUILD 2016-02-03 21:37:30 UTC (rev 160131)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-
-pkgname=libutf8proc
-pkgver=1.3.1
-pkgrel=1
-pkgdesc='C library for processing UTF-8 encoded Unicode strings'
-arch=('x86_64' 'i686')
-url='http://git.netsurf-browser.org/libutf8proc.git/'
-license=('MIT' 'custom')
-replaces=('utf8proc')
-depends=('glibc')
-makedepends=('git' 'ninja' 'cmake')
-source=("git://git.netsurf-browser.org/libutf8proc.git#tag=v$pkgver"
-'libutf8proc.pc')
-sha256sums=('SKIP'
-'6c6c05ff6c91777987d76f935c24c7a3f67eba12e420a437f03ee1545f404d31')
-
-build() {
-  cd "$pkgname"
-  mkdir -p build
-  cd build
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DBUILD_SHARED_LIBS=ON \
--G Ninja
-  ninja
-}
-
-package() {
-  cd "$pkgname"
-
-  install -Dm644 utf8proc.h "$pkgdir/usr/include/utf8proc.h"
-  install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
-  install -Dm644 ../libutf8proc.pc "$pkgdir/usr/lib/pkgconfig/libutf8proc.pc"
-  install -Dm644 build/libutf8proc.so.1.3.1 
"$pkgdir/usr/lib/libutf8proc.so.1.3.1"
-  ln -s /usr/lib/libutf8proc.so.1.3.1 "$pkgdir/usr/lib/libutf8proc.so.1"
-  ln -s /usr/lib/libutf8proc.so.1.3.1 "$pkgdir/usr/lib/libutf8proc.so"
-}
-
-# getver: git.netsurf-browser.org/libutf8proc.git/
-# vim:set ts=2 sw=2 et:

Copied: libutf8proc/repos/community-i686/PKGBUILD (from rev 160130, 
libutf8proc/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-03 21:37:30 UTC (rev 160131)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+
+pkgname=libutf8proc
+pkgver=1.3.1
+pkgrel=3
+pkgdesc='C library for processing UTF-8 encoded Unicode strings'
+arch=('x86_64' 'i686')
+url='http://git.netsurf-browser.org/libutf8proc.git/'
+license=('MIT' 'custom')
+replaces=('utf8proc')
+depends=('glibc')
+makedepends=('git' 'ninja' 'cmake')
+source=("git://git.netsurf-browser.org/libutf8proc.git#tag=v$pkgver"
+'libutf8proc.pc')
+sha256sums=('SKIP'
+'6c6c05ff6c91777987d76f935c24c7a3f67eba12e420a437f03ee1545f404d31')
+
+build() {
+  cd "$pkgname"
+  mkdir -p build
+  cd build
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DBUILD_SHARED_LIBS=ON \
+-G Ninja
+  ninja
+}
+
+package() {
+  cd "$pkgname"
+
+  install -Dm644 utf8proc.h "$pkgdir/usr/include/utf8proc.h"
+  install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
+  install -Dm644 ../libutf8proc.pc "$pkgdir/usr/lib/pkgconfig/libutf8proc.pc"
+  install -Dm644 build/libutf8proc.so.1.3.1 
"$pkgdir/usr/lib/libutf8proc.so.1.3.1"
+  ln -s /usr/lib/libutf8proc.so.1.3.1 "$pkgdir/usr/lib/libutf8proc.so.1"
+  ln -s /usr/lib/libutf8proc.so.1.3.1 "$pkgdir/usr/lib/libutf8proc.so"
+}
+
+# getver: git.netsurf-browser.org/libutf8proc.git/
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/libutf8proc.pc
===
--- community-i686/libutf8proc.pc   2016-02-03 21:37:18 UTC (rev 160130)
+++ community-i686/libutf8proc.pc   2016-02-03 21:37:30 UTC (rev 160131)
@@ -1,10 +0,0 @@
-prefix=/usr
-exec_prefix=${prefix}
-libdir=${exec_prefix}/lib
-includedir=${prefix}/include
-
-Name: libutf8proc
-Description: UTF8 processing
-Version: 1.3.1
-Libs: -L${libdir} -lutf8proc
-Cflags: -I${includedir}

Copied: libutf8proc/repos/community-i686/libutf8proc.pc (from rev 160130, 
libutf8proc/trunk/libutf8proc.pc)