Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
aports
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Maxim Karasev
aports
Commits
2e344145
Commit
2e344145
authored
9 years ago
by
Natanael Copa
Browse files
Options
Downloads
Patches
Plain Diff
main/ldb: upgrade to 1.1.21
parent
d51c3aad
Loading
Loading
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
main/ldb/APKBUILD
+7
-7
7 additions, 7 deletions
main/ldb/APKBUILD
main/ldb/fix-libreplace.patch
+0
-29
0 additions, 29 deletions
main/ldb/fix-libreplace.patch
with
7 additions
and
36 deletions
main/ldb/APKBUILD
+
7
−
7
View file @
2e344145
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname
=
ldb
pkgver
=
1.1.2
0
pkgver
=
1.1.2
1
pkgrel
=
0
pkgdesc
=
"A schema-less, ldap like, API and database"
url
=
"http://ldb.samba.org/"
...
...
@@ -64,9 +64,9 @@ tools() {
mv
"
$pkgdir
"
/usr/lib/ldb/libldb-cmdline.
*
"
$subpkgdir
"
/usr/lib/ldb/
}
md5sums
=
"
3d9abbdc334e8dc43e52cf8619bb2c24
ldb-1.1.2
0
.tar.gz
b8c06c1a37bce8a7feea3b6896483da0
fix-libreplace.patch"
sha256sums
=
"
ba493bab271fdaa6ba07960728ffca71c8f9da5240162e86f1e56694b7a377b2
ldb-1.1.2
0
.tar.gz
13617f691c648b44867c1a76d8be7c185021e8a8f3b695f8689a9f6244e6582
7 fix-libreplace.patch"
sha512sums
=
"
432dfa1d64197a74638762bfdfc18b060c5e37890f2c8a21dc5c8f19fc0070123400ad835256b9c1a94631f80d9930d2a2a714e711a60d11af
6a
b
587
bc372155
ldb-1.1.2
0
.tar.gz
4adbbeb75de6c55199e10f284e741ee252f403b7809251caf4baf378669770be01d469b23e12f8119ed5dca5080dd45bda1b5b78cc7a791be44c1eb6fb8c0fa2
fix-libreplace.patch"
md5sums
=
"
94ba09c7452fff68df3481686c56677e
ldb-1.1.2
1
.tar.gz
f4d7a813003048db39160daa0d232b92
fix-libreplace.patch"
sha256sums
=
"
267bbb7f278068eaf0de27adffda2e691a070a93c5c15ee27c828e87b4c7dbf1
ldb-1.1.2
1
.tar.gz
a5575ca417fa5d13feb7c52429e1a9f618c0b8640462ba780777be5000499b8
7 fix-libreplace.patch"
sha512sums
=
"
2ce35bfb2c8db22c87e7adea454ae05cb1234260d9beaaea564e76c5d83d8022610f18db70ad27e0d39d951b62cd17695e2f9f576213f9ac54f7e41841
6a58
3
7 ldb-1.1.2
1
.tar.gz
9035bfe86b95b11e1a2cfc5a2950b72916faf721667bf813fa7fad482e815ce57cb1cd94504df0e30a0e699a0afe921e6e564d4d284dac6e446f947d63235793
fix-libreplace.patch"
This diff is collapsed.
Click to expand it.
main/ldb/fix-libreplace.patch
+
0
−
29
View file @
2e344145
--- 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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment