public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Mamoru TASAKA <mtasaka@fedoraproject.org>
To: git-commits@fedoraproject.org
Subject: [rpms/xscreensaver] rawhide: Update to 6.16
Date: Fri, 04 Sep 2026 03:16:51 GMT [thread overview]
Message-ID: <178849181151.1.13528832010387147289.rpms-xscreensaver-b40027f806f9@fedoraproject.org> (raw)
A new commit has been pushed.
Repo : rpms/xscreensaver
Branch : rawhide
Commit : b40027f806f905ce57abe019cfa76c4fb924f16b
Author : Mamoru TASAKA <mtasaka@fedoraproject.org>
Date : 2026-09-04T12:16:40+09:00
Stats : +48/-5 in 3 file(s)
URL : https://src.fedoraproject.org/rpms/xscreensaver/c/b40027f806f905ce57abe019cfa76c4fb924f16b?branch=rawhide
Log:
Update to 6.16
---
diff --git a/sources b/sources
index 363de68..ea4cea6 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (xscreensaver-6.15.tar.gz) = 0f7284ad0cf3be7c5f9aafa9b5a37795d1dd358d47fe9bb69dca916e767be5e00308a9fcc7f2057391f48921fde30142a4d5c92ef1bd67428e8f927de4a50d8c
+SHA512 (xscreensaver-6.16.tar.gz) = 537f0c77b2ae88ecd73619e5bb6d883680090070ebb2b1c3efa113cec8a85ad487f03367ab135c590d3ef31076262882fc40efba1a337fd96121291c895e66f3
diff --git a/xscreensaver-6.16-0001-Fix-graphstat-dependency-source-dir-in-Makefile.patch b/xscreensaver-6.16-0001-Fix-graphstat-dependency-source-dir-in-Makefile.patch
new file mode 100644
index 0000000..4083fab
--- /dev/null
+++ b/xscreensaver-6.16-0001-Fix-graphstat-dependency-source-dir-in-Makefile.patch
@@ -0,0 +1,34 @@
+From 2c8a81b6ea60b6052f7643d8aa32df42d19df2c6 Mon Sep 17 00:00:00 2001
+From: Mamoru TASAKA <mtasaka@fedoraproject.org>
+Date: Fri, 4 Sep 2026 11:31:48 +0900
+Subject: [PATCH] Fix graphstat dependency source dir in Makefile
+
+---
+ hacks/glx/Makefile.in | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/hacks/glx/Makefile.in b/hacks/glx/Makefile.in
+index 2f9a5a4..843b2e6 100644
+--- a/hacks/glx/Makefile.in
++++ b/hacks/glx/Makefile.in
+@@ -1286,7 +1286,7 @@ FLOPPY=floppy.o floppy_model.o gllist.o $(EASE) $(HACK_TRACK_OBJS)
+ floppy: $(FLOPPY)
+ $(CC_HACK) -o $@ $(FLOPPY) $(HACK_LIBS)
+
+-graphstat.h: graphstat.txt
++graphstat.h: $(srcdir)/graphstat.txt
+ $(UTILS_SRC)/bin2c $< $@
+ graphstat.o: graphstat.h
+ graphstat: graphstat.o $(HACK_OBJS)
+@@ -3298,7 +3298,7 @@ grab-ximage.o: $(UTILS_SRC)/yarandom.h
+ grab-ximage.o: $(HACK_SRC)/xlockmoreI.h
+ graphstat.o: ../../config.h
+ graphstat.o: $(HACK_SRC)/fps.h
+-graphstat.o: $(srcdir)/graphstat.h
++graphstat.o: graphstat.h
+ graphstat.o: $(HACK_SRC)/recanim.h
+ graphstat.o: $(HACK_SRC)/screenhackI.h
+ graphstat.o: $(srcdir)/texfont.h
+--
+2.55.0
+
diff --git a/xscreensaver.spec b/xscreensaver.spec
index 0b85cb5..2c996d0 100644
--- a/xscreensaver.spec
+++ b/xscreensaver.spec
@@ -1,6 +1,6 @@
%define name xscreensaver
-%define mainversion 6.15
+%define mainversion 6.16
%dnl %define extratarver 1
%dnl %define beta_ver b2
@@ -11,12 +11,12 @@
%define split_getimage 1
%endif
-%define baserelease 3
+%define baserelease 1
%global use_clang_as_cc 0
%global use_clang_analyze 0
%global use_cppcheck 0
-%global use_gcc_strict_sanitize 0
+%global use_gcc_strict_sanitize 1
%global use_gcc_trap_on_sanitize 0
%global use_gcc_analyzer 0
@@ -104,6 +104,8 @@ Patch21: xscreensaver-6.06-webcollage-default-nonet.patch
Patch4701: xscreensaver-6.07-0001-make_ximage-avoid-integer-overflow-on-left-shift.patch
# convert_ximage_to_rgba32: avoid integer overflow on left shift
Patch4702: xscreensaver-6.07-0002-convert_ximage_to_rgba32-avoid-integer-overflow-on-l.patch
+# Fix graphstat dependency source dir in Makefile
+Patch5701: xscreensaver-6.16-0001-Fix-graphstat-dependency-source-dir-in-Makefile.patch
# Fedora specific
# window_init: search parenthesis first for searching year
Patch10001: xscreensaver-6.00-0001-screensaver_id-search-parenthesis-first-for-searchin.patch
@@ -414,6 +416,7 @@ done
%__cat %PATCH4701 | %__git am
%__cat %PATCH4702 | %__git am
+%__cat %PATCH5701 | %__git am
%__cat %PATCH10001 | %__git am
%__cat %PATCH10003 | %__git am
@@ -956,7 +959,10 @@ ln -sf ../../../..%{_sysconfdir}/xscreensaver/XScreenSaver.ad \
# Add documents
pushd $dd &> /dev/null
-for f in README* ; do
+for f in \
+ AGENTS.md \
+ README* \
+ ; do
echo "%%doc $f" >> $dd/base.files
done
popd
@@ -1210,6 +1216,9 @@ exit 0
%endif
%changelog
+* Fri Sep 04 2026 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1:6.16-1
+- Update to 6.16
+
* Thu Sep 03 2026 Dominik Mierzejewski <dominik@greysector.net> - 1:6.15-3
- Rebuilt for FFmpeg 9
reply other threads:[~2026-09-04 3:16 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=178849181151.1.13528832010387147289.rpms-xscreensaver-b40027f806f9@fedoraproject.org \
--to=mtasaka@fedoraproject.org \
--cc=git-commits@fedoraproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox