[arch-commits] Commit in pugixml/repos/community-x86_64 (4 files)

2019-09-16 Thread Bruno Pagani via arch-commits
Date: Monday, September 16, 2019 @ 20:59:46
  Author: archange
Revision: 510939

archrelease: copy trunk to community-x86_64

Added:
  pugixml/repos/community-x86_64/PKGBUILD
(from rev 510938, pugixml/trunk/PKGBUILD)
Deleted:
  pugixml/repos/community-x86_64/LICENSE
  pugixml/repos/community-x86_64/PKGBUILD
  pugixml/repos/community-x86_64/pkg-config.patch

--+
 LICENSE  |   24 -
 PKGBUILD |   73 +++--
 pkg-config.patch |   71 ---
 3 files changed, 32 insertions(+), 136 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2019-09-16 20:59:36 UTC (rev 510938)
+++ LICENSE 2019-09-16 20:59:46 UTC (rev 510939)
@@ -1,24 +0,0 @@
-This library is available to anybody free of charge, under the terms of MIT 
License:
-
-Copyright (c) 2006-2018 Arseny Kapoulkine
-
-Permission is hereby granted, free of charge, to any person
-obtaining a copy of this software and associated documentation
-files (the "Software"), to deal in the Software without
-restriction, including without limitation the rights to use,
-copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the
-Software is furnished to do so, subject to the following
-conditions:
-
-The above copyright notice and this permission notice shall be
-included in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
-OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
-HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
-WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
-FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
-OTHER DEALINGS IN THE SOFTWARE.

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-16 20:59:36 UTC (rev 510938)
+++ PKGBUILD2019-09-16 20:59:46 UTC (rev 510939)
@@ -1,41 +0,0 @@
-# $Id: PKGBUILD 149592 2015-12-07 05:31:05Z bpiotrowski $
-# Maintainer: Bruno Pagani 
-# Contributor: Sergej Pupykin 
-# Contributor: Gustavo Alvarez 
-
-pkgname=pugixml
-pkgver=1.9
-pkgrel=1
-pkgdesc="Light-weight, simple and fast XML parser for C++ with XPath support"
-arch=('x86_64')
-url="https://pugixml.org;
-license=('MIT')
-depends=('gcc-libs')
-makedepends=('cmake')
-source=("http://github.com/zeux/pugixml/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.gz;
-'pkg-config.patch'
-'LICENSE')
-sha256sums=('d156d35b83f680e40fd6412c4455fdd03544339779134617b9b28d19e11fdba6'
-'a0e47aed9f28c061b889d05b34d30c29cb06eeb262f5c306ef3f80c81412ee43'
-'bb5e0eca3fdd4f841ae7e06d867a0f4883ae1b9f6f37be201cf0b152a98c818e')
-
-prepare() {
-mkdir -p build
-cd ${pkgname}-${pkgver}
-patch -p1 -i ../pkg-config.patch
-}
-
-build() {
-cd build
-cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DBUILD_SHARED_LIBS=ON
-make
-}
-
-package() {
-make -C build DESTDIR="${pkgdir}" install
-install -Dm644 LICENSE -t "${pkgdir}"/usr/share/licenses/${pkgname}/
-}

