DISTFILES: golang: go1.21.3.src.tar.gz
Request by: atler Files fetched: 1 STORED: https://storage.googleapis.com/golang/go1.21.3.src.tar.gz 20584da4274db98f4decc197428df510 go1.21.3.src.tar.gz Size: 26976568 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/golang] up to 1.21.3 (fixes CVE-2023-39325)
commit 5041a936b5e0742bd7f9a7c7489b2d83b3e3 Author: Jan Palus Date: Fri Oct 13 00:13:58 2023 +0200 up to 1.21.3 (fixes CVE-2023-39325) golang.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- diff --git a/golang.spec b/golang.spec index 183704b..56f4f43 100644 --- a/golang.spec +++ b/golang.spec @@ -26,14 +26,14 @@ Summary: Go compiler and tools Summary(pl.UTF-8): Kompilator języka Go i narzędzia Name: golang -Version: 1.21.2 +Version: 1.21.3 Release: 1 # source tree includes several copies of Mark.Twain-Tom.Sawyer.txt under Public Domain License: BSD and Public Domain Group: Development/Languages # Source0Download: https://go.dev/dl/ Source0: https://storage.googleapis.com/golang/go%{version}.src.tar.gz -# Source0-md5: 18a5944a6492fa86a754558ef7499ca1 +# Source0-md5: 20584da4274db98f4decc197428df510 Patch0:ca-certs.patch URL: https://go.dev/ BuildRequires: bash gitweb: http://git.pld-linux.org/gitweb.cgi/packages/golang.git/commitdiff/5041a936b5e0742bd7f9a7c7489b2d83b3e3 ___ pld-cvs-commit mailing list pld-cvs-commit@lists.pld-linux.org http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit
DISTFILES: wxWidgets: wxWidgets-3.2.3.tar.bz2
Request by: atler Files fetched: 1 STORED: https://github.com/wxWidgets/wxWidgets/releases/download/v3.2.3/wxWidgets-3.2.3.tar.bz2 621a67681e96147194d752db12d7f24d wxWidgets-3.2.3.tar.bz2 Size: 27537724 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/wxWidgets] up to 3.2.3
commit 1cbcdb2a73dece6c57ac0abe5d3c31c8eb295142 Author: Jan Palus Date: Fri Oct 13 00:06:21 2023 +0200 up to 3.2.3 os-release.patch| 77 webkit2gtk4.1.patch | 164 wxWidgets.spec | 13 ++--- 3 files changed, 6 insertions(+), 248 deletions(-) --- diff --git a/wxWidgets.spec b/wxWidgets.spec index 3e90450..60b29fb 100644 --- a/wxWidgets.spec +++ b/wxWidgets.spec @@ -15,19 +15,17 @@ Summary:wxWidgets library Summary(pl.UTF-8): Biblioteka wxWidgets Name: wxWidgets %definemajver 3.2 -Version: 3.2.2.1 -Release: 2 +Version: 3.2.3 +Release: 1 License: wxWindows Library Licence 3.1 (LGPL v2+ with exception) Group: X11/Libraries #Source0Download: https://github.com/wxWidgets/wxWidgets/releases Source0: https://github.com/wxWidgets/wxWidgets/releases/download/v%{version}/%{name}-%{version}.tar.bz2 -# Source0-md5: 45bd5f56a06e7c4ca7caf6c0b4d5d506 +# Source0-md5: 621a67681e96147194d752db12d7f24d Patch0:%{name}-samples.patch Patch1:%{name}-ac.patch Patch2:%{name}-gifdelay.patch Patch3:relax-abicheck.patch -Patch4:os-release.patch -Patch5:webkit2gtk4.1.patch URL: https://www.wxWidgets.org/ %{?with_directfb:BuildRequires:DirectFB-devel >= 0.9.23} %{?with_gtk3:BuildRequires:EGL-devel >= 1.5} @@ -84,6 +82,9 @@ BuildRequires:xorg-lib-libXinerama-devel BuildRequires: xorg-lib-libXt-devel BuildRequires: xorg-lib-libXxf86vm-devel %endif +%if %{with gtk2} || %{with gtk3} +BuildRequires: xorg-lib-libxkbcommon-devel +%endif BuildRequires: xz-devel BuildRequires: zlib-devel >= 1.1.4 # these are not supported by wxWidgets @@ -923,8 +924,6 @@ obsługą UNICODE. %patch1 -p1 %patch2 -p1 %patch3 -p1 -%patch4 -p1 -%patch5 -p1 %{__rm} build/aclocal/bakefile*.m4 diff --git a/os-release.patch b/os-release.patch deleted file mode 100644 index 3a0456f..000 --- a/os-release.patch +++ /dev/null @@ -1,77 +0,0 @@ -From 1b0c5d63f6269afa46d121c28160a339da5dd5b7 Mon Sep 17 00:00:00 2001 -From: Scott Talbert -Date: Fri, 14 Jul 2023 11:45:19 -0400 -Subject: [PATCH] Read Linux distribution info from os-release file - -The Linux distribution community has somewhat deprecated the lsb_release -utility and has standardized on a new file, os-release, that can be -simply parsed to get the same information. Attempt to read this file in -/etc/os-release, then /usr/lib/os-release, and finally, fall back to -using the lsb_release utility if neither of those files are found. - -See: https://www.freedesktop.org/software/systemd/man/os-release.html -Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=2184391 - -See #23712. - -(cherry picked from commit aef7df6c9f44f751d97f4f6519ae6e5c3b81019d) - docs/changes.txt | 1 + - src/unix/utilsunx.cpp | 30 ++ - 2 files changed, 31 insertions(+) - -diff --git a/src/unix/utilsunx.cpp b/src/unix/utilsunx.cpp -index ac5181e187f3..302aaa25b8f5 100644 a/src/unix/utilsunx.cpp -+++ b/src/unix/utilsunx.cpp -@@ -62,6 +62,8 @@ - #include "wx/evtloop.h" - #include "wx/mstream.h" - #include "wx/private/fdioeventloopsourcehandler.h" -+#include "wx/config.h" -+#include "wx/filename.h" - - #include - #include// waitpid() -@@ -1147,6 +1149,23 @@ wxString wxGetNativeCpuArchitectureName() - - #ifdef __LINUX__ - -+static bool -+wxGetValuesFromOSRelease(const wxString& filename, wxLinuxDistributionInfo& ret) -+{ -+if ( !wxFileName::Exists(filename) ) -+{ -+return false; -+} -+ -+wxFileConfig fc(wxEmptyString, wxEmptyString, wxEmptyString, filename); -+ret.Id = fc.Read(wxS("ID"), wxEmptyString).Capitalize(); -+ret.Description = fc.Read(wxS("PRETTY_NAME"), wxEmptyString); -+ret.Release = fc.Read(wxS("VERSION_ID"), wxEmptyString); -+ret.CodeName = fc.Read(wxS("VERSION_CODENAME"), wxEmptyString); -+ -+return true; -+} -+ - static bool - wxGetValueFromLSBRelease(const wxString& arg, const wxString& lhs, wxString* rhs) - { -@@ -1161,6 +1180,17 @@ wxLinuxDistributionInfo wxGetLinuxDistributionInfo() - { - wxLinuxDistributionInfo ret; - -+// Read /etc/os-release and fall back to /usr/lib/os-release per below -+// https://www.freedesktop.org/software/systemd/man/os-release.html -+if ( wxGetValuesFromOSRelease(wxS("/etc/os-release"), ret) ) -+{ -+return ret; -+} -+if ( wxGetValuesFromOSRelease(wxS("/usr/lib/os-release"), ret) ) -+{ -+return ret; -+} -+ - if ( !wxGetValueFromLSBRelease(wxS("--id"), wxS("Distributor ID:\t"), -&ret.Id) ) - { diff --git a/webkit2gtk4.1.patch b/webkit2gtk4.1.patch deleted file mode 100644 index 1fe2cd1..000 --- a/webkit2gtk4.1.patch +++ /dev/null @@ -1,164 +0,0 @@ -From df46add1165314bce93d70e611ddc453561ff
DISTFILES: xfsprogs: xfsprogs-6.5.0.tar.xz xfsprogs-pl.po-update.patch
Request by: atler Files fetched: 1 STORED: https://www.kernel.org/pub/linux/utils/fs/xfs/xfsprogs/xfsprogs-6.5.0.tar.xz 312d4f63c02c63a6b8b8b80a9ada11c6 xfsprogs-6.5.0.tar.xz Size: 1348452 bytes ALREADY GOT: no-url://xfsprogs-pl.po-update.patch 55cb49efcff3c0610da1c6408d936c58 xfsprogs-pl.po-update.patch -- 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/xfsprogs] up to 6.5.0
commit 330879b15fae030105904c32f7fcf6fb6ffa29f4 Author: Jan Palus Date: Thu Oct 12 23:35:24 2023 +0200 up to 6.5.0 xfsprogs.spec | 8 +--- 1 file changed, 5 insertions(+), 3 deletions(-) --- diff --git a/xfsprogs.spec b/xfsprogs.spec index bd9887c..f9e1094 100644 --- a/xfsprogs.spec +++ b/xfsprogs.spec @@ -6,12 +6,12 @@ Summary: Tools for the XFS filesystem Summary(pl.UTF-8): Narzędzia do systemu plików XFS Name: xfsprogs -Version: 6.4.0 +Version: 6.5.0 Release: 1 License: LGPL v2.1 (libhandle), GPL v2 (the rest) Group: Applications/System Source0: https://www.kernel.org/pub/linux/utils/fs/xfs/xfsprogs/%{name}-%{version}.tar.xz -# Source0-md5: 81c09e5ea47412c3a109a316cf4dd39d +# Source0-md5: 312d4f63c02c63a6b8b8b80a9ada11c6 Source1: xfs_lsprojid Patch0:%{name}-miscfix-v2.patch Patch1:%{name}-pl.po-update.patch @@ -136,7 +136,8 @@ Biblioteki statyczne do XFS. --enable-gettext \ --enable-libicu \ --disable-lto \ - %{?with_scrub:--enable-scrub=yes} + %{?with_scrub:--enable-scrub=yes} \ + --with-udev-rule-dir=/lib/udev/rules.d %{__make} \ V=1 @@ -224,6 +225,7 @@ rm -rf $RPM_BUILD_ROOT %defattr(644,root,root,755) %attr(755,root,root) %{_sbindir}/xfs_scrub %attr(755,root,root) %{_sbindir}/xfs_scrub_all +/lib/udev/rules.d/64-xfs.rules %{systemdunitdir}/xfs_scrub@.service %{systemdunitdir}/xfs_scrub_all.service %{systemdunitdir}/xfs_scrub_all.timer gitweb: http://git.pld-linux.org/gitweb.cgi/packages/xfsprogs.git/commitdiff/330879b15fae030105904c32f7fcf6fb6ffa29f4 ___ pld-cvs-commit mailing list pld-cvs-commit@lists.pld-linux.org http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit
[packages/python-pytest-xprocess] - disable python3 here
commit 7c2f2472654827b84126a5a4f202d6e111faa40c Author: Jakub Bogusz Date: Thu Oct 12 22:34:21 2023 +0200 - disable python3 here python-pytest-xprocess.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- diff --git a/python-pytest-xprocess.spec b/python-pytest-xprocess.spec index add02d1..37ffb5d 100644 --- a/python-pytest-xprocess.spec +++ b/python-pytest-xprocess.spec @@ -1,7 +1,7 @@ # # Conditional build: %bcond_without python2 # CPython 2.x module -%bcond_without python3 # CPython 3.x module +%bcond_withpython3 # CPython 3.x module (built from python3-pytest-xprocess.spec) Summary: A pytest plugin for managing processes across test runs Summary(pl.UTF-8): Wtyczka pytesta do zarządzania procesami między uruchomieniami testów gitweb: http://git.pld-linux.org/gitweb.cgi/packages/python-pytest-xprocess.git/commitdiff/7c2f2472654827b84126a5a4f202d6e111faa40c ___ pld-cvs-commit mailing list pld-cvs-commit@lists.pld-linux.org http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit
DISTFILES: python3-pytest-xprocess: pytest-xprocess-0.23.0.tar.gz
Request by: qboosh Files fetched: 1 STORED: https://files.pythonhosted.org/packages/source/p/pytest-xprocess/pytest-xprocess-0.23.0.tar.gz 42aa2f309e450ea1379039b62e1f6eea pytest-xprocess-0.23.0.tar.gz Size: 31350 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/python3-pytest-xprocess] - python-pytest-xprocess.spec updated to 0.23.0 for python 3.8+
commit 179c23d16a47e0d0af85d35a62435746a9554dac Author: Jakub Bogusz Date: Thu Oct 12 22:33:11 2023 +0200 - python-pytest-xprocess.spec updated to 0.23.0 for python 3.8+ python-pytest-xprocess.spec | 118 --- python3-pytest-xprocess.spec | 92 + 2 files changed, 92 insertions(+), 118 deletions(-) --- diff --git a/python-pytest-xprocess.spec b/python-pytest-xprocess.spec deleted file mode 100644 index add02d1..000 --- a/python-pytest-xprocess.spec +++ /dev/null @@ -1,118 +0,0 @@ -# -# Conditional build: -%bcond_without python2 # CPython 2.x module -%bcond_without python3 # CPython 3.x module - -Summary: A pytest plugin for managing processes across test runs -Summary(pl.UTF-8): Wtyczka pytesta do zarządzania procesami między uruchomieniami testów -Name: python-pytest-xprocess -# keep 0.14.x here for python2 support -Version: 0.14.0 -Release: 1 -License: MIT -Group: Libraries/Python -#Source0Download: https://pypi.org/simple/pytest-xprocess/ -Source0: https://files.pythonhosted.org/packages/source/p/pytest-xprocess/pytest-xprocess-%{version}.tar.gz -# Source0-md5: e9557702d10022fd39fd9d5bee56bc80 -URL: https://pypi.org/project/pytest-xprocess/ -%if %{with python2} -BuildRequires: python-modules >= 1:2.7 -BuildRequires: python-setuptools -BuildRequires: python-setuptools_scm -%endif -%if %{with python3} -BuildRequires: python3-modules >= 1:3.5 -BuildRequires: python3-setuptools -BuildRequires: python3-setuptools_scm -%endif -BuildRequires: rpm-pythonprov -BuildRequires: rpmbuild(macros) >= 1.714 -Requires: python-modules >= 1:2.7 -BuildArch: noarch -BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n) - -%description -pytest-xprocess provides a "xprocess" fixture which helps you to -ensure that one or more longer-running processes are present for your -tests. You can use it to start and pre-configure test-specific -databases (Postgres, Couchdb, ...). - -%description -l pl.UTF-8 -pytest-xprocess udostępnia wyposarzenie "xprocess", pomagający -zapewnić, że istnieje jeden lub więcej dłużej działających procesów w -trakcie testów. Można ich użyć do uruchomienia i wstępnej konfiguracji -bez danych specyficznych dla testów (Postgres, Couchdb...). - -%package -n python3-pytest-xprocess -Summary: A pytest plugin for managing processes across test runs -Summary(pl.UTF-8): Wtyczka pytesta do zarządzania procesami między uruchomieniami testów -Group: Libraries/Python -Requires: python3-modules >= 1:3.5 - -%description -n python3-pytest-xprocess -pytest-xprocess provides a "xprocess" fixture which helps you to -ensure that one or more longer-running processes are present for your -tests. You can use it to start and pre-configure test-specific -databases (Postgres, Couchdb, ...). - -%description -n python3-pytest-xprocess -l pl.UTF-8 -pytest-xprocess udostępnia wyposarzenie "xprocess", pomagający -zapewnić, że istnieje jeden lub więcej dłużej działających procesów w -trakcie testów. Można ich użyć do uruchomienia i wstępnej konfiguracji -bez danych specyficznych dla testów (Postgres, Couchdb...). - -%prep -%setup -q -n pytest-xprocess-%{version} - -%build -%if %{with python2} -%py_build -%endif - -%if %{with python3} -%py3_build -%endif - -%install -rm -rf $RPM_BUILD_ROOT - -%if %{with python2} -%py_install - -%py_postclean - -install -d $RPM_BUILD_ROOT%{_examplesdir}/python-pytest-xprocess-%{version} -cp -p example/*.py $RPM_BUILD_ROOT%{_examplesdir}/python-pytest-xprocess-%{version} -%endif - -%if %{with python3} -%py3_install - -install -d $RPM_BUILD_ROOT%{_examplesdir}/python3-pytest-xprocess-%{version} -cp -p example/*.py $RPM_BUILD_ROOT%{_examplesdir}/python3-pytest-xprocess-%{version} -%endif - -%clean -rm -rf $RPM_BUILD_ROOT - -%if %{with python2} -%files -%defattr(644,root,root,755) -%doc CHANGELOG.rst LICENSE README.rst -%{py_sitescriptdir}/pytest_xprocess.py[co] -%{py_sitescriptdir}/xprocess.py[co] -%{py_sitescriptdir}/pytest_xprocess-%{version}-py*.egg-info -%{_examplesdir}/python-pytest-xprocess-%{version} -%endif - -%if %{with python3} -%files -n python3-pytest-xprocess -%defattr(644,root,root,755) -%doc CHANGELOG.rst LICENSE README.rst -%{py3_sitescriptdir}/pytest_xprocess.py -%{py3_sitescriptdir}/xprocess.py -%{py3_sitescriptdir}/__pycache__/pytest_xprocess.cpython-*.py[co] -%{py3_sitescriptdir}/__pycache__/xprocess.cpython-*.py[co] -%{py3_sitescriptdir}/pytest_xprocess-%{version}-py*.egg-info -%{_examplesdir}/python3-pytest-xprocess-%{version} -%endif diff --git a/python3-pytest-xprocess.spec b/python3-pytest-xprocess.spec new file mode 100644 index 000..49cc012 --- /dev/null +++ b/python3-pytest-xprocess.spec @@ -0,0 +1,92 @@ +# +# Conditional build: +%bcond_without doc # Sphinx documentation +%bcond_without tests # unit tests + +Summary: A pytest plugin for managing processes across test runs +Sum
[copy command] packages/python-pytest-xprocess -> packages/python3-pytest-xprocess
___ pld-cvs-commit mailing list pld-cvs-commit@lists.pld-linux.org http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit
DISTFILES: python3-werkzeug: werkzeug-2.2.3.tar.gz
Request by: qboosh Files fetched: 1 STORED: https://github.com/pallets/werkzeug/archive/2.2.3/werkzeug-2.2.3.tar.gz 3da84b7479521f8e8c2003cc4006b439 werkzeug-2.2.3.tar.gz Size: 847768 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/python3-werkzeug] - updated to 2.2.3
commit 42a506a83c4f957812eb0f69dc1082a8c8769ec1 Author: Jakub Bogusz Date: Thu Oct 12 21:27:19 2023 +0200 - updated to 2.2.3 python3-werkzeug.spec | 24 +--- 1 file changed, 13 insertions(+), 11 deletions(-) --- diff --git a/python3-werkzeug.spec b/python3-werkzeug.spec index 9cf324d..5347102 100644 --- a/python3-werkzeug.spec +++ b/python3-werkzeug.spec @@ -7,28 +7,29 @@ Summary: The Swiss Army knife of Python web development Summary(pl.UTF-8): Scyzoryk szwajcarski programisty aplikacji WWW Name: python3-%{module} -Version: 2.2.2 +Version: 2.2.3 Release: 1 License: BSD Group: Development/Languages/Python # pypi release misses docs/_themes directory -##Source0Download: https://pypi.python.org/simple/Werkzeug +##Source0Download: https://pypi.org/simple/Werkzeug #Source0: https://files.pythonhosted.org/packages/source/W/Werkzeug/Werkzeug-%{version}.tar.gz #Source0Download: https://github.com/pallets/werkzeug/releases Source0: https://github.com/pallets/werkzeug/archive/%{version}/werkzeug-%{version}.tar.gz -# Source0-md5: b822ba33e34f25c630e462457609c12f +# Source0-md5: 3da84b7479521f8e8c2003cc4006b439 URL: https://werkzeug.palletsprojects.com/ -BuildRequires: python3-devel >= 1:3.6 -BuildRequires: python3-modules >= 1:3.6 +BuildRequires: python3-devel >= 1:3.7 +BuildRequires: python3-modules >= 1:3.7 BuildRequires: python3-setuptools %if %{with tests} BuildRequires: python3-cryptography +BuildRequires: python3-ephemeral_port_reserve BuildRequires: python3-greenlet +BuildRequires: python3-markupsafe >= 2.1.1 BuildRequires: python3-pyOpenSSL BuildRequires: python3-pytest BuildRequires: python3-pytest-timeout -# optional -#BuildRequires:python3-pytest-xprocess +BuildRequires: python3-pytest-xprocess BuildRequires: python3-requests # optional #BuildRequires:python3-watchdog @@ -37,12 +38,11 @@ BuildRequires: rpm-pythonprov BuildRequires: rpmbuild(macros) >= 1.714 %if %{with doc} BuildRequires: python3-pallets-sphinx-themes -BuildRequires: python3-pylons-sphinx-themes BuildRequires: python3-sphinx_issues BuildRequires: python3-sphinxcontrib-log-cabinet BuildRequires: sphinx-pdg-3 %endif -Requires: python-modules >= 1:2.7 +Requires: python3-modules >= 1:3.7 BuildArch: noarch BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n) @@ -83,9 +83,11 @@ Dokumentacja do pakietu Pythona Werkzeug. %if %{with tests} LC_ALL=C.UTF-8 \ PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 \ -PYTEST_PLUGINS=pytest_timeout \ +PYTEST_PLUGINS=pytest_timeout,xprocess.pytest_xprocess \ PYTHONPATH=$(pwd)/src \ -%{__python3} -m pytest tests +%{__python3} -m pytest tests -m 'not dev_server' -k 'not test_exclude_patterns' +# dev_server tests fail with connection refused(?) +# test_exclude_patterns seems to fail with sys.prefix == sys.base_prefix (?) %endif %if %{with doc} gitweb: http://git.pld-linux.org/gitweb.cgi/packages/python3-werkzeug.git/commitdiff/42a506a83c4f957812eb0f69dc1082a8c8769ec1 ___ pld-cvs-commit mailing list pld-cvs-commit@lists.pld-linux.org http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit
DISTFILES: foot: 1.16.1.tar.gz
Request by: atler Files fetched: 1 STORED: https://codeberg.org/dnkl/foot/archive/1.16.1.tar.gz 59fa7cb6df6dd6e7a0ba00884baa6a7d 1.16.1.tar.gz Size: 529761 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/foot] up to 1.16.1
commit ac9683b6a7aa66b723f8179b252a74d0fec72e31 Author: Jan Palus Date: Thu Oct 12 19:52:57 2023 +0200 up to 1.16.1 foot.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- diff --git a/foot.spec b/foot.spec index 21199f7..a7fe4c4 100644 --- a/foot.spec +++ b/foot.spec @@ -4,12 +4,12 @@ Summary: A fast, lightweight and minimalistic Wayland terminal emulator Name: foot -Version: 1.16.0 +Version: 1.16.1 Release: 1 License: MIT Group: Applications/Terminal Source0: https://codeberg.org/dnkl/foot/archive/%{version}.tar.gz -# Source0-md5: a2ca490cff17a6f829241c575cecddc0 +# Source0-md5: 59fa7cb6df6dd6e7a0ba00884baa6a7d Patch0:x32.patch URL: https://codeberg.org/dnkl/foot/ BuildRequires: fcft-devel < 4.0.0 gitweb: http://git.pld-linux.org/gitweb.cgi/packages/foot.git/commitdiff/ac9683b6a7aa66b723f8179b252a74d0fec72e31 ___ pld-cvs-commit mailing list pld-cvs-commit@lists.pld-linux.org http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit
DISTFILES: pipewire-wireplumber: wireplumber-0.4.15.tar.bz2
Request by: atler Files fetched: 1 STORED: https://gitlab.freedesktop.org/pipewire/wireplumber/-/archive/0.4.15/wireplumber-0.4.15.tar.bz2 83967c16434d5a439be26728b8c7cd45 wireplumber-0.4.15.tar.bz2 Size: 327269 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/pipewire-wireplumber] up to 0.4.15
commit 2d4fe1494844e4e42df12b643a268b39ccc25f45 Author: Jan Palus Date: Thu Oct 12 18:58:01 2023 +0200 up to 0.4.15 pipewire-wireplumber.spec | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) --- diff --git a/pipewire-wireplumber.spec b/pipewire-wireplumber.spec index 7a73379..5a2faab 100644 --- a/pipewire-wireplumber.spec +++ b/pipewire-wireplumber.spec @@ -5,13 +5,13 @@ Summary: Session / policy manager implementation for PipeWire Summary(pl.UTF-8): Implementacja zarządcy sesji / polityk dla PipeWire Name: pipewire-wireplumber -Version: 0.4.14 +Version: 0.4.15 Release: 1 License: MIT Group: Libraries #Source0Download: https://gitlab.freedesktop.org/pipewire/wireplumber/-/tags Source0: https://gitlab.freedesktop.org/pipewire/wireplumber/-/archive/%{version}/wireplumber-%{version}.tar.bz2 -# Source0-md5: 5b1ae97978987f8790587f38a3d2241b +# Source0-md5: 83967c16434d5a439be26728b8c7cd45 URL: https://pipewire.org/ # required for both docs and introspection BuildRequires: doxygen >= 1.8.0 @@ -170,6 +170,7 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/wireplumber/policy.lua.d %{_datadir}/wireplumber/scripts %{_datadir}/wireplumber/wireplumber.conf +%{zsh_compdir}/_wpctl %files libs %defattr(644,root,root,755) gitweb: http://git.pld-linux.org/gitweb.cgi/packages/pipewire-wireplumber.git/commitdiff/2d4fe1494844e4e42df12b643a268b39ccc25f45 ___ pld-cvs-commit mailing list pld-cvs-commit@lists.pld-linux.org http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit
DISTFILES: wf-shell: wf-shell-0.8.0.tar.xz
Request by: atler Files fetched: 1 STORED: https://github.com/WayfireWM/wf-shell/releases/download/v0.8.0/wf-shell-0.8.0.tar.xz 93e11f418814743e7212ee1d1dd08f87 wf-shell-0.8.0.tar.xz Size: 9100508 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/wf-shell] new
commit 631bb415e002743c93c18dac279ce5b15c6e5802 Author: Jan Palus Date: Thu Oct 12 18:53:43 2023 +0200 new wf-shell.spec | 68 +++ 1 file changed, 68 insertions(+) --- diff --git a/wf-shell.spec b/wf-shell.spec new file mode 100644 index 000..8d57d76 --- /dev/null +++ b/wf-shell.spec @@ -0,0 +1,68 @@ +Summary: A GTK3-based panel for wayfire +Name: wf-shell +Version: 0.8.0 +Release: 1 +License: MIT +Group: Applications +Source0: https://github.com/WayfireWM/wf-shell/releases/download/v%{version}/%{name}-%{version}.tar.xz +# Source0-md5: 93e11f418814743e7212ee1d1dd08f87 +URL: https://wayfire.org/ +BuildRequires: alsa-lib-devel +BuildRequires: glib2-devel +BuildRequires: gtk-layer-shell-devel >= 0.6 +BuildRequires: gtkmm3-devel >= 3.24 +BuildRequires: libdbusmenu-gtk3-devel +BuildRequires: libstdc++-devel >= 6:9 +BuildRequires: meson >= 0.51.0 +BuildRequires: ninja +BuildRequires: pkgconfig +BuildRequires: pulseaudio-devel >= 2.0 +BuildRequires: rpmbuild(macros) >= 1.736 +BuildRequires: tar >= 1:1.22 +BuildRequires: wayfire-devel +BuildRequires: wayland-devel +BuildRequires: wayland-protocols +BuildRequires: wf-config-devel >= 0.8.0 +BuildRequires: xz +BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n) + +%description +A GTK3-based panel for wayfire. + +%package devel +Summary: Development files for wf-shell +Group: Development/Libraries + +%description devel +Development files for wf-shell. + +%prep +%setup -q + +%build +%meson build +%ninja_build -C build + +%install +rm -rf $RPM_BUILD_ROOT + +%ninja_install -C build + +%clean +rm -rf $RPM_BUILD_ROOT + +%files +%defattr(644,root,root,755) +%doc LICENSE README.md wf-shell.ini.example +%attr(755,root,root) %{_bindir}/wayland-logout +%attr(755,root,root) %{_bindir}/wf-background +%attr(755,root,root) %{_bindir}/wf-dock +%attr(755,root,root) %{_bindir}/wf-panel +%{_datadir}/wayfire/icons/wayfire.png +%{_datadir}/wayfire/metadata/wf-shell +%{_datadir}/wayfire/wallpaper.jpg +%{_mandir}/man1/wayland-logout.1* + +%files devel +%defattr(644,root,root,755) +%{_pkgconfigdir}/wf-shell.pc gitweb: http://git.pld-linux.org/gitweb.cgi/packages/wf-shell.git/commitdiff/631bb415e002743c93c18dac279ce5b15c6e5802 ___ pld-cvs-commit mailing list pld-cvs-commit@lists.pld-linux.org http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit
[packages/wf-shell] Created branch master
The branch 'master' was created. Summary of new commits: 631bb41... new ___ pld-cvs-commit mailing list pld-cvs-commit@lists.pld-linux.org http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit
DISTFILES: wayfire: wayfire-0.8.0.tar.xz
Request by: atler Files fetched: 1 STORED: https://github.com/WayfireWM/wayfire/releases/download/v0.8.0/wayfire-0.8.0.tar.xz 36e88c89c0be0e6af725ecab15049ecb wayfire-0.8.0.tar.xz Size: 828576 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/wayfire] new
commit 3a3bccfaa7f223a7d5ac2af6d16907cac36847be Author: Jan Palus Date: Thu Oct 12 18:52:29 2023 +0200 new wayfire.spec | 147 +++ 1 file changed, 147 insertions(+) --- diff --git a/wayfire.spec b/wayfire.spec new file mode 100644 index 000..61e7d6b --- /dev/null +++ b/wayfire.spec @@ -0,0 +1,147 @@ +# +# Conditional build: +%bcond_without static_libs # static library + +Summary: A modular and extensible wayland compositor +Name: wayfire +Version: 0.8.0 +Release: 1 +License: MIT +Group: Applications +Source0: https://github.com/WayfireWM/wayfire/releases/download/v%{version}/%{name}-%{version}.tar.xz +# Source0-md5: 36e88c89c0be0e6af725ecab15049ecb +URL: https://wayfire.org/ +BuildRequires: EGL-devel +BuildRequires: GLM >= 0.9.9.9 +BuildRequires: OpenGLESv2-devel +BuildRequires: cairo-devel +BuildRequires: cmake +BuildRequires: libdrm-devel +BuildRequires: libevdev-devel +BuildRequires: libinput-devel >= 1.7.0 +BuildRequires: libjpeg-devel +BuildRequires: libpng-devel +BuildRequires: libstdc++-devel >= 6:9 +BuildRequires: libxcb-devel +BuildRequires: meson >= 0.56.0 +BuildRequires: ninja +BuildRequires: nlohmann-json-devel +BuildRequires: pango-devel +BuildRequires: pixman-devel +BuildRequires: pkgconfig +BuildRequires: rpmbuild(macros) >= 1.736 +BuildRequires: tar >= 1:1.22 +BuildRequires: wayland-devel +BuildRequires: wayland-protocols >= 1.12 +BuildRequires: wf-config-devel < 0.9.0 +BuildRequires: wf-config-devel >= 0.8.0 +BuildRequires: wlroots-devel < 0.17.0 +BuildRequires: wlroots-devel >= 0.16.0 +BuildRequires: xorg-lib-libxkbcommon-devel +BuildRequires: xz +Requires: %{name}-libs = %{version}-%{release} +Requires: libinput >= 1.7.0 +Requires: wf-config < 0.9.0 +Requires: wf-config >= 0.8.0 +Requires: wlroots < 0.17.0 +Requires: wlroots >= 0.16.0 +Suggests: alacritty +Suggests: alsa-utils +Suggests: grim +Suggests: kanshi +Suggests: mako +Suggests: swayidle +Suggests: swaylock +Suggests: wf-shell +BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n) + +%description +Wayfire is a 3D Wayland compositor, inspired by Compiz and based on +wlroots. It aims to create a customizable, extendable and lightweight +environment without sacrificing its appearance. + +%package libs +Summary: Wayfire libraries +Group: Libraries + +%description libs +Wayfire libraries + +%package devel +Summary: Header files for wayfire +Group: Development/Libraries +Requires: %{name}-libs = %{version}-%{release} +Requires: cairo-devel +Requires: libstdc++-devel >= 6:9 +Requires: pango-devel +Requires: pixman-devel +Requires: wayland-devel +Requires: wf-config-devel < 0.9.0 +Requires: wf-config-devel >= 0.8.0 +Requires: wlroots-devel < 0.17.0 +Requires: wlroots-devel >= 0.16.0 + +%description devel +Header files for wayfire. + +%package static +Summary: Static wayfire libraries +Group: Development/Libraries +Requires: %{name}-devel = %{version}-%{release} + +%description static +Static wayfire libraries. + +%prep +%setup -q + +%build +%meson build \ + %{!?with_static_libs:--default-library=shared} + +%ninja_build -C build + +%install +rm -rf $RPM_BUILD_ROOT + +install -d $RPM_BUILD_ROOT%{_datadir}/wayfire/icons + +%ninja_install -C build + +%clean +rm -rf $RPM_BUILD_ROOT + +%post libs -p /sbin/ldconfig +%postunlibs -p /sbin/ldconfig + +%files +%defattr(644,root,root,755) +%doc CONTRIBUTING.md LICENSE README.md wayfire.ini +%attr(755,root,root) %{_bindir}/wayfire +%attr(755,root,root) %{_libdir}/libwayfire-blur-base.so +%dir %{_libdir}/wayfire +%attr(755,root,root) %{_libdir}/wayfire/*.so +%dir %{_datadir}/wayfire +%dir %{_datadir}/wayfire/icons +%{_datadir}/wayfire/metadata +%{_datadir}/wayland-sessions/wayfire.desktop +%{_mandir}/man1/wayfire.1* + +%files libs +%defattr(644,root,root,755) +%attr(755,root,root) %{_libdir}/libwf-utils.so.*.*.* +%attr(755,root,root) %ghost %{_libdir}/libwf-utils.so.0 + +%files devel +%defattr(644,root,root,755) +%attr(755,root,root) %{_libdir}/libwf-utils.so +%{_includedir}/wayfire +%{_pkgconfigdir}/wayfire.pc +%{_pkgconfigdir}/wf-utils.pc +%{_datadir}/wayfire/protocols + +%if %{with static_libs} +%files static +%defattr(644,root,root,755) +%attr(755,root,root) %{_libdir}/libwf-utils.a +%endif gitweb: http://git.pld-linux.org/gitweb.cgi/packages/wayfire.git/commitdiff/3a3bccfaa7f223a7d5ac2af6d16907cac36847be ___ pld-cvs-commit mailing list pld-cvs-commit@lists.pld-linux.org http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit
[packages/wayfire] Created branch master
The branch 'master' was created. Summary of new commits: 3a3bccf... new ___ pld-cvs-commit mailing list pld-cvs-commit@lists.pld-linux.org http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit
[packages/wf-config] new
commit 13e797d7468edecf9fe6c6d231ac37841836a1f2 Author: Jan Palus Date: Thu Oct 12 18:50:44 2023 +0200 new wf-config.spec | 83 ++ 1 file changed, 83 insertions(+) --- diff --git a/wf-config.spec b/wf-config.spec new file mode 100644 index 000..f267819 --- /dev/null +++ b/wf-config.spec @@ -0,0 +1,83 @@ +# +# Conditional build: +%bcond_without static_libs # static library + +Summary: A library for managing configuration files, written for wayfire +Name: wf-config +Version: 0.8.0 +Release: 1 +License: MIT +Group: Libraries +Source0: https://github.com/WayfireWM/wf-config/releases/download/v%{version}/%{name}-%{version}.tar.xz +# Source0-md5: 633cd902c2c889ae02c6ffeef8b44357 +URL: https://wayfire.org/ +BuildRequires: GLM >= 0.9.9.9 +BuildRequires: libevdev-devel +BuildRequires: libstdc++-devel >= 6:9 +BuildRequires: libxml2-devel +BuildRequires: meson >= 0.47.0 +BuildRequires: ninja +BuildRequires: pkgconfig +BuildRequires: rpmbuild(macros) >= 1.736 +BuildRequires: tar >= 1:1.22 +BuildRequires: xz +BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n) + +%description +A library for managing configuration files, written for wayfire. + +%package devel +Summary: Header files for wf-config library +Group: Development/Libraries +Requires: %{name} = %{version}-%{release} +Requires: libevdev-devel +Requires: libstdc++-devel >= 6:9 +Requires: libxml2-devel + +%description devel +Header files for wf-config library. + +%package static +Summary: Static wf-config library +Group: Development/Libraries +Requires: %{name}-devel = %{version}-%{release} + +%description static +Static wf-config library. + +%prep +%setup -q + +%build +%meson build \ + %{!?with_static_libs:--default-library=shared} + +%ninja_build -C build + +%install +rm -rf $RPM_BUILD_ROOT +%ninja_install -C build + +%clean +rm -rf $RPM_BUILD_ROOT + +%post -p /sbin/ldconfig +%postun-p /sbin/ldconfig + +%files +%defattr(644,root,root,755) +%attr(755,root,root) %{_libdir}/libwf-config.so.*.*.* +%attr(755,root,root) %ghost %{_libdir}/libwf-config.so.1 + +%files devel +%defattr(644,root,root,755) +%attr(755,root,root) %{_libdir}/libwf-config.so +%{_includedir}/wayfire/config +%{_includedir}/wayfire/util +%{_pkgconfigdir}/wf-config.pc + +%if %{with static_libs} +%files static +%defattr(644,root,root,755) +%{_libdir}/libwf-config.a +%endif gitweb: http://git.pld-linux.org/gitweb.cgi/packages/wf-config.git/commitdiff/13e797d7468edecf9fe6c6d231ac37841836a1f2 ___ pld-cvs-commit mailing list pld-cvs-commit@lists.pld-linux.org http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit
DISTFILES: wf-config: wf-config-0.8.0.tar.xz
Request by: atler Files fetched: 1 STORED: https://github.com/WayfireWM/wf-config/releases/download/v0.8.0/wf-config-0.8.0.tar.xz 633cd902c2c889ae02c6ffeef8b44357 wf-config-0.8.0.tar.xz Size: 41200 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/wf-config] Created branch master
The branch 'master' was created. Summary of new commits: 13e797d... new ___ pld-cvs-commit mailing list pld-cvs-commit@lists.pld-linux.org http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit
[packages/GLM] switch to git snapshot (20230818)
commit 344ac6d5e0329b5901722f5e58f97cfaf21fd06f Author: Jan Palus Date: Thu Oct 12 16:40:10 2023 +0200 switch to git snapshot (20230818) - provides install target and cmake config - include -fno-ipa-modref in CXXFLAGS to fix failing test: https://github.com/g-truc/glm/pull/1087 GLM.spec | 20 +--- x32.patch | 28 ++-- 2 files changed, 27 insertions(+), 21 deletions(-) --- diff --git a/GLM.spec b/GLM.spec index 4b73041..c4f98bb 100644 --- a/GLM.spec +++ b/GLM.spec @@ -3,16 +3,20 @@ %bcond_without tests # build without tests %bcond_withp7zip # plain p7zip (compatible with both rpm4/rpm5) # +%definegitref 47585fde0c49fa77a2bf2fb1d2ead06999fd4b6e +%definesnap20230818 +%definerel 1 + Summary: OpenGL Mathematics (GLM) - C++ mathematics library for GLSL Summary(pl.UTF-8): OpenGL Mathematics (GLM) - biblioteka matematyczna C++ dla GLSL Name: GLM -Version: 0.9.9.8 -Release: 1 +Version: 0.9.9.9 +Release: 0.%{snap}.%{rel} License: MIT Group: Development/Libraries #Source0Download: https://github.com/g-truc/glm/releases -Source0: https://github.com/g-truc/glm/releases/download/%{version}/glm-%{version}.7z -# Source0-md5: c8342552801ebeb31497288192c4e793 +Source0: https://github.com/g-truc/glm/archive/%{gitref}/%{name}-%{snap}.tar.gz +# Source0-md5: b288cb704cca5d1cd46be724ce61f428 Patch0:x32.patch URL: https://glm.g-truc.net/ BuildRequires: cmake >= 3.2 @@ -43,13 +47,14 @@ graficznych opartych na specyfikacji OpenGL Shading Language (GLSL). %setup -q -c -T -n glm 7z x %{SOURCE0} -o.. %else -%setup -q -n glm +%setup -q -n glm-%{gitref} %endif %patch0 -p1 %build mkdir build cd build +CXXFLAGS="%{rpmcxxflags} -fno-ipa-modref" \ %cmake .. \ -DGLM_TEST_ENABLE:BOOL=%{!?with_tests:OFF}%{?with_tests:ON} @@ -60,9 +65,9 @@ cd build %install rm -rf $RPM_BUILD_ROOT -install -d $RPM_BUILD_ROOT%{_includedir} -cp -a glm $RPM_BUILD_ROOT%{_includedir} +%{__make} -C build install \ + DESTDIR=$RPM_BUILD_ROOT %clean rm -rf $RPM_BUILD_ROOT @@ -71,3 +76,4 @@ rm -rf $RPM_BUILD_ROOT %defattr(644,root,root,755) %doc manual.md readme.md %{_includedir}/glm +%{_libdir}/cmake/glm diff --git a/x32.patch b/x32.patch index 37c5572..00f7665 100644 --- a/x32.patch +++ b/x32.patch @@ -1,17 +1,17 @@ --- glm/test/core/core_setup_message.cpp.orig 2020-03-19 23:36:32.0 +0100 +++ glm/test/core/core_setup_message.cpp 2020-03-19 23:43:46.417701188 +0100 @@ -155,7 +155,13 @@ - { - int Error = 0; - -- Error += ((sizeof(void*) == 4) && (GLM_MODEL == GLM_MODEL_32)) || ((sizeof(void*) == 8) && (GLM_MODEL == GLM_MODEL_64)) ? 0 : 1; -+ Error += -+ ((sizeof(void*) == 4) && (GLM_MODEL == GLM_MODEL_32)) || -+ ((sizeof(void*) == 8) && (GLM_MODEL == GLM_MODEL_64)) -+#ifdef __ILP32__ -+ || ((sizeof(void*) == 4) && (GLM_MODEL == GLM_MODEL_64)) -+#endif -+ ? 0 : 1; - - if(GLM_MODEL == GLM_MODEL_32) - std::printf("GLM_MODEL_32\n"); + { + int Error = 0; + +- Error += ((sizeof(void*) == 4) && (GLM_MODEL == GLM_MODEL_32)) || ((sizeof(void*) == 8) && (GLM_MODEL == GLM_MODEL_64)) ? 0 : 1; ++ Error += ++ ((sizeof(void*) == 4) && (GLM_MODEL == GLM_MODEL_32)) || ++ ((sizeof(void*) == 8) && (GLM_MODEL == GLM_MODEL_64)) ++#ifdef __ILP32__ ++ || ((sizeof(void*) == 4) && (GLM_MODEL == GLM_MODEL_64)) ++#endif ++ ? 0 : 1; + + if(GLM_MODEL == GLM_MODEL_32) + std::printf("GLM_MODEL_32\n"); gitweb: http://git.pld-linux.org/gitweb.cgi/packages/GLM.git/commitdiff/344ac6d5e0329b5901722f5e58f97cfaf21fd06f ___ pld-cvs-commit mailing list pld-cvs-commit@lists.pld-linux.org http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit
DISTFILES: GLM: GLM-20230818.tar.gz
Request by: atler Files fetched: 1 STORED: https://github.com/g-truc/glm/archive/47585fde0c49fa77a2bf2fb1d2ead06999fd4b6e/GLM-20230818.tar.gz b288cb704cca5d1cd46be724ce61f428 GLM-20230818.tar.gz Size: 4390831 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/GLM] BR/R: libstdc++-devel
commit 37e717f75579d462cee296b6b9d49f3953b9bec9 Author: Jan Palus Date: Thu Oct 12 16:38:56 2023 +0200 BR/R: libstdc++-devel GLM.spec | 2 ++ 1 file changed, 2 insertions(+) --- diff --git a/GLM.spec b/GLM.spec index 11ce11c..5149485 100644 --- a/GLM.spec +++ b/GLM.spec @@ -16,12 +16,14 @@ Source0: https://github.com/g-truc/glm/releases/download/%{version}/glm-%{versio Patch0:x32.patch URL: https://glm.g-truc.net/ BuildRequires: cmake >= 3.2 +%{?with_tests:BuildRequires: libstdc++-devel} %if %{with p7zip} BuildRequires: p7zip %else BuildRequires: p7zip-standalone BuildRequires: rpm-build >= 5 %endif +Requires: libstdc++-devel BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n) %description gitweb: http://git.pld-linux.org/gitweb.cgi/packages/GLM.git/commitdiff/344ac6d5e0329b5901722f5e58f97cfaf21fd06f ___ pld-cvs-commit mailing list pld-cvs-commit@lists.pld-linux.org http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit
[packages/GLM] macros for %cmake
commit 681f2195a7e4d0137dac78020ed733de68b5d745 Author: Jan Palus Date: Thu Oct 12 16:39:58 2023 +0200 macros for %cmake GLM.spec | 1 + 1 file changed, 1 insertion(+) --- diff --git a/GLM.spec b/GLM.spec index 5149485..4b73041 100644 --- a/GLM.spec +++ b/GLM.spec @@ -17,6 +17,7 @@ Patch0: x32.patch URL: https://glm.g-truc.net/ BuildRequires: cmake >= 3.2 %{?with_tests:BuildRequires: libstdc++-devel} +BuildRequires: rpmbuild(macros) >= 1.605 %if %{with p7zip} BuildRequires: p7zip %else gitweb: http://git.pld-linux.org/gitweb.cgi/packages/GLM.git/commitdiff/344ac6d5e0329b5901722f5e58f97cfaf21fd06f ___ pld-cvs-commit mailing list pld-cvs-commit@lists.pld-linux.org http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit
DISTFILES: caja: caja-1.26.3.tar.xz
Request by: atler Files fetched: 1 STORED: https://pub.mate-desktop.org/releases/1.26/caja-1.26.3.tar.xz bf6fab93dd64b1a5c7c9bdbed1b7e02f caja-1.26.3.tar.xz Size: 5276276 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] up to 1.26.3
commit 8f1e55f6c08439d7dc115a60bed43c0c0352b9c8 Author: Jan Palus Date: Thu Oct 12 18:46:20 2023 +0200 up to 1.26.3 caja.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- diff --git a/caja.spec b/caja.spec index 2e51faa..65104a7 100644 --- a/caja.spec +++ b/caja.spec @@ -5,12 +5,12 @@ Summary: File manager for MATE Summary(pl.UTF-8): Zarządca plików dla środowiska MATE Name: caja -Version: 1.26.1 +Version: 1.26.3 Release: 1 License: GPL v2+ and LGPL v2+ Group: X11/Applications Source0: https://pub.mate-desktop.org/releases/1.26/%{name}-%{version}.tar.xz -# Source0-md5: c86b685419af22347097ce6817c78940 +# Source0-md5: bf6fab93dd64b1a5c7c9bdbed1b7e02f URL: https://wiki.mate-desktop.org/mate-desktop/applications/caja/ BuildRequires: autoconf >= 2.54 BuildRequires: autoconf-archive gitweb: http://git.pld-linux.org/gitweb.cgi/packages/caja.git/commitdiff/8f1e55f6c08439d7dc115a60bed43c0c0352b9c8 ___ pld-cvs-commit mailing list pld-cvs-commit@lists.pld-linux.org http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit
[packages/caja] update desktop database
commit 6c2b939ae8649f73e7f9402420d2ec4366bf9204 Author: Jan Palus Date: Thu Oct 12 18:46:02 2023 +0200 update desktop database caja.spec | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) --- diff --git a/caja.spec b/caja.spec index c46b6e2..2e51faa 100644 --- a/caja.spec +++ b/caja.spec @@ -42,6 +42,7 @@ BuildRequires:xorg-lib-libX11-devel BuildRequires: xorg-lib-libXext-devel BuildRequires: xorg-lib-libXrender-devel BuildRequires: xz +Requires(post,postun): desktop-file-utils Requires(post,postun): gtk-update-icon-cache Requires: %{name}-libs = %{version}-%{release} Requires: exempi >= 1.99.5 @@ -183,16 +184,18 @@ rm -rf $RPM_BUILD_ROOT %update_mime_database %update_icon_cache hicolor %glib_compile_schemas +%update_desktop_database_post %postun %update_mime_database %update_icon_cache hicolor %glib_compile_schemas +%update_desktop_database_postun %post libs -p /sbin/ldconfig %postunlibs -p /sbin/ldconfig -%files -f caja.lang +%files -f caja.lang %defattr(644,root,root,755) %doc AUTHORS ChangeLog NEWS README %attr(755,root,root) %{_bindir}/caja gitweb: http://git.pld-linux.org/gitweb.cgi/packages/caja.git/commitdiff/8f1e55f6c08439d7dc115a60bed43c0c0352b9c8 ___ pld-cvs-commit mailing list pld-cvs-commit@lists.pld-linux.org http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit
PLD-doc: PLD-update-TODO - updated
Author: arekmDate: Thu Oct 12 11:15:22 2023 GMT Module: PLD-doc Tag: HEAD Log message: - updated Files affected: PLD-doc: PLD-update-TODO (1.2880 -> 1.2881) Diffs: Index: PLD-doc/PLD-update-TODO diff -u PLD-doc/PLD-update-TODO:1.2880 PLD-doc/PLD-update-TODO:1.2881 --- PLD-doc/PLD-update-TODO:1.2880 Mon Oct 9 14:05:59 2023 +++ PLD-doc/PLD-update-TODO Thu Oct 12 13:15:16 2023 @@ -1,4 +1,4 @@ -0ad(14) [OLD] r10803 [NEW] r09786-alpha-unix-build +0ad(14) [OLD] r10803 [NEW] r09530-alpha-unix-build 3store(12) [OLD] 2.2.22 [NEW] 3.0.7 4pane [OLD] 0.8.0 [NEW] 8.0 6tunnel [OLD] 0.11 [NEW] 0.13 @@ -23,7 +23,7 @@ GxPlugins.lv2(7) [OLD] 0.7 [NEW] 0.9 HdrHistogram_c [OLD] 0.9.13 [NEW] 0.11.8 IRRToolSet(8) [OLD] 4.8.5 [NEW] 5.0.1 -ImageMagick [OLD] 7.1.1 [NEW] 7.1.1-19 +ImageMagick [OLD] 7.1.1 [NEW] 7.1.1-20 LunarGLASS [OLD] 0 [NEW] Release MHonArc(8) [OLD] 2.6.18 [NEW] 2.6.19 Mesa-libXvMC(36) [OLD] 22.2.5 [NEW] 23.2.1 @@ -66,7 +66,7 @@ adjtimex [OLD] 1.29 [NEW] 1.29.orig admesh [OLD] 0.98.2 [NEW] 0.98.5 adodblite(15) [OLD] 1.42 [NEW] 14 -advancecomp [OLD] 1.23 [NEW] 2.5 +advancecomp [OLD] 1.23 [NEW] 2.6 aegis(9) [OLD] 4.16 [NEW] 4.25.d510 aespipe(8) [OLD] 2.4c [NEW] 2.4f aften(8) [OLD] 0.0.8 [NEW] 0.07 @@ -98,7 +98,7 @@ apache-mod_qos(9) [OLD] 11.59 [NEW] 11.74 apache1-mod_limitipconn(9) [OLD] 0.04 [NEW] 0.24 apache1-mod_macro(10) [OLD] 1.1.2 [NEW] 1.2.1 -apache1-mod_roaming(23) [OLD] 1.0.2 [NEW] 2.0b1 +apache1-mod_roaming(23) [OLD] 1.0.2 [NEW] 2.0.0 apfs-fuse [OLD] 0 [NEW] fuse apfsprogs [OLD] 0 [NEW] Release apk-tools [OLD] 2.10.5 [NEW] 2.14.0 @@ -112,7 +112,7 @@ aqsis(8) [OLD] 1.2.0 [NEW] 1.8.2 arabica [OLD] 2016_January [NEW] April archivemail(12) [OLD] 0.7.2 [NEW] 0.9.0 -ardour [OLD] 5.12.0 [NEW] 7.5 +ardour [OLD] 5.12.0 [NEW] 8.0 argus(17) [OLD] 3.0.0 [NEW] 3.0.8.2 armadillo(8) [OLD] 10.8.2 [NEW] 12.6.4 arping [OLD] 2.21 [NEW] 2.23 @@ -169,8 +169,7 @@ bogofilter(14) [OLD] 1.2.4 [NEW] 1.2.5 bonnie++(10) [OLD] 1.96 [NEW] 2.00a botan(22) [OLD] 1.10.17 [NEW] 2.10.0 -botan2(23) [OLD] 2.19.3 [NEW] 3.1.1 -bpython(11) [OLD] 0.9.7.1 [NEW] 0.24 +botan2(23) [OLD] 2.19.3 [NEW] 3.2.0 breakpad(8) [OLD] 0.1.4 [NEW] 94b6309aecaddfcf11672f6cfad9575d68ad3b40 brlcad(14) [OLD] 7.10.0 [NEW] 7.32.2 bttv(19) [OLD] 0.7.87 [NEW] 0.9.15 @@ -184,7 +183,6 @@ bzr-gtk(14) [OLD] 0.99.1 [NEW] 0.103.0 bzr-svn(8) [OLD] 1.0.4 [NEW] 1.2.3 c-algorithms(12) [OLD] 1.0.0 [NEW] 1.2.0 -c-ares(9) [OLD] 1.19.1 [NEW] 1.20.0 c-icap(7) [OLD] 0.5.5 [NEW] 220505 c-icap-modules(15) [OLD] 0.5.5 [NEW] 0.5.6 cacao(8) [OLD] 0.98 [NEW] 1.6.2 @@ -214,9 +212,9 @@ cheops-ng(8) [OLD] 0.1.12 [NEW] 0.2.3 childsplay(8) [OLD] 1.6 [NEW] 3.4 choparp [OLD] 0 [NEW] release/20150613 -chromium-browser [OLD] 50.0.2661.102 [NEW] 117.0.5938.149 +chromium-browser [OLD] 50.0.2661.102 [NEW] 118.0.5993.70 chromium-bsu(8) [OLD] 0.9.15 [NEW] 0.9.16.1 -chuck(9) [OLD] 1.1.5.6 [NEW] 1.5.1.3 +chuck(9) [OLD] 1.1.5.6 [NEW] 1.5.1.5 cinelerra(22) [OLD] 4.4 [NEW] 4-src cinnamon-nemo-extensions [OLD] 5.8.0 [NEW] 5.8.2 cinnamon-settings-daemon [OLD] 5.8.1 [NEW] 5.8.2 @@ -272,7 +270,7 @@ crossm68k-uClibc(16) [OLD] 0.9.27 [NEW] 0.9.33.2 crossmingw32-allegro(9) [OLD] 4.3.1 [NEW] 5.1.11 crossmingw32-cairomm(9) [OLD] 1.14.4 [NEW] 1.18.0 -crossmingw32-gcc(25) [OLD] 10.4.0 [NEW] 13.2.0 +crossmingw32-gcc(25) [OLD] 10.5.0 [NEW] 13.2.0 crossmingw32-jasper [OLD] 3.0.6 [NEW] 4.0.0 crossmingw32-libtiff(10) [OLD] 4.4.0 [NEW] 4.6.0 crossmingw32-lua40(9) [OLD] 4.0.1 [NEW] 5.4.6 @@ -280,7 +278,7 @@ crossmingw32-pango(10) [OLD] 1.50.11 [NEW] 1.50.14 crossmingw32-pthreads-w32(8) [OLD] 2.11.0 [NEW] 3.0.0 crossmingw32-std-threads [OLD] 0 [NEW] Adopted -crossmingw64-gcc(17) [OLD] 10.4.0 [NEW] 13.2.0 +crossmingw64-gcc(17) [OLD] 10.5.0 [NEW] 13.2.0 crossmipsel-egcs(10) [OLD] 1.0.2 [NEW] 1.1.2 crossmipsel-gcc(13) [OLD] 3.4.6 [NEW] 13.2.0 crossmipsel-uClibc(12) [OLD] 0.9.28 [NEW] 0.9.33.2 @@ -295,7 +293,7 @@ crossx8664-binutils(12) [OLD] 2.26.1 [NEW] 2.41 crossx8664-gcc(13) [OLD] 4.0.2 [NEW] 13.2.0 crossz80-binutils(12) [OLD] 2.23.1 [NEW] 2.41 -crystal [OLD] 0.27.2 [NEW] 1.9.2 +crystal [OLD] 0.27.2 [NEW] 1.10.0 cscope(8) [OLD] 15.6 [NEW] 15.9 cstream(8) [OLD] 3.1.1 [NEW] 4.0.0 csv2trainschedpdb(8) [OLD] 0.3 [NEW] 1.0 @@ -323,7 +321,7 @@ debbuild [OLD] 16.6.0 [NEW] 20.04.0 debhelper [OLD] 9.20160814 [NEW] 13.11.6 debiandoc-sgml(8) [OLD] 1.2.31 [NEW] 1.2.32 -debianutils(8) [OLD] 4.8 [NEW] 5.13 +debianutils(8) [OLD] 4.8 [NEW] 5.14 debootstrap(10) [OLD] 1.0.90 [NEW] 1.0.132 deja-dup(8) [OLD] 34.3 [NEW] 38.3 dejagnu(9) [OLD] 1.4.4 [NEW] 1.6.3 @@ -332,7 +330,7 @@ detect [OLD] 0.9.72 [NEW] 2020.12.3 detox(10) [OLD] 1.2.0 [NEW] 1.4.5 devilspie(8) [OLD] 0.22 [NEW] 0.23 -devilspie2(7) [OLD] 0.43 [NEW] 0.43 +devilspie2(7) [OLD] 0.43 [NEW] 0.44-src devscripts [OLD] 2.18.6 [NEW] 2.23.6 dhcp-helper(8) [OLD] 0.8 [NEW] 1.2 dhcp