[packages/realmd] - updated to 0.17.1
qboosh
qboosh at pld-linux.org
Sun Mar 2 18:35:34 CET 2025
commit f2ff0dbd59c1905c2de7663fd59c2d0cd962f502
Author: Jakub Bogusz <qboosh at pld-linux.org>
Date: Sun Mar 2 18:13:21 2025 +0100
- updated to 0.17.1
realmd-heimdal.patch | 35 ++++++++++++++++++++++++++++++++---
realmd.spec | 16 ++++++++++++----
2 files changed, 44 insertions(+), 7 deletions(-)
---
diff --git a/realmd.spec b/realmd.spec
index 3029bf8..8f329d5 100644
--- a/realmd.spec
+++ b/realmd.spec
@@ -6,12 +6,13 @@
Summary: D-Bus service for configuring Kerberos and other online identities
Summary(pl.UTF-8): Usługa D-Bus do konfigurowania Kerberosa i innych tożsamości w sieci
Name: realmd
-Version: 0.16.3
+Version: 0.17.1
Release: 1
License: LGPL v2+
Group: Applications/System
-Source0: https://www.freedesktop.org/software/realmd/releases/%{name}-%{version}.tar.gz
-# Source0-md5: a8b3bf5692c4255298ae962a0c8813fa
+#Source0Download: https://gitlab.freedesktop.org/realmd/realmd/-/releases
+Source0: https://gitlab.freedesktop.org/realmd/realmd/uploads/204d05bd487908ece2ce2705a01d2b26/%{name}-%{version}.tar.gz
+# Source0-md5: 1027e0e0b6b1a92b5aa8a8342acab3ed
Patch0: %{name}-pld.patch
Patch1: %{name}-heimdal.patch
URL: https://www.freedesktop.org/software/realmd/
@@ -33,6 +34,12 @@ BuildRequires: xmlto
Requires: glib2 >= 1:2.36.0
BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+%if "%{_libexecdir}" == "%{_libdir}"
+%define pkglibexecdir %{_prefix}/lib/realmd
+%else
+%define pkglibexecdir %{_libexecdir}
+%endif
+
%description
D-Bus service for configuring Kerberos and other online identities.
@@ -50,6 +57,7 @@ Usługa D-Bus do konfigurowania Kerberosa i innych tożsamości w sieci.
%{__autoheader}
%{__automake}
%configure \
+ --libexecdir=%{pkglibexecdir} \
--disable-silent-rules \
--with-distro=pld \
--with-systemd-unit-dir=%{systemdunitdir}
@@ -71,7 +79,7 @@ rm -rf $RPM_BUILD_ROOT
%doc AUTHORS ChangeLog NEWS README internals/*
%attr(755,root,root) %{_sbindir}/realm
%dir %{_prefix}/lib/realmd
-%attr(755,root,root) %{_prefix}/lib/realmd/realmd
+%{pkglibexecdir}/realmd
%{_prefix}/lib/realmd/realmd-defaults.conf
%{_prefix}/lib/realmd/realmd-distro.conf
/etc/dbus-1/system.d/org.freedesktop.realmd.conf
diff --git a/realmd-heimdal.patch b/realmd-heimdal.patch
index 840ad05..5e6cb94 100644
--- a/realmd-heimdal.patch
+++ b/realmd-heimdal.patch
@@ -9,8 +9,8 @@
G_BEGIN_DECLS
---- realmd-0.14.5/service/realm-kerberos.c.orig 2013-07-19 18:04:44.000000000 +0200
-+++ realmd-0.14.5/service/realm-kerberos.c 2014-12-21 20:31:06.908219228 +0100
+--- realmd-0.17.1/service/realm-kerberos.c.orig 2022-09-16 12:57:45.000000000 +0200
++++ realmd-0.17.1/service/realm-kerberos.c 2025-03-02 18:04:10.198432068 +0100
@@ -31,7 +31,7 @@
#include "realm-provider.h"
#include "realm-settings.h"
@@ -20,7 +20,7 @@
#include <glib/gi18n.h>
#include <glib/gstdio.h>
-@@ -1067,7 +1067,7 @@ gboolean
+@@ -1082,7 +1082,7 @@ gboolean
realm_kerberos_flush_keytab (const gchar *realm_name,
GError **error)
{
@@ -29,6 +29,35 @@
krb5_error_code code;
krb5_keytab keytab;
krb5_context ctx;
+@@ -1142,12 +1142,11 @@ realm_kerberos_get_netbios_name_from_key
+ krb5_error_code code;
+ krb5_keytab keytab = NULL;
+ krb5_context ctx;
+- krb5_kt_cursor cursor = NULL;
++ krb5_kt_cursor cursor;
+ krb5_keytab_entry entry;
+ krb5_principal realm_princ = NULL;
+ gchar *princ_name = NULL;
+ gchar *netbios_name = NULL;
+- krb5_data *name_data;
+
+ code = krb5_init_context (&ctx);
+ if (code != 0) {
+@@ -1169,11 +1168,10 @@ realm_kerberos_get_netbios_name_from_key
+ if (code == 0) {
+ while (!krb5_kt_next_entry (ctx, keytab, &entry, &cursor) && netbios_name == NULL) {
+ if (krb5_realm_compare (ctx, realm_princ, entry.principal)) {
+- name_data = krb5_princ_component (ctx, entry.principal, 0);
++ const char *name_data = krb5_principal_get_comp_string(ctx, entry.principal, 0);
+ if (name_data != NULL
+- && name_data->length > 0
+- && name_data->data[name_data->length - 1] == '$') {
+- netbios_name = g_strndup (name_data->data, name_data->length - 1);
++ && name_data[strlen(name_data) - 1] == '$') {
++ netbios_name = g_strdup (name_data);
+ if (netbios_name == NULL) {
+ code = krb5_kt_free_entry (ctx, &entry);
+ warn_if_krb5_failed (ctx, code);
--- realmd-0.14.5/service/realm-kerberos.h.orig 2013-07-19 17:53:39.000000000 +0200
+++ realmd-0.14.5/service/realm-kerberos.h 2014-12-21 20:31:06.881552562 +0100
@@ -19,7 +19,7 @@
================================================================
---- gitweb:
http://git.pld-linux.org/gitweb.cgi/packages/realmd.git/commitdiff/f2ff0dbd59c1905c2de7663fd59c2d0cd962f502
More information about the pld-cvs-commit
mailing list