[packages/gkrellm] - updated glib/gtk dependencies according to web page

2024-03-29 Thread qboosh
commit c22594231f9f209b556e178308c4108b8e2655f4
Author: Jakub Bogusz 
Date:   Fri Mar 29 16:11:17 2024 +0100

- updated glib/gtk dependencies according to web page

 gkrellm.spec | 10 +++---
 1 file changed, 7 insertions(+), 3 deletions(-)
---
diff --git a/gkrellm.spec b/gkrellm.spec
index b10138f..91c2408 100644
--- a/gkrellm.spec
+++ b/gkrellm.spec
@@ -25,9 +25,9 @@ Patch2:   %{name}-pl.po-update.patch
 Patch3:%{name}-lm_sensors.patch
 URL:   http://gkrellm.srcbox.net/
 BuildRequires: gettext-tools
-BuildRequires: glib2-devel >= 2.2.0
+BuildRequires: glib2-devel >= 1:2.32
 %{?with_gnutls:BuildRequires:  gnutls-devel >= 1.2.5}
-BuildRequires: gtk+2-devel >= 2:2.2.0
+BuildRequires: gtk+2-devel >= 2:2.4
 BuildRequires: libntlm-devel
 %{?with_lm_sensors:BuildRequires:  lm_sensors-devel}
 %{!?with_gnutls:BuildRequires: openssl-devel}
@@ -37,6 +37,8 @@ BuildRequires:which
 BuildRequires: xorg-lib-libICE-devel
 BuildRequires: xorg-lib-libSM-devel
 BuildRequires: xorg-lib-libX11-devel
+Requires:  glib2 >= 1:2.32
+Requires:  gtk+2 >= 2:2.4
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
@@ -94,6 +96,7 @@ Summary:  gkrellmd - The GNU Krell Monitors Server
 Summary(pl.UTF-8): gkrellmd - Serwer monitorów GKrellM
 Group: Daemons
 Requires(post,preun):  /sbin/chkconfig
+Requires:  glib2 >= 1:2.32
 Requires:  rc-scripts
 
 %description gkrellmd
@@ -113,7 +116,8 @@ Summary(pt_BR.UTF-8):   Componentes para 
desenvolvimento com o gkrellm
 Summary(ru.UTF-8): Файлы C хедеров для GKrellM
 Summary(uk.UTF-8): Файли C хедерів для GKrellM
 Group: X11/Development/Libraries
-Requires:  gtk+2-devel >= 2:2.2.0
+Requires:  glib2-devel >= 1:2.32
+Requires:  gtk+2-devel >= 2:2.4
 
 %description devel
 gkrellm header files for gkrellm development and plugin support.


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/gkrellm.git/commitdiff/c22594231f9f209b556e178308c4108b8e2655f4

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


[packages/git-core-bzr] - fixed description and shebang (there is no __python2 macro); release 2

2024-03-29 Thread qboosh
commit 15ce67cbed5255e4342678d36ae52b271cdf5dc9
Author: Jakub Bogusz 
Date:   Fri Mar 29 19:17:04 2024 +0100

- fixed description and shebang (there is no __python2 macro); release 2

 git-core-bzr.spec | 27 ---
 1 file changed, 20 insertions(+), 7 deletions(-)
---
diff --git a/git-core-bzr.spec b/git-core-bzr.spec
index 286087f..4eef422 100644
--- a/git-core-bzr.spec
+++ b/git-core-bzr.spec
@@ -1,30 +1,44 @@
-%bcond_withtests
+#
+# Conditional build:
+%bcond_withtests   # functional tests
 
-Summary:   Git tools for working with mercurial repositories
+Summary:   Git tools for working with Bazaar repositories
+Summary(pl.UTF-8): Narzędzia Gita do pracy z repozytoriami Bazaar
 Name:  git-core-bzr
 Version:   0.3
-Release:   1
+Release:   2
 Epoch: 1
 License:   GPL v2
 Group: Development/Tools
-Source0:   
https://github.com/felipec/git-remote-bzr/archive/refs/tags/v%{version}.tar.gz
+#Source0Download: https://github.com/felipec/git-remote-bzr/tags
+# TODO use:
+#Source0:  
https://github.com/felipec/git-remote-bzr/archive/v%{version}/%{name}-%{version}.tar.gz
+Source0:   
https://github.com/felipec/git-remote-bzr/archive/v%{version}.tar.gz
 # Source0-md5: 8cd2a654e9ef928bb89ff8524faaa8a1
 URL:   https://github.com/felipec/git-remote-bzr
+BuildRequires: asciidoc
 BuildRequires: rpm-pythonprov
+BuildRequires: rpmbuild(macros) >= 1.745
+%if %{with tests}
+BuildRequires: bzr
+%endif
 Requires:  bzr
 Requires:  git-core
 BuildArch: noarch
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
-Git tools for working with mercurial repositories.
+Git tools for working with Bazaar repositories.
+
+%description -l pl.UTF-8
+Narzędzia Gita do pracy z repozytoriami Bazaar.
 
 %define gitcoredir  %{_libexecdir}/git-core
 
 %prep
 %setup -q -n git-remote-bzr-%{version}
 
