public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/gnome-user-share] wip/oholy/f45-update: - Update to 2.27.0
@ 2026-06-24 11:34 Bastien Nocera
0 siblings, 0 replies; only message in thread
From: Bastien Nocera @ 2026-06-24 11:34 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/gnome-user-share
Branch : wip/oholy/f45-update
Commit : 64c4a956e2e9174ba95ded4331203d61d7e3f81b
Author : Bastien Nocera <hadess@fedoraproject.org>
Date : 2009-09-02T12:38:09+00:00
Stats : +9/-45 in 4 file(s)
URL : https://src.fedoraproject.org/rpms/gnome-user-share/c/64c4a956e2e9174ba95ded4331203d61d7e3f81b?branch=wip/oholy/f45-update
Log:
- Update to 2.27.0
---
diff --git a/.cvsignore b/.cvsignore
index 13aa35b..49dd813 100644
--- a/.cvsignore
+++ b/.cvsignore
@@ -1 +1 @@
-gnome-user-share-2.26.0.tar.bz2
+gnome-user-share-2.27.0.tar.bz2
diff --git a/do-not-localize-realms.patch b/do-not-localize-realms.patch
deleted file mode 100644
index c310e8d..0000000
--- a/do-not-localize-realms.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-From f77498214f945c988a0bcbe570782dcaf37e771d Mon Sep 17 00:00:00 2001
-From: Bastien Nocera <hadess@hadess.net>
-Date: Fri, 26 Jun 2009 09:30:42 +0000
-Subject: Bug 586755 – Localized realm in the passwd file doesn't work
-
-And apparently, they're not supposed to either... So remove the
-translation for the realm instead.
----
-diff --git a/src/file-share-properties.c b/src/file-share-properties.c
-index 2b9cd2e..4d69a62 100644
---- a/src/file-share-properties.c
-+++ b/src/file-share-properties.c
-@@ -32,7 +32,7 @@
-
- #include "user_share-private.h"
-
--#define REALM N_("Please log in as the user guest")
-+#define REALM "Please log in as the user guest"
- #define USER "guest"
-
- static GtkBuilder* builder;
-@@ -47,10 +47,10 @@ write_out_password (const char *password)
- char *filename;
- FILE *file;
-
-- to_hash = g_strdup_printf ("%s:%s:%s", USER, _(REALM), password);
-+ to_hash = g_strdup_printf ("%s:%s:%s", USER, REALM, password);
- ascii_digest = g_compute_checksum_for_string (G_CHECKSUM_MD5, to_hash, strlen (to_hash));
- g_free (to_hash);
-- line = g_strdup_printf ("%s:%s:%s\n", USER, _(REALM), ascii_digest);
-+ line = g_strdup_printf ("%s:%s:%s\n", USER, REALM, ascii_digest);
- g_free (ascii_digest);
-
- filename = g_build_filename (g_get_user_config_dir (), "user-share", "passwd", NULL);
---
-cgit v0.8.2
diff --git a/gnome-user-share.spec b/gnome-user-share.spec
index 791bac1..eb1870a 100644
--- a/gnome-user-share.spec
+++ b/gnome-user-share.spec
@@ -1,16 +1,13 @@
Summary: Gnome user file sharing
Name: gnome-user-share
-Version: 2.26.0
-Release: 6%{?dist}
+Version: 2.27.0
+Release: 1%{?dist}
License: GPLv2+
Group: System Environment/Libraries
URL: http://www.gnome.org
-Source0: http://download.gnome.org/sources/gnome-user-share/2.26/%{name}-%{version}.tar.bz2
+Source0: http://download.gnome.org/sources/gnome-user-share/2.27/%{name}-%{version}.tar.bz2
# http://bugzilla.gnome.org/show_bug.cgi?id=578090
Patch0: menu-path.patch
-# Localized realm in the passwd file doesn't work
-# http://bugzilla.gnome.org/show_bug.cgi?id=586755
-Patch1: do-not-localize-realms.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
Requires: httpd >= 2.2.0
@@ -19,6 +16,7 @@ Requires: mod_dnssd
BuildRequires: GConf2-devel pkgconfig
BuildRequires: gtk2-devel >= 2.4.0
BuildRequires: httpd >= 2.2.0 mod_dnssd >= 0.6
+BuildRequires: gnome-bluetooth-libs-devel
BuildRequires: desktop-file-utils
BuildRequires: gnome-doc-utils
BuildRequires: libselinux-devel
@@ -49,7 +47,6 @@ The program also allows to share files using ObexFTP over Bluetooth.
%prep
%setup -q
%patch0 -p1 -b .menu-path
-%patch1 -p1 -b .realm-localization
%build
%configure
@@ -127,6 +124,9 @@ fi
%{_datadir}/icons/hicolor/*/apps/gnome-obex-server.png
%changelog
+* Wed Sep 02 2009 Bastien Nocera <bnocera@redhat.com> 2.27.0-1
+- Update to 2.27.0
+
* Thu Aug 20 2009 Tomas Bzatek <tbzatek@redhat.com> - 2.26.0-6
- Do not localize realm in passwd files (#500123)
diff --git a/sources b/sources
index 49d51b0..20b6ac2 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-c99133b74a81a78ac0e4e10ef73fada7 gnome-user-share-2.26.0.tar.bz2
+6900aa1c9b2fcfbc6d89762063c37efa gnome-user-share-2.27.0.tar.bz2
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-06-24 11:34 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-06-24 11:34 [rpms/gnome-user-share] wip/oholy/f45-update: - Update to 2.27.0 Bastien Nocera
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox