cdg: sklad.txt bye bye

2024-03-15 Thread jajcus
Author: jajcus   Date: Fri Mar 15 19:02:03 2024 GMT
Module: cdg   Tag: HEAD
 Log message:
bye bye

 Files affected:
cdg:
   sklad.txt (1.221 -> 1.222) 

 Diffs:


Index: cdg/sklad.txt
diff -u cdg/sklad.txt:1.221 cdg/sklad.txt:1.222
--- cdg/sklad.txt:1.221 Wed Dec  5 10:46:31 2012
+++ cdg/sklad.txt   Fri Mar 15 20:01:58 2024
@@ -12,7 +12,6 @@
 gotar(en,pl)
 havner(en,pl)
 hawk(pl,en)
-jajcus(pl) vacation untill 2012-07-16
 marcus(pl)
 matkor(pl)
 mmazur(pl,en)


 CVS-web:
http://cvs.pld-linux.org/cdg/sklad.txt?r1=1.221=1.222

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


[packages/sqlite3] enable json1 extension

2020-01-08 Thread jajcus
commit f38b1e084398e6fcbb017fc5af69ff315f9e2033
Author: Jacek Konieczny 
Date:   Wed Jan 8 10:25:09 2020 +0100

enable json1 extension

It is required by the Signal desktop app

Release: 2

 sqlite3.spec | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
---
diff --git a/sqlite3.spec b/sqlite3.spec
index 8db9569..b50095e 100644
--- a/sqlite3.spec
+++ b/sqlite3.spec
@@ -11,6 +11,7 @@
 %bcond_without unlock_notify   # disable unlock notify API
 %bcond_without load_extension  # enable load extension API
 %bcond_withicu # ICU tokenizer support
+%bcond_without json1   # json1 extension
 %bcond_without wal_replication # WAL replication support
 
 %ifarch %{x8664}
@@ -36,7 +37,7 @@ Summary:  SQLite3 library
 Summary(pl.UTF-8): Biblioteka SQLite3
 Name:  sqlite3
 Version:   %{ver}
-Release:   1
+Release:   2
 License:   Public Domain
 Group: Libraries
 # Source0Download: http://www.sqlite.org/download.html
@@ -295,6 +296,7 @@ append-cppflags -DSQLITE_ENABLE_WAL_REPLICATION
%{?with_readline:--disable-editline} \
%{!?with_tcl:--disable-tcl}%{?with_tcl:--with-tcl=%{_ulibdir}} \
%{__enable_disable load_extension load-extension} \
+   %{__enable_disable json1} \
--enable-threadsafe \
--enable-fts5
 


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/sqlite3.git/commitdiff/f38b1e084398e6fcbb017fc5af69ff315f9e2033

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


[packages/Mesa] actually add bug111552.patch

2019-09-10 Thread jajcus
commit 3d8549dc67734ee93704d1020065f332517ba044
Author: Jacek Konieczny 
Date:   Tue Sep 10 09:14:50 2019 +0200

actually add bug111552.patch

 bug111552.patch | 44 
 1 file changed, 44 insertions(+)
---
diff --git a/bug111552.patch b/bug111552.patch
new file mode 100644
index 000..1e053f5
--- /dev/null
+++ b/bug111552.patch
@@ -0,0 +1,44 @@
+From 3b1a7e535900293935399ce49a67562eafc7 Mon Sep 17 00:00:00 2001
+From: Jason Ekstrand 
+Date: Tue, 3 Sep 2019 10:00:23 -0500
+Subject: [PATCH] anv: Bump maxComputeWorkgroupSize
+
+Fixes: 9a129510f56f "anv: Bump maxComputeWorkgroupInvocations"
+Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=111552
+Reviewed-by: Lionel Landwerlin 
+---
+ src/intel/vulkan/anv_device.c | 10 ++
+ 1 file changed, 6 insertions(+), 4 deletions(-)
+
+diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c
+index a6572135c91..3497a01f900 100644
+--- a/src/intel/vulkan/anv_device.c
 b/src/intel/vulkan/anv_device.c
+@@ -1264,6 +1264,8 @@ void anv_GetPhysicalDeviceProperties(
+   pdevice->has_a64_buffer_access ? UINT32_MAX :
+MAX_BINDING_TABLE_SIZE - MAX_RTS;
+ 
++   const uint32_t max_workgroup_size = 32 * devinfo->max_cs_threads;
++
+VkSampleCountFlags sample_counts =
+   isl_device_get_sample_counts(>isl_dev);
+ 
+@@ -1322,11 +1324,11 @@ void anv_GetPhysicalDeviceProperties(
+   .maxFragmentCombinedOutputResources   = 8,
+   .maxComputeSharedMemorySize   = 64 * 1024,
+   .maxComputeWorkGroupCount = { 65535, 65535, 65535 },
+-  .maxComputeWorkGroupInvocations   = 32 * 
devinfo->max_cs_threads,
++  .maxComputeWorkGroupInvocations   = max_workgroup_size,
+   .maxComputeWorkGroupSize = {
+- 16 * devinfo->max_cs_threads,
+- 16 * devinfo->max_cs_threads,
+- 16 * devinfo->max_cs_threads,
++ max_workgroup_size,
++ max_workgroup_size,
++ max_workgroup_size,
+   },
+   .subPixelPrecisionBits= 8,
+   .subTexelPrecisionBits= 8,
+-- 
+2.22.0
+


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/Mesa.git/commitdiff/3d8549dc67734ee93704d1020065f332517ba044

___
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-19.1.6.tar.bz2

2019-09-10 Thread jajcus
Request by: jajcus


Files fetched: 1

STORED: 
https://gitlab.freedesktop.org/mesa/mesa/-/archive/mesa-19.1.6/mesa-mesa-19.1.6.tar.bz2
090aae399f31f7518f44be4a93a5f4b7  mesa-mesa-19.1.6.tar.bz2
Size: 12585692 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] bug111552.patch added to fix Geekbench5 Vulkan tests

2019-09-10 Thread jajcus
commit aa132af071343d9857323a6009b0cdb719772789
Author: Jacek Konieczny 
Date:   Tue Sep 10 09:12:43 2019 +0200

bug111552.patch added to fix Geekbench5 Vulkan tests

https://bugs.freedesktop.org/show_bug.cgi?id=111552

 Mesa.spec | 2 ++
 1 file changed, 2 insertions(+)
---
diff --git a/Mesa.spec b/Mesa.spec
index 1f4324b..298c3d1 100644
--- a/Mesa.spec
+++ b/Mesa.spec
@@ -65,6 +65,7 @@ Source0:  
https://gitlab.freedesktop.org/mesa/mesa/-/archive/mesa-%{version}/mesa
 # Source0-md5: 090aae399f31f7518f44be4a93a5f4b7
 Patch0:nouveau_no_rtti.patch
 Patch1:
i9x5-tex-ignore-the-diff-between-GL_TEXTURE_2D-and-GL_TEXTURE_RECTANGLE.patch
+Patch2:bug111552.patch
 URL:   http://www.mesa3d.org/
 %{?with_opencl:BuildRequires:  clang-devel >= %{llvm_ver}}
 BuildRequires: elfutils-devel
@@ -1302,6 +1303,7 @@ radv - eksperymentalny sterownik Vulkan dla GPU firmy AMD.
 %setup -q -n mesa-mesa-%{version}
 %patch0 -p1
 %patch1 -p1
+%patch2 -p1
 
 %build
 


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/Mesa.git/commitdiff/aa132af071343d9857323a6009b0cdb719772789

___
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: 19.1.6

2019-09-10 Thread jajcus
commit d34f374b2a3c88f9dd56d9d9f76072af56d7f439
Author: Jacek Konieczny 
Date:   Tue Sep 10 09:10:35 2019 +0200

Version: 19.1.6

 Mesa.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/Mesa.spec b/Mesa.spec
index 95f3059..1f4324b 100644
--- a/Mesa.spec
+++ b/Mesa.spec
@@ -55,14 +55,14 @@
 Summary:   Free OpenGL implementation
 Summary(pl.UTF-8): Wolnodostępna implementacja standardu OpenGL
 Name:  Mesa
-Version:   19.1.5
-Release:   3
+Version:   19.1.6
+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:7c61a801311fb8d2f7b3cceb7b5cf308
 Source0:   
https://gitlab.freedesktop.org/mesa/mesa/-/archive/mesa-%{version}/mesa-mesa-%{version}.tar.bz2
-# Source0-md5: 751a9f0fc21b7c0c58518adff8b5ec2b
+# Source0-md5: 090aae399f31f7518f44be4a93a5f4b7
 Patch0:nouveau_no_rtti.patch
 Patch1:
i9x5-tex-ignore-the-diff-between-GL_TEXTURE_2D-and-GL_TEXTURE_RECTANGLE.patch
 URL:   http://www.mesa3d.org/


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/Mesa.git/commitdiff/aa132af071343d9857323a6009b0cdb719772789

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


DISTFILES: asterisk: asterisk-16.5.0.tar.gz asterisk-opus-a6b9521f10817c1f39f21f90fecd3f00bbb164d0.tar.gz pjproject-2.9.tar.bz2

2019-07-29 Thread jajcus
Request by: jajcus


Files fetched: 2

STORED: http://downloads.digium.com/pub/asterisk/releases/asterisk-16.5.0.tar.gz
6ee7b77ff819daae0e9ead589f0b2e46  asterisk-16.5.0.tar.gz
Size: 27573198 bytes
ALREADY GOT: 
https://github.com/seanbright/asterisk-opus/archive/a6b9521f10817c1f39f21f90fecd3f00bbb164d0/asterisk-opus-a6b9521f10817c1f39f21f90fecd3f00bbb164d0.tar.gz
d2deae1095b6b42331d3060700c25493  
asterisk-opus-a6b9521f10817c1f39f21f90fecd3f00bbb164d0.tar.gz
STORED: 
https://raw.githubusercontent.com/asterisk/third-party/master/pjproject/2.9/pjproject-2.9.tar.bz2
66757078e7bd7cf316acb0425c2fdd6f  pjproject-2.9.tar.bz2
Size: 5009546 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/asterisk] Version: 16.5.0

2019-07-29 Thread jajcus
commit d26acee019725cd3d2e1d1af1923a866c1f8dcf4
Author: Jacek Konieczny 
Date:   Mon Jul 29 09:20:49 2019 +0200

Version: 16.5.0

 asterisk.spec | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/asterisk.spec b/asterisk.spec
index 134eadd..7184732 100644
--- a/asterisk.spec
+++ b/asterisk.spec
@@ -44,19 +44,19 @@
 #   package is updated to the version used by Asterisk, with all Asterisk
 #   patches applied and with configuration synced.
 
-%define pjproject_version  2.8
+%define pjproject_version  2.9
 
 %defineopus_commit a6b9521f10817c1f39f21f90fecd3f00bbb164d0
 
 Summary:   Asterisk PBX
 Summary(pl.UTF-8): Centralka (PBX) Asterisk
 Name:  asterisk
-Version:   16.4.0
+Version:   16.5.0
 Release:   1
 License:   GPL v2
 Group: Applications/System
 Source0:   
http://downloads.digium.com/pub/asterisk/releases/%{name}-%{version}.tar.gz
-# Source0-md5: b1bb968fd3b51d420982f5d82a32890f
+# Source0-md5: 6ee7b77ff819daae0e9ead589f0b2e46
 Source1:   %{name}.init
 Source2:   %{name}.sysconfig
 Source3:   %{name}.tmpfiles
@@ -69,7 +69,7 @@ Source7:  menuselect.makeopts
 Source8:   
https://github.com/seanbright/asterisk-opus/archive/%{opus_commit}/asterisk-opus-%{opus_commit}.tar.gz
 # Source8-md5: d2deae1095b6b42331d3060700c25493
 Source9:   
https://raw.githubusercontent.com/asterisk/third-party/master/pjproject/%{pjproject_version}/pjproject-%{pjproject_version}.tar.bz2
-# Source9-md5: 6487d54213f270d307eaa60efc9f56f3
+# Source9-md5: 66757078e7bd7cf316acb0425c2fdd6f
 Patch0:lua_versions.patch
 Patch1:%{name}-ppc.patch
 Patch2:FHS-paths.patch


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/asterisk.git/commitdiff/d26acee019725cd3d2e1d1af1923a866c1f8dcf4

___
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-19.1.3.tar.bz2

2019-07-24 Thread jajcus
Request by: jajcus


Files fetched: 1

STORED: 
https://gitlab.freedesktop.org/mesa/mesa/-/archive/mesa-19.1.3/mesa-mesa-19.1.3.tar.bz2
bbd1b6075bed2395e739703285a5e26f  mesa-mesa-19.1.3.tar.bz2
Size: 12588426 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: 19.1.3

2019-07-24 Thread jajcus
commit 45ed1f4bf568f8b2b4303b20af820ef6b7e46ec9
Author: Jacek Konieczny 
Date:   Wed Jul 24 10:38:52 2019 +0200

Version: 19.1.3

 Mesa.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/Mesa.spec b/Mesa.spec
index 721f1eb..9faedf1 100644
--- a/Mesa.spec
+++ b/Mesa.spec
@@ -55,14 +55,14 @@
 Summary:   Free OpenGL implementation
 Summary(pl.UTF-8): Wolnodostępna implementacja standardu OpenGL
 Name:  Mesa
-Version:   19.1.2
+Version:   19.1.3
 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:7c61a801311fb8d2f7b3cceb7b5cf308
 Source0:   
https://gitlab.freedesktop.org/mesa/mesa/-/archive/mesa-%{version}/mesa-mesa-%{version}.tar.bz2
-# Source0-md5: 1630532ee6431b67c5dc31d2a385963e
+# Source0-md5: bbd1b6075bed2395e739703285a5e26f
 Patch0:nouveau_no_rtti.patch
 URL:   http://www.mesa3d.org/
 %{?with_opencl:BuildRequires:  clang-devel >= %{llvm_ver}}


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/Mesa.git/commitdiff/45ed1f4bf568f8b2b4303b20af820ef6b7e46ec9

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


DISTFILES: asterisk: asterisk-16.4.0.tar.gz asterisk-opus-a6b9521f10817c1f39f21f90fecd3f00bbb164d0.tar.gz pjproject-2.8.tar.bz2

2019-07-22 Thread jajcus
Request by: jajcus


Files fetched: 1

STORED: http://downloads.digium.com/pub/asterisk/releases/asterisk-16.4.0.tar.gz
b1bb968fd3b51d420982f5d82a32890f  asterisk-16.4.0.tar.gz
Size: 27573913 bytes
ALREADY GOT: 
https://github.com/seanbright/asterisk-opus/archive/a6b9521f10817c1f39f21f90fecd3f00bbb164d0/asterisk-opus-a6b9521f10817c1f39f21f90fecd3f00bbb164d0.tar.gz
d2deae1095b6b42331d3060700c25493  
asterisk-opus-a6b9521f10817c1f39f21f90fecd3f00bbb164d0.tar.gz
ALREADY GOT: 
https://raw.githubusercontent.com/asterisk/third-party/master/pjproject/2.8/pjproject-2.8.tar.bz2
6487d54213f270d307eaa60efc9f56f3  pjproject-2.8.tar.bz2


-- 
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/asterisk] Version: 16.4.0

2019-07-22 Thread jajcus
commit d3a7b3c37d846d28d160f8185cb00200f88358fe
Author: Jacek Konieczny 
Date:   Mon Jul 22 15:04:54 2019 +0200

Version: 16.4.0

 FHS-paths.patch | 12 
 asterisk.spec   |  4 ++--
 2 files changed, 2 insertions(+), 14 deletions(-)
---
diff --git a/asterisk.spec b/asterisk.spec
index 2753e45..134eadd 100644
--- a/asterisk.spec
+++ b/asterisk.spec
@@ -51,12 +51,12 @@
 Summary:   Asterisk PBX
 Summary(pl.UTF-8): Centralka (PBX) Asterisk
 Name:  asterisk
-Version:   16.3.0
+Version:   16.4.0
 Release:   1
 License:   GPL v2
 Group: Applications/System
 Source0:   
http://downloads.digium.com/pub/asterisk/releases/%{name}-%{version}.tar.gz
-# Source0-md5: 9a31b697a54eb84c49eff57d2ba2723c
+# Source0-md5: b1bb968fd3b51d420982f5d82a32890f
 Source1:   %{name}.init
 Source2:   %{name}.sysconfig
 Source3:   %{name}.tmpfiles
diff --git a/FHS-paths.patch b/FHS-paths.patch
index 2612cc1..61b7e69 100644
--- a/FHS-paths.patch
+++ b/FHS-paths.patch
@@ -527,18 +527,6 @@ diff -dur -x '*~' -x '*.orig' -x '*.rej' 
asterisk-14.5.0.orig/pbx/ael/ael-test/r
  exten => 761,3,Goto(s,loopback)
  exten => 762,1,agi(tts-riddle.agi)
  exten => 762,2,Background(gsm/what-time-it-is2)
-diff -dur -x '*~' -x '*.orig' -x '*.rej' asterisk-14.5.0.orig/UPGRADE-1.4.txt 
asterisk-14.5.0/UPGRADE-1.4.txt
 asterisk-14.5.0.orig/UPGRADE-1.4.txt   2017-05-30 19:50:46.0 
+0200
-+++ asterisk-14.5.0/UPGRADE-1.4.txt2017-06-09 14:40:59.0 +0200
-@@ -92,7 +92,7 @@
- WARNING: Asterisk 1.4 supports a new layout for sound files in multiple 
languages;
- instead of the alternate-language files being stored in subdirectories 
underneath
- the existing files (for French, that would be digits/fr, letters/fr, 
phonetic/fr,
--etc.) the new layout creates one directory under /var/lib/asterisk/sounds for 
the
-+etc.) the new layout creates one directory under /usr/share/asterisk/sounds 
for the
- language itself, then places all the sound files for that language under that
- directory and its subdirectories. This is the layout that will be created if 
you
- select non-English languages to be installed via menuselect, HOWEVER Asterisk 
does
 diff -dur -x '*~' -x '*.orig' -x '*.rej' asterisk-14.5.0.orig/utils/ael_main.c 
asterisk-14.5.0/utils/ael_main.c
 --- asterisk-14.5.0.orig/utils/ael_main.c  2017-05-30 19:50:46.0 
+0200
 +++ asterisk-14.5.0/utils/ael_main.c   2017-06-09 14:41:43.0 +0200


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/asterisk.git/commitdiff/d3a7b3c37d846d28d160f8185cb00200f88358fe

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


DISTFILES: zabbix: zabbix-4.0.10.tar.gz

2019-07-04 Thread jajcus
Request by: jajcus


Files fetched: 1

STORED: http://downloads.sourceforge.net/zabbix/zabbix-4.0.10.tar.gz
7bf985e8a4b838f51b9d73596feafb22  zabbix-4.0.10.tar.gz
Size: 17140053 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/zabbix/zabbix-4.0] Version: 4.0.10

2019-07-04 Thread jajcus
commit ba31f5ed3a8a7fac009f6d1f91c1f97622d2a95f
Author: Jacek Konieczny 
Date:   Thu Jul 4 14:28:40 2019 +0200

Version: 4.0.10

 http_poller_crash.patch | 117 
 zabbix.spec |   6 +--
 2 files changed, 2 insertions(+), 121 deletions(-)
---
diff --git a/zabbix.spec b/zabbix.spec
index b4702a9..ae78e44 100644
--- a/zabbix.spec
+++ b/zabbix.spec
@@ -14,12 +14,12 @@
 Summary:   Zabbix - network monitoring software
 Summary(pl.UTF-8): Zabbix - oprogramowanie do monitorowania sieci
 Name:  zabbix
-Version:   4.0.7
+Version:   4.0.10
 Release:   1
 License:   GPL v2+
 Group: Networking/Utilities
 Source0:   
http://downloads.sourceforge.net/zabbix/%{name}-%{version}.tar.gz
-# Source0-md5: 3a53e2e4c18fde9edbe34a89cc7d8297
+# Source0-md5: 7bf985e8a4b838f51b9d73596feafb22
 Source1:   %{name}-apache.conf
 Source2:   %{name}_server.service
 Source3:   %{name}_agentd.service
@@ -30,7 +30,6 @@ Source7:  %{name}_agentd.init
 Patch0:config.patch
 Patch1:sqlite3_dbname.patch
 Patch2:always_compile_ipc.patch
-Patch3:http_poller_crash.patch
 URL:   http://zabbix.sourceforge.net/
 BuildRequires: OpenIPMI-devel
 BuildRequires: autoconf
@@ -294,7 +293,6 @@ This package provides the Zabbix Java Gateway.
 %patch0 -p1
 %patch1 -p1
 %patch2 -p1
-%patch3 -p1
 
 %build
 %{__libtoolize}
diff --git a/http_poller_crash.patch b/http_poller_crash.patch
deleted file mode 100644
index 2c78b13..000
--- a/http_poller_crash.patch
+++ /dev/null
@@ -1,117 +0,0 @@
-From 459ee438244f7d1b7907e44738c40bdc8f23660d Mon Sep 17 00:00:00 2001
-From: Aleksejs Sestakovs 
-Date: Mon, 29 Apr 2019 15:09:07 +0300
-Subject: [PATCH] ...PS. [ZBX-16050] fixed HTTP poller crashes
-

- src/zabbix_server/httppoller/httptest.c | 64 +
- 1 file changed, 23 insertions(+), 41 deletions(-)
-
-diff --git a/src/zabbix_server/httppoller/httptest.c 
b/src/zabbix_server/httppoller/httptest.c
-index b0a833bad86..bd1ca503643 100644
 a/src/zabbix_server/httppoller/httptest.c
