diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2015-09-10 08:43:32 +0200 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2015-09-10 11:26:59 +0200 |
commit | 784ae13097131496f26e9601a0b8ee21c80322d8 (patch) | |
tree | 651c42498550b48bf7f0d5e009f7846198aa8a69 /main/tdb | |
parent | 7a9b080c700e21c5995f824823181562d59d5126 (diff) | |
download | aports-784ae13097131496f26e9601a0b8ee21c80322d8.tar.bz2 aports-784ae13097131496f26e9601a0b8ee21c80322d8.tar.xz |
main/tdb: upgrade to 1.3.7
Diffstat (limited to 'main/tdb')
-rw-r--r-- | main/tdb/APKBUILD | 14 | ||||
-rw-r--r-- | main/tdb/fix-libreplace.patch | 29 |
2 files changed, 7 insertions, 36 deletions
diff --git a/main/tdb/APKBUILD b/main/tdb/APKBUILD index 52630590f9..b27a7c046a 100644 --- a/main/tdb/APKBUILD +++ b/main/tdb/APKBUILD @@ -1,6 +1,6 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=tdb -pkgver=1.3.6 +pkgver=1.3.7 pkgrel=0 pkgdesc="The tdb library" url="http://tdb.samba.org/" @@ -60,9 +60,9 @@ libs() { replaces="tdb" } -md5sums="d4df2bcebbcd18463408b5a1ccb5b71b tdb-1.3.6.tar.gz -b8c06c1a37bce8a7feea3b6896483da0 fix-libreplace.patch" -sha256sums="85d7dd247e58d8b303de542a2bc39a3dff9e5f54dea39a94c1c910cee25a59a5 tdb-1.3.6.tar.gz -13617f691c648b44867c1a76d8be7c185021e8a8f3b695f8689a9f6244e65827 fix-libreplace.patch" -sha512sums="be372865e3b809897d46b3ac134de3569185366a0b608e09836e6e37657ae7d0afdcb6b1d4990fee54d16a004e7e792987f51a974fc44fa4632c695e8b1e9341 tdb-1.3.6.tar.gz -4adbbeb75de6c55199e10f284e741ee252f403b7809251caf4baf378669770be01d469b23e12f8119ed5dca5080dd45bda1b5b78cc7a791be44c1eb6fb8c0fa2 fix-libreplace.patch" +md5sums="e3741a19c427255acd1e92c5e09d9df7 tdb-1.3.7.tar.gz +f4d7a813003048db39160daa0d232b92 fix-libreplace.patch" +sha256sums="a64d95ca0cc06a28fed24c6e952aed7660cae04983108735d6bc30b925136412 tdb-1.3.7.tar.gz +a5575ca417fa5d13feb7c52429e1a9f618c0b8640462ba780777be5000499b87 fix-libreplace.patch" +sha512sums="661404df8328a2e7bbb0d7865759e299edafee186f3798c11034c36b2076402a826306007986d6cdd5bf8774d2af7ebf4312a501ca9d9e62a26e504bc13652e4 tdb-1.3.7.tar.gz +9035bfe86b95b11e1a2cfc5a2950b72916faf721667bf813fa7fad482e815ce57cb1cd94504df0e30a0e699a0afe921e6e564d4d284dac6e446f947d63235793 fix-libreplace.patch" diff --git a/main/tdb/fix-libreplace.patch b/main/tdb/fix-libreplace.patch index cfe24757ec..e922be0f1a 100644 --- a/main/tdb/fix-libreplace.patch +++ b/main/tdb/fix-libreplace.patch @@ -1,34 +1,5 @@ --- talloc-2.1.0.orig/lib/replace/replace.c +++ talloc-2.1.0/lib/replace/replace.c -@@ -508,28 +508,6 @@ - # error "You need a strtoll function" - #endif - } --#else --#ifdef HAVE_BSD_STRTOLL --#ifdef HAVE_STRTOQ --long long int rep_strtoll(const char *str, char **endptr, int base) --{ -- long long int nb = strtoq(str, endptr, base); -- /* In linux EINVAL is only returned if base is not ok */ -- if (errno == EINVAL) { -- if (base == 0 || (base >1 && base <37)) { -- /* Base was ok so it's because we were not -- * able to make the convertion. -- * Let's reset errno. -- */ -- errno = 0; -- } -- } -- return nb; --} --#else --#error "You need the strtoq function" --#endif /* HAVE_STRTOQ */ --#endif /* HAVE_BSD_STRTOLL */ - #endif /* HAVE_STRTOLL */ - - @@ -546,28 +524,6 @@ # error "You need a strtoull function" #endif |