-%{__sed} -i -e '1s,/usr/bin/env python2$,%{__python2},' git-remote-bzr
+%{__sed} -i -e '1s,/usr/bin/env python2$,%{__python},' git-remote-bzr
 
 %build
 %{__make} \
@@ -36,7 +50,6 @@ Git tools for working with mercurial repositories.
 
 %install
 rm -rf $RPM_BUILD_ROOT
-
 install -d $RPM_BUILD_ROOT{%{gitcoredir},%{_mandir}/man1}
 
 cp -p git-remote-bzr $RPM_BUILD_ROOT%{gitcoredir}


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/git-core-bzr.git/commitdiff/15ce67cbed5255e4342678d36ae52b271cdf5dc9

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


PLD-doc: BuildRequires.txt - added __python* macros suitable for shebangs

2024-03-29 Thread qboosh
Author: qboosh   Date: Fri Mar 29 19:27:00 2024 GMT
Module: PLD-doc   Tag: HEAD
 Log message:
- added __python* macros suitable for shebangs

 Files affected:
PLD-doc:
   BuildRequires.txt (1.212 -> 1.213) 

 Diffs:


Index: PLD-doc/BuildRequires.txt
diff -u PLD-doc/BuildRequires.txt:1.212 PLD-doc/BuildRequires.txt:1.213
--- PLD-doc/BuildRequires.txt:1.212 Thu May 12 12:50:28 2022
+++ PLD-doc/BuildRequires.txt   Fri Mar 29 20:26:55 2024
@@ -266,6 +266,12 @@
 # %py_comp
 BuildRequires: rpmbuild(macros) >= 1.112
 
+# %__python resolving to /usr/bin/python2
+BuildRequires: rpmbuild(macros) >= 1.745
+
+# %__python3 resolving to /usr/bin/python3
+BuildRequires: rpmbuild(macros) >= 1.680
+
 # %py3_comp, %py3_ocomp
 # %py3_prefix, %py3_{lib,script,inc,site,sitescript,dyn}dir
 BuildRequires: rpmbuild(macros) >= 1.507


 CVS-web:
http://cvs.pld-linux.org/PLD-doc/BuildRequires.txt?r1=1.212&r2=1.213

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


[packages/git-core-hg] - restored pl from git-core.spec, BR: asciidoctor for man page

2024-03-29 Thread qboosh
commit a5ca16ecd46c6457b4252a7d967bc38380186186
Author: Jakub Bogusz 
Date:   Fri Mar 29 20:15:00 2024 +0100

- restored pl from git-core.spec, BR: asciidoctor for man page

 git-core-hg.spec | 21 -
 1 file changed, 16 insertions(+), 5 deletions(-)
---
diff --git a/git-core-hg.spec b/git-core-hg.spec
index f0b78c2..0bf0e16 100644
--- a/git-core-hg.spec
+++ b/git-core-hg.spec
@@ -1,26 +1,38 @@
-%bcond_withtests
+#
+# Conditional build:
+%bcond_withtests   # functional tests (require some setup before?)
 
-Summary:   Git tools for working with mercurial repositories
+Summary:   Git tools for working with Mercurial repositories
+Summary(pl.UTF-8): Narzędzia Gita do pracy z repozytoriami Mercuriala
 Name:  git-core-hg
 Version:   0.6
 Release:   1
 Epoch: 1
 License:   GPL v2
 Group: Development/Tools
-Source0:   
https://github.com/felipec/git-remote-hg/archive/refs/tags/v%{version}.tar.gz
+#Source0Download: https://github.com/felipec/git-remote-hg/tags
+# TODO use:
+#Source0:  
https://github.com/felipec/git-remote-hg/archive/v%{version}/git-remote-hg-%{version}.tar.gz
+Source0:   
https://github.com/felipec/git-remote-hg/archive/v%{version}.tar.gz
 # Source0-md5: 8a1acaba6d5f2acd453870b136695eba
 URL:   https://github.com/felipec/git-remote-hg
 BuildRequires: rpm-pythonprov
+BuildRequires: rpmbuild(macros) >= 1.680
+BuildRequires: ruby-asciidoctor
 Requires:  git-core
 Requires:  mercurial >= 1.8
 %if %{with tests}
+BuildRequires: git-core
 BuildRequires: mercurial >= 1.8
 %endif
 BuildArch: noarch
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
-Git tools for working with mercurial repositories.
+Git tools for working with Mercurial repositories.
+
+%description -l pl.UTF-8
+Narzędzia Gita do pracy z repozytoriami Mercuriala.
 
 %define gitcoredir  %{_libexecdir}/git-core
 
@@ -39,7 +51,6 @@ Git tools for working with mercurial repositories.
 
 %install
 rm -rf $RPM_BUILD_ROOT
-
 install -d $RPM_BUILD_ROOT{%{gitcoredir},%{_mandir}/man1}
 
 cp -p git-remote-hg $RPM_BUILD_ROOT%{gitcoredir}


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/git-core-hg.git/commitdiff/a5ca16ecd46c6457b4252a7d967bc38380186186

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


[packages/git-core-bzr] - tests also BR: git-core

2024-03-29 Thread qboosh
commit f404849a9a1e6e2c30ea77b885803300c097ae34
Author: Jakub Bogusz 
Date:   Fri Mar 29 20:17:22 2024 +0100

- tests also BR: git-core

 git-core-bzr.spec | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
---
diff --git a/git-core-bzr.spec b/git-core-bzr.spec
index 4eef422..092154a 100644
--- a/git-core-bzr.spec
+++ b/git-core-bzr.spec
@@ -12,7 +12,7 @@ License:  GPL v2
 Group: Development/Tools
 #Source0Download: https://github.com/felipec/git-remote-bzr/tags
 # TODO use:
-#Source0:  
https://github.com/felipec/git-remote-bzr/archive/v%{version}/%{name}-%{version}.tar.gz
+#Source0:  
https://github.com/felipec/git-remote-bzr/archive/v%{version}/git-remote-bzr-%{version}.tar.gz
 Source0:   
https://github.com/felipec/git-remote-bzr/archive/v%{version}.tar.gz
 # Source0-md5: 8cd2a654e9ef928bb89ff8524faaa8a1
 URL:   https://github.com/felipec/git-remote-bzr
@@ -21,6 +21,7 @@ BuildRequires:rpm-pythonprov
 BuildRequires: rpmbuild(macros) >= 1.745
 %if %{with tests}
 BuildRequires: bzr
+BuildRequires: git-core
 %endif
 Requires:  bzr
 Requires:  git-core


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/git-core-bzr.git/commitdiff/f404849a9a1e6e2c30ea77b885803300c097ae34

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


[packages/ell] up to 0.64

2024-03-29 Thread atler
commit 574a21003833a9143a032cdf855b9a08d979
Author: Jan Palus 
Date:   Fri Mar 29 21:19:32 2024 +0100

up to 0.64

 ell.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/ell.spec b/ell.spec
index 9386241..684639f 100644
--- a/ell.spec
+++ b/ell.spec
@@ -5,12 +5,12 @@
 Summary:   Embedded Linux Library
 Summary(pl.UTF-8): Embedded Linux Library - biblioteka osadzonego Linuksa
 Name:  ell
-Version:   0.63
+Version:   0.64
 Release:   1
 License:   LGPL v2.1+
 Group: Libraries
 Source0:   
https://www.kernel.org/pub/linux/libs/ell/%{name}-%{version}.tar.xz
-# Source0-md5: f63353eb3f992173ddc5c903a865aa07
+# Source0-md5: 6e6038771c713fd742a282b41ce14040
 URL:   https://git.kernel.org/pub/scm/libs/ell/ell.git/
 BuildRequires: autoconf >= 2.69
 BuildRequires: automake


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/ell.git/commitdiff/574a21003833a9143a032cdf855b9a08d979

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


DISTFILES: ell: ell-0.64.tar.xz

2024-03-29 Thread atler
Request by: atler


Files fetched: 1

STORED: https://www.kernel.org/pub/linux/libs/ell/ell-0.64.tar.xz
6e6038771c713fd742a282b41ce14040  ell-0.64.tar.xz
Size: 567908 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/iwd] up to 2.17

2024-03-29 Thread atler
commit 9b2d588db4ebe57369c3ca490cff55f8ac44bdac
Author: Jan Palus 
Date:   Fri Mar 29 21:21:00 2024 +0100

up to 2.17

 iwd.spec | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/iwd.spec b/iwd.spec
index d6567e5..ee35195 100644
--- a/iwd.spec
+++ b/iwd.spec
@@ -1,18 +1,18 @@
 Summary:   iwd - wireless daemon for Linux
 Summary(pl.UTF-8): iwd - demon sieci bezprzewodowej dla Linuksa
 Name:  iwd
-Version:   2.16
+Version:   2.17
 Release:   1
 License:   LGPL v2.1+
 Group: Networking/Daemons
 Source0:   
https://www.kernel.org/pub/linux/network/wireless/%{name}-%{version}.tar.xz
-# Source0-md5: cd00f677dd178d0a9d4f1ab697d2e2cc
+# Source0-md5: 269a0f2eec32f91992093d79a37198e4
 URL:   https://git.kernel.org/pub/scm/network/wireless/iwd.git
 BuildRequires: autoconf >= 2.69
 BuildRequires: automake
 BuildRequires: dbus-devel
 BuildRequires: docutils