-+++ b/src/zabbix_server/httppoller/httptest.c
-@@ -507,58 +507,30 @@ static int   httpstep_load_pairs(DC_HOST *host, 
zbx_httpstep_t *httpstep)
-  *
*
-  * Function: add_http_headers 
*
-  *
*
-- * Purpose: add http headers and cookies to CURL handle   
*
-+ * Purpose: adds HTTP headers to curl_slist and prepares cookie header string 
*
-  *
*
-- * Parameters: easyhandle  - [IN] host to be used in macro expansion  
*
-- * headers - [IN] HTTP headers as string  
*
-- * headers_slist   - [IN/OUT] empty curl_slist to be freed after  
*
-- *curl_easy_perform is called 
*
-- * error   - [OUT] error string (if any)  
*
-- *
*
-- * Return value: SUCCEED if headers (and cookies) were set without errors.
*
-- *   FAIL on error.   
*
-+ * Parameters: headers - [IN] HTTP headers as string  
*
-+ * headers_slist   - [IN/OUT] curl_slist  
*
-+ * header_cookie   - [IN/OUT] cookie header as string 
*
-  *
*
-  
**/
--static intadd_http_headers(CURL *easyhandle, char *headers, struct 
curl_slist **headers_slist, char **error)
-+static void   add_http_headers(char *headers, struct curl_slist 
**headers_slist, char **header_cookie)
- {
- #define COOKIE_HEADER_STR "Cookie:"
- #define COOKIE_HEADER_STR_LEN ZBX_CONST_STRLEN(COOKIE_HEADER_STR)
--  CURLcodeerr;
--  char*line;
--  int ret = SUCCEED;
-+
-+  char*line;
- 
-   while (NULL != (line = zbx_http_get_header()))
-   {
-   if (0 == strncmp(COOKIE_HEADER_STR, line, 
COOKIE_HEADER_STR_LEN))
--  {
--  if (CURLE_OK != (err = curl_easy_setopt(easyhandle, 
CURLOPT_COOKIE, (line +
--  
COOKIE_HEADER_STR_LEN * sizeof(char)
--  {
--  ret = FAIL;
--
--  if (NULL != error)
--  *error = zbx_strdup(*error, 
curl_easy_strerror(err));
--
--  

[packages/intel-compute-runtime] Builds on x86_64 only

2019-07-03 Thread jajcus
commit f4dc3ffe4407690713216b62806b8d8ad7a0e696
Author: Jacek Konieczny 
Date:   Wed Jul 3 14:09:59 2019 +0200

Builds on x86_64 only

Release: 2

 intel-compute-runtime.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/intel-compute-runtime.spec b/intel-compute-runtime.spec
index 9b1dac0..c515d73 100644
--- a/intel-compute-runtime.spec
+++ b/intel-compute-runtime.spec
@@ -7,7 +7,7 @@
 Summary:   Intel Graphics Compute Runtime for OpenCL
 Name:  intel-compute-runtime
 Version:   19.24.13171
-Release:   1
+Release:   2
 License:   LGPL v2+
 Group: Libraries
 Source0:   
https://github.com/intel/compute-runtime/archive/%{version}/%{name}-%{version}.tar.gz
@@ -21,7 +21,7 @@ BuildRequires:libva-devel
 BuildRequires: pkgconfig
 Provides:  ocl-icd(intel)
 Provides:  ocl-icd-driver
-ExclusiveArch: %{ix86} %{x8664}
+ExclusiveArch: %{x8664}
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/intel-compute-runtime.git/commitdiff/f4dc3ffe4407690713216b62806b8d8ad7a0e696

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


[packages/intel-graphics-compiler] Release: 2

2019-07-03 Thread jajcus
commit 0afcf0820bcff3a734a48da5cd655f1584178355
Author: Jacek Konieczny 
Date:   Wed Jul 3 12:40:40 2019 +0200

Release: 2

 intel-graphics-compiler.spec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/intel-graphics-compiler.spec b/intel-graphics-compiler.spec
index 6d9377e..f9aeac4 100644
--- a/intel-graphics-compiler.spec
+++ b/intel-graphics-compiler.spec
@@ -7,7 +7,7 @@
 Summary:   The Intel Graphics Compiler for OpenCL
 Name:  intel-graphics-compiler
 Version:   1.0.8
-Release:   1
+Release:   2
 License:   MIT
 Group: Libraries
 Source0:   
https://github.com/intel/intel-graphics-compiler/archive/igc-%{version}/igc-%{version}.tar.gz


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/intel-graphics-compiler.git/commitdiff/0afcf0820bcff3a734a48da5cd655f1584178355

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


[packages/intel-graphics-compiler] add the cxx_flags.patch

2019-07-03 Thread jajcus
commit 6339da1e40d2c4ab2172648c973d0c4203edf206
Author: Jacek Konieczny 
Date:   Wed Jul 3 11:06:19 2019 +0200

add the cxx_flags.patch

 cxx_flags.patch | 41 +
 1 file changed, 41 insertions(+)
---
diff --git a/cxx_flags.patch b/cxx_flags.patch
new file mode 100644
index 000..8828f54
--- /dev/null
+++ b/cxx_flags.patch
@@ -0,0 +1,41 @@
+diff -dur -x '*~' intel-graphics-compiler-igc-1.0.8.orig/IGC/CMakeLists.txt 
intel-graphics-compiler-igc-1.0.8/IGC/CMakeLists.txt
+--- intel-graphics-compiler-igc-1.0.8.orig/IGC/CMakeLists.txt  2019-06-08 
02:25:42.0 +0200
 intel-graphics-compiler-igc-1.0.8/IGC/CMakeLists.txt   2019-07-03 
08:52:38.547407955 +0200
+@@ -2766,7 +2766,6 @@
+ SET_RAW
+   -pipe
+   -fmessage-length=0
+-  -march=corei7
+   -mstackrealign
+   -fms-extensions
+   -Werror
+@@ -2790,9 +2789,6 @@
+   -msse2
+   -msse3
+   -mssse3
+-  -msse4
+-  -msse4.1
+-  -msse4.2
+   -Wno-unknown-pragmas
+   -fPIC
+   )
+@@ -2838,7 +2834,6 @@
+ -Wno-gnu
+ -finline
+ -fkeep-inline-functions
+--msse4.2
+   )
+   if(NOT CMAKE_C_COMPILER_VERSION LESS "4.0")
+ igc_config_flag_apply_settings(
+diff -dur -x '*~' 
intel-graphics-compiler-igc-1.0.8.orig/visa/iga/BuildSetup.cmake 
intel-graphics-compiler-igc-1.0.8/visa/iga/BuildSetup.cmake
+--- intel-graphics-compiler-igc-1.0.8.orig/visa/iga/BuildSetup.cmake   
2019-06-08 02:25:42.0 +0200
 intel-graphics-compiler-igc-1.0.8/visa/iga/BuildSetup.cmake
2019-07-03 08:50:44.202349668 +0200
+@@ -43,7 +43,7 @@
+ #endforeach()
+ 
+ if(UNIX_MAKEFILE_GENERATOR)
+-  set(COMMON_C_FLAGS "-fno-strict-aliasing -msse4.1 -std=gnu++0x 
-Wno-unused-function -fpermissive")
++  set(COMMON_C_FLAGS "-fno-strict-aliasing -std=gnu++0x -Wno-unused-function 
-fpermissive")
+   if(LINUX)
+ set(COMMON_C_FLAGS "${COMMON_C_FLAGS} -DLINUX -fPIC")
+   endif()


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/intel-graphics-compiler.git/commitdiff/6339da1e40d2c4ab2172648c973d0c4203edf206

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


[packages/intel-graphics-compiler] use sane CXXFLAGS

2019-07-03 Thread jajcus
commit 9b211843920d3ff1ffc092052badd693439572e9
Author: Jacek Konieczny 
Date:   Wed Jul 3 10:27:53 2019 +0200

use sane CXXFLAGS

intel-graphics-compiler, like the rest of compute-runtime is designed
for newer Intel processors, so it uses all the newest features by
default, but we need to be able to use it on our builders too, to build
the intel-compute-runtime package.

 intel-graphics-compiler.spec | 4 
 1 file changed, 4 insertions(+)
---
diff --git a/intel-graphics-compiler.spec b/intel-graphics-compiler.spec
index 96873c5..6d9377e 100644
--- a/intel-graphics-compiler.spec
+++ b/intel-graphics-compiler.spec
@@ -13,6 +13,7 @@ Group:Libraries
 Source0:   
https://github.com/intel/intel-graphics-compiler/archive/igc-%{version}/igc-%{version}.tar.gz
 # Source0-md5: fd7b6947b2ed0a11f7b07b1e7acc
 Patch0:pkgconfig.patch
+Patch1:cxx_flags.patch
 URL:   https://github.com/intel/intel-graphics-compiler/
 BuildRequires: llvm-devel >= %{llvm_version}
 BuildRequires: opencl-clang-devel >= %{opencl_clang_version}
@@ -49,11 +50,14 @@ Pliki nagłówkowe biblioteki %{name}.
 %setup -qn %{name}-igc-%{version}
 
 %patch0 -p1
+%patch1 -p1
 
 %build
 install -d build
 cd build
 %cmake \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_CXX_FLAGS_RELEASE="${CXXFLAGS:-%{rpmcxxflags} -DNDEBUG 
-DQT_NO_DEBUG}" \
-DCCLANG_FROM_SYSTEM=ON \
../
 %{__make}


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/intel-graphics-compiler.git/commitdiff/9b211843920d3ff1ffc092052badd693439572e9

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


[packages/intel-graphics-compiler] actually use a version number for %llvm_version

2019-07-03 Thread jajcus
commit 5f9f22d1d29d2933f86b00df9cd34b1cbb753ba3
Author: Jacek Konieczny 
Date:   Wed Jul 3 08:26:27 2019 +0200

actually use a version number for %llvm_version

 intel-graphics-compiler.spec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/intel-graphics-compiler.spec b/intel-graphics-compiler.spec
index 2096190..96873c5 100644
--- a/intel-graphics-compiler.spec
+++ b/intel-graphics-compiler.spec
@@ -1,6 +1,6 @@
 
 # requires the OpenCL patches
-%define llvm_version llvm-7.0.1-3
+%define llvm_version 7.0.1-3
 
 %define opencl_clang_version 8.0.1
 


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/intel-graphics-compiler.git/commitdiff/5f9f22d1d29d2933f86b00df9cd34b1cbb753ba3

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


[packages/opencl-clang] another fix to the LLVM/Clang dependencies

2019-07-02 Thread jajcus
commit 15cf855e96f2521d51a906e4b6020a749df4df81
Author: Jacek Konieczny 
Date:   Tue Jul 2 15:38:19 2019 +0200

another fix to the LLVM/Clang dependencies

 opencl-clang.spec | 14 ++
 1 file changed, 6 insertions(+), 8 deletions(-)
---
diff --git a/opencl-clang.spec b/opencl-clang.spec
index 5488cdf..a48bf67 100644
--- a/opencl-clang.spec
+++ b/opencl-clang.spec
@@ -1,6 +1,7 @@
 
 # requires the OpenCL patches
-%define llvm_version 7.0.1-3
+%define llvm_version 7.0.1
+%define llvm_rpm_version %{llvm_version}-3
 
 %define spirv_llvm_translator_version 7.0.1
 
@@ -15,13 +16,11 @@ Source0:
https://github.com/intel/opencl-clang/archive/v%{version}/%{name}-%{ver
 Patch0:llvm_clang_vfs.patch
 URL:   https://01.org/compute-runtime
 BuildRequires: SPIRV-LLVM-Translator-devel >= %{spirv_llvm_translator_version}
-BuildRequires: clang >= %{llvm_version}
-BuildRequires: clang-devel >= %{llvm_version}
+BuildRequires: clang >= %{llvm_rpm_version}
+BuildRequires: clang-devel >= %{llvm_rpm_version}
 BuildRequires: cmake >= 3.4.3
-BuildRequires: llvm-devel >= %{llvm_version}
+BuildRequires: llvm-devel >= %{llvm_rpm_version}
 BuildRequires: pkgconfig
-%requires_eq   clang
-%requires_eq   clang-devel
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
@@ -33,8 +32,7 @@ SPIR-V modules.
 Summary:   Header files for %{name} library
 Summary(pl.UTF-8): Pliki nagłówkowe biblioteki %{name}
 Group: Development/Libraries
-Requires:  clang-devel >= %{llvm_version}
-Requires:  llvm-devel >= %{llvm_version}
+%requires_eq   clang-devel
 Requires:  %{name} = %{version}-%{release}
 
 %description devel


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/opencl-clang.git/commitdiff/15cf855e96f2521d51a906e4b6020a749df4df81

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


[packages/opencl-clang] require proper llvm, also for -devel

2019-07-02 Thread jajcus
commit ac26e2aab464d144b966d827c21d84900103e0fe
Author: Jacek Konieczny 
Date:   Tue Jul 2 15:08:56 2019 +0200

require proper llvm, also for -devel

 opencl-clang.spec | 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)
---
diff --git a/opencl-clang.spec b/opencl-clang.spec
index 40422b6..5488cdf 100644
--- a/opencl-clang.spec
+++ b/opencl-clang.spec
@@ -1,5 +1,7 @@
 
-%define llvm_version 7.0.1
+# requires the OpenCL patches
+%define llvm_version 7.0.1-3
+
 %define spirv_llvm_translator_version 7.0.1
 
 Summary:   Intel Graphics Compute Runtime for OpenCL
@@ -31,6 +33,8 @@ SPIR-V modules.
 Summary:   Header files for %{name} library
 Summary(pl.UTF-8): Pliki nagłówkowe biblioteki %{name}
 Group: Development/Libraries
+Requires:  clang-devel >= %{llvm_version}
+Requires:  llvm-devel >= %{llvm_version}
 Requires:  %{name} = %{version}-%{release}
 
 %description devel


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/opencl-clang.git/commitdiff/ac26e2aab464d144b966d827c21d84900103e0fe

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


[packages/intel-graphics-compiler] require proper llvm-devel from the devel package

2019-07-02 Thread jajcus
commit ba53ee6672bde78f4797412798c6ed392f79487d
Author: Jacek Konieczny 
Date:   Tue Jul 2 15:06:27 2019 +0200

require proper llvm-devel from the devel package

 intel-graphics-compiler.spec | 1 +
 1 file changed, 1 insertion(+)
---
diff --git a/intel-graphics-compiler.spec b/intel-graphics-compiler.spec
index 94c8194..2096190 100644
--- a/intel-graphics-compiler.spec
+++ b/intel-graphics-compiler.spec
@@ -36,6 +36,7 @@ The Intel Graphics Compiler for OpenCL libraries.
 Summary:   Header files for %{name} library
 Summary(pl.UTF-8): Pliki nagłówkowe biblioteki %{name}
 Group: Development/Libraries
+Requires:  llvm-devel >= %{llvm_version}
 Requires:  %{name}-libs = %{version}-%{release}
 
 %description devel


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/intel-graphics-compiler.git/commitdiff/ba53ee6672bde78f4797412798c6ed392f79487d

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


[packages/intel-graphics-compiler] require patched llvm

2019-07-02 Thread jajcus
commit 8b0584c7b82d034855e3b1f352b3af064ae6ea83
Author: Jacek Konieczny 
Date:   Tue Jul 2 15:05:39 2019 +0200

require patched llvm

 intel-graphics-compiler.spec | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
---
diff --git a/intel-graphics-compiler.spec b/intel-graphics-compiler.spec
index 26ac742..94c8194 100644
--- a/intel-graphics-compiler.spec
+++ b/intel-graphics-compiler.spec
@@ -1,5 +1,7 @@
 
-%define llvm_version 7.0.1
+# requires the OpenCL patches
+%define llvm_version llvm-7.0.1-3
+
 %define opencl_clang_version 8.0.1
 
 Summary:   The Intel Graphics Compiler for OpenCL


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/intel-graphics-compiler.git/commitdiff/8b0584c7b82d034855e3b1f352b3af064ae6ea83

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


[packages/intel-compute-runtime] skip testing

2019-07-02 Thread jajcus
commit 3a390400c17db6ea742f00565d26f6f054ef59dc
Author: Jacek Konieczny 
Date:   Tue Jul 2 10:06:48 2019 +0200

skip testing

 intel-compute-runtime.spec | 1 +
 1 file changed, 1 insertion(+)
---
diff --git a/intel-compute-runtime.spec b/intel-compute-runtime.spec
index 218b35d..9b1dac0 100644
--- a/intel-compute-runtime.spec
+++ b/intel-compute-runtime.spec
@@ -36,6 +36,7 @@ stacks supporting the GEN graphics hardware architecture.
 install -d build
 cd build
 %cmake \
+   -DSKIP_ALL_ULT=ON \
../
 %{__make}
 


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/intel-compute-runtime.git/commitdiff/3a390400c17db6ea742f00565d26f6f054ef59dc

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


[packages/intel-compute-runtime] BR fixes

2019-07-02 Thread jajcus
commit c6f86a9f3073685fc4abfab5370e42f4912f0d7b
Author: Jacek Konieczny 
Date:   Tue Jul 2 09:48:44 2019 +0200

BR fixes

 intel-compute-runtime.spec | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
---
diff --git a/intel-compute-runtime.spec b/intel-compute-runtime.spec
index 725d874..218b35d 100644
--- a/intel-compute-runtime.spec
+++ b/intel-compute-runtime.spec
@@ -14,13 +14,14 @@ Source0:
https://github.com/intel/compute-runtime/archive/%{version}/%{name}-%{v
 # Source0-md5: c827cb2987d11e65a0f25befee0bbcb1
 URL:   https://01.org/compute-runtime
 BuildRequires: cmake >= 3.2.0
-BuildRequires: intel-gmmlib >= %{gmmlib_version}
-BuildRequires: intel-graphics-compiler >= %{igc_version}
+BuildRequires: intel-gmmlib-devel >= %{gmmlib_version}
+BuildRequires: intel-graphics-compiler-devel >= %{igc_version}
 BuildRequires: libdrm-devel
 BuildRequires: libva-devel
 BuildRequires: pkgconfig
 Provides:  ocl-icd(intel)
 Provides:  ocl-icd-driver
+ExclusiveArch: %{ix86} %{x8664}
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/intel-compute-runtime.git/commitdiff/c6f86a9f3073685fc4abfab5370e42f4912f0d7b

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


[packages/intel-graphics-compiler] typo

2019-07-02 Thread jajcus
commit aea765ea1cf287893c8980a81c646111f39eea2d
Author: Jacek Konieczny 
Date:   Tue Jul 2 09:11:36 2019 +0200

typo

 intel-graphics-compiler.spec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/intel-graphics-compiler.spec b/intel-graphics-compiler.spec
index 17ebbbc..26ac742 100644
--- a/intel-graphics-compiler.spec
+++ b/intel-graphics-compiler.spec
@@ -82,7 +82,7 @@ rm -rf $RPM_BUILD_ROOT
 %attr(755,root,root) %{_libdir}/libiga64.so.1.*.*
 %ghost %attr(755,root,root) %{_libdir}/libiga64.so.1
 %else
-%attr(755,root,root) %{_libdir}/libiga324.so.1.*.*
+%attr(755,root,root) %{_libdir}/libiga32.so.1.*.*
 %ghost %attr(755,root,root) %{_libdir}/libiga32.so.1
 %endif
 %attr(755,root,root) %{_libdir}/libigc.so.1.*.*


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/intel-graphics-compiler.git/commitdiff/aea765ea1cf287893c8980a81c646111f39eea2d

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


[packages/intel-graphics-compiler] fix iga binaries names on 32-bit builds

2019-07-02 Thread jajcus
commit 8bad04434848c6aec22f92c09273d4c60a6bbac2
Author: Jacek Konieczny 
Date:   Tue Jul 2 08:50:38 2019 +0200

fix iga binaries names on 32-bit builds

 intel-graphics-compiler.spec | 13 +
 1 file changed, 13 insertions(+)
---
diff --git a/intel-graphics-compiler.spec b/intel-graphics-compiler.spec
index 663cc86..17ebbbc 100644
--- a/intel-graphics-compiler.spec
+++ b/intel-graphics-compiler.spec
@@ -70,12 +70,21 @@ rm -rf $RPM_BUILD_ROOT
 %defattr(644,root,root,755)
 %doc README.md
 %attr(755,root,root) %{_bindir}/GenX_IR
+%ifarch %{x8664}
 %attr(755,root,root) %{_bindir}/iga64
+%else
+%attr(755,root,root) %{_bindir}/iga32
+%endif
 
 %files libs
 %defattr(644,root,root,755)
+%ifarch %{x8664}
 %attr(755,root,root) %{_libdir}/libiga64.so.1.*.*
 %ghost %attr(755,root,root) %{_libdir}/libiga64.so.1
+%else
+%attr(755,root,root) %{_libdir}/libiga324.so.1.*.*
+%ghost %attr(755,root,root) %{_libdir}/libiga32.so.1
+%endif
 %attr(755,root,root) %{_libdir}/libigc.so.1.*.*
 %ghost %attr(755,root,root) %{_libdir}/libigc.so.1
 %attr(755,root,root) %{_libdir}/libigdfcl.so.1.*.*
@@ -84,7 +93,11 @@ rm -rf $RPM_BUILD_ROOT
 %files devel
 %defattr(644,root,root,755)
 %{_includedir}/igc
+%ifarch %{x8664}
 %attr(755,root,root) %{_libdir}/libiga64.so
+%else
+%attr(755,root,root) %{_libdir}/libiga32.so
+%endif
 %attr(755,root,root) %{_libdir}/libigc.so
 %attr(755,root,root) %{_libdir}/libigdfcl.so
 %{_pkgconfigdir}/igc-opencl.pc


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/intel-graphics-compiler.git/commitdiff/8bad04434848c6aec22f92c09273d4c60a6bbac2

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


[packages/opencl-clang] SPIRV-LLVM-Translator dependency fix

2019-07-02 Thread jajcus
commit eac18d9c1742741333ea5d7de0a8b6a53240020e
Author: Jacek Konieczny 
Date:   Tue Jul 2 08:20:21 2019 +0200

SPIRV-LLVM-Translator dependency fix

 opencl-clang.spec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/opencl-clang.spec b/opencl-clang.spec
index d85..40422b6 100644
--- a/opencl-clang.spec
+++ b/opencl-clang.spec
@@ -12,7 +12,7 @@ Source0:  
https://github.com/intel/opencl-clang/archive/v%{version}/%{name}-%{ver
 # Source0-md5: cb6b746c837a6cac6c8906911b2ea9de
 Patch0:llvm_clang_vfs.patch
 URL:   https://01.org/compute-runtime
-BuildRequires: SPIRV-LLVM-Translator >= %{spirv_llvm_translator_version}
+BuildRequires: SPIRV-LLVM-Translator-devel >= %{spirv_llvm_translator_version}
 BuildRequires: clang >= %{llvm_version}
 BuildRequires: clang-devel >= %{llvm_version}
 BuildRequires: cmake >= 3.4.3


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/opencl-clang.git/commitdiff/eac18d9c1742741333ea5d7de0a8b6a53240020e

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


[packages/opencl-clang] fake git executable

2019-07-02 Thread jajcus
commit 0a767a561594ca693304da3475768f9b91d5f3a7
Author: Jacek Konieczny 
Date:   Tue Jul 2 08:15:27 2019 +0200

fake git executable

building from source should not need that

 opencl-clang.spec | 1 +
 1 file changed, 1 insertion(+)
---
diff --git a/opencl-clang.spec b/opencl-clang.spec
index 4d40b63..d85 100644
--- a/opencl-clang.spec
+++ b/opencl-clang.spec
@@ -52,6 +52,7 @@ cd build
-DPREFERRED_LLVM_VERSION="%{llvm_version}" \
-DLLVMSPIRV_INCLUDED_IN_LLVM=OFF \
-DSPIRV_TRANSLATOR_DIR="%{_prefix}" \
+   -DGIT_EXECUTABLE=/bin/false \
../
 %{__make}
 


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/opencl-clang.git/commitdiff/0a767a561594ca693304da3475768f9b91d5f3a7

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


[packages/llvm/llvm-7.0] actually add the intel OpenCL patches

2019-07-01 Thread jajcus
commit 18b8fe9c33ca219e1dcece96ed3abf814938ced3
Author: Jacek Konieczny 
Date:   Mon Jul 1 16:02:32 2019 +0200

actually add the intel OpenCL patches

 0001-Add-cl_intel_planar_yuv-extension.patch   |   69 +
 0002-Unify-ZeroToOCL-cast-types.patch  |  426 ++
 ...support-of-cl_intel_device_side_avc_motio.patch | 1604 
 ...x-diagnostics-on-OpenCL-access-qualifiers.patch |  161 ++
 ...invalid-address-space-generation-for-clk_.patch |   70 +
 5 files changed, 2330 insertions(+)
---
diff --git a/0001-Add-cl_intel_planar_yuv-extension.patch 
b/0001-Add-cl_intel_planar_yuv-extension.patch
new file mode 100644
index 000..bca15bf
--- /dev/null
+++ b/0001-Add-cl_intel_planar_yuv-extension.patch
@@ -0,0 +1,69 @@
+From d003e9124a41cd8fc208f6bcad5d4065e1e8ff74 Mon Sep 17 00:00:00 2001
+From: Andrew Savonichev 
+Date: Tue, 23 Oct 2018 16:13:16 +
+Subject: [PATCH 1/4] Add cl_intel_planar_yuv extension
+
+Just adding a preprocessor #define for the extension.
+
+Patch by Alexey Sotkin and Dmitry Sidorov
+
+Phabricator review: https://reviews.llvm.org/D51402
+
+git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@345044 
91177308-0d34-0410-b5e6-96231b3b80d8
+---
+ lib/Headers/opencl-c.h  |  8 
+ test/Headers/opencl-c-header.cl | 17 +++--
+ 2 files changed, 23 insertions(+), 2 deletions(-)
+
+diff --git a/lib/Headers/opencl-c.h b/lib/Headers/opencl-c.h
+index e481c79..5525830 100644
+--- a/lib/Headers/opencl-c.h
 b/lib/Headers/opencl-c.h
+@@ -22,6 +22,14 @@
+ #endif //cl_khr_3d_image_writes
+ #endif //__OPENCL_C_VERSION__ < CL_VERSION_2_0
+ 
++#if __OPENCL_C_VERSION__ >= CL_VERSION_1_2
++#ifndef cl_intel_planar_yuv
++#define cl_intel_planar_yuv
++#endif // cl_intel_planar_yuv
++#pragma OPENCL EXTENSION cl_intel_planar_yuv : begin
++#pragma OPENCL EXTENSION cl_intel_planar_yuv : end
++#endif // __OPENCL_C_VERSION__ >= CL_VERSION_1_2
++
+ #define __ovld __attribute__((overloadable))
+ #define __conv __attribute__((convergent))
+ 
+diff --git a/test/Headers/opencl-c-header.cl b/test/Headers/opencl-c-header.cl
+index 2c28be1..d344f37 100644
+--- a/test/Headers/opencl-c-header.cl
 b/test/Headers/opencl-c-header.cl
+@@ -1,5 +1,6 @@
+-// RUN: %clang_cc1 -O0 -triple spir-unknown-unknown -internal-isystem 
../../lib/Headers -include opencl-c.h -emit-llvm -o - %s| FileCheck %s
+-// RUN: %clang_cc1 -O0 -triple spir-unknown-unknown -internal-isystem 
../../lib/Headers -include opencl-c.h -emit-llvm -o - %s -cl-std=CL1.1| 
FileCheck %s
++// RUN: %clang_cc1 -O0 -triple spir-unknown-unknown -internal-isystem 
../../lib/Headers -include opencl-c.h -emit-llvm -o - %s -verify | FileCheck %s
++// RUN: %clang_cc1 -O0 -triple spir-unknown-unknown -internal-isystem 
../../lib/Headers -include opencl-c.h -emit-llvm -o - %s -verify -cl-std=CL1.1| 
FileCheck %s
++// RUN: %clang_cc1 -O0 -triple spir-unknown-unknown -internal-isystem 
../../lib/Headers -include opencl-c.h -emit-llvm -o - %s -verify -cl-std=CL1.2| 
FileCheck %s
+ 
+ // Test including the default header as a module.
+ // The module should be compiled only once and loaded from cache afterwards.
+@@ -71,4 +72,16 @@ void test_image3dwo(write_only image3d_t img) {
+ }
+ #endif //__OPENCL_C_VERSION__
+ 
++// Verify that non-builtin cl_intel_planar_yuv extension is defined from
++// OpenCL 1.2 onwards.
++#if (__OPENCL_C_VERSION__ >= CL_VERSION_1_2)
++// expected-no-diagnostics
++#ifndef cl_intel_planar_yuv
++#error "Missing cl_intel_planar_yuv define"
++#endif
++#else //__OPENCL_C_VERSION__
++// expected-warning@+2{{unknown OpenCL extension 'cl_intel_planar_yuv' - 
ignoring}}
++#endif //__OPENCL_C_VERSION__
++#pragma OPENCL EXTENSION cl_intel_planar_yuv : enable
++
+ // CHECK-MOD: Reading modules
+-- 
+1.8.3.1
+
diff --git a/0002-Unify-ZeroToOCL-cast-types.patch 
b/0002-Unify-ZeroToOCL-cast-types.patch
new file mode 100644
index 000..23b4f91
--- /dev/null
+++ b/0002-Unify-ZeroToOCL-cast-types.patch
@@ -0,0 +1,426 @@
+From 642bf06efbdc007b6508f2d4f9fa111243316898 Mon Sep 17 00:00:00 2001
+From: Andrew Savonichev 
+Date: Tue, 23 Oct 2018 15:19:20 +
+Subject: [PATCH 2/4] Unify ZeroToOCL* cast types
+
+Reviewers: Anastasia, yaxunl
+
+Reviewed By: Anastasia
+
+Subscribers: asavonic, cfe-commits
+
+Differential Revision: https://reviews.llvm.org/D52654
+
+Change-Id: I42503b38f90c8d0339ab98cd4b11ec703dbca892
+git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@345038 
91177308-0d34-0410-b5e6-96231b3b80d8
+---
+ include/clang/AST/OperationKinds.def|  8 +--
+ include/clang/Sema/Initialization.h | 16 ++
+ lib/AST/Expr.cpp|  3 +-
+ lib/AST/ExprConstant.cpp|  6 +-
+ lib/CodeGen/CGExpr.cpp  |  6 +-
+ lib/CodeGen/CGExprAgg.cpp   |  3 +-
+ lib/CodeGen/CGExprComplex.cpp   |  3 +-
+ lib/CodeGen/CGExprConstant.cpp  |  3 +-
+ lib/CodeGen/CGExprScalar.cpp| 10 +---
+ lib/Edit/RewriteObjCFoundationAPI.cpp   

[packages/intel-gmmlib] no x32 support here

2019-07-01 Thread jajcus
commit 70f7bcd45f19410df2b8423037a83b0a4bdcf6e9
Author: Jacek Konieczny 
Date:   Mon Jul 1 16:01:33 2019 +0200

no x32 support here

 intel-gmmlib.spec | 1 +
 1 file changed, 1 insertion(+)
---
diff --git a/intel-gmmlib.spec b/intel-gmmlib.spec
index 033f501..48f62ca 100644
--- a/intel-gmmlib.spec
+++ b/intel-gmmlib.spec
@@ -8,6 +8,7 @@ Source0:
https://github.com/intel/gmmlib/archive/%{name}-%{version}/intel-gmmlib
 # Source0-md5: 4004db0e2efcff2d2b3702f59c8ce0b2
 URL:   https://github.com/intel/gmmlib/
 BuildRequires: cmake >= 3.1
+ExclusiveArch: %{ix86} %{x8664}
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/intel-gmmlib.git/commitdiff/70f7bcd45f19410df2b8423037a83b0a4bdcf6e9

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


DISTFILES: intel-compute-runtime: intel-compute-runtime-19.24.13171.tar.gz

2019-07-01 Thread jajcus
Request by: jajcus


Files fetched: 1

STORED: 
https://github.com/intel/compute-runtime/archive/19.24.13171/intel-compute-runtime-19.24.13171.tar.gz
c827cb2987d11e65a0f25befee0bbcb1  
intel-compute-runtime-19.24.13171.tar.gz
Size: 2387350 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/intel-compute-runtime] new package

2019-07-01 Thread jajcus
commit 921a5a1b0dc61ffe7410849bd95fbb2f9a581c83
Author: Jacek Konieczny 
Date:   Mon Jul 1 16:00:17 2019 +0200

new package

 intel-compute-runtime.spec | 55 ++
 1 file changed, 55 insertions(+)
---
diff --git a/intel-compute-runtime.spec b/intel-compute-runtime.spec
new file mode 100644
index 000..725d874
--- /dev/null
+++ b/intel-compute-runtime.spec
@@ -0,0 +1,55 @@
+
+# versions listed on
+# https://github.com/intel/compute-runtime/releases
+%definegmmlib_version  19.2.1
+%defineigc_version 1.0.8
+
+Summary:   Intel Graphics Compute Runtime for OpenCL
+Name:  intel-compute-runtime
+Version:   19.24.13171
+Release:   1
+License:   LGPL v2+
+Group: Libraries
+Source0:   
https://github.com/intel/compute-runtime/archive/%{version}/%{name}-%{version}.tar.gz
+# Source0-md5: c827cb2987d11e65a0f25befee0bbcb1
+URL:   https://01.org/compute-runtime
+BuildRequires: cmake >= 3.2.0
+BuildRequires: intel-gmmlib >= %{gmmlib_version}
+BuildRequires: intel-graphics-compiler >= %{igc_version}
+BuildRequires: libdrm-devel
+BuildRequires: libva-devel
+BuildRequires: pkgconfig
+Provides:  ocl-icd(intel)
+Provides:  ocl-icd-driver
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+The Intel(R) Graphics Compute Runtime for OpenCL(TM) is an open source
+project to converge Intel's development efforts on OpenCL(TM) compute
+stacks supporting the GEN graphics hardware architecture.
+
+%prep
+%setup -qn compute-runtime-%{version}
+
+%build
+install -d build
+cd build
+%cmake \
+   ../
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%{__make} -C build install \
+   DESTDIR=$RPM_BUILD_ROOT
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_bindir}/ocloc
+%{_sysconfdir}/OpenCL/vendors/intel.icd
+%dir %{_libdir}/intel-opencl
+%attr(755,root,root) %{_libdir}/intel-opencl/libigdrcl.so


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/intel-compute-runtime.git/commitdiff/921a5a1b0dc61ffe7410849bd95fbb2f9a581c83

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


[packages/intel-compute-runtime] Created branch master

2019-07-01 Thread jajcus
The branch 'master' was created.

Summary of new commits:

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


[packages/intel-graphics-compiler] Created branch master

2019-07-01 Thread jajcus
The branch 'master' was created.

Summary of new commits:

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


DISTFILES: intel-graphics-compiler: igc-1.0.8.tar.gz

2019-07-01 Thread jajcus
Request by: jajcus


Files fetched: 1

STORED: 
https://github.com/intel/intel-graphics-compiler/archive/igc-1.0.8/igc-1.0.8.tar.gz
fd7b6947b2ed0a11f7b07b1e7acc  igc-1.0.8.tar.gz
Size: 6428984 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/intel-graphics-compiler] new package

2019-07-01 Thread jajcus
commit 06b6a911889702a9cf6bd2aee492aa7a08cc74cb
Author: Jacek Konieczny 
Date:   Mon Jul 1 15:59:20 2019 +0200

new package

 intel-graphics-compiler.spec | 90 
 pkgconfig.patch  | 18 +
 2 files changed, 108 insertions(+)
---
diff --git a/intel-graphics-compiler.spec b/intel-graphics-compiler.spec
new file mode 100644
index 000..663cc86
--- /dev/null
+++ b/intel-graphics-compiler.spec
@@ -0,0 +1,90 @@
+
+%define llvm_version 7.0.1
+%define opencl_clang_version 8.0.1
+
+Summary:   The Intel Graphics Compiler for OpenCL
+Name:  intel-graphics-compiler
+Version:   1.0.8
+Release:   1
+License:   MIT
+Group: Libraries
+Source0:   
https://github.com/intel/intel-graphics-compiler/archive/igc-%{version}/igc-%{version}.tar.gz
+# Source0-md5: fd7b6947b2ed0a11f7b07b1e7acc
+Patch0:pkgconfig.patch
+URL:   https://github.com/intel/intel-graphics-compiler/
+BuildRequires: llvm-devel >= %{llvm_version}
+BuildRequires: opencl-clang-devel >= %{opencl_clang_version}
+BuildRequires: cmake >= 3.2.0
+BuildRequires: pkgconfig
+Requires:  %{name}-libs = %{version}-%{release}
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+The Intel Graphics Compiler for OpenCL is an LLVM based compiler for OpenCL
+targeting Intel Gen graphics hardware architecture.
+
+%package libs
+Summary:   The Intel Graphics Compiler for OpenCL libraries
+Group: Libraries
+
+%description libs
+The Intel Graphics Compiler for OpenCL libraries.
+
+%package devel
+Summary:   Header files for %{name} library
+Summary(pl.UTF-8): Pliki nagłówkowe biblioteki %{name}
+Group: Development/Libraries
+Requires:  %{name}-libs = %{version}-%{release}
+
+%description devel
+Header files for %{name} library.
+
+%description devel -l pl.UTF-8
+Pliki nagłówkowe biblioteki %{name}.
+
+%prep
+%setup -qn %{name}-igc-%{version}
+
+%patch0 -p1
+
+%build
+install -d build
+cd build
+%cmake \
+   -DCCLANG_FROM_SYSTEM=ON \
+   ../
+%{__make}
+
+cd ..
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%{__make} -C build install \
+   DESTDIR=$RPM_BUILD_ROOT
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc README.md
+%attr(755,root,root) %{_bindir}/GenX_IR
+%attr(755,root,root) %{_bindir}/iga64
+
+%files libs
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_libdir}/libiga64.so.1.*.*
+%ghost %attr(755,root,root) %{_libdir}/libiga64.so.1
+%attr(755,root,root) %{_libdir}/libigc.so.1.*.*
+%ghost %attr(755,root,root) %{_libdir}/libigc.so.1
+%attr(755,root,root) %{_libdir}/libigdfcl.so.1.*.*
+%ghost %attr(755,root,root) %{_libdir}/libigdfcl.so.1
+
+%files devel
+%defattr(644,root,root,755)
+%{_includedir}/igc
+%attr(755,root,root) %{_libdir}/libiga64.so
+%attr(755,root,root) %{_libdir}/libigc.so
+%attr(755,root,root) %{_libdir}/libigdfcl.so
+%{_pkgconfigdir}/igc-opencl.pc
diff --git a/pkgconfig.patch b/pkgconfig.patch
new file mode 100644
index 000..9e573b0
--- /dev/null
+++ b/pkgconfig.patch
@@ -0,0 +1,18 @@
+diff -dur 
intel-graphics-compiler-igc-1.0.8.orig/IGC/AdaptorOCL/igc-opencl.pc.in 
intel-graphics-compiler-igc-1.0.8/IGC/AdaptorOCL/igc-opencl.pc.in
+--- intel-graphics-compiler-igc-1.0.8.orig/IGC/AdaptorOCL/igc-opencl.pc.in 
2019-06-08 02:25:42.0 +0200
 intel-graphics-compiler-igc-1.0.8/IGC/AdaptorOCL/igc-opencl.pc.in  
2019-07-01 13:33:16.449380174 +0200
+@@ -1,7 +1,7 @@
+ prefix=@IGC_INSTALL_TIME_ROOT_DIR@
+ exec_prefix=${prefix}
+-includedir=${prefix}/@CMAKE_INSTALL_INCLUDEDIR@/igc
+-libdir=${exec_prefix}/@CMAKE_INSTALL_LIBDIR@
++includedir=@CMAKE_INSTALL_INCLUDEDIR@/igc
++libdir=@CMAKE_INSTALL_LIBDIR@
+
+ Name: igc-opencl
+
+%description
+ Intel(R) Graphics Compiler for OpenCL(TM)
+
+%clean
+rm -rf $RPM_BUILD_ROOT


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/intel-graphics-compiler.git/commitdiff/06b6a911889702a9cf6bd2aee492aa7a08cc74cb

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


[packages/opencl-clang] new package

2019-07-01 Thread jajcus
commit c7dfe9a1fc0d6232cf4ec375a6c7bc5c57e28d3d
Author: Jacek Konieczny 
Date:   Mon Jul 1 15:58:31 2019 +0200

new package

 llvm_clang_vfs.patch | 25 
 opencl-clang.spec| 85 
 2 files changed, 110 insertions(+)
---
diff --git a/opencl-clang.spec b/opencl-clang.spec
new file mode 100644
index 000..4d40b63
--- /dev/null
+++ b/opencl-clang.spec
@@ -0,0 +1,85 @@
+
+%define llvm_version 7.0.1
+%define spirv_llvm_translator_version 7.0.1
+
+Summary:   Intel Graphics Compute Runtime for OpenCL
+Name:  opencl-clang
+Version:   8.0.1
+Release:   1
+License:   University of Illinois/NCSA Open Source License
+Group: Libraries
+Source0:   
https://github.com/intel/opencl-clang/archive/v%{version}/%{name}-%{version}.tar.gz
+# Source0-md5: cb6b746c837a6cac6c8906911b2ea9de
+Patch0:llvm_clang_vfs.patch
+URL:   https://01.org/compute-runtime
+BuildRequires: SPIRV-LLVM-Translator >= %{spirv_llvm_translator_version}
+BuildRequires: clang >= %{llvm_version}
+BuildRequires: clang-devel >= %{llvm_version}
+BuildRequires: cmake >= 3.4.3
+BuildRequires: llvm-devel >= %{llvm_version}
+BuildRequires: pkgconfig
+%requires_eq   clang
+%requires_eq   clang-devel
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+Common clang is a thin wrapper library around clang. Common clang has
+OpenCL-oriented API and is capable to compile OpenCL C kernels to
+SPIR-V modules.
+
+%package devel
+Summary:   Header files for %{name} library
+Summary(pl.UTF-8): Pliki nagłówkowe biblioteki %{name}
+Group: Development/Libraries
+Requires:  %{name} = %{version}-%{release}
+
+%description devel
+Header files for %{name} library.
+
+%description devel -l pl.UTF-8
+Pliki nagłówkowe biblioteki %{name}.
+
+%prep
+%setup -q
+
+%patch0 -p1
+
+%build
+install -d build
+cd build
+%cmake \
+   -DUSE_PREBUILT_LLVM=ON \
+   -DPREFERRED_LLVM_VERSION="%{llvm_version}" \
+   -DLLVMSPIRV_INCLUDED_IN_LLVM=OFF \
+   -DSPIRV_TRANSLATOR_DIR="%{_prefix}" \
+   ../
+%{__make}
+
+cd ..
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%{__make} -C build install \
+   DESTDIR=$RPM_BUILD_ROOT
+
+mv $RPM_BUILD_ROOT%{_libdir}/libopencl-clang.so.7 
$RPM_BUILD_ROOT%{_libdir}/libopencl-clang.so.%{llvm_version}
+ln -s libopencl-clang.so.%{llvm_version} 
$RPM_BUILD_ROOT%{_libdir}/libopencl-clang.so.7
+ln -sf libopencl-clang.so.%{llvm_version} 
$RPM_BUILD_ROOT%{_libdir}/libopencl-clang.so
+
+%post  -p /sbin/ldconfig
+%postun-p /sbin/ldconfig
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc README.md
+%attr(755,root,root) %{_libdir}/libopencl-clang.so.%{llvm_version}
+%ghost %attr(755,root,root) %{_libdir}/libopencl-clang.so.7
+
+%files devel
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_libdir}/libopencl-clang.so
+%{_includedir}/cclang
diff --git a/llvm_clang_vfs.patch b/llvm_clang_vfs.patch
new file mode 100644
index 000..f64fdf8
--- /dev/null
+++ b/llvm_clang_vfs.patch
@@ -0,0 +1,25 @@
+diff -dur opencl-clang-8.0.1.orig/common_clang.cpp 
opencl-clang-8.0.1/common_clang.cpp
+--- opencl-clang-8.0.1.orig/common_clang.cpp   2019-06-04 15:59:30.0 
+0200
 opencl-clang-8.0.1/common_clang.cpp2019-06-27 10:24:52.0 
