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

Alexander Rødseth arodseth at archlinux.org
Wed Feb 3 21:35:59 UTC 2016


    Date: Wednesday, February 3, 2016 @ 22:35:58
  Author: arodseth
Revision: 160129

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

Added:
  libutf8proc/repos/community-i686/PKGBUILD
    (from rev 160128, libutf8proc/trunk/PKGBUILD)
  libutf8proc/repos/community-i686/libutf8proc.pc
    (from rev 160128, libutf8proc/trunk/libutf8proc.pc)
  libutf8proc/repos/community-x86_64/PKGBUILD
    (from rev 160128, libutf8proc/trunk/PKGBUILD)
  libutf8proc/repos/community-x86_64/libutf8proc.pc
    (from rev 160128, 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         |   35 ---------------
 community-i686/libutf8proc.pc   |   10 ----
 community-x86_64/PKGBUILD       |   35 ---------------
 community-x86_64/libutf8proc.pc |   10 ----
 6 files changed, 104 insertions(+), 90 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2016-02-03 21:35:47 UTC (rev 160128)
+++ community-i686/PKGBUILD	2016-02-03 21:35:58 UTC (rev 160129)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth <xyproto at archlinux.org>
-
-pkgname=libutf8proc
-pkgver=1.3.1
-pkgrel=2
-pkgdesc='C library for processing UTF-8 encoded Unicode strings'
-arch=('x86_64' 'i686')
-url='http://julialang.org/utf8proc/'
-license=('MIT' 'custom')
-replaces=('utf8proc')
-depends=('glibc')
-source=("utf8proc.tar.gz::https://github.com/JuliaLang/utf8proc/archive/v$pkgver.tar.gz"
-        'libutf8proc.pc')
-sha256sums=('83b60fe21fd8a017b8ad469515873893c8e911a5bef336a427594d398b5688cc'
-            '6c6c05ff6c91777987d76f935c24c7a3f67eba12e420a437f03ee1545f404d31')
-
-build() {
-  make -C "utf8proc-$pkgver"
-}
-
-check() {
-  make -C "utf8proc-$pkgver" check
-}
-
-package() {
-  cd "utf8proc-$pkgver"
-
-  make DESTDIR="$pkgdir" prefix=/usr install
-  install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
-  install -Dm644 ../libutf8proc.pc "$pkgdir/usr/lib/pkgconfig/libutf8proc.pc"
-}
-
-# getver: julialang.org/utf8proc/releases/
-# vim:set ts=2 sw=2 et:

Copied: libutf8proc/repos/community-i686/PKGBUILD (from rev 160128, libutf8proc/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2016-02-03 21:35:58 UTC (rev 160129)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Alexander F Rødseth <xyproto at archlinux.org>
+
+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:

Deleted: community-i686/libutf8proc.pc
===================================================================
--- community-i686/libutf8proc.pc	2016-02-03 21:35:47 UTC (rev 160128)
+++ community-i686/libutf8proc.pc	2016-02-03 21:35:58 UTC (rev 160129)
@@ -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 160128, libutf8proc/trunk/libutf8proc.pc)
===================================================================
--- community-i686/libutf8proc.pc	                        (rev 0)
+++ community-i686/libutf8proc.pc	2016-02-03 21:35:58 UTC (rev 160129)
@@ -0,0 +1,10 @@
+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}

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2016-02-03 21:35:47 UTC (rev 160128)
+++ community-x86_64/PKGBUILD	2016-02-03 21:35:58 UTC (rev 160129)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth <xyproto at archlinux.org>
-
-pkgname=libutf8proc
-pkgver=1.3.1
-pkgrel=2
-pkgdesc='C library for processing UTF-8 encoded Unicode strings'
-arch=('x86_64' 'i686')
-url='http://julialang.org/utf8proc/'
-license=('MIT' 'custom')
-replaces=('utf8proc')
-depends=('glibc')
-source=("utf8proc.tar.gz::https://github.com/JuliaLang/utf8proc/archive/v$pkgver.tar.gz"
-        'libutf8proc.pc')
-sha256sums=('83b60fe21fd8a017b8ad469515873893c8e911a5bef336a427594d398b5688cc'
-            '6c6c05ff6c91777987d76f935c24c7a3f67eba12e420a437f03ee1545f404d31')
-
-build() {
-  make -C "utf8proc-$pkgver"
-}
-
-check() {
-  make -C "utf8proc-$pkgver" check
-}
-
-package() {
-  cd "utf8proc-$pkgver"
-
-  make DESTDIR="$pkgdir" prefix=/usr install
-  install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
-  install -Dm644 ../libutf8proc.pc "$pkgdir/usr/lib/pkgconfig/libutf8proc.pc"
-}
-
-# getver: julialang.org/utf8proc/releases/
-# vim:set ts=2 sw=2 et:

Copied: libutf8proc/repos/community-x86_64/PKGBUILD (from rev 160128, libutf8proc/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2016-02-03 21:35:58 UTC (rev 160129)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Alexander F Rødseth <xyproto at archlinux.org>
+
+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:

Deleted: community-x86_64/libutf8proc.pc
===================================================================
--- community-x86_64/libutf8proc.pc	2016-02-03 21:35:47 UTC (rev 160128)
+++ community-x86_64/libutf8proc.pc	2016-02-03 21:35:58 UTC (rev 160129)
@@ -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-x86_64/libutf8proc.pc (from rev 160128, libutf8proc/trunk/libutf8proc.pc)
===================================================================
--- community-x86_64/libutf8proc.pc	                        (rev 0)
+++ community-x86_64/libutf8proc.pc	2016-02-03 21:35:58 UTC (rev 160129)
@@ -0,0 +1,10 @@
+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}



More information about the arch-commits mailing list