Copied: pugixml/repos/community-x86_64/PKGBUILD (from rev 510938, 
pugixml/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-16 20:59:46 UTC (rev 510939)
@@ -0,0 +1,32 @@
+# Maintainer: Bruno Pagani 
+# Contributor: Sergej Pupykin 
+# Contributor: Gustavo Alvarez 
+
+pkgname=pugixml
+pkgver=1.10
+pkgrel=1
+pkgdesc="Light-weight, simple and fast XML parser for C++ with XPath support"
+arch=(x86_64)
+url="https://pugixml.org;
+license=(MIT)
+depends=(gcc-libs)
+makedepends=(cmake)
+source=("https://github.com/zeux/pugixml/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('55f399fbb470942410d348584dc953bcaec926415d3462f471ef350f29b5870a')
+
+prepare() {
+mkdir -p build
+}
+
+build() {
+cd build
+cmake ../${pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DBUILD_SHARED_LIBS=ON
+make
+}
+
+package() {
+make -C build DESTDIR="${pkgdir}" install
+install -Dm644 ${pkgname}-${pkgver}/readme.txt -t 
"${pkgdir}"/usr/share/licenses/${pkgname}/
+}

Deleted: pkg-config.patch
===
--- pkg-config.patch2019-09-16 20:59:36 UTC (rev 510938)
+++ pkg-config.patch2019-09-16 20:59:46 UTC (rev 510939)
@@ -1,71 +0,0 @@
-From 314dc6a95baaca90294a8ea957d9810e3bee0f62 Mon Sep 17 00:00:00 2001
-From: Eli Schwartz 
-Date: Mon, 9 Apr 2018 01:46:30 -0400
-Subject: [PATCH] cmake: always install 

[arch-commits] Commit in pugixml/repos/community-x86_64 (4 files)

2018-04-09 Thread Bruno Pagani via arch-commits
Date: Monday, April 9, 2018 @ 16:24:40
  Author: archange
Revision: 315442

archrelease: copy trunk to community-x86_64

Added:
  pugixml/repos/community-x86_64/LICENSE
(from rev 315441, pugixml/trunk/LICENSE)
  pugixml/repos/community-x86_64/PKGBUILD
(from rev 315441, pugixml/trunk/PKGBUILD)
  pugixml/repos/community-x86_64/pkg-config.patch
(from rev 315441, pugixml/trunk/pkg-config.patch)
Deleted:
  pugixml/repos/community-x86_64/PKGBUILD

--+
 LICENSE  |   24 +
 PKGBUILD |   73 +
 pkg-config.patch |   71 +++
 3 files changed, 136 insertions(+), 32 deletions(-)

Copied: pugixml/repos/community-x86_64/LICENSE (from rev 315441, 
pugixml/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2018-04-09 16:24:40 UTC (rev 315442)
@@ -0,0 +1,24 @@
+This library is available to anybody free of charge, under the terms of MIT 
License:
+
+Copyright (c) 2006-2018 Arseny Kapoulkine
+
+Permission is hereby granted, free of charge, to any person
+obtaining a copy of this software and associated documentation
+files (the "Software"), to deal in the Software without
+restriction, including without limitation the rights to use,
+copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the
+Software is furnished to do so, subject to the following
+conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+OTHER DEALINGS IN THE SOFTWARE.

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-09 16:24:13 UTC (rev 315441)
+++ PKGBUILD2018-04-09 16:24:40 UTC (rev 315442)
@@ -1,32 +0,0 @@
-# $Id: PKGBUILD 149592 2015-12-07 05:31:05Z bpiotrowski $
-# Maintainer: Sergej Pupykin 
-# Old maintainer: Gustavo Alvarez 
-
-pkgname=pugixml
-pkgver=1.8
-pkgrel=1
-pkgdesc="Light-weight, simple and fast XML parser for C++ with XPath support"
-url='http://pugixml.org'
-arch=('x86_64' 'i686')
-license=('MIT')
-makedepends=('cmake')
-source=("http://github.com/zeux/pugixml/releases/download/v${pkgver}/pugixml-${pkgver}.tar.gz;)
-sha1sums=('d836d73bef28d99b21de809dcd220737de78b9a8')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake "$srcdir/pugixml-${pkgver}" \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DBUILD_SHARED_LIBS=ON
-  make
-}
-
-package() {
-  make -C build DESTDIR="${pkgdir}" install
-}

Copied: pugixml/repos/community-x86_64/PKGBUILD (from rev 315441, 
pugixml/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-04-09 16:24:40 UTC (rev 315442)
@@ -0,0 +1,41 @@
+# $Id: PKGBUILD 149592 2015-12-07 05:31:05Z bpiotrowski $
+# Maintainer: Bruno Pagani 
+# Contributor: Sergej Pupykin 
+# Contributor: Gustavo Alvarez 
+
+pkgname=pugixml
+pkgver=1.9
+pkgrel=1
+pkgdesc="Light-weight, simple and fast XML parser for C++ with XPath support"
+arch=('x86_64')
+url="https://pugixml.org;
+license=('MIT')
+depends=('gcc-libs')
+makedepends=('cmake')
+source=("http://github.com/zeux/pugixml/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.gz;
+'pkg-config.patch'
+'LICENSE')
+sha256sums=('d156d35b83f680e40fd6412c4455fdd03544339779134617b9b28d19e11fdba6'
+'a0e47aed9f28c061b889d05b34d30c29cb06eeb262f5c306ef3f80c81412ee43'
+'bb5e0eca3fdd4f841ae7e06d867a0f4883ae1b9f6f37be201cf0b152a98c818e')
+
+prepare() {
+mkdir -p build
+cd ${pkgname}-${pkgver}
+patch -p1 -i ../pkg-config.patch
+}
+
+build() {
+cd build
+cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DBUILD_SHARED_LIBS=ON
+make
+}
+
+package() {
+make -C build DESTDIR="${pkgdir}" install
+install -Dm644 LICENSE -t "${pkgdir}"/usr/share/licenses/${pkgname}/
+}

Copied: pugixml/repos/community-x86_64/pkg-config.patch (from rev 315441, 
pugixml/trunk/pkg-config.patch)
===
---