[packages/sysdig] - release 3

2018-09-24 Thread adamg
commit 4e477460fbd1c8a748da6337a75cc141075f2e42
Author: Adam Gołębiowski 
Date:   Tue Sep 25 01:00:10 2018 +0200

- release 3

 sysdig.spec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/sysdig.spec b/sysdig.spec
index c3ebf01..7cfd0b8 100644
--- a/sysdig.spec
+++ b/sysdig.spec
@@ -22,7 +22,7 @@ exit 1
 %undefine  with_luajit
 %endif
 
-%definerel 2
+%definerel 3
 %definepname   sysdig
 Summary:   sysdig, a system-level exploration and troubleshooting tool
 Summary(pl.UTF-8): sysdig - narzędzie do przeglądu i rozwiązywania 
problemów na poziomie systemowym


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/sysdig.git/commitdiff/4e477460fbd1c8a748da6337a75cc141075f2e42

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/zfs] - release 7

2018-09-24 Thread adamg
commit 1a7543da88ab1f81076435de00e553090f0b5879
Author: Adam Gołębiowski 
Date:   Tue Sep 25 00:51:20 2018 +0200

- release 7

 zfs.spec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/zfs.spec b/zfs.spec
index 79ea525..ff819a2 100644
--- a/zfs.spec
+++ b/zfs.spec
@@ -27,7 +27,7 @@ exit 1
 
 %define_duplicate_files_terminate_build0
 
-%definerel 6
+%definerel 7
 %definepname   zfs
 Summary:   Native Linux port of the ZFS filesystem
 Summary(pl.UTF-8): Natywny linuksowy port systemu plików ZFS


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/zfs.git/commitdiff/1a7543da88ab1f81076435de00e553090f0b5879

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/libmowgli2] - use general-purpose TLS_{client,server}_method(), fixes build against openssl-1.1 - release 4

2018-09-24 Thread adamg
commit df1aa6f819c62ed46864597ddbfcfffa1a908398
Author: Adam Gołębiowski 
Date:   Tue Sep 25 00:46:28 2018 +0200

- use general-purpose TLS_{client,server}_method(), fixes build against 
openssl-1.1
- release 4

 libmowgli2-openssl-1.1.patch | 52 
 libmowgli2.spec  |  4 +++-
 2 files changed, 55 insertions(+), 1 deletion(-)
---
diff --git a/libmowgli2.spec b/libmowgli2.spec
index 68d51d4..aa38450 100644
--- a/libmowgli2.spec
+++ b/libmowgli2.spec
@@ -6,11 +6,12 @@ Summary:  Development framework for C (like GLib)
 Summary(pl.UTF-8): Szkielet programistyczny dla C (podobny do GLiba)
 Name:  libmowgli2
 Version:   2.0.0
-Release:   3
+Release:   4
 License:   MIT
 Group: Libraries
 Source0:   
https://github.com/atheme/libmowgli-2/archive/libmowgli-%{version}.tar.gz
 # Source0-md5: 0b8cf8b66d745d40f186e3cbd22fdc0e
+Patch0:%{name}-openssl-1.1.patch
 URL:   https://github.com/atheme/libmowgli-2/
 BuildRequires: openssl-devel
 BuildRequires: sed >= 4.0
@@ -60,6 +61,7 @@ Biblioteka statyczna libmowgli.
 
 %prep
 %setup -q -n libmowgli-2-libmowgli-%{version}
+%patch0 -p1
 
 %{__sed} -i -e '/^\.SILENT/d' buildsys.mk.in
 
diff --git a/libmowgli2-openssl-1.1.patch b/libmowgli2-openssl-1.1.patch
new file mode 100644
index 000..0ef36b5
--- /dev/null
+++ b/libmowgli2-openssl-1.1.patch
@@ -0,0 +1,52 @@
+--- libmowgli-2-libmowgli-2.0.0/src/libmowgli/vio/vio_openssl.c~   
2012-04-18 12:56:14.0 +0200
 libmowgli-2-libmowgli-2.0.0/src/libmowgli/vio/vio_openssl.c
2018-09-25 00:43:57.628671319 +0200
+@@ -134,23 +134,7 @@
+   mowgli_ssl_connection_t *connection = vio->privdata;
+   const SSL_METHOD *method;
+ 
+-  switch (connection->settings.ssl_version)
+-  {
+-  case MOWGLI_VIO_SSLFLAGS_SSLV2:
+-  method = SSLv23_server_method();
+-  break;
+-  case MOWGLI_VIO_SSLFLAGS_SSLV3:
+-  method = SSLv3_server_method();
+-  break;
+-  case MOWGLI_VIO_SSLFLAGS_TLSV10:
+-  case MOWGLI_VIO_SSLFLAGS_TLSV11:
+-  case MOWGLI_VIO_SSLFLAGS_TLSV12:
+-  method = TLSv1_server_method();
+-  break;
+-  default:
+-  /* Compat method */
+-  method = SSLv23_server_method();
+-  }
++  method = TLS_server_method();
+   
+   connection->ssl_context = SSL_CTX_new((SSL_METHOD *)method);
+   if (connection->ssl_context == NULL)
+@@ -266,23 +250,7 @@
+ 
+   vio->error.op = MOWGLI_VIO_ERR_OP_CONNECT;
+ 
+-  switch (connection->settings.ssl_version)
+-  {
+-  case MOWGLI_VIO_SSLFLAGS_SSLV2:
+-  method = SSLv23_client_method();
+-  break;
+-  case MOWGLI_VIO_SSLFLAGS_SSLV3:
+-  method = SSLv3_client_method();
+-  break;
+-  case MOWGLI_VIO_SSLFLAGS_TLSV10:
+-  case MOWGLI_VIO_SSLFLAGS_TLSV11:
+-  case MOWGLI_VIO_SSLFLAGS_TLSV12:
+-  method = TLSv1_client_method();
+-  break;
+-  default:
+-  /* Compat method */
+-  method = SSLv23_client_method();
+-  }
++  method = TLS_client_method();
+ 
+   /* Cast is to eliminate an excessively bogus warning on old OpenSSL 
--Elizacat */
+   connection->ssl_context = SSL_CTX_new((SSL_METHOD *)method);


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/libmowgli2.git/commitdiff/df1aa6f819c62ed46864597ddbfcfffa1a908398

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/libircclient] - properly bump release

2018-09-24 Thread adamg
commit e212b79d29e7e8b069a6cb25f4a2e05e1b5de13a
Author: Adam Gołębiowski 
Date:   Tue Sep 25 00:37:02 2018 +0200

- properly bump release

 libircclient.spec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/libircclient.spec b/libircclient.spec
index 1bf2684..6ccfeb4 100644
--- a/libircclient.spec
+++ b/libircclient.spec
@@ -1,7 +1,7 @@
 Summary:   Small but extremely powerful library which implements the IRC 
protocol
 Name:  libircclient
 Version:   1.6
-Release:   2
+Release:   6
 License:   LGPL
 Group: Libraries
 Source0:   
http://downloads.sourceforge.net/libircclient/%{name}-%{version}.tar.gz


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/libircclient.git/commitdiff/e212b79d29e7e8b069a6cb25f4a2e05e1b5de13a

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/libircclient] - fix openssl detection in configure (handle openssl-1.1) - release 2

2018-09-24 Thread adamg
commit 932ca9c957cae45092061d589b673c47ff00b0c7
Author: Adam Gołębiowski 
Date:   Tue Sep 25 00:33:10 2018 +0200

- fix openssl detection in configure (handle openssl-1.1)
- release 2

 libircclient-openssl-1.1.patch | 11 +++
 libircclient.spec  |  4 +++-
 2 files changed, 14 insertions(+), 1 deletion(-)
---
diff --git a/libircclient.spec b/libircclient.spec
index 936d625..1bf2684 100644
--- a/libircclient.spec
+++ b/libircclient.spec
@@ -1,7 +1,7 @@
 Summary:   Small but extremely powerful library which implements the IRC 
protocol
 Name:  libircclient
 Version:   1.6
-Release:   5
+Release:   2
 License:   LGPL
 Group: Libraries
 Source0:   
http://downloads.sourceforge.net/libircclient/%{name}-%{version}.tar.gz
@@ -9,6 +9,7 @@ Source0:
http://downloads.sourceforge.net/libircclient/%{name}-%{version}.tar.gz
 Patch0:opt.patch
 Patch1:soname.patch
 Patch2:install.patch
+Patch3:%{name}-openssl-1.1.patch
 URL:   http://www.ulduzsoft.com/libircclient/
 BuildRequires: openssl-devel
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
@@ -49,6 +50,7 @@ Statyczna biblioteka %{name}.
 %patch0 -p1
 %patch1 -p1
 %patch2 -p1
+%patch3 -p1
 
 %build
 %{__autoconf}
diff --git a/libircclient-openssl-1.1.patch b/libircclient-openssl-1.1.patch
new file mode 100644
index 000..6f8c347
--- /dev/null
+++ b/libircclient-openssl-1.1.patch
@@ -0,0 +1,11 @@
+--- libircclient-1.6/configure.in~ 2018-09-25 00:24:26.957726909 +0200
 libircclient-1.6/configure.in  2018-09-25 00:30:27.513160280 +0200
