forked from pool/talloc
Accepting request 482036 from home:jmcdough:updateto46
Update to 2.1.9 for samba 4.6 OBS-URL: https://build.opensuse.org/request/show/482036 OBS-URL: https://build.opensuse.org/package/show/network:samba:STABLE/talloc?expand=0&rev=88
This commit is contained in:
parent
277ff0a30a
commit
12938fa144
@ -1,11 +0,0 @@
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
Version: GnuPG v1
|
||||
|
||||
iQEcBAABAgAGBQJXmbIHAAoJEEeTkWETCEAlCWwH+wQl3aP6l/mDCKvugwHodHID
|
||||
Ha3GloFe3Kg7OyrL3RsXP5z+sVSwBhCTc9IfwewEpy/z+7Pey7y+fAdbsvgKLBEs
|
||||
BLxaJeUaUuVz2dIXmWQ3S+SFSbT3YdIK7kjtHPU8a9g3M3Ax2tAE6ZB8hAiCqtA3
|
||||
VI5G3pRS564i/ocvLyjHWsufa+eylZaFaPnc2/N3n/pkc8Ac0PYaCeSPp0svH3+1
|
||||
PcTZiU4WTXTHxeFjleR90Z7Bo1XuL0aJnJdRn5lUYFPGeGKWCwMHvnYAXxrfIYI/
|
||||
7VhduJsG20EqQNMDVJ9r3KyQ0XSConCIznIYB2qnOMInn70p8j+5Yx0l22odh5M=
|
||||
=GPFe
|
||||
-----END PGP SIGNATURE-----
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:22d14911164d4de67ff76b5269fa5250d01f78c955bc77e28615350996877130
|
||||
size 438490
|
11
talloc-2.1.9.tar.asc
Normal file
11
talloc-2.1.9.tar.asc
Normal file
@ -0,0 +1,11 @@
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
Version: GnuPG v1
|
||||
|
||||
iQEcBAABAgAGBQJYtH6eAAoJEEeTkWETCEAlDWUH+QGzvnpnLxO2w/FIoXiqfgMf
|
||||
NWtAuxp/Q99U8yzCcSxS1pPK2sB3k2aMvKp5Y6hadXAPnBt9+xknaoJXVfmaNznu
|
||||
TJLdYhzRl9rhx2qc28AE1ArfetSLs/tTOlpU6upQXRMBTHD8Q0DxlC7PR2T8xqOa
|
||||
vmzT6cDLaRyFhsnzPv5+7Ocrz9FTojSSzFmSimJKdIt7pkqfP79FKsH/U40m+Aea
|
||||
ObNAG27OoKHI5023BTcTkCY0mrDhJq15MwLiLNTkj2OtBzO0TGTOFHFtaUplRrN+
|
||||
1uP8TBH9ANmXpjCH9+djv4sUyBWjRTUF0DGzmgax66wbrFkN3fGts6oJ2gDxTro=
|
||||
=DGTK
|
||||
-----END PGP SIGNATURE-----
|
3
talloc-2.1.9.tar.gz
Normal file
3
talloc-2.1.9.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f0aad4cb88a3322207c82136ddc07bed48a37c2c21f82962d6c5ccb422711062
|
||||
size 440335
|
@ -1,7 +1,19 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 2 15:34:07 UTC 2017 - aaptel@suse.com
|
||||
Wed Mar 22 16:51:46 UTC 2017 - jmcdonough@suse.com
|
||||
|
||||
- Use https urls.
|
||||
- Update to version 2.1.9.
|
||||
+ fix some coverity defects
|
||||
+ fix TALLOC_VERSION_MINOR and talloc_version_minor()
|
||||
+ add new tests
|
||||
+ add pytalloc_get_type()
|
||||
+ add pytalloc_GenericObject_{steal,reference}[_ex]()
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Sep 14 09:49:36 UTC 2016 - jmcdonough@suse.com
|
||||
|
||||
- Update to version 2.1.8.
|
||||
+ performance improvements
|
||||
+ Fix memory leak when destructors reparent children; (bso#11901).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 15 16:28:22 UTC 2016 - lmuelle@suse.com
|
||||
|
@ -52,7 +52,7 @@ BuildRequires: python3-devel
|
||||
%endif
|
||||
%endif # build_man
|
||||
Url: http://talloc.samba.org/
|
||||
Version: 2.1.8
|
||||
Version: 2.1.9
|
||||
Release: 0
|
||||
PreReq: /sbin/ldconfig
|
||||
Summary: Samba talloc Library
|
||||
@ -94,8 +94,8 @@ This package includes the talloc2 library.
|
||||
|
||||
%package -n libtalloc-devel
|
||||
Summary: Libraries and Header Files to Develop Programs with talloc2 Support
|
||||
Group: Development/Libraries/C and C++
|
||||
# Man pages are built in a 2nd spec file in order to break a build cycle with doxygen->cmake->krb5->libtalloc
|
||||
Group: Development/Libraries/C and C++
|
||||
%if 0%{?suse_version} > 1030
|
||||
Recommends: %{name}-man
|
||||
%endif
|
||||
|
@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 22 16:51:46 UTC 2017 - jmcdonough@suse.com
|
||||
|
||||
- Update to version 2.1.9.
|
||||
+ fix some coverity defects
|
||||
+ fix TALLOC_VERSION_MINOR and talloc_version_minor()
|
||||
+ add new tests
|
||||
+ add pytalloc_get_type()
|
||||
+ add pytalloc_GenericObject_{steal,reference}[_ex]()
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Sep 14 09:49:36 UTC 2016 - jmcdonough@suse.com
|
||||
|
||||
|
@ -52,7 +52,7 @@ BuildRequires: python3-devel
|
||||
%endif
|
||||
%endif # build_man
|
||||
Url: http://talloc.samba.org/
|
||||
Version: 2.1.8
|
||||
Version: 2.1.9
|
||||
Release: 0
|
||||
PreReq: /sbin/ldconfig
|
||||
Summary: Samba talloc Library
|
||||
@ -94,8 +94,8 @@ This package includes the talloc2 library.
|
||||
|
||||
%package -n libtalloc-devel
|
||||
Summary: Libraries and Header Files to Develop Programs with talloc2 Support
|
||||
Group: Development/Libraries/C and C++
|
||||
# Man pages are built in a 2nd spec file in order to break a build cycle with doxygen->cmake->krb5->libtalloc
|
||||
Group: Development/Libraries/C and C++
|
||||
%if 0%{?suse_version} > 1030
|
||||
Recommends: %{name}-man
|
||||
%endif
|
||||
|
Loading…
Reference in New Issue
Block a user