public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Bastien Nocera <hadess@hadess.net>
To: git-commits@fedoraproject.org
Subject: [rpms/gnome-user-share] wip/oholy/f45-update: Update to 2.91.6
Date: Wed, 24 Jun 2026 11:34:31 GMT	[thread overview]
Message-ID: <178230087182.1.11810359371802290606.rpms-gnome-user-share-8f21b9621a3c@fedoraproject.org> (raw)

A new commit has been pushed.

Repo   : rpms/gnome-user-share
Branch : wip/oholy/f45-update
Commit : 8f21b9621a3c6d2f9ed6ca1592dcdf990ac97b9c
Author : Bastien Nocera <hadess@hadess.net>
Date   : 2011-02-21T15:57:27+00:00
Stats  : +8/-34 in 4 file(s)
URL    : https://src.fedoraproject.org/rpms/gnome-user-share/c/8f21b9621a3c6d2f9ed6ca1592dcdf990ac97b9c?branch=wip/oholy/f45-update

Log:
Update to 2.91.6

---
diff --git a/.gitignore b/.gitignore
index 9755bea..1dcb372 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
 gnome-user-share-2.30.0.tar.bz2
 /gnome-user-share-2.30.1.tar.bz2
 /gnome-user-share-2.30.2.tar.bz2
+/gnome-user-share-2.91.6.tar.bz2

diff --git a/gnome-user-share.spec b/gnome-user-share.spec
index e87b490..e987145 100644
--- a/gnome-user-share.spec
+++ b/gnome-user-share.spec
@@ -1,7 +1,7 @@
 Summary: Gnome user file sharing
 Name: gnome-user-share
-Version: 2.30.2
-Release: 4%{?dist}
+Version: 2.91.6
+Release: 1%{?dist}
 License: GPLv2+
 Group: System Environment/Libraries
 URL: http://www.gnome.org
@@ -11,7 +11,7 @@ Requires: httpd
 Requires: obex-data-server
 Requires: mod_dnssd
 BuildRequires: GConf2-devel pkgconfig
-BuildRequires: gtk2-devel
+BuildRequires: gtk3-devel
 BuildRequires: httpd  mod_dnssd
 BuildRequires: gnome-bluetooth-libs-devel
 BuildRequires: libcanberra-devel
@@ -97,6 +97,9 @@ gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor >&/dev/null || :
 %{_libdir}/nautilus/extensions-3.0/*.so
 
 %changelog
+* Mon Feb 21 2011 Bastien Nocera <bnocera@redhat.com> 2.91.6-1
+- Update to 2.91.6
+
 * Fri Feb 11 2011 Matthias Clasen <mclasen@redhat.com> - 2.30.2-4
 - Rebuild against newer gtk
 

diff --git a/notify.patch b/notify.patch
deleted file mode 100644
index bc70fb4..0000000
--- a/notify.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-diff -up gnome-user-share-2.30.1/src/obexpush.c.notify gnome-user-share-2.30.1/src/obexpush.c
---- gnome-user-share-2.30.1/src/obexpush.c.notify	2010-11-03 10:13:20.985241989 -0400
-+++ gnome-user-share-2.30.1/src/obexpush.c	2010-11-03 10:15:02.988242018 -0400
-@@ -139,10 +139,9 @@ show_notification (const char *filename)
- 	/* Translators: %s is the name of the filename received */
- 	notification_text = g_strdup_printf(_("You received \"%s\" via Bluetooth"), display);
- 	g_free (display);
--	notification = notify_notification_new_with_status_icon (_("You received a file"),
--								 notification_text,
--								 "dialog-information",
--								 GTK_STATUS_ICON (statusicon));
-+	notification = notify_notification_new (_("You received a file"),
-+					         notification_text,
-+					         "dialog-information");
- 
- 	notify_notification_set_timeout (notification, NOTIFY_EXPIRES_DEFAULT);
- 
-@@ -218,10 +217,10 @@ device_is_authorised (const char *bdaddr
- 		char *device_path;
- 		GHashTable *props;
- 
--		g_message ("checking adapter %s", g_ptr_array_index (adapters, i));
-+		g_message ("checking adapter %s", (char *)g_ptr_array_index (adapters, i));
- 
- 		adapter = dbus_g_proxy_new_for_name (connection, "org.bluez",
--						    g_ptr_array_index (adapters, i), "org.bluez.Adapter");
-+						    (char *)g_ptr_array_index (adapters, i), "org.bluez.Adapter");
- 
- 		if (dbus_g_proxy_call (adapter, "FindDevice", NULL,
- 				       G_TYPE_STRING, bdaddr, G_TYPE_INVALID,

diff --git a/sources b/sources
index 1476f52..ab249e8 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-a04605eb392855921a270378d3e25824  gnome-user-share-2.30.2.tar.bz2
+db9f95d4dcf09be10cc8763082f21c9d  gnome-user-share-2.91.6.tar.bz2

             reply	other threads:[~2026-06-24 11:34 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-06-24 11:34 Bastien Nocera [this message]
2026-06-24 11:34 [rpms/gnome-user-share] wip/oholy/f45-update: Update to 2.91.6 Bastien Nocera

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=178230087182.1.11810359371802290606.rpms-gnome-user-share-8f21b9621a3c@fedoraproject.org \
    --to=hadess@hadess.net \
    --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