+@@ -101,7 +101,7 @@
+ 
+ if test "$use_openssl" = "yes"; then
+   AC_CHECK_LIB(crypto, [CRYPTO_new_ex_data], [], [AC_MSG_ERROR([OpenSSL 
not found])])
+-  AC_CHECK_LIB(ssl,[SSL_library_init], [], [AC_MSG_ERROR([OpenSSL not 
found])])
++  AC_CHECK_LIB(ssl,[SSL_CTX_new], [], [AC_MSG_ERROR([OpenSSL not 
found])])
+   AC_CHECK_HEADER([openssl/ssl.h], [], [AC_MSG_ERROR([OpenSSL headers not 
found; did you install the -dev package?])])
+   CFLAGS="$CFLAGS -DENABLE_SSL"
+ fi


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/libircclient.git/commitdiff/932ca9c957cae45092061d589b673c47ff00b0c7

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/hitch] - openssl-1.1 buildfix (cherry-picked commit feb6711 from https://github.com/lkarsten/hitch) - relea

2018-09-24 Thread adamg
commit 7c6b3ecc08b9590d1b901e9f6ebb875ff1b8df63
Author: Adam Gołębiowski 
Date:   Tue Sep 25 00:06:46 2018 +0200

- openssl-1.1 buildfix (cherry-picked commit feb6711 from 
https://github.com/lkarsten/hitch)
- release 3

 hitch-openssl-1.1.patch | 30 ++
 hitch.spec  |  4 +++-
 2 files changed, 33 insertions(+), 1 deletion(-)
---
diff --git a/hitch.spec b/hitch.spec
index 460c170..61b08df 100644
--- a/hitch.spec
+++ b/hitch.spec
@@ -6,13 +6,14 @@
 Summary:   Network proxy that terminates TLS/SSL connections
 Name:  hitch
 Version:   1.4.6
-Release:   2
+Release:   3
 License:   BSD
 Group: Daemons
 Source0:   https://hitch-tls.org/source/%{name}-%{version}.tar.gz
 # Source0-md5: 3ae020bb5bd2b1f23c860519a89c2e35
 Patch0:%{name}.systemd.service.patch
 Patch1:%{name}.initrc.redhat.patch
+Patch2:%{name}-openssl-1.1.patch
 URL:   https://hitch-tls.org/
 BuildRequires: libev-devel >= 4
 BuildRequires: libtool
@@ -54,6 +55,7 @@ machines.
 cp -p hitch.conf.example hitch.conf
 %patch0
 %patch1
+%patch2 -p1
 
 %build
 CFLAGS="%{rpmcflags} -fPIE"
diff --git a/hitch-openssl-1.1.patch b/hitch-openssl-1.1.patch
new file mode 100644
index 000..5cc50fa
--- /dev/null
+++ b/hitch-openssl-1.1.patch
@@ -0,0 +1,30 @@
+commit feb67119549125cbac78645c0f37fec6fc4aca9e
+Author: Lasse Karstensen 
+Date:   Sun Mar 25 13:07:00 2018 +0200
+
+Unconstify struct frontend pointer.
+
+Needs review.
+
+diff --git a/src/hitch.c b/src/hitch.c
+index cdfb6c6..115d67c 100644
+--- a/src/hitch.c
 b/src/hitch.c
+@@ -861,7 +861,7 @@ Find_issuer(X509 *subj, STACK_OF(X509) *chain)
+ 
+ /* Initialize an SSL context */
+ static sslctx *
+-make_ctx_fr(const struct cfg_cert_file *cf, const struct frontend *fr,
++make_ctx_fr(const struct cfg_cert_file *cf, struct frontend *fr,
+ const struct front_arg *fa)
+ {
+   SSL_CTX *ctx;
+@@ -1079,7 +1079,7 @@ insert_sni_names(sslctx *sc, sni_name **sn_tab)
+ }
+ 
+ static sslctx *
+-make_ctx(const struct cfg_cert_file *cf)
++make_ctx(struct cfg_cert_file *cf)
+ {
+   return (make_ctx_fr(cf, NULL, NULL));
+ }


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/hitch.git/commitdiff/7c6b3ecc08b9590d1b901e9f6ebb875ff1b8df63

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/ipsec-tools] - openssl-1.1 support (from debian) - release 5

2018-09-24 Thread adamg
commit 0a860f0edf230a9199d896c92a1a425727e2aa8b
Author: Adam Gołębiowski 
Date:   Mon Sep 24 23:52:54 2018 +0200

- openssl-1.1 support (from debian)
- release 5

 ipsec-tools-openssl-1.1.patch | 1042 +
 ipsec-tools.spec  |4 +-
 2 files changed, 1045 insertions(+), 1 deletion(-)
---
diff --git a/ipsec-tools.spec b/ipsec-tools.spec
index 1b8e6b8..3608083 100644
--- a/ipsec-tools.spec
+++ b/ipsec-tools.spec
@@ -12,7 +12,7 @@ Summary:  User-space IPsec tools for the Linux IPsec 
implementation
 Summary(pl.UTF-8): Narzędzia przestrzeni użytkownika dla linuksowej 
implementacji IPsec
 Name:  ipsec-tools
 Version:   0.8.2
-Release:   4
+Release:   5
 License:   BSD
 Group: Networking/Admin
 Source0:   
http://downloads.sourceforge.net/ipsec-tools/%{name}-%{version}.tar.bz2
@@ -27,6 +27,7 @@ Patch1:   %{name}-gssapi.patch
 Patch2:%{name}-support-glibc-2.20.patch
 Patch3:%{name}-link.patch
 Patch4:no-sysctl.patch
+Patch5:%{name}-openssl-1.1.patch
 BuildRequires: autoconf >= 2.52
 BuildRequires: automake
 BuildRequires: bison
@@ -108,6 +109,7 @@ Biblioteki statyczne libipsec i libracoon.
 %patch2 -p1
 %patch3 -p1
 %patch4 -p1
+%patch5 -p1
 
 %{__sed} -i 's!@INCLUDE_GLIBC@!!g' src/Makefile.am
 %{__sed} -i 's/-Werror//' configure.ac
diff --git a/ipsec-tools-openssl-1.1.patch b/ipsec-tools-openssl-1.1.patch
new file mode 100644
index 000..8bfa0fd
--- /dev/null
+++ b/ipsec-tools-openssl-1.1.patch
@@ -0,0 +1,1042 @@
+raw from 
https://sources.debian.org/data/main/i/ipsec-tools/1:0.8.2+20140711-12/debian/patches/openssl1.1
+
+Index: pkg-ipsec-tools/src/racoon/eaytest.c
+===
+--- pkg-ipsec-tools.orig/src/racoon/eaytest.c
 pkg-ipsec-tools/src/racoon/eaytest.c
+@@ -62,6 +62,7 @@
+ #include "dhgroup.h"
+ #include "crypto_openssl.h"
+ #include "gnuc.h"
++#include "openssl_compat.h"
+ 
+ #include "package_version.h"
+ 
+@@ -103,7 +104,7 @@ rsa_verify_with_pubkey(src, sig, pubkey_
+   printf ("PEM_read_PUBKEY(): %s\n", eay_strerror());
+   return -1;
+   }
+-  error = eay_check_rsasign(src, sig, evp->pkey.rsa);
++  error = eay_check_rsasign(src, sig, EVP_PKEY_get0_RSA(evp));
+ 
+   return error;
+ }
+@@ -698,7 +699,7 @@ ciphertest(ac, av)
+ eay_cast_encrypt, eay_cast_decrypt) < 0)
+ return -1;
+   
+-#ifdef HAVE_OPENSSL_IDEA_H
++#if defined(HAVE_OPENSSL_IDEA_H) && ! defined(OPENSSL_NO_IDEA)
+   if (ciphertest_1 ("IDEA",
+ , 8,
+ , key.l,
+@@ -715,7 +716,7 @@ ciphertest(ac, av)
+ eay_rc5_encrypt, eay_rc5_decrypt) < 0)
+ return -1;
+ #endif
+-#if defined(HAVE_OPENSSL_CAMELLIA_H)
++#if defined(HAVE_OPENSSL_CAMELLIA_H) && ! defined(OPENSSL_NO_CAMELLIA)
+   if (ciphertest_1 ("CAMELLIA",
+ , 16,
+ , key.l,
+Index: pkg-ipsec-tools/src/racoon/crypto_openssl.c
+===
+--- pkg-ipsec-tools.orig/src/racoon/crypto_openssl.c
 pkg-ipsec-tools/src/racoon/crypto_openssl.c
+@@ -90,6 +90,7 @@
+ #endif
+ #endif
+ #include "plog.h"
++#include "openssl_compat.h"
+ 
+ #define USE_NEW_DES_API
+ 
+@@ -318,9 +319,12 @@ eay_cmp_asn1dn(n1, n2)
+   i = idx+1;
+   goto end;
+   }
+-  if ((ea->value->length == 1 && ea->value->data[0] == '*') ||
+-  (eb->value->length == 1 && eb->value->data[0] == '*')) {
+-  if (OBJ_cmp(ea->object,eb->object)) {
++  ASN1_STRING *sa = X509_NAME_ENTRY_get_data(ea);
++  ASN1_STRING *sb = X509_NAME_ENTRY_get_data(eb);
++  if ((ASN1_STRING_length(sa) == 1 && 
ASN1_STRING_get0_data(sa)[0] == '*') ||
++  (ASN1_STRING_length(sb) == 1 && 
ASN1_STRING_get0_data(sb)[0] == '*')) {
++  if (OBJ_cmp(X509_NAME_ENTRY_get_object(ea),
++  X509_NAME_ENTRY_get_object(eb))) {
+   i = idx+1;
+   goto end;
+   }
+@@ -432,7 +436,7 @@ cb_check_cert_local(ok, ctx)
+ 
+   if (!ok) {
+   X509_NAME_oneline(
+-  X509_get_subject_name(ctx->current_cert),
++  
X509_get_subject_name(X509_STORE_CTX_get_current_cert(ctx)),
+   buf,
+   256);
+   /*
+@@ -440,7 +444,8 @@ cb_check_cert_local(ok, ctx)
+* ok if they are self signed. But we should still warn
+* the user.
+*/
+-  switch (ctx->error) {
++  int ctx_error = X509_STORE_CTX_get_error(ctx);
++   

[packages/hfsplus-tools] - release 3 (rebuild against openssl-1.1) - filterout -fvar-tracking-assignments as clang-6.0 does n

2018-09-24 Thread adamg
commit c47ed3965bd6f2fb63ff8a2ea1486a1459ce7113
Author: Adam Gołębiowski 
Date:   Mon Sep 24 23:39:45 2018 +0200

- release 3 (rebuild against openssl-1.1)
- filterout -fvar-tracking-assignments as clang-6.0 does not support it

 hfsplus-tools.spec | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)
---
diff --git a/hfsplus-tools.spec b/hfsplus-tools.spec
index bed092e..abe9b02 100644
--- a/hfsplus-tools.spec
+++ b/hfsplus-tools.spec
@@ -2,7 +2,7 @@ Summary:Tools to create/check Apple HFS+ filesystems
 Summary(pl.UTF-8): Narzędzia do tworzenia i sprawdzania systemów plików 
Apple HFS+
 Name:  hfsplus-tools
 Version:   540.1.linux3
-Release:   2
+Release:   3
 License:   APSL 2.0
 Group: Base
 Source0:   
http://cavan.codon.org.uk/~mjg59/diskdev_cmds/diskdev_cmds-%{version}.tar.gz
@@ -21,6 +21,9 @@ BuildRoot:%{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 # we want this to end up with the other mkfs.*'s, in /sbin
 %define_exec_prefix/
 
+# clang-6.0: error: unknown argument: '-fvar-tracking-assignments'
+%definefilterout   -fvar-tracking-assignments
+
 %description
 HFS+, HFS Plus, or Mac OS Extended are names for a file system
 developed by Apple Computer to replace their Hierarchical File System


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/hfsplus-tools.git/commitdiff/c47ed3965bd6f2fb63ff8a2ea1486a1459ce7113

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/php-pecl-xdebug] up to xdebug-2.7.0beta1 with PHP 7.3 support

2018-09-24 Thread glen
commit 3171ad8220665e541ae8434f0414f262d98645ca
Author: Elan Ruusamäe 
Date:   Tue Sep 25 00:19:40 2018 +0300

up to xdebug-2.7.0beta1 with PHP 7.3 support

 php-pecl-xdebug.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/php-pecl-xdebug.spec b/php-pecl-xdebug.spec
index f3bbf16..f395cd5 100644
--- a/php-pecl-xdebug.spec
+++ b/php-pecl-xdebug.spec
@@ -12,14 +12,14 @@
 Summary:   %{modname} - provides functions for functions traces and 
profiling
 Summary(pl.UTF-8): %{modname} - funkcje do śledzenia i profilowania funkcji
 Name:  %{php_name}-pecl-%{modname}
-Version:   2.6.1
+Version:   2.7.0
 Release:   1
 # The Xdebug License, version 1.01
 # (Based on "The PHP License", version 3.0)
 License:   PHP
 Group: Development/Languages/PHP
-Source0:   https://xdebug.org/files/xdebug-%{version}.tgz
-# Source0-md5: 35cc0f2e8b7d40556a9ad9afd9c49aee
+Source0:   https://xdebug.org/files/xdebug-%{version}beta1.tgz
+# Source0-md5: 390cb4b7e12218fe9204e271664f0823
 Source1:   %{modname}.ini
 Source2:   vim-xt-filetype.vim
 URL:   https://xdebug.org/


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/php-pecl-xdebug.git/commitdiff/3171ad8220665e541ae8434f0414f262d98645ca

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


DISTFILES: php-pecl-xdebug: xdebug-2.7.0beta1.tgz

2018-09-24 Thread glen
Request by: glen


Files fetched: 1

STORED: https://xdebug.org/files/xdebug-2.7.0beta1.tgz
390cb4b7e12218fe9204e271664f0823  xdebug-2.7.0beta1.tgz
Size: 226296 bytes


-- 
Virtually Yours: distfiles.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/dmg2img] - openssl-1.1 buildfix (cherry-picked commit f16f247 from https://github.com/Lekensteyn/dmg2img) - r

2018-09-24 Thread adamg
commit 5dcf12654c7a0c243750c877160d4b57aaf90f18
Author: Adam Gołębiowski 
Date:   Mon Sep 24 23:23:30 2018 +0200

- openssl-1.1 buildfix (cherry-picked commit f16f247 from 
https://github.com/Lekensteyn/dmg2img)
- release 3

 dmg2img-openssl-1.1.patch | 217 ++
 dmg2img.spec  |   4 +-
 2 files changed, 220 insertions(+), 1 deletion(-)
---
diff --git a/dmg2img.spec b/dmg2img.spec
index 8469843..7baf79f 100644
--- a/dmg2img.spec
+++ b/dmg2img.spec
@@ -2,11 +2,12 @@ Summary:  Tool to convert Apple's compressed DMG to 
standard (hfsplus) disk image
 Summary(pl.UTF-8): Narzędzie konwertujące skompresowane pliki Apple DMG na 
obrazy dysków (hfsplus)
 Name:  dmg2img
 Version:   1.6.7
-Release:   2
+Release:   3
 License:   GPL v2
 Group: Applications/File
 Source0:   http://vu1tur.eu.org/tools/%{name}-%{version}.tar.gz
 # Source0-md5: 1f0e66285ee4a46b480f3130bc112512
+Patch0:%{name}-openssl-1.1.patch
 URL:   http://vu1tur.eu.org/tools/
 BuildRequires: bzip2-devel
 BuildRequires: openssl-devel
@@ -24,6 +25,7 @@ pliki obrazów dysków (hfsplus).
 
 %prep
 %setup -q
+%patch0 -p1
 
 %{__sed} -i -e '/CC/s/-s /$(LDFLAGS)/' Makefile
 
diff --git a/dmg2img-openssl-1.1.patch b/dmg2img-openssl-1.1.patch
new file mode 100644
index 000..0e30fba
--- /dev/null
+++ b/dmg2img-openssl-1.1.patch
@@ -0,0 +1,217 @@
+commit f16f247d30f868e84f31e24792b4464488f1c009
+Author: Peter Wu 
+Date:   Tue May 2 15:53:38 2017 +0200
+
+vfdecrypt: OpenSSL 1.1 compatibility
+
+Allocate contexts from the heap on all OpenSSL versions, this is needed
+since OpenSSL 1.1.0. No attempt is done at addressing issues like global
+variables and fixing potential memleaks on error paths.
+
+Compile-tested only with OpenSSL 1.1.0e (Arch Linux) and OpenSSL 1.0.2g
+(Ubuntu 16.04), I have no test file.
+
+Fixes https://github.com/Lekensteyn/dmg2img/issues/4
+
+diff --git a/vfdecrypt.c b/vfdecrypt.c
+index 56d3530..b1a36d3 100644
+--- a/vfdecrypt.c
 b/vfdecrypt.c
+@@ -183,7 +183,7 @@ void adjust_v2_header_byteorder(cencrypted_v2_pwheader 
*pwhdr) {
+   pwhdr->encrypted_keyblob_size = htonl(pwhdr->encrypted_keyblob_size);
+ }
+ 
+-HMAC_CTX hmacsha1_ctx;
++HMAC_CTX *hmacsha1_ctx;
+ AES_KEY aes_decrypt_key;
+ int CHUNK_SIZE=4096;  // default
+ 
+@@ -196,9 +196,9 @@ void compute_iv(uint32_t chunk_no, uint8_t *iv) {
+   unsigned int mdLen;
+   
+   chunk_no = OSSwapHostToBigInt32(chunk_no);
+-  HMAC_Init_ex(_ctx, NULL, 0, NULL, NULL);
+-  HMAC_Update(_ctx, (void *) _no, sizeof(uint32_t));
+-  HMAC_Final(_ctx, mdResult, );
++  HMAC_Init_ex(hmacsha1_ctx, NULL, 0, NULL, NULL);
++  HMAC_Update(hmacsha1_ctx, (void *) _no, sizeof(uint32_t));
++  HMAC_Final(hmacsha1_ctx, mdResult, );
+   memcpy(iv, mdResult, CIPHER_BLOCKSIZE);
+ }
+ 
+@@ -212,52 +212,75 @@ void decrypt_chunk(uint8_t *ctext, uint8_t *ptext, 
uint32_t chunk_no) {
+ /* DES3-EDE unwrap operation loosely based on to RFC 2630, section 12.6 
+  *wrapped_key has to be 40 bytes in length.  */
+ int apple_des3_ede_unwrap_key(uint8_t *wrapped_key, int wrapped_key_len, 
uint8_t *decryptKey, uint8_t *unwrapped_key) {
+-  EVP_CIPHER_CTX ctx;
++  EVP_CIPHER_CTX *ctx;
+   uint8_t *TEMP1, *TEMP2, *CEKICV;
+   uint8_t IV[8] = { 0x4a, 0xdd, 0xa2, 0x2c, 0x79, 0xe8, 0x21, 0x05 };
+   int outlen, tmplen, i;
+ 
+-  EVP_CIPHER_CTX_init();
++#if OPENSSL_VERSION_NUMBER >= 0x1010L
++  ctx = EVP_CIPHER_CTX_new();
++#else
++  ctx = malloc(sizeof(*ctx));
++#endif
++  if (!ctx) {
++fprintf(stderr, "Out of memory: EVP_CIPHER_CTX!\n");
++return(-1);
++  }
++
++  EVP_CIPHER_CTX_init(ctx);
+   /* result of the decryption operation shouldn't be bigger than ciphertext */
+   TEMP1 = malloc(wrapped_key_len);
+   TEMP2 = malloc(wrapped_key_len);
+   CEKICV = malloc(wrapped_key_len);
+   /* uses PKCS#7 padding for symmetric key operations by default */
+-  EVP_DecryptInit_ex(, EVP_des_ede3_cbc(), NULL, decryptKey, IV);
++  EVP_DecryptInit_ex(ctx, EVP_des_ede3_cbc(), NULL, decryptKey, IV);
+ 
+-  if(!EVP_DecryptUpdate(, TEMP1, , wrapped_key, wrapped_key_len)) {
++  if(!EVP_DecryptUpdate(ctx, TEMP1, , wrapped_key, wrapped_key_len)) {
+ fprintf(stderr, "internal error (1) during key unwrap operation!\n");
+ return(-1);
+   }
+-  if(!EVP_DecryptFinal_ex(, TEMP1 + outlen, )) {
++  if(!EVP_DecryptFinal_ex(ctx, TEMP1 + outlen, )) {
+ fprintf(stderr, "internal error (2) during key unwrap operation!\n");
+ return(-1);
+   }
+   outlen += tmplen;
+-  EVP_CIPHER_CTX_cleanup();
++#if OPENSSL_VERSION_NUMBER >= 0x1010L
++  EVP_CIPHER_CTX_reset(ctx);
++#else
++  EVP_CIPHER_CTX_cleanup(ctx);
++#endif
+ 
+   /* reverse order of TEMP3 */
+   for(i = 0; i < outlen; i++) TEMP2[i] = TEMP1[outlen - i - 1];
+ 
+-  EVP_CIPHER_CTX_init();
++  EVP_CIPHER_CTX_init(ctx);
+   /* uses PKCS#7 padding for symmetric key operations by default */
+-  EVP_DecryptInit_ex(, 

[packages/php-pecl-xdebug] up to 2.6.1 [2018-08-01]

2018-09-24 Thread glen
commit 3ea10353e9c38207a6a8c17f0076908763f0b0e0
Author: Elan Ruusamäe 
Date:   Tue Sep 25 00:17:51 2018 +0300

up to 2.6.1 [2018-08-01]

 php-pecl-xdebug.spec | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/php-pecl-xdebug.spec b/php-pecl-xdebug.spec
index 22bb72d..f3bbf16 100644
--- a/php-pecl-xdebug.spec
+++ b/php-pecl-xdebug.spec
@@ -12,17 +12,17 @@
 Summary:   %{modname} - provides functions for functions traces and 
profiling
 Summary(pl.UTF-8): %{modname} - funkcje do śledzenia i profilowania funkcji
 Name:  %{php_name}-pecl-%{modname}
-Version:   2.6.0
+Version:   2.6.1
 Release:   1
 # The Xdebug License, version 1.01
 # (Based on "The PHP License", version 3.0)
 License:   PHP
 Group: Development/Languages/PHP
-Source0:   https://xdebug.org/files/xdebug-%{version}alpha1.tgz
-# Source0-md5: 86e47fe0967defe58b0fcf9006e8f78d
+Source0:   https://xdebug.org/files/xdebug-%{version}.tgz
+# Source0-md5: 35cc0f2e8b7d40556a9ad9afd9c49aee
 Source1:   %{modname}.ini
 Source2:   vim-xt-filetype.vim
-URL:   https://www.xdebug.org/
+URL:   https://xdebug.org/
 BuildRequires: %{php_name}-devel >= 4:7.0
 BuildRequires: libedit-devel
 BuildRequires: libtool


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/php-pecl-xdebug.git/commitdiff/3ea10353e9c38207a6a8c17f0076908763f0b0e0

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


DISTFILES: php-pecl-xdebug: xdebug-2.6.1.tgz

2018-09-24 Thread glen
Request by: glen


Files fetched: 1

STORED: https://xdebug.org/files/xdebug-2.6.1.tgz
35cc0f2e8b7d40556a9ad9afd9c49aee  xdebug-2.6.1.tgz
Size: 283961 bytes


-- 
Virtually Yours: distfiles.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


DISTFILES: oniguruma: onig-6.9.0.tar.gz

2018-09-24 Thread glen
Request by: glen


Files fetched: 1

STORED: 
https://github.com/kkos/oniguruma/releases/download/v6.9.0/onig-6.9.0.tar.gz
10fd7eee9a54ab1c2c3b99846888d00a  onig-6.9.0.tar.gz
Size: 869809 bytes


-- 
Virtually Yours: distfiles.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/oniguruma] up to 6.9.0

2018-09-24 Thread glen
commit bcbf04d58da1ed353022fcf7169948dd031bd080
Author: Elan Ruusamäe 
Date:   Mon Sep 24 23:01:58 2018 +0300

up to 6.9.0

https://github.com/kkos/oniguruma/releases/tag/v6.9.0

- Update Unicode version 11.0.0
- NEW: add Emoji properties

 oniguruma.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/oniguruma.spec b/oniguruma.spec
index 2e06afa..00ca64a 100644
--- a/oniguruma.spec
+++ b/oniguruma.spec
@@ -1,13 +1,13 @@
 Summary:   Oniguruma - a regular expressions library
 Summary(pl.UTF-8): Oniguruma - biblioteka wyrażeń regularnych
 Name:  oniguruma
-Version:   6.8.2
+Version:   6.9.0
 Release:   1
 License:   BSD
 Group: Libraries
 # Source0Download: https://github.com/kkos/oniguruma/releases
 Source0:   
https://github.com/kkos/oniguruma/releases/download/v%{version}/onig-%{version}.tar.gz
-# Source0-md5: e11da0dc28c3d5ee3e27628d1debc1cf
+# Source0-md5: 10fd7eee9a54ab1c2c3b99846888d00a
 URL:   https://github.com/kkos/oniguruma
 BuildRequires: autoconf >= 2.50
 BuildRequires: automake >= 1:1.14


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/oniguruma.git/commitdiff/bcbf04d58da1ed353022fcf7169948dd031bd080

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/php-pecl-mongodb] update find to error on missing src/libbson

2018-09-24 Thread glen
commit efb59f9a9c0b515bfcc9cf8fa5d9e50cb2f37914
Author: Elan Ruusamäe 
Date:   Mon Sep 24 22:46:44 2018 +0300

update find to error on missing src/libbson

 php-pecl-mongodb.spec | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)
---
diff --git a/php-pecl-mongodb.spec b/php-pecl-mongodb.spec
index cda92cc..42caa25 100644
--- a/php-pecl-mongodb.spec
+++ b/php-pecl-mongodb.spec
@@ -7,7 +7,7 @@
 %bcond_without tests   # build without tests
 %bcond_withsasl# Include Cyrus SASL support (for bundled only)
 %bcond_without ssl # Enable TLS connections and SCRAM-SHA-1 
authentication (for bundled only)
-%bcond_withbundled # Use bundled libbson, libmongoc
+%bcond_withbundled # Use bundled libmongoc
 
 %definephp_namephp%{?php_suffix}
 %definemodname mongodb
@@ -56,9 +56,8 @@ mv %{modname}-%{version}/* .
 # Ensure we use system library
 # remove only C sources, m4 resources needed for phpize via m4_include
 find \
-   src/libbson \
src/libmongoc \
-   -name '*.[ch]' | xargs %{__rm} -v
+   -name '*.[ch]' -delete
 %endif
 
 %build


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/php-pecl-mongodb.git/commitdiff/279c36ad39e2cf073daebba9ff751ff916855c6b

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/php-pecl-mongodb] xfail failing tests

2018-09-24 Thread glen
commit 279c36ad39e2cf073daebba9ff751ff916855c6b
Author: Elan Ruusamäe 
Date:   Mon Sep 24 22:53:14 2018 +0300

xfail failing tests

 php-pecl-mongodb.spec | 21 +
 1 file changed, 21 insertions(+)
---
diff --git a/php-pecl-mongodb.spec b/php-pecl-mongodb.spec
index 42caa25..911fe3d 100644
--- a/php-pecl-mongodb.spec
+++ b/php-pecl-mongodb.spec
@@ -60,6 +60,27 @@ find \
-name '*.[ch]' -delete
 %endif
 
+xfail() {
+   local t=$1
+   test -f $t
+   cat >> $t <<-EOF
+
+   --XFAIL--
+   Skip
+   EOF
+}
+
+# failed tests. investigate later
+while read line; do
+   t=${line##*\[}; t=${t%\]}
+   xfail $t
+done << 'EOF'
+MongoDB\BSON\Javascript::__set_state() 
[tests/bson/bson-javascript-set_state-001.phpt]
+MongoDB\Driver\Exception\RuntimeException::hasErrorLabel() 
[tests/exception/runtimeexception-haserrorlabel-002.phpt]
+MongoDB\Driver\ReadPreference: var_export() 
[tests/readPreference/readpreference-var_export-001.phpt]
+MongoDB\Driver\Session with wrong defaultTransactionOptions 
[tests/session/session_error-001.phpt]
+EOF
+
 %build
 get_version() {
local define="$1" filename="$2"


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/php-pecl-mongodb.git/commitdiff/279c36ad39e2cf073daebba9ff751ff916855c6b

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/mongo-c-driver] package examples and NEWS

2018-09-24 Thread glen
commit 79d243fb55f31e7d8b293a752d61eff8082fd9c2
Author: Elan Ruusamäe 
Date:   Mon Sep 24 22:43:15 2018 +0300

package examples and NEWS

 mongo-c-driver.spec | 10 ++
 1 file changed, 10 insertions(+)
---
diff --git a/mongo-c-driver.spec b/mongo-c-driver.spec
index 0486bc5..c59d529 100644
--- a/mongo-c-driver.spec
+++ b/mongo-c-driver.spec
@@ -131,6 +131,12 @@ rm -rf $RPM_BUILD_ROOT
 %{__make} -C cmake-build install \
DESTDIR=$RPM_BUILD_ROOT
 
+install -d $RPM_BUILD_ROOT%{_examplesdir}/libmongoc-%{version}
+cp -a src/libmongoc/examples/* 
$RPM_BUILD_ROOT%{_examplesdir}/libmongoc-%{version}
+
+install -d $RPM_BUILD_ROOT%{_examplesdir}/libbson-%{version}
+cp -a src/libbson/examples/* $RPM_BUILD_ROOT%{_examplesdir}/libbson-%{version}
+
 %clean
 rm -rf $RPM_BUILD_ROOT
 
@@ -152,6 +158,7 @@ rm -rf $RPM_BUILD_ROOT
 
 %files devel
 %defattr(644,root,root,755)
+%doc NEWS
 %{_includedir}/libmongoc-%{libver}
 %{_libdir}/libmongoc-%{libver}.so
 %{_pkgconfigdir}/libmongoc-*.pc
@@ -159,6 +166,7 @@ rm -rf $RPM_BUILD_ROOT
 %if %{with doc}
 %{_mandir}/man3/mongoc*
 %endif
+%{_examplesdir}/libmongoc-%{version}
 
 %files -n libbson
 %defattr(644,root,root,755)
@@ -168,7 +176,9 @@ rm -rf $RPM_BUILD_ROOT
 
 %files -n libbson-devel
 %defattr(644,root,root,755)
+%doc src/libbson/NEWS
 %{_includedir}/libbson-%{libver}
 %{_libdir}/libbson-%{libver}.so
 %{_libdir}/cmake/libbson-%{libver}
 %{_pkgconfigdir}/libbson-%{libver}.pc
+%{_examplesdir}/libbson-%{version}


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/mongo-c-driver.git/commitdiff/79d243fb55f31e7d8b293a752d61eff8082fd9c2

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/php-pecl-mongodb] up to 1.5.2

2018-09-24 Thread glen
commit 512f91520082f72c48608a6932c2873d888c6133
Author: Elan Ruusamäe 
Date:   Mon Sep 24 21:20:10 2018 +0300

up to 1.5.2

 php-pecl-mongodb.spec | 18 ++
 php-version.patch | 13 -
 2 files changed, 10 insertions(+), 21 deletions(-)
---
diff --git a/php-pecl-mongodb.spec b/php-pecl-mongodb.spec
index ac8b928..cda92cc 100644
--- a/php-pecl-mongodb.spec
+++ b/php-pecl-mongodb.spec
@@ -13,23 +13,22 @@
 %definemodname mongodb
 Summary:   MongoDB driver for PHP
 Name:  %{php_name}-pecl-%{modname}
-Version:   1.4.2
-Release:   2
+Version:   1.5.2
+Release:   1
 License:   Apache v2.0
 Group: Development/Languages/PHP
 Source0:   https://pecl.php.net/get/%{modname}-%{version}.tgz
-# Source0-md5: 28084c896be33df1ca268898646b7e32
-Patch0:php-version.patch
+# Source0-md5: 3569a12839c9908a25dac15df1ae9d18
 Source1:   mongodb.ini
 URL:   https://pecl.php.net/package/mongodb
 BuildRequires: %{php_name}-cli
-BuildRequires: %{php_name}-devel >= 4:5.4.0
+BuildRequires: %{php_name}-devel >= 4:5.5.0
 BuildRequires: %{php_name}-json
 BuildRequires: %{php_name}-pcre
 BuildRequires: %{php_name}-spl
 %{?with_sasl:BuildRequires:cyrus-sasl-devel}
 %if %{without bundled}
-BuildRequires: libbson-devel >= 1.8.0
+BuildRequires: libbson-devel >= 1.11.0
 BuildRequires: mongo-c-driver-devel >= 1.9
 %endif
 BuildRequires: openssl-devel
@@ -52,7 +51,6 @@ MongoDB driver.
 %prep
 %setup -qc
 mv %{modname}-%{version}/* .
-%patch0 -p1
 
 %if %{without bundled}
 # Ensure we use system library
@@ -64,8 +62,12 @@ find \
 %endif
 
 %build
+get_version() {
+   local define="$1" filename="$2"
+   awk -vdefine="$define" '/#define/ && $2 == define {print $3}' 
"$filename" | xargs
+}
 # Sanity check, really often broken
-extver=$(sed -n '/#define PHP_MONGODB_VERSION/{s/.* "//;s/".*$//;p}' 
php_phongo.h)
+extver=$(get_version PHP_MONGODB_VERSION phongo_version.h)
 if test "x${extver}" != "x%{version}"; then
: Error: Upstream extension version is ${extver}, expecting %{version}.
exit 1
diff --git a/php-version.patch b/php-version.patch
deleted file mode 100644
index 35d87a0..000
--- a/php-version.patch
+++ /dev/null
@@ -1,13 +0,0 @@
 php54-pecl-mongodb-1.4.2/config.m4~2018-03-06 22:50:22.0 
+0200
-+++ php54-pecl-mongodb-1.4.2/config.m4 2018-04-02 23:07:46.043110993 +0300
-@@ -86,8 +86,8 @@
-   PHP_MONGODB_FOUND_VERSION=`${PHP_CONFIG} --version`
-   PHP_MONGODB_FOUND_VERNUM=`echo "${PHP_MONGODB_FOUND_VERSION}" | $AWK 'BEGIN 
{ FS = "."; } { printf "%d", ([$]1 * 100 + [$]2) * 100 + [$]3;}'`
-   AC_MSG_RESULT($PHP_MONGODB_FOUND_VERSION)
--  if test "$PHP_MONGODB_FOUND_VERNUM" -lt "50500"; then
--AC_MSG_ERROR([not supported. Need a PHP version >= 5.5.0 (found 
$PHP_MONGODB_FOUND_VERSION)])
-+  if test "$PHP_MONGODB_FOUND_VERNUM" -lt "50400"; then
-+AC_MSG_ERROR([not supported. Need a PHP version >= 5.4.0 (found 
$PHP_MONGODB_FOUND_VERSION)])
-   fi
- 
-   PHP_ARG_ENABLE([developer-flags],


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/php-pecl-mongodb.git/commitdiff/512f91520082f72c48608a6932c2873d888c6133

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


DISTFILES: php-pecl-mongodb: mongodb-1.5.2.tgz

2018-09-24 Thread glen
Request by: glen


Files fetched: 1

STORED: https://pecl.php.net/get/mongodb-1.5.2.tgz
3569a12839c9908a25dac15df1ae9d18  mongodb-1.5.2.tgz
Size: 1057139 bytes


-- 
Virtually Yours: distfiles.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/mongo-c-driver] cleanup libtool dep

2018-09-24 Thread glen
commit 8e8a0573fb3591d92ad88ca0bbf978bf4f80cf5d
Author: Elan Ruusamäe 
Date:   Mon Sep 24 22:31:58 2018 +0300

cleanup libtool dep

 mongo-c-driver.spec | 1 -
 1 file changed, 1 deletion(-)
---
diff --git a/mongo-c-driver.spec b/mongo-c-driver.spec
index 747846a..0486bc5 100644
--- a/mongo-c-driver.spec
+++ b/mongo-c-driver.spec
@@ -21,7 +21,6 @@ Source0:  
https://github.com/mongodb/mongo-c-driver/releases/download/%{version}/
 URL:   https://github.com/mongodb/mongo-c-driver
 BuildRequires: cmake
 %{?with_sasl:BuildRequires:cyrus-sasl-devel}
-BuildRequires: libtool
 %{?with_ssl:BuildRequires: openssl-devel}
 BuildRequires: perl-base
 BuildRequires: pkgconfig


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/mongo-c-driver.git/commitdiff/8e8a0573fb3591d92ad88ca0bbf978bf4f80cf5d

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/mongo-c-driver] up to 1.11.0

2018-09-24 Thread glen
commit 10e2f5001d03eb0d49f3f415d4f1357704f1207b
Author: Elan Ruusamäe 
Date:   Mon Sep 24 22:17:17 2018 +0300

up to 1.11.0

- build system switched to cmake
- libbson built from this package

 mongo-c-driver-rpm.patch |  42 -
 mongo-c-driver.spec  | 120 ++-
 2 files changed, 57 insertions(+), 105 deletions(-)
---
diff --git a/mongo-c-driver.spec b/mongo-c-driver.spec
index 6043fc7..747846a 100644
--- a/mongo-c-driver.spec
+++ b/mongo-c-driver.spec
@@ -12,20 +12,15 @@
 
 Summary:   Client library written in C for MongoDB
 Name:  mongo-c-driver
-Version:   1.9.3
-Release:   3
+Version:   1.11.0
+Release:   1
 License:   Apache v2.0
 Group: Libraries
 Source0:   
https://github.com/mongodb/mongo-c-driver/releases/download/%{version}/%{name}-%{version}.tar.gz
-# Source0-md5: 39adfe23511051c1509890e17a219d8e
-Patch0:%{name}-rpm.patch
-Patch1:https://github.com/mongodb/mongo-c-driver/pull/490.patch
-# Patch1-md5:  5d81ac5717da1cb9752837ae40ab0a28
+# Source0-md5: a1241743ac6c528df0b345560dfd07eb
 URL:   https://github.com/mongodb/mongo-c-driver
-BuildRequires: autoconf
-BuildRequires: automake
+BuildRequires: cmake
 %{?with_sasl:BuildRequires:cyrus-sasl-devel}
-BuildRequires: libbson-devel >= 1.9
 BuildRequires: libtool
 %{?with_ssl:BuildRequires: openssl-devel}
 BuildRequires: perl-base
@@ -52,6 +47,7 @@ mongo-c-driver is a client library written in C for MongoDB.
 %package libs
 Summary:   Shared libraries for %{name}
 Group: Development/Libraries
+Requires:  libbson = %{version}-%{release}
 
 %description libs
 This package contains the shared libraries for %{name}.
@@ -67,50 +63,44 @@ This package contains the header files and development 
libraries for
 
 Documentation: http://api.mongodb.org/c/%{version}/
 
-%prep
-%setup -q -n %{name}-%{version}%{?prever:-dev}
-%patch0 -p1
-%patch1 -p1
+%package -n libbson
+Summary:   Building, parsing, and iterating BSON documents
+License:   ASL 2.0 and ISC and MIT and zlib
+Group: Libraries
 
-%build
-%{__aclocal} -I build/autotools -I build/autotools/m4
-%{__libtoolize}
-%{__autoconf} --include=build/autotools
-%{__automake}
-
-export LIBS=-lpthread
-
-%configure \
-   --disable-silent-rules \
-   --disable-optimizations \
-   --enable-shm-counters \
-   --disable-automatic-init-and-cleanup \
-   %{__enable_disable doc man-pages} \
-   %{__enable_disable tests} \
-   --enable-sasl=%{!?with_sasl:no}%{?with_sasl:yes} \
-   --enable-ssl=%{!?with_ssl:no}%{?with_ssl:openssl 
--enable-crypto-system-profile} \
-   --with-libbson=system \
-   --with-snappy=system \
-   --with-zlib=system \
-   --disable-html-docs \
-   --enable-examples \
-
-%if 0
-# remove these after autofoo as files required by automake
-#configure.ac:68: installing 'build/autotools/missing'
-#configure.ac:81: error: required file 
'src/snappy-1.1.3/snappy-stubs-public.h.in' not found
-#configure.ac:81: error: required file 'src/zlib-1.2.11/zconf.h.in' not found
-rm -rf src/snappy-*
-rm -rf src/zlib-*
-rm -rf src/libbson
-%endif
+%description -n libbson
+This is a library providing useful routines related to building,
+parsing, and iterating BSON documents .
+
+%package -n libbson-devel
+Summary:   Development files for libbson
+License:   Apache v2.0
+Group: Development/Libraries
+Requires:  libbson = %{version}-%{release}
 
-%{__make} all
+%description -n libbson-devel
+This package contains libraries and header files needed for developing
+applications that use libbson.
 
-# Explicit man target is needed for generating manual pages
-%if %{with doc}
-%{__make} doc/man
-%endif
+%prep
+%setup -q
+
+%build
+install -d cmake-build
+cd cmake-build
+%cmake \
+   -DENABLE_AUTOMATIC_INIT_AND_CLEANUP=OFF \
+   -DENABLE_EXAMPLES=ON \
+   -DENABLE_HTML_DOCS=OFF \
+   -DENABLE_MAN_PAGES=%{!?with_doc:OFF}%{?with_doc:ON} \
+   -DENABLE_SASL=%{!?with_sasl:OFF}%{?with_sasl:ON} \
+   -DENABLE_SHM_COUNTERS=ON \
+   -DENABLE_SSL=%{!?with_ssl:OFF}%{?with_ssl:OPENSSL 
-DENABLE_CRYPTO_SYSTEM_PROFILE=ON} \
+   -DENABLE_STATIC=OFF \
+   -DENABLE_TESTS=%{!?with_tests:OFF}%{?with_tests:ON} \
+   ..
+
+%{__make}
 
 %if %{with tests}
 : Run a server
@@ -139,26 +129,18 @@ exit $ret
 
 %install
 rm -rf $RPM_BUILD_ROOT
-%{__make} install \
+%{__make} -C cmake-build install \
DESTDIR=$RPM_BUILD_ROOT
 
-rm $RPM_BUILD_ROOT%{_libdir}/*.la
-
-: install examples
-for i in examples/*.c examples/*/*.c; do
-   install -Dpm 644 $i $RPM_BUILD_ROOT%{_docdir}/%{name}/$i
-done
-
-: Rename documentation to match subpackage name
-mv $RPM_BUILD_ROOT%{_docdir}/%{name} \
-   $RPM_BUILD_ROOT%{_docdir}/%{name}-devel
-
 %clean
 rm -rf $RPM_BUILD_ROOT
 
 %post   libs -p /sbin/ldconfig
 %postun libs -p 

DISTFILES: mongo-c-driver: mongo-c-driver-1.11.0.tar.gz

2018-09-24 Thread glen
Request by: glen


Files fetched: 1

STORED: 
https://github.com/mongodb/mongo-c-driver/releases/download/1.11.0/mongo-c-driver-1.11.0.tar.gz
a1241743ac6c528df0b345560dfd07eb  mongo-c-driver-1.11.0.tar.gz
Size: 6468155 bytes


-- 
Virtually Yours: distfiles.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[PLDWWW] page changed: packages:php

2018-09-24 Thread Elan Ruusamäe (glen)
imagick compiles for php 7.3
 
--- https://www.pld-linux.org/packages/php?rev=1537810911
+++ https://www.pld-linux.org/packages/php?rev=1537813105
@@ -37,9 +37,9 @@
  | [[package>php-pecl-hidef]]   |  ✗|  ✔|   |  ✔|  ✗   
 |  ✗|   |   |   |
  | [[package>php-pecl-htscanner]]   |  ✗|  ✔|   |  ✔|  ✔   
 |  ✗|   |   |   |
  | [[package>php-pecl-http]]|  ✗|  ✔|   |  ✔|  
 |  ✗|   |   |   |
  | [[package>php-pecl-igbinary]]|  ✔|  ✔|  ✔|  ✔|  ✔   
 |  ✔|  ✔|   |   |
- | [[package>php-pecl-imagick]] |  ✗|  ✔|   |  ✔|  ✔   
 |  ✗|  ✔|  ✔|   |
+ | [[package>php-pecl-imagick]] |  ✗|  ✔|   |  ✔|  ✔   
 |  ✗|  ✔|  ✔|  ✔|
  | [[package>php-pecl-inotify]] |  ✗|  ✔|   |  ✔|  ✔   
 |  ✗|   |   |   |
  | [[package>php-pecl-ktaglib]] |  ✗|  ✔|   |  ✔|  ✔   
 |  ✗|   |   |   |
  | [[package>php-pecl-libsodium]]   |  ✗|  ✔|  ✔|  ✔|  ✔   
 |  ✔|  ✔|  ✔|   |
  | [[package>php-pecl-lzf]] |  ✗|  ✔|   |  ✔|  ✔   
 |  ✗|   |   |   |


Diff URL:
  https://www.pld-linux.org/packages/php?do=diff=1537810911=1537813105

-- 
This mail was generated by DokuWiki at
https://www.pld-linux.org/
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/php-pecl-imagick] (2 commits) Created branch im6

2018-09-24 Thread glen
The branch 'im6' was created.

Summary of new commits:

  39511c9... use imagick6
  2846cc5... create im root dir for config.m4
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/php-pecl-imagick/im6: 2/2] create im root dir for config.m4

2018-09-24 Thread glen
commit 2846cc539026989758638be8062888ca3b5f06d9
Author: Elan Ruusamäe 
Date:   Thu Oct 26 21:17:05 2017 +0300

create im root dir for config.m4

 php-pecl-imagick.spec | 7 +++
 1 file changed, 7 insertions(+)
---
diff --git a/php-pecl-imagick.spec b/php-pecl-imagick.spec
index f8dff05..9a661bd 100644
--- a/php-pecl-imagick.spec
+++ b/php-pecl-imagick.spec
@@ -106,8 +106,15 @@ Test ImagickPixelIterator, setIteratorRow 
[tests/251_ImagickPixelIterator_setIte
 %endif
 
 %build
+# fake root, too annoying to patch
+install -d im-root/bin
+for p in MagickWand Wand; do
+   ln -snf %{_bindir}/${p}6-config im-root/bin/${p}-config
+done
+
 phpize
 %configure \
+   --with-imagick=`pwd`/im-root \
php_cv_cc_dashr=false
 
 %{__make} \


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/php-pecl-imagick.git/commitdiff/2846cc539026989758638be8062888ca3b5f06d9

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/php-pecl-imagick/im6: 1/2] use imagick6

2018-09-24 Thread glen
commit 39511c96bc33c03e79e096ae9f1123dccdf33707
Author: Elan Ruusamäe 
Date:   Mon Apr 10 21:31:39 2017 +0300

use imagick6

imagick7 peaks cpu usage, not suitable for web app

 php-pecl-imagick.spec | 14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)
---
diff --git a/php-pecl-imagick.spec b/php-pecl-imagick.spec
index 587a452..f8dff05 100644
--- a/php-pecl-imagick.spec
+++ b/php-pecl-imagick.spec
@@ -17,7 +17,7 @@ Source0:  
http://pecl.php.net/get/%{modname}-%{version}.tgz
 Patch0:skip_version_check.patch
 URL:   http://pecl.php.net/package/imagick/
 BuildRequires: %{php_name}-devel >= 4:5.3
-BuildRequires: ImageMagick-devel >= 1:6.2.4.0
+BuildRequires: ImageMagick6-devel >= 1:6.2.4.0
 BuildRequires: pkgconfig
 BuildRequires: re2c
 BuildRequires: rpmbuild(macros) >= 1.650
@@ -25,16 +25,16 @@ BuildRequires:  rpmbuild(macros) >= 1.650
 BuildRequires: %{php_name}-cli
 BuildRequires: %{php_name}-pcre
 BuildRequires: %{php_name}-spl
-BuildRequires: ImageMagick-coder-jpeg
-BuildRequires: ImageMagick-coder-png
-BuildRequires: ImageMagick-coder-tiff
+BuildRequires: ImageMagick6-coder-jpeg
+BuildRequires: ImageMagick6-coder-png
+BuildRequires: ImageMagick6-coder-tiff
 %endif
 %{?requires_php_extension}
 Requires(triggerpostun):   sed >= 4.0
 Requires:  %{php_name}-spl
-Suggests:  ImageMagick-coder-jpeg
-Suggests:  ImageMagick-coder-png
-Suggests:  ImageMagick-coder-tiff
+Suggests:  ImageMagick6-coder-jpeg
+Suggests:  ImageMagick6-coder-png
+Suggests:  ImageMagick6-coder-tiff
 Provides:  php(imagick) = %{version}
 Obsoletes: php-pecl-imagick < 3.1.2-2
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/php-pecl-imagick.git/commitdiff/2846cc539026989758638be8062888ca3b5f06d9

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/php/PHP_5_2] devel obsoletes php73-devel

2018-09-24 Thread glen
commit bdc00217b6632bf04455c02d1c6f4c3bd12bc3fa
Author: Elan Ruusamäe 
Date:   Mon Sep 24 20:43:59 2018 +0300

devel obsoletes php73-devel

 php.spec | 1 +
 1 file changed, 1 insertion(+)
---
diff --git a/php.spec b/php.spec
index a060a75..9bced08 100644
--- a/php.spec
+++ b/php.spec
@@ -607,6 +607,7 @@ Obsoletes:  php56-devel
 Obsoletes: php70-devel
 Obsoletes: php71-devel
 Obsoletes: php72-devel
+Obsoletes: php73-devel
 
 %description devel
 The php-devel package lets you compile dynamic extensions to PHP.


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/php.git/commitdiff/bdc00217b6632bf04455c02d1c6f4c3bd12bc3fa

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/php/PHP_5_3] devel obsoletes php73-devel

2018-09-24 Thread glen
commit f0ece3364b77d11affca4ccb9c4e7d8c1452d653
Author: Elan Ruusamäe 
Date:   Mon Sep 24 20:43:59 2018 +0300

devel obsoletes php73-devel

 php.spec | 1 +
 1 file changed, 1 insertion(+)
---
diff --git a/php.spec b/php.spec
index e5d58be..474b148 100644
--- a/php.spec
+++ b/php.spec
@@ -668,6 +668,7 @@ Obsoletes:  php56-devel
 Obsoletes: php70-devel
 Obsoletes: php71-devel
 Obsoletes: php72-devel
+Obsoletes: php73-devel
 
 %description devel
 The php-devel package lets you compile dynamic extensions to PHP.


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/php.git/commitdiff/f0ece3364b77d11affca4ccb9c4e7d8c1452d653

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/php/PHP_5_4] devel obsoletes php73-devel

2018-09-24 Thread glen
commit efab37c8ec42a8575f1395bf0c36d3361d657a3d
Author: Elan Ruusamäe 
Date:   Mon Sep 24 20:43:59 2018 +0300

devel obsoletes php73-devel

 php.spec | 1 +
 1 file changed, 1 insertion(+)
---
diff --git a/php.spec b/php.spec
index 996a1b0..ed731a5 100644
--- a/php.spec
+++ b/php.spec
@@ -610,6 +610,7 @@ Obsoletes:  php56-devel
 Obsoletes: php70-devel
 Obsoletes: php71-devel
 Obsoletes: php72-devel
+Obsoletes: php73-devel
 
 %description devel
 The php-devel package lets you compile dynamic extensions to PHP.


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/php.git/commitdiff/efab37c8ec42a8575f1395bf0c36d3361d657a3d

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/php/PHP_5_5] devel obsoletes php73-devel

2018-09-24 Thread glen
commit 992bb37e45e0b41fddc9fa3edca4f1705051ca72
Author: Elan Ruusamäe 
Date:   Mon Sep 24 20:43:59 2018 +0300

devel obsoletes php73-devel

 php.spec | 1 +
 1 file changed, 1 insertion(+)
---
diff --git a/php.spec b/php.spec
index be78fe9..9d213a0 100644
--- a/php.spec
+++ b/php.spec
@@ -621,6 +621,7 @@ Obsoletes:  php56-devel
 Obsoletes: php70-devel
 Obsoletes: php71-devel
 Obsoletes: php72-devel
+Obsoletes: php73-devel
 
 %description devel
 The php-devel package lets you compile dynamic extensions to PHP.


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/php.git/commitdiff/992bb37e45e0b41fddc9fa3edca4f1705051ca72

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/php/PHP_7_0] devel obsoletes php73-devel

