[packages/lasso] - Obsoletes for withdrawn java and python (2) packages

2023-10-25 Thread qboosh
commit 013c5598e93f714a71d4c4464f280d37ab22912d
Author: Jakub Bogusz 
Date:   Thu Oct 26 06:34:26 2023 +0200

- Obsoletes for withdrawn java and python (2) packages

 lasso.spec | 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)
---
diff --git a/lasso.spec b/lasso.spec
index c716b68..6c30e5a 100644
--- a/lasso.spec
+++ b/lasso.spec
@@ -24,7 +24,7 @@ License:  GPL v2+
 Group: Libraries
 Source0:   https://dev.entrouvert.org/lasso/%{name}-%{version}.tar.gz
 # Source0-md5: ad2e167973cc1c21cd16329bfbcd3d16
-URL:   http://lasso.entrouvert.org/
+URL:   https://lasso.entrouvert.org/
 BuildRequires: autoconf >= 2.53
 BuildRequires: automake >= 1:1.11
 %{?with_tests:BuildRequires:   check-devel}
@@ -61,6 +61,9 @@ BuildRequires:rpm-pythonprov
 Requires:  glib2 >= 1:2.17.0
 Requires:  xmlsec1 >= 1.2.6
 Requires:  xmlsec1-openssl >= 1.2.6
+%if %{without java}
+Obsoletes: java-lasso < %{version}-%{release}
+%endif
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
@@ -150,6 +153,7 @@ Summary:Liberty Alliance Single Sign On (lasso) Python 
bindings
 Summary(pl.UTF-8): Wiązania Pythona do Liberty Alliance Single Sign On 
(lasso)
 Group: Libraries/Python
 Requires:  %{name} = %{version}-%{release}