-BuildRequires: ell-devel >= 0.63
+BuildRequires: ell-devel >= 0.64
 BuildRequires: libtool >= 2:2.2
 BuildRequires: pkgconfig
 BuildRequires: readline-devel
@@ -20,7 +20,7 @@ BuildRequires:rpmbuild(macros) >= 1.644
 BuildRequires: tar >= 1:1.22
 BuildRequires: xz
 Requires(post,preun,postun):   systemd-units >= 38
-Requires:  ell >= 0.63
+Requires:  ell >= 0.64
 Requires:  systemd-units >= 38
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/iwd.git/commitdiff/9b2d588db4ebe57369c3ca490cff55f8ac44bdac

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


DISTFILES: iwd: iwd-2.17.tar.xz

2024-03-29 Thread atler
Request by: atler


Files fetched: 1

STORED: https://www.kernel.org/pub/linux/network/wireless/iwd-2.17.tar.xz
269a0f2eec32f91992093d79a37198e4  iwd-2.17.tar.xz
Size: 1083756 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/harfbuzz] up to 8.4.0

2024-03-29 Thread atler
commit 61b69808e4505a9109f5e777f232519f5abce5f3
Author: Jan Palus 
Date:   Fri Mar 29 21:37:55 2024 +0100

up to 8.4.0

 harfbuzz.spec | 13 +++--
 1 file changed, 7 insertions(+), 6 deletions(-)
---
diff --git a/harfbuzz.spec b/harfbuzz.spec
index aa23563..a78a07b 100644
--- a/harfbuzz.spec
+++ b/harfbuzz.spec
@@ -8,23 +8,23 @@
 Summary:   HarfBuzz - internationalized text shaping library
 Summary(pl.UTF-8): HarfBuzz - biblioteka rysująca tekst z obsługą wielu 
języków
 Name:  harfbuzz
-Version:   8.3.1
+Version:   8.4.0
 Release:   1
 License:   MIT
 Group: Libraries
 Source0:   
https://github.com/harfbuzz/harfbuzz/releases/download/%{version}/%{name}-%{version}.tar.xz
-# Source0-md5: fc4c1c0cb2e8a190db5007936f290047
+# Source0-md5: 961e77201ff4738382ea06e9f15ade70
 URL:   https://harfbuzz.github.io/
 BuildRequires: autoconf >= 2.64
 BuildRequires: automake >= 1:1.13.0
-BuildRequires: cairo-devel >= 1.8.0
+BuildRequires: cairo-devel >= 1.10.0
 %{?with_tests:BuildRequires:   fonttools}
 BuildRequires: freetype-devel >= 1:2.11
 BuildRequires: glib2-devel >= 1:2.38
 BuildRequires: gobject-introspection-devel >= 1.34.0
 %{?with_graphite2:BuildRequires:   graphite2-devel >= 1.2.0}
 BuildRequires: gtk-doc >= 1.15
-%{?with_icu:BuildRequires: libicu-devel}
+%{?with_icu:BuildRequires: libicu-devel >= 49.0}
 BuildRequires: libstdc++-devel >= 6:4.9
 BuildRequires: libtool >= 2:2.2
 %{?with_tests:BuildRequires:   otsanitizer >= 8}
@@ -122,6 +122,7 @@ Summary:HarfBuzz text shaping library - ICU integration
 Summary(pl.UTF-8): Biblioteka HarfBuzz do rysowania tekstu - integracja z 
ICU
 Group: Libraries
 Requires:  %{name} = %{version}-%{release}
+Requires:  libicu >= 49.0
 
 %description icu
 HarfBuzz text shaping library - ICU integration.
@@ -135,7 +136,7 @@ Summary(pl.UTF-8):  Plik nagłówkowy biblioteki HarfBuzz ICU
 Group: Development/Libraries
 Requires:  %{name}-devel = %{version}-%{release}
 Requires:  %{name}-icu = %{version}-%{release}
-Requires:  libicu-devel
+Requires:  libicu-devel >= 49.0
 
 %description icu-devel
 Header file for HarfBuzz ICU library.
@@ -197,7 +198,7 @@ Summary:HarfBuzz command-line utilities
 Summary(pl.UTF-8): Narzędzia HarfBuzz uruchamiane z linii poleceń
 Group: Libraries
 Requires:  %{name} = %{version}-%{release}
-Requires:  cairo >= 1.8.0
+Requires:  cairo >= 1.10.0
 
 %description progs
 HarfBuzz command-line utilities.


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/harfbuzz.git/commitdiff/61b69808e4505a9109f5e777f232519f5abce5f3

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


DISTFILES: harfbuzz: harfbuzz-8.4.0.tar.xz

2024-03-29 Thread atler
Request by: atler


Files fetched: 1

STORED: 
https://github.com/harfbuzz/harfbuzz/releases/download/8.4.0/harfbuzz-8.4.0.tar.xz
961e77201ff4738382ea06e9f15ade70  harfbuzz-8.4.0.tar.xz
Size: 19241260 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/mtd-utils] up to 2.2.0