2018-09-24 Thread glen
commit c6dc5455a2a7e16e336b05ab6f6ecb20b51e1053
Author: Elan Ruusamäe 
Date:   Mon Sep 24 20:43:59 2018 +0300

devel obsoletes php73-devel

 php.spec | 1 +
 1 file changed, 1 insertion(+)
---
diff --git a/php.spec b/php.spec
index 597e912..1762254 100644
--- a/php.spec
+++ b/php.spec
@@ -611,6 +611,7 @@ Obsoletes:  php55-devel
 Obsoletes: php56-devel
 Obsoletes: php71-devel
 Obsoletes: php72-devel
+Obsoletes: php73-devel
 
 %description devel
 The php-devel package lets you compile dynamic extensions to PHP.


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/php.git/commitdiff/c6dc5455a2a7e16e336b05ab6f6ecb20b51e1053

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/php/PHP_5_6] devel obsoletes php73-devel

2018-09-24 Thread glen
commit 7cf9cfd63779b74f00a5c9ebaea1b83d9089fddf
Author: Elan Ruusamäe 
Date:   Mon Sep 24 20:43:59 2018 +0300

devel obsoletes php73-devel

 php.spec | 1 +
 1 file changed, 1 insertion(+)
---
diff --git a/php.spec b/php.spec
index e986bec..1b72700 100644
--- a/php.spec
+++ b/php.spec
@@ -672,6 +672,7 @@ Obsoletes:  php55-devel
 Obsoletes: php70-devel
 Obsoletes: php71-devel
 Obsoletes: php72-devel
+Obsoletes: php73-devel
 
 %description devel
 The php-devel package lets you compile dynamic extensions to PHP.


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/php.git/commitdiff/7cf9cfd63779b74f00a5c9ebaea1b83d9089fddf

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/php/PHP_7_1] devel obsoletes php73-devel

2018-09-24 Thread glen
commit 7c066dc633fc1127b22fab545d17c36483ac2c79
Author: Elan Ruusamäe 
Date:   Mon Sep 24 20:43:59 2018 +0300

devel obsoletes php73-devel

 php.spec | 1 +
 1 file changed, 1 insertion(+)
---
diff --git a/php.spec b/php.spec
index 4cf99ad..0516055 100644
--- a/php.spec
+++ b/php.spec
@@ -626,6 +626,7 @@ Obsoletes:  php55-devel
 Obsoletes: php56-devel
 Obsoletes: php70-devel
 Obsoletes: php72-devel
+Obsoletes: php73-devel
 
 %description devel
 The php-devel package lets you compile dynamic extensions to PHP.


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/php.git/commitdiff/7c066dc633fc1127b22fab545d17c36483ac2c79

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/php] devel obsoletes php73-devel

2018-09-24 Thread glen
commit bf286d84692a50e2a833df40de6d5e0ae8eed51c
Author: Elan Ruusamäe 
Date:   Mon Sep 24 20:43:59 2018 +0300

devel obsoletes php73-devel

 php.spec | 1 +
 1 file changed, 1 insertion(+)
---
diff --git a/php.spec b/php.spec
index cbd0826..a4faade 100644
--- a/php.spec
+++ b/php.spec
@@ -632,6 +632,7 @@ Obsoletes:  php55-devel
 Obsoletes: php56-devel
 Obsoletes: php70-devel
 Obsoletes: php71-devel
+Obsoletes: php73-devel
 
 %description devel
 The php-devel package lets you compile dynamic extensions to PHP.


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/php.git/commitdiff/bf286d84692a50e2a833df40de6d5e0ae8eed51c

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/php/dev-7.3] update pcre-shared.patch

2018-09-24 Thread glen
commit 7f8db8677fc43cfc51ff716a03aff11d708a6644
Author: Elan Ruusamäe 
Date:   Mon Sep 24 20:17:34 2018 +0300

update pcre-shared.patch

 pcre-shared.patch | 124 ++
 1 file changed, 69 insertions(+), 55 deletions(-)
---
diff --git a/pcre-shared.patch b/pcre-shared.patch
index 4eee40e..fb45863 100644
--- a/pcre-shared.patch
+++ b/pcre-shared.patch
@@ -1,50 +1,18 @@
 php-7.2.0RC4/ext/pcre/config0.m4~  2017-10-15 16:17:20.0 +0300
