Noel Power 2024-05-20 09:09:03 +00:00 committed by Git OBS Bridge
parent 8b753ef139
commit d7ded43bda
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-----

3
talloc-2.4.2.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:85ecf9e465e20f98f9950a52e9a411e14320bc555fa257d87697b7e7a9b1d8a6
size 679750

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>
@ -5,7 +13,7 @@ Tue Sep 26 09:32:01 UTC 2023 - Noel Power <nopower@suse.com>
* Remove remaining, but broken python2 support
* Spelling fixes
* Remove unneeded va_copy()
-------------------------------------------------------------------
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
#
# Copyright (c) 2023 SUSE LLC
# Copyright (c) 2024 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -35,7 +35,7 @@ BuildRequires: python3-devel
#!BuildIgnore: python
%endif # build_man
URL: http://talloc.samba.org/
Version: 2.4.1
Version: 2.4.2
Release: 0
Summary: Samba talloc Library
License: LGPL-3.0-or-later

View File

@ -1,11 +1,12 @@
--- a/buildtools/wafsamba/wafsamba.py
+++ b/buildtools/wafsamba/wafsamba.py
@@ -108,7 +108,7 @@ def SAMBA_LIBRARY(bld, libname, source,
ldflags='',
external_library=False,
realname=None,
- keep_underscore=False,
+ keep_underscore=True,
autoproto=None,
autoproto_extra_source='',
group='main',
diff -ruNp a/buildtools/wafsamba/wafsamba.py b/buildtools/wafsamba/wafsamba.py
--- a/buildtools/wafsamba/wafsamba.py 2024-05-16 13:52:58.561283248 +0200
+++ b/buildtools/wafsamba/wafsamba.py 2024-05-16 13:54:32.297195397 +0200
@@ -309,7 +309,7 @@ def SAMBA_LIBRARY(bld, libname, source,
if bundled_name is not None:
pass
elif target_type == 'PYTHON' or realname or not private_library:
- bundled_name = libname.replace('_', '-')
+ bundled_name = libname
else:
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>
@ -5,7 +13,7 @@ Tue Sep 26 09:32:01 UTC 2023 - Noel Power <nopower@suse.com>
* Remove remaining, but broken python2 support
* Spelling fixes
* Remove unneeded va_copy()
-------------------------------------------------------------------
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
# remain the property of their copyright owners, unless otherwise agreed
@ -35,7 +35,7 @@ BuildRequires: python3-devel
#!BuildIgnore: python
%endif # build_man
URL: http://talloc.samba.org/
Version: 2.4.1
Version: 2.4.2
Release: 0
Summary: Samba talloc Library
License: LGPL-3.0-or-later