public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Neal Gompa <ngompa@fedoraproject.org>
To: git-commits@fedoraproject.org
Subject: [rpms/wayland] f43: Update to 1.25.0
Date: Sun, 07 Jun 2026 19:39:26 GMT [thread overview]
Message-ID: <178086116615.1.16865262491009181195.rpms-wayland-bd520c4a9428@fedoraproject.org> (raw)
A new commit has been pushed.
Repo : rpms/wayland
Branch : f43
Commit : bd520c4a9428d06dc580a81d33a4abe15430d4be
Author : Neal Gompa <ngompa@fedoraproject.org>
Date : 2026-06-07T15:38:14-04:00
Stats : +64/-37 in 3 file(s)
URL : https://src.fedoraproject.org/rpms/wayland/c/bd520c4a9428d06dc580a81d33a4abe15430d4be?branch=f43
Log:
Update to 1.25.0
- Modernize spec
---
diff --git a/.gitignore b/.gitignore
index 2f1df9b..371ff61 100644
--- a/.gitignore
+++ b/.gitignore
@@ -68,3 +68,5 @@
/wayland-1.23.1.tar.xz.sig
/wayland-1.24.0.tar.xz
/wayland-1.24.0.tar.xz.sig
+/wayland-1.25.0.tar.xz
+/wayland-1.25.0.tar.xz.sig
diff --git a/sources b/sources
index c8fad35..df5e00c 100644
--- a/sources
+++ b/sources
@@ -1,2 +1,2 @@
-SHA512 (wayland-1.24.0.tar.xz) = 60216602cffd1473ae15381f9e9a6f3829e742cac83843ca65360ba78bcff8d9442f15eb6a6d5d29c8f74dd920762ca1605f51658d22a1d3c18e338505b9f974
-SHA512 (wayland-1.24.0.tar.xz.sig) = 7a237c1b4b4a5b10c8b1fbe5d4c2ba92452a2a1c9ba1a5c5077d320a30e7026dcf7e1956476d43dcd0465f8a95c812addf33667ebb75da150354f2b4fd8ac1fd
+SHA512 (wayland-1.25.0.tar.xz) = 20ae71ecc8b6d61b3e111171260911469cc7c3470048629db28eb4115415124e5a9392e1d9be84adb324cf1a29e557ae8e033e17c51fbab2fc80d9c6b9aad82c
+SHA512 (wayland-1.25.0.tar.xz.sig) = 60c44ece374220a04a1780f909f9ddb8075272b83492078770e82ef89eb65e0e512ce7cbe1458bf1ef22b4ef6729084ca1bd03ea590cda0e337c8fcd4de5ff6b
diff --git a/wayland.spec b/wayland.spec
index 8a109f4..e678f3a 100644
--- a/wayland.spec
+++ b/wayland.spec
@@ -1,6 +1,6 @@
Name: wayland
-Version: 1.24.0
-Release: 3%{?dist}
+Version: 1.25.0
+Release: 1%{?dist}
Summary: Wayland Compositor Infrastructure
# SPDX
@@ -32,6 +32,8 @@ display server running on Linux kernel modesetting and evdev input devices,
an X application, or a wayland client itself. The clients can be traditional
applications, X servers (rootless or fullscreen) or other display servers.
+%dnl ------------------------------------------------------------------------
+
%package devel
Summary: Development files for %{name}
Requires: libwayland-client%{?_isa} = %{version}-%{release}
@@ -44,39 +46,90 @@ Requires: pkgconfig(libffi)
The %{name}-devel package contains libraries and header files for
developing applications that use %{name}.
+%files devel
+%{_bindir}/wayland-scanner
+%{_includedir}/wayland-*.h
+%{_libdir}/pkgconfig/wayland-*.pc
+%{_libdir}/libwayland-*.so
+%{_datadir}/aclocal/wayland-scanner.m4
+%dir %{_datadir}/wayland
+%{_datadir}/wayland/wayland-scanner.mk
+%{_datadir}/wayland/wayland.xml
+%{_datadir}/wayland/wayland.dtd
+%{_mandir}/man3/*.3*
+
+%dnl ------------------------------------------------------------------------
+
%package doc
Summary: Wayland development documentation
BuildArch: noarch
+
%description doc
Wayland development documentation
+%files doc
+%doc README.md
+%{_datadir}/doc/wayland/
+
+%dnl ------------------------------------------------------------------------
+
%package -n libwayland-client
Summary: Wayland client library
+
%description -n libwayland-client
Wayland client library
+%files -n libwayland-client
+%license COPYING
+%{_libdir}/libwayland-client.so.0*
+
+%dnl ------------------------------------------------------------------------
+
%package -n libwayland-cursor
Summary: Wayland cursor library
Requires: libwayland-client%{?_isa} = %{version}-%{release}
+
%description -n libwayland-cursor
Wayland cursor library
+%files -n libwayland-cursor
+%license COPYING
+%{_libdir}/libwayland-cursor.so.0*
+
+%dnl ------------------------------------------------------------------------
+
%package -n libwayland-egl
Summary: Wayland egl library
+
%description -n libwayland-egl
Wayland egl library
+%files -n libwayland-egl
+%license COPYING
+%{_libdir}/libwayland-egl.so.1*
+
+%dnl ------------------------------------------------------------------------
+
%package -n libwayland-server
Summary: Wayland server library
+
%description -n libwayland-server
Wayland server library
+%files -n libwayland-server
+%license COPYING
+%{_libdir}/libwayland-server.so.0*
+
+%dnl ------------------------------------------------------------------------
+
%prep
%{gpgverify} --keyring='%{SOURCE2}' --signature='%{SOURCE1}' --data='%{SOURCE0}'
%autosetup -p1
-%build
+%conf
%meson
+
+%build
%meson_build
%install
@@ -85,39 +138,11 @@ Wayland server library
%check
%meson_test
-%files devel
-%{_bindir}/wayland-scanner
-%{_includedir}/wayland-*.h
-%{_libdir}/pkgconfig/wayland-*.pc
-%{_libdir}/libwayland-*.so
-%{_datadir}/aclocal/wayland-scanner.m4
-%dir %{_datadir}/wayland
-%{_datadir}/wayland/wayland-scanner.mk
-%{_datadir}/wayland/wayland.xml
-%{_datadir}/wayland/wayland.dtd
-%{_mandir}/man3/*.3*
-
-%files doc
-%doc README.md
-%{_datadir}/doc/wayland/
-
-%files -n libwayland-client
-%license COPYING
-%{_libdir}/libwayland-client.so.0*
-
-%files -n libwayland-cursor
-%license COPYING
-%{_libdir}/libwayland-cursor.so.0*
-
-%files -n libwayland-egl
-%license COPYING
-%{_libdir}/libwayland-egl.so.1*
-
-%files -n libwayland-server
-%license COPYING
-%{_libdir}/libwayland-server.so.0*
-
%changelog
+* Sun Jun 07 2026 Neal Gompa <ngompa@fedoraproject.org> - 1.25.0-1
+- Update to 1.25.0
+- Modernize spec
+
* Sat Jan 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 1.24.0-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
reply other threads:[~2026-06-07 19:39 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=178086116615.1.16865262491009181195.rpms-wayland-bd520c4a9428@fedoraproject.org \
--to=ngompa@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