-+++ php-7.2.0RC4/ext/pcre/config0.m4   2017-10-15 18:34:27.673725678 +0300
-@@ -11,7 +11,7 @@
- 
-   if test "$PHP_PCRE_REGEX" != "yes" && test "$PHP_PCRE_REGEX" != "no"; then
- AC_MSG_CHECKING([for PCRE headers location])
--for i in $PHP_PCRE_REGEX $PHP_PCRE_REGEX/include 
$PHP_PCRE_REGEX/include/pcre $PHP_PCRE_REGEX/local/include; do
-+for i in $PHP_PCRE_REGEX $PHP_PCRE_REGEX/include 
$PHP_PCRE_REGEX/include/pcre $PHP_PCRE_REGEX/local/include /usr/include; do
-   test -f $i/pcre.h && PCRE_INCDIR=$i
- done
- 
-@@ -21,7 +21,7 @@
- AC_MSG_RESULT([$PCRE_INCDIR])
- 
- AC_MSG_CHECKING([for PCRE library location])
--for j in $PHP_PCRE_REGEX $PHP_PCRE_REGEX/$PHP_LIBDIR; do
-+for j in $PHP_PCRE_REGEX $PHP_PCRE_REGEX/$PHP_LIBDIR /usr/$PHP_LIBDIR; do
-   test -f $j/libpcre.a || test -f $j/libpcre.$SHLIB_SUFFIX_NAME && 
PCRE_LIBDIR=$j
- done
- 
-@@ -52,12 +52,13 @@
- ],[
-   -L$PCRE_LIBDIR
- ])
--PHP_ADD_LIBRARY_WITH_PATH(pcre, $PCRE_LIBDIR)
-+PHP_ADD_LIBRARY_WITH_PATH(pcre, $PCRE_LIBDIR, PCRE_SHARED_LIBADD)
- 
+--- php-7.3.0alpha3/ext/pcre/config0.m4~   2018-07-03 15:56:43.0 
+0300
 php-7.3.0alpha3/ext/pcre/config0.m42018-07-10 11:09:21.010882573 
+0300
+@@ -61,8 +61,9 @@
+ PHP_EVAL_LIBLINE($PCRE2_LIB)
  AC_DEFINE(HAVE_PCRE, 1, [ ])
- PHP_ADD_INCLUDE($PCRE_INCDIR)
+ AC_DEFINE(PCRE2_CODE_UNIT_WIDTH, 8, [ ])
 -PHP_NEW_EXTENSION(pcre, php_pcre.c, no,, 
-DZEND_ENABLE_STATIC_TSRMLS_CACHE=1)
 +PHP_NEW_EXTENSION(pcre, php_pcre.c, $ext_shared,, 
-DZEND_ENABLE_STATIC_TSRMLS_CACHE=1)
  PHP_INSTALL_HEADERS([ext/pcre], [php_pcre.h])
-+EXTRA_LIBS="$EXTRA_LIBS -lpcre"
++EXTRA_LIBS="$EXTRA_LIBS -lpcre2-8"
else
  AC_MSG_CHECKING([for PCRE library to use])
  AC_MSG_RESULT([bundled])
-@@ -61,7 +62,7 @@
-pcrelib/pcre_version.c pcrelib/pcre_xclass.c \
-pcrelib/pcre_jit_compile.c"
- PHP_PCRE_CFLAGS="-DHAVE_CONFIG_H -I@ext_srcdir@/pcrelib 
-DZEND_ENABLE_STATIC_TSRMLS_CACHE=1"
--PHP_NEW_EXTENSION(pcre, $pcrelib_sources php_pcre.c, no,,$PHP_PCRE_CFLAGS)
-+PHP_NEW_EXTENSION(pcre, $pcrelib_sources php_pcre.c, 
$ext_shared,,$PHP_PCRE_CFLAGS)
- PHP_ADD_BUILD_DIR($ext_builddir/pcrelib)
- PHP_INSTALL_HEADERS([ext/pcre], [php_pcre.h pcrelib/])
- AC_DEFINE(HAVE_BUNDLED_PCRE, 1, [ ])
 php-7.2.0beta1/ext/pcre/php_pcre.h 2017-07-22 12:35:11.071146616 +0300
-+++ php-7.2.0beta1/ext/pcre/php_pcre.h 2017-07-22 12:41:01.858859537 +0300
+--- php-7.3.0alpha3/ext/pcre/php_pcre.h~   2018-07-03 15:56:43.0 
+0300
 php-7.3.0alpha3/ext/pcre/php_pcre.h2018-07-10 11:11:55.739017013 
+0300
 @@ -33,7 +33,29 @@
  #include 
  #endif
@@ -70,32 +38,32 @@
 +extern void *php_pcre_split_impl_p;
 +#endif
 +
- PHPAPI zend_string *php_pcre_replace(zend_string *regex, zend_string 
*subject_str, char *subject, int subject_len, zend_string *replace_str, int 
limit, int *replace_count);
+ PHPAPI zend_string *php_pcre_replace(zend_string *regex, zend_string 
*subject_str, char *subject, size_t subject_len, zend_string *replace_str, 
size_t limit, size_t *replace_count);
 +PCRE_EXTERN
- PHPAPI pcre* pcre_get_compiled_regex(zend_string *regex, pcre_extra **extra, 
int *options);
- PHPAPI pcre* pcre_get_compiled_regex_ex(zend_string *regex, pcre_extra 
**extra, int *preg_options, int *coptions);
+ PHPAPI pcre2_code* pcre_get_compiled_regex(zend_string *regex, uint32_t 
*capture_count, uint32_t *options);
+ PHPAPI pcre2_code* pcre_get_compiled_regex_ex(zend_string *regex, uint32_t 
*capture_count, uint32_t *preg_options, uint32_t *coptions);
  
-@@ -56,14 +78,18 @@
-   int refcount;
- } pcre_cache_entry;
+@@ -45,14 +67,18 @@
+ 
+ typedef struct _pcre_cache_entry pcre_cache_entry;
  
 +PCRE_EXTERN
  PHPAPI pcre_cache_entry* pcre_get_compiled_regex_cache(zend_string *regex);
  
 +PCRE_EXTERN
- PHPAPI void  php_pcre_match_impl(  pcre_cache_entry *pce, char *subject, int 
subject_len, zval *return_value,
-   zval *subpats, int global, int use_flags, zend_long flags, zend_long 
start_offset);
+ PHPAPI void  php_pcre_match_impl(  pcre_cache_entry *pce, char *subject, 
size_t subject_len, zval *return_value,
+   zval *subpats, int global, int use_flags, zend_long flags, zend_off_t 
start_offset);
  
 +PCRE_EXTERN
- PHPAPI zend_string *php_pcre_replace_impl(pcre_cache_entry *pce, zend_string 
*subject_str, char *subject, int 

[packages/php/dev-7.3] up to 7.3.0RC1

2018-09-24 Thread glen
commit 65ac116b1452bac2ef8d97fa9cb168f53f8379bb
Author: Elan Ruusamäe 
Date:   Mon Sep 24 20:20:33 2018 +0300

up to 7.3.0RC1

 php.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/php.spec b/php.spec
index 01d698d..8d86b31 100644
--- a/php.spec
+++ b/php.spec
@@ -144,7 +144,7 @@
 %undefine  with_filter
 %endif
 
-%definesubver beta3
+%definesubver RC1
 %defineorgname php
 %definever_suffix 73
 %definephp_suffix %{!?with_default_php:%{ver_suffix}}
@@ -156,7 +156,7 @@ Summary(ru.UTF-8):  PHP Версии 7 - язык препроцессирова
 Summary(uk.UTF-8): PHP Версії 7 - мова препроцесування HTML-файлів, 
виконувана на сервері
 Name:  %{orgname}%{php_suffix}
 Version:   7.3.0
-Release:   0.%{subver}.1
+Release:   1.%{subver}.1
 Epoch: 4
 # All files licensed under PHP version 3.01, except
 # Zend is licensed under Zend
@@ -165,7 +165,7 @@ License:PHP 3.01 and Zend and BSD
 Group: Libraries
 #Source0:  https://php.net/distributions/%{orgname}-%{version}.tar.xz
 Source0:   https://downloads.php.net/~cmb/php-%{version}%{subver}.tar.xz
-# Source0-md5: fe3e3ac34ba995c56b9f71b458abe248
+# Source0-md5: 59eefcab2b98bdbd92163dfd9b9830b9
 Source1:   opcache.ini
 Source2:   %{orgname}-mod_php.conf
 Source3:   %{orgname}-cgi-fcgi.ini


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/php.git/commitdiff/65ac116b1452bac2ef8d97fa9cb168f53f8379bb

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


DISTFILES: php: php-7.3.0RC1.tar.xz

2018-09-24 Thread glen
Request by: glen


Files fetched: 1

STORED: https://downloads.php.net/~cmb/php-7.3.0RC1.tar.xz
59eefcab2b98bdbd92163dfd9b9830b9  php-7.3.0RC1.tar.xz
Size: 11920364 bytes


-- 
Virtually Yours: distfiles.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[projects/pld-builder.new] add php 7.3

2018-09-24 Thread glen
commit 39efa713c77ee7fa30d80a83ed6118f5978a444b
Author: Elan Ruusamäe 
Date:   Mon Sep 24 20:19:39 2018 +0300

add php 7.3

 PLD_Builder/request.py | 2 +-
 client/php.sh  | 2 +-
 client/php73.sh| 1 +
 3 files changed, 3 insertions(+), 2 deletions(-)
---
diff --git a/PLD_Builder/request.py b/PLD_Builder/request.py
index 4757fb7..fc7211d 100644
--- a/PLD_Builder/request.py
+++ b/PLD_Builder/request.py
@@ -409,7 +409,7 @@ class Batch:
 
 def php_ignores(self, php_version):
 # available php versions in distro
-php_versions = ['4', '5.2', '5.3', '5.4', '5.5', '5.6', '7.0', '7.1', 
'7.2']
+php_versions = ['4', '5.2', '5.3', '5.4', '5.5', '5.6', '7.0', '7.1', 
'7.2', '7.3']
 
 # remove current php version
 try:
diff --git a/client/php.sh b/client/php.sh
index 7242576..78f8920 100755
--- a/client/php.sh
+++ b/client/php.sh
@@ -11,7 +11,7 @@ if [ "$suffix" = "" ]; then
done
exit 0
 else
-   pre_command='for a in php4-common php52-common php53-common 
php54-common php55-common php56-common php70-common php71-common php72-common 
hhvm; do poldek -e $a --noask; done; :'
+   pre_command='for a in php4-common php52-common php53-common 
php54-common php55-common php56-common php70-common php71-common php72-common 
php73-common hhvm; do poldek -e $a --noask; done; :'
 fi
 
 exec $dir/make-request.sh -D "php_suffix $suffix" ${pre_command:+-c 
"$pre_command"} ${post_command:+-C "$post_command"} "$@"
diff --git a/client/php73.sh b/client/php73.sh
new file mode 12
index 000..d20ec52
--- /dev/null
+++ b/client/php73.sh
@@ -0,0 +1 @@
+php.sh
\ No newline at end of file


 gitweb:

http://git.pld-linux.org/gitweb.cgi/projects/pld-builder.new.git/commitdiff/39efa713c77ee7fa30d80a83ed6118f5978a444b

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


SVN: admin/dns/README

2018-09-24 Thread arekm
Author: arekm
Date: Mon Sep 24 17:58:33 2018
New Revision: 12779

Modified:
   admin/dns/README
Log:
Use cron.d config.

Modified: admin/dns/README
==
--- admin/dns/README(original)
+++ admin/dns/READMEMon Sep 24 17:58:33 2018
@@ -24,8 +24,8 @@
# cd /var/lib/named/pld-dns
# ./check.sh
 
-2) add a crontab entry for a check.sh script, like:
+2) add /etc/cron.d/plddns entry for a check.sh script, like:
 
