[vdr-markad] Update to 3.6.3
by Martin Gansser
commit 7af43991c83c07f9736226a858fdd9d0db465b99
Author: Martin Gansser <mgansser(a)online.de>
Date: Sat May 11 14:12:47 2024 +0200
Update to 3.6.3
.gitignore | 1 +
sources | 2 +-
vdr-markad.spec | 5 ++++-
3 files changed, 6 insertions(+), 2 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 128b2f0..6842a2e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -90,3 +90,4 @@ vdr-plugin-markad-74e2a8c5382fa8bfacd12274899112724a1e0d51.tar.bz2
/vdr-markad-3.5.3.tar.gz
/vdr-markad-3.6.0.tar.gz
/vdr-markad-3.6.1.tar.gz
+/vdr-markad-3.6.3.tar.gz
diff --git a/sources b/sources
index 6a8db65..ea04743 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (vdr-markad-3.6.1.tar.gz) = 594ce81f659484da54ca31da48e14f3c917b56d8a9d6304a32abc0a6cb69bfe366a1b36cb8015ad0edd20660f7f8cf3874826f3e6d752b710f35bf84511daf5c
+SHA512 (vdr-markad-3.6.3.tar.gz) = cd789e27557fe9a447e4477f1eacbb61079540ae95189bc912a5eaf808a5988529de389724181cf302290b342042e1c9728dabb9f7f8d35a9cf7f2370963adc5
diff --git a/vdr-markad.spec b/vdr-markad.spec
index f8594a3..d05761f 100644
--- a/vdr-markad.spec
+++ b/vdr-markad.spec
@@ -5,7 +5,7 @@
%endif
Name: vdr-markad
-Version: 3.6.1
+Version: 3.6.3
Release: 1%{?dist}
Summary: Advanced commercial detection for VDR
License: GPLv2+
@@ -72,6 +72,9 @@ fi
%doc html
%changelog
+* Sat May 11 2024 Martin Gansser <martinkg(a)fedoraproject.org> - 3.6.3-1
+- Update to 3.6.3
+
* Thu May 02 2024 Martin Gansser <martinkg(a)fedoraproject.org> - 3.6.1-1
- Update to 3.6.1
6 months, 2 weeks
[nvidia-open-kmod] Default enable nvidia modeset and fbdev
by Leigh Scott
commit 118af0a2d09d9549e5131ba6045d8b58efe606b3
Author: Leigh Scott <leigh123linux(a)gmail.com>
Date: Sat May 11 13:12:20 2024 +0100
Default enable nvidia modeset and fbdev
make_modeset_default.patch | 32 ++++++++++++++++++++++++++++++++
nvidia-open-kmod.spec | 8 +++++++-
2 files changed, 39 insertions(+), 1 deletion(-)
---
diff --git a/make_modeset_default.patch b/make_modeset_default.patch
new file mode 100644
index 0000000..bdf8a6b
--- /dev/null
+++ b/make_modeset_default.patch
@@ -0,0 +1,32 @@
+--- a/kernel-open/nvidia-drm/nvidia-drm-linux.c
++++ b/kernel-open/nvidia-drm/nvidia-drm-linux.c
+@@ -31,13 +31,13 @@
+
+ MODULE_PARM_DESC(
+ modeset,
+- "Enable atomic kernel modesetting (1 = enable, 0 = disable (default))");
++ "Enable atomic kernel modesetting (1 = enable (default), 0 = disable)");
+ module_param_named(modeset, nv_drm_modeset_module_param, bool, 0400);
+
+ #if defined(NV_DRM_FBDEV_GENERIC_AVAILABLE)
+ MODULE_PARM_DESC(
+ fbdev,
+- "Create a framebuffer device (1 = enable, 0 = disable (default)) (EXPERIMENTAL)");
++ "Create a framebuffer device (1 = enable (default), 0 = disable) (EXPERIMENTAL)");
+ module_param_named(fbdev, nv_drm_fbdev_module_param, bool, 0400);
+ #endif
+
+--- a/kernel-open/nvidia-drm/nvidia-drm-os-interface.c
++++ b/kernel-open/nvidia-drm/nvidia-drm-os-interface.c
+@@ -41,8 +41,8 @@
+ #include <drm/drmP.h>
+ #endif
+
+-bool nv_drm_modeset_module_param = false;
+-bool nv_drm_fbdev_module_param = false;
++bool nv_drm_modeset_module_param = true;
++bool nv_drm_fbdev_module_param = true;
+
+ void *nv_drm_calloc(size_t nmemb, size_t size)
+ {
+
diff --git a/nvidia-open-kmod.spec b/nvidia-open-kmod.spec
index f4f0e6b..95a05c0 100644
--- a/nvidia-open-kmod.spec
+++ b/nvidia-open-kmod.spec
@@ -12,13 +12,14 @@ Name: nvidia-open-kmod
Epoch: 3
Version: 550.78
# Taken over by kmodtool
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: NVIDIA open display driver kernel module
License: GPLv2 and MIT
URL: https://github.com/NVIDIA/open-gpu-kernel-modules
Source0: %{url}/archive/%{version}/open-gpu-kernel-modules-%{version}.tar.gz
Source11: nvidia-open-kmodtool-excludekernel-filterfile
+Patch0: make_modeset_default.patch
ExclusiveArch: x86_64 aarch64
@@ -39,7 +40,9 @@ The nvidia open %{version} display driver kernel module for kernel %{kversion}.
# print kmodtool output for debugging purposes:
kmodtool --target %{_target_cpu} --repo rpmfusion --kmodname %{name} --filterfile %{SOURCE11} %{?buildforkernels:--%{buildforkernels}} %{?kernels:--for-kernels "%{?kernels}"} 2>/dev/null
%setup -q -c
+ls
# patch loop
+%patch 0 -p1 -d open-gpu-kernel-modules-%{version}
%if 0%{?_without_nvidia_kmod_patches:1}
# placeholder
%endif
@@ -77,6 +80,9 @@ done
%changelog
+* Sat May 11 2024 Leigh Scott <leigh123linux(a)gmail.com> - 3:550.78-2
+- Default enable nvidia modeset and fbdev
+
* Fri Apr 26 2024 Leigh Scott <leigh123linux(a)gmail.com> - 3:550.78-1
- Update to 550.78 release
6 months, 2 weeks
[mesa-freeworld/f40] Update to 24.0.7
by Thorsten Leemhuis
commit dc7f155996dc1ec99ec122b04c10a60e71d44745
Author: Thorsten Leemhuis <linux(a)leemhuis.info>
Date: Fri May 10 17:07:31 2024 +0200
Update to 24.0.7
Signed-off-by: Thorsten Leemhuis <linux(a)leemhuis.info>
.gitignore | 1 +
mesa-freeworld.spec | 5 ++++-
sources | 2 +-
3 files changed, 6 insertions(+), 2 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 4f0737c..1eaf5c6 100644
--- a/.gitignore
+++ b/.gitignore
@@ -33,3 +33,4 @@
/mesa-24.0.4.tar.xz
/mesa-24.0.5.tar.xz
/mesa-24.0.6.tar.xz
+/mesa-24.0.7.tar.xz
diff --git a/mesa-freeworld.spec b/mesa-freeworld.spec
index 0bc9d4b..31353de 100644
--- a/mesa-freeworld.spec
+++ b/mesa-freeworld.spec
@@ -65,7 +65,7 @@ algorithms and decoding only VC1 algorithm.
Name: %{srcname}-freeworld
Summary: Mesa graphics libraries
-%global ver 24.0.6
+%global ver 24.0.7
Version: %{lua:ver = string.gsub(rpm.expand("%{ver}"), "-", "~"); print(ver)}
Release: 1%{?dist}
License: MIT
@@ -325,6 +325,9 @@ rm -fr %{buildroot}%{_libdir}/libVkLayer_MESA_device_select.so
%endif
%changelog
+* Fri May 10 2024 Thorsten Leemhuis <fedora(a)leemhuis.info> - 24.0.7-1
+- Update to 24.0.7
+
* Thu Apr 25 2024 Thorsten Leemhuis <fedora(a)leemhuis.info> - 24.0.6-1
- Update to 24.0.6
diff --git a/sources b/sources
index dff10db..78e7041 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (mesa-24.0.6.tar.xz) = 60fcc77132c3cb0c98e650d97d3324bfd18abe7f8f8a3aa5209f71b2fddd94510f939bbf5272b2241749307184d5badde9da4842be57ce13f5760875885ea6fc
+SHA512 (mesa-24.0.7.tar.xz) = 77b0fae80ab0a07e2e528c113eadef0e3004b8df3e6e98fffe6fc2d8ac39f5ce7fa38ebe5c2ae32bfbac993dd7cbe288ace18ebb03cf2fb445fe7114f74dd45c
6 months, 2 weeks
[zerotier-one] drop unused dep
by Leigh Scott
commit ba50063dbf504384376f210cca88e6d7539f84ef
Author: Leigh Scott <leigh123linux(a)gmail.com>
Date: Fri May 10 14:43:15 2024 +0100
drop unused dep
zerotier-one.spec | 1 -
1 file changed, 1 deletion(-)
---
diff --git a/zerotier-one.spec b/zerotier-one.spec
index e9b6842..4f5a106 100644
--- a/zerotier-one.spec
+++ b/zerotier-one.spec
@@ -49,7 +49,6 @@ Source2: zerotier-one-sysusers
BuildRequires: cargo
BuildRequires: clang
BuildRequires: openssl-devel openssl
-BuildRequires: protobuf-devel
BuildRequires: systemd-rpm-macros
Provides: bundled(http-parser)
6 months, 2 weeks
[zerotier-one] drop patch
by Leigh Scott
commit e9cb2251c9046870215e6001b09e019b935f685d
Author: Leigh Scott <leigh123linux(a)gmail.com>
Date: Fri May 10 00:56:50 2024 +0100
drop patch
zerotier-use-vendor-archive.patch | 26 --------------------------
1 file changed, 26 deletions(-)
6 months, 3 weeks
[zerotier-one] Update to 1.14.0
by Leigh Scott
commit 8baccb3b2b71d4445525cc886c0211c9a92124dc
Author: Leigh Scott <leigh123linux(a)gmail.com>
Date: Fri May 10 00:55:10 2024 +0100
Update to 1.14.0
sources | 4 ++--
zerotier-one.spec | 28 ++++++++++------------------
zerotier-use-vendor-archive.patch | 29 +++++++++++++++++++----------
3 files changed, 31 insertions(+), 30 deletions(-)
---
diff --git a/sources b/sources
index 8e117ce..ac912a7 100644
--- a/sources
+++ b/sources
@@ -1,2 +1,2 @@
-SHA512 (zerotier-one-1.12.2.tar.gz) = 75a698dc3755f18a9a8909a231f6d9667edfeb3140e3e4925ebe2e01d2172bd1ac8d1498439e0e9959343a4258bc7f3862d8e6a6eb4f03ebc77e02ef7c074e73
-SHA512 (vendor-1.12.2.tar.xz) = 359d86b532d1fb25edbf9a6d0a58f56b15c10aa0ea5c9f2d17b1f093cec87a07092fb92321bb0ed967011415d161e458117511e4c7f4f83e5d718253c8a91618
+SHA512 (vendor-1.14.0.tar.xz) = eb642a08dcc8e5b38b4ca5815dd3c745c381b72dde1a3a363295ca69035938740db15ebe639874d568b6651d6b2a89e912cc0b624e19f41d5530f1567c4686da
+SHA512 (zerotier-one-1.14.0.tar.gz) = ba268dd9773a07c0b0e2346a6316b69b3ba4c346bb3d36b20f0a491591f711d5ac40383c03b72c39b523c087348956deadde51406dd996c1418e12d996a25f7d
diff --git a/zerotier-one.spec b/zerotier-one.spec
index 4928279..e9b6842 100644
--- a/zerotier-one.spec
+++ b/zerotier-one.spec
@@ -5,8 +5,8 @@
%endif
Name: zerotier-one
-Version: 1.12.2
-Release: 3%{?dist}
+Version: 1.14.0
+Release: 1%{?dist}
Summary: Smart Ethernet Switch for Earth
# Boost: README.md
@@ -41,16 +41,15 @@ Summary: Smart Ethernet Switch for Earth
License: BSL and Boost and ASL and ASL 2.0 and MIT
URL: https://zerotier.com
Source0: https://github.com/zerotier/ZeroTierOne/archive/%{version}/%{name}-%{vers...
-# make with command: 'cd zeroidc && cargo vendor' and tar.xz vendor directory
+# make with command: 'cd rustybits and mkdir .cargo
+# cargo vendor > .cargo/config.toml' and tar cvf vendor-%{version}.tar.xz vendor/ .cargo/
Source1: vendor-%{version}.tar.xz
Source2: zerotier-one-sysusers
-# for use vendor directory for build
-Patch0: zerotier-use-vendor-archive.patch
-
BuildRequires: cargo
BuildRequires: clang
BuildRequires: openssl-devel openssl
+BuildRequires: protobuf-devel
BuildRequires: systemd-rpm-macros
Provides: bundled(http-parser)
@@ -83,19 +82,9 @@ the original Google BeyondCorp paper and the Jericho Forum with its notion of
%prep
-%autosetup -p 1 -n ZeroTierOne-%{version}
-
-## Unbundling (maybe for future, depends on upstream)
-# rm -rf ext/http-parser
-# rm -rf ext/json
-
-sed \
- -e 's/RUSTFLAGS=/RUSTFLAGS?=/' \
- -e 's/cargo build $(RUSTFLAGS)/cargo build --release/' \
- -i make-linux.mk
+%autosetup -p1 -n ZeroTierOne-%{version}
-
-pushd zeroidc
+pushd rustybits
tar -xf %{SOURCE1}
popd
@@ -135,6 +124,9 @@ install -D -m0644 %{SOURCE2} %{buildroot}%{_sysusersdir}/%{name}.conf
%changelog
+* Thu May 09 2024 Leigh Scott <leigh123linux(a)gmail.com> - 1.14.0-1
+- Update to 1.14.0
+
* Sun Apr 07 2024 Leigh Scott <leigh123linux(a)gmail.com> - 1.12.2-3
- Rebuild against standard openssl
diff --git a/zerotier-use-vendor-archive.patch b/zerotier-use-vendor-archive.patch
index ae2794d..734aeec 100644
--- a/zerotier-use-vendor-archive.patch
+++ b/zerotier-use-vendor-archive.patch
@@ -1,17 +1,26 @@
---- a/zeroidc/.cargo/config.toml
-+++ b/zeroidc/.cargo/config.toml
-@@ -9,3 +9,14 @@ rustflags = ["-C", "target-feature=+crt-
-
- [target.i686-pc-windows-msvc]
- rustflags = ["-C", "target-feature=+crt-static"]
-+
+--- a/rustybits/zeroidc/.cargo/config.toml
++++ b/rustybits/zeroidc/.cargo/config.toml
+@@ -1,11 +1,14 @@
+-[target.x86_64-apple-darwin]
+-rustflags=["-C", "link-arg=-mmacosx-version-min=10.13"]
+[source.crates-io]
+replace-with = "vendored-sources"
-+
+
+-[target.aarch64-apple-darwin]
+-rustflags=["-C", "link-arg=-mmacosx-version-min=10.13"]
+[source."git+https://github.com/glimberg/rust-jwt"]
+git = "https://github.com/glimberg/rust-jwt"
+replace-with = "vendored-sources"
-+
+
+-[target.x86_64-pc-windows-msvc]
+-rustflags = ["-C", "target-feature=+crt-static"]
++[source."git+https://github.com/temporalio/sdk-core?branch=master"]
++git = "https://github.com/temporalio/sdk-core"
++branch = "master"
++replace-with = "vendored-sources"
+
+-[target.i686-pc-windows-msvc]
+-rustflags = ["-C", "target-feature=+crt-static"]
+[source.vendored-sources]
+directory = "vendor"
-+
+
6 months, 3 weeks
[qmplay2] Moved to fedora, it's a shame no one told us!
by Leigh Scott
commit 3945ce3e1fcde079a28016a34daded612fc1a1fc
Author: Leigh Scott <leigh123linux(a)gmail.com>
Date: Thu May 9 16:40:00 2024 +0100
Moved to fedora, it's a shame no one told us!
.gitignore | 49 -------
dead.package | 1 +
qmplay2.spec | 413 -----------------------------------------------------------
sources | 1 -
4 files changed, 1 insertion(+), 463 deletions(-)
---
diff --git a/dead.package b/dead.package
new file mode 100644
index 0000000..50b4c0c
--- /dev/null
+++ b/dead.package
@@ -0,0 +1 @@
+Moved to fedora, it's a shame no one told us!
6 months, 3 weeks