Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
aports
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
680
Issues
680
List
Boards
Labels
Service Desk
Milestones
Merge Requests
207
Merge Requests
207
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
alpine
aports
Commits
975de2c6
Commit
975de2c6
authored
Oct 05, 2018
by
Andy Postnikov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
community/libcouchbase: upgrade to 2.9.5 and modernize
parent
b6af8c59
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
43 deletions
+4
-43
community/libcouchbase/APKBUILD
community/libcouchbase/APKBUILD
+4
-6
community/libcouchbase/disable_git_version_check.patch
community/libcouchbase/disable_git_version_check.patch
+0
-37
No files found.
community/libcouchbase/APKBUILD
View file @
975de2c6
# Contributor: Nathan Johnson <nathan@nathanjohnson.info>
# Maintainer: Nathan Johnson <nathan@nathanjohnson.info>
pkgname
=
libcouchbase
pkgver
=
2.9.
3
pkgrel
=
1
pkgver
=
2.9.
5
pkgrel
=
0
pkgdesc
=
"C client library for Couchbase"
url
=
"https://developer.couchbase.com/community"
arch
=
"all"
license
=
"Apache-2.0"
depends
=
depends_dev
=
"musl-dev libressl-dev snappy-dev"
makedepends
=
"
$depends_dev
cmake perl libtool libev-dev libevent-dev libuv-dev"
subpackages
=
"
$pkgname
-dev
$pkgname
-bin
$pkgname
-doc
$pkgname
-libevent
$pkgname
-libev
$pkgname
-libuv"
source
=
"
$pkgname
-
$pkgver
.tar.gz::https://github.com/couchbase/libcouchbase/archive/
$pkgver
.tar.gz
disable_git_version_check.patch
fix_socktest.patch"
builddir
=
"
$srcdir
/
$pkgname
-
$pkgver
"
...
...
@@ -21,6 +19,7 @@ build() {
cd
"
$builddir
"
/build
../cmake/configure
\
--prefix
=
/usr
\
--skip-git-version
\
--disable-couchbasemock
make
}
...
...
@@ -74,6 +73,5 @@ bin() {
mv
"
$pkgdir
"
/usr/bin
"
$subpkgdir
"
/usr/
}
sha512sums
=
"79b842967beaec0f26244b8ea18fa588d00356e04c47c052234cb15a2b3b1b2134e9d8cad5f5c1958321ec0c762b59785d37b2ac275e80eab5693b7dd252bceb libcouchbase-2.9.3.tar.gz
987b76b9c8a38a1f144bcada3c24192b30b352c993c433f4a2a1e381b765ae6bb845ebc6393c794da1b4efbb68fd1d34b027104fecf5c9bcc29b0f58c7f6a474 disable_git_version_check.patch
sha512sums
=
"ab6d03e5d05bf85d5d6626432895bc4eccc37a0efa56d0997fa4316fb54dcbade81ecfc04858a1a8f0e2747b1aff5184a5762860ce6280ca67bd8fa1bea813e9 libcouchbase-2.9.5.tar.gz
72319b86fdd91728723ccb091e72199788a84e2ec9ea12c0fcd1ed686eb155ec11e0addbff96735f83e7f31764a85650f0483b6e76d3a8bee16f71b2751fe4a9 fix_socktest.patch"
community/libcouchbase/disable_git_version_check.patch
deleted
100644 → 0
View file @
b6af8c59
--- a/cmake/Modules/GetVersionInfo.cmake
+++ b/cmake/Modules/GetVersionInfo.cmake
@@ -7,34 +7,6 @@
# LCB_VERSION_MINOR
# LCB_VERSION_PATCH
-## Try git first ##
-FIND_PROGRAM(GIT_EXECUTABLE NAMES git git.exe)
-MACRO(RUNGIT outvar)
- EXECUTE_PROCESS(COMMAND git ${ARGN}
- OUTPUT_VARIABLE ${outvar}
- WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}
- OUTPUT_STRIP_TRAILING_WHITESPACE)
-ENDMACRO()
-
-if (GIT_EXECUTABLE)
- RUNGIT(LCB_REVDESCRIBE describe --long)
- RUNGIT(LCB_VERSION describe)
- STRING(REPLACE "-" "_" LCB_VERSION "${LCB_VERSION}")
- MESSAGE(STATUS "Sanitized VERSION=${LCB_VERSION}")
- RUNGIT(LCB_VERSION_CHANGESET rev-parse HEAD)
-
- EXECUTE_PROCESS(
- COMMAND echo ${LCB_VERSION}
- COMMAND awk -F. "{printf \"0x%0.2d%0.2d%0.2d\", $1, $2, $3}"
- WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}
- OUTPUT_VARIABLE LCB_VERSION_HEX)
-ENDIF()
-
-IF(LCB_VERSION)
- # Have the version information
- CONFIGURE_FILE(${LCB_GENINFODIR}/distinfo.cmake.in ${LCB_GENINFODIR}/distinfo.cmake)
-ENDIF()
-
# library version
IF(NOT LCB_VERSION AND EXISTS ${LCB_GENINFODIR}/distinfo.cmake)
INCLUDE(${LCB_GENINFODIR}/distinfo.cmake)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment