[packages/x265] update arm flags handling

2024-05-27 Thread atler
commit e80ad00bf569fc910d0da3db2f1cce7738197b12
Author: Jan Palus 
Date:   Mon May 27 10:10:27 2024 +0200

update arm flags handling

 x265-arm_flags.patch | 72 +++-
 x265.spec|  4 +++
 2 files changed, 58 insertions(+), 18 deletions(-)
---
diff --git a/x265.spec b/x265.spec
index 615e2de..d9e5f98 100644
--- a/x265.spec
+++ b/x265.spec
@@ -102,6 +102,10 @@ export CXXFLAGS="%{rpmcxxflags} -fPIC"
 export CFLAGS="$CFLAGS -DHAVE_NEON"
 export CXXFLAGS="$CXXFLAGS -DHAVE_NEON"
 %endif
+%ifarch aarch64
+export CFLAGS="$CFLAGS -flax-vector-conversions"
+export CXXFLAGS="$CXXFLAGS -flax-vector-conversions"
+%endif
 %endif
 %cmake .. \
-DENABLE_ASSEMBLY=%{!?with_asm:OFF}%{?with_asm:ON} \
diff --git a/x265-arm_flags.patch b/x265-arm_flags.patch
index 67c48b6..d7b7d1c 100644
--- a/x265-arm_flags.patch
+++ b/x265-arm_flags.patch
@@ -1,31 +1,67 @@
-diff -ur x265_3.5.orig/source/CMakeLists.txt x265_3.5/source/CMakeLists.txt
 x265_3.5.orig/source/CMakeLists.txt2021-06-30 10:18:05.027691945 
+0200
-+++ x265_3.5/source/CMakeLists.txt 2021-06-30 10:22:34.076437753 +0200
-@@ -235,28 +235,7 @@
+--- x265_3.6/source/CMakeLists.txt.orig2024-05-26 20:21:11.842336919 
+0200
 x265_3.6/source/CMakeLists.txt 2024-05-26 20:28:09.917087813 +0200
+@@ -44,10 +44,8 @@
+ string(TOLOWER "${CMAKE_SYSTEM_PROCESSOR}" SYSPROC)
+ endif()
+ set(X86_ALIASES x86 i386 i686 x86_64 amd64)
+-set(ARM_ALIASES armv6l armv7l)
+ set(ARM64_ALIASES arm64 arm64e aarch64)
+ list(FIND X86_ALIASES "${SYSPROC}" X86MATCH)
+-list(FIND ARM_ALIASES "${SYSPROC}" ARMMATCH)
+ list(FIND ARM64_ALIASES "${SYSPROC}" ARM64MATCH)
+ set(POWER_ALIASES powerpc64 powerpc64le ppc64 ppc64le)
+ list(FIND POWER_ALIASES "${SYSPROC}" POWERMATCH)
+@@ -70,7 +68,7 @@
+ add_definitions(-DPPC64=1)
+ message(STATUS "Detected POWER PPC64 target processor")
+ endif()
+-elseif(ARMMATCH GREATER "-1")
++elseif(${SYSPROC} MATCHES "armv[67]")
+ if(CROSS_COMPILE_ARM)
+ message(STATUS "Cross compiling for ARM arch")
+ else()
+@@ -244,45 +244,7 @@
  endif()
  endif()
  endif()
 -if(ARM AND CROSS_COMPILE_ARM)
--if(ARM64)
--set(ARM_ARGS -fPIC)
--else()
--set(ARM_ARGS -march=armv6 -mfloat-abi=soft -mfpu=vfp -marm -fPIC)
--endif()
 -message(STATUS "cross compile arm")
+-  set(ARM_ARGS -march=armv6 -mfloat-abi=soft -mfpu=vfp -marm 
-fPIC)
 -elseif(ARM)
--if(ARM64)
--set(ARM_ARGS -fPIC)
+-find_package(Neon)
+-if(CPU_HAS_NEON)
+-set(ARM_ARGS -mcpu=native -mfloat-abi=hard -mfpu=neon -marm -fPIC)
 -add_definitions(-DHAVE_NEON)
 -else()
--find_package(Neon)
--if(CPU_HAS_NEON)
--set(ARM_ARGS -mcpu=native -mfloat-abi=hard -mfpu=neon -marm 
-fPIC)
--add_definitions(-DHAVE_NEON)
--else()
--set(ARM_ARGS -mcpu=native -mfloat-abi=hard -mfpu=vfp -marm)
--endif()
+-set(ARM_ARGS -mcpu=native -mfloat-abi=hard -mfpu=vfp -marm)
 -endif()
 -endif()
+-  if(ARM64 OR CROSS_COMPILE_ARM64)
+-find_package(Neon)
+-find_package(SVE)
+-find_package(SVE2)
+-if(CPU_HAS_SVE2 OR CROSS_COMPILE_SVE2)
+-message(STATUS "Found SVE2")
+-  set(ARM_ARGS -O3 -march=armv8-a+sve2 -fPIC 
-flax-vector-conversions)
+-add_definitions(-DHAVE_SVE2)
+-add_definitions(-DHAVE_SVE)
+-add_definitions(-DHAVE_NEON) # for NEON c/c++ primitives, as 
currently there is no implementation that use SVE2
+-elseif(CPU_HAS_SVE OR CROSS_COMPILE_SVE)
+-message(STATUS "Found SVE")
+-  set(ARM_ARGS -O3 -march=armv8-a+sve -fPIC 
-flax-vector-conversions)
+-add_definitions(-DHAVE_SVE)
+-add_definitions(-DHAVE_NEON) # for NEON c/c++ primitives, as 
currently there is no implementation that use SVE
+-elseif(CPU_HAS_NEON)
+-message(STATUS "Found NEON")
+-set(ARM_ARGS -fPIC -flax-vector-conversions)
+-add_definitions(-DHAVE_NEON)
+-else()
+-set(ARM_ARGS -fPIC -flax-vector-conversions)
+-endif()
+-endif()
+-  if(ENABLE_PIC)
+-  list(APPEND ARM_ARGS -DPIC)
+-  endif()
 -add_definitions(${ARM_ARGS})
 +string(REPLACE " " ";" ARM_ARGS ${CMAKE_CXX_FLAGS})
  if(FPROFILE_GENERATE)


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/x265.git/commitdiff/e80ad00bf569fc910d0da3db2f1cce7738197b12

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


[packages/kodi-addon-pvr-hts] up to 21.2.4

2024-05-27 Thread atler
commit c978ecb41f3aa8a24e7df6db11ce9cb776c2a102
Author: Jan Palus 
Date:   Mon May 27 10:14:00 2024 +0200

up to 21.2.4

 kodi-addon-pvr-hts.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/kodi-addon-pvr-hts.spec b/kodi-addon-pvr-hts.spec
index 7054629..024a9b6 100644
--- a/kodi-addon-pvr-hts.spec
+++ b/kodi-addon-pvr-hts.spec
@@ -5,12 +5,12 @@
 
 Summary:   Kodi's Tvheadend HTSP client addon
 Name:  kodi-addon-pvr-hts
-Version:   %{kodi_ver}.2.3
+Version:   %{kodi_ver}.2.4
 Release:   1
 License:   GPL v2+
 Group: Applications/Multimedia
 Source0:   
https://github.com/kodi-pvr/pvr.hts/archive/%{version}-%{codename}/%{version}-%{codename}.tar.gz
-# Source0-md5: 7283ac99c0484a244cc3a4d9c19e061e
+# Source0-md5: b785e443be17decff3a5b0dcc8826f0d
 URL:   https://github.com/kodi-pvr/pvr.hts
 BuildRequires: cmake >= 3.5
 BuildRequires: kodi-devel >= %{kodi_ver}


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kodi-addon-pvr-hts.git/commitdiff/c978ecb41f3aa8a24e7df6db11ce9cb776c2a102

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


DISTFILES: kodi-addon-pvr-hts: 21.2.4-Omega.tar.gz

2024-05-27 Thread atler
Request by: atler


Files fetched: 1

STORED: 
https://github.com/kodi-pvr/pvr.hts/archive/21.2.4-Omega/21.2.4-Omega.tar.gz
b785e443be17decff3a5b0dcc8826f0d  21.2.4-Omega.tar.gz
Size: 218946 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/libsodium] up to 1.0.20

2024-05-27 Thread atler
commit 59f579527deff3865cefdbdbedeafdabee61ddc5
Author: Jan Palus 
Date:   Mon May 27 10:40:06 2024 +0200

up to 1.0.20

 libsodium.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/libsodium.spec b/libsodium.spec
index 0b3827a..e207133 100644
--- a/libsodium.spec
+++ b/libsodium.spec
@@ -6,12 +6,12 @@
 Summary:   Portable NaCl-based crypto library
 Summary(pl.UTF-8): Przenośna biblioteka kryptograficzna oparta na NaCl
 Name:  libsodium
-Version:   1.0.19
+Version:   1.0.20
 Release:   1
 License:   BSD
 Group: Libraries
 Source0:   
https://download.libsodium.org/libsodium/releases/%{name}-%{version}.tar.gz
-# Source0-md5: 0d8e2233fc41be6d4c7ee36d5dfe9416
+# Source0-md5: 597f2c7811f84e63e45e2277dfb5da46
 URL:   https://libsodium.org/
 BuildRequires: pkgconfig >= 1:0.25
 BuildRequires: rpmbuild(macros) >= 1.527
@@ -64,7 +64,7 @@ Static libsodium library.
 Statyczna biblioteka libsodium.
 
 %prep
-%setup -q -n %{name}-stable
+%setup -q
 
 %build
 %configure \


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/libsodium.git/commitdiff/59f579527deff3865cefdbdbedeafdabee61ddc5

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


DISTFILES: libsodium: ERRORS: libsodium-1.0.20.tar.gz

2024-05-27 Thread atler
Request by: atler

wget -nv --no-iri --user-agent=PLD/distfiles -O 
./tmp/78ec9a80-666c-4286-9198-d96b7236d4b2/597f2c7811f84e63e45e2277dfb5da46/libsodium-1.0.20.tar.gz
 https://download.libsodium.org/libsodium/releases/libsodium-1.0.20.tar.gz:
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.
failed: Connection timed out.



Files fetched: 1

STORED: 
https://download.libsodium.org/libsodium/releases/libsodium-1.0.20.tar.gz
597f2c7811f84e63e45e2277dfb5da46  libsodium-1.0.20.tar.gz
Size: 1925167 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/weechat] up to 4.3.0

2024-05-27 Thread atler
commit e5f39831fde813a47f420d47c05bca60399ac5c4
Author: Jan Palus 
Date:   Mon May 27 10:45:59 2024 +0200

up to 4.3.0

 weechat.spec | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
---
diff --git a/weechat.spec b/weechat.spec
index 229737f..f91ee48 100644
--- a/weechat.spec
+++ b/weechat.spec
@@ -25,14 +25,15 @@
 Summary:   WeeChat - fast and light chat environment
 Summary(pl.UTF-8): WeeChat - szybkie i lekkie środowisko do rozmów
 Name:  weechat
-Version:   4.2.2
+Version:   4.3.0
 Release:   1
 License:   GPL v3+
 Group: Applications/Communications
 Source0:   https://www.weechat.org/files/src/%{name}-%{version}.tar.xz
-# Source0-md5: ca733ed70de755fa298ff45a5b6e61b7
+# Source0-md5: fd672b7cb3790330e5f059fe8974d758
 URL:   http://www.weechat.org/
 %{?with_aspell:BuildRequires:  aspell-devel}
+BuildRequires: cjson-devel
 BuildRequires: cmake >= 3.5
 BuildRequires: curl-devel
 BuildRequires: gettext-tools


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/weechat.git/commitdiff/e5f39831fde813a47f420d47c05bca60399ac5c4

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


DISTFILES: weechat: weechat-4.3.0.tar.xz

2024-05-27 Thread atler
Request by: atler


Files fetched: 1

STORED: https://www.weechat.org/files/src/weechat-4.3.0.tar.xz
fd672b7cb3790330e5f059fe8974d758  weechat-4.3.0.tar.xz
Size: 2692816 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/nv-codec-headers] - non-exexutable headers

2024-05-27 Thread qboosh
commit 86236d1680035ab2707f00f3e9cbde81eac93e49
Author: Jakub Bogusz 
Date:   Mon May 27 19:39:52 2024 +0200

- non-exexutable headers

 nv-codec-headers.spec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/nv-codec-headers.spec b/nv-codec-headers.spec
index 633880e..f14cb9f 100644
--- a/nv-codec-headers.spec
+++ b/nv-codec-headers.spec
@@ -49,5 +49,5 @@ rm -rf $RPM_BUILD_ROOT
 %files
 %defattr(644,root,root,755)
 %doc README
-%attr(755,root,root) %{_includedir}/ffnvcodec
+%{_includedir}/ffnvcodec
 %{_npkgconfigdir}/ffnvcodec.pc


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/nv-codec-headers.git/commitdiff/86236d1680035ab2707f00f3e9cbde81eac93e49

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


[packages/pcsc-lite] up to 2.2.3

2024-05-27 Thread atler
commit 6db45d8326ba33d05e142a77d127db67170067fd
Author: Jan Palus 
Date:   Mon May 27 19:44:14 2024 +0200

up to 2.2.3

 pcsc-lite.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/pcsc-lite.spec b/pcsc-lite.spec
index b187a56..b920c9f 100644
--- a/pcsc-lite.spec
+++ b/pcsc-lite.spec
@@ -14,12 +14,12 @@
 Summary:   PCSC Framework for Linux
 Summary(pl.UTF-8): Środowisko PCSC dla Linuksa
 Name:  pcsc-lite
-Version:   2.2.1
+Version:   2.2.3
 Release:   1
 License:   BSD
 Group: Daemons
 Source0:   https://pcsclite.apdu.fr/files/%{name}-%{version}.tar.xz
-# Source0-md5: b030f6b6801bab6a298f34b18ba2ea9f
+# Source0-md5: 1a5f60ade943393f9e609e0e55bb1417
 Source1:   %{name}-pcscd.init
 Source2:   %{name}-pcscd.sysconfig
 Source4:   %{name}.tmpfiles


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/pcsc-lite.git/commitdiff/6db45d8326ba33d05e142a77d127db67170067fd

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


DISTFILES: pcsc-lite: pcsc-lite-2.2.3.tar.xz

2024-05-27 Thread atler
Request by: atler


Files fetched: 1

STORED: https://pcsclite.apdu.fr/files/pcsc-lite-2.2.3.tar.xz
1a5f60ade943393f9e609e0e55bb1417  pcsc-lite-2.2.3.tar.xz
Size: 207892 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/AviSynthPlus] Created branch master

2024-05-27 Thread qboosh
The branch 'master' was created.

Summary of new commits:

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


[packages/AviSynthPlus] - new

2024-05-27 Thread qboosh
commit d15a5d22990fe7f61e491563e952ca7d012bdda0
Author: Jakub Bogusz 
Date:   Mon May 27 20:12:35 2024 +0200

- new

 AviSynthPlus.spec | 107 ++
 1 file changed, 107 insertions(+)
---
diff --git a/AviSynthPlus.spec b/AviSynthPlus.spec
new file mode 100644
index 000..b4cf8fd
--- /dev/null
+++ b/AviSynthPlus.spec
@@ -0,0 +1,107 @@
+#
+# Conditional build:
+%bcond_without apidocs # API documentation
+#
+Summary:   AviSynth+ - improved version od AviSynth frameserver
+Summary(pl.UTF-8): AviSynth+ - ulepszona wersja serwera ramek AviSynth
+Name:  AviSynthPlus
+Version:   3.7.3
+Release:   1
+License:   GPL v2+
+Group: Libraries
+#Source0Download: https://github.com/AviSynth/AviSynthPlus/releases
+Source0:   
https://github.com/AviSynth/AviSynthPlus/archive/v%{version}/%{name}-%{version}.tar.gz
+# Source0-md5: e18f562c225aa04792f318a2d3039418
+URL:   https://github.com/AviSynth/AviSynthPlus
+BuildRequires: DevIL-devel
+BuildRequires: cmake >= 3.6.2
+BuildRequires: libstdc++-devel >= 6:8
+BuildRequires: rpm-build >= 4.6
+BuildRequires: rpmbuild(macros) >= 1.605
+%{?with_apidocs:BuildRequires: sphinx-pdg-3 >= 1.3}
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+AviSynth+ is an improved version of the AviSynth frameserver
+(), with improved features and
+developer friendliness.
+
+%description -l pl.UTF-8
+AviSynth+ to ulepszona wersja serwera ramek AviSynth
+(), o większych możliwościach
+i bardziej przyjazna dla programistów.
+
+%package devel
+Summary:   Header files for AviSynthPlus library
+Summary(pl.UTF-8): Pliki nagłówkowe biblioteki AviSynthPlus
+Group: Development/Libraries
+Requires:  %{name} = %{version}-%{release}
+
+%description devel
+Header files for AviSynthPlus library.
+
+%description devel -l pl.UTF-8
+Pliki nagłówkowe biblioteki AviSynthPlus.
+
+%package apidocs
+Summary:   API documentation for AviSynthPlus library
+Summary(pl.UTF-8): Dokumentacja API biblioteki AviSynthPlus
+Group: Documentation
+BuildArch: noarch
+
+%description apidocs
+API documentation for AviSynthPlus library.
+
+%description apidocs -l pl.UTF-8
+Dokumentacja API biblioteki AviSynthPlus.
+
+%prep
+%setup -q
+
+%build
+install -d build
+cd build
+%cmake ..
+
+%{__make}
+
+cd ..
+
+%if %{with apidocs}
+sphinx-build-3 -b html distrib/docs/english/source 
distrib/docs/english/_build/html
+%endif
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%{__make} -C build install \
+   DESTDIR=$RPM_BUILD_ROOT
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post  -p /sbin/ldconfig
+%postun-p /sbin/ldconfig
+
+%files
+%defattr(644,root,root,755)
+%doc README.md distrib/Readme/readme_history.txt
+%attr(755,root,root) %{_libdir}/libavisynth.so.*.*.*
+%attr(755,root,root) %ghost %{_libdir}/libavisynth.so.10
+%dir %{_libdir}/avisynth
+%attr(755,root,root) %{_libdir}/avisynth/libconvertstacked.so
+%attr(755,root,root) %{_libdir}/avisynth/libimageseq.so
+%attr(755,root,root) %{_libdir}/avisynth/libshibatch.so
+%attr(755,root,root) %{_libdir}/avisynth/libtimestretch.so
+
+%files devel
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_libdir}/libavisynth.so
+%{_includedir}/avisynth
+%{_pkgconfigdir}/avisynth.pc
+
+%if %{with apidocs}
+%files apidocs
+%defattr(644,root,root,755)
+%doc distrib/docs/english/_build/html/{_images,_static,avisynthdoc,*.html,*.js}
+%endif


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/AviSynthPlus.git/commitdiff/d15a5d22990fe7f61e491563e952ca7d012bdda0

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


DISTFILES: AviSynthPlus: AviSynthPlus-3.7.3.tar.gz

2024-05-27 Thread qboosh
Request by: qboosh


Files fetched: 1

STORED: 
https://github.com/AviSynth/AviSynthPlus/archive/v3.7.3/AviSynthPlus-3.7.3.tar.gz
e18f562c225aa04792f318a2d3039418  AviSynthPlus-3.7.3.tar.gz
Size: 12342843 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/ffmpeg] - added nvenc patch (prepare for nv-codec SDK 12.2); added avisynth support

2024-05-27 Thread qboosh
commit 4575071bbb87ed5f61299c1707dd3b69c5fa0ed4
Author: Jakub Bogusz 
Date:   Mon May 27 20:15:06 2024 +0200

- added nvenc patch (prepare for nv-codec SDK 12.2); added avisynth support

 ffmpeg-nvenc.patch | 107 +
 ffmpeg.spec|   7 
 2 files changed, 114 insertions(+)
---
diff --git a/ffmpeg.spec b/ffmpeg.spec
index aff2a8b..66c2e62 100644
--- a/ffmpeg.spec
+++ b/ffmpeg.spec
@@ -17,6 +17,7 @@
 %bcond_without amr # AMR-NB/WB de/encoding via libopencore-amrnb/wb
 %bcond_without aom # AV1 viden de/encoding via libaom
 %bcond_without aribb24 # ARIB text and caption decoding via libaribb24
+%bcond_without avisynth# AviSynth scripts support
 %bcond_without avs # AVS encoding via xavs
 %bcond_without avs2# AVS2 de/encoding via libdavs2/libxavs2
 %bcond_without bs2b# BS2B audio filter support
@@ -146,7 +147,9 @@ Patch1: %{name}-atadenoise.patch
 Patch2:opencv4.patch
 Patch3:v4l2-request-hwdec.patch
 Patch4:%{name}-vulkan1.3.280.patch
+Patch5:%{name}-nvenc.patch
 URL:   https://ffmpeg.org/
+%{?with_avisynth:BuildRequires:AviSynthPlus-devel >= 3.7.3}
 %{?with_decklink:BuildRequires:Blackmagic_DeckLink_SDK >= 10.11}
 %{?with_openal:BuildRequires:  OpenAL-devel >= 1.1}
 %{?with_opencl:BuildRequires:  OpenCL-devel >= 1.2}
@@ -382,6 +385,8 @@ Requires:   twolame-libs >= 0.3.10
 %{?with_zmq:Requires:  zeromq >= 4.2.1}
 %{?with_zimg:Requires: zimg >= 2.7.0}
 %{?with_zvbi:Requires: zvbi >= 0.2.28}
+# dlopened
+%{?with_avisynth:Suggests: AviSynthPlus >= 3.7.3}
 
 %description libs
 This package contains the ffmpeg shared libraries:
@@ -570,6 +575,7 @@ Dokumentacja pakietu FFmpeg w formacie HTML.
 %patch3 -p1
 %endif
 %patch4 -p1
+%patch5 -p1
 
 # package the grep result for mplayer, the result formatted as 
./mplayer/configure
 cat < ffmpeg-avconfig
@@ -653,6 +659,7 @@ EOF
--disable-stripping \
%{!?with_doc:--disable-doc} \
--enable-avfilter \
+   %{?with_avisynth:--enable-avisynth} \
%{?with_chromaprint:--enable-chromaprint} \
%{?with_cudasdk:--enable-cuda-nvcc} \
%{?with_decklink:--enable-decklink} \
diff --git a/ffmpeg-nvenc.patch b/ffmpeg-nvenc.patch
new file mode 100644
index 000..c92cd8b
--- /dev/null
+++ b/ffmpeg-nvenc.patch
@@ -0,0 +1,107 @@
+From 43b417d516b0fabbec1f02120d948f636b8a018e Mon Sep 17 00:00:00 2001
+From: Timo Rothenpieler 
+Date: Sun, 31 Mar 2024 18:25:15 +0200
+Subject: [PATCH] avcodec/nvenc: stop using long deprecated format specifiers
+
+---
+ libavcodec/nvenc.c | 6 +++---
+ 1 file changed, 3 insertions(+), 3 deletions(-)
+
+diff --git a/libavcodec/nvenc.c b/libavcodec/nvenc.c
+index fd73af2a32..0cb3b87c67 100644
+--- a/libavcodec/nvenc.c
 b/libavcodec/nvenc.c
+@@ -1689,15 +1689,15 @@ static NV_ENC_BUFFER_FORMAT 
nvenc_map_buffer_format(enum AVPixelFormat pix_fmt)
+ {
+ switch (pix_fmt) {
+ case AV_PIX_FMT_YUV420P:
+-return NV_ENC_BUFFER_FORMAT_YV12_PL;
++return NV_ENC_BUFFER_FORMAT_YV12;
+ case AV_PIX_FMT_NV12:
+-return NV_ENC_BUFFER_FORMAT_NV12_PL;
++return NV_ENC_BUFFER_FORMAT_NV12;
+ case AV_PIX_FMT_P010:
+ case AV_PIX_FMT_P016:
+ return NV_ENC_BUFFER_FORMAT_YUV420_10BIT;
+ case AV_PIX_FMT_GBRP:
+ case AV_PIX_FMT_YUV444P:
+-return NV_ENC_BUFFER_FORMAT_YUV444_PL;
++return NV_ENC_BUFFER_FORMAT_YUV444;
+ case AV_PIX_FMT_GBRP16:
+ case AV_PIX_FMT_YUV444P16:
+ return NV_ENC_BUFFER_FORMAT_YUV444_10BIT;
+-- 
+2.25.1
+
+From 06c2a2c425f22e7dba5cad909737a631cc676e3f Mon Sep 17 00:00:00 2001
+From: Timo Rothenpieler 
+Date: Sun, 31 Mar 2024 18:39:49 +0200
+Subject: [PATCH] avcodec/nvenc: support SDK 12.2 bit depth API
+
+---
+ libavcodec/nvenc.c | 15 +++
+ libavcodec/nvenc.h |  5 +
+ 2 files changed, 20 insertions(+)
+
+diff --git a/libavcodec/nvenc.c b/libavcodec/nvenc.c
+index 0cb3b87c67..8327496937 100644
+--- a/libavcodec/nvenc.c
 b/libavcodec/nvenc.c
+@@ -1255,6 +1255,11 @@ static av_cold int 
nvenc_setup_h264_config(AVCodecContext *avctx)
+ 
+ h264->level = ctx->level;
+ 
++#ifdef NVENC_HAVE_NEW_BIT_DEPTH_API
++h264->inputBitDepth = h264->outputBitDepth =
++IS_10BIT(ctx->data_pix_fmt) ? NV_ENC_BIT_DEPTH_10 : 
NV_ENC_BIT_DEPTH_8;
++#endif
++
+ if (ctx->coder >= 0)
+ h264->entropyCodingMode = ctx->coder;
+ 
+@@ -1370,7 +1375,12 @@ static av_cold int 
nvenc_setup_hevc_config(AVCodecContext *avctx)
+ 
+ hevc->chromaFormatIDC = IS_YUV444(ctx->data_pix_fmt) ? 3 : 1;
+ 
++#ifdef NVENC_HAVE_NEW_BIT_DEPTH_API
++hevc->inputBitDepth = hevc->outputBitDepth =
++IS_10BIT(ctx->data_pix_fmt) ? NV_ENC_BIT_DEPTH_10 : 
NV_ENC_BIT_DEPTH_8;
++#else
+ hevc->pixelBitDepthMinus8 = IS_10BIT(ctx->data_pix_fmt) ? 2 : 0;
++#endif
+ 
+ hevc->level = ctx->

[packages/mate-control-center] - updated appindicator BRs (now some indicators are obligatory, ayatana preferred over ubuntu)

2024-05-27 Thread qboosh
commit 2810d09e8d625524172e47e6c3a1346b6b3dbfd0
Author: Jakub Bogusz 
Date:   Mon May 27 20:59:26 2024 +0200

- updated appindicator BRs (now some indicators are obligatory, ayatana 
preferred over ubuntu)

 mate-control-center.spec | 13 ++---
 1 file changed, 2 insertions(+), 11 deletions(-)
---
diff --git a/mate-control-center.spec b/mate-control-center.spec
index 94217a7..b62180a 100644
--- a/mate-control-center.spec
+++ b/mate-control-center.spec
@@ -1,7 +1,3 @@
-#
-# Conditional build:
-%bcond_without appindicator# application indicators support (in 
mate-typing-monitor)
-
 Summary:   MATE Desktop control-center
 Summary(pl.UTF-8): Centrum sterowania środowiska MATE Desktop
 Name:  mate-control-center
@@ -23,9 +19,7 @@ BuildRequires:freetype-devel >= 2
 BuildRequires: gettext-tools >= 0.19.8
 BuildRequires: glib2-devel >= 1:2.64.0
 BuildRequires: gtk+3-devel >= 3.22
-%if %{with appindicator}
-BuildRequires: libappindicator-gtk3-devel >= 0.0.13
-%endif
+BuildRequires: libayatana-appindicator-gtk3-devel >= 0.0.13
 BuildRequires: libcanberra-gtk3-devel
 BuildRequires: libgtop-devel >= 2.0
 BuildRequires: libmatekbd-devel >= 1.17.0
@@ -63,9 +57,7 @@ Requires: glib2 >= 1:2.64.0
 Requires:  gsettings-desktop-schemas
 Requires:  gtk-update-icon-cache
 Requires:  hicolor-icon-theme
-%if %{with appindicator}
-Requires:  libappindicator-gtk3 >= 0.0.13
-%endif
+Requires:  libayatana-appindicator-gtk3 >= 0.0.13
 Requires:  libmatekbd >= 1.17.0
 Requires:  libxklavier >= 5.2
 Requires:  marco-libs >= 1.17.0
@@ -106,7 +98,6 @@ Pliki programistyczne centrum sterowania środowiska MATE.
 %{__autoconf}
 %{__automake}
 %configure \
-   %{!?with_appindicator:--disable-appindicator} \
--disable-schemas-compile \
--disable-silent-rules \
--disable-static \


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/mate-control-center.git/commitdiff/2810d09e8d625524172e47e6c3a1346b6b3dbfd0

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


[packages/mate-media] - updated to 1.28.1

2024-05-27 Thread qboosh
commit fdfbd25a42d0378ba165060ae91d2c8b66f40ed0
Author: Jakub Bogusz 
Date:   Mon May 27 21:09:55 2024 +0200

- updated to 1.28.1

 mate-media.spec | 12 
 1 file changed, 8 insertions(+), 4 deletions(-)
---
diff --git a/mate-media.spec b/mate-media.spec
index db45452..cb82fe2 100644
--- a/mate-media.spec
+++ b/mate-media.spec
@@ -1,12 +1,12 @@
 Summary:   MATE media programs
 Summary(pl.UTF-8): Programy multimedialne dla środowiska MATE
 Name:  mate-media
-Version:   1.26.2
-Release:   2
+Version:   1.28.1
+Release:   1
 License:   GPL v2+ (volume control, sound theme), FDL (documentation)
 Group: X11/Applications/Multimedia
-Source0:   
https://pub.mate-desktop.org/releases/1.26/%{name}-%{version}.tar.xz
-# Source0-md5: 4202b5b5bf55f9069aff04701e19124f
+Source0:   
https://pub.mate-desktop.org/releases/1.28/%{name}-%{version}.tar.xz
+# Source0-md5: 652d7db93b9b6f91accc3a345d5c20c8
 URL:   https://github.com/mate-desktop/mate-media
 BuildRequires: autoconf >= 2.60
 BuildRequires: automake >= 1:1.9
@@ -14,6 +14,7 @@ BuildRequires:desktop-file-utils
 BuildRequires: docbook-dtd412-xml
 BuildRequires: gettext-tools >= 0.19.8
 BuildRequires: glib2-devel >= 1:2.50.0
+BuildRequires: gtk-layer-shell-devel >= 0.6
 BuildRequires: gtk+3-devel >= 3.22
 BuildRequires: libcanberra-devel >= 0.13
 BuildRequires: libcanberra-gtk3-devel >= 0.13
@@ -26,11 +27,14 @@ BuildRequires:  mate-panel-devel >= 1.17.0
 BuildRequires: rpmbuild(find_lang) >= 1.36
 BuildRequires: rpmbuild(macros) >= 1.445
 BuildRequires: tar >= 1:1.22
+# wayland-client
+BuildRequires: wayland-devel
 BuildRequires: xz
 BuildRequires: yelp-tools
 Requires:  desktop-file-utils
 Requires:  glib2 >= 1:2.50.0
 Requires:  gtk+3 >= 3.22
+Requires:  gtk-layer-shell >= 0.6
 Requires:  libcanberra >= 0.13
 Requires:  libcanberra-gtk3 >= 0.13
 Requires:  libmatemixer >= 1.10.0


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/mate-media.git/commitdiff/fdfbd25a42d0378ba165060ae91d2c8b66f40ed0

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


DISTFILES: mate-media: mate-media-1.28.1.tar.xz

2024-05-27 Thread qboosh
Request by: qboosh


Files fetched: 1

STORED: https://pub.mate-desktop.org/releases/1.28/mate-media-1.28.1.tar.xz
652d7db93b9b6f91accc3a345d5c20c8  mate-media-1.28.1.tar.xz
Size: 588944 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/mate-notification-daemon] - updated to 1.28.0

2024-05-27 Thread qboosh
commit d445de1dcd4d8a8a7f442af519d0703cee9e0f35
Author: Jakub Bogusz 
Date:   Mon May 27 21:11:51 2024 +0200

- updated to 1.28.0

 mate-notification-daemon.spec | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)
---
diff --git a/mate-notification-daemon.spec b/mate-notification-daemon.spec
index 08b631f..4318fbf 100644
--- a/mate-notification-daemon.spec
+++ b/mate-notification-daemon.spec
@@ -6,12 +6,12 @@
 Summary:   Notification daemon for MATE Desktop
 Summary(pl.UTF-8): Demon powiadomień dla środowiska MATE Desktop
 Name:  mate-notification-daemon
-Version:   1.26.1
+Version:   1.28.0
 Release:   1
 License:   GPL v2+
 Group: Applications/System
-Source0:   
https://pub.mate-desktop.org/releases/1.26/%{name}-%{version}.tar.xz
-# Source0-md5: b9e30f30e08052426e10d99ef8aa8d68
+Source0:   
https://pub.mate-desktop.org/releases/1.28/%{name}-%{version}.tar.xz
+# Source0-md5: 272f2842e4bf7ac269b57ae9b519e454
 URL:   
https://wiki.mate-desktop.org/mate-desktop/components/mate-notification-daemon/
 BuildRequires: autoconf >= 2.63
 BuildRequires: automake >= 1:1.10
@@ -133,6 +133,7 @@ rm -rf $RPM_BUILD_ROOT
 %attr(755,root,root) %{_libdir}/%{name}/engines/libnodoka.so
 %attr(755,root,root) %{_libdir}/%{name}/engines/libslider.so
 %attr(755,root,root) %{_libdir}/%{name}/engines/libstandard.so
+/etc/xdg/autostart/mate-notification-daemon.desktop
 %{_datadir}/dbus-1/services/org.freedesktop.mate.Notifications.service
 %{_datadir}/glib-2.0/schemas/org.mate.NotificationDaemon.gschema.xml
 %{_desktopdir}/mate-notification-properties.desktop


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/mate-notification-daemon.git/commitdiff/d445de1dcd4d8a8a7f442af519d0703cee9e0f35

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


DISTFILES: mate-notification-daemon: mate-notification-daemon-1.28.0.tar.xz

2024-05-27 Thread qboosh
Request by: qboosh


Files fetched: 1

STORED: 
https://pub.mate-desktop.org/releases/1.28/mate-notification-daemon-1.28.0.tar.xz
272f2842e4bf7ac269b57ae9b519e454  mate-notification-daemon-1.28.0.tar.xz
Size: 433572 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/mate-polkit] - updated to 1.28.1

2024-05-27 Thread qboosh
commit 7004f92a29e518a80e942276ec35778d75494e66
Author: Jakub Bogusz 
Date:   Mon May 27 21:12:41 2024 +0200

- updated to 1.28.1

 mate-polkit.spec | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/mate-polkit.spec b/mate-polkit.spec
index a224283..273dc1a 100644
--- a/mate-polkit.spec
+++ b/mate-polkit.spec
@@ -6,12 +6,12 @@
 Summary:   Integrates polkit authentication for MATE desktop
 Summary(pl.UTF-8): Integracja uwierzytelniania polkit ze środowiskiem MATE
 Name:  mate-polkit
-Version:   1.26.1
+Version:   1.28.1
 Release:   1
 License:   LGPL v2+
 Group: X11/Applications
-Source0:   
https://pub.mate-desktop.org/releases/1.26/%{name}-%{version}.tar.xz
-# Source0-md5: 531016f7981470f416ed9cd72b891e6d
+Source0:   
https://pub.mate-desktop.org/releases/1.28/%{name}-%{version}.tar.xz
+# Source0-md5: 4cb48a238219a894b24e5395b75aac90
 URL:   
https://wiki.mate-desktop.org/mate-desktop/components/mate-polkit/
 BuildRequires: autoconf >= 2.50
 BuildRequires: automake >= 1:1.9
@@ -21,7 +21,7 @@ BuildRequires:gobject-introspection-devel >= 0.6.2
 BuildRequires: gtk+3-devel >= %{gtk3_ver}
 BuildRequires: gtk-doc >= 1.3
 %if %{with appindicator}
-BuildRequires: libappindicator-gtk3-devel >= 0.0.13
+BuildRequires: libayatana-appindicator-gtk3-devel >= 0.0.13
 %endif
 BuildRequires: libtool >= 2:2.2.6
 BuildRequires: mate-common
@@ -35,7 +35,7 @@ Requires: glib2 >= 1:2.50.0
 Requires:  gtk+3 >= %{gtk3_ver}
 Requires:  polkit-libs >= 0.97
 %if %{with appindicator}
-Requires:  libappindicator-gtk3 >= 0.0.13
+Requires:  libayatana-appindicator-gtk3 >= 0.0.13
 %endif
 Obsoletes: mate-polkit-devel < 1.20
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/mate-polkit.git/commitdiff/7004f92a29e518a80e942276ec35778d75494e66

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


DISTFILES: mate-polkit: mate-polkit-1.28.1.tar.xz

2024-05-27 Thread qboosh
Request by: qboosh


Files fetched: 1

STORED: https://pub.mate-desktop.org/releases/1.28/mate-polkit-1.28.1.tar.xz
4cb48a238219a894b24e5395b75aac90  mate-polkit-1.28.1.tar.xz
Size: 347556 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/AviSynthPlus] - added x32 patch (disable JIT asm on x32)

2024-05-27 Thread qboosh
commit 91b79d4106f621e898855b20ef05797c881c3948
Author: Jakub Bogusz 
Date:   Mon May 27 21:14:29 2024 +0200

- added x32 patch (disable JIT asm on x32)

 AviSynthPlus-x32.patch | 16 
 AviSynthPlus.spec  |  2 ++
 2 files changed, 18 insertions(+)
---
diff --git a/AviSynthPlus.spec b/AviSynthPlus.spec
index b4cf8fd..f22488e 100644
--- a/AviSynthPlus.spec
+++ b/AviSynthPlus.spec
@@ -12,6 +12,7 @@ Group:Libraries
 #Source0Download: https://github.com/AviSynth/AviSynthPlus/releases
 Source0:   
https://github.com/AviSynth/AviSynthPlus/archive/v%{version}/%{name}-%{version}.tar.gz
 # Source0-md5: e18f562c225aa04792f318a2d3039418
+Patch0:%{name}-x32.patch
 URL:   https://github.com/AviSynth/AviSynthPlus
 BuildRequires: DevIL-devel
 BuildRequires: cmake >= 3.6.2
@@ -57,6 +58,7 @@ Dokumentacja API biblioteki AviSynthPlus.
 
 %prep
 %setup -q
+%patch0 -p1
 
 %build
 install -d build
diff --git a/AviSynthPlus-x32.patch b/AviSynthPlus-x32.patch
new file mode 100644
index 000..74f5422
--- /dev/null
+++ b/AviSynthPlus-x32.patch
@@ -0,0 +1,16 @@
+--- AviSynthPlus-3.7.3/avs_core/filters/exprfilter/exprfilter.cpp.orig 
2023-07-16 02:44:05.0 +0200
 AviSynthPlus-3.7.3/avs_core/filters/exprfilter/exprfilter.cpp  
2024-05-27 21:09:26.648184152 +0200
+@@ -102,11 +102,11 @@
+ #include "../../convert/convert_helper.h"
+ #include "avs/alignment.h"
+ 
+-#if (defined(_WIN64) && (defined(_M_AMD64) || defined(_M_X64))) || 
defined(__x86_64__)
++#if (defined(_WIN64) && (defined(_M_AMD64) || defined(_M_X64))) || 
(defined(__x86_64__) && defined(__LP64__))
+ #define JITASM64
+ #endif
+ 
+-#ifdef INTEL_INTRINSICS
++#if defined(INTEL_INTRINSICS) && !(defined(__x86_64__) && defined(__ILP32__))
+ #define VS_TARGET_CPU_X86
+ #endif
+ #ifdef AVS_WINDOWS


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/AviSynthPlus.git/commitdiff/91b79d4106f621e898855b20ef05797c881c3948

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


[packages/mate-power-manager] - updated to 1.28.1

2024-05-27 Thread qboosh
commit cf80826fbab25064df01b8c87316bcc4ee8ab931
Author: Jakub Bogusz 
Date:   Mon May 27 21:15:33 2024 +0200

- updated to 1.28.1

 mate-power-manager.spec | 8 +---
 1 file changed, 5 insertions(+), 3 deletions(-)
---
diff --git a/mate-power-manager.spec b/mate-power-manager.spec
index 62ca997..8c349d0 100644
--- a/mate-power-manager.spec
+++ b/mate-power-manager.spec
@@ -5,12 +5,12 @@
 Summary:   MATE power management service
 Summary(pl.UTF-8): Usługa zarządzania energią dla MATE
 Name:  mate-power-manager
-Version:   1.26.1
+Version:   1.28.1
 Release:   1
 License:   GPL v2+
 Group: X11/Applications
-Source0:   
https://pub.mate-desktop.org/releases/1.26/%{name}-%{version}.tar.xz
-# Source0-md5: e789755a50a87a4c91b35218f2e0620a
+Source0:   
https://pub.mate-desktop.org/releases/1.28/%{name}-%{version}.tar.xz
+# Source0-md5: 6859e63c87d8a3fd2e4352366fb3fe21
 URL:   https://github.com/mate-desktop/mate-power-manager
 BuildRequires: autoconf >= 2.63
 BuildRequires: automake >= 1:1.9
@@ -28,6 +28,7 @@ BuildRequires:libnotify-devel >= 0.7.0
 BuildRequires: libsecret-devel >= 0.11
 BuildRequires: libtool >= 2:2
 BuildRequires: mate-common
+BuildRequires: mate-desktop-devel >= 1.27.1
 BuildRequires: mate-panel-devel >= 1.17.0
 BuildRequires: pkgconfig
 BuildRequires: polkit-devel
@@ -55,6 +56,7 @@ Requires: hicolor-icon-theme
 Requires:  libcanberra-gtk3 >= 0.10
 Requires:  libnotify >= 0.7.0
 Requires:  libsecret >= 0.11
+Requires:  mate-desktop >= 1.27.1
 Requires:  mate-panel >= 1.17.0
 Requires:  upower >= 0.99.8
 Requires:  xorg-lib-libXrandr >= 1.3.0


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/mate-power-manager.git/commitdiff/cf80826fbab25064df01b8c87316bcc4ee8ab931

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


DISTFILES: mate-power-manager: mate-power-manager-1.28.1.tar.xz

2024-05-27 Thread qboosh
Request by: qboosh


Files fetched: 1

STORED: 
https://pub.mate-desktop.org/releases/1.28/mate-power-manager-1.28.1.tar.xz
6859e63c87d8a3fd2e4352366fb3fe21  mate-power-manager-1.28.1.tar.xz
Size: 6724724 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: mate-screensaver: mate-screensaver-1.28.0.tar.xz

2024-05-27 Thread qboosh
Request by: qboosh


Files fetched: 1

STORED: 
https://pub.mate-desktop.org/releases/1.28/mate-screensaver-1.28.0.tar.xz
0ae075d5d3c0f84d1cb1898bc231d504  mate-screensaver-1.28.0.tar.xz
Size: 5108156 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/mate-screensaver] - updated to 1.28.0

2024-05-27 Thread qboosh
commit 95e77cec675f1e790b0bc4ae6f6513ed444f6ffc
Author: Jakub Bogusz 
Date:   Mon May 27 21:17:35 2024 +0200

- updated to 1.28.0

 mate-screensaver.spec | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)
---
diff --git a/mate-screensaver.spec b/mate-screensaver.spec
index d4fedc2..1594999 100644
--- a/mate-screensaver.spec
+++ b/mate-screensaver.spec
@@ -1,12 +1,12 @@
 Summary:   MATE screensaver
 Summary(pl.UTF-8): Wygaszacz ekranu MATE
 Name:  mate-screensaver
-Version:   1.26.2
+Version:   1.28.0
 Release:   1
 License:   GPL v2
 Group: X11/Applications
-Source0:   
https://pub.mate-desktop.org/releases/1.26/%{name}-%{version}.tar.xz
-# Source0-md5: 6268aa589af67e3a818240d55377f34c
+Source0:   
https://pub.mate-desktop.org/releases/1.28/%{name}-%{version}.tar.xz
+# Source0-md5: 0ae075d5d3c0f84d1cb1898bc231d504
 Source1:   %{name}.pamd
 URL:   
https://wiki.mate-desktop.org/mate-desktop/components/mate-screensaver/
 BuildRequires: OpenGL-GLX-devel
@@ -18,7 +18,7 @@ BuildRequires:gettext-tools >= 0.19.8
 BuildRequires: glib2-devel >= 1:2.58.0
 BuildRequires: gtk+3-devel >= 3.22
 BuildRequires: libmatekbd-devel >= 1.17.0
-BuildRequires: libnotify-devel >= 0.7.0
+BuildRequires: libnotify-devel >= 0.7.1
 BuildRequires: libtool >= 1:1.4.3
 BuildRequires: mate-common
 BuildRequires: mate-desktop-devel >= 1.17.0
@@ -26,13 +26,13 @@ BuildRequires:  mate-menus-devel >= 1.21.0
 BuildRequires: pam-devel
 BuildRequires: pkgconfig
 BuildRequires: rpmbuild(macros) >= 1.592
+# or elogind
 BuildRequires: systemd-devel
 BuildRequires: tar >= 1:1.22
 BuildRequires: xmlto
 BuildRequires: xorg-lib-libX11-devel >= 1.0
 BuildRequires: xorg-lib-libXScrnSaver-devel
 BuildRequires: xorg-lib-libXext-devel
-BuildRequires: xorg-lib-libXxf86misc-devel
 BuildRequires: xorg-lib-libXxf86vm-devel
 BuildRequires: xz
 Requires(post,postun): glib2 >= 1:2.58.0
@@ -40,7 +40,7 @@ Requires: dbus-glib >= 0.30
 Requires:  glib2 >= 1:2.58.0
 Requires:  gtk+3 >= 3.22
 Requires:  libmatekbd >= 1.17.0
-Requires:  libnotify >= 0.7.0
+Requires:  libnotify >= 0.7.1
 Requires:  mate-desktop >= 1.17.0
 Requires:  mate-menus >= 1.21.0
 Requires:  xdg-menus


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/mate-screensaver.git/commitdiff/95e77cec675f1e790b0bc4ae6f6513ed444f6ffc

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


[packages/mate-applet-sensors] - updated to 1.28.0; enable nvidia on x32

2024-05-27 Thread qboosh
commit 26bd91b2ff7ae2de9e38bc66cfcc5854649233a6
Author: Jakub Bogusz 
Date:   Mon May 27 21:18:53 2024 +0200

- updated to 1.28.0; enable nvidia on x32

 mate-applet-sensors.spec | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/mate-applet-sensors.spec b/mate-applet-sensors.spec
index 41bbd86..58d49aa 100644
--- a/mate-applet-sensors.spec
+++ b/mate-applet-sensors.spec
@@ -2,18 +2,18 @@
 # Conditional build:
 %bcond_without nvidia  # NVidia sensors
 
-%ifnarch %{ix86} %{x8664}
+%ifnarch %{ix86} %{x8664} x32
 %undefine  with_nvidia
 %endif
 Summary:   MATE Sensors Applet
 Summary(pl.UTF-8): MATE Sensors Applet - aplet z czujnikami dla środowiska 
MATE
 Name:  mate-applet-sensors
-Version:   1.26.0
+Version:   1.28.0
 Release:   1
 License:   GPL v2+
 Group: X11/Applications
-Source0:   
https://pub.mate-desktop.org/releases/1.26/mate-sensors-applet-%{version}.tar.xz
-# Source0-md5: 6143274d8a051c0c5573163ee343ca4d
+Source0:   
https://pub.mate-desktop.org/releases/1.28/mate-sensors-applet-%{version}.tar.xz
+# Source0-md5: fa5a6870b6a5d3a486e07ac8d512478f
 URL:   https://github.com/mate-desktop/mate-sensors-applet
 BuildRequires: autoconf >= 2.53
 BuildRequires: automake >= 1:1.9


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/mate-applet-sensors.git/commitdiff/26bd91b2ff7ae2de9e38bc66cfcc5854649233a6

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


DISTFILES: mate-applet-sensors: mate-sensors-applet-1.28.0.tar.xz

2024-05-27 Thread qboosh
Request by: qboosh


Files fetched: 1

STORED: 
https://pub.mate-desktop.org/releases/1.28/mate-sensors-applet-1.28.0.tar.xz
fa5a6870b6a5d3a486e07ac8d512478f  mate-sensors-applet-1.28.0.tar.xz
Size: 624084 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/mate-session-manager] - updated to 1.28.0

2024-05-27 Thread qboosh
commit 69757f762cf3f6845fdba98455bcd6e21f036417
Author: Jakub Bogusz 
Date:   Mon May 27 21:22:25 2024 +0200

- updated to 1.28.0

 double-free.patch | 23 ---
 mate-session-manager.spec | 10 --
 2 files changed, 4 insertions(+), 29 deletions(-)
---
diff --git a/mate-session-manager.spec b/mate-session-manager.spec
index a805cfd..d2b259f 100644
--- a/mate-session-manager.spec
+++ b/mate-session-manager.spec
@@ -10,13 +10,12 @@
 Summary:   MATE Desktop session manager
 Summary(pl.UTF-8): Zarządca sesji środowiska MATE Desktop
 Name:  mate-session-manager
-Version:   1.26.1
-Release:   2
+Version:   1.28.0
+Release:   1
 License:   GPL v2+
 Group: X11/Applications
-Source0:   
https://pub.mate-desktop.org/releases/1.26/%{name}-%{version}.tar.xz
-# Source0-md5: b3ff2d52219eb2f0f48890d19d1e04ff
-Patch0:double-free.patch
+Source0:   
https://pub.mate-desktop.org/releases/1.28/%{name}-%{version}.tar.xz
+# Source0-md5: 69fe63145a1d66f7cd168f62b90244a2
 URL:   
https://wiki.mate-desktop.org/mate-desktop/components/mate-session-manager/
 BuildRequires: EGL-devel
 BuildRequires: OpenGL-devel
@@ -83,7 +82,6 @@ Dokumentacja API D-Bus MATE Session Managera.
 
 %prep
 %setup -q
-%patch0 -p1
 
 %build
 %{__aclocal}
diff --git a/double-free.patch b/double-free.patch
deleted file mode 100644
index dacdbd0..000
--- a/double-free.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-From b6d1d780f921bcb0abca075828b842de81b8 Mon Sep 17 00:00:00 2001
-From: Jan Palus 
-Date: Sun, 21 May 2023 00:30:29 +0200
-Subject: [PATCH] main: fix double free on gl_renderer
-
-Fixes: 1263384 ("mate-session: fix memory leak")
-Fixes: #304

- mate-session/main.c | 1 -
- 1 file changed, 1 deletion(-)
-
-diff --git a/mate-session/main.c b/mate-session/main.c
-index fc2148e8..68e38647 100644
 a/mate-session/main.c
-+++ b/mate-session/main.c
-@@ -759,7 +759,6 @@ int main(int argc, char** argv)
- 
-   gsm_xsmp_server_start(xsmp_server);
-   _gsm_manager_set_renderer (manager, gl_renderer);
--  g_free (gl_renderer);
-   gsm_manager_start(manager);
- 
-   gtk_main();


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/mate-session-manager.git/commitdiff/69757f762cf3f6845fdba98455bcd6e21f036417

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


DISTFILES: mate-session-manager: mate-session-manager-1.28.0.tar.xz

2024-05-27 Thread qboosh
Request by: qboosh


Files fetched: 1

STORED: 
https://pub.mate-desktop.org/releases/1.28/mate-session-manager-1.28.0.tar.xz
69fe63145a1d66f7cd168f62b90244a2  mate-session-manager-1.28.0.tar.xz
Size: 732024 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/mate-system-monitor] - updated to 1.28.1

2024-05-27 Thread qboosh
commit f90e772b9e1cc3b2e944075780552e9a379aa2c9
Author: Jakub Bogusz 
Date:   Mon May 27 21:23:23 2024 +0200

- updated to 1.28.1

 mate-system-monitor.spec | 17 +++--
 1 file changed, 11 insertions(+), 6 deletions(-)
---
diff --git a/mate-system-monitor.spec b/mate-system-monitor.spec
index 7bfceb6..e1ba0a8 100644
--- a/mate-system-monitor.spec
+++ b/mate-system-monitor.spec
@@ -1,12 +1,16 @@
+#
+# Conditional build:
+%bcond_withwnck# wnck support
+
 Summary:   Process and resource monitor for MATE desktop
 Summary(pl.UTF-8): Monitor procesów w zasobów dla środowiska MATE
 Name:  mate-system-monitor
-Version:   1.26.3
+Version:   1.28.1
 Release:   1
 License:   GPL v2+
 Group: X11/Applications
-Source0:   
https://pub.mate-desktop.org/releases/1.26/%{name}-%{version}.tar.xz
-# Source0-md5: f5f28aa48ae3bdf4ab1a05bfed31c880
+Source0:   
https://pub.mate-desktop.org/releases/1.28/%{name}-%{version}.tar.xz
+# Source0-md5: 72d44cc3c9f3d9aa464d4dcd92f9302f
 URL:   
https://wiki.mate-desktop.org/mate-desktop/applications/mate-system-monitor/
 BuildRequires: autoconf >= 2.63
 BuildRequires: automake >= 1:1.11
@@ -22,7 +26,7 @@ BuildRequires:libgtop-devel >= 1:2.37.2
 BuildRequires: librsvg-devel >= 2.35
 BuildRequires: libstdc++-devel >= 6:4.7
 BuildRequires: libtool >= 2:2.2
-BuildRequires: libwnck-devel >= 3.0.0
+%{?with_wnck:BuildRequires:libwnck-devel >= 3.0.0}
 BuildRequires: libxml2-devel >= 2.0
 BuildRequires: mate-common
 BuildRequires: pkgconfig >= 1:0.19
@@ -41,7 +45,7 @@ Requires: gtk+3 >= 3.22.0
 Requires:  gtkmm3 >= 3.8.1
 Requires:  libgtop >= 1:2.37.2
 Requires:  librsvg >= 2.35
-Requires:  libwnck >= 3.0.0
+%{?with_wnck:Requires: libwnck >= 3.0.0}
 Requires:  mate-desktop
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
@@ -67,7 +71,8 @@ zasobów, takich jak procesor i pamięć.
 %configure \
--disable-silent-rules \
--disable-static \
-   --enable-compile-warnings=minimum
+   --enable-compile-warnings=minimum \
+   %{?with_wnck:--enable-wnck}
 
 %{__make}
 


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/mate-system-monitor.git/commitdiff/f90e772b9e1cc3b2e944075780552e9a379aa2c9

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


DISTFILES: mate-system-monitor: mate-system-monitor-1.28.1.tar.xz

2024-05-27 Thread qboosh
Request by: qboosh


Files fetched: 1

STORED: 
https://pub.mate-desktop.org/releases/1.28/mate-system-monitor-1.28.1.tar.xz
72d44cc3c9f3d9aa464d4dcd92f9302f  mate-system-monitor-1.28.1.tar.xz
Size: 2521892 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/mate-terminal] - updated to 1.28.1

2024-05-27 Thread qboosh
commit 1717f6741d544d23d74217228aebbe60f8a914ba
Author: Jakub Bogusz 
Date:   Mon May 27 21:23:56 2024 +0200

- updated to 1.28.1

 mate-terminal.spec | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/mate-terminal.spec b/mate-terminal.spec
index 969e604..091ac38 100644
--- a/mate-terminal.spec
+++ b/mate-terminal.spec
@@ -1,12 +1,12 @@
 Summary:   MATE Terminal Emulator
 Summary(pl.UTF-8): Emulator terminala dla środowiska MATE
 Name:  mate-terminal
-Version:   1.26.1
+Version:   1.28.1
 Release:   1
 License:   GPL v3+
 Group: X11/Applications
-Source0:   
https://pub.mate-desktop.org/releases/1.26/%{name}-%{version}.tar.xz
-# Source0-md5: 7c06c4404c5b46f7e1ad2ef0c56865cc
+Source0:   
https://pub.mate-desktop.org/releases/1.28/%{name}-%{version}.tar.xz
+# Source0-md5: 53426fa59b94b761aa570c672a0f9986
 Patch0:wordseps.patch
 URL:   
https://wiki.mate-desktop.org/mate-desktop/applications/mate-terminal/
 BuildRequires: autoconf >= 2.53
@@ -25,7 +25,7 @@ BuildRequires:rpmbuild(find_lang) >= 1.36
 BuildRequires: rpmbuild(macros) >= 1.592
 BuildRequires: sed >= 4.0
 BuildRequires: tar >= 1:1.22
-BuildRequires: vte-devel >= 0.48
+BuildRequires: vte-devel >= 0.49.1
 BuildRequires: xorg-lib-libICE-devel >= 1.0.0
 BuildRequires: xorg-lib-libSM-devel >= 1.0.0
 BuildRequires: xorg-lib-libX11-devel
@@ -36,7 +36,7 @@ Requires: glib2 >= 1:2.50.0
 Requires:  gtk+3 >= 3.22.0
 # org.mate.interface configuration scheme
 Requires:  mate-desktop >= 1.24.0
-Requires:  vte >= 0.48
+Requires:  vte >= 0.49.1
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/mate-terminal.git/commitdiff/1717f6741d544d23d74217228aebbe60f8a914ba

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


DISTFILES: mate-terminal: mate-terminal-1.28.1.tar.xz

2024-05-27 Thread qboosh
Request by: qboosh


Files fetched: 1

STORED: https://pub.mate-desktop.org/releases/1.28/mate-terminal-1.28.1.tar.xz
53426fa59b94b761aa570c672a0f9986  mate-terminal-1.28.1.tar.xz
Size: 2143744 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/mate-user-guide] - updated to 1.28.0

2024-05-27 Thread qboosh
commit dbe28cc807e7865503993968ed7e57ef1fd2b86e
Author: Jakub Bogusz 
Date:   Mon May 27 21:24:35 2024 +0200

- updated to 1.28.0

 mate-user-guide.spec | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/mate-user-guide.spec b/mate-user-guide.spec
index 7a9ccbd..5d096af 100644
--- a/mate-user-guide.spec
+++ b/mate-user-guide.spec
@@ -1,15 +1,15 @@
 Summary:   User help for MATE
 Summary(pl.UTF-8): Pomoc użytkownika dla środowiska MATE
 Name:  mate-user-guide
-Version:   1.26.2
+Version:   1.28.0
 Release:   1
 License:   FDL v1.1+
 Group: Documentation
-Source0:   
https://pub.mate-desktop.org/releases/1.26/%{name}-%{version}.tar.xz
-# Source0-md5: ee8ba05a8760b91adaa8494f2583d8a6
+Source0:   
https://pub.mate-desktop.org/releases/1.28/%{name}-%{version}.tar.xz
+# Source0-md5: e845384a7cbbd1c29264e691453b34bb
 Patch0:noarch-build.patch
 URL:   https://mate-desktop.org/
-BuildRequires: autoconf
+BuildRequires: autoconf >= 2.50
 BuildRequires: automake >= 1:1.11
 BuildRequires: gettext-tools >= 0.19.8
 BuildRequires: tar >= 1:1.22


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/mate-user-guide.git/commitdiff/dbe28cc807e7865503993968ed7e57ef1fd2b86e

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


DISTFILES: mate-user-guide: mate-user-guide-1.28.0.tar.xz

2024-05-27 Thread qboosh
Request by: qboosh


Files fetched: 1

STORED: https://pub.mate-desktop.org/releases/1.28/mate-user-guide-1.28.0.tar.xz
e845384a7cbbd1c29264e691453b34bb  mate-user-guide-1.28.0.tar.xz
Size: 9270968 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/mate-user-share] - updated to 1.28.0

2024-05-27 Thread qboosh
commit 2f41553e655e211c0dfb6731d517dad1e15279b5
Author: Jakub Bogusz 
Date:   Mon May 27 21:25:19 2024 +0200

- updated to 1.28.0

 mate-user-share.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/mate-user-share.spec b/mate-user-share.spec
index 8b72b13..332b266 100644
--- a/mate-user-share.spec
+++ b/mate-user-share.spec
@@ -6,12 +6,12 @@
 Summary:   User-level file sharing for MATE desktop
 Summary(pl.UTF-8): Współdzielenie plików na poziomie użytkownika dla 
środowiska MATE
 Name:  mate-user-share
-Version:   1.26.0
+Version:   1.28.0
 Release:   1
 License:   GPL v2+
 Group: X11/Applications
-Source0:   
https://pub.mate-desktop.org/releases/1.26/%{name}-%{version}.tar.xz
-# Source0-md5: a87b71beebdfe16a24f92c16eff9e43d
+Source0:   
https://pub.mate-desktop.org/releases/1.28/%{name}-%{version}.tar.xz
+# Source0-md5: 5ad96ec7a0f63ee1e248d68544172fb7
 URL:   https://github.com/mate-desktop/mate-user-share
 %{?with_caja:BuildRequires:caja-devel >= 1.17.1}
 BuildRequires: dbus-glib-devel


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/mate-user-share.git/commitdiff/2f41553e655e211c0dfb6731d517dad1e15279b5

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


DISTFILES: mate-user-share: mate-user-share-1.28.0.tar.xz

2024-05-27 Thread qboosh
Request by: qboosh


Files fetched: 1

STORED: https://pub.mate-desktop.org/releases/1.28/mate-user-share-1.28.0.tar.xz
5ad96ec7a0f63ee1e248d68544172fb7  mate-user-share-1.28.0.tar.xz
Size: 1039764 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/mate-utils] - updated to 1.28.0

2024-05-27 Thread qboosh
commit 0fd74e3cff86265e1a62628bfae02669ad59fe2e
Author: Jakub Bogusz 
Date:   Mon May 27 21:26:02 2024 +0200

- updated to 1.28.0

 mate-utils.spec | 16 
 1 file changed, 12 insertions(+), 4 deletions(-)
---
diff --git a/mate-utils.spec b/mate-utils.spec
index 9d0d749..37cce28 100644
--- a/mate-utils.spec
+++ b/mate-utils.spec
@@ -1,12 +1,12 @@
 Summary:   MATE utility programs
 Summary(pl.UTF-8): Programy użytkowe dla środowiska MATE
 Name:  mate-utils
-Version:   1.26.1
-Release:   2
+Version:   1.28.0
+Release:   1
 License:   LGPL v2+ (libmatedict), GPL v2+ (programs), FDL (documentation)
 Group: X11/Applications/Multimedia
-Source0:   
https://pub.mate-desktop.org/releases/1.26/%{name}-%{version}.tar.xz
-# Source0-md5: 1ce3bb086f21a8beb5c1897bc4594bd7
+Source0:   
https://pub.mate-desktop.org/releases/1.28/%{name}-%{version}.tar.xz
+# Source0-md5: b5820b69d1c292712a7a45a933d9c2da
 URL:   https://github.com/mate-desktop/mate-utils
 BuildRequires: autoconf >= 2.53
 BuildRequires: automake >= 1:1.11
@@ -15,17 +15,24 @@ BuildRequires:  gettext-tools >= 0.19.8
 BuildRequires: glib2-devel >= 1:2.50.0
 BuildRequires: gtk+3-devel >= 3.22
 BuildRequires: gtk-doc >= 1.10
+# wayland not finished yet (there are configure checks, but used minimal 
versions are not defined)
+#BuildRequires:gtk-layer-shell-devel
 BuildRequires: inkscape
 BuildRequires: libcanberra-gtk3-devel >= 0.4
 BuildRequires: libgtop-devel >= 1:2.12.0
+# rsvg-convert
+BuildRequires: librsvg
 BuildRequires: libtool >= 1:1.4.3
 BuildRequires: mate-common
+BuildRequires: mate-desktop-devel >= 1.27.1
 BuildRequires: mate-panel-devel >= 1.17.0
 BuildRequires: rpm-build >= 4.6
 BuildRequires: rpmbuild(find_lang) >= 1.36
 BuildRequires: rpmbuild(macros) >= 1.596
 BuildRequires: tar >= 1:1.22
 BuildRequires: udisks2-devel >= 1.90.0
+# wayland-client
+#BuildRequires:wayland-devel
 BuildRequires: xorg-lib-libICE-devel >= 1.0.0
 BuildRequires: xorg-lib-libSM-devel >= 1.0.0
 BuildRequires: xorg-lib-libX11-devel
@@ -42,6 +49,7 @@ Requires: hicolor-icon-theme
 Requires:  libcanberra-gtk3 >= 0.4
 Requires:  libgtop >= 1:2.12.0
 Requires:  libmatedict = %{version}-%{release}
+Requires:  mate-desktop >= 1.27.1
 Requires:  mate-panel >= 1.17.0
 Requires:  udisks2-libs >= 1.90.0
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/mate-utils.git/commitdiff/0fd74e3cff86265e1a62628bfae02669ad59fe2e

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


DISTFILES: mate-utils: mate-utils-1.28.0.tar.xz

2024-05-27 Thread qboosh
Request by: qboosh


Files fetched: 1

STORED: https://pub.mate-desktop.org/releases/1.28/mate-utils-1.28.0.tar.xz
b5820b69d1c292712a7a45a933d9c2da  mate-utils-1.28.0.tar.xz
Size: 7986440 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/mozo] - updated to 1.28.0

2024-05-27 Thread qboosh
commit 9a4b575c427d38f70cf3d5c9dcd4037c9bd7b1be
Author: Jakub Bogusz 
Date:   Mon May 27 21:27:29 2024 +0200

- updated to 1.28.0

 mozo.spec | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/mozo.spec b/mozo.spec
index f46b7e4..095ddf1 100644
--- a/mozo.spec
+++ b/mozo.spec
@@ -1,15 +1,15 @@
 Summary:   Mozo - menu editor for MATE desktop
 Summary(pl.UTF-8): Mozo - edytor menu dla środowiska MATE
 Name:  mozo
-Version:   1.26.2
+Version:   1.28.0
 Release:   1
 License:   GPL v2
 Group: X11/Applications
-Source0:   
https://pub.mate-desktop.org/releases/1.26/%{name}-%{version}.tar.xz
-# Source0-md5: 3a9785c81bcfa4e356b3d28785ee3d6e
+Source0:   
https://pub.mate-desktop.org/releases/1.28/%{name}-%{version}.tar.xz
+# Source0-md5: 6e162b11a093d7f1743329e40907b96f
 Patch0:%{name}-noarch.patch
 URL:   https://wiki.mate-desktop.org/mate-desktop/applications/mozo/
-BuildRequires: autoconf >= 2.53
+BuildRequires: autoconf >= 2.58
 BuildRequires: automake >= 1:1.7
 BuildRequires: gettext-tools >= 0.19.8
 BuildRequires: mate-menus-devel >= 1.21.0


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/mozo.git/commitdiff/9a4b575c427d38f70cf3d5c9dcd4037c9bd7b1be

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


DISTFILES: mozo: mozo-1.28.0.tar.xz

2024-05-27 Thread qboosh
Request by: qboosh


Files fetched: 1

STORED: https://pub.mate-desktop.org/releases/1.28/mozo-1.28.0.tar.xz
6e162b11a093d7f1743329e40907b96f  mozo-1.28.0.tar.xz
Size: 251512 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/pluma] - updated to 1.28.0

2024-05-27 Thread qboosh
commit 43238dde90372369ce1a260b3bef844847d2f3f6
Author: Jakub Bogusz 
Date:   Mon May 27 21:28:06 2024 +0200

- updated to 1.28.0

 pluma.spec | 9 ++---
 1 file changed, 6 insertions(+), 3 deletions(-)
---
diff --git a/pluma.spec b/pluma.spec
index 1113b00..787a781 100644
--- a/pluma.spec
+++ b/pluma.spec
@@ -1,12 +1,12 @@
 Summary:   Pluma - MATE Text Editor
 Summary(pl.UTF-8): Pluma - edytor tekstu dla środowiska MATE
 Name:  pluma
-Version:   1.26.2
+Version:   1.28.0
 Release:   1
 License:   GPL v2+
 Group: X11/Applications/Editors
-Source0:   
https://pub.mate-desktop.org/releases/1.26/%{name}-%{version}.tar.xz
-# Source0-md5: 22f27f3b9f2a5f27cf0a3ef3946d78a0
+Source0:   
https://pub.mate-desktop.org/releases/1.28/%{name}-%{version}.tar.xz
+# Source0-md5: 046b64d4549b7561921fedbddbfe64af
 URL:   https://wiki.mate-desktop.org/mate-desktop/applications/pluma/
 BuildRequires: autoconf >= 2.63.2
 BuildRequires: automake >= 1:1.10
@@ -18,6 +18,7 @@ BuildRequires:gobject-introspection-devel >= 0.9.3
 BuildRequires: gtk+3-devel >= 3.22
 BuildRequires: gtk-doc >= 1.0
 BuildRequires: gtksourceview4-devel >= 4.0.2
+# iso-639, iso-3166
 BuildRequires: iso-codes >= 0.35
 BuildRequires: libpeas-devel >= 1.2.0
 BuildRequires: libpeas-gtk-devel >= 1.2.0
@@ -25,6 +26,7 @@ BuildRequires:libsoup-devel >= 2.4
 BuildRequires: libtool >= 2:2.2.6
 BuildRequires: libxml2-devel >= 1:2.5.0
 BuildRequires: mate-common
+BuildRequires: mate-desktop-devel >= 1.27.1
 BuildRequires: pkgconfig
 BuildRequires: python3-devel
 BuildRequires: rpm-build >= 4.6
@@ -47,6 +49,7 @@ Requires: iso-codes >= 0.35
 Requires:  libpeas >= 1.2.0
 Requires:  libpeas-gtk >= 1.2.0
 Requires:  libxml2 >= 1:2.5.0
+Requires:  mate-desktop >= 1.27.1
 Requires:  python3-pygobject3 >= 3.0
 Requires:  xorg-lib-libSM >= 1.0.0
 Obsoletes: mate-text-editor < 1.8.0


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/pluma.git/commitdiff/43238dde90372369ce1a260b3bef844847d2f3f6

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


DISTFILES: pluma: pluma-1.28.0.tar.xz

2024-05-27 Thread qboosh
Request by: qboosh


Files fetched: 1

STORED: https://pub.mate-desktop.org/releases/1.28/pluma-1.28.0.tar.xz
046b64d4549b7561921fedbddbfe64af  pluma-1.28.0.tar.xz
Size: 3866800 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/pluma-plugins] - updated to 1.28.0

2024-05-27 Thread qboosh
commit 086ac695c69b1e58f54a9452d397ef8cefcc5a2c
Author: Jakub Bogusz 
Date:   Mon May 27 21:28:48 2024 +0200

- updated to 1.28.0

 pluma-plugins.spec | 31 +--
 1 file changed, 17 insertions(+), 14 deletions(-)
---
diff --git a/pluma-plugins.spec b/pluma-plugins.spec
index 69dfbce..0d1d24e 100644
--- a/pluma-plugins.spec
+++ b/pluma-plugins.spec
@@ -1,12 +1,12 @@
 Summary:   Collection of plugins for the Pluma text editor
 Summary(pl.UTF-8): Zbiór wtyczek do edytora tekstu Pluma
 Name:  pluma-plugins
-Version:   1.26.0
+Version:   1.28.0
 Release:   1
 License:   GPL v2+
 Group: X11/Applications/Editors
-Source0:   
https://pub.mate-desktop.org/releases/1.26/%{name}-%{version}.tar.xz
-# Source0-md5: 577619c0ec64a58bbaa47159751c4b5f
+Source0:   
https://pub.mate-desktop.org/releases/1.28/%{name}-%{version}.tar.xz
+# Source0-md5: ec095a1c4000d261b6b85fb5b96a921b
 URL:   
https://wiki.mate-desktop.org/mate-desktop/components/pluma-plugins/
 BuildRequires: autoconf >= 2.63
 BuildRequires: automake >= 1:1.11
@@ -92,12 +92,22 @@ rm -rf $RPM_BUILD_ROOT
 %defattr(644,root,root,755)
 %doc AUTHORS ChangeLog NEWS
 
+# python common code
+%{_libdir}/pluma/plugins/gpdefs.py
+%{_libdir}/pluma/plugins/__pycache__/gpdefs.cpython-*.py[co]
+
 # C plugins
 %attr(755,root,root) %{_libdir}/pluma/plugins/libbookmarks.so
 %{_libdir}/pluma/plugins/bookmarks.plugin
+%{_datadir}/metainfo/pluma-bookmarks.metainfo.xml
+
+%attr(755,root,root) %{_libdir}/pluma/plugins/libquickhighlight.so
+%{_libdir}/pluma/plugins/quickhighlight.plugin
+%{_datadir}/metainfo/pluma-quickhighlight.metainfo.xml
 
 %attr(755,root,root) %{_libdir}/pluma/plugins/libwordcompletion.so
 %{_libdir}/pluma/plugins/wordcompletion.plugin
+%{_datadir}/glib-2.0/schemas/org.mate.pluma.plugins.wordcompletion.gschema.xml
 
 # Python plugins
 %{_libdir}/pluma/plugins/bracketcompletion.plugin
@@ -107,6 +117,7 @@ rm -rf $RPM_BUILD_ROOT
 %{_libdir}/pluma/plugins/codecomment.plugin
 %{_libdir}/pluma/plugins/codecomment.py
 %{_libdir}/pluma/plugins/__pycache__/codecomment.cpython-*.py[co]
+%{_datadir}/metainfo/pluma-codecomment.metainfo.xml
 
 %{_libdir}/pluma/plugins/smartspaces.plugin
 %{_libdir}/pluma/plugins/smartspaces.py
@@ -114,23 +125,15 @@ rm -rf $RPM_BUILD_ROOT
 
 %{_libdir}/pluma/plugins/sourcecodebrowser
 %{_libdir}/pluma/plugins/sourcecodebrowser.plugin
+%{_datadir}/glib-2.0/schemas/org.mate.pluma.plugins.sourcecodebrowser.gschema.xml
+%{_datadir}/pluma/plugins/sourcecodebrowser
 
 %{_libdir}/pluma/plugins/synctex
 %{_libdir}/pluma/plugins/synctex.plugin
+%{_datadir}/metainfo/pluma-synctex.metainfo.xml
 
 %{_libdir}/pluma/plugins/terminal.plugin
 %{_libdir}/pluma/plugins/terminal.py
 %{_libdir}/pluma/plugins/__pycache__/terminal.cpython-*.py[co]
-
-# python common code
-%{_libdir}/pluma/plugins/gpdefs.py
-%{_libdir}/pluma/plugins/__pycache__/gpdefs.cpython-*.py[co]
-
-%{_datadir}/glib-2.0/schemas/org.mate.pluma.plugins.sourcecodebrowser.gschema.xml
 %{_datadir}/glib-2.0/schemas/org.mate.pluma.plugins.terminal.gschema.xml
-%{_datadir}/glib-2.0/schemas/org.mate.pluma.plugins.wordcompletion.gschema.xml
-%{_datadir}/metainfo/pluma-bookmarks.metainfo.xml
-%{_datadir}/metainfo/pluma-codecomment.metainfo.xml
-%{_datadir}/metainfo/pluma-synctex.metainfo.xml
 %{_datadir}/metainfo/pluma-terminal.metainfo.xml
-%{_datadir}/pluma/plugins/sourcecodebrowser


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/pluma-plugins.git/commitdiff/086ac695c69b1e58f54a9452d397ef8cefcc5a2c

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


DISTFILES: pluma-plugins: pluma-plugins-1.28.0.tar.xz

2024-05-27 Thread qboosh
Request by: qboosh


Files fetched: 1

STORED: https://pub.mate-desktop.org/releases/1.28/pluma-plugins-1.28.0.tar.xz
ec095a1c4000d261b6b85fb5b96a921b  pluma-plugins-1.28.0.tar.xz
Size: 520696 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/caja-python] - updated to 1.28.0

2024-05-27 Thread qboosh
commit 29fef26bcf2c5de088ae706b57c6e29ac711b681
Author: Jakub Bogusz 
Date:   Mon May 27 21:29:21 2024 +0200

- updated to 1.28.0

 caja-python.spec | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/caja-python.spec b/caja-python.spec
index fac9eab..dc81126 100644
--- a/caja-python.spec
+++ b/caja-python.spec
@@ -3,12 +3,12 @@
 Summary:   Python bindings for libcaja-extension library
 Summary(pl.UTF-8): Wiązania Pythona do biblioteki libcaja-extension
 Name:  caja-python
-Version:   1.26.0
-Release:   3
+Version:   1.28.0
+Release:   1
 License:   GPL v2+
 Group: Libraries/Python
-Source0:   
https://pub.mate-desktop.org/releases/1.26/python-caja-%{version}.tar.xz
-# Source0-md5: 08991236a39d9ad8e4c59e564786b9bd
+Source0:   
https://pub.mate-desktop.org/releases/1.28/python-caja-%{version}.tar.xz
+# Source0-md5: eb4514a691f31f0ace89d17cfa817fd3
 URL:   
https://wiki.mate-desktop.org/mate-desktop/components/python-caja/
 BuildRequires: autoconf >= 2.53
 BuildRequires: automake >= 1:1.10


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/caja-python.git/commitdiff/29fef26bcf2c5de088ae706b57c6e29ac711b681

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


DISTFILES: caja-python: python-caja-1.28.0.tar.xz

2024-05-27 Thread qboosh
Request by: qboosh


Files fetched: 1

STORED: https://pub.mate-desktop.org/releases/1.28/python-caja-1.28.0.tar.xz
eb4514a691f31f0ace89d17cfa817fd3  python-caja-1.28.0.tar.xz
Size: 324164 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/c-ares] - updated to 1.29.0

2024-05-27 Thread qboosh
commit c9a6024338d22c0626c4974eacefecfc084cfee0
Author: Jakub Bogusz 
Date:   Mon May 27 21:33:25 2024 +0200

- updated to 1.29.0

 c-ares.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/c-ares.spec b/c-ares.spec
index 1400b7a..6ce4f8a 100644
--- a/c-ares.spec
+++ b/c-ares.spec
@@ -5,13 +5,13 @@
 Summary:   A library that performs asynchronous DNS operations
 Summary(pl.UTF-8): Biblioteka do wykonywania asynchronicznych zapytań DNS
 Name:  c-ares
-Version:   1.28.1
+Version:   1.29.0
 Release:   1
 License:   MIT
 Group: Libraries
 #Source0Download: https://c-ares.org/
 Source0:   https://c-ares.org/download/%{name}-%{version}.tar.gz
-# Source0-md5: 2b0f0df7491538a0d10f3310e13d4b5f
+# Source0-md5: 0768b7b8a7318be4576a68a7c31db6fb
 Patch0:%{name}-resolv.conf-reading-is-not-fatal.patch
 URL:   https://c-ares.org/
 BuildRequires: autoconf >= 2.69


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/c-ares.git/commitdiff/c9a6024338d22c0626c4974eacefecfc084cfee0

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


DISTFILES: c-ares: c-ares-1.29.0.tar.gz

2024-05-27 Thread qboosh
Request by: qboosh


Files fetched: 1

STORED: https://c-ares.org/download/c-ares-1.29.0.tar.gz
0768b7b8a7318be4576a68a7c31db6fb  c-ares-1.29.0.tar.gz
Size: 1329299 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/evince] - updated to 46.3

2024-05-27 Thread qboosh
commit 1144d81510700b978130446cf116ec310d493471
Author: Jakub Bogusz 
Date:   Mon May 27 21:37:31 2024 +0200

- updated to 46.3

 evince.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/evince.spec b/evince.spec
index 806657e..3891edd 100644
--- a/evince.spec
+++ b/evince.spec
@@ -10,12 +10,12 @@
 Summary:   Document viewer for multiple document formats
 Summary(pl.UTF-8): Przeglądarka dokumentów w wielu formatach
 Name:  evince
-Version:   46.1
+Version:   46.3
 Release:   1
 License:   GPL v2+
 Group: X11/Applications/Graphics
 Source0:   
https://download.gnome.org/sources/evince/46/%{name}-%{version}.tar.xz
-# Source0-md5: ec863563c5bc5d238e951d6f88c4de35
+# Source0-md5: c6f2700e62a00ceea09bd392e2aaf7f5
 URL:   https://wiki.gnome.org/Apps/Evince
 BuildRequires: cairo-devel >= 1.10.0
 BuildRequires: dbus-devel


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/evince.git/commitdiff/1144d81510700b978130446cf116ec310d493471

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


DISTFILES: evince: evince-46.3.tar.xz

2024-05-27 Thread qboosh
Request by: qboosh


Files fetched: 1

STORED: https://download.gnome.org/sources/evince/46/evince-46.3.tar.xz
c6f2700e62a00ceea09bd392e2aaf7f5  evince-46.3.tar.xz
Size: 2938324 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/gnome-online-accounts] - updated to 3.50.2

2024-05-27 Thread qboosh
commit 3dfe01bb3a4bd5a6e3c10f2e33ce72a024a7627d
Author: Jakub Bogusz 
Date:   Mon May 27 21:41:12 2024 +0200

- updated to 3.50.2

 gnome-online-accounts.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/gnome-online-accounts.spec b/gnome-online-accounts.spec
index b364c98..449e86b 100644
--- a/gnome-online-accounts.spec
+++ b/gnome-online-accounts.spec
@@ -6,12 +6,12 @@
 Summary:   Provide online accounts information
 Summary(pl.UTF-8): Dostarczanie informacji o kontach w serwisach sieciowych
 Name:  gnome-online-accounts
-Version:   3.50.1
+Version:   3.50.2
 Release:   1
 License:   LGPL v2+
 Group: Libraries
 Source0:   
https://download.gnome.org/sources/gnome-online-accounts/3.50/%{name}-%{version}.tar.xz
-# Source0-md5: f28ddf850689a9f3f646e3ae0dbb8b03
+# Source0-md5: cadc92d6f5663970e2a670338732e6ae
 Patch0:no-gnome-post-install.patch
 URL:   https://wiki.gnome.org/Projects/GnomeOnlineAccounts
 BuildRequires: dbus-devel


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/gnome-online-accounts.git/commitdiff/3dfe01bb3a4bd5a6e3c10f2e33ce72a024a7627d

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


DISTFILES: gnome-online-accounts: gnome-online-accounts-3.50.2.tar.xz

2024-05-27 Thread qboosh
Request by: qboosh


Files fetched: 1

STORED: 
https://download.gnome.org/sources/gnome-online-accounts/3.50/gnome-online-accounts-3.50.2.tar.xz
cadc92d6f5663970e2a670338732e6ae  gnome-online-accounts-3.50.2.tar.xz
Size: 405188 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/ffmpeg] - release 5

2024-05-27 Thread qboosh
commit d9dc2e6c0eb231c6dbbef3439cf4e3f0635d150a
Author: Jakub Bogusz 
Date:   Mon May 27 21:43:33 2024 +0200

- release 5

 ffmpeg.spec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/ffmpeg.spec b/ffmpeg.spec
index 66c2e62..3cafd57 100644
--- a/ffmpeg.spec
+++ b/ffmpeg.spec
@@ -133,7 +133,7 @@ Summary(pl.UTF-8):  FFmpeg - szybki konwerter audio/wideo
 Name:  ffmpeg
 # NOTE: 7.0 prepared on DEVEL-7 branch, but other software is not ready (e.g. 
xine-lib 1.2.13, gstreamer-libav 1.24.2)
 Version:   6.1.1
-Release:   4.1
+Release:   5
 # LGPL or GPL, chosen at configure time (GPL version is more featured)
 # GPL: frei0r libcdio libdavs2 rubberband vidstab x264 x265 xavs xavs2 xvid
 # v3 (allows *GPLv3 or Apache-licensed libs): gmp lensfun opencore-amr vmaf 
vo-*enc rkmpp


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/ffmpeg.git/commitdiff/d9dc2e6c0eb231c6dbbef3439cf4e3f0635d150a

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


[packages/libshumate] - updated to 1.2.2

2024-05-27 Thread qboosh
commit 8e28a173e8aa4dc9f8ab9ad9dcdfa78577f78b29
Author: Jakub Bogusz 
Date:   Mon May 27 21:44:55 2024 +0200

