Search Criteria
Package Details: tiledb 2.26.1-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/tiledb.git (read-only, click to copy) |
---|---|
Package Base: | tiledb |
Description: | The Universal Storage Engine |
Upstream URL: | https://tiledb.com/ |
Licenses: | MIT |
Submitter: | mortymacs |
Maintainer: | sixy6e |
Last Packager: | sixy6e |
Votes: | 0 |
Popularity: | 0.000000 |
First Submitted: | 2022-01-29 20:02 (UTC) |
Last Updated: | 2024-09-23 00:37 (UTC) |
Dependencies (11)
- aws-sdk-cpp (aws-sdk-cpp-gitAUR)
- bzip2 (bzip2-gitAUR)
- curl (curl-quiche-gitAUR, curl-http3-ngtcp2AUR, curl-gitAUR, curl-c-aresAUR)
- libwebp (libwebp-gitAUR)
- lz4 (lz4-gitAUR)
- openssl (openssl-gitAUR, openssl-staticAUR)
- spdlog (spdlog-gitAUR)
- zlib (zlib-ng-compat-gitAUR, zlib-gitAUR, zlib-ng-compat)
- zstd (zstd-gitAUR, zstd-staticAUR)
- cmake (cmake-gitAUR) (make)
- git (git-gitAUR, git-glAUR) (make)
Latest Comments
sixy6e commented on 2023-10-13 01:20 (UTC)
Thanks @pekkarr for the helpful tips, on creating a better and more inline with AUR package build. I'll take a look this weekend at updating the build script. I believe some of the "depends" items were disabled by the original maintainer as the builds started to fail.
In the meantime, I've just bumped the version to "2.17.1".
pekkarr commented on 2023-09-29 11:24 (UTC)
A few comments about the PKGBUILD:
dependencies:
makedepends=('make')
is unnecessary, sincemake
is a dependency of thebase-devel
package.git
should be added tomakedepends
, because the build downloads external sources with git.gcc
should be removed fromdepends
. It is only needed during build, but sincegcc
is a dependency ofbase-devel
, it's not needed inmakedepends
either.cmake
should be moved fromdepends
tomakedepends
, since it's only needed during build.libwebp
should be removed fromdepends
. Thebootstrap
command explicitly disables the webp feature with--disable-webp
, solibwebp
isn't needed.spdlog
should be added todepends
. The build process automatically downloadsspdlog
if it's not found in the system, but using the official Arch package would be better.curl
andopenssl
should also be added todepends
, since the package links to shared libraries from those packages.build:
bootstrap
command, the prefix should be simply/usr
. First of all, packages should never be installed to/usr/local
. Secondly, specifying$pkgdir
in the prefix is wrong: the result is that the package expects that it's installed into$pkgdir
directory even at runtime. For example, the pkg-config metadata in the package will have$pkgdir
as a prefix. The correct way to handle the installation into$pkgdir
is to use theDESTDIR
variable in themake install
phase, in this case it should bemake DESTDIR="$pkgdir" install-tiledb
.-j
option tomake
shouldn't be used without a good reason. Users can set their preferred parallel job count inMAKEFLAGS
inmakepkg.conf
, and-j "$(nproc)"
in PKGBUILD overrides that. The correct build command would be simplymake
.Also there's a new upstream release of the package,
2.17.1
.mortymacs commented on 2023-05-12 21:55 (UTC)
@sixy6e thank you! Sure, you can take ownership of the package by clicking on the "Adopt Package" link.
sixy6e commented on 2023-05-12 11:44 (UTC)
Thanks so much for looking further into this. I'll go ahead with your suggestion and include some additional comments on your GitHub ticket with the TileDB folks.
Oh, that's a shame, I hope your new distro is working out well. In regards to the upkeep of this package, is it something that any user can just adopt? I wouldn't mind picking it up for a while if that's a possibility.
mortymacs commented on 2023-05-11 07:52 (UTC) (edited on 2023-05-11 07:53 (UTC) by mortymacs)
@sixy6e, I tried these steps inside a container:
But I got this error:
There is a ticket on TileDB, and you can contribute and explain your issue: https://github.com/TileDB-Inc/TileDB/issues/3189
I'm not using ArchLinux anymore, so I disowned the package.
sixy6e commented on 2023-05-11 06:53 (UTC)
Just now with a manual build I had success in forcing gcc=gcc-11 and c++=c++-11 and building 2.15.2.
So it seems related to the compiler.
I'll test again in a few hours using your PKGBUILD and forcing the same compiler version (gcc-11).
sixy6e commented on 2023-05-11 06:50 (UTC)
A bunch of these:
error: incomplete type ‘tiledb::api::CAPIFunctionContext<tiledb::api::tiledb_query_add_update_value>’ used in nested name specifier 638 | CAPIFunctionContext<f>::function_with_context; | ^~~~~~~~~~~~~~~~~~~~~
And finishing off with this:
[ 10%] Building CXX object tiledb/type/range/CMakeFiles/range.dir/range.cc.o make[4]: *** [CMakeFiles/Makefile2:2385: tiledb/CMakeFiles/TILEDB_CORE_OBJECTS.dir/all] Error 2 make[4]: *** Waiting for unfinished jobs.... [ 10%] Built target capi_data_order [ 10%] Built target capi_datatype [ 10%] Built target range make[3]: *** [Makefile:146: all] Error 2 make[2]: *** [CMakeFiles/tiledb.dir/build.make:86: tiledb-prefix/src/tiledb-stamp/tiledb-build] Error 2 make[1]: *** [CMakeFiles/Makefile2:204: CMakeFiles/tiledb.dir/all] Error 2 make: *** [Makefile:91: all] Error 2 ==> ERROR: A failure occurred in build(). Aborting... -> error making: tiledb-exit status 4 -> Failed to install the following packages. Manual intervention is required: tiledb - exit status 4
mortymacs commented on 2023-05-11 06:48 (UTC)
Hi @sixy6e,
What error you got?
sixy6e commented on 2023-05-11 04:21 (UTC)
Hey @mortymacs, thanks for creating this package. I'm wondering if you've had any recent success in building this package? I'm trying to upgrade from 2.8.0 but compilation fails. I've tried both this AUR package as well as manual and both fail. I've recently upgraded gcc to:
gcc version 13.1.1 20230429 (GCC)
which may have something to do with the failing build (as I can't even replicate the 2.8.0 build now).
Cheers