Sync from SUSE:SLFO:Main talloc revision b3a6c592fa9c327f6ecd6e491b4ab53b
This commit is contained in:
parent
5af406b7e4
commit
7cb260c8a4
@ -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)
BIN
talloc-2.4.1.tar.gz
(Stored with Git LFS)
Binary file not shown.
11
talloc-2.4.2.tar.asc
Normal file
11
talloc-2.4.2.tar.asc
Normal 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
BIN
talloc-2.4.2.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -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>
|
||||
|
||||
|
@ -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
|
||||
|
@ -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('_', '-'))
|
||||
|
@ -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>
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user