summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorRaimar Bühmann2019-07-03 00:42:00 +0200
committerRaimar Bühmann2019-07-03 00:42:00 +0200
commit09ae6a8eeed98f72b0820506a7b40c38444e8d02 (patch)
treeb87226fc418e10514da9ed272871310896f99bc8
parent96657012e8af5526ffffca0941513798338ce6a6 (diff)
downloadaur-09ae6a8eeed98f72b0820506a7b40c38444e8d02.tar.gz
update to 1.9.2
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD4
-rw-r--r--RegularExpression.h.patch18
3 files changed, 5 insertions, 23 deletions
diff --git a/.SRCINFO b/.SRCINFO
index d11ece212b49..ab3ba953f090 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = libpoco-basic
pkgdesc = C++ class libraries for network-centric, portable applications, basic edition
- pkgver = 1.9.0
+ pkgver = 1.9.2
pkgrel = 1
url = http://www.pocoproject.org
arch = i686
@@ -13,8 +13,8 @@ pkgbase = libpoco-basic
conflicts = poco
conflicts = poco-devel
conflicts = poco-git
- source = http://www.pocoproject.org/releases/poco-1.9.0/poco-1.9.0.tar.gz
- sha256sums = 8b42a9010911da6a6e036093c372ee94ffd30cd1c08b552eb34680a595e15c98
+ source = http://www.pocoproject.org/releases/poco-1.9.2/poco-1.9.2.tar.gz
+ sha256sums = 528c99b3f19a63b141065aa11d91e6311ab004589d307f2416fe0523844d8578
pkgname = libpoco-basic
diff --git a/PKGBUILD b/PKGBUILD
index 99358922c9eb..4f1fe6d71a83 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
# https://aur.archlinux.org/packages/poco/
pkgname=libpoco-basic
-pkgver=1.9.0
+pkgver=1.9.2
_subrel=
pkgrel=1
pkgdesc="C++ class libraries for network-centric, portable applications, basic edition"
@@ -17,7 +17,7 @@ source=(
${url}/releases/poco-${pkgver}/poco-${pkgver}${_subrel}.tar.gz
# RegularExpression.h.patch
)
-sha256sums=('8b42a9010911da6a6e036093c372ee94ffd30cd1c08b552eb34680a595e15c98')
+sha256sums=('528c99b3f19a63b141065aa11d91e6311ab004589d307f2416fe0523844d8578')
prepare() {
# apply patch for static build
cd poco-${pkgver}${_subrel}
diff --git a/RegularExpression.h.patch b/RegularExpression.h.patch
deleted file mode 100644
index fc0618742a86..000000000000
--- a/RegularExpression.h.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-30,39c30,35
-< //
-< // Copy these definitions from pcre.h
-< // to avoid pulling in the entire header file
-< //
-< extern "C"
-< {
-< struct real_pcre8_or_16; /* declaration; the definition is private */
-< typedef struct real_pcre8_or_16 pcre;
-< struct pcre_extra;
-< }
----
-> #if defined(POCO_UNBUNDLED)
-> #include <pcre.h>
-> #else
-> #include "pcre_config.h"
-> #include "pcre.h"
-> #endif