+Obsoletes: python-lasso < 2.7
 
 %description -n python3-%{name}
 Python language bindings for the lasso (Liberty Alliance Single Sign


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/lasso.git/commitdiff/013c5598e93f714a71d4c4464f280d37ab22912d

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


[packages/fox] - updated x32 patch

2023-10-25 Thread qboosh
commit 9e091b222b92496de83bc9d75e787e1b4df9527b
Author: Jakub Bogusz 
Date:   Thu Oct 26 06:29:58 2023 +0200

- updated x32 patch

 fox.spec  |  2 +-
 x32.patch | 38 +++---
 2 files changed, 20 insertions(+), 20 deletions(-)
---
diff --git a/fox.spec b/fox.spec
index 3d19e6c..96e78a5 100644
--- a/fox.spec
+++ b/fox.spec
@@ -9,7 +9,7 @@ Summary(pl.UTF-8):  FOX - toolkit graficzny w C++
 Name:  fox
 # NOTE: after switching to 1.8.x keep stable (1.8.x) on HEAD and devel (1.9.x) 
on DEVEL
 Version:   1.7.84
-Release:   0.1
+Release:   1
 License:   LGPL v3+ with relinking exemption
 Group: X11/Libraries
 Source0:   http://fox-toolkit.org/ftp/%{name}-%{version}.tar.gz
diff --git a/x32.patch b/x32.patch
index e5efb31..2da05d7 100644
--- a/x32.patch
+++ b/x32.patch
@@ -1,38 +1,38 @@
 fox-1.7.57/lib/FXAtomic.cpp.orig   2017-02-06 05:34:36.826461208 +0100
-+++ fox-1.7.57/lib/FXAtomic.cpp2017-02-06 05:40:53.793123570 +0100
-@@ -404,7 +404,7 @@
+--- fox-1.7.84/lib/FXAtomic.cpp.orig   2023-06-14 06:50:33.0 +0200
 fox-1.7.84/lib/FXAtomic.cpp2023-10-26 06:19:01.695280795 +0200
+@@ -721,7 +721,7 @@ FXptr atomicSet(volatile FXptr* ptr,FXpt
return result;
  #elif (defined(WIN32) && (_MSC_VER >= 1500))
return (FXptr)_InterlockedExchange((LONG*)ptr,(LONG)v);
 -#elif (defined(HAVE_INLINE_ASSEMBLY) && defined(__i386__))
-+#elif (defined(HAVE_INLINE_ASSEMBLY) && (defined(__i386__) || 
(defined(__x86_64) && defined(__ILP32__
++#elif (defined(HAVE_INLINE_ASSEMBLY) && (defined(__i386__) || 
(defined(__x86_64__) && defined(__ILP32__
FXptr ret=v;
__asm__ __volatile__("xchgl %0, (%1)\n\t" : "=r"(ret) : "r"(ptr), "0"(ret) 
: "memory", "cc");
return ret;
-@@ -429,7 +429,7 @@
-   return (FXptr)_InterlockedExchangeAdd64((LONGLONG*)ptr,(LONGLONG)v);
+@@ -746,7 +746,7 @@ FXptr atomicAdd(volatile FXptr* ptr,FXiv
+   return (FXptr)_InterlockedExchangeAdd64((volatile 
LONGLONG*)ptr,(LONGLONG)v);
  #elif (defined(WIN32) && (_MSC_VER >= 1600))
-   return (FXptr)_InterlockedExchangeAdd((LONG*)ptr,(LONG)v);
+   return (FXptr)_InterlockedExchangeAdd((volatile LONG*)ptr,(LONG)v);
 -#elif (defined(HAVE_INLINE_ASSEMBLY) && defined(__i386__))
-+#elif (defined(HAVE_INLINE_ASSEMBLY) && (defined(__i386__) || 
(defined(__x86_64) && defined(__ILP32__
-   register FXptr ret=(void*)v;
++#elif (defined(HAVE_INLINE_ASSEMBLY) && (defined(__i386__) || 
(defined(__x86_64__) && defined(__ILP32__
+   FXptr ret=(void*)v;
__asm__ __volatile__ ("lock\n\t"
  "xaddl %0, (%1)\n\t" : "=r"(ret) : "r"(ptr), "0"(ret) 
: "memory", "cc");
-@@ -455,7 +455,7 @@
-   return 
(FXptr)_InterlockedCompareExchange64((LONGLONG*)ptr,(LONGLONG)v,(LONGLONG)expect);
+@@ -772,7 +772,7 @@ FXptr atomicCas(volatile FXptr* ptr,FXpt
+   return (FXptr)_InterlockedCompareExchange64((volatile 
LONGLONG*)ptr,(LONGLONG)v,(LONGLONG)expect);
  #elif defined(WIN32) && (MSC_VER >=1500)
-   return (FXptr)_InterlockedCompareExchange((LONG*)ptr,(LONG)v,(LONG)expect);
+   return (FXptr)_InterlockedCompareExchange((volatile 
LONG*)ptr,(LONG)v,(LONG)expect);
 -#elif (defined(HAVE_INLINE_ASSEMBLY) && defined(__i386__))
-+#elif (defined(HAVE_INLINE_ASSEMBLY) && (defined(__i386__) || 
(defined(__x86_64) && defined(__ILP32__
-   register FXptr ret;
++#elif (defined(HAVE_INLINE_ASSEMBLY) && (defined(__i386__) || 
(defined(__x86_64__) && defined(__ILP32__
+   FXptr ret;
__asm__ __volatile__("lock\n\t"
 "cmpxchgl %2, (%1)\n\t" : "=a"(ret) : "r"(ptr), 
"r"(v), "a"(expect) : "memory", "cc");
-@@ -483,7 +483,7 @@
-   return 
(_InterlockedCompareExchange64((LONGLONG*)ptr,(LONGLONG)v,(LONGLONG)expect)==(LONGLONG)expect);
+@@ -800,7 +800,7 @@ FXbool atomicBoolCas(volatile FXptr* ptr
+   return (_InterlockedCompareExchange64((volatile 
LONGLONG*)ptr,(LONGLONG)v,(LONGLONG)expect)==(LONGLONG)expect);
  #elif defined(WIN32) && (MSC_VER >=1500)
-   return 
(_InterlockedCompareExchange((LONG*)ptr,(LONG)v,(LONG)expect)==(LONG)expect);
+   return (_InterlockedCompareExchange((volatile 
LONG*)ptr,(LONG)v,(LONG)expect)==(LONG)expect);
 -#elif (defined(HAVE_INLINE_ASSEMBLY) && defined(__i386__))
-+#elif (defined(HAVE_INLINE_ASSEMBLY) && (defined(__i386__) || 
(defined(__x86_64) && defined(__ILP32__
-   register FXbool ret;
++#elif (defined(HAVE_INLINE_ASSEMBLY) && (defined(__i386__) || 
(defined(__x86_64__) && defined(__ILP32__
+   FXbool ret;
__asm__ __volatile__ ("lock\n\t"
  "cmpxchgl %2, (%1)\n\t"


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/fox.git/commitdiff/9e091b222b92496de83bc9d75e787e1b4df9527b

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


DISTFILES: simdjson: simdjson-3.4.0.tar.gz

2023-10-25 Thread atler
Request by: atler


Files fetched: 1

STORED: 
https://github.com/simdjson/simdjson/archive/v3.4.0/simdjson-3.4.0.tar.gz
d99682e3b554c0922241dbc35f2e10ff  simdjson-3.4.0.tar.gz
Size: 2293894 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/simdjson] up to 3.4.0 (new soname)

2023-10-25 Thread atler
commit e7598a564b0638d0288a7c76df1fd3c3306a60c1
Author: Jan Palus 
Date:   Thu Oct 26 01:47:01 2023 +0200

up to 3.4.0 (new soname)

 simdjson.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/simdjson.spec b/simdjson.spec
index 9fb1d9a..7976aae 100644
--- a/simdjson.spec
+++ b/simdjson.spec
@@ -1,12 +1,12 @@
 Summary:   Parsing gigabytes of JSON per second
 Name:  simdjson
-Version:   3.3.0
+Version:   3.4.0
 Release:   1
 License:   Apache v2.0
 Group: Libraries
 #Source0Download: https://github.com/simdjson/simdjson/releases
 Source0:   
https://github.com/simdjson/simdjson/archive/v%{version}/%{name}-%{version}.tar.gz
-# Source0-md5: 2bcf5fc9c6cb974f906f9cf98f4638e9
+# Source0-md5: d99682e3b554c0922241dbc35f2e10ff
 URL:   https://simdjson.org
 BuildRequires: cmake >= 3.14
 BuildRequires: libstdc++-devel >= 6:5
@@ -50,7 +50,7 @@ rm -rf $RPM_BUILD_ROOT
 %defattr(644,root,root,755)
 %doc AUTHORS CONTRIBUTING.md CONTRIBUTORS HACKING.md README.md
 %attr(755,root,root) %{_libdir}/libsimdjson.so.*.*.*
-%attr(755,root,root) %ghost %{_libdir}/libsimdjson.so.16
+%attr(755,root,root) %ghost %{_libdir}/libsimdjson.so.17
 
 %files devel
 %defattr(644,root,root,755)


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/simdjson.git/commitdiff/e7598a564b0638d0288a7c76df1fd3c3306a60c1

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


DISTFILES: pcsc-driver-ccid: ccid-1.5.3.tar.bz2

2023-10-25 Thread atler
Request by: atler


Files fetched: 1

STORED: https://ccid.apdu.fr/files/ccid-1.5.3.tar.bz2
98a01222e536796ead80dc3db2c6484b  ccid-1.5.3.tar.bz2
Size: 706172 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/pcsc-driver-ccid] up to 1.5.3

2023-10-25 Thread atler
commit b37123cd6199087c0cb57672fa531e8a8a9f1fde
Author: Jan Palus 
Date:   Thu Oct 26 01:28:10 2023 +0200

up to 1.5.3

 pcsc-driver-ccid.spec | 6 --
 1 file changed, 4 insertions(+), 2 deletions(-)
---
diff --git a/pcsc-driver-ccid.spec b/pcsc-driver-ccid.spec
index c4ea102..0a42307 100644
--- a/pcsc-driver-ccid.spec
+++ b/pcsc-driver-ccid.spec
@@ -1,18 +1,20 @@
 Summary:   Generic USB CCID (Chip/Smart Card Interface Devices) driver
 Summary(pl.UTF-8): Ogólny sterownik USB CCID (Chip/Smart Card Interface 
Devices)
 Name:  pcsc-driver-ccid
-Version:   1.5.2
+Version:   1.5.3
 Release:   1
 License:   LGPL v2.1+
 Group: Libraries
 Source0:   https://ccid.apdu.fr/files/ccid-%{version}.tar.bz2
-# Source0-md5: bc4ebec11e1a7fb268eeff368e6ff037
+# Source0-md5: 98a01222e536796ead80dc3db2c6484b
 URL:   https://ccid.apdu.fr/
+BuildRequires: flex
 BuildRequires: libusb-devel >= 1.0.9
 BuildRequires: pcsc-lite-devel >= 1.8.3
 BuildRequires: perl-base
 BuildRequires: pkgconfig
 BuildRequires: rpmbuild(macros) >= 1.583
+BuildRequires: zlib-devel >= 1.2.3.1
 Requires:  libusb >= 1.0.9
 Requires:  pcsc-lite >= 1.8.3
 Provides:  ccid = %{version}-%{release}


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/pcsc-driver-ccid.git/commitdiff/b37123cd6199087c0cb57672fa531e8a8a9f1fde

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


DISTFILES: glib2: glib-2.78.1.tar.xz

2023-10-25 Thread atler
Request by: atler


Files fetched: 1

STORED: https://download.gnome.org/sources/glib/2.78/glib-2.78.1.tar.xz
a5e8bdfa61b4b2dfb730560e66f978d6  glib-2.78.1.tar.xz
Size: 5320740 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/glib2] up to 2.78.1

2023-10-25 Thread atler
commit 4d7f59fe7cd250f646b1b5b89b002492ab20cc4a
Author: Jan Palus 
Date:   Thu Oct 26 01:20:53 2023 +0200

up to 2.78.1

 glib2.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/glib2.spec b/glib2.spec
index 9cfcfb2..aa3da22 100644
--- a/glib2.spec
+++ b/glib2.spec
@@ -21,13 +21,13 @@ Summary(pt_BR.UTF-8):   Conjunto de funções gráficas 
utilitárias
 Summary(tr.UTF-8): Yararlı ufak yordamlar kitaplığı
 Summary(zh_CN.UTF-8):  实用工具函数库
 Name:  glib2
-Version:   2.78.0
+Version:   2.78.1
 Release:   1
 Epoch: 1
 License:   LGPL v2+
 Group: Libraries
 Source0:   
https://download.gnome.org/sources/glib/2.78/glib-%{version}.tar.xz
-# Source0-md5: fbddfac52807161670a11023965f1176
+# Source0-md5: a5e8bdfa61b4b2dfb730560e66f978d6
 Patch0:%{name}-python_shebang.patch
 Patch1:gtk-doc-build.patch
 URL:   https://www.gtk.org/


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/glib2.git/commitdiff/4d7f59fe7cd250f646b1b5b89b002492ab20cc4a

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


DISTFILES: newt: newt-0.52.24.tar.gz

2023-10-25 Thread atler
Request by: atler


Files fetched: 1

STORED: https://releases.pagure.org/newt/newt-0.52.24.tar.gz
9a0630e2f59eaa3037aec94989c36c4a  newt-0.52.24.tar.gz
Size: 176693 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/newt] up to 0.52.24

2023-10-25 Thread atler
commit b06e9fd6761c6c7ce41afca34f31c032b4da62b6
Author: Jan Palus 
Date:   Thu Oct 26 01:19:41 2023 +0200

up to 0.52.24

 newt.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/newt.spec b/newt.spec
index c0c2826..3a4d6e5 100644
--- a/newt.spec
+++ b/newt.spec
@@ -16,12 +16,12 @@ Summary(fr.UTF-8):  Not Erik's Windowing Toolkit - 
fenêtrage en mode texte avec
 Summary(pl.UTF-8): Not Erik's Windowing Toolkit - okna w trybie tekstowym 
ze slangiem
 Summary(tr.UTF-8): Not Erik's Windowing Toolkit - metin kipi pencereleme 
sistemi
 Name:  newt
-Version:   0.52.23
+Version:   0.52.24
 Release:   1
 License:   LGPL v2
 Group: Libraries
 Source0:   https://releases.pagure.org/newt/%{name}-%{version}.tar.gz
-# Source0-md5: 70aefeff0f3e9444a69dbdae9a931442
+# Source0-md5: 9a0630e2f59eaa3037aec94989c36c4a
 Patch0:%{name}-0.51.6-if1close.patch
 Patch1:%{name}-nopython.patch
 Patch2:%{name}-make.patch


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/newt.git/commitdiff/b06e9fd6761c6c7ce41afca34f31c032b4da62b6

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


[packages/newt] BR: python*-modules for %py*_*comp

2023-10-25 Thread atler
commit c800e1717f6d4c8f39635b821e7ae3f0a9a32cd9
Author: Jan Palus 
Date:   Thu Oct 26 01:16:51 2023 +0200

BR: python*-modules for %py*_*comp

 newt.spec | 2 ++
 1 file changed, 2 insertions(+)
---
diff --git a/newt.spec b/newt.spec
index bb343b9..c0c2826 100644
--- a/newt.spec
+++ b/newt.spec
@@ -35,7 +35,9 @@ BuildRequires:lynx
 BuildRequires: gettext-tools
 BuildRequires: popt-devel
 %{?with_python2:BuildRequires: python-devel >= 1:2.5}
+%{?with_python2:BuildRequires: python-modules >= 1:2.5}
 %{?with_python3:BuildRequires: python3-devel >= 1:3.2}
+%{?with_python3:BuildRequires: python3-modules >= 1:3.2}
 BuildRequires: rpm-pythonprov
 BuildRequires: slang-devel >= 2.0.0
 %{?with_tcl:BuildRequires: tcl-devel >= 8.5}


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/newt.git/commitdiff/b06e9fd6761c6c7ce41afca34f31c032b4da62b6

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


DISTFILES: thunderbird: thunderbird-115.4.1.source.tar.xz af.xpi ar.xpi ast.xpi be.xpi bg.xpi br.xpi ca.xpi cak.xpi cs.xpi ...

2023-10-25 Thread atler
Request by: atler


Files fetched: 67

STORED: 
https://releases.mozilla.org/pub/thunderbird/releases/115.4.1/source/thunderbird-115.4.1.source.tar.xz
2a21d248686c589c79f6871c9098f786  thunderbird-115.4.1.source.tar.xz
Size: 537988108 bytes
STORED: 
https://releases.mozilla.org/pub/thunderbird/releases/115.4.1/linux-x86_64/xpi/af.xpi
1e52cde325070f5ce3705118b496b084  af.xpi
Size: 542156 bytes
STORED: 
https://releases.mozilla.org/pub/thunderbird/releases/115.4.1/linux-x86_64/xpi/ar.xpi
03764ddef4c2a14a7c198a34aeb03196  ar.xpi
Size: 654728 bytes
STORED: 
https://releases.mozilla.org/pub/thunderbird/releases/115.4.1/linux-x86_64/xpi/ast.xpi
2e82916d59b044d292d8dbb3a717203d  ast.xpi
Size: 561119 bytes
STORED: 
https://releases.mozilla.org/pub/thunderbird/releases/115.4.1/linux-x86_64/xpi/be.xpi
b7e7ac89da0ed52e597f0fe0a08963f6  be.xpi
Size: 694085 bytes
STORED: 
https://releases.mozilla.org/pub/thunderbird/releases/115.4.1/linux-x86_64/xpi/bg.xpi
3a82d0227210ad32f7f09723f95efc23  bg.xpi
Size: 681251 bytes
STORED: 
https://releases.mozilla.org/pub/thunderbird/releases/115.4.1/linux-x86_64/xpi/br.xpi
f76dfafcaaea264b0404c64aa39b907c  br.xpi
Size: 626936 bytes
STORED: 
https://releases.mozilla.org/pub/thunderbird/releases/115.4.1/linux-x86_64/xpi/ca.xpi
2957fc05e40fcde34ffbcac2c489432d  ca.xpi
Size: 670651 bytes
STORED: 
https://releases.mozilla.org/pub/thunderbird/releases/115.4.1/linux-x86_64/xpi/cak.xpi
af9276c636f90ce8342b319ba1654673  cak.xpi
Size: 657816 bytes
STORED: 
https://releases.mozilla.org/pub/thunderbird/releases/115.4.1/linux-x86_64/xpi/cs.xpi
a6c4cd7a7e1f2110df3510d3098ce348  cs.xpi
Size: 733800 bytes
STORED: 
https://releases.mozilla.org/pub/thunderbird/releases/115.4.1/linux-x86_64/xpi/cy.xpi
446d34265b1c0082f15b82e17afa0aca  cy.xpi
Size: 703267 bytes
STORED: 
https://releases.mozilla.org/pub/thunderbird/releases/115.4.1/linux-x86_64/xpi/da.xpi
437ecc2664051f138ea4cd0524723cd1  da.xpi
Size: 690755 bytes
STORED: 
https://releases.mozilla.org/pub/thunderbird/releases/115.4.1/linux-x86_64/xpi/de.xpi
36e93e6369665bb1eeaa9a171d1a3f2c  de.xpi
Size: 720205 bytes
STORED: 
https://releases.mozilla.org/pub/thunderbird/releases/115.4.1/linux-x86_64/xpi/dsb.xpi
426aa67b8fbd17f3826acf023b40d507  dsb.xpi
Size: 737298 bytes
STORED: 
https://releases.mozilla.org/pub/thunderbird/releases/115.4.1/linux-x86_64/xpi/el.xpi
b38156cc8be4a8d86d942dbee7431d0d  el.xpi
Size: 836692 bytes
STORED: 
https://releases.mozilla.org/pub/thunderbird/releases/115.4.1/linux-x86_64/xpi/en-CA.xpi
b63ec2436a800e930f6bc22f99552471  en-CA.xpi
Size: 656172 bytes
STORED: 
https://releases.mozilla.org/pub/thunderbird/releases/115.4.1/linux-x86_64/xpi/en-GB.xpi
419ad42c32263e7f855defde84e5bdec  en-GB.xpi
Size: 661452 bytes
STORED: 
https://releases.mozilla.org/pub/thunderbird/releases/115.4.1/linux-x86_64/xpi/en-US.xpi
8a23b96db398b7c59fede55aa393b208  en-US.xpi
Size: 649960 bytes
STORED: 
https://releases.mozilla.org/pub/thunderbird/releases/115.4.1/linux-x86_64/xpi/es-AR.xpi
a8b66559b92c812c06a39733fdaa25dd  es-AR.xpi
Size: 713035 bytes
STORED: 
https://releases.mozilla.org/pub/thunderbird/releases/115.4.1/linux-x86_64/xpi/es-ES.xpi
24bf539a08540253f12de6741932deb7  es-ES.xpi
Size: 675615 bytes
STORED: 
https://releases.mozilla.org/pub/thunderbird/releases/115.4.1/linux-x86_64/xpi/es-MX.xpi
1ddf8f63d453ad035cb47820f4ebed59  es-MX.xpi
Size: 710142 bytes
STORED: 
https://releases.mozilla.org/pub/thunderbird/releases/115.4.1/linux-x86_64/xpi/et.xpi
32ff0f6569be1458b3e074e18137fd82  et.xpi
Size: 671821 bytes
STORED: 
https://releases.mozilla.org/pub/thunderbird/releases/115.4.1/linux-x86_64/xpi/eu.xpi
43fc40af62fbd4b3e731b34c1192dcc3  eu.xpi
Size: 692553 bytes
STORED: 
https://releases.mozilla.org/pub/thunderbird/releases/115.4.1/linux-x86_64/xpi/fi.xpi
823104bfaaa96760ad9841e8d6c67454  fi.xpi
Size: 690415 bytes
STORED: 
https://releases.mozilla.org/pub/thunderbird/releases/115.4.1/linux-x86_64/xpi/fr.xpi
2caceecf992be84a61b221177baaf2c0  fr.xpi
Size: 725271 bytes
STORED: 
https://releases.mozilla.org/pub/thunderbird/releases/115.4.1/linux-x86_64/xpi/fy-NL.xpi
ac86bad41995690a981d9b0b1868bf66  fy-NL.xpi
Size: 707840 bytes
STORED: 
https://releases.mozilla.org/pub/thunderbird/releases/115.4.1/linux-x86_64/xpi/ga-IE.xpi
a7572d5bb5b3f9de55aee9c48eae31dc  ga-IE.xpi
Size: 602152 bytes
STORED: 
https://releases.mozilla.org/pub/thunderbird/releases/115.4.1/linux-x86_64/xpi/gd.xpi
b1ca2e5bd2daae6258fb8a569fa6b6d0  gd.xpi
Size: 702994 bytes
STORED: 

DISTFILES: mozilla-thunderbird-bin: thunderbird-115.4.1.tar.bz2 thunderbird64-115.4.1.tar.bz2

2023-10-25 Thread atler
Request by: atler


Files fetched: 2

STORED: 
https://ftp.mozilla.org/pub/thunderbird/releases/115.4.1/linux-i686/en-US/thunderbird-115.4.1.tar.bz2?/thunderbird-115.4.1.tar.bz2
32bbf273435cfdee94afbc86ebc2eae1  thunderbird-115.4.1.tar.bz2
Size: 82985869 bytes
STORED: 
https://ftp.mozilla.org/pub/thunderbird/releases/115.4.1/linux-x86_64/en-US/thunderbird-115.4.1.tar.bz2?/thunderbird64-115.4.1.tar.bz2
ce1f1dec5b71e5480659722674cce9f7  thunderbird64-115.4.1.tar.bz2
Size: 80598415 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/mozilla-thunderbird-bin] up to 115.4.1

2023-10-25 Thread atler
commit 2eef10d3fcd5ae4e05769985e9251075547921d4
Author: Jan Palus 
Date:   Thu Oct 26 00:30:13 2023 +0200

up to 115.4.1

 mozilla-thunderbird-bin.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/mozilla-thunderbird-bin.spec b/mozilla-thunderbird-bin.spec
index 66e77c5..958a8ba 100644
--- a/mozilla-thunderbird-bin.spec
+++ b/mozilla-thunderbird-bin.spec
@@ -4,14 +4,14 @@
 Summary:   Mozilla Thunderbird - email client
 Summary(pl.UTF-8): Mozilla Thunderbird - klient poczty
 Name:  mozilla-thunderbird-bin
-Version:   115.3.3
+Version:   115.4.1
 Release:   1
 License:   MPL 1.1 or GPL v2+ or LGPL v2.1+
 Group: X11/Applications/Networking
 Source0:   
https://ftp.mozilla.org/pub/thunderbird/releases/%{version}/linux-i686/en-US/thunderbird-%{version}.tar.bz2?/%{realname}-%{version}.tar.bz2
-# Source0-md5: 557d91715e9ee9955001a46e3bec3996
+# Source0-md5: 32bbf273435cfdee94afbc86ebc2eae1
 Source1:   
https://ftp.mozilla.org/pub/thunderbird/releases/%{version}/linux-x86_64/en-US/thunderbird-%{version}.tar.bz2?/%{realname}64-%{version}.tar.bz2
-# Source1-md5: 827c196f3213b9a57461c30c248c371d
+# Source1-md5: ce1f1dec5b71e5480659722674cce9f7
 Source2:   %{name}.desktop
 Source3:   %{name}.sh
 URL:   http://www.mozilla.org/projects/thunderbird/


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/mozilla-thunderbird-bin.git/commitdiff/2eef10d3fcd5ae4e05769985e9251075547921d4

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


[packages/thunderbird] up to 115.4.1

2023-10-25 Thread atler
commit 108e8d9b33bd0a3fd0c922b1ea7155bb82601ba2
Author: Jan Palus 
Date:   Thu Oct 26 00:20:55 2023 +0200

up to 115.4.1

 thunderbird.spec | 136 +++
 1 file changed, 68 insertions(+), 68 deletions(-)
---
diff --git a/thunderbird.spec b/thunderbird.spec
index e669929..ffb92f2 100644
--- a/thunderbird.spec
+++ b/thunderbird.spec
@@ -41,146 +41,146 @@ curl -s $U | sed -ne 
's,.*href="\([^"]\+\)/".*,'"$U"'xpi/\1.xpi,p'
 Summary:   Thunderbird - email client
 Summary(pl.UTF-8): Thunderbird - klient poczty
 Name:  thunderbird
-Version:   115.3.3
+Version:   115.4.1
 Release:   1
 License:   MPL v2.0
 Group: X11/Applications/Mail
 Source0:   
https://releases.mozilla.org/pub/thunderbird/releases/%{version}/source/%{name}-%{version}.source.tar.xz
-# Source0-md5: 1751852a776784f9d76a98fdcdbd181e
+# Source0-md5: 2a21d248686c589c79f6871c9098f786
 Source1:   %{name}.desktop
 Source2:   %{name}.sh
 Source100: 
https://releases.mozilla.org/pub/thunderbird/releases/%{version}/linux-x86_64/xpi/af.xpi
-# Source100-md5:   5d77e3836418782ac0eaf810775300df
+# Source100-md5:   1e52cde325070f5ce3705118b496b084
 Source101: 
https://releases.mozilla.org/pub/thunderbird/releases/%{version}/linux-x86_64/xpi/ar.xpi
-# Source101-md5:   4547327997b786114ed40b944ce5ce9c
+# Source101-md5:   03764ddef4c2a14a7c198a34aeb03196
 Source102: 
https://releases.mozilla.org/pub/thunderbird/releases/%{version}/linux-x86_64/xpi/ast.xpi
-# Source102-md5:   0e6df3b492e993a00ee780b83a32557f
+# Source102-md5:   2e82916d59b044d292d8dbb3a717203d
 Source103: 
https://releases.mozilla.org/pub/thunderbird/releases/%{version}/linux-x86_64/xpi/be.xpi
-# Source103-md5:   63ccbb21ebcceadaffd0672d5374cf23
+# Source103-md5:   b7e7ac89da0ed52e597f0fe0a08963f6
 Source104: 
https://releases.mozilla.org/pub/thunderbird/releases/%{version}/linux-x86_64/xpi/bg.xpi
-# Source104-md5:   f31bb9433fdd67ddc92d1fc111824597
+# Source104-md5:   3a82d0227210ad32f7f09723f95efc23
 Source105: 
https://releases.mozilla.org/pub/thunderbird/releases/%{version}/linux-x86_64/xpi/br.xpi
-# Source105-md5:   64cbfd0abed5f8bc4a69ea1f192a51d8
+# Source105-md5:   f76dfafcaaea264b0404c64aa39b907c
 Source106: 
https://releases.mozilla.org/pub/thunderbird/releases/%{version}/linux-x86_64/xpi/ca.xpi
-# Source106-md5:   9a9f744e0272c44d1c21ec0bfcbc05f3
+# Source106-md5:   2957fc05e40fcde34ffbcac2c489432d
 Source107: 
https://releases.mozilla.org/pub/thunderbird/releases/%{version}/linux-x86_64/xpi/cak.xpi
-# Source107-md5:   85429c272188004230ff173b74dcb7c0
+# Source107-md5:   af9276c636f90ce8342b319ba1654673
 Source108: 
https://releases.mozilla.org/pub/thunderbird/releases/%{version}/linux-x86_64/xpi/cs.xpi
-# Source108-md5:   f8652184b264f6d2e84080cd9e819566
+# Source108-md5:   a6c4cd7a7e1f2110df3510d3098ce348
 Source109: 
https://releases.mozilla.org/pub/thunderbird/releases/%{version}/linux-x86_64/xpi/cy.xpi
-# Source109-md5:   c73fd8f9159ca1bc19036553d4478566
+# Source109-md5:   446d34265b1c0082f15b82e17afa0aca
 Source110: 
https://releases.mozilla.org/pub/thunderbird/releases/%{version}/linux-x86_64/xpi/da.xpi
-# Source110-md5:   2a86c1ed0f0bad8ce536d7ce306153ba
+# Source110-md5:   437ecc2664051f138ea4cd0524723cd1
 Source111: 
https://releases.mozilla.org/pub/thunderbird/releases/%{version}/linux-x86_64/xpi/de.xpi
-# Source111-md5:   aa6aaebdb0547b7fef399fbcc2da6e9d
+# Source111-md5:   36e93e6369665bb1eeaa9a171d1a3f2c
 Source112: 
https://releases.mozilla.org/pub/thunderbird/releases/%{version}/linux-x86_64/xpi/dsb.xpi
-# Source112-md5:   1c638732b52074d3e301df43f2462e60
+# Source112-md5:   426aa67b8fbd17f3826acf023b40d507
 Source113: 
https://releases.mozilla.org/pub/thunderbird/releases/%{version}/linux-x86_64/xpi/el.xpi
-# Source113-md5:   614e8e4ff6fa81665c20f5c199b7f1d5
+# Source113-md5:   b38156cc8be4a8d86d942dbee7431d0d
 Source114: 
https://releases.mozilla.org/pub/thunderbird/releases/%{version}/linux-x86_64/xpi/en-CA.xpi
-# Source114-md5:   414554dd5b060f00700105a5bb636f8b
+# Source114-md5:   b63ec2436a800e930f6bc22f99552471
 Source115: 
https://releases.mozilla.org/pub/thunderbird/releases/%{version}/linux-x86_64/xpi/en-GB.xpi
-# Source115-md5:   747af424b032148b41670dee2efad4b4
+# Source115-md5:   419ad42c32263e7f855defde84e5bdec
 Source116: 
https://releases.mozilla.org/pub/thunderbird/releases/%{version}/linux-x86_64/xpi/en-US.xpi
-# Source116-md5:   5b03c49ae2a07cdd9f493248f0fd3fac
+# Source116-md5:   8a23b96db398b7c59fede55aa393b208
 Source117: 
https://releases.mozilla.org/pub/thunderbird/releases/%{version}/linux-x86_64/xpi/es-AR.xpi
-# Source117-md5:   3d5a69c3c9e18bcea4f515355fb6dcef
+# Source117-md5:   a8b66559b92c812c06a39733fdaa25dd
 Source118: 

DISTFILES: libfilezilla: libfilezilla-0.45.0.tar.xz

2023-10-25 Thread mrozowik
Request by: mrozowik


Files fetched: 1

STORED: 
https://download.filezilla-project.org/libfilezilla/libfilezilla-0.45.0.tar.xz
905976371fb5026a79dfb34ce3b65649  libfilezilla-0.45.0.tar.xz
Size: 543340 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/libfilezilla] - up to 0.45.0

2023-10-25 Thread mrozowik
commit 3da0394b6593a4663988b93c3a659132dcfb5138
Author: Krzysztof Mrozowicz 
Date:   Wed Oct 25 22:13:32 2023 +

- up to 0.45.0

 libfilezilla.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/libfilezilla.spec b/libfilezilla.spec
index b98f14b..d213ecc 100644
--- a/libfilezilla.spec
+++ b/libfilezilla.spec
@@ -4,17 +4,17 @@
 %bcond_without static_libs # static library
 %bcond_without tests   # "make check"
 #
-%definelibver  40
+%definelibver  41
 #
 Summary:   Library for high-performing platform-independent programs
 Summary(pl.UTF-8): Biblioteka do wydajnych programów niezależnych od 
platformy
 Name:  libfilezilla
-Version:   0.44.0
+Version:   0.45.0
 Release:   1
 License:   GPL v2+
 Group: Libraries
 Source0:   
https://download.filezilla-project.org/libfilezilla/%{name}-%{version}.tar.xz
-# Source0-md5: 95ba2824ba325153c47c09e2acff748f
+# Source0-md5: 905976371fb5026a79dfb34ce3b65649
 URL:   https://lib.filezilla-project.org/
 BuildRequires: autoconf >= 2.50
 BuildRequires: automake


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/libfilezilla.git/commitdiff/3da0394b6593a4663988b93c3a659132dcfb5138

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


DISTFILES: FileZilla: FileZilla_3.66.0_src.tar.xz

2023-10-25 Thread mrozowik
Request by: mrozowik


Files fetched: 1

STORED: 
https://download.filezilla-project.org/client/FileZilla_3.66.0_src.tar.xz
5a51896ff109a9533f688502689e9ee2  FileZilla_3.66.0_src.tar.xz
Size: 4055872 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/FileZilla] - up to 3.66.0

2023-10-25 Thread mrozowik
commit b7929b87e6493be5f6ab5a061309bc28c1db7a19
Author: Krzysztof Mrozowicz 
Date:   Wed Oct 25 22:12:52 2023 +

- up to 3.66.0

 FileZilla.spec | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/FileZilla.spec b/FileZilla.spec
index e59fbb9..9b3ab10 100644
--- a/FileZilla.spec
+++ b/FileZilla.spec
@@ -1,6 +1,6 @@
 %bcond_withstorj   # support for Storj decentralized cloud storage provider
 
-%definelibfilezilla_ver0.44.0
+%definelibfilezilla_ver0.45.0
 Summary:   FTP client for X Window
 Summary(es.UTF-8): Cliente FTP para el X Window
 Summary(ja.UTF-8): X Window System 用マルチスレッド FTP クライアント
@@ -9,12 +9,12 @@ Summary(pt_BR.UTF-8): Cliente FTP para o X Window
 Summary(ru.UTF-8): FTP клиент для X Window
 Summary(uk.UTF-8): FTP клієнт для X Window
 Name:  FileZilla
-Version:   3.65.0
-Release:   2
+Version:   3.66.0
+Release:   1
 License:   GPL v2+
 Group: X11/Applications/Networking
 Source0:   
https://download.filezilla-project.org/client/%{name}_%{version}_src.tar.xz
-# Source0-md5: 8899739b13afa80765b82fe507669710
+# Source0-md5: 5a51896ff109a9533f688502689e9ee2
 Patch0:%{name}-desktop.patch
 Patch1:disable-avx-on-i686.patch
 URL:   https://filezilla-project.org/


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/FileZilla.git/commitdiff/b7929b87e6493be5f6ab5a061309bc28c1db7a19

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


DISTFILES: opera: opera-stable_104.0.4944.23_amd64.deb

2023-10-25 Thread mrozowik
Request by: mrozowik


Files fetched: 1

STORED: 
https://ftp.opera.com/pub/opera/desktop/104.0.4944.23/linux/opera-stable_104.0.4944.23_amd64.deb
42064df2cabf9bcd8de9b72d6395f7f8  opera-stable_104.0.4944.23_amd64.deb
Size: 108499916 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/opera] - up to 104.0.4944.23

2023-10-25 Thread mrozowik
commit ef28f8d79e2e59dd1c15560165419a8d7a4ae924
Author: Krzysztof Mrozowicz 
Date:   Wed Oct 25 21:40:27 2023 +

- up to 104.0.4944.23

 opera.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/opera.spec b/opera.spec
index 7b33b15..51efb1f 100644
--- a/opera.spec
+++ b/opera.spec
@@ -13,13 +13,13 @@ Summary:Opera browser
 Summary(hu.UTF-8): A világ leggyorsabb webböngészője
 Summary(pl.UTF-8): Najszybsza przeglądarka WWW na świecie
 Name:  opera
-Version:   102.0.4880.78
+Version:   104.0.4944.23
 Release:   1
 Epoch: 2
 License:   Distributable
 Group: X11/Applications/Networking
 Source10:  
https://ftp.opera.com/pub/opera/desktop/%{version}/linux/%{name}-stable_%{version}_amd64.deb
-# Source10-md5:5cbc293365b4243ac319f119afa1bdd6
+# Source10-md5:42064df2cabf9bcd8de9b72d6395f7f8
 Source1:   %{name}.sh
 Source2:   find-lang.sh
 Patch1:%{name}-desktop.patch


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/opera.git/commitdiff/ef28f8d79e2e59dd1c15560165419a8d7a4ae924

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


DISTFILES: kernel: linux-6.1.tar.xz patch-6.1.60.xz

2023-10-25 Thread arekm
Request by: arekm


Files fetched: 1

ALREADY GOT: https://www.kernel.org/pub/linux/kernel/v6.x/linux-6.1.tar.xz
475320de08f16c9fa486fc4edfe98b30  linux-6.1.tar.xz
STORED: https://www.kernel.org/pub/linux/kernel/v6.x/patch-6.1.60.xz
c722273afa0b90c04b56d33714064bbc  patch-6.1.60.xz
Size: 3452924 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/kernel/LINUX_6_1] Up to 6.1.60

2023-10-25 Thread arekm
commit 7facddd45da06a88c25b211bcc9009f0e5300505
Author: Arkadiusz Miśkiewicz 
Date:   Wed Oct 25 23:15:55 2023 +0200

Up to 6.1.60

 kernel.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/kernel.spec b/kernel.spec
index c8a70318..0a758b52 100644
--- a/kernel.spec
+++ b/kernel.spec
@@ -67,7 +67,7 @@
 
 %definerel 1
 %definebasever 6.1
-%definepostver .59
+%definepostver .60
 
 # define this to '-%{basever}' for longterm branch
 %defineversuffix   -%{basever}
@@ -121,7 +121,7 @@ Source0:
https://www.kernel.org/pub/linux/kernel/v6.x/linux-%{basever}.tar.xz
 # Source0-md5: 475320de08f16c9fa486fc4edfe98b30
 %if "%{postver}" != ".0"
 Patch0:
https://www.kernel.org/pub/linux/kernel/v6.x/patch-%{version}.xz
-# Patch0-md5:  28dab4c798981db502e634dbf7a337fe
+# Patch0-md5:  c722273afa0b90c04b56d33714064bbc
 %endif
 Source1:   kernel.sysconfig
 


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kernel.git/commitdiff/7facddd45da06a88c25b211bcc9009f0e5300505

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


DISTFILES: lasso: lasso-2.8.2.tar.gz

2023-10-25 Thread qboosh
Request by: qboosh


Files fetched: 1

STORED: https://dev.entrouvert.org/lasso/lasso-2.8.2.tar.gz
ad2e167973cc1c21cd16329bfbcd3d16  lasso-2.8.2.tar.gz
Size: 4023587 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/lasso] - updated to 2.8.2

2023-10-25 Thread qboosh
commit e514097efe65d61dadaa7c9d91289cdd973b1039
Author: Jakub Bogusz 
Date:   Wed Oct 25 22:26:20 2023 +0200

- updated to 2.8.2

 lasso.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/lasso.spec b/lasso.spec
index 4614ccc..c716b68 100644
--- a/lasso.spec
+++ b/lasso.spec
@@ -18,12 +18,12 @@
 Summary:   Liberty Alliance Single Sign On
 Summary(pl.UTF-8): Implementacja Liberty Alliance Single Sign On
 Name:  lasso
-Version:   2.7.0
-Release:   6
+Version:   2.8.2
+Release:   1
 License:   GPL v2+
 Group: Libraries
 Source0:   https://dev.entrouvert.org/lasso/%{name}-%{version}.tar.gz
-# Source0-md5: 8262e05f7844aea6b32239bff6ddd6b9
+# Source0-md5: ad2e167973cc1c21cd16329bfbcd3d16
 URL:   http://lasso.entrouvert.org/
 BuildRequires: autoconf >= 2.53
 BuildRequires: automake >= 1:1.11


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/lasso.git/commitdiff/e514097efe65d61dadaa7c9d91289cdd973b1039

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


DISTFILES: fox: fox-1.7.84.tar.gz

2023-10-25 Thread qboosh
Request by: qboosh


Files fetched: 1

STORED: http://fox-toolkit.org/ftp/fox-1.7.84.tar.gz
48eaf928985a52be0ef628f51fb5599f  fox-1.7.84.tar.gz
Size: 5879987 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/fox] - started update to 1.7.84

2023-10-25 Thread qboosh
commit f3c95c8409a43a09472fb841e5198721c64a08bf
Author: Jakub Bogusz 
Date:   Wed Oct 25 22:01:59 2023 +0200

- started update to 1.7.84

 fox-link.patch |  8 
 fox-opt.patch  | 19 ---
 fox.spec   | 12 +---
 3 files changed, 17 insertions(+), 22 deletions(-)
---
diff --git a/fox.spec b/fox.spec
index fe981f1..3d19e6c 100644
--- a/fox.spec
+++ b/fox.spec
@@ -8,12 +8,12 @@ Summary:  The FOX C++ GUI Toolkit
 Summary(pl.UTF-8): FOX - toolkit graficzny w C++
 Name:  fox
 # NOTE: after switching to 1.8.x keep stable (1.8.x) on HEAD and devel (1.9.x) 
on DEVEL
-Version:   1.7.57
-Release:   3
+Version:   1.7.84
+Release:   0.1
 License:   LGPL v3+ with relinking exemption
 Group: X11/Libraries
-Source0:   http://ftp.fox-toolkit.org/pub/%{name}-%{version}.tar.gz
-# Source0-md5: caeed36d43b5d4f18193657bf236200d
+Source0:   http://fox-toolkit.org/ftp/%{name}-%{version}.tar.gz
+# Source0-md5: 48eaf928985a52be0ef628f51fb5599f
 Patch0:%{name}-opt.patch
 Patch1:%{name}-link.patch
 Patch2:%{name}-Makefile.patch
@@ -41,8 +41,6 @@ BuildRequires:xorg-lib-libXrandr-devel
 BuildRequires: zlib-devel >= 1.1.4
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
-%define_noautoreqdep   libGL.so.1 libGLU.so.1
-
 %description
 FOX is a C++-Based Library for Graphical User Interface Development
 FOX supports modern GUI features, such as Drag-and-Drop, Tooltips, Tab
@@ -64,7 +62,7 @@ Summary:  FOX example applications
 Summary(pl.UTF-8): Przykłady aplikacji w FOX
 Group: X11/Applications
 Requires:  %{name} = %{version}-%{release}
-Obsoletes: fox-example-apps
+Obsoletes: fox-example-apps < 0.99.173
 
 %description progs
 Editor and file browser, written with FOX.
diff --git a/fox-link.patch b/fox-link.patch
index 1cb360e..3e63330 100644
--- a/fox-link.patch
+++ b/fox-link.patch
@@ -1,11 +1,11 @@
 fox-1.7.25/lib/Makefile.am.orig2010-11-02 03:07:14.0 +0100
-+++ fox-1.7.25/lib/Makefile.am 2011-05-13 16:24:24.319335269 +0200
-@@ -7,7 +7,7 @@
+--- fox-1.7.84/lib/Makefile.am.orig2023-10-25 07:07:48.220902965 +0200
 fox-1.7.84/lib/Makefile.am 2023-10-25 06:19:02.042506050 +0200
+@@ -8,7 +8,7 @@ SUFFIXES = .gif .bmp
  
  lib_LTLIBRARIES = libFOX-1.7.la
  
 -libFOX_1_7_la_LIBADD  = $(X_LIBS) $(X_PRE_LIBS) $(X_BASE_LIBS) 
$(X_EXTRA_LIBS) $(GL_LIBS)
 +libFOX_1_7_la_LIBADD  = $(X_LIBS) $(X_BASE_LIBS) $(X_EXTRA_LIBS) $(GL_LIBS) 
-lfontconfig
  
- libFOX_1_7_la_LDFLAGS = -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) 
-export-dynamic
+ libFOX_1_7_la_LDFLAGS = -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) 
-export-dynamic -no-undefined
  
diff --git a/fox-opt.patch b/fox-opt.patch
index dd869c8..97cf078 100644
--- a/fox-opt.patch
+++ b/fox-opt.patch
@@ -1,6 +1,6 @@
 fox-1.7.57/configure.ac.orig   2016-07-08 20:07:27.0 +0200
-+++ fox-1.7.57/configure.ac2017-02-05 22:23:07.410090151 +0100
-@@ -56,9 +56,6 @@
+--- fox-1.7.84/configure.ac.orig   2023-09-11 23:22:01.0 +0200
 fox-1.7.84/configure.ac2023-10-25 06:16:57.746509915 +0200
+@@ -65,9 +65,6 @@ AC_SUBST(LT_CURRENT)
  AC_SUBST(LT_REVISION)
  AC_SUBST(LT_AGE)
  
@@ -10,7 +10,7 @@
  # More secret source
  AC_GNU_SOURCE
  
-@@ -125,7 +122,7 @@
+@@ -133,7 +130,7 @@ AC_MSG_CHECKING(for debugging)
  AC_ARG_ENABLE(debug,[  --enable-debug  compile for debugging])
  AC_MSG_RESULT([$enable_debug])
  if test "x$enable_debug" = "xyes" ; then
@@ -19,15 +19,12 @@
  fi
  
  # Building for release
-@@ -133,10 +130,9 @@
+@@ -141,7 +138,7 @@ AC_MSG_CHECKING(for release build)
  AC_ARG_ENABLE(release,[  --enable-releasecompile for release])
  AC_MSG_RESULT([$enable_release])
  if test "x$enable_release" = "xyes" ; then
--  CXXFLAGS="${CXXFLAGS} -O2 -DNDEBUG"
+-  CXXFLAGS="${CXXFLAGS} -O3 -DNDEBUG"
 +  CXXFLAGS="${CXXFLAGS} -DNDEBUG"
if test "${GXX}" = "yes" ; then
- CXXFLAGS="${CXXFLAGS} -ffast-math -fstrict-aliasing -finline-functions 
-fomit-frame-pointer"
--LDFLAGS="-s ${LDFLAGS}"
-   fi
- fi
- 
+ CXXFLAGS="${CXXFLAGS} -ffast-math -fstrict-overflow -fstrict-aliasing 
-finline-functions -fomit-frame-pointer -fcf-protection=none 
-fno-stack-protector"
+ LDFLAGS="-s ${LDFLAGS}"


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/fox.git/commitdiff/f3c95c8409a43a09472fb841e5198721c64a08bf

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


DISTFILES: wpa_supplicant: wpa_supplicant-2.10.tar.gz

2023-10-25 Thread qboosh
Request by: qboosh


Files fetched: 1

STORED: http://w1.fi/releases/wpa_supplicant-2.10.tar.gz
d26797fcb002898d4ee989179346e1cc  wpa_supplicant-2.10.tar.gz
Size: 3511622 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/wpa_supplicant] - updated to 2.10

2023-10-25 Thread qboosh
commit 5357058fd271e292b850a34a448620fb663acc72
Author: Jakub Bogusz 
Date:   Wed Oct 25 21:48:12 2023 +0200

- updated to 2.10

 wpa_supplicant-0.7.2-generate-libeap-peer.patch | 45 ++---
 wpa_supplicant-OPTCFLAGS.patch  | 12 ---
 wpa_supplicant-gui-qt4.patch| 11 +++---
 wpa_supplicant.spec | 28 +++
 4 files changed, 29 insertions(+), 67 deletions(-)
---
diff --git a/wpa_supplicant.spec b/wpa_supplicant.spec
index fd66bf7..53fcf2b 100644
--- a/wpa_supplicant.spec
+++ b/wpa_supplicant.spec
@@ -11,22 +11,21 @@
 Summary:   Linux WPA/WPA2/RSN/IEEE 802.1X supplicant
 Summary(pl.UTF-8): Suplikant WPA/WPA2/RSN/IEEE 802.1X dla Linuksa
 Name:  wpa_supplicant
-Version:   2.9
-Release:   4
+Version:   2.10
+Release:   1
 License:   BSD
 Group: Networking
 Source0:   http://w1.fi/releases/%{name}-%{version}.tar.gz
-# Source0-md5: 2d2958c782576dc9901092fbfecb4190
+# Source0-md5: d26797fcb002898d4ee989179346e1cc
 Source1:   %{name}.config
 Source2:   %{name}-wpa_gui.desktop
 Source3:   %{name}.tmpfiles
 Source4:   %{name}.service
 Patch0:%{name}-makefile.patch
-Patch1:%{name}-OPTCFLAGS.patch
-Patch2:%{name}-gui-qt4.patch
+Patch1:%{name}-gui-qt4.patch
 # http://www.linuxwimax.org/Download
-Patch3:%{name}-0.7.2-generate-libeap-peer.patch
-Patch4:dbus-services.patch
+Patch2:%{name}-0.7.2-generate-libeap-peer.patch
+Patch3:dbus-services.patch
 URL:   http://w1.fi/wpa_supplicant/
 %{?with_dbus:BuildRequires:dbus-devel}
 BuildRequires: libnl-devel >= 1:3.5
@@ -141,7 +140,6 @@ Pliki programistyczne dla biblioteki eap.
 %patch1 -p1
 %patch2 -p1
 %patch3 -p1
-%patch4 -p1
 
 %{__sed} -i -e 's,@LIB@,%{_lib},' src/eap_peer/libeap0.pc
 
@@ -161,19 +159,19 @@ echo 'CONFIG_EAP_AKA_PRIME=y' >> wpa_supplicant/.config
 %endif
 
 %build
+CFLAGS="%{rpmcppflags} %{rpmcflags}" \
 %{__make} -C wpa_supplicant \
V=1 \
CC="%{__cc}" \
BINDIR="%{_sbindir}" \
-   LDFLAGS="%{rpmldflags}" \
-   OPTCFLAGS="%{rpmcppflags} %{rpmcflags}"
+   LDFLAGS="%{rpmldflags}"
 
 # eapol_test:
+CFLAGS="%{rpmcppflags} %{rpmcflags}" \
 %{__make} -C wpa_supplicant eapol_test \
V=1 \
CC="%{__cc}" \
-   LDFLAGS="%{rpmldflags}" \
-   OPTCFLAGS="%{rpmcppflags} %{rpmcflags}"
+   LDFLAGS="%{rpmldflags}"
 
 %if %{with gui}
 cd wpa_supplicant/wpa_gui-qt4
@@ -190,8 +188,8 @@ cd ../..
UIC=%{_bindir}/uic-qt%{qtver}
 %endif
 
-%{__make} -C src/eap_peer clean
-%{__make} -C src/eap_peer \
+%{__make} -C src/eap_peer -f Makefile.libeap clean
+%{__make} -C src/eap_peer -f Makefile.libeap \
CC="%{__cc}" \
CFLAGS="%{rpmcppflags} %{rpmcflags} -MMD -Wall $(pkg-config --cflags 
libnl-3.0) -DTLS_DEFAULT_CIPHERS=\\\"PROFILE=SYSTEM:3DES\\\"" \
LDFLAGS="%{rpmldflags} -shared"
@@ -228,7 +226,7 @@ cp -p %{SOURCE2} 
$RPM_BUILD_ROOT%{_desktopdir}/wpa_gui.desktop
 install -p wpa_supplicant/eapol_test $RPM_BUILD_ROOT%{_bindir}
 cp -p %{SOURCE3} $RPM_BUILD_ROOT%{systemdtmpfilesdir}/%{name}.conf
 
-%{__make} -C src/eap_peer install \
+%{__make} -C src/eap_peer -f Makefile.libeap install \
DESTDIR=$RPM_BUILD_ROOT \
LIBDIR=%{_libdir}
 
diff --git a/wpa_supplicant-0.7.2-generate-libeap-peer.patch 
b/wpa_supplicant-0.7.2-generate-libeap-peer.patch
index a719a05..cae9e2c 100644
--- a/wpa_supplicant-0.7.2-generate-libeap-peer.patch
+++ b/wpa_supplicant-0.7.2-generate-libeap-peer.patch
@@ -38,12 +38,9 @@ Signed-off-by: Inaky Perez-Gonzalez 

  5 files changed, 320 insertions(+), 8 deletions(-)
  create mode 100644 src/eap_peer/libeap0.pc
 
-diff --git a/src/eap_peer/Makefile b/src/eap_peer/Makefile
-index 3651056..58c067a 100644
 a/src/eap_peer/Makefile
-+++ b/src/eap_peer/Makefile
-@@ -1,23 +1,193 @@
--all: libeap_peer.a
+--- wpa_supplicant-2.10/src/eap_peer/Makefile.libeap.orig  1970-01-01 
01:00:00.0 +0100
 wpa_supplicant-2.10/src/eap_peer/Makefile.libeap   2023-10-25 
20:38:09.894163431 +0200
+@@ -0,0 +1,193 @@
 +LIBEAP_NAME = libeap
 +LIBEAP_CURRENT = 0
 +LIBEAP_REVISION = 0
@@ -232,29 +229,11 @@ index 3651056..58c067a 100644
 +  rm $(DESTDIR)$(LIBDIR)/$(LIBEAP)
 +  rm -fr $(DESTDIR)$(INCLUDE_INSTALL_DIR)
 +  rm -f $(DESTDIR)$(LIBDIR)/pkgconfig/libeap0.pc
- 
- clean:
--  rm -f *~ *.o *.so *.d *.gcno *.gcda *.gcov libeap_peer.a
--
--install:
--  if ls *.so >/dev/null 2>&1; then \
--  install -d $(DESTDIR)$(LIBDIR)/wpa_supplicant && \
--  cp *.so $(DESTDIR)$(LIBDIR)/wpa_supplicant \
--  ; fi
--
--include ../lib.rules
--
--CFLAGS += -DIEEE8021X_EAPOL
--
--LIB_OBJS= \
--  eap.o \
--  eap_methods.o
--
--libeap_peer.a: $(LIB_OBJS)
--  $(AR) crT $@ $?
++
++clean:
 +  rm -f *~ *.o *.so *.d *.gcno *.gcda *.gcov 

DISTFILES: gpgme: gpgme-1.23.0.tar.bz2

2023-10-25 Thread atler
Request by: atler


Files fetched: 1

STORED: ftp://ftp.gnupg.org/gcrypt/gpgme/gpgme-1.23.0.tar.bz2
e64d32e248b353314d2c3781d5ba0e06  gpgme-1.23.0.tar.bz2
Size: 1717618 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/gpgme] up to 1.23.0

2023-10-25 Thread atler
commit e082db1038bc239cb59b34fafc288ce90768caa5
Author: Jan Palus 
Date:   Wed Oct 25 21:42:23 2023 +0200

up to 1.23.0

 gpgme-largefile.patch | 12 ++--
 gpgme-qt-tests.patch  | 27 ---
 gpgme.spec|  6 ++
 3 files changed, 8 insertions(+), 37 deletions(-)
---
diff --git a/gpgme.spec b/gpgme.spec
index 64d68db..0451c15 100644
--- a/gpgme.spec
+++ b/gpgme.spec
@@ -24,19 +24,18 @@
 Summary:   Library for accessing GnuPG
 Summary(pl.UTF-8): Biblioteka dająca dostęp do funkcji GnuPG
 Name:  gpgme
-Version:   1.22.0
+Version:   1.23.0
 Release:   1
 Epoch: 1
 License:   LGPL v2.1+
 Group: Libraries
 Source0:   ftp://ftp.gnupg.org/gcrypt/gpgme/%{name}-%{version}.tar.bz2
-# Source0-md5: 828b8a1f9992826d7ad43741b349db01
+# Source0-md5: e64d32e248b353314d2c3781d5ba0e06
 Patch0:%{name}-info.patch
 Patch1:orig-version.patch
 Patch2:%{name}-largefile.patch
 Patch3:%{name}-python.patch
 Patch4:0001-fix-stupid-ax_python_devel.patch
-Patch5:%{name}-qt-tests.patch
 URL:   http://www.gnupg.org/gpgme.html
 BuildRequires: autoconf >= 2.69
 BuildRequires: automake >= 1:1.14
@@ -292,7 +291,6 @@ PyME to interfejs Pythona do biblioteki GPGME.
 %patch2 -p1
 %patch3 -p1
 %patch4 -p1
-%patch5 -p1
 
 %build
 %{__libtoolize}
diff --git a/gpgme-largefile.patch b/gpgme-largefile.patch
index 11761d0..bdf6d59 100644
--- a/gpgme-largefile.patch
+++ b/gpgme-largefile.patch
@@ -100,20 +100,20 @@
 --- gpgme-1.7.0/lang/qt/tests/Makefile.am.orig 2016-09-20 19:09:38.0 
+0200
 +++ gpgme-1.7.0/lang/qt/tests/Makefile.am  2016-10-08 09:37:15.642004112 
+0200
 @@ -53,7 +53,7 @@
- 
- AM_CPPFLAGS = -I$(top_srcdir)/lang/cpp/src -I$(top_builddir)/src \
+ AM_CPPFLAGS = -I$(top_srcdir)/lang/qt/src -I$(top_srcdir)/lang/cpp/src \
+   -I$(top_builddir)/src \
@GPG_ERROR_CFLAGS@ @GPGME_QT5_CFLAGS@ @GPG_ERROR_CFLAGS@ \
 -  @LIBASSUAN_CFLAGS@ @GPGME_QT5TEST_CFLAGS@ -DBUILDING_QGPGME \
 +  @LIBASSUAN_CFLAGS@ @GPGME_QT5TEST_CFLAGS@ 
@FILE_OFFSET_BITS_CPPFLAGS@ -DBUILDING_QGPGME \
-   -I$(top_srcdir)/lang/qt/src \
-DTOP_SRCDIR="$(top_srcdir)"
  endif
+ if WANT_QT6
 @@ -64,7 +64,7 @@
- 
- AM_CPPFLAGS = -I$(top_srcdir)/lang/cpp/src -I$(top_builddir)/src \
+ AM_CPPFLAGS = -I$(top_srcdir)/lang/qt/src -I$(top_srcdir)/lang/cpp/src \
+   -I$(top_builddir)/src \
@GPG_ERROR_CFLAGS@ @GPGME_QT6_CFLAGS@ @GPG_ERROR_CFLAGS@ \
 -  @LIBASSUAN_CFLAGS@ @GPGME_QT6TEST_CFLAGS@ -DBUILDING_QGPGME \
 +  @LIBASSUAN_CFLAGS@ @GPGME_QT6TEST_CFLAGS@ 
@FILE_OFFSET_BITS_CPPFLAGS@ -DBUILDING_QGPGME \
-   -I$(top_srcdir)/lang/qt/src \
-DTOP_SRCDIR="$(top_srcdir)"
  endif
+ 
diff --git a/gpgme-qt-tests.patch b/gpgme-qt-tests.patch
deleted file mode 100644
index 80de01e..000
--- a/gpgme-qt-tests.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-qt tests want debug.h from lang/qt/src, not the one from src
 gpgme-1.22.0/lang/qt/tests/Makefile.am.orig2023-10-20 
19:20:27.323100921 +0200
-+++ gpgme-1.22.0/lang/qt/tests/Makefile.am 2023-10-20 20:01:44.799679279 
+0200
-@@ -51,10 +51,9 @@ LDADD = ../../cpp/src/libgpgmepp.la ../s
- ../../../src/libgpgme.la @GPGME_QT5_LIBS@ @GPG_ERROR_LIBS@ \
- @GPGME_QT5TEST_LIBS@ @LDADD_FOR_TESTS_KLUDGE@ -lstdc++
- 
--AM_CPPFLAGS = -I$(top_srcdir)/lang/cpp/src -I$(top_builddir)/src \
-+AM_CPPFLAGS = -I$(top_srcdir)/lang/qt/src -I$(top_srcdir)/lang/cpp/src 
-I$(top_builddir)/src \
-   @GPG_ERROR_CFLAGS@ @GPGME_QT5_CFLAGS@ @GPG_ERROR_CFLAGS@ \
-   @LIBASSUAN_CFLAGS@ @GPGME_QT5TEST_CFLAGS@ 
@FILE_OFFSET_BITS_CPPFLAGS@ -DBUILDING_QGPGME \
--  -I$(top_srcdir)/lang/qt/src \
-   -DTOP_SRCDIR="$(top_srcdir)"
- endif
- if WANT_QT6
-@@ -62,10 +61,9 @@ LDADD = ../../cpp/src/libgpgmepp.la ../s
- ../../../src/libgpgme.la @GPGME_QT6_LIBS@ @GPG_ERROR_LIBS@ \
- @GPGME_QT6TEST_LIBS@ @LDADD_FOR_TESTS_KLUDGE@ -lstdc++
- 
--AM_CPPFLAGS = -I$(top_srcdir)/lang/cpp/src -I$(top_builddir)/src \
-+AM_CPPFLAGS = -I$(top_srcdir)/lang/qt/src -I$(top_srcdir)/lang/cpp/src 
-I$(top_builddir)/src \
-   @GPG_ERROR_CFLAGS@ @GPGME_QT6_CFLAGS@ @GPG_ERROR_CFLAGS@ \
-   @LIBASSUAN_CFLAGS@ @GPGME_QT6TEST_CFLAGS@ 
@FILE_OFFSET_BITS_CPPFLAGS@ -DBUILDING_QGPGME \
--  -I$(top_srcdir)/lang/qt/src \
-   -DTOP_SRCDIR="$(top_srcdir)"
- endif
- 


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/gpgme.git/commitdiff/e082db1038bc239cb59b34fafc288ce90768caa5

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


DISTFILES: tmux: b77778072052c14d1450d2eb89542f2493121f84.zip tmux.vim tmux

2023-10-25 Thread arekm
Request by: arekm


Files fetched: 1

STORED: 
https://github.com/tmux/tmux/archive/b8072052c14d1450d2eb89542f2493121f84.zip
318ec937e147046963c987970956be48  
b8072052c14d1450d2eb89542f2493121f84.zip
Size: 1256158 bytes
ALREADY GOT: 
https://raw.githubusercontent.com/keith/tmux.vim/master/syntax/tmux.vim
cd1169a1757b515b5c57816d339c6f72  tmux.vim
ALREADY GOT: 
https://raw.githubusercontent.com/imomaliev/tmux-bash-completion/master/completions/tmux
6d65c0f42c74f61602a399d7bb04a85c  tmux


-- 
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/tmux] Rel 2; 3.3a crashes with current ncurses (on mouse copy). https://github.com/tmux/tmux/issues/3699.

2023-10-25 Thread arekm
commit 341bb9ad1c5d7a915d3e0b83aba8bd7a13d0f494
Author: Arkadiusz Miśkiewicz 
Date:   Wed Oct 25 21:14:30 2023 +0200

Rel 2; 3.3a crashes with current ncurses (on mouse copy). 
https://github.com/tmux/tmux/issues/3699. Switch to master.

 tmux.spec | 12 
 1 file changed, 8 insertions(+), 4 deletions(-)
---
diff --git a/tmux.spec b/tmux.spec
index e20723e..4c85d98 100644
--- a/tmux.spec
+++ b/tmux.spec
@@ -4,17 +4,20 @@
 # Conditional build:
 %bcond_without systemd # without system integration
 
+%define commit  b8072052c14d1450d2eb89542f2493121f84
+
 Summary:   tmux - a terminal multiplexer
 Summary(hu.UTF-8): tmux egy terminál-sokszorozó
 Summary(pl.UTF-8): tmux - multiplekser terminali
 Name:  tmux
 Version:   3.3a
-Release:   1
+Release:   2
 License:   ISC
 Group: Applications/Terminal
 #Source0Download: https://github.com/tmux/tmux/releases
-Source0:   
https://github.com/tmux/tmux/releases/download/%{version}/%{name}-%{version}.tar.gz
-# Source0-md5: 8eee5883b9f6550fa4efaad0c9ec38f3
+# Source0: 
https://github.com/tmux/tmux/releases/download/%{version}/%{name}-%{version}.tar.gz
+Source0:https://github.com/tmux/tmux/archive/%{commit}.zip
+# Source0-md5: 318ec937e147046963c987970956be48
 Source1:   %{name}-filedetect.vim
 Source2:   
https://raw.githubusercontent.com/keith/tmux.vim/master/syntax/tmux.vim
 # Source2-md5: cd1169a1757b515b5c57816d339c6f72
@@ -76,9 +79,10 @@ This package provides bash-completion for tmux.
 Ten pakiet dostarcza bashowe dopełnianie składni dla polecenia tmux.
 
 %prep
-%setup -q
+%setup -q -n %{name}-%{commit}
 
 %build
+[ ! -x configure ] && ./autogen.sh
 # note: on Linux use plain glibc functions instead of utf8proc
 %configure \
CPPFLAGS="%{rpmcppflags} -I/usr/include/ncursesw" \


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/tmux.git/commitdiff/341bb9ad1c5d7a915d3e0b83aba8bd7a13d0f494

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


[packages/links] - rediffed patches; content_encoding patch still broken with openssl 3

2023-10-25 Thread qboosh
commit c5dc4602dd5f2178c03cba46e7a3281070f6767e
Author: Jakub Bogusz 
Date:   Wed Oct 25 20:06:36 2023 +0200

- rediffed patches; content_encoding patch still broken with openssl 3

 links-content_encoding.patch | 25 -
 links-gzip_fallback.patch| 16 
 links.spec   |  4 +++-
 3 files changed, 23 insertions(+), 22 deletions(-)
---
diff --git a/links.spec b/links.spec
index decedf7..457d4fa 100644
--- a/links.spec
+++ b/links.spec
@@ -1,4 +1,6 @@
-# TODO: update IPv6 support
+# TODO:
+# - fix content_encoding patch with openssl >= 1.1
+# - update IPv6 support
 Summary:   Lynx-like text WWW browser
 Summary(es.UTF-8): El links es un browser para modo texto, similar a lynx
 Summary(pl.UTF-8): Podobna do Lynksa tekstowa przeglądarka WWW
diff --git a/links-content_encoding.patch b/links-content_encoding.patch
index 8a9f4d0..18d43e8 100644
--- a/links-content_encoding.patch
+++ b/links-content_encoding.patch
@@ -181,9 +181,9 @@
 +   *z = NULL;
 +   return output;
 +}
 links-0.97/http.c  Tue Mar 26 22:49:22 2002
-+++ links-0.97/http.c.new  Thu Jul  4 20:02:21 2002
-@@ -262,6 +262,7 @@
+--- links-1.04/http.c.orig 2017-10-10 20:17:40.0 +0200
 links-1.04/http.c  2020-09-06 08:17:04.818244745 +0200
+@@ -279,6 +279,7 @@ void http_send_header(struct connection
}
add_to_str(, , ")\r\n");
add_to_str(, , "Accept: */*\r\n");
@@ -191,12 +191,12 @@
if (!(accept_charset)) {
int i;
unsigned char *cs, *ac;
-@@ -359,9 +360,24 @@
-   int l = rb->len;
-   if (info->length >= 0 && info->length < l) l = info->length;
+@@ -386,9 +387,24 @@ void read_http_data(struct connection *c
+   return;
+   }
c->received += l;
 -  if (add_fragment(c->cache, c->from, rb->data, l) == 1) c->tries 
= 0;
-+  if (l) {
++  if (l > 0) {
 +  if (c->gzip) {
 +  int dl;
 +  unsigned char *data = decompress_gzip(>z, 
rb->data, l, );
@@ -217,10 +217,10 @@
 -  c->from += l;
kill_buffer_data(rb, l);
if (!info->length && !rb->close) {
-   setcstate(c, S_OK);
-@@ -405,9 +421,23 @@
-   int l = info->chunk_remaining;
-   if (l > rb->len) l = rb->len;
+   http_end_request(c, 0, 0, S__OK);
+@@ -435,9 +451,22 @@ void read_http_data(struct connection *c
+   return;
+   }
c->received += l;
 -  if (add_fragment(c->cache, c->from, rb->data, l) == 1) 
c->tries = 0;
info->chunk_remaining -= l;
@@ -240,11 +240,10 @@
 +  if (add_fragment(c->cache, c->from, rb->data, 
l) == 1) c->tries = 0;
 +  c->from += l;
 +  }
-+  
kill_buffer_data(rb, l);
if (!info->chunk_remaining && rb->len >= 1) {
if (rb->data[0] == 10) kill_buffer_data(rb, 1);
-@@ -635,6 +665,19 @@
+@@ -667,6 +696,19 @@ void http_got_header(struct connection *
if (!e->last_modified && (d = parse_http_header(e->head, "Date", NULL)))
e->last_modified = d;
if (info->length == -1 || (version < 11 && info->close)) rb->close = 1;
diff --git a/links-gzip_fallback.patch b/links-gzip_fallback.patch
index aeafbdc..aed3b95 100644
--- a/links-gzip_fallback.patch
+++ b/links-gzip_fallback.patch
@@ -1,6 +1,6 @@
 links-1.03/configure.in.orig   2013-06-21 20:16:45.722573508 +0200
-+++ links-1.03/configure.in2013-06-21 20:48:49.859159434 +0200
-@@ -365,6 +365,9 @@
+--- links-1.04/configure.in.orig   2013-06-21 20:16:45.722573508 +0200
 links-1.04/configure.in2013-06-21 20:48:49.859159434 +0200
+@@ -486,6 +486,9 @@ else
  fi
  AC_MSG_RESULT($cf_result)
  
@@ -9,7 +9,7 @@
 +
  #ifdef HAVE_SSL
  ssld=yes
- AC_ARG_WITH(ssl, [  --with-ssl(=directory)  enable SSL support], [if test 
"$withval" = no; then disable_ssl=yes; else ssld="$withval"; fi])
+ withval=
 --- links-1.04/file.c.orig 2018-03-31 18:29:41.0 +0200
 +++ links-1.04/file.c  2020-09-06 12:21:37.464060729 +0200
 @@ -224,6 +224,7 @@ void file_func(struct connection *c)
@@ -92,10 +92,10 @@
}
if (!c->cache) {
if (get_cache_entry(c->url, >cache)) {
 links-0.97/links.h Wed Jul  3 10:36:17 2002
-+++ links-0.97/links.h.new Wed Jul  3 10:44:18 2002
-@@ -97,6 +97,10 @@
- #include 
+--- links-1.04/links.h.orig2023-10-25 07:59:24.384129610 +0200
 links-1.04/links.h 2023-10-25 08:01:46.170028157 +0200
+@@ -195,6 +195,10 @@ strtoq(const char *, char **, int);
+ #include 
  #endif
  
 +#ifdef HAVE_ZLIB_H

DISTFILES: fox16: fox-1.6.57.tar.gz

2023-10-25 Thread qboosh
Request by: qboosh


Files fetched: 1

STORED: http://fox-toolkit.org/ftp/fox-1.6.57.tar.gz
675ddeac64eef88d9f7360abaa56b995  fox-1.6.57.tar.gz
Size: 4284018 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/fox16] - updated to 1.6.57

2023-10-25 Thread qboosh
commit 5615ee3881692b51220eefb9c9c7c1f1c8a17585
Author: Jakub Bogusz 
Date:   Wed Oct 25 20:04:14 2023 +0200

- updated to 1.6.57

 fox16-Makefile.patch |  9 -
 fox16.spec   | 12 ++--
 2 files changed, 10 insertions(+), 11 deletions(-)
---
diff --git a/fox16.spec b/fox16.spec
index 1dc3814..afdf896 100644
--- a/fox16.spec
+++ b/fox16.spec
@@ -1,16 +1,16 @@
 #
 # Conditional build:
-%bcond_without static_libs # don't build static libraries
+%bcond_without static_libs # static libraries
 #
 Summary:   The FOX 1.6 C++ GUI Toolkit
 Summary(pl.UTF-8): FOX 1.6 - toolkit graficzny w C++
 Name:  fox16
-Version:   1.6.53
-Release:   2
+Version:   1.6.57
+Release:   1
 License:   LGPL v2.1+
 Group: X11/Libraries
-Source0:   http://ftp.fox-toolkit.org/pub/fox-%{version}.tar.gz
-# Source0-md5: 324a8f4c53e9bee690252b229ca74a73
+Source0:   http://fox-toolkit.org/ftp/fox-%{version}.tar.gz
+# Source0-md5: 675ddeac64eef88d9f7360abaa56b995
 Patch0:%{name}-opt.patch
 Patch1:%{name}-Makefile.patch
 Patch2:%{name}-format.patch
@@ -58,7 +58,7 @@ Summary:  FOX 1.6 example applications
 Summary(pl.UTF-8): Przykłady aplikacji wykorzystujących FOX 1.6
 Group: X11/Applications
 Requires:  %{name} = %{version}-%{release}
-Obsoletes: fox-example-apps
+Obsoletes: fox-example-apps < 0.99.173
 Obsoletes: fox-progs < 1.7
 Conflicts: fox-progs >= 1.7
 
diff --git a/fox16-Makefile.patch b/fox16-Makefile.patch
index 6d50469..f9bc8a2 100644
--- a/fox16-Makefile.patch
+++ b/fox16-Makefile.patch
@@ -1,9 +1,8 @@
-diff -Nru fox-1.4.5.orig/Makefile.am fox-1.4.5/Makefile.am
 fox-1.4.5.orig/Makefile.am 2005-02-16 13:32:39.178606728 +
-+++ fox-1.4.5/Makefile.am  2005-02-16 13:32:53.081493168 +
-@@ -4,7 +4,7 @@
+--- fox-1.6.57/Makefile.am.orig2023-10-25 06:38:27.117110350 +0200
 fox-1.6.57/Makefile.am 2023-10-25 06:22:03.079143715 +0200
+@@ -3,7 +3,7 @@
+ # For non-gcc compilers, change the options to "no-dependencies"
  AUTOMAKE_OPTIONS = foreign dist-zip
- #AUTOMAKE_OPTIONS = foreign dist-zip no-dependencies
  
 -SUBDIRS= utils include src chart doc tests shutterbug adie pathfinder 
calculator windows
 +SUBDIRS= utils include src chart tests shutterbug adie pathfinder 
calculator windows


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/fox16.git/commitdiff/5615ee3881692b51220eefb9c9c7c1f1c8a17585

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


[packages/kp5-libkscreen] - updated to 5.27.9

2023-10-25 Thread witekfl
commit 315a1f458b6b382c37045b8ddcf33f47f687f8e7
Author: Witold Filipczyk 
Date:   Wed Oct 25 09:45:55 2023 +0200

- updated to 5.27.9

 kp5-libkscreen.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/kp5-libkscreen.spec b/kp5-libkscreen.spec
index feb6129..b08f567 100644
--- a/kp5-libkscreen.spec
+++ b/kp5-libkscreen.spec
@@ -1,18 +1,18 @@
 #
 # Conditional build:
 %bcond_withtests   # build with tests
-%definekdeplasmaver5.27.8
+%definekdeplasmaver5.27.9
 %defineqtver   5.15.2
 %definekpname  libkscreen
 
 Summary:   KDE screen management software
 Name:  kp5-%{kpname}
-Version:   5.27.8
+Version:   5.27.9
 Release:   1
 License:   LGPL v2.1+
 Group: X11/Libraries
 Source0:   
https://download.kde.org/stable/plasma/%{kdeplasmaver}/%{kpname}-%{version}.tar.xz
-# Source0-md5: 0d98a7eb6e49b5542c9b99ba27a976f6
+# Source0-md5: 5be369e023867db462926ea20dc47d94
 URL:   http://www.kde.org/
 BuildRequires: Qt5Core-devel >= %{qtver}
 BuildRequires: cmake >= 3.16.0


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kp5-libkscreen.git/commitdiff/315a1f458b6b382c37045b8ddcf33f47f687f8e7

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


DISTFILES: kp5-breeze-plymouth: breeze-plymouth-5.27.9.tar.xz

2023-10-25 Thread witekfl
Request by: witekfl


Files fetched: 1

STORED: 
https://download.kde.org/stable/plasma/5.27.9/breeze-plymouth-5.27.9.tar.xz
f1450b508f2390e3537c155e3f8cd53b  breeze-plymouth-5.27.9.tar.xz
Size: 111036 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/kp5-kscreenlocker] - updated to 5.27.9

2023-10-25 Thread witekfl
commit ac8e8883d41e2626c73a78cf789dbda927f12e4b
Author: Witold Filipczyk 
Date:   Wed Oct 25 09:45:58 2023 +0200

- updated to 5.27.9

 kp5-kscreenlocker.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/kp5-kscreenlocker.spec b/kp5-kscreenlocker.spec
index 608a7eb..192ad5e 100644
--- a/kp5-kscreenlocker.spec
+++ b/kp5-kscreenlocker.spec
@@ -1,18 +1,18 @@
 #
 # Conditional build:
 %bcond_withtests   # build with tests
-%definekdeplasmaver5.27.8
+%definekdeplasmaver5.27.9
 %defineqtver   5.15.2
 %definekf5ver  5.19.0
 %definekpname  kscreenlocker
 Summary:   kscreenlocker
 Name:  kp5-%{kpname}
-Version:   5.27.8
+Version:   5.27.9
 Release:   1
 License:   LGPL v2.1+
 Group: X11/Libraries
 Source0:   
https://download.kde.org/stable/plasma/%{kdeplasmaver}/%{kpname}-%{version}.tar.xz
-# Source0-md5: 13a3822bbc70cbbb38ffaeedd44998af
+# Source0-md5: a7cce889af2d79290bcb1b1499630536
 URL:   http://www.kde.org/
 BuildRequires: Qt5Core-devel >= %{qtver}
 BuildRequires: Qt5Gui-devel >= %{qtver}


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kp5-kscreenlocker.git/commitdiff/ac8e8883d41e2626c73a78cf789dbda927f12e4b

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


DISTFILES: kp5-layer-shell-qt: layer-shell-qt-5.27.9.tar.xz

2023-10-25 Thread witekfl
Request by: witekfl


Files fetched: 1

STORED: 
https://download.kde.org/stable/plasma/5.27.9/layer-shell-qt-5.27.9.tar.xz
8d746089d2fa97a87e76e4b5c820971d  layer-shell-qt-5.27.9.tar.xz
Size: 18444 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/kp5-kwin] - updated to 5.27.9

2023-10-25 Thread witekfl
commit 79b9e9cfd507a5b511d92b097ded0a5e3d330cda
Author: Witold Filipczyk 
Date:   Wed Oct 25 09:46:02 2023 +0200

- updated to 5.27.9

 kp5-kwin.spec | 9 +
 1 file changed, 5 insertions(+), 4 deletions(-)
---
diff --git a/kp5-kwin.spec b/kp5-kwin.spec
index 35bfdfc..cc54fb5 100644
--- a/kp5-kwin.spec
+++ b/kp5-kwin.spec
@@ -4,7 +4,7 @@
 #
 # Conditional build:
 %bcond_withtests   # build with tests
-%definekdeplasmaver5.27.8
+%definekdeplasmaver5.27.9
 %definekf_ver  5.102.0
 %defineqt_ver  5.15.0
 %definekpname  kwin
@@ -12,17 +12,18 @@
 Summary:   KDE Window manager
 Summary(pl.UTF-8): Zarządca okien KDE
 Name:  kp5-%{kpname}
-Version:   5.27.8
+Version:   5.27.9
 Release:   1
 License:   LGPL v2.1+
 Group: X11/Libraries
 Source0:   
https://download.kde.org/stable/plasma/%{kdeplasmaver}/%{kpname}-%{version}.tar.xz
-# Source0-md5: c08f67907365d26e5f08c65e395b3992
+# Source0-md5: 95717e3b21e3877e18670428eecaa70d
 Patch0:kp5-kwin-absolute-path.patch
 URL:   http://www.kde.org/
 BuildRequires: EGL-devel
 BuildRequires: Mesa-libgbm-devel
 BuildRequires: OpenGL-devel
+BuildRequires: Qt5AccessibilitySupport-devel >= %{qt_ver}
 BuildRequires: Qt5Core-devel >= %{qt_ver}
 BuildRequires: Qt5DBus-devel >= %{qt_ver}
 BuildRequires: Qt5EventDispatcherSupport-devel >= %{qt_ver}
@@ -101,6 +102,7 @@ BuildRequires:  xorg-lib-libxkbcommon-devel >= 0.7.0
 BuildRequires: xorg-lib-libxkbcommon-x11-devel >= 0.7.0
 BuildRequires: xorg-xserver-Xwayland-devel
 BuildRequires: xz
+Requires:  %{name}-data = %{version}-%{release}
 Requires:  Qt5Core >= %{qt_ver}
 Requires:  Qt5DBus >= %{qt_ver}
 Requires:  Qt5Gui >= %{qt_ver}
@@ -140,7 +142,6 @@ Requires:   libinput >= 1.9
 Requires:  libxcb >= 1.10
 Requires:  xcb-util-wm >= 0.4
 Requires:  xorg-lib-libxkbcommon >= 0.7.0
-Requires:  %{name}-data = %{version}-%{release}
 Suggests:  hwdata
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kp5-kwin.git/commitdiff/79b9e9cfd507a5b511d92b097ded0a5e3d330cda

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


DISTFILES: kp5-libkscreen: libkscreen-5.27.9.tar.xz

2023-10-25 Thread witekfl
Request by: witekfl


Files fetched: 1

STORED: https://download.kde.org/stable/plasma/5.27.9/libkscreen-5.27.9.tar.xz
5be369e023867db462926ea20dc47d94  libkscreen-5.27.9.tar.xz
Size: 116060 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/kp5-libksysguard] - updated to 5.27.9

2023-10-25 Thread witekfl
commit 75620b89221f126f747e626c57095811e39273a7
Author: Witold Filipczyk 
Date:   Wed Oct 25 09:46:05 2023 +0200

- updated to 5.27.9

 kp5-libksysguard.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/kp5-libksysguard.spec b/kp5-libksysguard.spec
index 344f12f..f9cd762 100644
--- a/kp5-libksysguard.spec
+++ b/kp5-libksysguard.spec
@@ -1,18 +1,18 @@
 #
 # Conditional build:
 %bcond_withtests   # build with tests
-%definekdeplasmaver5.27.8
+%definekdeplasmaver5.27.9
 %defineqtver   5.15.2
 %definekpname  libksysguard
 
 Summary:   Library for monitoring your system
 Name:  kp5-%{kpname}
-Version:   5.27.8
+Version:   5.27.9
 Release:   1
 License:   LGPL v2.1+
 Group: X11/Libraries
 Source0:   
https://download.kde.org/stable/plasma/%{kdeplasmaver}/%{kpname}-%{version}.tar.xz
-# Source0-md5: 3e447c4199fb4c7a5976cbdf82ab2679
+# Source0-md5: 8fbd525b217c632106cb02075bd99754
 URL:   http://www.kde.org/
 BuildRequires: Qt5Core-devel >= %{qtver}
 BuildRequires: Qt5Sensors-devel >= %{qtver}


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kp5-libksysguard.git/commitdiff/75620b89221f126f747e626c57095811e39273a7

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


[packages/kp5-kpipewire] - updated to 5.27.9

2023-10-25 Thread witekfl
commit f7b8eda37c74cc9faf08b1778b839f0ec855974d
Author: Witold Filipczyk 
Date:   Wed Oct 25 09:46:09 2023 +0200

- updated to 5.27.9

 kp5-kpipewire.spec | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/kp5-kpipewire.spec b/kp5-kpipewire.spec
index 2aeea13..c15c148 100644
--- a/kp5-kpipewire.spec
+++ b/kp5-kpipewire.spec
@@ -1,17 +1,17 @@
 #
 # Conditional build:
 %bcond_withtests   # build with tests
-%definekdeplasmaver5.27.8
+%definekdeplasmaver5.27.9
 %defineqtver   5.15.2
 %definekpname  kpipewire
 Summary:   a set of convenient classes to use PipeWire in Qt projects
 Name:  kp5-%{kpname}
-Version:   5.27.8
-Release:   2
+Version:   5.27.9
+Release:   1
 License:   GPL v2+/LGPL v2.1+
 Group: X11/Libraries
 Source0:   
https://download.kde.org/stable/plasma/%{kdeplasmaver}/%{kpname}-%{version}.tar.xz
-# Source0-md5: e4ddc2b1415948acef71f2e4941213e0
+# Source0-md5: 65d0a123985bc901cbd2387767372110
 URL:   http://www.kde.org/
 BuildRequires: Qt5WaylandClient-devel
 BuildRequires: cmake >= 3.16.0


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kp5-kpipewire.git/commitdiff/f7b8eda37c74cc9faf08b1778b839f0ec855974d

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


DISTFILES: kp5-kscreenlocker: kscreenlocker-5.27.9.tar.xz

2023-10-25 Thread witekfl
Request by: witekfl


Files fetched: 1

STORED: 
https://download.kde.org/stable/plasma/5.27.9/kscreenlocker-5.27.9.tar.xz
a7cce889af2d79290bcb1b1499630536  kscreenlocker-5.27.9.tar.xz
Size: 161040 bytes


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


DISTFILES: kp5-breeze: breeze-5.27.9.tar.xz

2023-10-25 Thread witekfl
Request by: witekfl


Files fetched: 1

STORED: https://download.kde.org/stable/plasma/5.27.9/breeze-5.27.9.tar.xz
de7b4629697279e5f231751f1f68bce9  breeze-5.27.9.tar.xz
Size: 87595232 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/kp5-plasma-workspace] - updated to 5.27.9

2023-10-25 Thread witekfl
commit 4752535b0d290922c31adf16d2109edeb1faf38c
Author: Witold Filipczyk 
Date:   Wed Oct 25 09:46:12 2023 +0200

- updated to 5.27.9

 kp5-plasma-workspace.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/kp5-plasma-workspace.spec b/kp5-plasma-workspace.spec
index 9cc607a..03d1fd2 100644
--- a/kp5-plasma-workspace.spec
+++ b/kp5-plasma-workspace.spec
@@ -4,19 +4,19 @@
 # TODO:
 #  * dbusmenu-qt5 , Support for notification area menus via the DBusMenu 
protocol , 
 #
-%definekdeplasmaver5.27.8
+%definekdeplasmaver5.27.9
 %defineqtver   5.15.2
 %definekf5ver  5.102.0
 %definekpname  plasma-workspace
 
 Summary:   KDE Plasma Workspace
 Name:  kp5-%{kpname}
-Version:   5.27.8
+Version:   5.27.9
 Release:   1
 License:   LGPL v2.1+
 Group: X11/Libraries
 Source0:   
https://download.kde.org/stable/plasma/%{kdeplasmaver}/%{kpname}-%{version}.tar.xz
-# Source0-md5: 98e177e0e5f7ee333cd0f0a471e71cb5
+# Source0-md5: b47206f90af2731e8004f6022625763c
 Source1:   kde.pam
 Patch0:kp5-plasma-workspace-absolute-path.patch
 Patch1:kp5-plasma-workspace-scripts.patch


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kp5-plasma-workspace.git/commitdiff/4752535b0d290922c31adf16d2109edeb1faf38c

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


DISTFILES: kp5-libksysguard: libksysguard-5.27.9.tar.xz

2023-10-25 Thread witekfl
Request by: witekfl


Files fetched: 1

STORED: https://download.kde.org/stable/plasma/5.27.9/libksysguard-5.27.9.tar.xz
8fbd525b217c632106cb02075bd99754  libksysguard-5.27.9.tar.xz
Size: 885432 bytes


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


DISTFILES: kp5-kwin: kwin-5.27.9.tar.xz

2023-10-25 Thread witekfl
Request by: witekfl


Files fetched: 1

STORED: https://download.kde.org/stable/plasma/5.27.9/kwin-5.27.9.tar.xz
95717e3b21e3877e18670428eecaa70d  kwin-5.27.9.tar.xz
Size: 7633316 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/kp5-kde-cli-tools] - updated to 5.27.9

2023-10-25 Thread witekfl
commit cc0f92ba911fe252699689d7ac4c1aed45d09cfc
Author: Witold Filipczyk 
Date:   Wed Oct 25 09:46:16 2023 +0200

- updated to 5.27.9

 kp5-kde-cli-tools.spec | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/kp5-kde-cli-tools.spec b/kp5-kde-cli-tools.spec
index f443b7b..82bb309 100644
--- a/kp5-kde-cli-tools.spec
+++ b/kp5-kde-cli-tools.spec
@@ -1,17 +1,17 @@
 #
 # Conditional build:
 %bcond_withtests   # build with tests
-%definekdeplasmaver5.27.8
+%definekdeplasmaver5.27.9
 %defineqtver   5.15.2
 %definekpname  kde-cli-tools
 Summary:   Tools based on KDE Frameworks 5 to better interact with the 
system
 Name:  kp5-%{kpname}
-Version:   5.27.8
-Release:   2
+Version:   5.27.9
+Release:   1
 License:   GPL v2+/LGPL v2.1+
 Group: X11/Libraries
 Source0:   
https://download.kde.org/stable/plasma/%{kdeplasmaver}/%{kpname}-%{version}.tar.xz
-# Source0-md5: fc88fb77bd69b01b9147d4e5bee34c40
+# Source0-md5: f812099e37869f3db027f358ecbcecc7
 URL:   https://www.kde.org/
 BuildRequires: Qt5Core-devel >= %{qtver}
 BuildRequires: cmake >= 3.16.0


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kp5-kde-cli-tools.git/commitdiff/cc0f92ba911fe252699689d7ac4c1aed45d09cfc

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


DISTFILES: kp5-kpipewire: kpipewire-5.27.9.tar.xz

2023-10-25 Thread witekfl
Request by: witekfl


Files fetched: 1

STORED: https://download.kde.org/stable/plasma/5.27.9/kpipewire-5.27.9.tar.xz
65d0a123985bc901cbd2387767372110  kpipewire-5.27.9.tar.xz
Size: 59796 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/kp5-kde-gtk-config] - updated to 5.27.9

2023-10-25 Thread witekfl
commit 6fab944893892642f50916986fc75a14ef4352b5
Author: Witold Filipczyk 
Date:   Wed Oct 25 09:46:20 2023 +0200

- updated to 5.27.9

 kp5-kde-gtk-config.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/kp5-kde-gtk-config.spec b/kp5-kde-gtk-config.spec
index 37d426d..850af50 100644
--- a/kp5-kde-gtk-config.spec
+++ b/kp5-kde-gtk-config.spec
@@ -1,17 +1,17 @@
 #
 # Conditional build:
 %bcond_withtests   # build with tests
-%definekdeplasmaver5.27.8
+%definekdeplasmaver5.27.9
 %defineqtver   5.15.2
 %definekpname  kde-gtk-config
 Summary:   GTK2 and GTK3 Configurator for KDE
 Name:  kp5-%{kpname}
-Version:   5.27.8
+Version:   5.27.9
 Release:   1
 License:   GPL v2+/LGPL v2.1+
 Group: X11/Libraries
 Source0:   
https://download.kde.org/stable/plasma/%{kdeplasmaver}/%{kpname}-%{version}.tar.xz
-# Source0-md5: 4dc3f12d4935d6d44d2e85f1de3c1dc2
+# Source0-md5: 2f336708889452f4e841132e9a18258d
 Patch0:x32.patch
 %definespecflags   -I/usr/include/harfbuzz
 URL:   http://www.kde.org/


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kp5-kde-gtk-config.git/commitdiff/6fab944893892642f50916986fc75a14ef4352b5

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


DISTFILES: kp5-plasma-workspace: plasma-workspace-5.27.9.tar.xz

2023-10-25 Thread witekfl
Request by: witekfl


Files fetched: 1

STORED: 
https://download.kde.org/stable/plasma/5.27.9/plasma-workspace-5.27.9.tar.xz
b47206f90af2731e8004f6022625763c  plasma-workspace-5.27.9.tar.xz
Size: 19467152 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/kp5-kdeplasma-addons] - updated to 5.27.9

2023-10-25 Thread witekfl
commit de74c829a5040b3a39287a5c72d5f17ca9de0f80
Author: Witold Filipczyk 
Date:   Wed Oct 25 09:46:26 2023 +0200

- updated to 5.27.9

 kp5-kdeplasma-addons.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/kp5-kdeplasma-addons.spec b/kp5-kdeplasma-addons.spec
index cca1c67..f5b20c5 100644
--- a/kp5-kdeplasma-addons.spec
+++ b/kp5-kdeplasma-addons.spec
@@ -7,18 +7,18 @@
 %undefine  with_qtwebengine
 %endif
 
-%definekdeplasmaver5.27.8
+%definekdeplasmaver5.27.9
 %defineqtver   5.15.2
 %definekpname  kdeplasma-addons
 
 Summary:   All kind of addons to improve your Plasma experience
 Name:  kp5-%{kpname}
-Version:   5.27.8
+Version:   5.27.9
 Release:   1
 License:   LGPL v2.1+
 Group: X11/Libraries
 Source0:   
https://download.kde.org/stable/plasma/%{kdeplasmaver}/%{kpname}-%{version}.tar.xz
-# Source0-md5: fec32d99776bebe8bb2a91dbbdedeee7
+# Source0-md5: 70c298db54203e935c48e91590180d47
 URL:   http://www.kde.org/
 BuildRequires: Qt5Core-devel >= %{qtver}
 %{?with_qtwebengine:BuildRequires: Qt5WebEngine-devel}


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kp5-kdeplasma-addons.git/commitdiff/de74c829a5040b3a39287a5c72d5f17ca9de0f80

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


DISTFILES: kp5-kde-gtk-config: kde-gtk-config-5.27.9.tar.xz

2023-10-25 Thread witekfl
Request by: witekfl


Files fetched: 1

STORED: 
https://download.kde.org/stable/plasma/5.27.9/kde-gtk-config-5.27.9.tar.xz
2f336708889452f4e841132e9a18258d  kde-gtk-config-5.27.9.tar.xz
Size: 77288 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/kp5-ksshaskpass] - updated to 5.27.9

2023-10-25 Thread witekfl
commit c699974aa9d70a35a806f84b83071cacc6e8c516
Author: Witold Filipczyk 
Date:   Wed Oct 25 09:46:49 2023 +0200

- updated to 5.27.9

 kp5-ksshaskpass.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/kp5-ksshaskpass.spec b/kp5-ksshaskpass.spec
index 44a3184..38afdbf 100644
--- a/kp5-ksshaskpass.spec
+++ b/kp5-ksshaskpass.spec
@@ -1,17 +1,17 @@
 #
 # Conditional build:
 %bcond_withtests   # build with tests
-%definekdeplasmaver5.27.8
+%definekdeplasmaver5.27.9
 %defineqtver   5.15.2
 %definekpname  ksshaskpass
 Summary:   ssh-add helper that uses kwallet and kpassworddialog
 Name:  kp5-%{kpname}
-Version:   5.27.8
+Version:   5.27.9
 Release:   1
 License:   GPL v2+/LGPL v2.1+
 Group: X11/Libraries
 Source0:   
https://download.kde.org/stable/plasma/%{kdeplasmaver}/%{kpname}-%{version}.tar.xz
-# Source0-md5: 11b7d63d5ea479fe739a7b3d022aca2d
+# Source0-md5: 91d2157906d3b877339bd89bb59c2fe5
 URL:   http://www.kde.org/
 BuildRequires: Qt5Core-devel >= %{qtver}
 BuildRequires: cmake >= 3.16.0


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kp5-ksshaskpass.git/commitdiff/c699974aa9d70a35a806f84b83071cacc6e8c516

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


[packages/kp5-kgamma5] - updated to 5.27.9

2023-10-25 Thread witekfl
commit 9a50336d3a6da6c040f7d65d3f4113c8bfb657e0
Author: Witold Filipczyk 
Date:   Wed Oct 25 09:46:31 2023 +0200

- updated to 5.27.9

 kp5-kgamma5.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/kp5-kgamma5.spec b/kp5-kgamma5.spec
index ed8568d..c881482 100644
--- a/kp5-kgamma5.spec
+++ b/kp5-kgamma5.spec
@@ -1,17 +1,17 @@
 #
 # Conditional build:
 %bcond_withtests   # build with tests
-%definekdeplasmaver5.27.8
+%definekdeplasmaver5.27.9
 %defineqtver   5.15.2
 %definekpname  kgamma5
 Summary:   kgamma5
 Name:  kp5-%{kpname}
-Version:   5.27.8
+Version:   5.27.9
 Release:   1
 License:   GPL v2+/LGPL v2.1+
 Group: X11/Libraries
 Source0:   
https://download.kde.org/stable/plasma/%{kdeplasmaver}/%{kpname}-%{version}.tar.xz
-# Source0-md5: 16689828ddadce96905a1e5c64b1ab5f
+# Source0-md5: 2445a1c0a3d84c2ee96de07492ddce89
 URL:   http://www.kde.org/
 BuildRequires: Qt5Core-devel >= %{qtver}
 BuildRequires: Qt5Gui-devel >= %{qtver}


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kp5-kgamma5.git/commitdiff/9a50336d3a6da6c040f7d65d3f4113c8bfb657e0

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


[packages/kp5-khotkeys] - updated to 5.27.9

2023-10-25 Thread witekfl
commit 36a8c0db3b0ae017f107babfdfaec507ff9079fa
Author: Witold Filipczyk 
Date:   Wed Oct 25 09:46:35 2023 +0200

- updated to 5.27.9

 kp5-khotkeys.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/kp5-khotkeys.spec b/kp5-khotkeys.spec
index e7d2e20..54c130e 100644
--- a/kp5-khotkeys.spec
+++ b/kp5-khotkeys.spec
@@ -1,18 +1,18 @@
 #
 # Conditional build:
 %bcond_withtests   # build with tests
-%definekdeplasmaver5.27.8
+%definekdeplasmaver5.27.9
 %defineqtver   5.15.2
 %definekpname  khotkeys
 
 Summary:   Hot keys handling
 Name:  kp5-%{kpname}
-Version:   5.27.8
+Version:   5.27.9
 Release:   1
 License:   LGPL v2.1+
 Group: X11/Libraries
 Source0:   
https://download.kde.org/stable/plasma/%{kdeplasmaver}/%{kpname}-%{version}.tar.xz
-# Source0-md5: 048e81bdcceaf0f6e57c74bd1046b9d7
+# Source0-md5: de5594cd049e68ae764c1668d711473f
 URL:   http://www.kde.org/
 BuildRequires: Qt5Core-devel >= %{qtver}
 BuildRequires: kf5-kdelibs4support-devel


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kp5-khotkeys.git/commitdiff/36a8c0db3b0ae017f107babfdfaec507ff9079fa

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


DISTFILES: kp5-kdeplasma-addons: kdeplasma-addons-5.27.9.tar.xz

2023-10-25 Thread witekfl
Request by: witekfl


Files fetched: 1

STORED: 
https://download.kde.org/stable/plasma/5.27.9/kdeplasma-addons-5.27.9.tar.xz
70c298db54203e935c48e91590180d47  kdeplasma-addons-5.27.9.tar.xz
Size: 822664 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/kp5-kinfocenter] - updated to 5.27.9

2023-10-25 Thread witekfl
commit 07298b3799c6802784210b90e3a8989f9ca09094
Author: Witold Filipczyk 
Date:   Wed Oct 25 09:46:39 2023 +0200

- updated to 5.27.9

 kp5-kinfocenter.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/kp5-kinfocenter.spec b/kp5-kinfocenter.spec
index 1f52fda..4c66792 100644
--- a/kp5-kinfocenter.spec
+++ b/kp5-kinfocenter.spec
@@ -1,17 +1,17 @@
 #
 # Conditional build:
 %bcond_withtests   # build with tests
-%definekdeplasmaver5.27.8
+%definekdeplasmaver5.27.9
 %defineqtver   5.15.2
 %definekpname  kinfocenter
 Summary:   kinfocenter
 Name:  kp5-%{kpname}
-Version:   5.27.8
+Version:   5.27.9
 Release:   1
 License:   GPL v2+/LGPL v2.1+
 Group: X11/Libraries
 Source0:   
https://download.kde.org/stable/plasma/%{kdeplasmaver}/%{kpname}-%{version}.tar.xz
-# Source0-md5: ea77609010fc2bead14ed5c872c5b374
+# Source0-md5: ca83253ccce484f94a4c17a529ba0f82
 URL:   http://www.kde.org/
 BuildRequires: OpenGL-GLU-devel
 BuildRequires: OpenGL-devel


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kp5-kinfocenter.git/commitdiff/07298b3799c6802784210b90e3a8989f9ca09094

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


DISTFILES: kp5-kgamma5: kgamma5-5.27.9.tar.xz

2023-10-25 Thread witekfl
Request by: witekfl


Files fetched: 1

STORED: https://download.kde.org/stable/plasma/5.27.9/kgamma5-5.27.9.tar.xz
2445a1c0a3d84c2ee96de07492ddce89  kgamma5-5.27.9.tar.xz
Size: 88448 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/kp5-kmenuedit] - updated to 5.27.9

2023-10-25 Thread witekfl
commit 7cb565ed98efbfffcb85cd05e94ed92cc6d67d0e
Author: Witold Filipczyk 
Date:   Wed Oct 25 09:46:42 2023 +0200

- updated to 5.27.9

 kp5-kmenuedit.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/kp5-kmenuedit.spec b/kp5-kmenuedit.spec
index e62203f..8cf1c99 100644
--- a/kp5-kmenuedit.spec
+++ b/kp5-kmenuedit.spec
@@ -1,18 +1,18 @@
 #
 # Conditional build:
 %bcond_withtests   # build with tests
-%definekdeplasmaver5.27.8
+%definekdeplasmaver5.27.9
 %defineqtver   5.15.2
 %definekpname  kmenuedit
 
 Summary:   KDE menu editor
 Name:  kp5-%{kpname}
-Version:   5.27.8
+Version:   5.27.9
 Release:   1
 License:   LGPL v2.1+
 Group: X11/Libraries
 Source0:   
https://download.kde.org/stable/plasma/%{kdeplasmaver}/%{kpname}-%{version}.tar.xz
-# Source0-md5: 4db6f8a5687dfc90bb2b8eb531051566
+# Source0-md5: a4f7846f258c216aa0cce005b29cd23b
 URL:   http://www.kde.org/
 BuildRequires: Qt5Core-devel >= %{qtver}
 BuildRequires: cmake >= 3.16.0


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kp5-kmenuedit.git/commitdiff/7cb565ed98efbfffcb85cd05e94ed92cc6d67d0e

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