- updated to 1.2.2

 libshumate.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/libshumate.spec b/libshumate.spec
index 9f9af5f..f56554f 100644
--- a/libshumate.spec
+++ b/libshumate.spec
@@ -5,12 +5,12 @@
 Summary:   Map widget for GTK 4
 Summary(pl.UTF-8): Widżet mapy dla GTK 4
 Name:  libshumate
-Version:   1.2.1
+Version:   1.2.2
 Release:   1
 License:   LGPL v2.1+
 Group: X11/Libraries
 Source0:   
https://download.gnome.org/sources/libshumate/1.2/%{name}-%{version}.tar.xz
-# Source0-md5: 16af4e2ef9f6b51a639a459020e7d010
+# Source0-md5: 2c8bb43e8e50d3ba30c57cb28c7ff7d0
 URL:   https://wiki.gnome.org/Projects/libshumate
 BuildRequires: cairo-devel >= 1.4
 %{?with_apidocs:BuildRequires: gi-docgen >= 2021.1}


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/libshumate.git/commitdiff/8e28a173e8aa4dc9f8ab9ad9dcdfa78577f78b29

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


DISTFILES: libshumate: libshumate-1.2.2.tar.xz

2024-05-27 Thread qboosh
Request by: qboosh


Files fetched: 1

STORED: 
https://download.gnome.org/sources/libshumate/1.2/libshumate-1.2.2.tar.xz
2c8bb43e8e50d3ba30c57cb28c7ff7d0  libshumate-1.2.2.tar.xz
Size: 321216 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/vte] - updated to 0.76.2

2024-05-27 Thread qboosh
commit 6b36dc9b27b9eaf7202ebd3ded8868e207cc5d5f
Author: Jakub Bogusz 
Date:   Mon May 27 21:57:01 2024 +0200

- updated to 0.76.2

 vte.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/vte.spec b/vte.spec
index 230011d..0f4a6b7 100644
--- a/vte.spec
+++ b/vte.spec
@@ -8,13 +8,13 @@
 Summary:   VTE terminal widget library
 Summary(pl.UTF-8): Biblioteka z kontrolką terminala VTE
 Name:  vte
-Version:   0.76.1
+Version:   0.76.2
 Release:   1
 # some files have LGPL v2.1+ signature, but some LGPL v3+
 License:   LGPL v3+ (library), GPL v3+ (app)
 Group: X11/Libraries
 Source0:   
https://download.gnome.org/sources/vte/0.76/%{name}-%{version}.tar.xz
-# Source0-md5: 5afec7fb15d190dfc075ce94388f774b
+# Source0-md5: 485e287e57923496ca0eaac30c93695a
 Patch0:%{name}-wordsep.patch
 URL:   https://wiki.gnome.org/Apps/Terminal/VTE
 BuildRequires: cairo-gobject-devel


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/vte.git/commitdiff/6b36dc9b27b9eaf7202ebd3ded8868e207cc5d5f

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


DISTFILES: vte: vte-0.76.2.tar.xz

2024-05-27 Thread qboosh
Request by: qboosh


Files fetched: 1

STORED: https://download.gnome.org/sources/vte/0.76/vte-0.76.2.tar.xz
485e287e57923496ca0eaac30c93695a  vte-0.76.2.tar.xz
Size: 960860 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/libp2p] - new URL, updated to 20240415 snapshot

2024-05-27 Thread qboosh
commit a0a705632c64ebed1ee2b042a372ba8c50ec4c75
Author: Jakub Bogusz 
Date:   Mon May 27 22:05:56 2024 +0200

- new URL, updated to 20240415 snapshot

 libp2p-shared.patch | 14 +++---
 libp2p.spec | 13 ++---
 2 files changed, 13 insertions(+), 14 deletions(-)
---
diff --git a/libp2p.spec b/libp2p.spec
index 3141adf..1f62be0 100644
--- a/libp2p.spec
+++ b/libp2p.spec
@@ -1,4 +1,3 @@
-# TODO: shared library
 #
 # Conditional build:
 %bcond_withsimd# SSE4.1 instructions (runtime detected by 
cpuid)
@@ -10,16 +9,16 @@ Summary: Library to pack/unpack pixels
 Summary(pl.UTF-8): Biblioteka do pakowania/rozpakowywania pikseli
 Name:  libp2p
 Version:   0
-%definegitref  5e65679ae54d0f9fa412ab36289eb2255e341625
-%definesnap20220707
+%definegitref  f52c14efc88c
+%definesnap20240415
 %definerel 1
 Release:   0.%{snap}.%{rel}
 License:   WTFPL v2
 Group: Libraries
-Source0:   
https://github.com/sekrit-twc/libp2p/archive/%{gitref}/%{name}-%{snap}.tar.gz
-# Source0-md5: 663e2005ffe0eecea2cc9336e0b789e4
+Source0:   
https://bitbucket.org/the-sekrit-twc/libp2p/get/%{gitref}.tar.gz#/%{name}-%{gitref}.tar.gz
+# Source0-md5: 12d82bf59fc7408107a21678dff40385
 Patch0:%{name}-shared.patch
-URL:   https://github.com/sekrit-twc/libp2p
+URL:   https://bitbucket.org/the-sekrit-twc/libp2p
 BuildRequires: libstdc++-devel >= 6:5
 BuildRequires: libtool >= 2:1.5
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
@@ -66,7 +65,7 @@ Static libp2p library.
 Statyczna biblioteka libp2p.
 
 %prep
-%setup -q -n %{name}-%{gitref}
+%setup -q -n the-sekrit-twc-%{name}-%{gitref}
 %patch0 -p1
 
 %build
diff --git a/libp2p-shared.patch b/libp2p-shared.patch
index fd1100c..0595493 100644
--- a/libp2p-shared.patch
+++ b/libp2p-shared.patch
@@ -1,5 +1,5 @@
 libp2p-5e65679ae54d0f9fa412ab36289eb2255e341625/Makefile.orig  
2022-07-06 03:05:02.0 +0200
-+++ libp2p-5e65679ae54d0f9fa412ab36289eb2255e341625/Makefile   2023-04-25 
17:12:09.635765402 +0200
+--- the-sekrit-twc-libp2p-f52c14efc88c/Makefile.orig   2024-04-14 
22:53:11.0 +0200
 the-sekrit-twc-libp2p-f52c14efc88c/Makefile2024-05-27 
22:04:11.390564937 +0200
 @@ -12,6 +12,7 @@ libp2p_HDRS = \
  
  libp2p_OBJS = \
@@ -20,9 +20,7 @@
 +includedir = /usr/include
 +libdir = /usr/lib
 +libp2p_LOBJS = $(libp2p_OBJS:.o=.lo)
- 
--%.o: %.cpp $(znedi3_HDRS) $(testapp_HDRS) $(vsxx_HDRS)
--  $(CXX) -c $(EXTRA_CXXFLAGS) $(MY_CXXFLAGS) $(MY_CPPFLAGS) $< -o $@
++ 
 +ifeq ($(SIMD), 1)
 +  simd/p2p_sse41.lo: EXTRA_CXXFLAGS := -msse4.1
 +endif
@@ -30,9 +28,11 @@
 +libp2p.la: $(libp2p_LOBJS)
 +  libtool --tag=CXX --mode=link $(CXX) $(MY_LDFLAGS) $(MY_CXXFLAGS) -o $@ 
$^ -rpath $(libdir)
 +
-+%.lo: %.cpp $(znedi3_HDRS) $(testapp_HDRS) $(vsxx_HDRS)
++%.lo: %.cpp $(libp2p_HDRS)
 +  libtool --tag=CXX --mode=compile $(CXX) -c $(EXTRA_CXXFLAGS) 
$(MY_CXXFLAGS) $(MY_CPPFLAGS) $< -o $@
-+
+ 
+-%.o: %.cpp $(libp2p_HDRS)
+-  $(CXX) -c $(EXTRA_CXXFLAGS) $(MY_CXXFLAGS) $(MY_CPPFLAGS) $< -o $@
 +install:
 +  install -d $(DESTDIR)$(libdir) $(DESTDIR)$(includedir)
 +  install -m644 p2p.h p2p_api.h $(DESTDIR)$(includedir)


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/libp2p.git/commitdiff/a0a705632c64ebed1ee2b042a372ba8c50ec4c75

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


DISTFILES: libp2p: libp2p-f52c14efc88c.tar.gz

2024-05-27 Thread qboosh
Request by: qboosh


Files fetched: 1

STORED: 
https://bitbucket.org/the-sekrit-twc/libp2p/get/f52c14efc88c.tar.gz#/libp2p-f52c14efc88c.tar.gz
12d82bf59fc7408107a21678dff40385  libp2p-f52c14efc88c.tar.gz
Size: 24351 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/mutter] - updated to 46.2

2024-05-27 Thread qboosh
commit 54b3ecc50fcee2fbc35650faa8634b47aedfe8bd
Author: Jakub Bogusz 
Date:   Mon May 27 22:27:14 2024 +0200

- updated to 46.2

 mutter.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/mutter.spec b/mutter.spec
index 0924e3f..c299cb3 100644
--- a/mutter.spec
+++ b/mutter.spec
@@ -9,12 +9,12 @@
 Summary:   Window and compositing manager based on Clutter
 Summary(pl.UTF-8): Zarządca okien i składania oparty na bibliotece Clutter
 Name:  mutter
-Version:   46.1
+Version:   46.2
 Release:   1
 License:   GPL v2+
 Group: X11/Window Managers
 Source0:   
https://download.gnome.org/sources/mutter/46/%{name}-%{version}.tar.xz
-# Source0-md5: bc2266ac2c507f88bcd4d86ab93886ad
+# Source0-md5: 610b76a24ad65ffb6617b2dd74796ebe
 Patch0:%{name}-deps.patch
 URL:   https://gitlab.gnome.org/GNOME/mutter
 BuildRequires: EGL-devel


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/mutter.git/commitdiff/54b3ecc50fcee2fbc35650faa8634b47aedfe8bd

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


DISTFILES: mutter: mutter-46.2.tar.xz

2024-05-27 Thread qboosh
Request by: qboosh


Files fetched: 1

STORED: https://download.gnome.org/sources/mutter/46/mutter-46.2.tar.xz
610b76a24ad65ffb6617b2dd74796ebe  mutter-46.2.tar.xz
Size: 6754976 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/vapoursynth-plugin-bestsource] - updated to R4 release; package also bestsource shared library

2024-05-27 Thread qboosh
commit 5dd8382f83136827823529d3fb4c694d2790e4a9
Author: Jakub Bogusz 
Date:   Mon May 27 22:34:27 2024 +0200

- updated to R4 release; package also bestsource shared library

 bestsource-ffmpeg4.patch | 33 -
 bestsource-system-AviSynthPlus.patch | 11 +
 bestsource-system-libp2p.patch   | 78 +-
 vapoursynth-plugin-bestsource.spec   | 93 
 4 files changed, 128 insertions(+), 87 deletions(-)
---
diff --git a/vapoursynth-plugin-bestsource.spec 
b/vapoursynth-plugin-bestsource.spec
index f41a4e6..6c72c25 100644
--- a/vapoursynth-plugin-bestsource.spec
+++ b/vapoursynth-plugin-bestsource.spec
@@ -1,31 +1,31 @@
+#
+# Conditional build:
+%bcond_without static_libs # static library
+
 Summary:   Vapoursynth plugin to access audio and video via FFmpeg library
 Summary(pl.UTF-8): Wtyczka Vapoursynth pozwalająca na dostęp do dźwięku i 
obrazu poprzez bibliotekę FFmpeg
 Name:  vapoursynth-plugin-bestsource
-# src/version.h says 0.9?
-Version:   0
-%definesnap20230419
-%definegitref  d917b26767c41851c50ccad29d8d126e139a7822
-%definerel 2
-Release:   0.%{snap}.%{rel}
+Version:   4
+Release:   1
 License:   MIT
 Group: Libraries
-Source0:   
https://github.com/vapoursynth/bestsource/archive/%{gitref}/bestsource-%{gitref}.tar.gz
-# Source0-md5: b3afb3b36ed0a7ab457bd1d44927b1a0
+#Source0Download: https://github.com/vapoursynth/bestsource/releases
+Source0:   
https://github.com/vapoursynth/bestsource/archive/R%{version}/bestsource-R%{version}.tar.gz
+# Source0-md5: 32c350818744d5bc395e6ff90c4070c7
 Patch0:bestsource-system-libp2p.patch
-# remove after switching to ffmpeg 5.x, bump BR then
-Patch1:bestsource-ffmpeg4.patch
+Patch1:bestsource-system-AviSynthPlus.patch
 URL:   https://github.com/vapoursynth/bestsource
-# libavcodec >= 58.18.0, libavformat >= 58.12.0
-BuildRequires: ffmpeg-devel >= 4.1
-BuildRequires: jansson-devel >= 2.7
-BuildRequires: libp2p-devel
+BuildRequires: AviSynthPlus-devel
+# libavcodec >= 60.31.0, libavformat >= 60.16.0, libavutil >= 58.29.0
+BuildRequires: ffmpeg-devel >= 6.0
+BuildRequires: libp2p-devel >= 0-0.20240415
 BuildRequires: libstdc++-devel
-BuildRequires: meson >= 0.48.0
+BuildRequires: meson >= 0.53.0
 BuildRequires: ninja >= 1.5
 BuildRequires: pkgconfig
 BuildRequires: vapoursynth-devel >= 55
-Requires:  ffmpeg-libs >= 4.1
-Requires:  jansson >= 2.7
+BuildRequires: xxHash-devel
+Requires:  bestsource = %{version}-%{release}
 Requires:  vapoursynth >= 55
 Obsoletes: vapoursynth-plugin-bestaudiosource < 2
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
@@ -37,13 +37,51 @@ Vapoursynth plugin to access audio and video via FFmpeg 
library.
 Wtyczka Vapoursynth pozwalająca na dostęp do dźwięku i obrazu poprzez
 bibliotekę FFmpeg.
 
+%package -n bestsource
+Summary:   Super great audio/video source and FFmpeg wrapper
+Summary(pl.UTF-8): Bardzo uniwersalne źródło dźwięku/obrazu i opakowanie 
FFmpeg
+Group: Libraries
+Requires:  ffmpeg-libs >= 6.0.0
+Requires:  libp2p >= 0-0.20240415
+
+%description -n bestsource
+Super great audio/video source and FFmpeg wrapper.
+
+%description -n bestsource -l pl.UTF-8
+Bardzo uniwersalne źródło dźwięku/obrazu i opakowanie FFmpeg.
+
+%package -n bestsource-devel
+Summary:   Header files for bestsource library
+Summary(pl.UTF-8): Pliki nagłówkowe biblioteki bestsource
+Group: Development/Libraries
+Requires:  bestsource = %{version}-%{release}
+
+%description -n bestsource-devel
+Header files for bestsource library.
+
+%description -n bestsource-devel -l pl.UTF-8
+Pliki nagłówkowe biblioteki bestsource.
+
+%package -n bestsource-static
+Summary:   Static bestsource library
+Summary(pl.UTF-8): Statyczna biblioteka bestsource
+Group: Development/Libraries
+Requires:  bestsource-devel = %{version}-%{release}
+
+%description -n bestsource-static
+Static bestsource library.
+
+%description -n bestsource-static -l pl.UTF-8
+Statyczna biblioteka bestsource.
+
 %prep
-%setup -q -n bestsource-%{gitref}
+%setup -q -n bestsource-R%{version}
 %patch0 -p1
 %patch1 -p1
 
 %build
-%meson build
+%meson build \
+   %{!?with_static_libs:--default-library=shared}
 
 %ninja_build -C build
 
@@ -58,4 +96,19 @@ rm -rf $RPM_BUILD_ROOT
 %files
 %defattr(644,root,root,755)
 %doc LICENSE README.md
-%attr(755,root,root) %{_libdir}/vapoursynth/libbestsource.so
+%attr(755,root,root) %{_libdir}/vapoursynth/bestsource.so
+
+%files -n bestsource
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_libdir}/libbestsource.so
+
+%files -n bestsource-devel
+%defattr(644,root,root,755)
+%{_includedir}/bestsource
+%{_pkgconfigdir}/bestsource.pc
+
+%if %{with static_libs}
+%files -n bestsource-static
+%defattr(644,root,root,755)
+%{_libdir}/libbestsource.a

DISTFILES: vapoursynth-plugin-bestsource: bestsource-R4.tar.gz

2024-05-27 Thread qboosh
Request by: qboosh


Files fetched: 1

STORED: 
https://github.com/vapoursynth/bestsource/archive/R4/bestsource-R4.tar.gz
32c350818744d5bc395e6ff90c4070c7  bestsource-R4.tar.gz
Size: 49881 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/gnome-shell] - updated to 46.2

2024-05-27 Thread qboosh
commit aace6eac9149769d6116fc83f900b993b577e108
Author: Jakub Bogusz 
Date:   Mon May 27 22:35:46 2024 +0200

- updated to 46.2

 gnome-shell.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/gnome-shell.spec b/gnome-shell.spec