2024-03-29 Thread atler
commit 549387ba9ace4de5ff3ae1957c471e10a4b9080a
Author: Jan Palus 
Date:   Fri Mar 29 21:50:34 2024 +0100

up to 2.2.0

 mtd-utils.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/mtd-utils.spec b/mtd-utils.spec
index f821a9c..b8fecb8 100644
--- a/mtd-utils.spec
+++ b/mtd-utils.spec
@@ -1,12 +1,12 @@
 Summary:   MTD (Memory Technology Devices) utilities
 Summary(pl.UTF-8): Narzędzia MTD (Memory Technology Devices)
 Name:  mtd-utils
-Version:   2.1.6
+Version:   2.2.0
 Release:   1
 License:   GPL v2
 Group: Applications/System
 Source0:   ftp://ftp.infradead.org/pub/mtd-utils/%{name}-%{version}.tar.bz2
-# Source0-md5: 2851d4b13e5c1cf9415f76102a34d623
+# Source0-md5: 35d71328107c54068c8df5a3b980c06e
 URL:   http://www.linux-mtd.infradead.org/
 BuildRequires: acl-devel
 # for tests
@@ -46,7 +46,7 @@ Pliki nagłówkowe dla narzędzi MTD.
 %build
 %configure \
--disable-silent-rules \
-   --disable-tests
+   --without-tests
 
 %{__make}
 


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/mtd-utils.git/commitdiff/549387ba9ace4de5ff3ae1957c471e10a4b9080a

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


DISTFILES: mtd-utils: mtd-utils-2.2.0.tar.bz2

2024-03-29 Thread atler
Request by: atler


Files fetched: 1

STORED: ftp://ftp.infradead.org/pub/mtd-utils/mtd-utils-2.2.0.tar.bz2
35d71328107c54068c8df5a3b980c06e  mtd-utils-2.2.0.tar.bz2
Size: 471918 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/neomutt] up to 20240329

2024-03-29 Thread atler
commit 5fff16623aae42cbc9aedc9e97bd042e707c3b58
Author: Jan Palus 
Date:   Fri Mar 29 21:54:41 2024 +0100

up to 20240329

 neomutt.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/neomutt.spec b/neomutt.spec
index 899bb5d..ecc66ae 100644
--- a/neomutt.spec
+++ b/neomutt.spec
@@ -21,12 +21,12 @@ Summary(ru.UTF-8):  Почтовая клиентская программа NeoM
 Summary(tr.UTF-8): NeoMutt elektronik posta programı
 Summary(uk.UTF-8): Поштова клієнтська програма NeoMutt
 Name:  neomutt
-Version:   20240323
+Version:   20240329
 Release:   1
 License:   GPL v2+
 Group: Applications/Mail
 Source0:   https://github.com/neomutt/neomutt/archive/%{version}.tar.gz
-# Source0-md5: d8d1960fcfa6d2e0f5951277a7410093
+# Source0-md5: 3ea5e0b732ecff28a2105041602e6222
 Source1:   %{name}.desktop
 URL:   http://www.mutt.org/
 BuildRequires: autoconf >= 2.54


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/neomutt.git/commitdiff/5fff16623aae42cbc9aedc9e97bd042e707c3b58

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


DISTFILES: neomutt: 20240329.tar.gz

2024-03-29 Thread atler
Request by: atler


Files fetched: 1

STORED: https://github.com/neomutt/neomutt/archive/20240329.tar.gz
3ea5e0b732ecff28a2105041602e6222  20240329.tar.gz
Size: 3832314 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/xz] Revert "up to 5.6.1"

2024-03-29 Thread arekm
commit 2bcfccb7086ec47a8dd9041f97afc114c64c25db
Author: Arkadiusz Miśkiewicz 
Date:   Fri Mar 29 23:49:00 2024 +0100

Revert "up to 5.6.1"

This reverts commit ed514b6272a7c5190a6875b4139d4806db74d9d3.

 xz.spec | 6 ++
 1 file changed, 2 insertions(+), 4 deletions(-)
---
diff --git a/xz.spec b/xz.spec
index c3e1412..669b51d 100644
--- a/xz.spec
+++ b/xz.spec
@@ -18,17 +18,15 @@
 Summary:   LZMA Encoder/Decoder
 Summary(pl.UTF-8): Koder/Dekoder LZMA
 Name:  xz
-Version:   5.6.1
+Version:   5.6.0
 Release:   1
 Epoch: 1
 License:   0BSD, helper scripts on GPL v2+
 Group: Applications/Archiving
 Source0:   
https://github.com/tukaani-project/xz/releases/download/v%{version}/%{name}-%{version}.tar.bz2
-# Source0-md5: 87e595fb7cf67af0d9ce331c564a6bf5
+# Source0-md5: 6efd76c69f61a87e175c198f30b9dab8
 URL:   https://tukaani.org/xz/
 %{?with_asm:BuildRequires: gcc >= 5:3.4}
-BuildRequires: glibc-headers >= 6:2.34
-BuildRequires: linux-libc-headers >= 7:5.13
 BuildRequires: rpm >= 4.4.9-56
 BuildRequires: rpmbuild(macros) >= 1.527
 Requires:  %{name}-libs = %{epoch}:%{version}-%{release}


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/xz.git/commitdiff/b369fe78b7b4a02e900fb6fe7ac035a9bba39436

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


[packages/xz] Revert "- library and programs license is 0BSD now"

2024-03-29 Thread arekm
commit f1d5f95b2163626ee3317b8ea7d3678099a22779
Author: Arkadiusz Miśkiewicz 
Date:   Fri Mar 29 23:49:17 2024 +0100

Revert "- library and programs license is 0BSD now"

This reverts commit 1b32bbf08d09b66b940012bb45b7537d1a3db16f.

 xz.spec | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
---
diff --git a/xz.spec b/xz.spec
index 669b51d..58259ec 100644
--- a/xz.spec
+++ b/xz.spec
@@ -21,7 +21,7 @@ Name: xz
 Version:   5.6.0
 Release:   1
 Epoch: 1
-License:   0BSD, helper scripts on GPL v2+
+License:   LGPL v2.1+, helper scripts on GPL v2+
 Group: Applications/Archiving
 Source0:   
https://github.com/tukaani-project/xz/releases/download/v%{version}/%{name}-%{version}.tar.bz2
 # Source0-md5: 6efd76c69f61a87e175c198f30b9dab8
@@ -187,7 +187,8 @@ rm -rf $RPM_BUILD_ROOT
 
 %files libs
 %defattr(644,root,root,755)
-%doc AUTHORS COPYING COPYING.0BSD README THANKS doc/*.txt
+%doc AUTHORS COPYING README THANKS
+%doc doc/*.txt
 %attr(755,root,root) /%{_lib}/liblzma.so.*.*.*
 %attr(755,root,root) %ghost /%{_lib}/liblzma.so.5
 


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/xz.git/commitdiff/b369fe78b7b4a02e900fb6fe7ac035a9bba39436

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


[packages/xz] Revert "Up to 5.6.0 (patches dropped as new defaults make sense)"

2024-03-29 Thread arekm
commit aee7a0f30cd5409357ecb57f6235498e51e2f414
Author: Arkadiusz Miśkiewicz 
Date:   Fri Mar 29 23:49:19 2024 +0100

Revert "Up to 5.6.0 (patches dropped as new defaults make sense)"

This reverts commit 8e03481356ea482d5ec65bb043c3239a8bc55617.

 xz-memlimit.patch | 14 ++
 xz-parallel.patch | 21 +
 xz.spec   |  8 ++--
 3 files changed, 41 insertions(+), 2 deletions(-)
---
diff --git a/xz.spec b/xz.spec
index 58259ec..a36b5df 100644
--- a/xz.spec
+++ b/xz.spec
@@ -18,13 +18,15 @@
 Summary:   LZMA Encoder/Decoder
 Summary(pl.UTF-8): Koder/Dekoder LZMA
 Name:  xz
-Version:   5.6.0
+Version:   5.4.6
 Release:   1
 Epoch: 1
 License:   LGPL v2.1+, helper scripts on GPL v2+
 Group: Applications/Archiving
 Source0:   
https://github.com/tukaani-project/xz/releases/download/v%{version}/%{name}-%{version}.tar.bz2
-# Source0-md5: 6efd76c69f61a87e175c198f30b9dab8
+# Source0-md5: 098549e685e27620f2fe2883b02c35f2
+Patch0:%{name}-parallel.patch
+Patch1:%{name}-memlimit.patch
 URL:   https://tukaani.org/xz/
 %{?with_asm:BuildRequires: gcc >= 5:3.4}
 BuildRequires: rpm >= 4.4.9-56
@@ -115,6 +117,8 @@ Biblioteka statyczna LZMA.
 
 %prep
 %setup -q
+%patch0 -p1
+%patch1 -p1
 
 %build
 %configure \
diff --git a/xz-memlimit.patch b/xz-memlimit.patch
new file mode 100644
index 000..2509c49
--- /dev/null
+++ b/xz-memlimit.patch
@@ -0,0 +1,14 @@
+diff -urNp -x '*.orig' xz-5.2.5.org/src/xz/hardware.c 
xz-5.2.5/src/xz/hardware.c
+--- xz-5.2.5.org/src/xz/hardware.c 2021-03-21 00:19:11.655899186 +0100
 xz-5.2.5/src/xz/hardware.c 2021-03-21 00:19:11.892899186 +0100
+@@ -67,6 +67,10 @@ hardware_memlimit_set(uint64_t new_memli
+   assert(new_memlimit <= 100);
+   new_memlimit = (uint32_t)new_memlimit * total_ram / 100;
+   }
++ 
++  // limit to some sane value (in case of 64bit host and 32bit processes)
++  if (new_memlimit >= SIZE_MAX/100 * 95)
++  new_memlimit = SIZE_MAX/100 * 95;
+ 
+   if (set_compress) {
+   memlimit_compress = new_memlimit;
diff --git a/xz-parallel.patch b/xz-parallel.patch
new file mode 100644
index 000..a9e4acb
--- /dev/null
+++ b/xz-parallel.patch
@@ -0,0 +1,21 @@
+--- xz-5.1.1alpha/src/xz/xz.1~ 2011-04-12 12:42:58.0 +0200
 xz-5.1.1alpha/src/xz/xz.1  2011-10-22 23:07:14.357449738 +0200
+@@ -913,7 +913,7 @@
+ .B 0
+ makes
+ .B xz
+-use up to as many threads as the processor(s) on the system support.
++use up to as many threads as the processor(s) on the system support (default 
in PLD).
+ The actual number of threads can be fewer than
+ .I threads
+ if the input file is not big enough
+--- xz-5.4.0/src/xz/hardware.c.orig2022-12-14 21:03:50.227052828 +0100
 xz-5.4.0/src/xz/hardware.c 2022-12-14 23:25:02.994248765 +0100
+@@ -334,5 +334,7 @@
+   memlimit_mt_default = mem_ceiling;
+ #endif
+ 
++  hardware_threads_set(0);
++  hardware_memlimit_set(80, true, false, false, true);
+   return;
+ }


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/xz.git/commitdiff/b369fe78b7b4a02e900fb6fe7ac035a9bba39436

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


[packages/xz] Revert back to 5.4.6 as 5.6.x are BACKDOORED! https://www.openwall.com/lists/oss-security/2024/03/29

2024-03-29 Thread arekm
commit b369fe78b7b4a02e900fb6fe7ac035a9bba39436
Author: Arkadiusz Miśkiewicz 
Date:   Fri Mar 29 23:50:59 2024 +0100

Revert back to 5.4.6 as 5.6.x are BACKDOORED! 
https://www.openwall.com/lists/oss-security/2024/03/29/4

 xz.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/xz.spec b/xz.spec
index a36b5df..8094d11 100644
--- a/xz.spec
+++ b/xz.spec
@@ -19,8 +19,8 @@ Summary:  LZMA Encoder/Decoder
 Summary(pl.UTF-8): Koder/Dekoder LZMA
 Name:  xz
 Version:   5.4.6
-Release:   1
-Epoch: 1
+Release:   2
+Epoch: 2
 License:   LGPL v2.1+, helper scripts on GPL v2+
 Group: Applications/Archiving
 Source0:   
https://github.com/tukaani-project/xz/releases/download/v%{version}/%{name}-%{version}.tar.bz2


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/xz.git/commitdiff/b369fe78b7b4a02e900fb6fe7ac035a9bba39436

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


[packages/Mesa] up to 24.0.4

2024-03-29 Thread atler
commit 52b714261b9b43067362dbb98b43a81ba4d6
Author: Jan Palus 
Date:   Fri Mar 29 23:54:20 2024 +0100

up to 24.0.4

 Mesa.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/Mesa.spec b/Mesa.spec
index 4be4606..4a4561a 100644
--- a/Mesa.spec
+++ b/Mesa.spec
@@ -84,12 +84,12 @@
 Summary:   Free OpenGL implementation
 Summary(pl.UTF-8): Wolnodostępna implementacja standardu OpenGL
 Name:  Mesa
-Version:   24.0.3
+Version:   24.0.4
 Release:   1
 License:   MIT (core) and others - see license.html file
 Group: X11/Libraries
 Source0:   https://archive.mesa3d.org/mesa-%{version}.tar.xz
-# Source0-md5: fb1794acf5f714e4835be3bf2ab010fe
+# Source0-md5: de4661e901f2dfb194e6b1bf04dc2171
 Source1:   
https://crates.io/api/v1/crates/syn/%{syn_crate_ver}/download?/syn-%{syn_crate_ver}.tar.gz
 # Source1-md5: 16236f1edd28a8895ad8c3de8de226d8
 Source2:   
https://crates.io/api/v1/crates/unicode-ident/%{unicode_ident_crate_ver}/download?/unicode-ident-%{unicode_ident_crate_ver}.tar.gz


 gitweb:

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

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


DISTFILES: Mesa: ERRORS: mesa-24.0.4.tar.xz syn-2.0.39.tar.gz unicode-ident-1.0.12.tar.gz quote-1.0.33.tar.gz proc-macro2-1.0.70.tar.gz

2024-03-29 Thread atler
Request by: atler

wget -nv --no-iri --user-agent=PLD/distfiles -O 
./tmp/c2312ccc-b535-4580-bf8c-7eec0936c45d/de4661e901f2dfb194e6b1bf04dc2171/mesa-24.0.4.tar.xz
 https://archive.mesa3d.org/mesa-24.0.4.tar.xz:
failed: Connection timed out.



Files fetched: 1

STORED: https://archive.mesa3d.org/mesa-24.0.4.tar.xz
de4661e901f2dfb194e6b1bf04dc2171  mesa-24.0.4.tar.xz
Size: 20057744 bytes
ALREADY GOT: 
https://crates.io/api/v1/crates/syn/2.0.39/download?/syn-2.0.39.tar.gz
16236f1edd28a8895ad8c3de8de226d8  syn-2.0.39.tar.gz
ALREADY GOT: 
https://crates.io/api/v1/crates/unicode-ident/1.0.12/download?/unicode-ident-1.0.12.tar.gz
ca65153603a1a7240bbd9d2ce19f2d67  unicode-ident-1.0.12.tar.gz
ALREADY GOT: 
https://crates.io/api/v1/crates/quote/1.0.33/download?/quote-1.0.33.tar.gz
0ddb8bccd3198892d0dd0ec7151f7cd3  quote-1.0.33.tar.gz
ALREADY GOT: 
https://crates.io/api/v1/crates/proc-macro2/1.0.70/download?/proc-macro2-1.0.70.tar.gz
3f210fd91912a2d7d2f0af5038704d17  proc-macro2-1.0.70.tar.gz


-- 
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/libarchive] rel 2; improves changes made by user who bacdoored xz - https://github.com/libarchive/libarchive/pul

2024-03-29 Thread arekm
commit fc32b80ff1cface8d591d8847c1448d553118b11
Author: Arkadiusz Miśkiewicz 
Date:   Sat Mar 30 01:51:10 2024 +0100

rel 2; improves changes made by user who bacdoored xz - 
https://github.com/libarchive/libarchive/pull/1609

 errno.patch | 27 +++
 libarchive.spec |  4 +++-
 2 files changed, 30 insertions(+), 1 deletion(-)
---
diff --git a/libarchive.spec b/libarchive.spec
index bd6a266..31e5f12 100644
--- a/libarchive.spec
+++ b/libarchive.spec
@@ -6,7 +6,7 @@ Summary:Multi-format archive and compression library
 Summary(pl.UTF-8): Biblioteka do archiwizacji i kompresji w wielu formatach
 Name:  libarchive
 Version:   3.7.2
-Release:   1
+Release:   2
 License:   BSD
 Group: Libraries
 # see main page, downloads index may be out of date
@@ -14,6 +14,7 @@ Group:Libraries
 Source0:   https://www.libarchive.org/downloads/%{name}-%{version}.tar.xz
 # Source0-md5: 4f4ef6a17c7b0b484aa2c95aa6deefac
 Patch0:%{name}-man_progname.patch
+Patch1:errno.patch
 URL:   http://www.libarchive.org/
 BuildRequires: acl-devel
 BuildRequires: attr-devel
@@ -143,6 +144,7 @@ bsdunzip - implementacja programu unzip(1), oparta na 
libarchive.
 %prep
 %setup -q
 %patch0 -p1
+%patch1 -p1
 
 %build
 %{__libtoolize}
diff --git a/errno.patch b/errno.patch
new file mode 100644
index 000..6a351ba
--- /dev/null
+++ b/errno.patch
@@ -0,0 +1,27 @@
+From 6110e9c82d8ba830c3440f36b990483ceaaea52c Mon Sep 17 00:00:00 2001
+From: Ed Maste 
+Date: Fri, 29 Mar 2024 18:02:06 -0400
+Subject: [PATCH] tar: make error reporting more robust and use correct errno
+ (#2101)
+
+As discussed in #1609.
+---
+ tar/read.c | 5 +++--
+ 1 file changed, 3 insertions(+), 2 deletions(-)
+
+diff --git a/tar/read.c b/tar/read.c
+index af3d3f423..a7f14a07b 100644
+--- a/tar/read.c
 b/tar/read.c
+@@ -371,8 +371,9 @@ read_archive(struct bsdtar *bsdtar, char mode, struct 
archive *writer)
+   if (r != ARCHIVE_OK) {
+   if (!bsdtar->verbose)
+   safe_fprintf(stderr, "%s", 
archive_entry_pathname(entry));
+-  fprintf(stderr, ": %s: ", 
archive_error_string(a));
+-  fprintf(stderr, "%s", strerror(errno));
++  safe_fprintf(stderr, ": %s: %s",
++  archive_error_string(a),
++  strerror(archive_errno(a)));
+   if (!bsdtar->verbose)
+   fprintf(stderr, "\n");
+   bsdtar->return_value = 1;


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/libarchive.git/commitdiff/fc32b80ff1cface8d591d8847c1448d553118b11

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