+0200
+@@ -40,7 +40,7 @@
+ #include "llvm/Support/TargetSelect.h"
+ #include "llvm/Support/ManagedStatic.h"
+ #include "llvm/Support/Mutex.h"
+-#include "llvm/Support/VirtualFileSystem.h"
++#include "clang/Basic/VirtualFileSystem.h"
+ #include "clang/Basic/LangOptions.h"
+ #include "clang/Basic/Diagnostic.h"
+ #include "clang/Basic/DiagnosticIDs.h"
+@@ -215,9 +215,9 @@
+ 
+ compiler->setDiagnostics(&*Diags);
+ 
+-auto OverlayFS = new llvm::vfs::OverlayFileSystem(
+-llvm::vfs::getRealFileSystem());
+-auto MemFS = new llvm::vfs::InMemoryFileSystem();
++auto OverlayFS = new clang::vfs::OverlayFileSystem(
++clang::vfs::getRealFileSystem());
++auto MemFS = new clang::vfs::InMemoryFileSystem();
+ OverlayFS->pushOverlay(MemFS);
+ 
+ compiler->setVirtualFileSystem(OverlayFS);


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/opencl-clang.git/commitdiff/c7dfe9a1fc0d6232cf4ec375a6c7bc5c57e28d3d

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


DISTFILES: opencl-clang: opencl-clang-8.0.1.tar.gz

2019-07-01 Thread jajcus
Request by: jajcus


Files fetched: 1

STORED: 
https://github.com/intel/opencl-clang/archive/v8.0.1/opencl-clang-8.0.1.tar.gz
cb6b746c837a6cac6c8906911b2ea9de  opencl-clang-8.0.1.tar.gz
Size: 42069 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/opencl-clang] Created branch master

2019-07-01 Thread jajcus
The branch 'master' was created.

Summary of new commits:

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


[packages/intel-gmmlib] new package

2019-07-01 Thread jajcus
commit 571298d0ba01e423f5c2f83f9e969e5d6dea2800
Author: Jacek Konieczny 
Date:   Mon Jul 1 15:56:00 2019 +0200

new package

 intel-gmmlib.spec | 63 +++
 1 file changed, 63 insertions(+)
---
diff --git a/intel-gmmlib.spec b/intel-gmmlib.spec
new file mode 100644
index 000..033f501
--- /dev/null
+++ b/intel-gmmlib.spec
@@ -0,0 +1,63 @@
+Summary:   Intel Graphics Memory Management Library
+Name:  intel-gmmlib
+Version:   19.2.1
+Release:   1
+License:   MIT
+Group: Libraries
+Source0:   
https://github.com/intel/gmmlib/archive/%{name}-%{version}/intel-gmmlib-%{version}.tar.gz
+# Source0-md5: 4004db0e2efcff2d2b3702f59c8ce0b2
+URL:   https://github.com/intel/gmmlib/
+BuildRequires: cmake >= 3.1
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+The Intel Graphics Memory Management Library provides device specific
+and buffer management for the Intel Graphics Compute Runtime for
+OpenCL and the Intel Media Driver for VAAPI.
+
+%package devel
+Summary:   Header files for %{name} library
+Summary(pl.UTF-8): Pliki nagłówkowe biblioteki %{name}
+Group: Development/Libraries
+Requires:  %{name} = %{version}-%{release}
+
+%description devel
+Header files for %{name} library.
+
+%description devel -l pl.UTF-8
+Pliki nagłówkowe biblioteki %{name}.
+
+%prep
+%setup -qn gmmlib-%{name}-%{version}
+
+%build
+install -d build
+cd build
+%cmake \
+   ../
+%{__make}
+
+cd ..
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%{__make} -C build install \
+   DESTDIR=$RPM_BUILD_ROOT
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post  -p /sbin/ldconfig
+%postun-p /sbin/ldconfig
+
+%files
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_libdir}/libigdgmm.so.9.*.*
+%ghost %attr(755,root,root) %{_libdir}/libigdgmm.so.9
+
+%files devel
+%defattr(644,root,root,755)
+%{_includedir}/igdgmm
+%attr(755,root,root) %{_libdir}/libigdgmm.so
+%{_pkgconfigdir}/igdgmm.pc


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/intel-gmmlib.git/commitdiff/571298d0ba01e423f5c2f83f9e969e5d6dea2800

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


[packages/llvm/llvm-7.0] apply patches needed for intel-computer-runtime

2019-07-01 Thread jajcus
commit 707f377a19e0938392b59f26c7fe21a5417e77e4
Author: Jacek Konieczny 
Date:   Mon Jul 1 15:56:27 2019 +0200

apply patches needed for intel-computer-runtime

 llvm.spec | 16 +++-
 1 file changed, 15 insertions(+), 1 deletion(-)
---
diff --git a/llvm.spec b/llvm.spec
index 2415a33..b72cc89 100644
--- a/llvm.spec
+++ b/llvm.spec
@@ -31,7 +31,7 @@ Summary:  The Low Level Virtual Machine (An Optimizing 
Compiler Infrastructure)
 Summary(pl.UTF-8): Niskopoziomowa maszyna wirtualna (infrastruktura 
kompilatora optymalizującego)
 Name:  llvm
 Version:   7.0.1
-Release:   2
+Release:   3
 License:   University of Illinois/NCSA Open Source License
 Group: Development/Languages
 #Source0Download: http://releases.llvm.org/download.html
@@ -55,6 +55,12 @@ Patch4:  cmake-buildtype.patch
 Patch5:%{name}-ocaml-shared.patch
 Patch6:
0001-Ensure-that-variant-part-discriminator-is-read-by-Me.patch
 Patch7:0002-test-Fix-Assembler-debug-info.ll.patch
+# for intel-computer-runtime
+Patch100:  0001-Add-cl_intel_planar_yuv-extension.patch
+Patch101:  0002-Unify-ZeroToOCL-cast-types.patch
+Patch102:  0003-OpenCL-Add-support-of-cl_intel_device_side_avc_motio.patch
+Patch103:  0004-OpenCL-Relax-diagnostics-on-OpenCL-access-qualifiers.patch
+Patch104:  0005-OpenCL-Fix-invalid-address-space-generation-for-clk_.patch
 URL:   http://llvm.org/
 BuildRequires: bash
 BuildRequires: bison
@@ -539,6 +545,14 @@ Integracja narzędzi Clang do formatowania i zmiany nazw z 
Vimem.
 %patch6 -p1
 %patch7 -p1
 
+cd tools/clang
+%patch100 -p1
+%patch101 -p1
+%patch102 -p1
+%patch103 -p1
+%patch104 -p1
+cd ../..
+
 grep -rl /usr/bin/env tools utils | xargs sed -i -e '1{
s,^#!.*bin/env python,#!%{__python},
s,^#!.*bin/env perl,#!%{__perl},


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/llvm.git/commitdiff/707f377a19e0938392b59f26c7fe21a5417e77e4

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


DISTFILES: intel-gmmlib: intel-gmmlib-19.2.1.tar.gz

2019-07-01 Thread jajcus
Request by: jajcus


Files fetched: 1

STORED: 
https://github.com/intel/gmmlib/archive/intel-gmmlib-19.2.1/intel-gmmlib-19.2.1.tar.gz
4004db0e2efcff2d2b3702f59c8ce0b2  intel-gmmlib-19.2.1.tar.gz
Size: 633194 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/intel-gmmlib] Created branch master

2019-07-01 Thread jajcus
The branch 'master' was created.

Summary of new commits:

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


[packages/SPIRV-LLVM-Translator] new package

2019-07-01 Thread jajcus
commit d4711bf22a31337bc4d56858a36a07e02314b267
Author: Jacek Konieczny 
Date:   Mon Jul 1 15:52:01 2019 +0200

new package

 ...rOpenCL-pass-to-handle-new-blocks-represn.patch | 433 +
 SPIRV-LLVM-Translator.spec |  76 
 2 files changed, 509 insertions(+)
---
diff --git a/SPIRV-LLVM-Translator.spec b/SPIRV-LLVM-Translator.spec
new file mode 100644
index 000..0977552
--- /dev/null
+++ b/SPIRV-LLVM-Translator.spec
@@ -0,0 +1,76 @@
+
+%define llvm_version 7.0.1
+
+Summary:   LLVM/SPIR-V Bi-Directional Translator
+Name:  SPIRV-LLVM-Translator
+Version:   7.0.1
+Release:   1
+License:   University of Illinois/NCSA Open Source License
+Group: Libraries
+Source0:   
https://github.com/KhronosGroup/SPIRV-LLVM-Translator/archive/%{version}-1/%{name}-%{version}-1.tar.gz
+# Source0-md5: e73c5ebffb4fc5dc606cd217f69ec97c
+# from Intel opencl-clang
+Patch0:
0001-Update-LowerOpenCL-pass-to-handle-new-blocks-represn.patch
+URL:   https://github.com/KhronosGroup/SPIRV-LLVM-Translator/
+BuildRequires: cmake >= 3.3
+BuildRequires: llvm-devel >= %{llvm_version}
+BuildRequires: pkgconfig
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+LLVM/SPIR-V Bi-Directional Translator - a library and tool for
+translation between LLVM IR and SPIR-V.
+
+%package devel
+Summary:   Header files for %{name} library
+Summary(pl.UTF-8): Pliki nagłówkowe biblioteki %{name}
+Group: Development/Libraries
+Requires:  %{name} = %{version}-%{release}
+
+%description devel
+Header files for %{name} library.
+
+%description devel -l pl.UTF-8
+Pliki nagłówkowe biblioteki %{name}.
+
+%prep
+%setup -qn %{name}-%{version}-1
+
+%build
+
+install -d build
+cd build
+%cmake \
+   ../
+%{__make}
+
+cd ..
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%{__make} -C build install \
+   DESTDIR=$RPM_BUILD_ROOT
+
+mv $RPM_BUILD_ROOT%{_libdir}/libLLVMSPIRVLib.so.7 
$RPM_BUILD_ROOT%{_libdir}/libLLVMSPIRVLib.so.%{version}
+ln -s libLLVMSPIRVLib.so.%{version} 
$RPM_BUILD_ROOT%{_libdir}/libLLVMSPIRVLib.so.7
+ln -sf libLLVMSPIRVLib.so.%{version} 
$RPM_BUILD_ROOT%{_libdir}/libLLVMSPIRVLib.so
+
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post  -p /sbin/ldconfig
+%postun-p /sbin/ldconfig
+
+%files
+%defattr(644,root,root,755)
+%doc README.md LICENSE.TXT
+%attr(755,root,root) %{_libdir}/libLLVMSPIRVLib.so.7.*.*
+%ghost %attr(755,root,root) %{_libdir}/libLLVMSPIRVLib.so.7
+
+%files devel
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_libdir}/libLLVMSPIRVLib.so
+%{_includedir}/LLVMSPIRVLib
+%{_pkgconfigdir}/LLVMSPIRVLib.pc
diff --git a/0001-Update-LowerOpenCL-pass-to-handle-new-blocks-represn.patch 
b/0001-Update-LowerOpenCL-pass-to-handle-new-blocks-represn.patch
new file mode 100644
index 000..56d6709
--- /dev/null
+++ b/0001-Update-LowerOpenCL-pass-to-handle-new-blocks-represn.patch
@@ -0,0 +1,433 @@
+From 9ce0fe02fd6cda5fb29fbb0d5037a1798a810b8a Mon Sep 17 00:00:00 2001
+From: Alexey Sotkin 
+Date: Thu, 21 Feb 2019 17:14:36 +0300
+Subject: [PATCH 1/3] Update LowerOpenCL pass to handle new blocks
+ represntation in LLVM IR
+
+---
+ lib/SPIRV/SPIRVLowerOCLBlocks.cpp | 413 --
+ test/global_block.ll  |  71 ++---
+ test/literal-struct.ll|  31 ++-
+ test/transcoding/block_w_struct_return.ll |  47 ++--
+ test/transcoding/enqueue_kernel.ll| 237 ++---
+ 5 files changed, 317 insertions(+), 482 deletions(-)
+
+diff --git a/lib/SPIRV/SPIRVLowerOCLBlocks.cpp 
b/lib/SPIRV/SPIRVLowerOCLBlocks.cpp
+index 50e1838..b42a4ec 100644
+--- a/lib/SPIRV/SPIRVLowerOCLBlocks.cpp
 b/lib/SPIRV/SPIRVLowerOCLBlocks.cpp
+@@ -1,303 +1,110 @@
+-//===- SPIRVLowerOCLBlocks.cpp - OCL Utilities 
===//
+-//
+-// The LLVM/SPIRV Translator
+-//
+-// This file is distributed under the University of Illinois Open Source
+-// License. See LICENSE.TXT for details.
+-//
+-// Copyright (c) 2018 Intel Corporation. All rights reserved.
+-//
+-// Permission is hereby granted, free of charge, to any person obtaining a
+-// copy of this software and associated documentation files (the "Software"),
+-// to deal with 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:
+-//
+-// Redistributions of source code must retain the above copyright notice,
+-// this list of conditions and the following disclaimers.
+-// Redistributions in binary form must reproduce the above copyright notice,
+-// this list of conditions and the following disclaimers in the documentation
+-// and/or other materials provided with the distribution.
+-// Neither the names of Intel Corporation, nor 

DISTFILES: SPIRV-LLVM-Translator: SPIRV-LLVM-Translator-7.0.1-1.tar.gz

2019-07-01 Thread jajcus
Request by: jajcus


Files fetched: 1

STORED: 
https://github.com/KhronosGroup/SPIRV-LLVM-Translator/archive/7.0.1-1/SPIRV-LLVM-Translator-7.0.1-1.tar.gz
e73c5ebffb4fc5dc606cd217f69ec97c  SPIRV-LLVM-Translator-7.0.1-1.tar.gz
Size: 428932 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/SPIRV-LLVM-Translator] Created branch master

2019-07-01 Thread jajcus
The branch 'master' was created.

Summary of new commits:

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


DISTFILES: musescore: MuseScore-3.2.0.zip

2019-06-27 Thread jajcus
Request by: jajcus


Files fetched: 1

STORED: 
https://github.com/musescore/MuseScore/releases/download/v3.2/MuseScore-3.2.0.zip
aa5a646019d6e964c697406913998bb0  MuseScore-3.2.0.zip
Size: 125758337 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/musescore] Version: 3.2.0

2019-06-27 Thread jajcus
commit 8d5374db6c70c9b8b86b6ce65f9843f5cc4f5204
Author: Jacek Konieczny 
Date:   Thu Jun 27 16:06:30 2019 +0200

Version: 3.2.0

 musescore.spec | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/musescore.spec b/musescore.spec