index 39d87bf..2f0e321 100644
--- a/gnome-shell.spec
+++ b/gnome-shell.spec
@@ -25,12 +25,12 @@
 Summary:   Window manager and application launcher for GNOME
 Summary(pl.UTF-8): Zarządca okien i uruchamiania aplikacji dla GNOME
 Name:  gnome-shell
-Version:   46.1
+Version:   46.2
 Release:   1
 License:   GPL v2+
 Group: X11/Window Managers
 Source0:   
https://download.gnome.org/sources/gnome-shell/46/%{name}-%{version}.tar.xz
-# Source0-md5: 56c2bf53f35792430ff0acd08ddb4047
+# Source0-md5: ebb54596ebd8b65552cb63bb56d3226a
 Patch0:%{name}-no-update.patch
 URL:   https://wiki.gnome.org/Projects/GnomeShell
 BuildRequires: NetworkManager-devel >= %{NetworkManager_ver}


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/gnome-shell.git/commitdiff/aace6eac9149769d6116fc83f900b993b577e108

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


DISTFILES: gnome-shell: gnome-shell-46.2.tar.xz

2024-05-27 Thread qboosh
Request by: qboosh


Files fetched: 1

STORED: 
https://download.gnome.org/sources/gnome-shell/46/gnome-shell-46.2.tar.xz
ebb54596ebd8b65552cb63bb56d3226a  gnome-shell-46.2.tar.xz
Size: 2046816 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/vapoursynth-plugin-ocr] - updated to R3

2024-05-27 Thread qboosh
commit 68ab12351f5442192e9752dc4d73cbb0d37e0dcd
Author: Jakub Bogusz 
Date:   Mon May 27 22:40:14 2024 +0200

- updated to R3

 vapoursynth-plugin-ocr.spec |  6 ++
 vs-ocr-meson.patch  | 37 -
 2 files changed, 2 insertions(+), 41 deletions(-)
---
diff --git a/vapoursynth-plugin-ocr.spec b/vapoursynth-plugin-ocr.spec
index 6c974fe..161fadc 100644
--- a/vapoursynth-plugin-ocr.spec
+++ b/vapoursynth-plugin-ocr.spec
@@ -1,15 +1,14 @@
 Summary:   Tesseract-based OCR plugin for Vapoursynth
 Summary(pl.UTF-8): Oparta na Tesserakcie wtyczka OCR dla programu 
Vapoursynth
 Name:  vapoursynth-plugin-ocr
-Version:   1
+Version:   3
 Release:   1
 # it was vapoursynth.spec subpackage up to 54
 Epoch: 1
 License:   MIT
 Group: Libraries
 Source0:   
https://github.com/vapoursynth/vs-ocr/archive/R%{version}/vs-ocr-R%{version}.tar.gz
-# Source0-md5: 108bc131d6b94479f3dc93033af7478e
-Patch0:vs-ocr-meson.patch
+# Source0-md5: 2372d12d4c7061258709106cf64c6881
 URL:   https://github.com/vapoursynth/vs-ocr
 BuildRequires: meson
 BuildRequires: ninja >= 1.5
@@ -28,7 +27,6 @@ klatkach obrazu.
 
 %prep
 %setup -q -n vs-ocr-R%{version}
-%patch0 -p1
 
 %build
 %meson build
diff --git a/vs-ocr-meson.patch b/vs-ocr-meson.patch
deleted file mode 100644
index cf11cda..000
--- a/vs-ocr-meson.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-From d1e80c6a9d6efe7921300c01ffc0f311927ba443 Mon Sep 17 00:00:00 2001
-From: dmo 
-Date: Sun, 26 Sep 2021 22:25:42 +0200
-Subject: [PATCH] Add meson build
-

- meson.build | 21 +
- 1 file changed, 21 insertions(+)
- create mode 100644 meson.build
-
-diff --git a/meson.build b/meson.build
-new file mode 100644
-index 000..f741289
 /dev/null
-+++ b/meson.build
-@@ -0,0 +1,21 @@
-+project('ocr', 'c', 'cpp',
-+  version : '1',
-+  default_options : ['warning_level=3'])
-+
-+add_project_arguments('-ffast-math', language : 'c')
-+
-+sources = [
-+ 'src/ocr.c'
-+]
-+
-+vapoursynth_dep = dependency('vapoursynth', version: 
'>=55').partial_dependency(compile_args : true, includes : true)
-+libtesseract_dep = dependency('tesseract')
-+
-+deps = [vapoursynth_dep, libtesseract_dep]
-+
-+shared_module('ocr', sources,
-+  dependencies : deps,
-+  install : true,
-+  install_dir : join_paths(vapoursynth_dep.get_pkgconfig_variable('libdir'), 
'vapoursynth'),
-+  gnu_symbol_visibility : 'hidden'
-+)


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/vapoursynth-plugin-ocr.git/commitdiff/68ab12351f5442192e9752dc4d73cbb0d37e0dcd

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


DISTFILES: vapoursynth-plugin-ocr: vs-ocr-R3.tar.gz

2024-05-27 Thread qboosh
Request by: qboosh


Files fetched: 1

STORED: https://github.com/vapoursynth/vs-ocr/archive/R3/vs-ocr-R3.tar.gz
2372d12d4c7061258709106cf64c6881  vs-ocr-R3.tar.gz
Size: 7481 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/gnome-shell-extensions] - updated to 46.2

2024-05-27 Thread qboosh
commit e742dbc1939e937c88d613aabf8ecc0f2cecac3c
Author: Jakub Bogusz 
Date:   Mon May 27 22:40:30 2024 +0200

- updated to 46.2

 gnome-shell-extensions.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/gnome-shell-extensions.spec b/gnome-shell-extensions.spec
index 16c9e5b..c4f3988 100644
--- a/gnome-shell-extensions.spec
+++ b/gnome-shell-extensions.spec
@@ -3,12 +3,12 @@
 Summary:   Modify and extend GNOME Shell functionality and behavior
 Summary(pl.UTF-8): Modyfikacje i rozszerzenia funkcjonalności i zachowania 
powłoki GNOME
 Name:  gnome-shell-extensions
-Version:   46.1
+Version:   46.2
 Release:   1
 Group: X11/Applications
 License:   GPL v2+
 Source0:   
https://download.gnome.org/sources/gnome-shell-extensions/46/%{name}-%{version}.tar.xz
-# Source0-md5: acb8af32c832fabf613c08e833dd195b
+# Source0-md5: 915c2b4fd0c64ec6ef00029ef3edf3bb
 URL:   https://wiki.gnome.org/Projects/GnomeShell/Extensions
 BuildRequires: meson >= 0.58.0
 BuildRequires: ninja >= 1.5


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/gnome-shell-extensions.git/commitdiff/e742dbc1939e937c88d613aabf8ecc0f2cecac3c

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


DISTFILES: gnome-shell-extensions: gnome-shell-extensions-46.2.tar.xz

2024-05-27 Thread qboosh
Request by: qboosh


Files fetched: 1

STORED: 
https://download.gnome.org/sources/gnome-shell-extensions/46/gnome-shell-extensions-46.2.tar.xz
915c2b4fd0c64ec6ef00029ef3edf3bb  gnome-shell-extensions-46.2.tar.xz
Size: 223512 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/xdg-desktop-portal-gnome] - updated to 46.2

2024-05-27 Thread qboosh
commit c817024e04344a6f57db482a2151047742ead14b
Author: Jakub Bogusz 
Date:   Mon May 27 22:42:55 2024 +0200

- updated to 46.2

 xdg-desktop-portal-gnome.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/xdg-desktop-portal-gnome.spec b/xdg-desktop-portal-gnome.spec
index 54b072c..3201a6c 100644
--- a/xdg-desktop-portal-gnome.spec
+++ b/xdg-desktop-portal-gnome.spec
@@ -1,12 +1,12 @@
 Summary:   GNOME Desktop Portal
 Summary(pl.UTF-8): Implementacja XDG Desktop Portal dla GNOME
 Name:  xdg-desktop-portal-gnome
-Version:   46.1
+Version:   46.2
 Release:   1
 License:   LGPL v2+
 Group: X11/Applications
 Source0:   
https://download.gnome.org/sources/xdg-desktop-portal-gnome/46/%{name}-%{version}.tar.xz
-# Source0-md5: 45c68dabea3d53bc57ee79d536b337f5
+# Source0-md5: a57a52d9488463277445bac40507487e
 URL:   https://gitlab.gnome.org/GNOME/xdg-desktop-portal-gnome
 BuildRequires: fontconfig-devel
 BuildRequires: glib2-devel >= 1:2.62


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/xdg-desktop-portal-gnome.git/commitdiff/c817024e04344a6f57db482a2151047742ead14b

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


DISTFILES: xdg-desktop-portal-gnome: xdg-desktop-portal-gnome-46.2.tar.xz

2024-05-27 Thread qboosh
Request by: qboosh


Files fetched: 1

STORED: 
https://download.gnome.org/sources/xdg-desktop-portal-gnome/46/xdg-desktop-portal-gnome-46.2.tar.xz
a57a52d9488463277445bac40507487e  xdg-desktop-portal-gnome-46.2.tar.xz
Size: 161088 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/vapoursynth-plugin-subtext] - updated to R5

2024-05-27 Thread qboosh
commit 61115fc6ad16f7603f5240416186116b13301906
Author: Jakub Bogusz 
Date:   Mon May 27 22:43:34 2024 +0200

- updated to R5

 vapoursynth-plugin-subtext.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/vapoursynth-plugin-subtext.spec b/vapoursynth-plugin-subtext.spec
index 78b6c3f..4908e89 100644
--- a/vapoursynth-plugin-subtext.spec
+++ b/vapoursynth-plugin-subtext.spec
@@ -1,14 +1,14 @@
 Summary:   Subtext plugin for Vapoursynth
 Summary(pl.UTF-8): Wtyczka programu Vapoursynth wyświetlająca podpisy
 Name:  vapoursynth-plugin-subtext
-Version:   3
-Release:   2
+Version:   5
+Release:   1
 # it was vapoursynth.spec subpackage up to 54
 Epoch: 1
 License:   MIT
 Group: Libraries
 Source0:   
https://github.com/vapoursynth/subtext/archive/R%{version}/subtext-R%{version}.tar.gz
-# Source0-md5: 6483b72d357bafa228d46ab5ded2fe13
+# Source0-md5: a9eb9ec45a428932bfe5e4fa549ff226
 URL:   https://github.com/vapoursynth/subtext
 BuildRequires: ffmpeg-devel
 BuildRequires: libass-devel >= 0.12.0


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/vapoursynth-plugin-subtext.git/commitdiff/61115fc6ad16f7603f5240416186116b13301906

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


DISTFILES: vapoursynth-plugin-subtext: subtext-R5.tar.gz

2024-05-27 Thread qboosh
Request by: qboosh


Files fetched: 1

STORED: https://github.com/vapoursynth/subtext/archive/R5/subtext-R5.tar.gz
a9eb9ec45a428932bfe5e4fa549ff226  subtext-R5.tar.gz
Size: 20587 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/rtl8812au] - rebase on fresh git repo

2024-05-27 Thread baggins
commit 2dc0cae41554c51533e37dca098a1c7da0cdad8e
Author: Jan Rękorajski 
Date:   Mon May 27 23:50:52 2024 +0200

- rebase on fresh git repo

 kernel-strcpy.patch | 33 -
 rtl8812au.spec  | 14 +++---
 2 files changed, 7 insertions(+), 40 deletions(-)
---
diff --git a/rtl8812au.spec b/rtl8812au.spec
index 64d8add..63bcff2 100644
--- a/rtl8812au.spec
+++ b/rtl8812au.spec
@@ -6,8 +6,8 @@
 %define_enable_debug_packages  0
 
 %definerel 1
-%definebasever 20210629
-%definesnap20240317
+%definebasever 20210820
+%definesnap20240527
 %definepname   rtl8812au
 Summary:   Driver for AC1200 (802.11ac) Wireless Dual-Band USB Adapter
 Name:  %{pname}%{_alt_kernel}
@@ -16,10 +16,11 @@ Epoch:  2
 Release:   %{rel}%{?_pld_builder:@%{_kernel_ver_str}}
 License:   GPL
 Group: Base/Kernel
-Source0:   
https://github.com/morrownr/8812au-%{basever}/archive/main/%{pname}-%{version}.tar.gz
-# Source0-md5: deb0f6c9ca3f28ecd8b8f7a1ae2cf1dc
+# Source0: 
https://github.com/morrownr/8812au-%{basever}/archive/main/%{pname}-%{version}.tar.gz
+# git repo without huge blobs with Android SDKs under docs/
+Source0:   %{pname}-%{version}.tar.xz
+# Source0-md5: a4986d1bd51a7447dc240eb4eefaad27
 Patch0:no-arch-override.patch
-Patch1:kernel-strcpy.patch
 # good luck finding this chip on Realtek website :/
 #URL:  http://www.realtek.com.tw/
 URL:   https://github.com/morrownr/8812au
@@ -63,9 +64,8 @@ Driver for AC1200 (802.11ac) Wireless Dual-Band USB Adapter\
 %{expand:%create_kernel_packages}
 
 %prep
-%setup -q -n 8812au-%{basever}-main
+%setup -q -n 8812au-%{basever}
 %patch0 -p1
-%patch1 -p1
 
 %build
 %{expand:%build_kernel_packages}
diff --git a/kernel-strcpy.patch b/kernel-strcpy.patch
deleted file mode 100644
index f94cbe7..000
--- a/kernel-strcpy.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-diff -ur 8812au-20210629-main/os_dep/linux/os_intfs.c 
8812au-20210629-main.strcpy/os_dep/linux/os_intfs.c
 8812au-20210629-main/os_dep/linux/os_intfs.c   2023-12-22 
22:32:11.0 +0100
-+++ 8812au-20210629-main.strcpy/os_dep/linux/os_intfs.c2024-03-17 
00:17:00.481064694 +0100
-@@ -2056,13 +2056,13 @@
- 
-   wdev = dev->ieee80211_ptr;
-   if (wdev) {
--  strlcpy(info->driver, wiphy_dev(wdev->wiphy)->driver->name,
-+  strscpy(info->driver, wiphy_dev(wdev->wiphy)->driver->name,
-   sizeof(info->driver));
-   } else {
--  strlcpy(info->driver, "N/A", sizeof(info->driver));
-+  strscpy(info->driver, "N/A", sizeof(info->driver));
-   }
- 
--  strlcpy(info->version, DRIVERVERSION, sizeof(info->version));
-+  strscpy(info->version, DRIVERVERSION, sizeof(info->version));
- 
-   padapter = (_adapter *)rtw_netdev_priv(dev);
-   if (padapter) {
-@@ -2073,10 +2073,10 @@
-   scnprintf(info->fw_version, sizeof(info->fw_version), "%d.%d",
- hal_data->firmware_version, 
hal_data->firmware_sub_version);
-   } else {
--  strlcpy(info->fw_version, "N/A", sizeof(info->fw_version));
-+  strscpy(info->fw_version, "N/A", sizeof(info->fw_version));
-   }
- 
--  strlcpy(info->bus_info, dev_name(wiphy_dev(wdev->wiphy)),
-+  strscpy(info->bus_info, dev_name(wiphy_dev(wdev->wiphy)),
-   sizeof(info->bus_info));
- }
- 


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/rtl8812au.git/commitdiff/2dc0cae41554c51533e37dca098a1c7da0cdad8e

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


DISTFILES: rtl8812au: rtl8812au-5.13.6.20240527.tar.xz

2024-05-27 Thread baggins
Request by: baggins


Files fetched: 1

STORED: no-url://rtl8812au-5.13.6.20240527.tar.xz
a4986d1bd51a7447dc240eb4eefaad27  rtl8812au-5.13.6.20240527.tar.xz
Size: 3312388 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] - 6.9.2

2024-05-27 Thread baggins
commit 9af0fd1ad85047f29ea9c57df2b57df4caf2bd37
Author: Jan Rękorajski 
Date:   Tue May 28 00:11:32 2024 +0200

- 6.9.2

 kernel.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/kernel.spec b/kernel.spec
index 6caa1480..242019db 100644
--- a/kernel.spec
+++ b/kernel.spec
@@ -53,7 +53,7 @@
 
 %definerel 1
 %definebasever 6.9
-%definepostver .1
+%definepostver .2
 
 # define this to '-%{basever}' for longterm branch
 %defineversuffix   %{nil}
@@ -107,7 +107,7 @@ Source0:
https://www.kernel.org/pub/linux/kernel/v6.x/linux-%{basever}.tar.xz
 # Source0-md5: b9828ed78dae306e3d90643cd5cdb8f1
 %if "%{postver}" != ".0"
 Patch0:
https://www.kernel.org/pub/linux/kernel/v6.x/patch-%{version}.xz
-# Patch0-md5:  fe8d59cd4ec0adf30396a7d040007f6a
+# Patch0-md5:  9c21095cea0e2c56b273d296c4718cb7
 %endif
 Source1:   kernel.sysconfig
 


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kernel.git/commitdiff/9af0fd1ad85047f29ea9c57df2b57df4caf2bd37

___
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.9.tar.xz patch-6.9.2.xz

2024-05-27 Thread baggins
Request by: baggins


Files fetched: 1

ALREADY GOT: https://www.kernel.org/pub/linux/kernel/v6.x/linux-6.9.tar.xz
b9828ed78dae306e3d90643cd5cdb8f1  linux-6.9.tar.xz
STORED: https://www.kernel.org/pub/linux/kernel/v6.x/patch-6.9.2.xz
9c21095cea0e2c56b273d296c4718cb7  patch-6.9.2.xz
Size: 16184 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_6] - 6.6.32

2024-05-27 Thread baggins
commit a1fe45635410ff4988bda62060f0964fbd174000
Author: Jan Rękorajski 
Date:   Tue May 28 00:12:35 2024 +0200

- 6.6.32

 kernel.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/kernel.spec b/kernel.spec
index f6d97649..ae244955 100644
--- a/kernel.spec
+++ b/kernel.spec
@@ -61,7 +61,7 @@
 
 %definerel 1
 %definebasever 6.6
-%definepostver .31
+%definepostver .32
 
 # define this to '-%{basever}' for longterm branch
 %defineversuffix   -%{basever}
@@ -115,7 +115,7 @@ Source0:
https://www.kernel.org/pub/linux/kernel/v6.x/linux-%{basever}.tar.xz
 # Source0-md5: 452098d80ba925af3a4ab35998f3aef5
 %if "%{postver}" != ".0"
 Patch0:
https://www.kernel.org/pub/linux/kernel/v6.x/patch-%{version}.xz
-# Patch0-md5:  b0130fac0428a7eecab82dfca22c1452
+# Patch0-md5:  40019610b723d767885e47b124940e3b
 %endif
 Source1:   kernel.sysconfig
 


 gitweb:

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

___
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.6.tar.xz patch-6.6.32.xz

2024-05-27 Thread baggins
Request by: baggins


Files fetched: 1

ALREADY GOT: https://www.kernel.org/pub/linux/kernel/v6.x/linux-6.6.tar.xz
452098d80ba925af3a4ab35998f3aef5  linux-6.6.tar.xz
STORED: https://www.kernel.org/pub/linux/kernel/v6.x/patch-6.6.32.xz
40019610b723d767885e47b124940e3b  patch-6.6.32.xz
Size: 1986548 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] - 6.1.92

2024-05-27 Thread baggins
commit ae167683069a3e9bfb7f3551acaffb4fc8adc276
Author: Jan Rękorajski 
Date:   Tue May 28 00:13:30 2024 +0200

- 6.1.92

 kernel.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/kernel.spec b/kernel.spec
index 12a145d1..64be1396 100644
--- a/kernel.spec
+++ b/kernel.spec
@@ -67,7 +67,7 @@
 
 %definerel 1
 %definebasever 6.1
-%definepostver .91
+%definepostver .92
 
 # 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:  4bc98690bbdd6529ae6e7de089547df6
+# Patch0-md5:  425ab5dfa523434847911463111ca168
 %endif
 Source1:   kernel.sysconfig
 


 gitweb:

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

___
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.92.xz

2024-05-27 Thread baggins
Request by: baggins


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.92.xz
425ab5dfa523434847911463111ca168  patch-6.1.92.xz
Size: 4601284 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_5_15] - 5.15.160

2024-05-27 Thread baggins
commit 662bcea13ff95c13e365f7b736e6c639b0d27245
Author: Jan Rękorajski 
Date:   Tue May 28 00:15:00 2024 +0200

- 5.15.160

 kernel.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/kernel.spec b/kernel.spec
index 4ca32bd3..55617f62 100644
--- a/kernel.spec
+++ b/kernel.spec
@@ -67,7 +67,7 @@
 
 %definerel 1
 %definebasever 5.15
-%definepostver .159
+%definepostver .160
 
 # define this to '-%{basever}' for longterm branch
 %defineversuffix   -%{basever}
@@ -121,7 +121,7 @@ Source0:
https://www.kernel.org/pub/linux/kernel/v5.x/linux-%{basever}.tar.xz
 # Source0-md5: 071d49ff4e020d58c04f9f3f76d3b594
 %if "%{postver}" != ".0"
 Patch0:
https://www.kernel.org/pub/linux/kernel/v5.x/patch-%{version}.xz
-# Patch0-md5:  c13361e6d915734ba17f471dbe51a1a5
+# Patch0-md5:  93b010316e514b0ccb19ee4fced79c6b
 %endif
 Source1:   kernel.sysconfig
 


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kernel.git/commitdiff/662bcea13ff95c13e365f7b736e6c639b0d27245

___
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-5.15.tar.xz patch-5.15.160.xz

2024-05-27 Thread baggins
Request by: baggins


Files fetched: 1

ALREADY GOT: https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.15.tar.xz
071d49ff4e020d58c04f9f3f76d3b594  linux-5.15.tar.xz
STORED: https://www.kernel.org/pub/linux/kernel/v5.x/patch-5.15.160.xz
93b010316e514b0ccb19ee4fced79c6b  patch-5.15.160.xz
Size: 5835156 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_5_10] - 5.10.218

2024-05-27 Thread baggins
commit 4b985c3fa563df26a135dd8f28b584bc54545fd1
Author: Jan Rękorajski 
Date:   Tue May 28 00:15:57 2024 +0200

- 5.10.218

 kernel.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/kernel.spec b/kernel.spec
index 7a8c2ac1..9e7c908c 100644
--- a/kernel.spec
+++ b/kernel.spec
@@ -73,7 +73,7 @@
 
 %definerel 1
 %definebasever 5.10
-%definepostver .217
+%definepostver .218
 
 # define this to '-%{basever}' for longterm branch
 %defineversuffix   -%{basever}
@@ -127,7 +127,7 @@ Source0:
https://www.kernel.org/pub/linux/kernel/v5.x/linux-%{basever}.tar.xz
 # Source0-md5: 753adc474bf799d569dec4f165ed92c3
 %if "%{postver}" != ".0"
 Patch0:
https://www.kernel.org/pub/linux/kernel/v5.x/patch-%{version}.xz
-# Patch0-md5:  ddc8deeb8cbcb09d91986cf40545de52
+# Patch0-md5:  f54dcecac10e0cced9d86869bb0daed3
 %endif
 Source1:   kernel.sysconfig
 


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kernel.git/commitdiff/4b985c3fa563df26a135dd8f28b584bc54545fd1

___
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-5.10.tar.xz patch-5.10.218.xz

2024-05-27 Thread baggins
Request by: baggins


Files fetched: 1

ALREADY GOT: https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.10.tar.xz
753adc474bf799d569dec4f165ed92c3  linux-5.10.tar.xz
STORED: https://www.kernel.org/pub/linux/kernel/v5.x/patch-5.10.218.xz
f54dcecac10e0cced9d86869bb0daed3  patch-5.10.218.xz
Size: 5792520 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_5_4] - 5.4.277

2024-05-27 Thread baggins
commit 0081cdfb92910d9d81bbc745c73f4ebca70a30cb
Author: Jan Rękorajski 
Date:   Tue May 28 00:16:53 2024 +0200

- 5.4.277

 kernel.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/kernel.spec b/kernel.spec
index 87aeb21b..90010ebf 100644
--- a/kernel.spec
+++ b/kernel.spec
@@ -69,7 +69,7 @@
 
 %definerel 1
 %definebasever 5.4
-%definepostver .276
+%definepostver .277
 
 # define this to '-%{basever}' for longterm branch
 %defineversuffix   -%{basever}
@@ -123,7 +123,7 @@ Source0:
https://www.kernel.org/pub/linux/kernel/v5.x/linux-%{basever}.tar.xz
 # Source0-md5: ce9b2d974d27408a61c53a30d3f98fb9
 %if "%{postver}" != ".0"
 Patch0:
https://www.kernel.org/pub/linux/kernel/v5.x/patch-%{version}.xz
-# Patch0-md5:  91edc36a0858eb8b7616be2453369035
+# Patch0-md5:  91317924acf0b53e3647503fdff8625e
 %endif
 Source1:   kernel.sysconfig
 


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kernel.git/commitdiff/0081cdfb92910d9d81bbc745c73f4ebca70a30cb

___
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-5.4.tar.xz patch-5.4.277.xz

2024-05-27 Thread baggins
Request by: baggins


Files fetched: 1

ALREADY GOT: https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.4.tar.xz
ce9b2d974d27408a61c53a30d3f98fb9  linux-5.4.tar.xz
STORED: https://www.kernel.org/pub/linux/kernel/v5.x/patch-5.4.277.xz
91317924acf0b53e3647503fdff8625e  patch-5.4.277.xz
Size: 5556868 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_4_19] - 4.19.315

2024-05-27 Thread baggins
commit 59d4b3a5c2726d5613c13310cfa50d08209d3947
Author: Jan Rękorajski 
Date:   Tue May 28 00:18:00 2024 +0200

- 4.19.315

 kernel.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/kernel.spec b/kernel.spec
index f0b96939..fbabac1a 100644
--- a/kernel.spec
+++ b/kernel.spec
@@ -70,7 +70,7 @@
 
 %definerel 1
 %definebasever 4.19
-%definepostver .314
+%definepostver .315
 
 # define this to '-%{basever}' for longterm branch
 %defineversuffix   -%{basever}
@@ -126,7 +126,7 @@ Source0:
https://www.kernel.org/pub/linux/kernel/4.19/linux-%{basever}.ta
 # Source0-md5: 740a90cf810c2105df8ee12e5d0bb900
 %if "%{postver}" != ".0"
 Patch0:
https://www.kernel.org/pub/linux/kernel/v4.x/patch-%{version}.xz
-# Patch0-md5:  c436fad76118836ac8b914cedb38
+# Patch0-md5:  64849e36988ded4fb25f27fa313e4757
 %endif
 Source1:   kernel.sysconfig
 


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kernel.git/commitdiff/59d4b3a5c2726d5613c13310cfa50d08209d3947

___
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-4.19.tar.xz patch-4.19.315.xz

2024-05-27 Thread baggins
Request by: baggins


Files fetched: 1

ALREADY GOT: https://www.kernel.org/pub/linux/kernel/4.19/linux-4.19.tar.xz
740a90cf810c2105df8ee12e5d0bb900  linux-4.19.tar.xz
STORED: https://www.kernel.org/pub/linux/kernel/v4.x/patch-4.19.315.xz
64849e36988ded4fb25f27fa313e4757  patch-4.19.315.xz
Size: 6021476 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/adwaita-icon-theme] - updated to 46.2

2024-05-27 Thread qboosh
commit fb1801bff84a087c161dc34ded0f82aedc771c2a
Author: Jakub Bogusz 
Date:   Tue May 28 05:33:48 2024 +0200

- updated to 46.2

 adwaita-icon-theme.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/adwaita-icon-theme.spec b/adwaita-icon-theme.spec
index 3c9702e..ca2207a 100644
--- a/adwaita-icon-theme.spec
+++ b/adwaita-icon-theme.spec
@@ -1,12 +1,12 @@
 Summary:   Adwaita icon theme for GNOME environment
 Summary(pl.UTF-8): Motyw ikon Adwaita dla środowiska GNOME
 Name:  adwaita-icon-theme
-Version:   46.0
+Version:   46.2
 Release:   1
 License:   LGPL v3 or CC-BY-SA v3.0
 Group: Themes
 Source0:   
https://download.gnome.org/sources/adwaita-icon-theme/46/%{name}-%{version}.tar.xz
-# Source0-md5: 5da8657eb7b6eead02db7e35bbaea442
+# Source0-md5: 6829461ddc1dd0a9b7d115ccc0c186ac
 URL:   https://www.gnome.org/
 BuildRequires: gtk-update-icon-cache
 BuildRequires: meson >= 0.64.0


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/adwaita-icon-theme.git/commitdiff/fb1801bff84a087c161dc34ded0f82aedc771c2a

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


DISTFILES: adwaita-icon-theme: adwaita-icon-theme-46.2.tar.xz

2024-05-27 Thread qboosh
Request by: qboosh


Files fetched: 1

STORED: 
https://download.gnome.org/sources/adwaita-icon-theme/46/adwaita-icon-theme-46.2.tar.xz
6829461ddc1dd0a9b7d115ccc0c186ac  adwaita-icon-theme-46.2.tar.xz
Size: 4597704 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/vapoursynth-plugin-bestsource] - -devel dependencies

2024-05-27 Thread qboosh
commit b3ec87ccc57e56912045f4b90bfd0e350ad75598
Author: Jakub Bogusz 
Date:   Tue May 28 05:38:17 2024 +0200

- -devel dependencies

 vapoursynth-plugin-bestsource.spec | 2 ++
 1 file changed, 2 insertions(+)
---
diff --git a/vapoursynth-plugin-bestsource.spec 
b/vapoursynth-plugin-bestsource.spec
index 6c72c25..af7bee5 100644
--- a/vapoursynth-plugin-bestsource.spec
+++ b/vapoursynth-plugin-bestsource.spec
@@ -55,6 +55,8 @@ Summary:  Header files for bestsource library
 Summary(pl.UTF-8): Pliki nagłówkowe biblioteki bestsource
 Group: Development/Libraries
 Requires:  bestsource = %{version}-%{release}
+Requires:  ffmpeg-devel >= 6.0
+Requires:  xxHash-devel
 
 %description -n bestsource-devel
 Header files for bestsource library.


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/vapoursynth-plugin-bestsource.git/commitdiff/b3ec87ccc57e56912045f4b90bfd0e350ad75598

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


[packages/gnome-control-center] - updated to 46.2

2024-05-27 Thread qboosh
commit a50ffafc2dff9744bb8e4ca6d8b270880a29b455
Author: Jakub Bogusz 
Date:   Tue May 28 05:43:11 2024 +0200

- updated to 46.2

 gnome-control-center.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/gnome-control-center.spec b/gnome-control-center.spec
index 8040047..046195a 100644
--- a/gnome-control-center.spec
+++ b/gnome-control-center.spec
@@ -12,13 +12,13 @@ Summary(pt_BR.UTF-8):   O Centro de Controle do GNOME
 Summary(ru.UTF-8): Центр управления GNOME
 Summary(uk.UTF-8): Центр керування GNOME
 Name:  gnome-control-center
-Version:   46.1
+Version:   46.2
 Release:   1
 Epoch: 1
 License:   GPL v2+
 Group: X11/Applications
 Source0:   
https://download.gnome.org/sources/gnome-control-center/46/%{name}-%{version}.tar.xz
-# Source0-md5: 58c966c88514d267df4ef9a357e4676e
+# Source0-md5: 1dfed305c69d4ba018924c9de6881d2f
 Patch0:krb5.patch
 URL:   https://www.gnome.org/
 BuildRequires: ModemManager-devel >= 1.0.0


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/gnome-control-center.git/commitdiff/a50ffafc2dff9744bb8e4ca6d8b270880a29b455

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


DISTFILES: gnome-control-center: gnome-control-center-46.2.tar.xz

2024-05-27 Thread qboosh
Request by: qboosh


Files fetched: 1

STORED: 
https://download.gnome.org/sources/gnome-control-center/46/gnome-control-center-46.2.tar.xz
1dfed305c69d4ba018924c9de6881d2f  gnome-control-center-46.2.tar.xz
Size: 8030924 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/nautilus] - updated to 46.2

2024-05-27 Thread qboosh
commit 73c8689b81d799d999375a9adf3607dc6f98426d
Author: Jakub Bogusz 
Date:   Tue May 28 06:00:59 2024 +0200

- updated to 46.2

 nautilus.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/nautilus.spec b/nautilus.spec
index 3b3fafd..9c5bb88 100644
--- a/nautilus.spec
+++ b/nautilus.spec
@@ -8,12 +8,12 @@ Summary:  Nautilus is a file manager for the GNOME 
desktop environment
 Summary(pl.UTF-8): Nautilus - powłoka GNOME i zarządca plików
 Summary(pt_BR.UTF-8):  Nautilus é um gerenciador de arquivos para o GNOME
 Name:  nautilus
-Version:   46.1
+Version:   46.2
 Release:   1
 License:   GPL v3+
 Group: X11/Applications
 Source0:   
https://download.gnome.org/sources/nautilus/46/%{name}-%{version}.tar.xz
-# Source0-md5: 5f7bbc0072c3f520c4d417d6f014c590
+# Source0-md5: 88acd6bd9c5d01fb02c8827222c07bc5
 Patch0:%{name}-no-c23.patch
 URL:   https://wiki.gnome.org/Apps/Files
 # -std=c11


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/nautilus.git/commitdiff/73c8689b81d799d999375a9adf3607dc6f98426d

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


DISTFILES: nautilus: nautilus-46.2.tar.xz

2024-05-27 Thread qboosh
Request by: qboosh


Files fetched: 1

STORED: https://download.gnome.org/sources/nautilus/46/nautilus-46.2.tar.xz
88acd6bd9c5d01fb02c8827222c07bc5  nautilus-46.2.tar.xz
Size: 3238060 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