Accepting request 1176456 from network:samba:STABLE

Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/1176456
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/talloc?expand=0&rev=46
This commit is contained in:
Ana Guerrero 2024-05-24 17:50:28 +00:00 committed by Git OBS Bridge
commit 40411983ea
9 changed files with 49 additions and 32 deletions

View File

@ -1,11 +0,0 @@
-----BEGIN PGP SIGNATURE-----
iQEzBAABCgAdFiEEkUejOXGVGO6QEby1R5ORYRMIQCUFAmS5ENkACgkQR5ORYRMI
QCWf8Af/WlOBXNzd6BBhku1mF75Sfnjzr0FNxWlFWrf9vbVH3HVrbCVNo3Rb7Llt
SfhaeXY99EsWyCOCMB4+2CI4dHNCRg6zvDNUcZgIgQG3nFWOHa8RYOZhVbDTbf2u
UPZTAXypv08rlNiqClP+sw07JIGeAumqKrwEtFuUEmwIF4ymXSnvVNpp5NJYiYlA
4XnQdH25ud4/rb5jkiLY/54zkLaEoAADb1MJqRSs0FEm6jT85rl2K9Y+n8ATsMan
+P6F1f8b6+bMJmWXR/1+AzlXTJjmJ2lHrs8CmffD0rO5bzOKBVOFvWmgM3cpsiA2
OnBQZKM6RTUChcZAZHXBC+1iqfo5Kg==
=VFin
-----END PGP SIGNATURE-----

BIN
talloc-2.4.1.tar.gz (Stored with Git LFS)

Binary file not shown.

11
talloc-2.4.2.tar.asc Normal file
View File

@ -0,0 +1,11 @@
-----BEGIN PGP SIGNATURE-----
iQEzBAABCgAdFiEEkUejOXGVGO6QEby1R5ORYRMIQCUFAmW3z9IACgkQR5ORYRMI
QCV/wQf/Q1xrEKBqph8qZznb2/RTt7qd6aGS7A8DZL9prPRD4yHHBYOx6ve0+j54
faUmK9SY31FOGh6P78H51VmoNkKDZzSlUbO+rVx8FSJSHLC44BSPy4KvmJ+ZsLdM
ma5QeFm/CiMn821tQTs0A3ul80yjf6ur/gsu59X2qVX9ErmDIvUh3Z0TNzN367kx
kWdcC30qhth+T9662yp1SM/wE11IcSLvdsFm44GaZo5fhoDm59UaYQhUfj+c2Zhr
qaUuctmbxnpvNnSPYKK4j2II8fOGjANvXvtfpVWtdlm1IRMzZOgdWtLYqxwQMxxF
k7PGxr7ijIZoeYTq+KOBBq4zEk8b8Q==
=YnJL
-----END PGP SIGNATURE-----

BIN
talloc-2.4.2.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Thu May 16 11:17:35 UTC 2024 - Samuel Cabrero <scabrero@suse.de>
- Update to 2.4.2
* build with Python 3.12 (bso#15513)
* documentation fixes
* Update patch talloc-python3.5-fix-soabi_name.patch
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Sep 26 09:32:01 UTC 2023 - Noel Power <nopower@suse.com> Tue Sep 26 09:32:01 UTC 2023 - Noel Power <nopower@suse.com>
@ -5,7 +13,7 @@ Tue Sep 26 09:32:01 UTC 2023 - Noel Power <nopower@suse.com>
* Remove remaining, but broken python2 support * Remove remaining, but broken python2 support
* Spelling fixes * Spelling fixes
* Remove unneeded va_copy() * Remove unneeded va_copy()
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Mar 17 07:54:23 UTC 2023 - Samuel Cabrero <scabrero@suse.de> Fri Mar 17 07:54:23 UTC 2023 - Samuel Cabrero <scabrero@suse.de>

View File

@ -1,7 +1,7 @@
# #
# spec file for package talloc-man # spec file for package talloc-man
# #
# Copyright (c) 2023 SUSE LLC # Copyright (c) 2024 SUSE LLC
# #
# All modifications and additions to the file contributed by third parties # All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed # remain the property of their copyright owners, unless otherwise agreed
@ -35,7 +35,7 @@ BuildRequires: python3-devel
#!BuildIgnore: python #!BuildIgnore: python
%endif # build_man %endif # build_man
URL: http://talloc.samba.org/ URL: http://talloc.samba.org/
Version: 2.4.1 Version: 2.4.2
Release: 0 Release: 0
Summary: Samba talloc Library Summary: Samba talloc Library
License: LGPL-3.0-or-later License: LGPL-3.0-or-later

View File

@ -1,11 +1,12 @@
--- a/buildtools/wafsamba/wafsamba.py diff -ruNp a/buildtools/wafsamba/wafsamba.py b/buildtools/wafsamba/wafsamba.py
+++ b/buildtools/wafsamba/wafsamba.py --- a/buildtools/wafsamba/wafsamba.py 2024-05-16 13:52:58.561283248 +0200
@@ -108,7 +108,7 @@ def SAMBA_LIBRARY(bld, libname, source, +++ b/buildtools/wafsamba/wafsamba.py 2024-05-16 13:54:32.297195397 +0200
ldflags='', @@ -309,7 +309,7 @@ def SAMBA_LIBRARY(bld, libname, source,
external_library=False, if bundled_name is not None:
realname=None, pass
- keep_underscore=False, elif target_type == 'PYTHON' or realname or not private_library:
+ keep_underscore=True, - bundled_name = libname.replace('_', '-')
autoproto=None, + bundled_name = libname
autoproto_extra_source='', else:
group='main', assert (private_library is True and realname is None)
bundled_name = PRIVATE_NAME(bld, libname.replace('_', '-'))

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Thu May 16 11:17:35 UTC 2024 - Samuel Cabrero <scabrero@suse.de>
- Update to 2.4.2
* build with Python 3.12 (bso#15513)
* documentation fixes
* Update patch talloc-python3.5-fix-soabi_name.patch
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Sep 26 09:32:01 UTC 2023 - Noel Power <nopower@suse.com> Tue Sep 26 09:32:01 UTC 2023 - Noel Power <nopower@suse.com>
@ -5,7 +13,7 @@ Tue Sep 26 09:32:01 UTC 2023 - Noel Power <nopower@suse.com>
* Remove remaining, but broken python2 support * Remove remaining, but broken python2 support
* Spelling fixes * Spelling fixes
* Remove unneeded va_copy() * Remove unneeded va_copy()
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Apr 24 10:07:53 UTC 2023 - Dominique Leuenberger <dimstar@opensuse.org> Mon Apr 24 10:07:53 UTC 2023 - Dominique Leuenberger <dimstar@opensuse.org>

View File

@ -1,7 +1,7 @@
# #
# spec file for package talloc-man # spec file for package talloc
# #
# Copyright (c) 2023 SUSE LLC # Copyright (c) 2024 SUSE LLC
# #
# All modifications and additions to the file contributed by third parties # All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed # remain the property of their copyright owners, unless otherwise agreed
@ -35,7 +35,7 @@ BuildRequires: python3-devel
#!BuildIgnore: python #!BuildIgnore: python
%endif # build_man %endif # build_man
URL: http://talloc.samba.org/ URL: http://talloc.samba.org/
Version: 2.4.1 Version: 2.4.2
Release: 0 Release: 0
Summary: Samba talloc Library Summary: Samba talloc Library
License: LGPL-3.0-or-later License: LGPL-3.0-or-later