index d388cea..83e5f14 100644
--- a/musescore.spec
+++ b/musescore.spec
@@ -5,12 +5,12 @@
 Summary:   MuseScore - music notation software
 Summary(pl.UTF-8): MuseScore - oprogramowanie do notacji muzycznej
 Name:  musescore
-Version:   3.1.0
+Version:   3.2.0
 Release:   1
 License:   GPL v2
 Group: Applications
-Source0:   
https://github.com/musescore/MuseScore/releases/download/v3.1/MuseScore-%{version}.zip
-# Source0-md5: 2129ce673931137936d480b88f3e0d8e
+Source0:   
https://github.com/musescore/MuseScore/releases/download/v3.2/MuseScore-%{version}.zip
+# Source0-md5: aa5a646019d6e964c697406913998bb0
 Patch0:do_not_bundle_qtwebengine.patch
 Patch1:soundfont-install.patch
 URL:   https://musescore.org/
@@ -130,7 +130,7 @@ rm -rf $RPM_BUILD_ROOT
 %doc README.md Compatibility
 %attr(755,root,root) %{_bindir}/mscore
 %attr(755,root,root) %{_bindir}/musescore
-%{_datadir}/mscore-3.1
+%{_datadir}/mscore-3.2
 %{_desktopdir}/mscore.desktop
 %{_iconsdir}/*/*/apps/*
 %{_iconsdir}/*/*/mimetypes/*


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/musescore.git/commitdiff/8d5374db6c70c9b8b86b6ce65f9843f5cc4f5204

___
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-19.1.1.tar.bz2

2019-06-26 Thread jajcus
Request by: jajcus


Files fetched: 1

STORED: 
https://gitlab.freedesktop.org/mesa/mesa/-/archive/mesa-19.1.1/mesa-mesa-19.1.1.tar.bz2
2324dd1054888452684cfcd0a71a9f0d  mesa-mesa-19.1.1.tar.bz2
Size: 12586377 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: 19.1.1

2019-06-26 Thread jajcus
commit 1665b6ffd712570308a3a11a61a4742d48fd700f
Author: Jacek Konieczny 
Date:   Wed Jun 26 09:10:25 2019 +0200

Version: 19.1.1

 Mesa.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/Mesa.spec b/Mesa.spec
index f151951..3f96e94 100644
--- a/Mesa.spec
+++ b/Mesa.spec
@@ -53,14 +53,14 @@
 Summary:   Free OpenGL implementation
 Summary(pl.UTF-8): Wolnodostępna implementacja standardu OpenGL
 Name:  Mesa
-Version:   19.0.6
+Version:   19.1.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:7c61a801311fb8d2f7b3cceb7b5cf308
 Source0:   
https://gitlab.freedesktop.org/mesa/mesa/-/archive/mesa-%{version}/mesa-mesa-%{version}.tar.bz2
-# Source0-md5: cedec874ddab11a8650e9a405e335036
+# Source0-md5: 2324dd1054888452684cfcd0a71a9f0d
 Patch0:nouveau_no_rtti.patch
 URL:   http://www.mesa3d.org/
 %{?with_opencl:BuildRequires:  clang-devel >= %{llvm_ver}}


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/Mesa.git/commitdiff/1665b6ffd712570308a3a11a61a4742d48fd700f

___
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-19.0.6.tar.bz2

2019-06-06 Thread jajcus
Request by: jajcus


Files fetched: 1

STORED: 
https://gitlab.freedesktop.org/mesa/mesa/-/archive/mesa-19.0.6/mesa-mesa-19.0.6.tar.bz2
cedec874ddab11a8650e9a405e335036  mesa-mesa-19.0.6.tar.bz2
Size: 11782395 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: 19.0.6

2019-06-06 Thread jajcus
commit 5101d6a78911da00c8bfaaf0acbf544db64421d1
Author: Jacek Konieczny 
Date:   Thu Jun 6 15:21:08 2019 +0200

Version: 19.0.6

 Mesa.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/Mesa.spec b/Mesa.spec
index 2fdbefd..f151951 100644
--- a/Mesa.spec
+++ b/Mesa.spec
@@ -53,14 +53,14 @@
 Summary:   Free OpenGL implementation
 Summary(pl.UTF-8): Wolnodostępna implementacja standardu OpenGL
 Name:  Mesa
-Version:   19.0.5
+Version:   19.0.6
 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:7c61a801311fb8d2f7b3cceb7b5cf308
 Source0:   
https://gitlab.freedesktop.org/mesa/mesa/-/archive/mesa-%{version}/mesa-mesa-%{version}.tar.bz2
-# Source0-md5: dbeefe955c19411a0a23d7bb58a92149
+# Source0-md5: cedec874ddab11a8650e9a405e335036
 Patch0:nouveau_no_rtti.patch
 URL:   http://www.mesa3d.org/
 %{?with_opencl:BuildRequires:  clang-devel >= %{llvm_ver}}


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/Mesa.git/commitdiff/5101d6a78911da00c8bfaaf0acbf544db64421d1

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


DISTFILES: musescore: MuseScore-3.1.0.zip

2019-06-04 Thread jajcus
Request by: jajcus


Files fetched: 1

STORED: 
https://github.com/musescore/MuseScore/releases/download/v3.1/MuseScore-3.1.0.zip
2129ce673931137936d480b88f3e0d8e  MuseScore-3.1.0.zip
Size: 122955386 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/musescore] Version: 3.1.0

2019-06-04 Thread jajcus
commit c1dcfec6470daf84d1883291b1683c05c3929d51
Author: Jacek Konieczny 
Date:   Tue Jun 4 12:55:51 2019 +0200

Version: 3.1.0

 musescore.spec  | 26 --
 soundfont-install.patch | 20 
 2 files changed, 28 insertions(+), 18 deletions(-)
---
diff --git a/musescore.spec b/musescore.spec
index 5df9be3..d388cea 100644
--- a/musescore.spec
+++ b/musescore.spec
@@ -1,26 +1,18 @@
 #
 
-# http://ftp.osuosl.org/pub/musescore/soundfont/MuseScore_General/VERSION
-%define soundfont_version 0.1.3
-
 %define min_qt_version 5.8.0
 
 Summary:   MuseScore - music notation software
 Summary(pl.UTF-8): MuseScore - oprogramowanie do notacji muzycznej
 Name:  musescore
-Version:   3.0.5
+Version:   3.1.0
 Release:   1
 License:   GPL v2
 Group: Applications
-Source0:   
https://github.com/musescore/MuseScore/archive/v%{version}/%{name}-%{version}.tar.gz
-# Source0-md5: 6560f775ae77a586bc8790a7ea76a6e3
-Source1:   
http://ftp.osuosl.org/pub/musescore/soundfont/MuseScore_General/MuseScore_General.sf3
-# Source1-md5: 3e02cc70ae6df3077d0003bbcb95456c
-Source2:   
http://ftp.osuosl.org/pub/musescore/soundfont/MuseScore_General/MuseScore_General-License.md
-# Source2-md5: 6ab9352030223f909bb36b8f067c7d26
-Source3:   
http://ftp.osuosl.org/pub/musescore/soundfont/MuseScore_General/MuseScore_General-changelog.txt
-# Source3-md5: 765c42a6d1186ae2a68873ade1ff829c
+Source0:   
https://github.com/musescore/MuseScore/releases/download/v3.1/MuseScore-%{version}.zip
+# Source0-md5: 2129ce673931137936d480b88f3e0d8e
 Patch0:do_not_bundle_qtwebengine.patch
+Patch1:soundfont-install.patch
 URL:   https://musescore.org/
 BuildRequires: Qt5Concurrent-devel >= %{min_qt_version}
 BuildRequires: Qt5Core-devel >= %{min_qt_version}
@@ -79,12 +71,10 @@ Features:
 - print or create pdf files
 
 %prep
-%setup -q -n MuseScore-%{version}
+%setup -q -c -n MuseScore-%{version}
 
 %patch0 -p1
-
-cp -p %{SOURCE1} %{SOURCE2} %{SOURCE3} share/sound
-echo "%{soundfont_version}" > share/sound/VERSION
+%patch1 -p1
 
 %build
 
@@ -140,11 +130,11 @@ rm -rf $RPM_BUILD_ROOT
 %doc README.md Compatibility
 %attr(755,root,root) %{_bindir}/mscore
 %attr(755,root,root) %{_bindir}/musescore
-%{_datadir}/mscore-3.0
+%{_datadir}/mscore-3.1
 %{_desktopdir}/mscore.desktop
 %{_iconsdir}/*/*/apps/*
 %{_iconsdir}/*/*/mimetypes/*
 %{_mandir}/man1/mscore.1*
 %{_mandir}/man1/musescore.1*
 %{_datadir}/mime/packages/musescore.xml
-%{_datadir}/appdata/mscore.appdata.xml
+%{_datadir}/metainfo/org.musescore.MuseScore.appdata.xml
diff --git a/soundfont-install.patch b/soundfont-install.patch
new file mode 100644
index 000..2ecb0c9
--- /dev/null
+++ b/soundfont-install.patch
@@ -0,0 +1,20 @@
+diff -dur -x '*~' MuseScore-3.1.0.orig/share/sound/CMakeLists.txt 
MuseScore-3.1.0/share/sound/CMakeLists.txt
+--- MuseScore-3.1.0.orig/share/sound/CMakeLists.txt2019-05-28 
09:33:38.0 +0200
 MuseScore-3.1.0/share/sound/CMakeLists.txt 2019-06-04 09:44:21.0 
+0200
+@@ -29,13 +29,13 @@
+   )
+ endif ()
+ 
+-if (NOT EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/MuseScore_General-License.md)
++if (NOT EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/MuseScore_General_License.md)
+   install (FILES FluidR3Mono_License.md
+   DESTINATION ${Mscore_SHARE_NAME}${Mscore_INSTALL_NAME}sound
+-  RENAME MuseScore_General-License.md)
++  RENAME MuseScore_General_License.md)
+ else ()
+   install(FILES
+-  MuseScore_General-License.md
++  MuseScore_General_License.md
+   DESTINATION ${Mscore_SHARE_NAME}${Mscore_INSTALL_NAME}sound
+   )
+ endif ()


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/musescore.git/commitdiff/c1dcfec6470daf84d1883291b1683c05c3929d51

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


DISTFILES: GxPlugins.lv2: GxPlugins_0.7.tar.gz

2019-05-31 Thread jajcus
Request by: jajcus


Files fetched: 1

STORED: 
https://github.com/brummer10/GxPlugins.lv2/releases/download/v0.7/GxPlugins_0.7.tar.gz
05d739339bd48311b1e9590232780809  GxPlugins_0.7.tar.gz
Size: 24254828 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/GxPlugins.lv2] Summary fix

2019-05-31 Thread jajcus
commit b4050dcccbcfa8a357d21350a5c18bd5b41483d0
Author: Jacek Konieczny 
Date:   Fri May 31 11:56:32 2019 +0200

Summary fix

just to force a commit and push, really

 GxPlugins.lv2.spec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/GxPlugins.lv2.spec b/GxPlugins.lv2.spec
index 61cdac6..6ff9b52 100644
--- a/GxPlugins.lv2.spec
+++ b/GxPlugins.lv2.spec
@@ -1,4 +1,4 @@
-Summary:   A set of extra lv2 plugins from the guitarix project
+Summary:   A set of extra lv2 plugins from the Guitarix project
 Name:  GxPlugins.lv2
 Version:   0.7
 Release:   1


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/GxPlugins.lv2.git/commitdiff/b4050dcccbcfa8a357d21350a5c18bd5b41483d0

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


[packages/musescore] Version: 3.0.5

2019-05-27 Thread jajcus
commit 55254a6a65fdaa5e427ee0c79001dd3e26fd6cc0
Author: Jacek Konieczny 
Date:   Mon May 27 14:07:52 2019 +0200

Version: 3.0.5

 musescore.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/musescore.spec b/musescore.spec
index c684328..5df9be3 100644
--- a/musescore.spec
+++ b/musescore.spec
@@ -8,12 +8,12 @@
 Summary:   MuseScore - music notation software
 Summary(pl.UTF-8): MuseScore - oprogramowanie do notacji muzycznej
 Name:  musescore
-Version:   3.0.4
+Version:   3.0.5
 Release:   1
 License:   GPL v2
 Group: Applications
 Source0:   
https://github.com/musescore/MuseScore/archive/v%{version}/%{name}-%{version}.tar.gz
-# Source0-md5: d2d3cfb28c3da501118e5367eea389f2
+# Source0-md5: 6560f775ae77a586bc8790a7ea76a6e3
 Source1:   
http://ftp.osuosl.org/pub/musescore/soundfont/MuseScore_General/MuseScore_General.sf3
 # Source1-md5: 3e02cc70ae6df3077d0003bbcb95456c
 Source2:   
http://ftp.osuosl.org/pub/musescore/soundfont/MuseScore_General/MuseScore_General-License.md


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/musescore.git/commitdiff/55254a6a65fdaa5e427ee0c79001dd3e26fd6cc0

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


DISTFILES: musescore: musescore-3.0.5.tar.gz MuseScore_General.sf3 MuseScore_General-License.md MuseScore_General-changelog.txt

2019-05-27 Thread jajcus
Request by: jajcus


Files fetched: 1

STORED: 
https://github.com/musescore/MuseScore/archive/v3.0.5/musescore-3.0.5.tar.gz
6560f775ae77a586bc8790a7ea76a6e3  musescore-3.0.5.tar.gz
Size: 60520606 bytes
ALREADY GOT: 
http://ftp.osuosl.org/pub/musescore/soundfont/MuseScore_General/MuseScore_General.sf3
3e02cc70ae6df3077d0003bbcb95456c  MuseScore_General.sf3
ALREADY GOT: 
http://ftp.osuosl.org/pub/musescore/soundfont/MuseScore_General/MuseScore_General-License.md
6ab9352030223f909bb36b8f067c7d26  MuseScore_General-License.md
ALREADY GOT: 
http://ftp.osuosl.org/pub/musescore/soundfont/MuseScore_General/MuseScore_General-changelog.txt
765c42a6d1186ae2a68873ade1ff829c  MuseScore_General-changelog.txt


-- 
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/Vulkan-Loader] use epoch in python3 deps

2019-05-24 Thread jajcus
commit 5f67011b9aa69d25d3d459f156a326356b7fc569
Author: Jacek Konieczny 
Date:   Fri May 24 08:55:18 2019 +0200

use epoch in python3 deps

 Vulkan-Loader.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/Vulkan-Loader.spec b/Vulkan-Loader.spec
index de94c14..f054e5e 100644
--- a/Vulkan-Loader.spec
+++ b/Vulkan-Loader.spec
@@ -23,9 +23,9 @@ BuildRequires:glibc-localedb-all
 BuildRequires: Vulkan-Headers = %{api_version}
 %{?with_x11:BuildRequires: libxcb-devel}
 BuildRequires: pkgconfig
-BuildRequires: python3 >= 3
+BuildRequires: python3 >= 1:3
 BuildRequires: python3-lxml
-BuildRequires: python3-modules >= 3
+BuildRequires: python3-modules >= 1:3
 %{?with_wayland:BuildRequires: wayland-devel}
 %{?with_x11:BuildRequires: xorg-lib-libX11-devel}
 Provides:  vulkan(loader) = %{api_version}


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/Vulkan-Loader.git/commitdiff/5f67011b9aa69d25d3d459f156a326356b7fc569

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


[packages/Vulkan-Tools] Add epoch to python3 dependencies

2019-05-24 Thread jajcus
commit c62a565614d6de1e8cc2e01e13763b3677e438db
Author: Jacek Konieczny 
Date:   Fri May 24 08:53:18 2019 +0200

Add epoch to python3 dependencies

 Vulkan-Tools.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/Vulkan-Tools.spec b/Vulkan-Tools.spec
index 5bdb419..557874b 100644
--- a/Vulkan-Tools.spec
+++ b/Vulkan-Tools.spec
@@ -19,9 +19,9 @@ BuildRequires:cmake >= 3.4
 BuildRequires: glslang
 %{?with_x11:BuildRequires: libxcb-devel}
 BuildRequires: pkgconfig
-BuildRequires: python3 >= 3
+BuildRequires: python3 >= 1:3
 BuildRequires: python3-lxml
-BuildRequires: python3-modules >= 3
+BuildRequires: python3-modules >= 1:3
 %{?with_wayland:BuildRequires: wayland-devel}
 %{?with_x11:BuildRequires: xorg-lib-libX11-devel}
 Obsoletes: vulkan-sdk-demos


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/Vulkan-Tools.git/commitdiff/c62a565614d6de1e8cc2e01e13763b3677e438db

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


[packages/Vulkan-Tools] O: vulkan-sdk-demos

2019-05-24 Thread jajcus
commit e1b8a360d92bf010409c527d14b4047dc3ccd961
Author: Jacek Konieczny 
Date:   Fri May 24 08:51:11 2019 +0200

O: vulkan-sdk-demos

 Vulkan-Tools.spec | 1 +
 1 file changed, 1 insertion(+)
---
diff --git a/Vulkan-Tools.spec b/Vulkan-Tools.spec
index bb085c8..5bdb419 100644
--- a/Vulkan-Tools.spec
+++ b/Vulkan-Tools.spec
@@ -24,6 +24,7 @@ BuildRequires:python3-lxml
 BuildRequires: python3-modules >= 3
 %{?with_wayland:BuildRequires: wayland-devel}
 %{?with_x11:BuildRequires: xorg-lib-libX11-devel}
+Obsoletes: vulkan-sdk-demos
 Obsoletes: vulkan-sdk-tools
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/Vulkan-Tools.git/commitdiff/e1b8a360d92bf010409c527d14b4047dc3ccd961

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


[packages/Vulkan-Tools] new package

2019-05-23 Thread jajcus
commit da7717d75bc8b4edb351abf029c69ae8e7acd008
Author: Jacek Konieczny 
Date:   Thu May 23 21:27:49 2019 +0200

new package

To replace vulkan-sdk-tools. Now build directly from the Khronos
repository.

 Vulkan-Tools.spec | 96 +++
 1 file changed, 96 insertions(+)
---
diff --git a/Vulkan-Tools.spec b/Vulkan-Tools.spec
new file mode 100644
index 000..bb085c8
--- /dev/null
+++ b/Vulkan-Tools.spec
@@ -0,0 +1,96 @@
+
+# Conditional build:
+%bcond_withtests   # run tests
+
+%defineapi_version 1.1.107
+
+Summary:   Vulkan API Tools
+Summary(pl.UTF-8): Narzędzia API Vulkan
+Name:  Vulkan-Tools
+Version:   %{api_version}
+Release:   1
+License:   Apache v2.0
+Group: Development
+Source0:   
https://github.com/KhronosGroup/Vulkan-Tools/archive/v%{version}/%{name}-%{version}.tar.gz
+# Source0-md5: 658bece65da93e463c59b48ffa9057a2
+URL:   https://github.com/KhronosGroup/Vulkan-Tools/
+BuildRequires: Vulkan-Loader-devel >= %{api_version}
+BuildRequires: cmake >= 3.4
+BuildRequires: glslang
+%{?with_x11:BuildRequires: libxcb-devel}
+BuildRequires: pkgconfig
+BuildRequires: python3 >= 3
+BuildRequires: python3-lxml
+BuildRequires: python3-modules >= 3
+%{?with_wayland:BuildRequires: wayland-devel}
+%{?with_x11:BuildRequires: xorg-lib-libX11-devel}
+Obsoletes: vulkan-sdk-tools
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+Tools for the Vulkan graphics API.
+
+%description -l pl.UTF-8
+Narzędzia do graficznego API Vulkan.
+
+%package mock-icd
+Summary:   Dummy Vulkan ICD (driver)
+Summary(pl.UTF-8): Atrapa sterownika Vulkan
+Group: Development
+Requires:  %{name} = %{version}-%{release}
+
+%description mock-icd
+Dummy Vulkan ICD (driver).
+
+%description mock-icd -l pl.UTF-8
+Atrapa sterownika Vulkan.
+
+%prep
+%setup -qn %{name}-%{version}
+
+%build
+install -d build
+cd build
+
+# .pc file creation expect CMAKE_INSTALL_LIBDIR to be relative (to 
CMAKE_INSTALL_PREFIX)
+%cmake .. \
+   -DCMAKE_INSTALL_LIBDIR=%{_lib} \
+   -DGLSLANG_INSTALL_DIR=%{_prefix} \
+   -DBUILD_TESTS=%{?with_tests:ON}%{!?with_tests:OFF} \
+   -DINSTALL_ICD=ON
+
+%{__make}
+
+%if %{with tests}
+cd tests
+LC_ALL=C.UTF-8 VK_LAYER_PATH=layers LD_LIBRARY_PATH=../loader:layers 
./run_loader_tests.sh
+cd ..
+%endif
+
+cd ..
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+install -d $RPM_BUILD_ROOT%{_sysconfdir}/vulkan/icd.d/
+
+%{__make} -C build install \
+   DESTDIR=$RPM_BUILD_ROOT
+
+mv $RPM_BUILD_ROOT%{_datadir}/vulkan/icd.d/VkICD_mock_icd.json \
+   $RPM_BUILD_ROOT%{_sysconfdir}/vulkan/icd.d/VkICD_mock_icd.json.disabled
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc README.md GOVERNANCE.md CONTRIBUTING.md
+%attr(755,root,root) %{_bindir}/vkcube
+%attr(755,root,root) %{_bindir}/vkcubepp
+%attr(755,root,root) %{_bindir}/vulkaninfo
+
+%files mock-icd
+%defattr(644,root,root,755)
+%{_sysconfdir}/vulkan/icd.d/VkICD_mock_icd.json.disabled
+%attr(755,root,root) %{_libdir}/libVkICD_mock_icd.so


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/Vulkan-Tools.git/commitdiff/da7717d75bc8b4edb351abf029c69ae8e7acd008

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


DISTFILES: Vulkan-Tools: Vulkan-Tools-1.1.107.tar.gz

2019-05-23 Thread jajcus
Request by: jajcus


Files fetched: 1

STORED: 
https://github.com/KhronosGroup/Vulkan-Tools/archive/v1.1.107/Vulkan-Tools-1.1.107.tar.gz
658bece65da93e463c59b48ffa9057a2  Vulkan-Tools-1.1.107.tar.gz
Size: 610735 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/Vulkan-Tools] Created branch master

2019-05-23 Thread jajcus
The branch 'master' was created.

Summary of new commits:

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


[packages/qt5-qtbase] s/vulkan-devel/Vulkan-Loader-devel/

2019-05-23 Thread jajcus
commit 7dfa6db4b35ede6c7f8a8ba6df6834a90247454a
Author: Jacek Konieczny 
Date:   Thu May 23 20:37:12 2019 +0200

s/vulkan-devel/Vulkan-Loader-devel/

Release: 2

 qt5-qtbase.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/qt5-qtbase.spec b/qt5-qtbase.spec
index f87fcf6..014e065 100644
--- a/qt5-qtbase.spec
+++ b/qt5-qtbase.spec
@@ -66,7 +66,7 @@ Summary:  Qt5 - base components
 Summary(pl.UTF-8): Biblioteka Qt5 - podstawowe komponenty
 Name:  qt5-%{orgname}
 Version:   5.12.3
-Release:   1
+Release:   2
 # See LGPL_EXCEPTION.txt for exception details
 License:   LGPL v2 with Digia Qt LGPL Exception v1.1 or GPL v3
 Group: X11/Libraries
@@ -120,7 +120,7 @@ BuildRequires:  tar >= 1:1.22
 %{?with_tslib:BuildRequires:   tslib-devel}
 BuildRequires: udev-devel
 %{?with_odbc:BuildRequires:unixODBC-devel >= 2.3.0}
-BuildRequires: vulkan-devel
+BuildRequires: Vulkan-Loader-devel
 BuildRequires: wayland-devel
 BuildRequires: xcb-util-image-devel >= 0.3.9
 BuildRequires: xcb-util-keysyms-devel >= 0.3.9
@@ -631,7 +631,7 @@ Requires:   OpenGL-devel
 Requires:  Qt5Core-devel = %{version}-%{release}
 Requires:  Qt5Gui = %{version}-%{release}
 Requires:  libpng-devel
-Requires:  vulkan-devel
+Requires:  Vulkan-Loader-devel
 
 %description -n Qt5Gui-devel
 Header files for Qt5 Gui library.


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/qt5-qtbase.git/commitdiff/7dfa6db4b35ede6c7f8a8ba6df6834a90247454a

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


[packages/libplacebo] s/vulkan-devel/Vulkan-Loader-devel/

2019-05-23 Thread jajcus
commit ca3ba203c60b89a71c3c683c58c225c68ab75e2a
Author: Jacek Konieczny 
Date:   Thu May 23 20:35:46 2019 +0200

s/vulkan-devel/Vulkan-Loader-devel/

Release: 2

 libplacebo.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/libplacebo.spec b/libplacebo.spec
index 4a70ce7..48c620b 100644
--- a/libplacebo.spec
+++ b/libplacebo.spec
@@ -6,7 +6,7 @@ Summary:Reusable library for GPU-accelerated 
video/image rendering
 Summary(pl.UTF-8): Biblioteka do renderowania filmów/obrazu ze wsparciem 
GPU
 Name:  libplacebo
 Version:   1.7.0
-Release:   1
+Release:   2
 License:   LGPL v2.1+
 Group: Libraries
 #Source0Download: https://code.videolan.org/videolan/libplacebo/tags
@@ -23,7 +23,7 @@ BuildRequires:meson >= 0.47
 BuildRequires: ninja
 BuildRequires: rpmbuild(macros) >= 1.736
 BuildRequires: shaderc-devel
-BuildRequires: vulkan-devel >= 1.0.42
+BuildRequires: Vulkan-Loader-devel
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
@@ -39,7 +39,7 @@ Group:Development/Libraries
 Requires:  %{name} = %{version}-%{release}
 Requires:  lcms2-devel >= 2.6
 Requires:  shaderc-devel
-Requires:  vulkan-devel >= 1.0.42
+Requires:  Vulkan-Loader-devel
 
 %description devel
 Header files for libplacebo library.


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/libplacebo.git/commitdiff/ca3ba203c60b89a71c3c683c58c225c68ab75e2a

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


[packages/gtk+4] s/vulkan-devel/Vulkan-Loader-devel/

2019-05-23 Thread jajcus
commit 996f988ab811f9017d79a76b95392b51afd87940
Author: Jacek Konieczny 
Date:   Thu May 23 20:33:44 2019 +0200

s/vulkan-devel/Vulkan-Loader-devel/

Release: 2

 gtk+4.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/gtk+4.spec b/gtk+4.spec
index 488b59c..e34b41b 100644
--- a/gtk+4.spec
+++ b/gtk+4.spec
@@ -20,7 +20,7 @@ Summary(pl.UTF-8):GIMP Toolkit
 Summary(tr.UTF-8): GIMP ToolKit arayüz kitaplığı
 Name:  gtk+4
 Version:   3.94.0
-Release:   1
+Release:   2
 License:   LGPL v2+
 Group: X11/Libraries
 Source0:   
http://ftp.gnome.org/pub/GNOME/sources/gtk+/3.94/gtk+-%{version}.tar.xz
@@ -69,7 +69,7 @@ BuildRequires:rpmbuild(macros) >= 1.592
 %{?with_vulkan:BuildRequires:  shaderc}
 BuildRequires: sqlite3-devel
 BuildRequires: tar >= 1:1.22
-%{?with_vulkan:BuildRequires:  vulkan-devel}
+%{?with_vulkan:BuildRequires:  Vulkan-Loader-devel}
 BuildRequires: xorg-lib-libX11-devel >= 1.5.0
 BuildRequires: xorg-lib-libXcomposite-devel
 BuildRequires: xorg-lib-libXcursor-devel


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/gtk+4.git/commitdiff/996f988ab811f9017d79a76b95392b51afd87940

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


[packages/gstreamer-plugins-bad] s/vulkan-devel/Vulkan-Loader-Devel/

2019-05-23 Thread jajcus
commit f0b247827fe3a64b446d8e71bc3fe2e4ccd126c1
Author: Jacek Konieczny 
Date:   Thu May 23 20:27:27 2019 +0200

s/vulkan-devel/Vulkan-Loader-Devel/

Release: 8

 gstreamer-plugins-bad.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/gstreamer-plugins-bad.spec b/gstreamer-plugins-bad.spec
index 7b6e5ee..f1e7657 100644
--- a/gstreamer-plugins-bad.spec
+++ b/gstreamer-plugins-bad.spec
@@ -66,7 +66,7 @@ Summary:  Bad GStreamer Streaming-media framework plugins
 Summary(pl.UTF-8): Złe wtyczki do środowiska obróbki strumieni GStreamer
 Name:  gstreamer-plugins-bad
 Version:   1.14.4
-Release:   7
+Release:   8
 License:   LGPL v2+
 Group: Libraries
 Source0:   
https://gstreamer.freedesktop.org/src/gst-plugins-bad/%{gstname}-%{version}.tar.xz
@@ -199,7 +199,7 @@ BuildRequires:  srt-devel
 %{?with_uvch264:BuildRequires: udev-glib-devel}
 BuildRequires: vo-aacenc-devel >= 0.1.0
 %{?with_amr:BuildRequires: vo-amrwbenc-devel >= 0.1.0}
-%{?with_vulkan:BuildRequires:  vulkan-devel}
+%{?with_vulkan:BuildRequires:  Vulkan-Loader-devel}
 # wayland-client, wayland-cursor, wayland-scanner
 %{?with_wayland:BuildRequires: wayland-devel >= 1.4.0}
 %{?with_wayland:BuildRequires: wayland-egl-devel}


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/gstreamer-plugins-bad.git/commitdiff/f0b247827fe3a64b446d8e71bc3fe2e4ccd126c1

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


[packages/Vulkan-Headers] Conflicts: vulkan-devel

2019-05-23 Thread jajcus
commit 9ca374e926de84136777e7fcc2f3a1715bb2e5a7
Author: Jacek Konieczny 
Date:   Thu May 23 20:20:44 2019 +0200

Conflicts: vulkan-devel

 Vulkan-Headers.spec | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
---
diff --git a/Vulkan-Headers.spec b/Vulkan-Headers.spec
index b73a281..5c1dfeb 100644
--- a/Vulkan-Headers.spec
+++ b/Vulkan-Headers.spec
@@ -5,13 +5,14 @@ Summary:  Vulkan API headers and registry
 Summary(pl.UTF-8): Pliki nagłówkowe i rejestr API Vulkan
 Name:  Vulkan-Headers
 Version:   %{api_version}
-Release:   1
+Release:   2
 License:   Apache v2.0, parts MIT-like
 Group: Development
 Source0:   
https://github.com/KhronosGroup/Vulkan-Headers/archive/v%{version}/Vulkan-Headers-%{version}.tar.gz
 # Source0-md5: 98dd2be8b74dff529085f078863ef407
 URL:   https://github.com/KhronosGroup/Vulkan-Headers/
 BuildRequires: cmake >= 2.8.11
+Conflicts: vulkan-devel < 1.1.107
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/Vulkan-Headers.git/commitdiff/9ca374e926de84136777e7fcc2f3a1715bb2e5a7

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


DISTFILES: Vulkan-Loader: Vulkan-Loader-1.1.107.tar.gz

2019-05-23 Thread jajcus
Request by: jajcus


Files fetched: 1

STORED: 
https://github.com/KhronosGroup/Vulkan-Loader/archive/v1.1.107/Vulkan-Loader-1.1.107.tar.gz
aec66f05e2d16794f9365aecce01f60e  Vulkan-Loader-1.1.107.tar.gz
Size: 1347832 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/Vulkan-Loader] new package

2019-05-23 Thread jajcus
commit be90d7c75b58b3c8705fe9b2b676c1b3ce2e86ff
Author: Jacek Konieczny 
Date:   Thu May 23 20:13:05 2019 +0200

new package

To replace vulkan-loader built from the vulkan-sdk package. Now from the
official Khronos repository.

 Vulkan-Loader.spec | 110 +
 1 file changed, 110 insertions(+)
---
diff --git a/Vulkan-Loader.spec b/Vulkan-Loader.spec
new file mode 100644
index 000..de94c14
--- /dev/null
+++ b/Vulkan-Loader.spec
@@ -0,0 +1,110 @@
+
+# Conditional build:
+%bcond_withtests   # run tests (requires Google Test)
+%bcond_without wayland # Wayland support in loader
+%bcond_without x11 # XLib support in loader
+
+%defineapi_version 1.1.107
+
+Summary:   Vulkan API loader
+Summary(pl.UTF-8): Biblioteka wczytująca sterowniki Vulkan
+Name:  Vulkan-Loader
+Version:   %{api_version}
+Release:   1
+License:   Apache v2.0, parts MIT-like
+Group: Development
+Source0:   
https://github.com/KhronosGroup/Vulkan-Loader/archive/v%{version}/%{name}-%{version}.tar.gz
+# Source0-md5: aec66f05e2d16794f9365aecce01f60e
+URL:   https://github.com/KhronosGroup/Vulkan-Loader/
+BuildRequires: cmake >= 3.4
+%if %{with tests} && %(locale -a | grep -q '^C\.UTF-8$'; echo $?)
+BuildRequires: glibc-localedb-all
+%endif
+BuildRequires: Vulkan-Headers = %{api_version}
+%{?with_x11:BuildRequires: libxcb-devel}
+BuildRequires: pkgconfig
+BuildRequires: python3 >= 3
+BuildRequires: python3-lxml
+BuildRequires: python3-modules >= 3
+%{?with_wayland:BuildRequires: wayland-devel}
+%{?with_x11:BuildRequires: xorg-lib-libX11-devel}
+Provides:  vulkan(loader) = %{api_version}
+Obsoletes: vulkan-loader
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+Common loader for Vulkan API drivers.
+
+%description -l pl.UTF-8
+Wspólna biblioteka wczytująca sterowniki Vulkan.
+
+%package devel
+Summary:   Development files files for the Vulkan loader
+Summary(pl.UTF-8): Pliki nagłówkowe loadera Vulkan
+Group: Development/Libraries
+Requires:  Vulkan-Headers = %{api_version}
+Requires:  Vulkan-Loader = %{version}-%{release}
+Obsoletes: vulkan-devel < 1.1.106
+
+%description devel
+Development files for the Vulkan loader.
+
+%description devel -l pl.UTF-8
+Pliki nagłówkowe loadera Vulkan.
+
+%prep
+%setup -qn %{name}-%{version}
+
+%build
+install -d build
+cd build
+
+# .pc file creation expect CMAKE_INSTALL_LIBDIR to be relative (to 
CMAKE_INSTALL_PREFIX)
+%cmake .. \
+   -DCMAKE_INSTALL_LIBDIR=%{_lib} \
+   -DBUILD_TESTS=%{?with_tests:ON}%{!?with_tests:OFF} \
+   -DBUILD_WSI_WAYLAND_SUPPORT=%{?with_wayland:ON}%{!?with_wayland:OFF} \
+   -DBUILD_WSI_XLIB_SUPPORT=%{?with_x11:ON}%{!?with_x11:OFF} \
+   -DBUILD_WSI_XCB_SUPPORT=%{?with_x11:ON}%{!?with_x11:OFF}
+
+%{__make}
+
+%if %{with tests}
+cd tests
+LC_ALL=C.UTF-8 VK_LAYER_PATH=layers LD_LIBRARY_PATH=../loader:layers 
./run_loader_tests.sh
+cd ..
+%endif
+
+cd ..
+
+%install
+rm -rf $RPM_BUILD_ROOT
+install -d 
$RPM_BUILD_ROOT{%{_sysconfdir},%{_datadir}}/vulkan/{icd.d,explicit_layer.d,implicit_layer.d}
+
+%{__make} -C build install \
+   DESTDIR=$RPM_BUILD_ROOT
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post  -p /sbin/ldconfig
+%postun-p /sbin/ldconfig
+
+%files
+%defattr(644,root,root,755)
+%doc README.md GOVERNANCE.md CONTRIBUTING.md
+%dir %{_sysconfdir}/vulkan
+%dir %{_sysconfdir}/vulkan/icd.d
+%dir %{_sysconfdir}/vulkan/explicit_layer.d
+%dir %{_sysconfdir}/vulkan/implicit_layer.d
+%dir %{_datadir}/vulkan
+%dir %{_datadir}/vulkan/icd.d
+%dir %{_datadir}/vulkan/explicit_layer.d
+%dir %{_datadir}/vulkan/implicit_layer.d
+%attr(755,root,root) %{_libdir}/libvulkan.so.1.*.*
+%attr(755,root,root) %ghost %{_libdir}/libvulkan.so.1
+
+%files devel
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_libdir}/libvulkan.so
+%{_pkgconfigdir}/vulkan.pc


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/Vulkan-Loader.git/commitdiff/be90d7c75b58b3c8705fe9b2b676c1b3ce2e86ff

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


[packages/Vulkan-Loader] Created branch master

2019-05-23 Thread jajcus
The branch 'master' was created.

Summary of new commits:

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


[packages/Vulkan-Headers] let's use the upstream project name

2019-05-23 Thread jajcus
commit 5b3b4a1621eb26542592a61f130a53a6191268d0
Author: Jacek Konieczny 
Date:   Thu May 23 20:09:01 2019 +0200

let's use the upstream project name

 vulkan-headers.spec => Vulkan-Headers.spec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/vulkan-headers.spec b/Vulkan-Headers.spec
similarity index 98%
rename from vulkan-headers.spec
rename to Vulkan-Headers.spec
index 74f369e..b73a281 100644
--- a/vulkan-headers.spec
+++ b/Vulkan-Headers.spec
@@ -3,7 +3,7 @@
 
 Summary:   Vulkan API headers and registry
 Summary(pl.UTF-8): Pliki nagłówkowe i rejestr API Vulkan
-Name:  vulkan-headers
+Name:  Vulkan-Headers
 Version:   %{api_version}
 Release:   1
 License:   Apache v2.0, parts MIT-like


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/Vulkan-Headers.git/commitdiff/5b3b4a1621eb26542592a61f130a53a6191268d0

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


[move command] packages/vulkan-headers -> packages/Vulkan-Headers

2019-05-23 Thread jajcus


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


[packages/vulkan-headers] package README.md

2019-05-23 Thread jajcus
commit 2a62b5dc6611903d84c501d77e595cdd1fd93868
Author: Jacek Konieczny 
Date:   Thu May 23 20:00:24 2019 +0200

package README.md

 vulkan-headers.spec | 1 +
 1 file changed, 1 insertion(+)
---
diff --git a/vulkan-headers.spec b/vulkan-headers.spec
index 1ad851f..74f369e 100644
--- a/vulkan-headers.spec
+++ b/vulkan-headers.spec
@@ -47,5 +47,6 @@ rm -rf $RPM_BUILD_ROOT
 
 %files
 %defattr(644,root,root,755)
+%doc README.md
 %{_includedir}/vulkan
 %{_datadir}/vulkan/registry


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/vulkan-headers.git/commitdiff/2a62b5dc6611903d84c501d77e595cdd1fd93868

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


DISTFILES: vulkan-headers: Vulkan-Headers-1.1.107.tar.gz

2019-05-23 Thread jajcus
Request by: jajcus


Files fetched: 1

STORED: 
https://github.com/KhronosGroup/Vulkan-Headers/archive/v1.1.107/Vulkan-Headers-1.1.107.tar.gz
98dd2be8b74dff529085f078863ef407  Vulkan-Headers-1.1.107.tar.gz
Size: 576639 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/vulkan-headers] new package

2019-05-23 Thread jajcus
commit 1ca687d2d45ae76a581f3cfae2b9afa79b284287
Author: Jacek Konieczny 
Date:   Thu May 23 19:58:38 2019 +0200

new package

to replace the headers from vulkan-devel built from the vulkan-sdk
package

 vulkan-headers.spec | 51 +++
 1 file changed, 51 insertions(+)
---
diff --git a/vulkan-headers.spec b/vulkan-headers.spec
new file mode 100644
index 000..1ad851f
--- /dev/null
+++ b/vulkan-headers.spec
@@ -0,0 +1,51 @@
+
+%defineapi_version 1.1.107
+
+Summary:   Vulkan API headers and registry
+Summary(pl.UTF-8): Pliki nagłówkowe i rejestr API Vulkan
+Name:  vulkan-headers
+Version:   %{api_version}
+Release:   1
+License:   Apache v2.0, parts MIT-like
+Group: Development
+Source0:   
https://github.com/KhronosGroup/Vulkan-Headers/archive/v%{version}/Vulkan-Headers-%{version}.tar.gz
+# Source0-md5: 98dd2be8b74dff529085f078863ef407
+URL:   https://github.com/KhronosGroup/Vulkan-Headers/
+BuildRequires: cmake >= 2.8.11
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+Header files and registry for Vulkan API.
+
+%description -l pl.UTF-8
+Pliki nagłówkowe i rejestr API Vulkan.
+
+%prep
+%setup -qn Vulkan-Headers-%{version}
+
+%build
+install -d build
+cd build
+
+# .pc file creation expect CMAKE_INSTALL_LIBDIR to be relative (to 
CMAKE_INSTALL_PREFIX)
+%cmake .. \
+   -DCMAKE_INSTALL_LIBDIR=%{_lib}
+
+%{__make}
+
+cd ..
+
+%install
+rm -rf $RPM_BUILD_ROOT
+install -d $RPM_BUILD_ROOT%{_includedir}/vulkan
+
+%{__make} -C build install \
+   DESTDIR=$RPM_BUILD_ROOT
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%{_includedir}/vulkan
+%{_datadir}/vulkan/registry


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/vulkan-headers.git/commitdiff/1ca687d2d45ae76a581f3cfae2b9afa79b284287

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


[packages/vulkan-headers] Created branch master

2019-05-23 Thread jajcus
The branch 'master' was created.

Summary of new commits:

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


DISTFILES: lutris: lutris_0.5.1.2.tar.xz

2019-05-22 Thread jajcus
Request by: jajcus


Files fetched: 1

STORED: https://lutris.net/releases/lutris_0.5.1.2.tar.xz
ed2795994bf78f05816076ed634959e8  lutris_0.5.1.2.tar.xz
Size: 1741512 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/lutris] Version: 0.5.1.2

2019-05-22 Thread jajcus
commit 0b63481dd3318781ce278f753a0d681eb00a6b95
Author: Jacek Konieczny 
Date:   Wed May 22 10:02:22 2019 +0200

Version: 0.5.1.2

 lutris.spec | 11 ++-
 1 file changed, 6 insertions(+), 5 deletions(-)
---
diff --git a/lutris.spec b/lutris.spec
index 04ecf03..671fd1f 100644
--- a/lutris.spec
+++ b/lutris.spec
@@ -1,11 +1,11 @@
 Summary:   Lutris – open source gaming platform for GNU/Linux
 Name:  lutris
-Version:   0.4.23
+Version:   0.5.1.2
 Release:   1
 License:   GPL v3
 Group: Applications
 Source0:   https://lutris.net/releases/%{name}_%{version}.tar.xz
-# Source0-md5: 2300a2f6e617cf222aa47acd0b72436f
+# Source0-md5: ed2795994bf78f05816076ed634959e8
 URL:   https://lutris.net/
 BuildRequires: python3-modules
 BuildRequires: python3-setuptools
@@ -60,13 +60,14 @@ rm -rf $RPM_BUILD_ROOT
 %defattr(644,root,root,755)
 %doc AUTHORS CHANGELOG README.rst
 %attr(755,root,root) %{_bindir}/lutris
-%{_datadir}/appdata/%{name}.appdata.xml
-%{_desktopdir}/%{name}.desktop
+%attr(755,root,root) %{_bindir}/lutris-wrapper
+%{_datadir}/metainfo/net.lutris.Lutris.appdata.xml
+%{_desktopdir}/net.lutris.Lutris.desktop
 %{_iconsdir}/hicolor/*/apps/%{name}.*
 %dir %{_datadir}/%{name}
 %dir %{_datadir}/%{name}/bin
 %attr(755,root,root) %{_datadir}/%{name}/bin/*
-%{_datadir}/%{name}/controllers
+%{_datadir}/%{name}/icons
 %{_datadir}/%{name}/media
 %{_datadir}/%{name}/ui
 %{_datadir}/polkit-1/actions/net.lutris.*.policy


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/lutris.git/commitdiff/0b63481dd3318781ce278f753a0d681eb00a6b95

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


[packages/zabbix/zabbix-4.0] patch for http poller added

2019-05-15 Thread jajcus
commit 4d040055ccd610324934399a607cb916b1e4a185
Author: Jacek Konieczny 
Date:   Wed May 15 13:59:20 2019 +0200

patch for http poller added

https://support.zabbix.com/browse/ZBX-16050

https://github.com/zabbix/zabbix/commit/364571cb0a0dfa1cd88a1347e759d5836962a5cd

 http_poller_crash.patch | 117 
 zabbix.spec |   2 +
 2 files changed, 119 insertions(+)
---
diff --git a/zabbix.spec b/zabbix.spec
index 8a3ae74..b4702a9 100644
--- a/zabbix.spec
+++ b/zabbix.spec
@@ -30,6 +30,7 @@ Source7:  %{name}_agentd.init
 Patch0:config.patch
 Patch1:sqlite3_dbname.patch
 Patch2:always_compile_ipc.patch
+Patch3:http_poller_crash.patch
 URL:   http://zabbix.sourceforge.net/
 BuildRequires: OpenIPMI-devel
 BuildRequires: autoconf
@@ -293,6 +294,7 @@ This package provides the Zabbix Java Gateway.
 %patch0 -p1
 %patch1 -p1
 %patch2 -p1
+%patch3 -p1
 
 %build
 %{__libtoolize}
diff --git a/http_poller_crash.patch b/http_poller_crash.patch
new file mode 100644
index 000..2c78b13
--- /dev/null
+++ b/http_poller_crash.patch
@@ -0,0 +1,117 @@
+From 459ee438244f7d1b7907e44738c40bdc8f23660d Mon Sep 17 00:00:00 2001
+From: Aleksejs Sestakovs 
+Date: Mon, 29 Apr 2019 15:09:07 +0300
+Subject: [PATCH] ...PS. [ZBX-16050] fixed HTTP poller crashes
+
+---
+ src/zabbix_server/httppoller/httptest.c | 64 +
+ 1 file changed, 23 insertions(+), 41 deletions(-)
+
+diff --git a/src/zabbix_server/httppoller/httptest.c 
b/src/zabbix_server/httppoller/httptest.c
+index b0a833bad86..bd1ca503643 100644
+--- a/src/zabbix_server/httppoller/httptest.c
 b/src/zabbix_server/httppoller/httptest.c
+@@ -507,58 +507,30 @@ static int   httpstep_load_pairs(DC_HOST *host, 
zbx_httpstep_t *httpstep)
+  *
*
+  * Function: add_http_headers 
*
+  *
*
+- * Purpose: add http headers and cookies to CURL handle   
*
++ * Purpose: adds HTTP headers to curl_slist and prepares cookie header string 
*
+  *
*
+- * Parameters: easyhandle  - [IN] host to be used in macro expansion  
*
+- * headers - [IN] HTTP headers as string  
*
+- * headers_slist   - [IN/OUT] empty curl_slist to be freed after  
*
+- *curl_easy_perform is called 
*
+- * error   - [OUT] error string (if any)  
*
+- *
*
+- * Return value: SUCCEED if headers (and cookies) were set without errors.
*
+- *   FAIL on error.   
*
++ * Parameters: headers - [IN] HTTP headers as string  
*
++ * headers_slist   - [IN/OUT] curl_slist  
*
++ * header_cookie   - [IN/OUT] cookie header as string 
*
+  *
*
+  
**/
+-static intadd_http_headers(CURL *easyhandle, char *headers, struct 
curl_slist **headers_slist, char **error)
++static void   add_http_headers(char *headers, struct curl_slist 
**headers_slist, char **header_cookie)
+ {
+ #define COOKIE_HEADER_STR "Cookie:"
+ #define COOKIE_HEADER_STR_LEN ZBX_CONST_STRLEN(COOKIE_HEADER_STR)
+-  CURLcodeerr;
+-  char*line;
+-  int ret = SUCCEED;
++
++  char*line;
+ 
+   while (NULL != (line = zbx_http_get_header()))
+   {
+   if (0 == strncmp(COOKIE_HEADER_STR, line, 
COOKIE_HEADER_STR_LEN))
+-  {
+-  if (CURLE_OK != (err = curl_easy_setopt(easyhandle, 
CURLOPT_COOKIE, (line +
+-  
COOKIE_HEADER_STR_LEN * sizeof(char)
+-  {
+-  ret = FAIL;
+-
+-  if (NULL != error)
+-  *error = zbx_strdup(*error, 
curl_easy_strerror(err));
+-
+-  zbx_free(line);
+-  goto out;
+-  }
+-  }
++  *header_cookie = zbx_strdup(*header_cookie, line + 
COOKIE_HEADER_STR_LEN);
+   else
+   *headers_slist = curl_slist_append(*headers_slist, 
line);
+ 
+   zbx_free(line);
+   }
+ 
+-  if (CURLE_OK != (err = curl_easy_setopt(easyhandle, CURLOPT_HTTPHEADER, 
*headers_slist)))
+-  {
+-  

DISTFILES: zabbix: zabbix-4.0.7.tar.gz

2019-05-15 Thread jajcus
Request by: jajcus


Files fetched: 1

STORED: http://downloads.sourceforge.net/zabbix/zabbix-4.0.7.tar.gz
3a53e2e4c18fde9edbe34a89cc7d8297  zabbix-4.0.7.tar.gz
Size: 17175571 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/zabbix/zabbix-4.0] Version: 4.0.7 (LTS)

2019-05-15 Thread jajcus
commit e5d5004dca5c15d113f93cedb20f571630d3
Author: Jacek Konieczny 
Date:   Wed May 15 11:59:13 2019 +0200

Version: 4.0.7 (LTS)

 zabbix.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/zabbix.spec b/zabbix.spec
index 5e2ee33..8a3ae74 100644
--- a/zabbix.spec
+++ b/zabbix.spec
@@ -14,12 +14,12 @@
 Summary:   Zabbix - network monitoring software
 Summary(pl.UTF-8): Zabbix - oprogramowanie do monitorowania sieci
 Name:  zabbix
-Version:   4.0.6
+Version:   4.0.7
 Release:   1
 License:   GPL v2+
 Group: Networking/Utilities
 Source0:   
http://downloads.sourceforge.net/zabbix/%{name}-%{version}.tar.gz
-# Source0-md5: 50311fbf42a35974908c991f6a7e1ad1
+# Source0-md5: 3a53e2e4c18fde9edbe34a89cc7d8297
 Source1:   %{name}-apache.conf
 Source2:   %{name}_server.service
 Source3:   %{name}_agentd.service


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/zabbix.git/commitdiff/e5d5004dca5c15d113f93cedb20f571630d3

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


[packages/zabbix] Created branch zabbix-4.0

2019-05-15 Thread jajcus
The branch 'zabbix-4.0' was created.

Summary of new commits:

  e5d5004... Version: 4.0.7 (LTS)
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/Carla] Qt4 is back

2019-05-14 Thread jajcus
commit 0fff10ce6a2f94b283094cb9c22e0d7e12c02fd8
Author: Jacek Konieczny 
Date:   Tue May 14 15:53:50 2019 +0200

Qt4 is back

 Carla.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/Carla.spec b/Carla.spec
index d50eb3c..d34b55b 100644
--- a/Carla.spec
+++ b/Carla.spec
@@ -1,7 +1,7 @@
 #
 # Conditional build:
 %bcond_withzynaddsubfx # build with built-in ZynAddSubFx synth
-%bcond_withqt4 # Qt4 plugin wrapper
+%bcond_without qt4 # Qt4 plugin wrapper
 
 # current revision of source/native-plugins/external git submodule
 %define plugins_rev   859bc98
@@ -9,7 +9,7 @@
 Summary:   Audio plugin host
 Name:  Carla
 Version:   2.0.0
-Release:   1
+Release:   2
 License:   GPL v2+
 Group: Applications
 Source0:   
https://github.com/falkTX/Carla/archive/v%{version}/%{name}-%{version}.tar.gz


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/Carla.git/commitdiff/0fff10ce6a2f94b283094cb9c22e0d7e12c02fd8

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


[packages/suil] Qt4 is back

2019-05-14 Thread jajcus
commit d6671a04237bedb57035c553bd2ac64f77f5f0f4
Author: Jacek Konieczny 
Date:   Tue May 14 15:47:50 2019 +0200

Qt4 is back

 suil.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/suil.spec b/suil.spec
index ede028c..51c16a4 100644
--- a/suil.spec
+++ b/suil.spec
@@ -1,14 +1,14 @@
 #
 # Conditional build:
 %bcond_without gtk # GTK+ (2,3) support
-%bcond_withqt4 # Qt4 support
+%bcond_without qt4 # Qt4 support
 %bcond_without qt5 # Qt5 support
 
 Summary:   Lightweight C library for loading and wrapping LV2 plugin UIs
 Summary(pl.UTF-8): Lekka biblioteka C do ładowania i obudowywania UI 
wtyczek LV2
 Name:  suil
 Version:   0.10.2
-Release:   1
+Release:   2
 License:   ISC
 Group: Libraries
 Source0:   http://download.drobilla.net/%{name}-%{version}.tar.bz2


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/suil.git/commitdiff/d6671a04237bedb57035c553bd2ac64f77f5f0f4

___
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-19.0.4.tar.bz2

2019-05-13 Thread jajcus
Request by: jajcus


Files fetched: 1

STORED: 
https://gitlab.freedesktop.org/mesa/mesa/-/archive/mesa-19.0.4/mesa-mesa-19.0.4.tar.bz2
687794d79413f9b488de321725d44867  mesa-mesa-19.0.4.tar.bz2
Size: 11777691 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: 19.0.4

2019-05-13 Thread jajcus
commit b1e362ec0ec126aa71c75821661243c72890cf14
Author: Jacek Konieczny 
Date:   Mon May 13 14:17:54 2019 +0200

Version: 19.0.4

 Mesa.spec | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)
---
diff --git a/Mesa.spec b/Mesa.spec
index 7da2800..55843fd 100644
--- a/Mesa.spec
+++ b/Mesa.spec
@@ -53,14 +53,14 @@
 Summary:   Free OpenGL implementation
 Summary(pl.UTF-8): Wolnodostępna implementacja standardu OpenGL
 Name:  Mesa
-Version:   19.0.2
+Version:   19.0.4
 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:7c61a801311fb8d2f7b3cceb7b5cf308
 Source0:   
https://gitlab.freedesktop.org/mesa/mesa/-/archive/mesa-%{version}/mesa-mesa-%{version}.tar.bz2
-# Source0-md5: 4a5e81eba57f6888a5be8fba0b9aa843
+# Source0-md5: 687794d79413f9b488de321725d44867
 Patch0:nouveau_no_rtti.patch
 URL:   http://www.mesa3d.org/
 %{?with_opencl:BuildRequires:  clang-devel >= %{llvm_ver}}
@@ -1273,7 +1273,6 @@ rm -rf $RPM_BUILD_ROOT
 
 # not used externally
 %{__rm} $RPM_BUILD_ROOT%{_libdir}/libglapi.so
-%{__rm} $RPM_BUILD_ROOT%{_libdir}/vdpau/libvdpau_gallium.so
 
 %if %{without glvnd}
 # remove "OS ABI: Linux 2.4.20" tag, so private copies (nvidia or fglrx),


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/Mesa.git/commitdiff/b1e362ec0ec126aa71c75821661243c72890cf14

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


DISTFILES: hydrogen: hydrogen-1.0.0-beta1.tar.gz

2019-04-18 Thread jajcus
Request by: jajcus


Files fetched: 1

STORED: http://downloads.sourceforge.net/hydrogen/hydrogen-1.0.0-beta1.tar.gz
788540070d1874473fd1019e9de73f4b  hydrogen-1.0.0-beta1.tar.gz
Size: 13744583 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/hydrogen] Version: 1.0.0-beta1 (with Qt5 support)

2019-04-18 Thread jajcus
commit ad948d140465fd553f941ef845be60bc703edcae
Author: Jacek Konieczny 
Date:   Thu Apr 18 09:59:47 2019 +0200

Version: 1.0.0-beta1 (with Qt5 support)

 hydrogen.desktop.patch | 26 -
 hydrogen.spec  | 61 +-
 mandir.patch   | 10 -
 3 files changed, 46 insertions(+), 51 deletions(-)
---
diff --git a/hydrogen.spec b/hydrogen.spec
index 5b7493d..1809e12 100644
--- a/hydrogen.spec
+++ b/hydrogen.spec
@@ -1,35 +1,47 @@
 #
 # TODO:
 #  - fix localized manuals build
+#
+# Conditional build:
+%bcond_without tests   # build with tests
+
 
+%define beta   beta1
+%define rel1
 Summary:   Pattern based drum machine
 Summary(pl.UTF-8): Automat perkusyjny
 Name:  hydrogen
-Version:   0.9.7
-Release:   1
+Version:   1.0.0
+Release:   0.%{beta}.%{rel}
 License:   GPL v2, zlib (TinyXML Library)
 Group: X11/Applications/Sound
-Source0:   
http://downloads.sourceforge.net/hydrogen/%{name}-%{version}.tar.gz
-# Source0-md5: fcc5639144f74efdb70c76c8edfc4f64
-Patch0:%{name}.desktop.patch
-Patch1:mandir.patch
+Source0:   
http://downloads.sourceforge.net/hydrogen/%{name}-%{version}-%{beta}.tar.gz
+# Source0-md5: 788540070d1874473fd1019e9de73f4b
+Patch0:mandir.patch
 URL:   http://www.hydrogen-music.org/
 # BuildRequires:   portaudio-devel < 19
-BuildRequires: QtGui-devel >= 4.4.0
-BuildRequires: QtNetwork-devel >= 4.4.0
-BuildRequires: QtXml-devel >= 4.4.0
-BuildRequires: QtXmlPatterns-devel >= 4.4.0
+BuildRequires: Qt5Network-devel
+BuildRequires: Qt5Gui-devel
+BuildRequires: Qt5Core-devel
+BuildRequires: Qt5Widgets-devel
+BuildRequires: Qt5Xml-devel
+BuildRequires: Qt5XmlPatterns-devel
 BuildRequires: alsa-lib-devel >= 1.0.0
-BuildRequires: cmake >= 2.6
+BuildRequires: cmake >= 2.8.11
+%{?with_tests:BuildRequires:   cppunit-devel}
 BuildRequires: jack-audio-connection-kit-devel >= 0.103.0
+BuildRequires: ladspa-devel
 BuildRequires: lash-devel >= 0.5.0
 BuildRequires: libarchive-devel
+BuildRequires: liblo-devel
 BuildRequires: liblrdf-devel
 BuildRequires: libsndfile-devel >= 1.0.18
 BuildRequires: pkgconfig
 BuildRequires: portmidi-devel
-BuildRequires: qt4-build
-BuildRequires: qt4-linguist
+BuildRequires: pulseaudio-devel
+BuildRequires: rubberband-devel
+BuildRequires: qt5-build
+BuildRequires: qt5-linguist
 # for translated manuals
 #BuildRequires:gnome-doc-utils
 #BuildRequires:kde4-poxml
@@ -63,9 +75,8 @@ GNU/Linuksa. Celem programu jest umożliwienie w prosty i 
szybki sposób
 tworzenia paternów rytmicznych.
 
 %prep
-%setup -q
+%setup -q -n %{name}-%{version}-%{beta}
 %patch0 -p1
-%patch1 -p1
 
 %build
 mkdir build
@@ -76,15 +87,24 @@ cd build
-DWANT_ALSA=1 \
-DWANT_LIBARCHIVE=1 \
-DWANT_RUBBERBAND=1 \
-   -DWANT_OSS=1 \
+   -DWANT_OSS=0 \
-DWANT_PORTAUDIO=0 \
-DWANT_PORTMIDI=1 \
-DWANT_LASH=1 \
-DWANT_LRDF=1 \
-   -DWANT_COREAUDIO=1 \
-   -DWANT_COREMIDI=1
+   -DWANT_COREAUDIO=0 \
+   -DWANT_COREMIDI=0 \
+   -DWANT_LADSPA=1 \
+   -DLADSPA_INCLUDE_DIR=/usr/include \
+   -DLADSPA_LIBRARIES=%{_libdir}/ladspa
 
 %{__make}
+cd ..
+
+%if %{with tests}
+%{__make} -C build tests
+./build/src/tests/tests
+%endif
 
 %install
 rm -rf $RPM_BUILD_ROOT
@@ -99,7 +119,7 @@ rm -rf $RPM_BUILD_ROOT%{_includedir}/hydrogen
 rm -rf 
$RPM_BUILD_ROOT%{_datadir}/hydrogen/data/i18n/{stats.py,updateTranslations.sh}
 
 # clean up documentation
-rm -f 
$RPM_BUILD_ROOT%{_datadir}/hydrogen/data/doc/{Makefile,README.DOCUMENTATION.txt,TODO}
+rm -f $RPM_BUILD_ROOT%{_datadir}/hydrogen/data/doc/{Makefile,README.md,TODO}
 rm -f $RPM_BUILD_ROOT%{_datadir}/hydrogen/data/doc/*.{docbook,po,pot}
 rm -f $RPM_BUILD_ROOT%{_datadir}/hydrogen/data/doc/img/*.h2song
 rm -f $RPM_BUILD_ROOT%{_datadir}/hydrogen/data/i18n/*.ts
@@ -112,8 +132,8 @@ rm -rf $RPM_BUILD_ROOT
 %files
 %defattr(644,root,root,755)
 %doc AUTHORS ChangeLog README.txt
-%doc data/doc/README.DOCUMENTATION.txt
 %attr(755,root,root) %{_bindir}/*
+%doc data/doc/README.md
 %attr(755,root,root) %{_libdir}/libhydrogen-core-%{version}.so
 
 %dir %{_datadir}/hydrogen
@@ -151,6 +171,7 @@ rm -rf $RPM_BUILD_ROOT
 %lang(ru) %{_datadir}/hydrogen/data/i18n/%{name}.ru.qm
 %lang(sr) %{_datadir}/hydrogen/data/i18n/%{name}.sr.qm
 %lang(sv) %{_datadir}/hydrogen/data/i18n/%{name}.sv.qm
+%lang(uk) %{_datadir}/hydrogen/data/i18n/%{name}.uk.qm
 
 %{_mandir}/man1/hydrogen.1*
 %{_datadir}/appdata/*.xml
diff --git a/hydrogen.desktop.patch b/hydrogen.desktop.patch
deleted file mode 100644
index b2954dc..000
--- a/hydrogen.desktop.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-diff -dur hydrogen-0.9.7.orig/linux/hydrogen.desktop 
hydrogen-0.9.7/linux/hydrogen.desktop
 hydrogen-0.9.7.orig/linux/hydrogen.desktop 2016-11-05 09:22:50.0 
+0100
-+++ hydrogen-0.9.7/linux/hydrogen.desktop  

DISTFILES: suil: suil-0.10.2.tar.bz2

2019-04-17 Thread jajcus
Request by: jajcus


Files fetched: 1

STORED: http://download.drobilla.net/suil-0.10.2.tar.bz2
e92d656b5faf999226642cdbe595976d  suil-0.10.2.tar.bz2
Size: 334948 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/suil] Version: 0.10.2

2019-04-17 Thread jajcus
commit ae4c37bae3454a4ddd1652b5e75239c3cab08a3f
Author: Jacek Konieczny 
Date:   Wed Apr 17 11:09:19 2019 +0200

Version: 0.10.2

 suil.spec | 11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)
---
diff --git a/suil.spec b/suil.spec
index ca264dc..d7896c4 100644
--- a/suil.spec
+++ b/suil.spec
@@ -5,12 +5,12 @@
 Summary:   Lightweight C library for loading and wrapping LV2 plugin UIs
 Summary(pl.UTF-8): Lekka biblioteka C do ładowania i obudowywania UI 
wtyczek LV2
 Name:  suil
-Version:   0.8.4
+Version:   0.10.2
 Release:   1
 License:   ISC
 Group: Libraries
 Source0:   http://download.drobilla.net/%{name}-%{version}.tar.bz2
-# Source0-md5: 50598cc44f419f60805862272abe881c
+# Source0-md5: e92d656b5faf999226642cdbe595976d
 URL:   http://drobilla.net/software/suil/
 %{?with_qt4:BuildRequires: QtGui-devel >= 4.4.0}
 BuildRequires: Qt5Widgets-devel >= 5.1.0
@@ -104,16 +104,19 @@ rm -rf $RPM_BUILD_ROOT
 
 %files
 %defattr(644,root,root,755)
-%doc AUTHORS COPYING NEWS README
+%doc AUTHORS COPYING NEWS README.md
 %attr(755,root,root) %{_libdir}/libsuil-0.so.*.*.*
 %attr(755,root,root) %ghost %{_libdir}/libsuil-0.so.0
 %dir %{_libdir}/suil-0
 
 %files modules
 %defattr(644,root,root,755)
+%attr(755,root,root) %{_libdir}/suil-0/libsuil_gtk2_in_qt5.so
+%attr(755,root,root) %{_libdir}/suil-0/libsuil_qt5_in_gtk2.so
 %attr(755,root,root) %{_libdir}/suil-0/libsuil_x11_in_gtk2.so
+%attr(755,root,root) %{_libdir}/suil-0/libsuil_x11_in_gtk3.so
 %attr(755,root,root) %{_libdir}/suil-0/libsuil_x11_in_qt5.so
-%attr(755,root,root) %{_libdir}/suil-0/libsuil_gtk2_in_qt5.so
+%attr(755,root,root) %{_libdir}/suil-0/libsuil_x11.so
 %if %{with qt4}
 %attr(755,root,root) %{_libdir}/suil-0/libsuil_gtk2_in_qt4.so
 %attr(755,root,root) %{_libdir}/suil-0/libsuil_x11_in_qt4.so


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/suil.git/commitdiff/ae4c37bae3454a4ddd1652b5e75239c3cab08a3f

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


[packages/suil] disable Qt4 support

2019-04-17 Thread jajcus
commit a9e89817094ee0f16c643b1614f3bd21198d2e30
Author: Jacek Konieczny 
Date:   Wed Apr 17 11:05:21 2019 +0200

disable Qt4 support

it seems we won't be able to maintain Qt4 forever

 suil.spec | 14 ++
 1 file changed, 10 insertions(+), 4 deletions(-)
---
diff --git a/suil.spec b/suil.spec
index e14c1cb..ca264dc 100644
--- a/suil.spec
+++ b/suil.spec
@@ -1,3 +1,7 @@
+#
+# Conditional build:
+%bcond_withqt4 # Qt4 support
+
 Summary:   Lightweight C library for loading and wrapping LV2 plugin UIs
 Summary(pl.UTF-8): Lekka biblioteka C do ładowania i obudowywania UI 
wtyczek LV2
 Name:  suil
@@ -8,7 +12,7 @@ Group: Libraries
 Source0:   http://download.drobilla.net/%{name}-%{version}.tar.bz2
 # Source0-md5: 50598cc44f419f60805862272abe881c
 URL:   http://drobilla.net/software/suil/
-BuildRequires: QtGui-devel >= 4.4.0
+%{?with_qt4:BuildRequires: QtGui-devel >= 4.4.0}
 BuildRequires: Qt5Widgets-devel >= 5.1.0
 BuildRequires: gtk+2-devel >= 2:2.18.0
 BuildRequires: libstdc++-devel
@@ -48,7 +52,7 @@ Summary:  UI wrapper modules for suil library
 Summary(pl.UTF-8): Moduły obudowujące UI dla biblioteki suil
 Group: Libraries
 Requires:  %{name} = %{version}-%{release}
-Requires:  QtGui >= 4.0.0
+%{?with_qt4:Requires:  QtGui >= 4.0.0}
 Requires:  gtk+2 >= 2:2.18.0
 
 %description modules
@@ -108,11 +112,13 @@ rm -rf $RPM_BUILD_ROOT
 %files modules
 %defattr(644,root,root,755)
 %attr(755,root,root) %{_libdir}/suil-0/libsuil_x11_in_gtk2.so
-%attr(755,root,root) %{_libdir}/suil-0/libsuil_x11_in_qt4.so
 %attr(755,root,root) %{_libdir}/suil-0/libsuil_x11_in_qt5.so
-%attr(755,root,root) %{_libdir}/suil-0/libsuil_gtk2_in_qt4.so
 %attr(755,root,root) %{_libdir}/suil-0/libsuil_gtk2_in_qt5.so
+%if %{with qt4}
+%attr(755,root,root) %{_libdir}/suil-0/libsuil_gtk2_in_qt4.so
+%attr(755,root,root) %{_libdir}/suil-0/libsuil_x11_in_qt4.so
 %attr(755,root,root) %{_libdir}/suil-0/libsuil_qt4_in_gtk2.so
+%endif
 
 %files devel
 %defattr(644,root,root,755)


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/suil.git/commitdiff/a9e89817094ee0f16c643b1614f3bd21198d2e30

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


[packages/Carla] disable Qt4 support

2019-04-17 Thread jajcus
commit a50d08d290d21d3d04faaefa9ad8eaebd09843e2
Author: Jacek Konieczny 
Date:   Wed Apr 17 11:03:32 2019 +0200

disable Qt4 support

It probably won't be available in PLD any more

 Carla.spec | 3 +++
 1 file changed, 3 insertions(+)
---
diff --git a/Carla.spec b/Carla.spec
index c3fd4aa..d50eb3c 100644
--- a/Carla.spec
+++ b/Carla.spec
@@ -1,6 +1,7 @@
 #
 # Conditional build:
 %bcond_withzynaddsubfx # build with built-in ZynAddSubFx synth
+%bcond_withqt4 # Qt4 plugin wrapper
 
 # current revision of source/native-plugins/external git submodule
 %define plugins_rev   859bc98
@@ -21,8 +22,10 @@ URL: 
http://kxstudio.linuxaudio.org/Applications:Carla
 BuildRequires: Mesa-libGL-devel
 BuildRequires: Qt5Core-devel
 BuildRequires: Qt5Gui-devel
+%if %{with qt4}
 BuildRequires: QtCore-devel
 BuildRequires: QtGui-devel
+%endif
 BuildRequires: alsa-lib-devel
 BuildRequires: fftw3-devel
 BuildRequires: fltk-devel


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/Carla.git/commitdiff/a50d08d290d21d3d04faaefa9ad8eaebd09843e2

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


[packages/qt4] attempt to build with icu 64

2019-04-16 Thread jajcus
commit 10294a1b3545681cd7bf45599714b9d106c12945
Author: Jacek Konieczny 
Date:   Tue Apr 16 09:58:16 2019 +0200

attempt to build with icu 64

 qt4.spec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/qt4.spec b/qt4.spec
index f4381d1..b832e86 100644
--- a/qt4.spec
+++ b/qt4.spec
@@ -54,7 +54,7 @@
 %define_withsql1
 
%{!?with_sqlite3:%{!?with_sqlite:%{!?with_ibase:%{!?with_mysql:%{!?with_pgsql:%{!?with_odbc:%{!?with_oci:%undefine
 _withsql}}}
 
-%defineicu_abi 59
+%defineicu_abi 64
 %definenext_icu_abi%(echo $((%{icu_abi} + 1)))
 
 Summary:   The Qt GUI application framework


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/qt4.git/commitdiff/10294a1b3545681cd7bf45599714b9d106c12945

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


DISTFILES: Carla: Carla-2.0.0.tar.gz Carla-Plugins-859bc98.tar.gz

2019-04-15 Thread jajcus
Request by: jajcus


Files fetched: 2

STORED: https://github.com/falkTX/Carla/archive/v2.0.0/Carla-2.0.0.tar.gz
48fb7b0b8ee2e451798767ae779e8483  Carla-2.0.0.tar.gz
Size: 5257441 bytes
STORED: 
https://github.com/falkTX/Carla-Plugins/archive/859bc98/Carla-Plugins-859bc98.tar.gz
d1f05c048b8c813d7768ef40fc9badaa  Carla-Plugins-859bc98.tar.gz
Size: 2766031 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/Carla] Version: 2.0.0

2019-04-15 Thread jajcus
commit fa7f86238957d8709666d11cafa3b34304c380c5
Author: Jacek Konieczny 
Date:   Mon Apr 15 10:52:36 2019 +0200

Version: 2.0.0

The built-in ZynAddSubFx has been disabled, won't build in this version
and the external plugins (including Zyn-Fusion) are perfectly usable.

 Carla.spec | 38 --
 1 file changed, 24 insertions(+), 14 deletions(-)
---
diff --git a/Carla.spec b/Carla.spec
index 42474e0..c3fd4aa 100644
--- a/Carla.spec
+++ b/Carla.spec
@@ -1,22 +1,20 @@
-# git tag is 1.9.12, but release name is 2.0-RC2
-# https://github.com/falkTX/Carla/releases/tag/v1.9.12
-%definetag v1.9.12
+#
+# Conditional build:
+%bcond_withzynaddsubfx # build with built-in ZynAddSubFx synth
 
 # current revision of source/native-plugins/external git submodule
-%define plugins_rev  98723d7
+%define plugins_rev   859bc98
 
-%definebetarc2
-%definerel 3
 Summary:   Audio plugin host
 Name:  Carla
-Version:   2.0
-Release:   0.%{beta}.%{rel}
+Version:   2.0.0
+Release:   1
 License:   GPL v2+
 Group: Applications
-Source0:   
https://github.com/falkTX/Carla/archive/%{tag}/%{name}-%{tag}.tar.gz
-# Source0-md5: 11b75d313629dbf20f71e9e36ba8a0c0
+Source0:   
https://github.com/falkTX/Carla/archive/v%{version}/%{name}-%{version}.tar.gz
+# Source0-md5: 48fb7b0b8ee2e451798767ae779e8483
 Source1:   
https://github.com/falkTX/Carla-Plugins/archive/%{plugins_rev}/Carla-Plugins-%{plugins_rev}.tar.gz
-# Source1-md5: b8bb65277e724d022b7ed54ead4bc286
+# Source1-md5: d1f05c048b8c813d7768ef40fc9badaa
 Patch0:pypkgdir.patch
 Patch1:soundfonts_path.patch
 URL:   http://kxstudio.linuxaudio.org/Applications:Carla
@@ -66,7 +64,7 @@ Header files for %{name} library.
 Pliki nagłówkowe biblioteki %{name}.
 
 %prep
-%setup -q -n %{name}-1.9.12 -a 1
+%setup -q -n %{name}-%{version} -a 1
 
 rmdir source/native-plugins/external
 mv Carla-Plugins-%{plugins_rev}* source/native-plugins/external
@@ -79,6 +77,10 @@ mv Carla-Plugins-%{plugins_rev}* 
source/native-plugins/external
 %{__make} -j1 features \
EXTERNAL_PLUGINS=true \
SKIP_STRIPPING=true \
+%if %{without zynaddsubfx}
+   SKIP_ZYN_SYNTH=true \
+   HAVE_ZYN_DEPS=false \
+%endif
CC="%{__cc}" \
CXX="%{__cxx}" \
CFLAGS="%{rpmcflags}" \
@@ -94,6 +96,10 @@ mv Carla-Plugins-%{plugins_rev}* 
source/native-plugins/external
--trace \
EXTERNAL_PLUGINS=true \
SKIP_STRIPPING=true \
+%if %{without zynaddsubfx}
+   SKIP_ZYN_SYNTH=true \
+   HAVE_ZYN_DEPS=false \
+%endif
CC="%{__cc}" \
CXX="%{__cxx}" \
CFLAGS="%{rpmcflags}" \
@@ -109,6 +115,10 @@ mv Carla-Plugins-%{plugins_rev}* 
source/native-plugins/external
 rm -rf $RPM_BUILD_ROOT
 
 %{__make} install \
+%if %{without zynaddsubfx}
+   SKIP_ZYN_SYNTH=true \
+   HAVE_ZYN_DEPS=false \
+%endif
PREFIX=%{_prefix} \
LIBDIR=%{_libdir} \
PYPKGDIR=%{py3_sitescriptdir} \
@@ -163,7 +173,7 @@ rm -rf $RPM_BUILD_ROOT
 %dir %{_datadir}/carla
 %dir %{_datadir}/carla/resources
 %{_datadir}/carla/resources/widgets
-%{_datadir}/carla/resources/zynaddsubfx
+%{?with_zynaddsubfx:%{_datadir}/carla/resources/zynaddsubfx}
 %{_datadir}/carla/resources/*.py
 %{_datadir}/carla/resources/__pycache__
 %attr(755,root,root) %{_datadir}/carla/carla-control
@@ -174,7 +184,7 @@ rm -rf $RPM_BUILD_ROOT
 %attr(755,root,root) %{_datadir}/carla/resources/carla-plugin-patchbay
 %attr(755,root,root) %{_datadir}/carla/resources/midipattern-ui
 %attr(755,root,root) %{_datadir}/carla/resources/notes-ui
-%attr(755,root,root) %{_datadir}/carla/resources/zynaddsubfx-ui
+%{?with_zynaddsubfx:%attr(755,root,root) 
%{_datadir}/carla/resources/zynaddsubfx-ui}
 %{_datadir}/carla/widgets
 %{_datadir}/carla/*.py
 %{_datadir}/carla/__pycache__


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/Carla.git/commitdiff/fa7f86238957d8709666d11cafa3b34304c380c5

___
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-19.0.2.tar.bz2

2019-04-11 Thread jajcus
Request by: jajcus


Files fetched: 1

STORED: 
https://gitlab.freedesktop.org/mesa/mesa/-/archive/mesa-19.0.2/mesa-mesa-19.0.2.tar.bz2
4a5e81eba57f6888a5be8fba0b9aa843  mesa-mesa-19.0.2.tar.bz2
Size: 11775066 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: 19.0.2

2019-04-11 Thread jajcus
commit a738a7c005f305758cbc62998b668c58be0d76ae
Author: Jacek Konieczny 
Date:   Thu Apr 11 10:36:49 2019 +0200

Version: 19.0.2

 Mesa.spec | 9 +
 1 file changed, 5 insertions(+), 4 deletions(-)
---
diff --git a/Mesa.spec b/Mesa.spec
index 833591a..53f1624 100644
--- a/Mesa.spec
+++ b/Mesa.spec
@@ -24,12 +24,12 @@
 # (until they start to be somehow versioned themselves)
 %defineglapi_ver   7.1.0
 # other packages
-%definelibdrm_ver  2.4.95
+%definelibdrm_ver  2.4.97
 %definedri2proto_ver   2.8
 %defineglproto_ver 1.4.14
 %definezlib_ver1.2.8
 %definewayland_ver 1.11
-%definellvm_ver6.0.0
+%definellvm_ver7.0.0
 %definegcc_ver 6:4.8.0
 
 %if %{without gallium}
@@ -53,14 +53,14 @@
 Summary:   Free OpenGL implementation
 Summary(pl.UTF-8): Wolnodostępna implementacja standardu OpenGL
 Name:  Mesa
-Version:   18.3.5
+Version:   19.0.2
 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:7c61a801311fb8d2f7b3cceb7b5cf308
 Source0:   
https://gitlab.freedesktop.org/mesa/mesa/-/archive/mesa-%{version}/mesa-mesa-%{version}.tar.bz2
-# Source0-md5: c58f1c90430c03cb3631d3d0f228f7d0
+# Source0-md5: 4a5e81eba57f6888a5be8fba0b9aa843
 Patch0:nouveau_no_rtti.patch
 URL:   http://www.mesa3d.org/
 %{?with_opencl:BuildRequires:  clang-devel >= %{llvm_ver}}
@@ -1270,6 +1270,7 @@ rm -rf $RPM_BUILD_ROOT
 
 # not used externally
 %{__rm} $RPM_BUILD_ROOT%{_libdir}/libglapi.so
+%{__rm} $RPM_BUILD_ROOT%{_libdir}/vdpau/libvdpau_gallium.so
 
 %if %{without glvnd}
 # remove "OS ABI: Linux 2.4.20" tag, so private copies (nvidia or fglrx),


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/Mesa.git/commitdiff/a738a7c005f305758cbc62998b668c58be0d76ae

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


  1   2   3   4   5   6   7   8   9   10   >