[packages/kp5-ksystemstats] - updated to 5.27.9

2023-10-25 Thread witekfl
commit dabb484139c3a6f45e31d4e480e853d602cae1d2
Author: Witold Filipczyk 
Date:   Wed Oct 25 09:46:52 2023 +0200

- updated to 5.27.9

 kp5-ksystemstats.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/kp5-ksystemstats.spec b/kp5-ksystemstats.spec
index 4b04018..db8f26a 100644
--- a/kp5-ksystemstats.spec
+++ b/kp5-ksystemstats.spec
@@ -1,17 +1,17 @@
 #
 # Conditional build:
 %bcond_withtests   # build with tests
-%definekdeplasmaver5.27.8
+%definekdeplasmaver5.27.9
 %defineqtver   5.15.2
 %definekpname  ksystemstats
 Summary:   ksystemstats
 Name:  kp5-%{kpname}
-Version:   5.27.8
+Version:   5.27.9
 Release:   1
 License:   BSD Clause 2
 Group: X11/Libraries
 Source0:   
https://download.kde.org/stable/plasma/%{kdeplasmaver}/%{kpname}-%{version}.tar.xz
-# Source0-md5: b804c25c92767127368f71a0b7f9cdfb
+# Source0-md5: 70e370b0a3da79a6b7351c5c5480902f
 URL:   http://www.kde.org/
 BuildRequires: Qt5Core-devel >= 5.15.0
 BuildRequires: cmake >= 3.16.0


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kp5-ksystemstats.git/commitdiff/dabb484139c3a6f45e31d4e480e853d602cae1d2

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


[packages/kp5-kscreen] - updated to 5.27.9

2023-10-25 Thread witekfl
commit ba75f69ecf348c395bff8e5bdcc28b9f6c939355
Author: Witold Filipczyk 
Date:   Wed Oct 25 09:46:45 2023 +0200

- updated to 5.27.9

 kp5-kscreen.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/kp5-kscreen.spec b/kp5-kscreen.spec
index 0476a26..4c466ff 100644
--- a/kp5-kscreen.spec
+++ b/kp5-kscreen.spec
@@ -1,17 +1,17 @@
 #
 # Conditional build:
 %bcond_withtests   # build with tests
-%definekdeplasmaver5.27.8
+%definekdeplasmaver5.27.9
 %defineqtver   5.15.2
 %definekpname  kscreen
 Summary:   KDE's screen management software
 Name:  kp5-%{kpname}
-Version:   5.27.8
+Version:   5.27.9
 Release:   1
 License:   GPL v2+/LGPL v2.1+
 Group: X11/Libraries
 Source0:   
https://download.kde.org/stable/plasma/%{kdeplasmaver}/%{kpname}-%{version}.tar.xz
-# Source0-md5: bbf8316d278be73b64e638f04fd8e6b1
+# Source0-md5: 6c39b1b86423dc22a756bdafe4d07702
 URL:   http://www.kde.org/
 BuildRequires: Qt5Core-devel >= %{qtver}
 BuildRequires: cmake >= 3.16.0


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kp5-kscreen.git/commitdiff/ba75f69ecf348c395bff8e5bdcc28b9f6c939355

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


