Your message dated Mon, 22 Sep 2025 13:06:23 +0000
with message-id <[email protected]>
and subject line Bug#1113928: fixed in xdg-desktop-portal-phosh 0.50~rc1-1
has caused the Debian Bug report #1113928,
regarding Upcoming gtk-rs 0.10 update
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
1113928: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1113928
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: xdg-desktop-portal-phosh
Version: 0.46.0-2
Severity: normal
Tags: patch
X-Debbugs-Cc: [email protected]
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512
Hi,
I intend to update gtk-rs to 0.10 (staged in exp).
Attached is a (partial) patch that covers most of the porting work.
best,
werdahias
- -- System Information:
Debian Release: forky/sid
APT prefers unstable
APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386
Kernel: Linux 6.16.3+deb14-amd64 (SMP w/16 CPU threads; PREEMPT)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /usr/bin/dash
Init: OpenRC (via /run/openrc), PID 1: init
LSM: AppArmor: enabled
-----BEGIN PGP SIGNATURE-----
iIsEARYKADMWIQQUWTv/Sl6/b+DpcW7svtu2B7myvgUCaLltbxUcd2VyZGFoaWFz
QGRlYmlhbi5vcmcACgkQ7L7btge5sr4SxwEA00lXEEB2Z4y2wqiWOTct/Web45oN
ZPFfYTpBFUFt35UA/ialSUfieSgii8P3KgKpQ63Mj9jcdxsRj2cnk3PVnowI
=2PyD
-----END PGP SIGNATURE-----
diff --git a/subprojects/pfs/Cargo.toml b/subprojects/pfs/Cargo.toml
index ae3b519..3fc3c29 100644
--- a/subprojects/pfs/Cargo.toml
+++ b/subprojects/pfs/Cargo.toml
@@ -18,10 +18,10 @@ path = "src/examples/open/pfs_open.rs"
[dependencies]
gettext-rs = { version = "0.7", features = ["gettext-system"] }
-glib-macros = "0.20.5"
-gtk = { version = "0.9", package = "gtk4", features = ["gnome_47"] }
+glib-macros = "0.21"
+gtk = { version = "0.10", package = "gtk4", features = ["gnome_47"] }
[dependencies.adw]
package = "libadwaita"
-version = "0.7"
+version = "0.8"
features = ["v1_6"]
diff --git a/subprojects/pfs/src/dir_stack.rs b/subprojects/pfs/src/dir_stack.rs
index 142afc6..4ba6210 100644
--- a/subprojects/pfs/src/dir_stack.rs
+++ b/subprojects/pfs/src/dir_stack.rs
@@ -119,7 +119,8 @@ mod imp {
glib::wrapper! {
pub struct DirStack(ObjectSubclass<imp::DirStack>)
- @extends adw::Bin, gtk::Widget;
+ @extends adw::Bin, gtk::Widget,
+ @implements gtk::Accessible, gtk::Buildable, gtk::ConstraintTarget;
}
impl Default for DirStack {
diff --git a/subprojects/pfs/src/dir_view.rs b/subprojects/pfs/src/dir_view.rs
index f06afa9..e7a365c 100644
--- a/subprojects/pfs/src/dir_view.rs
+++ b/subprojects/pfs/src/dir_view.rs
@@ -359,7 +359,8 @@ mod imp {
glib::wrapper! {
pub struct DirView(ObjectSubclass<imp::DirView>)
- @extends adw::Bin, gtk::Widget;
+ @extends adw::Bin, gtk::Widget,
+ @implements gtk::Accessible, gtk::Buildable, gtk::ConstraintTarget;
}
impl Default for DirView {
diff --git a/subprojects/pfs/src/grid_item.rs b/subprojects/pfs/src/grid_item.rs
index e803b8b..187c635 100644
--- a/subprojects/pfs/src/grid_item.rs
+++ b/subprojects/pfs/src/grid_item.rs
@@ -109,7 +109,8 @@ mod imp {
glib::wrapper! {
pub struct GridItem(ObjectSubclass<imp::GridItem>)
- @extends adw::Bin, gtk::Widget;
+ @extends adw::Bin, gtk::Widget,
+ @implements gtk::Accessible, gtk::Buildable, gtk::ConstraintTarget;
}
impl Default for GridItem {
diff --git a/subprojects/pfs/src/path_bar.rs b/subprojects/pfs/src/path_bar.rs
index 60d570d..e19603d 100644
--- a/subprojects/pfs/src/path_bar.rs
+++ b/subprojects/pfs/src/path_bar.rs
@@ -122,7 +122,8 @@ mod imp {
glib::wrapper! {
pub struct PathBar(ObjectSubclass<imp::PathBar>)
- @extends adw::Bin, gtk::Widget;
+ @extends adw::Bin, gtk::Widget,
+ @implements gtk::Accessible, gtk::Buildable, gtk::ConstraintTarget;
}
impl Default for PathBar {
diff --git a/subprojects/pfs/src/places_box.rs
b/subprojects/pfs/src/places_box.rs
index 067fca0..34e9bab 100644
--- a/subprojects/pfs/src/places_box.rs
+++ b/subprojects/pfs/src/places_box.rs
@@ -119,7 +119,8 @@ mod imp {
glib::wrapper! {
pub struct PlacesBox(ObjectSubclass<imp::PlacesBox>)
- @extends adw::Bin, gtk::Widget;
+ @extends adw::Bin, gtk::Widget,
+ @implements gtk::Accessible, gtk::Buildable, gtk::ConstraintTarget;
}
impl Default for PlacesBox {
diff --git a/subprojects/pfs/src/places_item.rs
b/subprojects/pfs/src/places_item.rs
index 76c6287..592ef76 100644
--- a/subprojects/pfs/src/places_item.rs
+++ b/subprojects/pfs/src/places_item.rs
@@ -66,7 +66,8 @@ mod imp {
glib::wrapper! {
pub struct PlacesItem(ObjectSubclass<imp::PlacesItem>)
- @extends adw::Bin, gtk::Widget;
+ @extends adw::Bin, gtk::Widget,
+ @implements gtk::Accessible, gtk::ConstraintTarget,gtk::Buildable;
}
impl Default for PlacesItem {
--- End Message ---
--- Begin Message ---
Source: xdg-desktop-portal-phosh
Source-Version: 0.50~rc1-1
Done: Guido Günther <[email protected]>
We believe that the bug you reported is fixed in the latest version of
xdg-desktop-portal-phosh, which is due to be installed in the Debian FTP
archive.
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Guido Günther <[email protected]> (supplier of updated xdg-desktop-portal-phosh
package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512
Format: 1.8
Date: Mon, 22 Sep 2025 14:02:05 +0200
Source: xdg-desktop-portal-phosh
Architecture: source
Version: 0.50~rc1-1
Distribution: unstable
Urgency: medium
Maintainer: DebianOnMobile Maintainers
<[email protected]>
Changed-By: Guido Günther <[email protected]>
Closes: 1113928
Changes:
xdg-desktop-portal-phosh (0.50~rc1-1) unstable; urgency=medium
.
* Upload to unstable
* New upstream release candidate
* Update pfs to 0.0.5 (Closes: #1113928)
* d/watch: Mangle both ways
* Disable the Rust portal. Let's fix the RC bugs before enabling
it.
Checksums-Sha1:
1d65befea2e8fb29fcd729edbae8e2a6d2a5aa0a 2799
xdg-desktop-portal-phosh_0.50~rc1-1.dsc
55d15a6f94516871854c70a63200c6396eb0bb65 94040
xdg-desktop-portal-phosh_0.50~rc1.orig.tar.xz
9663d28139c36b0efd9393552e1be27418cea194 833
xdg-desktop-portal-phosh_0.50~rc1.orig.tar.xz.asc
c5057d72ee65df0cc9289f7bd351b948c1cd1c64 11784
xdg-desktop-portal-phosh_0.50~rc1-1.debian.tar.xz
68c622879ed58bcb453a779ce0e7b13cbd8495c4 26922
xdg-desktop-portal-phosh_0.50~rc1-1_amd64.buildinfo
Checksums-Sha256:
988c778c6a745bc45a88e864f5ea5f3f0ec72bfd334ce93b56b960d762c00db3 2799
xdg-desktop-portal-phosh_0.50~rc1-1.dsc
81c2af0d225ae904073d82a6a9136b50e81dea6bb215774db685a7150b88e636 94040
xdg-desktop-portal-phosh_0.50~rc1.orig.tar.xz
85af9286392a31aa1573379474f44bdb3cee381328abe02b8749571333c41661 833
xdg-desktop-portal-phosh_0.50~rc1.orig.tar.xz.asc
308bb52bbccc1d9f0871a64fe4f7b400c0d7cbb75e1a86ca1e55df7a7756da78 11784
xdg-desktop-portal-phosh_0.50~rc1-1.debian.tar.xz
3d0feb53be1de5b93a505d890cef3ac5b8579ca19d31c8b2db4d8748243327e2 26922
xdg-desktop-portal-phosh_0.50~rc1-1_amd64.buildinfo
Files:
d9800a3c8e26af6f0ab4422368c19b06 2799 gnome optional
xdg-desktop-portal-phosh_0.50~rc1-1.dsc
047d9804d42eb441cbb283b8282a788d 94040 gnome optional
xdg-desktop-portal-phosh_0.50~rc1.orig.tar.xz
a08e854b824de137326cc2b84158c9a0 833 gnome optional
xdg-desktop-portal-phosh_0.50~rc1.orig.tar.xz.asc
0422ff7bf29731e16af847c4ffd0282e 11784 gnome optional
xdg-desktop-portal-phosh_0.50~rc1-1.debian.tar.xz
a96e31378f5acf114362a64002865963 26922 gnome optional
xdg-desktop-portal-phosh_0.50~rc1-1_amd64.buildinfo
-----BEGIN PGP SIGNATURE-----
iQIzBAEBCgAdFiEEY/bM35YinQkoayrDJb+GUkr8weMFAmjRRicACgkQJb+GUkr8
weOzOg//cv6UBYfEDSiUkcnMeZzf7ewt9Qq9xnfCICplmJjP5lmaXLEeUY8vgTR4
vrGf6TAxP87FmnNUyNZRKLXPCrhNqjUvU6BgLBgmr9QPn4YxVUbXiRsZhP1HhYjV
H9eT5VbTNngpU9itQlGGiKe1UpYxTYhR+VCw+49jCPh34Co7MHKRP6RAqyYH86pP
TP/y3pkHTMNqpDKwOvNUoSvqYAyZV0K6zUasogH+MwaBJvX8JmEhLX73/UAcHEjC
0VP9gAIxIhY5RYB0hxpy5Gh6wKFVTU38i0HklyjRXzHtzNvZl5mzPH8GbOTgCEb8
7J3UjwGqM9LgwctpAux6ls/mpLzKAmIbXQ5wBsbEFpc9w7aEGIM8wvFh6F1RKKMz
Z/xh8e7nXm0FdOZHv226hl8tNUl60A4QTb3Ghunyvkm8OA8VJidAGZEGAroJth2T
T4BJjQKNwxr5fIPN8JbwTkHywOb3z2ULMSNmFWFjBHAnkSWECWZm5QjkXAOg/d8w
rGj+osODV4D+SrYa1VzpyAAS/U0wlWZWcSFS1pK5xEtBvj7WrZ92Kcwv3rUW1oBL
QrEXt6h/s9mH/iQpE0wmFrNHd5vA9YixU8kigHkA7s1nErqwNzlRNseVrtbP3G3i
Sj6g9XJMQxFIozyBMGhnQPFO6eyav4uTSici7Zvr4l3PbNP/3bk=
=z90i
-----END PGP SIGNATURE-----
pgpIEmcZSYgxO.pgp
Description: PGP signature
--- End Message ---