thanks @mrechte, all fixed!!
Search Criteria
Package Details: postgresql16-docs 16.11-2
Package Actions
| Git Clone URL: | https://aur.archlinux.org/postgresql16.git (read-only, click to copy) |
|---|---|
| Package Base: | postgresql16 |
| Description: | HTML documentation for PostgreSQL |
| Upstream URL: | https://www.postgresql.org/ |
| Licenses: | custom:PostgreSQL |
| Provides: | postgresql |
| Submitter: | mrechte |
| Maintainer: | mrechte |
| Last Packager: | mrechte |
| Votes: | 0 |
| Popularity: | 0.000000 |
| First Submitted: | 2025-02-12 16:35 (UTC) |
| Last Updated: | 2025-11-13 17:35 (UTC) |
Dependencies (14)
- clang (llvm-gitAUR, clang-minimal-gitAUR, clang17-binAUR) (make)
- icu (icu-gitAUR) (make)
- krb5 (krb5-gitAUR) (make)
- libldap (libldap-gnutlsAUR) (make)
- libxml2 (libxml2-gitAUR) (make)
- libxslt (libxslt-gitAUR) (make)
- llvm (llvm-gitAUR, llvm-minimal-gitAUR) (make)
- openssl (openssl-gitAUR, openssl-aegisAUR, openssl-staticAUR) (make)
- pam (pam-selinuxAUR) (make)
- perl (perl-gitAUR) (make)
- python (make)
- systemd (systemd-gitAUR, systemd-selinuxAUR) (make)
- tcl (tcl-fossilAUR, tcl84AUR, tcl84AUR) (make)
- zlib (zlib-gitAUR, zlib-ng-compat-gitAUR, zlib-ng-compat) (make)
Required by (406)
- adminer (requires postgresql) (optional)
- adminer-editor (requires postgresql) (optional)
- adminer-git (requires postgresql) (optional)
- akkoma (requires postgresql) (optional)
- akkoma-bin (requires postgresql) (optional)
- akkoma-git (requires postgresql) (optional)
- akonadi-git (requires postgresql) (make)
- akonadi-git (requires postgresql) (optional)
- alerta (requires postgresql) (optional)
- anastasis (requires postgresql)
- anastasis-git (requires postgresql)
- anastasis-gtk (requires postgresql)
- anastasis-gtk-git (requires postgresql)
- appflowy-cloud (requires postgresql) (optional)
- armitage-git (requires postgresql)
- arsse (requires postgresql) (optional)
- arsse-git (requires postgresql) (optional)
- asterisk (requires postgresql) (optional)
- asterisk-lts-18 (requires postgresql) (optional)
- asterisk-lts-20 (requires postgresql) (optional)
- Show 386 more...
Sources (8)
Latest Comments
henjm commented on 2025-11-14 11:10 (UTC)
mrechte commented on 2025-11-13 17:36 (UTC)
@henjm. Thanks for reporting. I just updated the package. Please try to rebuild.
henjm commented on 2025-11-13 16:58 (UTC) (edited on 2025-11-13 16:58 (UTC) by henjm)
I am getting an error when trying to install latest package
==> ERROR: One or more files did not pass the validity check!
-> error making: postgresql16-exit status 1
-> nothing to install for postgresql16
-> Failed to install the following packages. Manual intervention is required:
postgresql16-libs - exit status 1
not sure what other information to provide as this is all I can I see.
mrechte commented on 2025-11-05 12:57 (UTC)
@wlvv thanks for reporting. Let's wait next 16.11 release, the change is already in REL_16_STABLE branch. Should you want to compile now, disable jit by removing --with-llvm flag in PKGBUILD.
wlvv commented on 2025-11-03 10:19 (UTC)
The build fails with llvm >=21 because of an api change in llvm::GlobalValue::getGUID:
llvmjit_inline.cpp:246:54: error: no matching function for call to ‘llvm::GlobalValue::getGUID(char*&)’
246 | funcGUID = llvm::GlobalValue::getGUID(cfuncname);
| ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~
This seems to be fixed in newer versions of postgres by switching the function call:
#if LLVM_VERSION_MAJOR >= 21
funcGUID = llvm::GlobalValue::getGUIDAssumingExternalLinkage(cfuncname);
#else
funcGUID = llvm::GlobalValue::getGUID(cfuncname);
#endif
mrechte commented on 2025-02-21 17:51 (UTC)
Yes I know. It is weird to get such a time error.
In order to build, there is no other solution than bypass the tests passing --nocheck option to makepkg.
Tanghe commented on 2025-02-21 11:47 (UTC)
I have tried removing the timez dependancy and removing the checks but no matter what i do if get the following error.
@@ -2391,7 +2391,7 @@ SELECT make_timestamptz(1846, 12, 10, 0, 0, 0, 'Asia/Manila') AT TIME ZONE 'UTC'; timezone
- Wed Dec 09 15:56:00 1846
- Wed Dec 09 15:56:08 1846 (1 row)
SELECT make_timestamptz(1881, 12, 10, 0, 0, 0, 'Europe/Paris') AT TIME ZONE 'UTC'; ==> ERROR: A failure occurred in check(). Aborting... error: failed to build 'postgresql16-16.6-1 (postgresql16-libs postgresql16)': error: packages failed to build: postgresql16-16.6-1 (postgresql16-libs postgresql16)
mrechte commented on 2025-02-12 16:40 (UTC)
Introduction
Unfortunately, for some unknown reason, AUR maintainer refuses competition with the official package at the same major version.
This version may cohabit with other major versions, including the official one.
Data directory is /var/lib/postgres/data16
Initialize the database
su - postgres
. /opt/postgresql16/bin/pgenv.sh
initdb -k
Start the service
systemctl start postgresql16
Use the service
. /opt/postgresql16/bin/pgenv.sh
psql -U postgres
Pinned Comments
mrechte commented on 2025-02-12 16:40 (UTC)
Introduction
Unfortunately, for some unknown reason, AUR maintainer refuses competition with the official package at the same major version.
This version may cohabit with other major versions, including the official one.
Data directory is /var/lib/postgres/data16
Initialize the database
Start the service
Use the service