DISTFILES: kp5-khotkeys: khotkeys-5.27.9.tar.xz

2023-10-25 Thread witekfl
Request by: witekfl


Files fetched: 1

STORED: https://download.kde.org/stable/plasma/5.27.9/khotkeys-5.27.9.tar.xz
de5594cd049e68ae764c1668d711473f  khotkeys-5.27.9.tar.xz
Size: 1895220 bytes


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


DISTFILES: kp5-kscreen: kscreen-5.27.9.tar.xz

2023-10-25 Thread witekfl
Request by: witekfl


Files fetched: 1

STORED: https://download.kde.org/stable/plasma/5.27.9/kscreen-5.27.9.tar.xz
6c39b1b86423dc22a756bdafe4d07702  kscreen-5.27.9.tar.xz
Size: 185952 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/kp5-kwallet-pam] - updated to 5.27.9

2023-10-25 Thread witekfl
commit 0c7b146a9fbd00f56cce8d68fafa94352e5c4821
Author: Witold Filipczyk 
Date:   Wed Oct 25 09:46:56 2023 +0200

- updated to 5.27.9

 kp5-kwallet-pam.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/kp5-kwallet-pam.spec b/kp5-kwallet-pam.spec
index 93ce26a..d443242 100644
--- a/kp5-kwallet-pam.spec
+++ b/kp5-kwallet-pam.spec
@@ -1,17 +1,17 @@
 #
 # Conditional build:
 %bcond_withtests   # build with tests
-%definekdeplasmaver5.27.8
+%definekdeplasmaver5.27.9
 %defineqtver   5.15.2
 %definekpname  kwallet-pam
 Summary:   KWallet PAM integration
 Name:  kp5-%{kpname}
-Version:   5.27.8
+Version:   5.27.9
 Release:   1
 License:   GPL v2+/LGPL v2.1+
 Group: Base
 Source0:   
https://download.kde.org/stable/plasma/%{kdeplasmaver}/%{kpname}-%{version}.tar.xz
-# Source0-md5: 1d5e970f4f8eb165a0d0e5d2431bdaaa
+# Source0-md5: c8e189585af696861d61bf480a377c7a
 URL:   http://www.kde.org/
 BuildRequires: cmake >= 3.16.0
 BuildRequires: kf5-extra-cmake-modules >= 1.4.0


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kp5-kwallet-pam.git/commitdiff/0c7b146a9fbd00f56cce8d68fafa94352e5c4821

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


[packages/kp5-kwayland-integration] - updated to 5.27.9

2023-10-25 Thread witekfl
commit ef796bbd1abc9143bb4b648d17f692d36063f0c5
Author: Witold Filipczyk 
Date:   Wed Oct 25 09:47:00 2023 +0200

- updated to 5.27.9

 kp5-kwayland-integration.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/kp5-kwayland-integration.spec b/kp5-kwayland-integration.spec
index d52333c..bfdf472 100644
--- a/kp5-kwayland-integration.spec
+++ b/kp5-kwayland-integration.spec
@@ -1,18 +1,18 @@
 #
 # Conditional build:
 %bcond_withtests   # build with tests
-%definekdeplasmaver5.27.8
+%definekdeplasmaver5.27.9
 %defineqtver   5.15.2
 %definekpname  kwayland-integration
 
 Summary:   Provides integration plugins for various KDE frameworks for the 
wayland windowing system
 Name:  kp5-%{kpname}
-Version:   5.27.8
+Version:   5.27.9
 Release:   1
 License:   LGPL v2.1+
 Group: X11/Libraries
 Source0:   
https://download.kde.org/stable/plasma/%{kdeplasmaver}/%{kpname}-%{version}.tar.xz
-# Source0-md5: 41df9f343a43d7e1cd127d37fbab6d50
+# Source0-md5: 0766ffad491c53ea3e36f3c1e04ed6a3
 URL:   http://www.kde.org/
 BuildRequires: Qt5Core-devel >= %{qtver}
 BuildRequires: Qt5WaylandClient-devel >= %{qtver}


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kp5-kwayland-integration.git/commitdiff/ef796bbd1abc9143bb4b648d17f692d36063f0c5

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


DISTFILES: kp5-ksshaskpass: ksshaskpass-5.27.9.tar.xz

2023-10-25 Thread witekfl
Request by: witekfl


Files fetched: 1

STORED: https://download.kde.org/stable/plasma/5.27.9/ksshaskpass-5.27.9.tar.xz
91d2157906d3b877339bd89bb59c2fe5  ksshaskpass-5.27.9.tar.xz
Size: 28032 bytes


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


DISTFILES: kp5-ksystemstats: ksystemstats-5.27.9.tar.xz

2023-10-25 Thread witekfl
Request by: witekfl


Files fetched: 1

STORED: https://download.kde.org/stable/plasma/5.27.9/ksystemstats-5.27.9.tar.xz
70e370b0a3da79a6b7351c5c5480902f  ksystemstats-5.27.9.tar.xz
Size: 116580 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/kp5-kwrited] - updated to 5.27.9

2023-10-25 Thread witekfl
commit 9a39e30d179c1406e99a5fc8009ab188085c27a8
Author: Witold Filipczyk 
Date:   Wed Oct 25 09:47:03 2023 +0200

- updated to 5.27.9

 kp5-kwrited.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/kp5-kwrited.spec b/kp5-kwrited.spec
index d92d526..7806546 100644
--- a/kp5-kwrited.spec
+++ b/kp5-kwrited.spec
@@ -1,17 +1,17 @@
 #
 # Conditional build:
 %bcond_withtests   # build with tests
-%definekdeplasmaver5.27.8
+%definekdeplasmaver5.27.9
 %defineqtver   5.15.2
 %definekpname  kwrited
 Summary:   kwrited
 Name:  kp5-%{kpname}
-Version:   5.27.8
+Version:   5.27.9
 Release:   1
 License:   GPL v2+/LGPL v2.1+
 Group: Base
 Source0:   
https://download.kde.org/stable/plasma/%{kdeplasmaver}/%{kpname}-%{version}.tar.xz
-# Source0-md5: 667ddb3f0268a91d35a902e525a14441
+# Source0-md5: 17446a45250972265dd4a09609e96cc9
 URL:   http://www.kde.org/
 BuildRequires: Qt5Core-devel
 BuildRequires: Qt5Gui-devel >= %{qtver}


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kp5-kwrited.git/commitdiff/9a39e30d179c1406e99a5fc8009ab188085c27a8

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


[packages/kp5-milou] - updated to 5.27.9

2023-10-25 Thread witekfl
commit 71cd6f89f2197817347ef86772123d5d41e5d0cb
Author: Witold Filipczyk 
Date:   Wed Oct 25 09:47:07 2023 +0200

- updated to 5.27.9

 kp5-milou.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/kp5-milou.spec b/kp5-milou.spec
index fc199a7..895884c 100644
--- a/kp5-milou.spec
+++ b/kp5-milou.spec
@@ -1,17 +1,17 @@
 #
 # Conditional build:
 %bcond_withtests   # build with tests
-%definekdeplasmaver5.27.8
+%definekdeplasmaver5.27.9
 %defineqtver   5.15.2
 %definekpname  milou
 Summary:   A dedicated search application built on top of Baloo
 Name:  kp5-%{kpname}
-Version:   5.27.8
+Version:   5.27.9
 Release:   1
 License:   GPL v2+/LGPL v2.1+
 Group: X11/Libraries
 Source0:   
https://download.kde.org/stable/plasma/%{kdeplasmaver}/%{kpname}-%{version}.tar.xz
-# Source0-md5: dc177ea37026eceed2e491f70f93eb8d
+# Source0-md5: 5d192457ae760d75a65adb430c24d65a
 URL:   http://www.kde.org/
 BuildRequires: Qt5Core-devel >= %{qtver}
 BuildRequires: cmake >= 3.16.0


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kp5-milou.git/commitdiff/71cd6f89f2197817347ef86772123d5d41e5d0cb

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


DISTFILES: kp5-kwallet-pam: kwallet-pam-5.27.9.tar.xz

2023-10-25 Thread witekfl
Request by: witekfl


Files fetched: 1

STORED: https://download.kde.org/stable/plasma/5.27.9/kwallet-pam-5.27.9.tar.xz
c8e189585af696861d61bf480a377c7a  kwallet-pam-5.27.9.tar.xz
Size: 22876 bytes


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


DISTFILES: kp5-kinfocenter: kinfocenter-5.27.9.tar.xz

2023-10-25 Thread witekfl
Request by: witekfl


Files fetched: 1

STORED: https://download.kde.org/stable/plasma/5.27.9/kinfocenter-5.27.9.tar.xz
ca83253ccce484f94a4c17a529ba0f82  kinfocenter-5.27.9.tar.xz
Size: 1016368 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/kp5-oxygen] - updated to 5.27.9

2023-10-25 Thread witekfl
commit 287f6a26eb765c8fe36a971c62ace88a00a0b3d2
Author: Witold Filipczyk 
Date:   Wed Oct 25 09:47:11 2023 +0200

- updated to 5.27.9

 kp5-oxygen.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/kp5-oxygen.spec b/kp5-oxygen.spec
index 10d8114..520f267 100644
--- a/kp5-oxygen.spec
+++ b/kp5-oxygen.spec
@@ -1,17 +1,17 @@
 #
 # Conditional build:
 %bcond_withtests   # build with tests
-%definekdeplasmaver5.27.8
+%definekdeplasmaver5.27.9
 %defineqtver   5.15.2
 %definekpname  oxygen
 Summary:   Plasma and Qt widget style and window decorations for Plasma 5 
and KDE 4
 Name:  kp5-%{kpname}
-Version:   5.27.8
+Version:   5.27.9
 Release:   1
 License:   GPL v2+/LGPL v2.1+
 Group: X11/Libraries
 Source0:   
https://download.kde.org/stable/plasma/%{kdeplasmaver}/%{kpname}-%{version}.tar.xz
-# Source0-md5: 0d94e8ccdc276a33027da700dd479d96
+# Source0-md5: fb5c1992d420fc6907a0f13c008e400f
 URL:   http://www.kde.org/
 BuildRequires: Qt5Core-devel >= %{qtver}
 BuildRequires: cmake >= 3.16.0


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kp5-oxygen.git/commitdiff/287f6a26eb765c8fe36a971c62ace88a00a0b3d2

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


DISTFILES: kp5-kwayland-integration: kwayland-integration-5.27.9.tar.xz

2023-10-25 Thread witekfl
Request by: witekfl


Files fetched: 1

STORED: 
https://download.kde.org/stable/plasma/5.27.9/kwayland-integration-5.27.9.tar.xz
0766ffad491c53ea3e36f3c1e04ed6a3  kwayland-integration-5.27.9.tar.xz
Size: 25776 bytes


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


DISTFILES: kp5-kmenuedit: kmenuedit-5.27.9.tar.xz

2023-10-25 Thread witekfl
Request by: witekfl


Files fetched: 1

STORED: https://download.kde.org/stable/plasma/5.27.9/kmenuedit-5.27.9.tar.xz
a4f7846f258c216aa0cce005b29cd23b  kmenuedit-5.27.9.tar.xz
Size: 932188 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/kp5-plasma-browser-integration] - updated to 5.27.9

2023-10-25 Thread witekfl
commit 02348283f5117203f2caa61129bfe81a707e67a7
Author: Witold Filipczyk 
Date:   Wed Oct 25 09:47:14 2023 +0200

- updated to 5.27.9

 kp5-plasma-browser-integration.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/kp5-plasma-browser-integration.spec 
b/kp5-plasma-browser-integration.spec
index f4e0390..38424bd 100644
--- a/kp5-plasma-browser-integration.spec
+++ b/kp5-plasma-browser-integration.spec
@@ -1,18 +1,18 @@
 #
 # Conditional build:
 %bcond_withtests   # build with tests
-%definekdeplasmaver5.27.8
+%definekdeplasmaver5.27.9
 %defineqtver   5.15.2
 %definekpname  plasma-browser-integration
 
 Summary:   KDE Plasma Browser Integration
 Name:  kp5-%{kpname}
-Version:   5.27.8
+Version:   5.27.9
 Release:   1
 License:   LGPL v2.1+
 Group: X11/Libraries
 Source0:   
https://download.kde.org/stable/plasma/%{kdeplasmaver}/%{kpname}-%{version}.tar.xz
-# Source0-md5: 98d1c40a0f9e51848d2bcdace11846dc
+# Source0-md5: 8e114b03049a538d80effc8828ff6850
 URL:   http://www.kde.org/
 BuildRequires: Qt5Core-devel >= %{qtver}
 BuildRequires: Qt5DBus-devel


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kp5-plasma-browser-integration.git/commitdiff/02348283f5117203f2caa61129bfe81a707e67a7

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


DISTFILES: kp5-milou: milou-5.27.9.tar.xz

2023-10-25 Thread witekfl
Request by: witekfl


Files fetched: 1

STORED: https://download.kde.org/stable/plasma/5.27.9/milou-5.27.9.tar.xz
5d192457ae760d75a65adb430c24d65a  milou-5.27.9.tar.xz
Size: 58564 bytes


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


DISTFILES: kp5-kwrited: kwrited-5.27.9.tar.xz

2023-10-25 Thread witekfl
Request by: witekfl


Files fetched: 1

STORED: https://download.kde.org/stable/plasma/5.27.9/kwrited-5.27.9.tar.xz
17446a45250972265dd4a09609e96cc9  kwrited-5.27.9.tar.xz
Size: 23436 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/kp5-plasma-desktop] - updated to 5.27.9

2023-10-25 Thread witekfl
commit fb81d71db9cbc9f6bdb12caf1f5716158417d8e5
Author: Witold Filipczyk 
Date:   Wed Oct 25 09:47:17 2023 +0200

- updated to 5.27.9

 kp5-plasma-desktop.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/kp5-plasma-desktop.spec b/kp5-plasma-desktop.spec
index 41be368..5a6eda6 100644
--- a/kp5-plasma-desktop.spec
+++ b/kp5-plasma-desktop.spec
@@ -4,18 +4,18 @@
 # TODO:
 # PackageKit qt5
 #
-%definekdeplasmaver5.27.8
+%definekdeplasmaver5.27.9
 %defineqtver   5.15.2
 %definekpname  plasma-desktop
 
 Summary:   KDE Plasma Desktop
 Name:  kp5-%{kpname}
-Version:   5.27.8
+Version:   5.27.9
 Release:   1
 License:   LGPL v2.1+
 Group: X11/Libraries
 Source0:   
https://download.kde.org/stable/plasma/%{kdeplasmaver}/%{kpname}-%{version}.tar.xz
-# Source0-md5: 4a0f84b9043a0171e2ba021a54407c60
+# Source0-md5: e1446c2047adbad63929fc028b597f87
 URL:   https://www.kde.org/
 BuildRequires: AppStream-qt-devel
 BuildRequires: Qt5Concurrent-devel >= %{qtver}


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kp5-plasma-desktop.git/commitdiff/fb81d71db9cbc9f6bdb12caf1f5716158417d8e5

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


DISTFILES: kp5-oxygen: oxygen-5.27.9.tar.xz

2023-10-25 Thread witekfl
Request by: witekfl


Files fetched: 1

STORED: https://download.kde.org/stable/plasma/5.27.9/oxygen-5.27.9.tar.xz
fb5c1992d420fc6907a0f13c008e400f  oxygen-5.27.9.tar.xz
Size: 2785072 bytes


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


DISTFILES: kp5-kactivitymanagerd: kactivitymanagerd-5.27.9.tar.xz

2023-10-25 Thread witekfl
Request by: witekfl


Files fetched: 1

STORED: 
https://download.kde.org/stable/plasma/5.27.9/kactivitymanagerd-5.27.9.tar.xz
e62bc1cd1eb1127007a77c674d5d7806  kactivitymanagerd-5.27.9.tar.xz
Size: 127252 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/kp5-plasma-firewall] - updated to 5.27.9