-   */5 * * * * cd /var/lib/named/pld-dns; ./check.sh
+   */5 * * * * root cd /var/lib/named/pld-dns; ./check.sh
 
 That's it.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/rpm] - from gpg manual for --passphrase-fd option: "Since Version 2.1 the --pinentry-mode also needs to b

2018-09-24 Thread adwol
commit 7db865f2bcabd6634b78e94aae5f19c47fcc9a97
Author: Adam Osuchowski 
Date:   Mon Sep 24 15:50:35 2018 +0200

- from gpg manual for --passphrase-fd option: "Since Version 2.1 the 
--pinentry-mode also needs to be set to loopback."

 rpm-gpg-pinentry.patch | 24 
 rpm.spec   |  2 ++
 2 files changed, 26 insertions(+)
---
diff --git a/rpm.spec b/rpm.spec
index 84568cc..56ea152 100644
--- a/rpm.spec
+++ b/rpm.spec
@@ -183,6 +183,7 @@ Patch95:rpm-python-spec-header.patch
 Patch96:   skip-ldconfig-optimization.patch
 Patch97:   glibc.patch
 Patch98:   extension-based-compression-detection.patch
+Patch99:   %{name}-gpg-pinentry.patch
 
 # Patches imported from Mandriva
 
@@ -960,6 +961,7 @@ cd -
 %patch89 -p1
 %patch90 -p1
 %patch91 -p1
+%patch99 -p1
 
 %patch1000 -p1
 %patch1001 -p1
diff --git a/rpm-gpg-pinentry.patch b/rpm-gpg-pinentry.patch
new file mode 100644
index 000..531f1b3
--- /dev/null
+++ b/rpm-gpg-pinentry.patch
@@ -0,0 +1,24 @@
+diff -ruN rpm-5.4.15.orig/macros/macros rpm-5.4.15/macros/macros
+--- rpm-5.4.15.orig/macros/macros  2014-08-17 14:02:20.0 +0200
 rpm-5.4.15/macros/macros   2018-09-24 15:46:44.323052200 +0200
+@@ -519,7 +519,7 @@
+ # signing and verification.
+ #
+ %__gpg_check_password_cmd %{__gpg} \
+-  gpg --batch --no-verbose --passphrase-fd 3 -u "%{_gpg_name}" -so -
++  gpg --batch --pinentry-mode loopback --no-verbose --passphrase-fd 3 -u 
"%{_gpg_name}" -so -
+ #%__pgp_check_password_cmd%{__pgp} \
+ # pgp +batchmode=on +verbose=0 "%{_pgp_name}" -sf
+ #%__pgp5_check_password_cmd   %{__pgp} \
+diff -ruN rpm-5.4.15.orig/macros/macros.in rpm-5.4.15/macros/macros.in
+--- rpm-5.4.15.orig/macros/macros.in   2014-08-09 00:40:40.0 +0200
 rpm-5.4.15/macros/macros.in2018-09-24 15:46:34.807097580 +0200
+@@ -519,7 +519,7 @@
+ # signing and verification.
+ #
+ %__gpg_check_password_cmd %{__gpg} \
+-  gpg --batch --no-verbose --passphrase-fd 3 -u "%{_gpg_name}" -so -
++  gpg --batch --pinentry-mode loopback --no-verbose --passphrase-fd 3 -u 
"%{_gpg_name}" -so -
+ #%__pgp_check_password_cmd%{__pgp} \
+ # pgp +batchmode=on +verbose=0 "%{_pgp_name}" -sf
+ #%__pgp5_check_password_cmd   %{__pgp} \


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/rpm.git/commitdiff/7db865f2bcabd6634b78e94aae5f19c47fcc9a97

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/wayland] Mesa-libwayland-egl is no more in Mesa 18.2.1

2018-09-24 Thread jajcus
commit 614d2ec8ad256d205a8df3e34d89b31e8aa3adce
Author: Jacek Konieczny 
Date:   Mon Sep 24 15:36:53 2018 +0200

Mesa-libwayland-egl is no more in Mesa 18.2.1

…and that from Mesa 18.1.x is no better than the wayland provided
version. Also the wayland subpackages are now required to build Mesa,
so obsolete Mesa-libwayland-egl packages unconditionally.

Release: 3

 wayland.spec | 8 +++-
 1 file changed, 3 insertions(+), 5 deletions(-)
---
diff --git a/wayland.spec b/wayland.spec
index e6ecb6b..458d611 100644
--- a/wayland.spec
+++ b/wayland.spec
@@ -3,13 +3,11 @@
 %bcond_without apidocs # don't build API documentation
 %bcond_without static_libs # don't build static libraries
 
-# see wayland-egl.pc
-%definewayland_egl_ver 18.1.0
 Summary:   Wayland - protocol for a compositor to talk to its clients
 Summary(pl.UTF-8): Wayland - protokół między serwerem składającym a 
klientami
 Name:  wayland
 Version:   1.15.0
-Release:   2
+Release:   3
 License:   MIT
 Group: Libraries
 Source0:   
https://wayland.freedesktop.org/releases/%{name}-%{version}.tar.xz
@@ -80,7 +78,7 @@ Statyczne biblioteki Wayland.
 Summary:   Wayland EGL library
 Summary(pl.UTF-8): Biblioteka Wayland EGL
 Group: Libraries
-Obsoletes: Mesa-libwayland-egl < %{wayland_egl_ver}
+Obsoletes: Mesa-libwayland-egl
 
 %description egl
 Wayland EGL library.
@@ -94,7 +92,7 @@ Summary(pl.UTF-8):Pliki nagłówkowe biblioteki Wayland EGL
 Group: Development/Libraries
 Requires:  %{name}-devel = %{version}-%{release}
 Requires:  %{name}-egl = %{version}-%{release}
-Obsoletes: Mesa-libwayland-egl-devel < %{wayland_egl_ver}
+Obsoletes: Mesa-libwayland-egl-devel
 
 %description egl-devel
 Header files for Wayland EGL library.


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/wayland.git/commitdiff/614d2ec8ad256d205a8df3e34d89b31e8aa3adce

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


DISTFILES: Mesa: mesa-mesa-18.2.1.tar.bz2

2018-09-24 Thread jajcus
Request by: jajcus


Files fetched: 1

STORED: 
https://gitlab.freedesktop.org/mesa/mesa/-/archive/mesa-18.2.1/mesa-mesa-18.2.1.tar.bz2
dd9976c620c8646c60a41ef7197c88c2  mesa-mesa-18.2.1.tar.bz2
Size: 11065785 bytes


-- 
Virtually Yours: distfiles.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/Mesa] Version: 18.2.1

2018-09-24 Thread jajcus
commit 83ef4ff1c33e4658fa6a9d00687892867de89cba
Author: Jacek Konieczny 
Date:   Mon Sep 24 15:33:57 2018 +0200

Version: 18.2.1

libwayland-egl is no more, the one provided by wayland is build-required
instead.
GIT archive used, as some pre-generated sources in the official tarball
are incompatible with our LLVM version.

 Mesa.spec | 62 +-
 1 file changed, 13 insertions(+), 49 deletions(-)
---
diff --git a/Mesa.spec b/Mesa.spec
index dd29968..9ac5476 100644
--- a/Mesa.spec
+++ b/Mesa.spec
@@ -33,12 +33,13 @@
 # minimal supported xserver version
 %definexserver_ver 1.5.0
 # other packages
-%definelibdrm_ver  2.4.91
+%definelibdrm_ver  2.4.92
 %definedri2proto_ver   2.8
 %definedri3proto_ver   1.0
 %defineglproto_ver 1.4.14
 %definepresentproto_ver1.0
 %definezlib_ver1.2.8
+%definewayland_ver 1.11
 
 %if %{without gallium}
 %undefine  with_gallium_i915
@@ -59,12 +60,14 @@
 Summary:   Free OpenGL implementation
 Summary(pl.UTF-8): Wolnodostępna implementacja standardu OpenGL
 Name:  Mesa
-Version:   18.1.8
+Version:   18.2.1
 Release:   1
 License:   MIT (core) and others - see license.html file
 Group: X11/Libraries
-Source0:   ftp://ftp.freedesktop.org/pub/mesa/mesa-%{version}.tar.xz
-# Source0-md5: d2d1de1e338e63877f753ab9d66ba597
+#Source0:  ftp://ftp.freedesktop.org/pub/mesa/mesa-%{version}.tar.xz
+# https://bugs.freedesktop.org/show_bug.cgi?id=107865
+Source0:   
https://gitlab.freedesktop.org/mesa/mesa/-/archive/mesa-%{version}/mesa-mesa-%{version}.tar.bz2
+# Source0-md5: dd9976c620c8646c60a41ef7197c88c2
 Patch0:%{name}-link.patch
 URL:   http://www.mesa3d.org/
 BuildRequires: autoconf >= 2.60
@@ -86,8 +89,8 @@ BuildRequires:libtool >= 2:2.2
 BuildRequires: libvdpau-devel >= 1.1
 BuildRequires: libxcb-devel >= 1.13
 # gallium core requires 3.3.0, OpenCL/r600 require 3.9.0, swr/radeonsi/radv 
4.0.0
-%{?with_gallium:BuildRequires: llvm-devel >= 4.0}
-%{?with_radv:BuildRequires:llvm-devel >= 4.0}
+%{?with_gallium:BuildRequires: llvm-devel >= 5.0}
+%{?with_radv:BuildRequires:llvm-devel >= 5.0}
 %{?with_opencl:BuildRequires:  llvm-libclc}
 # for SHA1 (could use also libmd/libsha1/libgcrypt/openssl instead)
 BuildRequires: nettle-devel
@@ -105,8 +108,9 @@ BuildRequires:  python-modules >= 2
 BuildRequires: rpmbuild(macros) >= 1.470
 BuildRequires: sed >= 4.0
 # wayland-{client,server}
-%{?with_wayland:BuildRequires: wayland-devel >= 1.11.0}
+%{?with_wayland:BuildRequires: wayland-devel >= %{wayland_ver}}
 %{?with_wayland:BuildRequires: wayland-protocols >= 1.8}
+%{?with_wayland:BuildRequires: wayland-egl-devel >= %{wayland_ver}}
 BuildRequires: xorg-lib-libXdamage-devel >= 1.1
 BuildRequires: xorg-lib-libXext-devel >= 1.0.5
 BuildRequires: xorg-lib-libXfixes-devel
@@ -626,31 +630,6 @@ Mesa GL API shared library, common for various APIs (EGL, 
GL, GLES).
 Biblioteka współdzielona Mesa GL API, wspólna dla różnych API (EGL,
 GL, GLES).
 
-%package libwayland-egl
-Summary:   Wayland EGL library
-Summary(pl.UTF-8): Biblioteka Wayland EGL
-Group: Libraries
-Requires:  libdrm >= %{libdrm_ver}
-
-%description libwayland-egl
-Wayland EGL platform library.
-
-%description libwayland-egl -l pl.UTF-8
-Biblioteka platformy EGL Wayland.
-
-%package libwayland-egl-devel
-Summary:   Development files for Wayland EGL library
-Summary(pl.UTF-8): Pliki programistyczne biblioteki Wayland EGL
-Group: Development/Libraries
-Requires:  %{name}-libwayland-egl = %{version}-%{release}
-Requires:  libdrm-devel >= %{libdrm_ver}
-
-%description libwayland-egl-devel
-Development files for Wayland EGL platform library.
-
-%description libwayland-egl-devel -l pl.UTF-8
-Pliki programistyczne biblioteki platformy EGL Wayland.
-
 %package libxatracker
 Summary:   Xorg Gallium3D accelleration library
 Summary(pl.UTF-8): Biblioteka akceleracji Gallium3D dla Xorg
@@ -1262,7 +1241,7 @@ radv - experimental Mesa Vulkan driver for AMD Radeon 
GPUs.
 radv - eksperymentalny sterownik Vulkan dla GPU firmy AMD.
 
 %prep
-%setup -q -n mesa-%{version}
+%setup -q -n mesa-mesa-%{version}
 %patch0 -p1
 
 %build
@@ -1410,9 +1389,6 @@ rm -rf $RPM_BUILD_ROOT
 %post  libglapi -p /sbin/ldconfig
 %postunlibglapi -p /sbin/ldconfig
 
-%post  libwayland-egl -p /sbin/ldconfig
-%postunlibwayland-egl -p /sbin/ldconfig
-
 %post  libxatracker -p /sbin/ldconfig
 %postunlibxatracker -p /sbin/ldconfig
 
