Accepting request 143822 from network:samba:STABLE
- Update to version 1.2.11. + Make tdb robust against improper CLEAR_IF_FIRST restart + Make robust against shrinking tdbs + add -e option to tdbdump (and docment it). + tdbdump should log errors, and fail in that case. + add tdb_rescue() + Fix a typo + return unpack error on strdup failure + finish weaning off err.h. + don't use err.h in tests. + make TDB_NOSYNC merely disable sync. + remove unused debug_fprintf() macro that breaks the build + tests: fix use of a non-existent word (existant) OBS-URL: https://build.opensuse.org/request/show/143822 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/tdb?expand=0&rev=6
This commit is contained in:
commit
b9cead75e9
@ -3,10 +3,10 @@ Date: Wed Aug 15 18:33:08 CEST 2012
|
|||||||
|
|
||||||
Build and link binaries with PIE flags.
|
Build and link binaries with PIE flags.
|
||||||
|
|
||||||
Index: tdb-1.2.10/wscript
|
Index: tdb-1.2.11/wscript
|
||||||
===================================================================
|
===================================================================
|
||||||
--- tdb-1.2.10.orig/wscript
|
--- tdb-1.2.11.orig/wscript
|
||||||
+++ tdb-1.2.10/wscript
|
+++ tdb-1.2.11/wscript
|
||||||
@@ -94,20 +94,27 @@ def build(bld):
|
@@ -94,20 +94,27 @@ def build(bld):
|
||||||
|
|
||||||
bld.SAMBA_BINARY('tdbrestore',
|
bld.SAMBA_BINARY('tdbrestore',
|
||||||
|
@ -1,11 +0,0 @@
|
|||||||
-----BEGIN PGP SIGNATURE-----
|
|
||||||
Version: GnuPG v1.4.11 (GNU/Linux)
|
|
||||||
|
|
||||||
iQEcBAABAgAGBQJPhXsgAAoJEEeTkWETCEAlcH0IALhWw+z1wM6ZN2J2EZi0tat6
|
|
||||||
6eYt612FNXiRTupUeaLXsmgttf3Gek4FNhskwoqPElmPt/8w656iWF5rsYcN/gA4
|
|
||||||
GJ94ocTnaaERV3pJVhxKetCuUx5Bgwa5UlGfv2XGnmOsL0Hnj8qo1F8liPBtimiO
|
|
||||||
/pqyNd5pdaSHcujqMD0afco2VQwKvzD/deNWzHY410foFzbLHGeLiVRaqTa8Y+QA
|
|
||||||
V24j0JGehKROhgRaSbapL3JmX88cM36xCCG1gHakBvJnLNEJtp7kGm0kg/DSLzdx
|
|
||||||
ZfpwexyIt349xVlCj/UH9EmRRprlCXdC3gai1J7sCEhv2NiTh7e+rmLI7W4Rvp0=
|
|
||||||
=qZz9
|
|
||||||
-----END PGP SIGNATURE-----
|
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:678c1d7e99a29a8d29669fdc76fdfd2f44d7fad2e362b40cd93deceb181b8b6e
|
|
||||||
size 497924
|
|
11
tdb-1.2.11.tar.asc
Normal file
11
tdb-1.2.11.tar.asc
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
-----BEGIN PGP SIGNATURE-----
|
||||||
|
Version: GnuPG v1.4.11 (GNU/Linux)
|
||||||
|
|
||||||
|
iQEcBAABAgAGBQJQuHRAAAoJEEeTkWETCEAlS2kH/0sMfzpyly1Xaqe3EkTT5eMY
|
||||||
|
HrYH7ZshvthU1Gmi/kNxOJKIiSa1tQy74/m+/UI1qU4ZEA8q7xkjZCKP2ClLddtl
|
||||||
|
P86zRNWyb2JwHN7ZmfHMy3vJKMCYul7OKCZEhQ3YXKG7wWRpQKv3NuceckY+OLq0
|
||||||
|
aiIWDI0FCIMdQzAx7dp4/14hnz76l6fP3DVD2rtQ9gHYR9iDdFP4wujX4G2YKUfX
|
||||||
|
DCqnKVllDLIPHWBD03nZiP69sNJ9WiZf6dv7DuB5knTZhvi7Aplz7nYvlt4nz09E
|
||||||
|
1GznH9KpG0C4A3+1mv54I6/QEMDYEu7NsITSWE2g2gKHkzpfuycPbwAW6Ah+To0=
|
||||||
|
=lF2l
|
||||||
|
-----END PGP SIGNATURE-----
|
3
tdb-1.2.11.tar.gz
Normal file
3
tdb-1.2.11.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:f10eae6361b033131d2deebfcccbcaeb3d8006747005f5240d68e8b70632f6c2
|
||||||
|
size 481298
|
17
tdb.changes
17
tdb.changes
@ -1,3 +1,20 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Dec 2 17:27:15 UTC 2012 - lmuelle@suse.com
|
||||||
|
|
||||||
|
- Update to version 1.2.11.
|
||||||
|
+ Make tdb robust against improper CLEAR_IF_FIRST restart
|
||||||
|
+ Make robust against shrinking tdbs
|
||||||
|
+ add -e option to tdbdump (and docment it).
|
||||||
|
+ tdbdump should log errors, and fail in that case.
|
||||||
|
+ add tdb_rescue()
|
||||||
|
+ Fix a typo
|
||||||
|
+ return unpack error on strdup failure
|
||||||
|
+ finish weaning off err.h.
|
||||||
|
+ don't use err.h in tests.
|
||||||
|
+ make TDB_NOSYNC merely disable sync.
|
||||||
|
+ remove unused debug_fprintf() macro that breaks the build
|
||||||
|
+ tests: fix use of a non-existent word (existant)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Jul 7 15:42:23 UTC 2012 - dvaleev@suse.com
|
Sat Jul 7 15:42:23 UTC 2012 - dvaleev@suse.com
|
||||||
|
|
||||||
|
2
tdb.spec
2
tdb.spec
@ -34,7 +34,7 @@ BuildRequires: pkgconfig
|
|||||||
%endif
|
%endif
|
||||||
BuildRequires: python-devel
|
BuildRequires: python-devel
|
||||||
Url: http://tdb.samba.org/
|
Url: http://tdb.samba.org/
|
||||||
Version: 1.2.10
|
Version: 1.2.11
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Samba Trivial Database
|
Summary: Samba Trivial Database
|
||||||
License: GPL-3.0+
|
License: GPL-3.0+
|
||||||
|
Loading…
Reference in New Issue
Block a user