2023-10-25 Thread witekfl
commit a96e74e58d90d6f4716b6b20175adfdc03b2e81c
Author: Witold Filipczyk 
Date:   Wed Oct 25 09:47:25 2023 +0200

- updated to 5.27.9

 kp5-plasma-firewall.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/kp5-plasma-firewall.spec b/kp5-plasma-firewall.spec
index 408895c..838dc9b 100644
--- a/kp5-plasma-firewall.spec
+++ b/kp5-plasma-firewall.spec
@@ -1,19 +1,19 @@
 #
 # Conditional build:
 %bcond_withtests   # build with tests
-%definekdeplasmaver5.27.8
+%definekdeplasmaver5.27.9
 %defineqtver   5.15.2
 %definekpname  plasma-firewall
 %definekf5ver  5.39.0
 
 Summary:   plasma-firewall
 Name:  kp5-%{kpname}
-Version:   5.27.8
+Version:   5.27.9
 Release:   1
 License:   LGPL v2.1+
 Group: X11/Libraries
 Source0:   
https://download.kde.org/stable/plasma/%{kdeplasmaver}/%{kpname}-%{version}.tar.xz
-# Source0-md5: 57681599b204bdbdfc176ee3d30678de
+# Source0-md5: 64388efd90aefd50cfbfb9da70677de1
 URL:   http://www.kde.org/
 BuildRequires: Qt5Core-devel >= 5.15.0
 BuildRequires: Qt5DBus-devel >= 5.15.0


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kp5-plasma-firewall.git/commitdiff/a96e74e58d90d6f4716b6b20175adfdc03b2e81c

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


[packages/kp5-plasma-disks] - updated to 5.27.9

2023-10-25 Thread witekfl
commit a354cf87dda2279ce7b6587ace51f35b6aa29efa
Author: Witold Filipczyk 
Date:   Wed Oct 25 09:47:21 2023 +0200

- updated to 5.27.9

 kp5-plasma-disks.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/kp5-plasma-disks.spec b/kp5-plasma-disks.spec
index c5fe990..51ef8dc 100644
--- a/kp5-plasma-disks.spec
+++ b/kp5-plasma-disks.spec
@@ -1,19 +1,19 @@
 #
 # Conditional build:
 %bcond_withtests   # build with tests
-%definekdeplasmaver5.27.8
+%definekdeplasmaver5.27.9
 %defineqtver   5.15.2
 %definekpname  plasma-disks
 %definekf5ver  5.39.0
 
 Summary:   plasma-disks
 Name:  kp5-%{kpname}
-Version:   5.27.8
+Version:   5.27.9
 Release:   1
 License:   LGPL v2.1+
 Group: X11/Libraries
 Source0:   
https://download.kde.org/stable/plasma/%{kdeplasmaver}/%{kpname}-%{version}.tar.xz
-# Source0-md5: cbf484f21d69f6da1bf5bcd9d05434a0
+# Source0-md5: 30c21b9c97ac80baf935c774be383fce
 URL:   http://www.kde.org/
 BuildRequires: Qt5Core-devel >= 5.15.0
 BuildRequires: Qt5Gui-devel >= 5.15.0


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kp5-plasma-disks.git/commitdiff/a354cf87dda2279ce7b6587ace51f35b6aa29efa

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


[packages/kp5-plasma-nano] - updated to 5.27.9

2023-10-25 Thread witekfl
commit 80f530273eb403dc63f8f6090718d24a47667854
Author: Witold Filipczyk 
Date:   Wed Oct 25 09:47:32 2023 +0200

- updated to 5.27.9

 kp5-plasma-nano.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/kp5-plasma-nano.spec b/kp5-plasma-nano.spec
index e6360b6..9826f11 100644
--- a/kp5-plasma-nano.spec
+++ b/kp5-plasma-nano.spec
@@ -1,19 +1,19 @@
 #
 # Conditional build:
 %bcond_withtests   # build with tests
-%definekdeplasmaver5.27.8
+%definekdeplasmaver5.27.9
 %defineqtver   5.15.2
 %definekpname  plasma-nano
 %definekf5ver  5.39.0
 
 Summary:   plasma-nano
 Name:  kp5-%{kpname}
-Version:   5.27.8
+Version:   5.27.9
 Release:   1
 License:   LGPL v2.1+
 Group: X11/Libraries
 Source0:   
https://download.kde.org/stable/plasma/%{kdeplasmaver}/%{kpname}-%{version}.tar.xz
-# Source0-md5: d05cac566ccaeb0d27008106f6e2e96d
+# Source0-md5: 3223c215fcfd749cf0b3b7cc9294d0f5
 URL:   http://www.kde.org/
 BuildRequires: Qt5Core-devel >= 5.15.0
 BuildRequires: Qt5Gui-devel >= 5.15.0


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kp5-plasma-nano.git/commitdiff/80f530273eb403dc63f8f6090718d24a47667854

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


[packages/kp5-plasma-integration] - updated to 5.27.9

2023-10-25 Thread witekfl
commit c61beaf92beac1b14a9a64a5d40fe9cc02ad1ff8
Author: Witold Filipczyk 
Date:   Wed Oct 25 09:47:28 2023 +0200

- updated to 5.27.9

 kp5-plasma-integration.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/kp5-plasma-integration.spec b/kp5-plasma-integration.spec
index ebf2a3c..35b04d5 100644
--- a/kp5-plasma-integration.spec
+++ b/kp5-plasma-integration.spec
@@ -4,18 +4,18 @@
 # TODO:
 # PackageKit qt5
 #
-%definekdeplasmaver5.27.8
+%definekdeplasmaver5.27.9
 %defineqtver   5.15.2
 %definekpname  plasma-integration
 
 Summary:   KDE Plasma Integration
 Name:  kp5-%{kpname}
-Version:   5.27.8
+Version:   5.27.9
 Release:   1
 License:   LGPL v2.1+
 Group: X11/Libraries
 Source0:   
https://download.kde.org/stable/plasma/%{kdeplasmaver}/%{kpname}-%{version}.tar.xz
-# Source0-md5: e6834ecb3579fdd5fbd667bf5e50470b
+# Source0-md5: b4d2a1401be865fa9a3ba1cde1f7cfd1
 URL:   http://www.kde.org/
 BuildRequires: Qt5Core-devel >= %{qtver}
 BuildRequires: Qt5Quick-controls2-devel >= %{qtver}


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kp5-plasma-integration.git/commitdiff/c61beaf92beac1b14a9a64a5d40fe9cc02ad1ff8

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


DISTFILES: kp5-plasma-browser-integration: plasma-browser-integration-5.27.9.tar.xz

2023-10-25 Thread witekfl
Request by: witekfl


Files fetched: 1

STORED: 
https://download.kde.org/stable/plasma/5.27.9/plasma-browser-integration-5.27.9.tar.xz
8e114b03049a538d80effc8828ff6850  
plasma-browser-integration-5.27.9.tar.xz
Size: 211156 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/kp5-plasma-nm] - updated to 5.27.9

2023-10-25 Thread witekfl
commit dd5c56cfb40da3bbcc0b78ed1f5aad7ab2c92b76
Author: Witold Filipczyk 
Date:   Wed Oct 25 09:47:35 2023 +0200

- updated to 5.27.9

 kp5-plasma-nm.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/kp5-plasma-nm.spec b/kp5-plasma-nm.spec
index ac88465..bcf54d9 100644
--- a/kp5-plasma-nm.spec
+++ b/kp5-plasma-nm.spec
@@ -1,19 +1,19 @@
 #
 # Conditional build:
 %bcond_withtests   # build with tests
-%definekdeplasmaver5.27.8
+%definekdeplasmaver5.27.9
 %defineqtver   5.15.2
 %definekpname  plasma-nm
 %definekf5ver  5.39.0
 
 Summary:   plasma-nm
 Name:  kp5-%{kpname}
-Version:   5.27.8
+Version:   5.27.9
 Release:   1
 License:   LGPL v2.1+
 Group: X11/Libraries
 Source0:   
https://download.kde.org/stable/plasma/%{kdeplasmaver}/%{kpname}-%{version}.tar.xz
-# Source0-md5: f71ad7bc0f4b26750fa65381ef03e69b
+# Source0-md5: 8aa75ac7aae92f8287840496da66cd3a
 URL:   http://www.kde.org/
 BuildRequires: ModemManager-devel
 BuildRequires: NetworkManager-devel


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kp5-plasma-nm.git/commitdiff/dd5c56cfb40da3bbcc0b78ed1f5aad7ab2c92b76

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


DISTFILES: kp5-plasma-disks: plasma-disks-5.27.9.tar.xz

2023-10-25 Thread witekfl
Request by: witekfl


Files fetched: 1

STORED: https://download.kde.org/stable/plasma/5.27.9/plasma-disks-5.27.9.tar.xz
30c21b9c97ac80baf935c774be383fce  plasma-disks-5.27.9.tar.xz
Size: 93808 bytes


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


DISTFILES: kp5-plasma-firewall: plasma-firewall-5.27.9.tar.xz

2023-10-25 Thread witekfl
Request by: witekfl


Files fetched: 1

STORED: 
https://download.kde.org/stable/plasma/5.27.9/plasma-firewall-5.27.9.tar.xz
64388efd90aefd50cfbfb9da70677de1  plasma-firewall-5.27.9.tar.xz
Size: 363280 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/kp5-plasma-pa] - updated to 5.27.9

2023-10-25 Thread witekfl
commit f1c90fbff63fa666c75fc850704899a3172e3429
Author: Witold Filipczyk 
Date:   Wed Oct 25 09:47:39 2023 +0200

- updated to 5.27.9

 kp5-plasma-pa.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/kp5-plasma-pa.spec b/kp5-plasma-pa.spec
index b171955..704a94a 100644
--- a/kp5-plasma-pa.spec
+++ b/kp5-plasma-pa.spec
@@ -1,18 +1,18 @@
 #
 # Conditional build:
 %bcond_withtests   # build with tests
-%definekdeplasmaver5.27.8
+%definekdeplasmaver5.27.9
 %defineqtver   5.15.2
 %definekpname  plasma-pa
 
 Summary:   KDE Plasma Pulse Audio
 Name:  kp5-%{kpname}
-Version:   5.27.8
+Version:   5.27.9
 Release:   1
 License:   LGPL v2.1+
 Group: X11/Libraries
 Source0:   
https://download.kde.org/stable/plasma/%{kdeplasmaver}/%{kpname}-%{version}.tar.xz
-# Source0-md5: 2539c2f64ebce4e3b28bc9bf4024e0b6
+# Source0-md5: 121487f0196db823e2666bf8bfcf9a81
 URL:   http://www.kde.org/
 BuildRequires: Qt5Core-devel >= %{qtver}
 BuildRequires: cmake >= 3.16.0


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kp5-plasma-pa.git/commitdiff/f1c90fbff63fa666c75fc850704899a3172e3429

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


DISTFILES: kp5-plasma-desktop: plasma-desktop-5.27.9.tar.xz

2023-10-25 Thread witekfl
Request by: witekfl


Files fetched: 1

STORED: 
https://download.kde.org/stable/plasma/5.27.9/plasma-desktop-5.27.9.tar.xz
e1446c2047adbad63929fc028b597f87  plasma-desktop-5.27.9.tar.xz
Size: 14721128 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/kp5-plasma-mobile] - updated to 5.27.9

2023-10-25 Thread witekfl
commit ccdf5244e97475610cc93a6c0776ad138685ba10
Author: Witold Filipczyk 
Date:   Wed Oct 25 09:47:43 2023 +0200

- updated to 5.27.9

 kp5-plasma-mobile.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/kp5-plasma-mobile.spec b/kp5-plasma-mobile.spec
index d6d96b7..4c4f5f1 100644
--- a/kp5-plasma-mobile.spec
+++ b/kp5-plasma-mobile.spec
@@ -1,19 +1,19 @@
 #
 # Conditional build:
 %bcond_withtests   # build with tests
-%definekdeplasmaver5.27.8
+%definekdeplasmaver5.27.9
 %defineqtver   5.15.2
 %definekpname  plasma-mobile
 %definekf5_ver 5.102.0
 
 Summary:   plasma-mobile
 Name:  kp5-%{kpname}
-Version:   5.27.8
+Version:   5.27.9
 Release:   1
 License:   LGPL v2.1+
 Group: X11/Libraries
 Source0:   
https://download.kde.org/stable/plasma/%{kdeplasmaver}/%{kpname}-%{version}.tar.xz
-# Source0-md5: 5d6cde521ae2539c921fda62efdefd8a
+# Source0-md5: 94c41467188ec5b3550e363984ffd3d0
 URL:   https://kde.org/
 BuildRequires: Qt5Core-devel >= 5.15.0
 BuildRequires: Qt5Gui-devel >= 5.15.0


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kp5-plasma-mobile.git/commitdiff/ccdf5244e97475610cc93a6c0776ad138685ba10

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


DISTFILES: kp5-plasma-integration: plasma-integration-5.27.9.tar.xz

2023-10-25 Thread witekfl
Request by: witekfl


Files fetched: 1

STORED: 
https://download.kde.org/stable/plasma/5.27.9/plasma-integration-5.27.9.tar.xz
b4d2a1401be865fa9a3ba1cde1f7cfd1  plasma-integration-5.27.9.tar.xz
Size: 89796 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/kp5-plasma-systemmonitor] - updated to 5.27.9

2023-10-25 Thread witekfl
commit a19bcc2e88e037693e72256850e992630aa5d115
Author: Witold Filipczyk 
Date:   Wed Oct 25 09:47:50 2023 +0200

- updated to 5.27.9

 kp5-plasma-systemmonitor.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/kp5-plasma-systemmonitor.spec b/kp5-plasma-systemmonitor.spec
index 210509f..ba7c4d8 100644
--- a/kp5-plasma-systemmonitor.spec
+++ b/kp5-plasma-systemmonitor.spec
@@ -1,19 +1,19 @@
 #
 # Conditional build:
 %bcond_withtests   # build with tests
-%definekdeplasmaver5.27.8
+%definekdeplasmaver5.27.9
 %defineqtver   5.15.2
 %definekpname  plasma-systemmonitor
 %definekf5ver  5.39.0
 
 Summary:   plasma-systemmonitor
 Name:  kp5-%{kpname}
-Version:   5.27.8
+Version:   5.27.9
 Release:   1
 License:   LGPL v2.1+
 Group: X11/Libraries
 Source0:   
https://download.kde.org/stable/plasma/%{kdeplasmaver}/%{kpname}-%{version}.tar.xz
-# Source0-md5: 57867c1179dec916d84493e084cdc1db
+# Source0-md5: 3a2755433a662308df4201d6e5d14c5a
 URL:   http://www.kde.org/
 BuildRequires: Qt5Core-devel >= %{qtver}
 BuildRequires: Qt5DBus-devel >= 5.15.0


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kp5-plasma-systemmonitor.git/commitdiff/a19bcc2e88e037693e72256850e992630aa5d115

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


DISTFILES: kp5-plasma-nm: plasma-nm-5.27.9.tar.xz

2023-10-25 Thread witekfl
Request by: witekfl


Files fetched: 1

STORED: https://download.kde.org/stable/plasma/5.27.9/plasma-nm-5.27.9.tar.xz
8aa75ac7aae92f8287840496da66cd3a  plasma-nm-5.27.9.tar.xz
Size: 1155540 bytes


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


DISTFILES: kp5-plasma-nano: plasma-nano-5.27.9.tar.xz

2023-10-25 Thread witekfl
Request by: witekfl


Files fetched: 1

STORED: https://download.kde.org/stable/plasma/5.27.9/plasma-nano-5.27.9.tar.xz
3223c215fcfd749cf0b3b7cc9294d0f5  plasma-nano-5.27.9.tar.xz
Size: 74368 bytes


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


DISTFILES: kp5-plasma-pa: plasma-pa-5.27.9.tar.xz

2023-10-25 Thread witekfl
Request by: witekfl


Files fetched: 1

STORED: https://download.kde.org/stable/plasma/5.27.9/plasma-pa-5.27.9.tar.xz
121487f0196db823e2666bf8bfcf9a81  plasma-pa-5.27.9.tar.xz
Size: 163800 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/kp5-plasma-sdk] - updated to 5.27.9

2023-10-25 Thread witekfl
commit 43755e6364ef73036c4b84ea3aa0a58bf425cd9d
Author: Witold Filipczyk 
Date:   Wed Oct 25 09:47:46 2023 +0200

- updated to 5.27.9

 kp5-plasma-sdk.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/kp5-plasma-sdk.spec b/kp5-plasma-sdk.spec
index b4ef789..8221156 100644
--- a/kp5-plasma-sdk.spec
+++ b/kp5-plasma-sdk.spec
@@ -4,18 +4,18 @@
 # TODO:
 # PackageKit qt5
 #
-%definekdeplasmaver5.27.8
+%definekdeplasmaver5.27.9
 %defineqtver   5.15.2
 %definekpname  plasma-sdk
 
 Summary:   KDE Plasma Desktop
 Name:  kp5-%{kpname}
-Version:   5.27.8
+Version:   5.27.9
 Release:   1
 License:   LGPL v2.1+
 Group: X11/Libraries
 Source0:   
https://download.kde.org/stable/plasma/%{kdeplasmaver}/%{kpname}-%{version}.tar.xz
-# Source0-md5: df67cf714baa309699886a5a7a66659d
+# Source0-md5: fcbbc1320a0c74f25ab979c227d10964
 URL:   http://www.kde.org/
 BuildRequires: Qt5Core-devel >= %{qtver}
 BuildRequires: cmake >= 3.16.0


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kp5-plasma-sdk.git/commitdiff/43755e6364ef73036c4b84ea3aa0a58bf425cd9d

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


  1   2   >