@@ -1452,7 +1428,7 @@ rm -rf $RPM_BUILD_ROOT
 
 %files libGL
 %defattr(644,root,root,755)
-%doc docs/{*.html,README.UVD,patents.txt,relnotes/*.html}
+%doc 

DISTFILES: glibc: glibc-2.28.tar.xz glibc-man-pages.tar.xz glibc-git.patch

2018-09-24 Thread arekm
Request by: arekm


Files fetched: 1

ALREADY GOT: http://ftp.gnu.org/gnu/glibc/glibc-2.28.tar.xz
c81d2388896379997bc359d4f2084239  glibc-2.28.tar.xz
ALREADY GOT: no-url://glibc-man-pages.tar.xz
78a8f7f8dfc63123f47a614e99136e61  glibc-man-pages.tar.xz
STORED: no-url://glibc-git.patch
b8a6beec50df93175a7593dfff27e699  glibc-git.patch
Size: 64131 bytes


-- 
Virtually Yours: distfiles.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/glibc] - rel 5; update git patch from upstream

2018-09-24 Thread arekm
commit 1f1852ae8d8fd0621a101bbf8bca369b1ce8d231
Author: Arkadiusz Miśkiewicz 
Date:   Mon Sep 24 14:39:35 2018 +0200

- rel 5; update git patch from upstream

 glibc.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/glibc.spec b/glibc.spec
index 06d379c..ab93ef8 100644
--- a/glibc.spec
+++ b/glibc.spec
@@ -45,7 +45,7 @@ Summary(tr.UTF-8):GNU libc
 Summary(uk.UTF-8): GNU libc версії
 Name:  glibc
 Version:   %{core_version}
-Release:   4
+Release:   5
 Epoch: 6
 License:   LGPL v2.1+
 Group: Libraries
@@ -62,7 +62,7 @@ Source7:  %{name}-LD-path.c
 Source9:   nscd.tmpfiles
 # use branch.sh to update glibc-git.patch
 Patch0:glibc-git.patch
-# Patch0-md5:  c7b25a45e6e913e271182cf422ff8fc1
+# Patch0-md5:  b8a6beec50df93175a7593dfff27e699
 # against GNU TP (libc domain)
 #Patch1:   %{name}-pl.po-update.patch
 Patch2:%{name}-pld.patch


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/glibc.git/commitdiff/1f1852ae8d8fd0621a101bbf8bca369b1ce8d231

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


SVN: admin/dns/pld-linux.org.template

2018-09-24 Thread adamg
Author: adamg
Date: Mon Sep 24 14:30:57 2018
New Revision: 12778

Modified:
   admin/dns/pld-linux.org.template
Log:
- www moved

Modified: admin/dns/pld-linux.org.template
==
--- admin/dns/pld-linux.org.template(original)
+++ admin/dns/pld-linux.org.templateMon Sep 24 14:30:57 2018
@@ -1,7 +1,7 @@
 $TTL 30m
 $ORIGIN .
 pld-linux.org  IN SOA  ns1.domena.pl. hostmaster.pld-linux.org. (
-   2018092400 ; serial
+   2018092401 ; serial
1h ; refresh
30m; retry
7d ; expire
@@ -13,7 +13,7 @@
 NS  ns3.domena.pl.
 
 $TTL 2m
-   A   62.129.243.203
+   A   178.217.190.88
 ;  2001:6a0:200:82e8::10
 $TTL 5m
 
@@ -216,12 +216,13 @@
 
 ; arekm
 buildlogs  1h  A   193.239.45.180
+; adamg
 forum  10m CNAME   team
 www1m  CNAME   pld-linux.org.
 www.devel  1m  CNAME   pld-linux.org.
 bugs   15m CNAME   pld-linux.org.
-ipv4   1m  A   62.129.243.203
-www.ipv4   1m  A   62.129.243.203
+ipv4   1m  A   178.217.190.88
+www.ipv4   1m  A   178.217.190.88
 ;ipv6  1m  2001:6a0:200:82e8::10
 ;www.ipv6  1m  2001:6a0:200:82e8::10
 
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


SVN: admin/dns/pld-linux.org.template

2018-09-24 Thread adamg
Author: adamg
Date: Mon Sep 24 14:23:22 2018
New Revision: 12777

Modified:
   admin/dns/pld-linux.org.template
Log:
- remove some old entries

Modified: admin/dns/pld-linux.org.template
==
--- admin/dns/pld-linux.org.template(original)
+++ admin/dns/pld-linux.org.templateMon Sep 24 14:23:22 2018
@@ -1,7 +1,7 @@
 $TTL 30m
 $ORIGIN .
 pld-linux.org  IN SOA  ns1.domena.pl. hostmaster.pld-linux.org. (
-   2018031000 ; serial
+   2018092400 ; serial
1h ; refresh
30m; retry
7d ; expire
@@ -117,14 +117,9 @@
 ep09   A   217.73.31.20
 ep09   2a01:390:a:0:250:56ff:fe94:a3eb
 ; adamg
-mamut  A   193.0.95.187
-; adamg
 team   A   178.217.190.74
-atm-14 CNAME   team
 ; duddits
 stbr   A   78.47.240.27
-; adamg
-akcyza A   217.149.246.3
 ; gausus
 magnus A   193.0.95.179
 ; averne
@@ -309,11 +304,6 @@
 kde4.livecdCNAME   ep09
 pldliveinstaller   CNAME   ep09
 
-; adamg
-ns1A   37.157.207.233
-; adamg
-ns2A   178.217.190.99
-
 ; mmazur's project
 buildmgr   A   217.73.31.20
 
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/haproxy] up to 1.8.14

2018-09-24 Thread glen
commit b7b5789f6e247ff20a8d6734b0b386d46c912f76
Author: Elan Ruusamäe 
Date:   Mon Sep 24 15:20:45 2018 +0300

up to 1.8.14

 haproxy.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/haproxy.spec b/haproxy.spec
index 95e3e55..f102fc1 100644
--- a/haproxy.spec
+++ b/haproxy.spec
@@ -10,12 +10,12 @@
 Summary:   haproxy - high-performance TCP/HTTP load balancer
 Summary(pl.UTF-8): haproxy - wysoko wydajny load balancer TCP/HTTP
 Name:  haproxy
-Version:   1.8.3
-Release:   2
+Version:   1.8.14
+Release:   1
 License:   GPL v2
 Group: Networking/Daemons
 Source0:   
http://www.haproxy.org/download/1.8/src/%{name}-%{version}.tar.gz
-# Source0-md5: 2e1e3eb42f07983c9303c5622d812862
+# Source0-md5: a050bcb90426d1c939b4b0ce3098a8c4
 Source1:   
https://github.com/makinacorpus/haproxy-1.5/raw/master/debian/halog.1
 # Source1-md5: df4631f3cbc59893a2cd5e4364c9e755
 Source2:   
https://github.com/janeczku/haproxy-acme-validation-plugin/raw/master/acme-http01-webroot.lua


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/haproxy.git/commitdiff/b7b5789f6e247ff20a8d6734b0b386d46c912f76

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


DISTFILES: haproxy: haproxy-1.8.14.tar.gz halog.1 acme-http01-webroot.lua

2018-09-24 Thread glen
Request by: glen


Files fetched: 1

STORED: http://www.haproxy.org/download/1.8/src/haproxy-1.8.14.tar.gz
a050bcb90426d1c939b4b0ce3098a8c4  haproxy-1.8.14.tar.gz
Size: 2070813 bytes
ALREADY GOT: 
https://github.com/makinacorpus/haproxy-1.5/raw/master/debian/halog.1
df4631f3cbc59893a2cd5e4364c9e755  halog.1
ALREADY GOT: 
https://github.com/janeczku/haproxy-acme-validation-plugin/raw/master/acme-http01-webroot.lua
b68e49e7f7a862d504a4ab335a7cee2a  acme-http01-webroot.lua


-- 
Virtually Yours: distfiles.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


DISTFILES: sqlcipher: sqlcipher-3.4.2.tar.gz

2018-09-24 Thread adamg
Request by: adamg


Files fetched: 1

STORED: 
https://github.com/sqlcipher/sqlcipher/archive/v3.4.2/sqlcipher-3.4.2.tar.gz
b224b7a3a1927d2e6344ae6e27308c8c  sqlcipher-3.4.2.tar.gz
Size: 14743960 bytes


-- 
Virtually Yours: distfiles.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/sqlcipher] - updated to 3.4.2

2018-09-24 Thread adamg
commit 6d9406534e9a2cc02a3974a30525f5498809c860
Author: Adam Gołębiowski 
Date:   Mon Sep 24 13:10:28 2018 +0200

- updated to 3.4.2

 sqlcipher.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/sqlcipher.spec b/sqlcipher.spec
index ba9d4d4..a1233d5 100644
--- a/sqlcipher.spec
+++ b/sqlcipher.spec
@@ -10,13 +10,13 @@
 Summary:   SQLCipher library - SQLite extension that provides AES 
encryption
 Summary(pl.UTF-8): Biblioteka SQLCipher - rozszerzenie SQLite zapewniające 
szyfrowanie AES
 Name:  sqlcipher
-Version:   3.4.0
-Release:   2
+Version:   3.4.2
+Release:   1
 License:   BSD
 Group: Libraries
 # Source0Download: https://github.com/sqlcipher/sqlcipher/releases
 Source0:   
https://github.com/sqlcipher/sqlcipher/archive/v%{version}/%{name}-%{version}.tar.gz
-# Source0-md5: 2225da8fc163f78b5fffd0bcf8b28695
+# Source0-md5: b224b7a3a1927d2e6344ae6e27308c8c
 URL:   https://www.zetetic.net/sqlcipher/
 %{?with_load_extension:Provides:   %{name}(load_extension)}
 %{?with_unlock_notify:Provides:%{name}(unlock_notify)}


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/sqlcipher.git/commitdiff/6d9406534e9a2cc02a3974a30525f5498809c860

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


DISTFILES: apache: httpd-2.4.35.tar.bz2

2018-09-24 Thread arekm
Request by: arekm


Files fetched: 1

STORED: http://www.apache.org/dist/httpd/httpd-2.4.35.tar.bz2
30c1cde80ffe814a8d16b4fdffda330a  httpd-2.4.35.tar.bz2
Size: 7044336 bytes


-- 
Virtually Yours: distfiles.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/apache] - up to 2.4.35

2018-09-24 Thread arekm
commit c1f27b4e82a4c0185d7e0aab08e1c09823f4da88
Author: Arkadiusz Miśkiewicz 
Date:   Mon Sep 24 12:57:33 2018 +0200

- up to 2.4.35

 apache-suexec.patch | 17 -
 apache.spec |  6 +++---
 2 files changed, 3 insertions(+), 20 deletions(-)
---
diff --git a/apache.spec b/apache.spec
index ee2e40e..6541a31 100644
--- a/apache.spec
+++ b/apache.spec
@@ -35,12 +35,12 @@ Summary(pt_BR.UTF-8):   Servidor HTTPD para prover 
serviços WWW
 Summary(ru.UTF-8): Самый популярный веб-сервер
 Summary(tr.UTF-8): Lider WWW tarayıcı
 Name:  apache
-Version:   2.4.34
-Release:   3
+Version:   2.4.35
+Release:   1
 License:   Apache v2.0
 Group: Networking/Daemons/HTTP
 Source0:   http://www.apache.org/dist/httpd/httpd-%{version}.tar.bz2
-# Source0-md5: 818adca52f3be187fe45d6822755be95
+# Source0-md5: 30c1cde80ffe814a8d16b4fdffda330a
 Source1:   %{name}.init
 Source2:   %{name}.logrotate
 Source3:   %{name}.sysconfig
diff --git a/apache-suexec.patch b/apache-suexec.patch
index 7fe4adb..5615913 100644
--- a/apache-suexec.patch
+++ b/apache-suexec.patch
@@ -10,20 +10,3 @@
  
  install-suexec-caps:
 
 httpd-2.4.34/Makefile.in~  2018-07-16 18:45:42.0 +0200
-+++ httpd-2.4.34/Makefile.in   2018-07-16 19:33:00.579273405 +0200
-@@ -277,12 +277,12 @@ install-suexec-binary:
- $(INSTALL_PROGRAM) $(top_builddir)/support/suexec 
$(DESTDIR)$(sbindir); \
-   fi
- 
--install-suexec-setuid:
-+install-suexec-setuid: install-suexec-binary
-   @if test -f $(builddir)/support/suexec; then \
-   chmod 0755 $(DESTDIR)$(sbindir)/suexec; \
-   fi
- 
--install-suexec-caps:
-+install-suexec-caps: install-suexec-binary
-   @if test -f $(builddir)/support/suexec; then \
- setcap 'cap_setuid,cap_setgid+pe' $(DESTDIR)$(sbindir)/suexec; \
-   fi


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/apache.git/commitdiff/c1f27b4e82a4c0185d7e0aab08e1c09823f4da88

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit