public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Milan Crha <mcrha@redhat.com>
To: git-commits@fedoraproject.org
Subject: [rpms/libadwaita] rawhide: Update to 1.10.alpha.1
Date: Thu, 09 Jul 2026 10:15:05 GMT	[thread overview]
Message-ID: <178359210540.1.6938932771463685751.rpms-libadwaita-0678e03deaca@fedoraproject.org> (raw)

A new commit has been pushed.

Repo   : rpms/libadwaita
Branch : rawhide
Commit : 0678e03deacabf5afc624e57bcf146a9c14866ef
Author : Milan Crha <mcrha@redhat.com>
Date   : 2026-07-09T12:13:31+02:00
Stats  : +66/-2 in 4 file(s)
URL    : https://src.fedoraproject.org/rpms/libadwaita/c/0678e03deacabf5afc624e57bcf146a9c14866ef?branch=rawhide

Log:
Update to 1.10.alpha.1

---
diff --git a/.gitignore b/.gitignore
index 082c69f..34d82a9 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
 /libadwaita-*.tar.xz
+/libadwaita-*-build

diff --git a/0001-ministream-do-not-install.patch b/0001-ministream-do-not-install.patch
new file mode 100644
index 0000000..b624afe
--- /dev/null
+++ b/0001-ministream-do-not-install.patch
@@ -0,0 +1,59 @@
+diff --git a/subprojects/ministream/src/meson.build b/subprojects/ministream/src/meson.build
+index 22e9f42..f1141a5 100644
+--- a/subprojects/ministream/src/meson.build
++++ b/subprojects/ministream/src/meson.build
+@@ -32,7 +32,7 @@ ms_lib = library('ministream', ms_src,
+ 	dependencies: [ glib_dep, gobject_dep ],
+ 	version: meson.project_version(),
+ 	soversion: ms_so_ver,
+-	install: true
++	install: not meson.is_subproject()
+ )
+ 
+ ms_dep_sources = []
+@@ -46,11 +46,13 @@ if gi_scanner.found()
+ 		dependencies: [ glib_dep, gobject_dep ],
+ 		includes: [ 'GLib-2.0', 'GObject-2.0' ],
+ 		header: 'ministream.h',
+-		install: true
++		install: not meson.is_subproject()
+ 	)
+ endif
+ 
+-install_headers(ms_public_headers, subdir: 'ministream')
++if not meson.is_subproject()
++	install_headers(ms_public_headers, subdir: 'ministream')
++endif
+ 
+ ms_cflags = []
+ ms_ldflags_int = []
+@@ -69,17 +71,19 @@ ms_dep = declare_dependency(
+ 	sources: ms_dep_sources
+ )
+ 
+-import('pkgconfig').generate(
+-	name: 'ministream',
+-	version: meson.project_version(),
+-	filebase: 'ministream',
+-	description: 'Small appstream manifest parser',
+-	libraries: [ ms_dep ],
+-	subdirs: [ 'ministream' ],
+-	requires: [ 'glib-2.0', 'gobject-2.0' ]
+-)
++if not meson.is_subproject()
++	import('pkgconfig').generate(
++		name: 'ministream',
++		version: meson.project_version(),
++		filebase: 'ministream',
++		description: 'Small appstream manifest parser',
++		libraries: [ ms_dep ],
++		subdirs: [ 'ministream' ],
++		requires: [ 'glib-2.0', 'gobject-2.0' ]
++	)
++endif
+ 
+ meson.override_dependency('ministream', declare_dependency(
+ 	dependencies: ms_dep,
+-	link_args: ms_ldflags_int
++	link_args: meson.is_subproject() ? [] : ms_ldflags_int
+ ))

diff --git a/libadwaita.spec b/libadwaita.spec
index a96fe62..f5c0bb2 100644
--- a/libadwaita.spec
+++ b/libadwaita.spec
@@ -3,7 +3,7 @@
 %global glib_version 2.84.0
 
 Name:           libadwaita
-Version:        1.10~alpha
+Version:        1.10~alpha.1
 Release:        %autorelease
 Summary:        Building blocks for modern GNOME applications
 
@@ -14,6 +14,10 @@ Source0:        https://download.gnome.org/sources/%{name}/%{gnome_major_minor_v
 
 %gnome_check_version
 
+# https://gitlab.gnome.org/sp1rit/ministream/-/merge_requests/2
+# https://gitlab.gnome.org/GNOME/libadwaita/-/work_items/1146
+Patch:          0001-ministream-do-not-install.patch
+
 BuildRequires:  desktop-file-utils
 BuildRequires:  gcc
 BuildRequires:  gettext

diff --git a/sources b/sources
index 172f489..0a064a3 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (libadwaita-1.10.alpha.tar.xz) = 26660b69f369c82d7b0c69f7a591ea52c6d03f8290b19c435129328b74ca5562fff2e8dc843283442fc148f248963caa893bf837804f2a2040570f95deb5d237
+SHA512 (libadwaita-1.10.alpha.1.tar.xz) = 2e9c4eb5ec21d276475e5de8f84d4c952ccad03ed40f7a753a20338b6dce1c9b0deb5461daeb8bc0f21c253ecfe5d85b16310c35fe810adf9ed41cc21a9a07e3

                 reply	other threads:[~2026-07-09 10:15 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=178359210540.1.6938932771463685751.rpms-libadwaita-0678e03deaca@fedoraproject.org \
    --to=mcrha@redhat.com \
    --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