algernon: update to 1.12.14

This commit is contained in:
Lucy Phipps 2021-10-23 15:51:22 +01:00
parent 1d4da57013
commit 87a59bbc3e
No known key found for this signature in database
GPG Key ID: 8F688A3DB7869BFE
2 changed files with 17 additions and 2 deletions

View File

@ -2,9 +2,9 @@ TERMUX_PKG_HOMEPAGE=https://algernon.roboticoverlords.org/
TERMUX_PKG_DESCRIPTION="Small self-contained web server with Lua, Markdown, QUIC, Redis and PostgreSQL support"
TERMUX_PKG_LICENSE="MIT"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION=1.12.12
TERMUX_PKG_VERSION=1.12.14
TERMUX_PKG_SRCURL=https://github.com/xyproto/algernon/archive/$TERMUX_PKG_VERSION.tar.gz
TERMUX_PKG_SHA256=6127eb975da960fd8aa7732c82f3b5e62d14ea763801778552bdbeec28846bf7
TERMUX_PKG_SHA256=cab5b01923142e0326ea2a01797814bb2e8ea9f7c6c41a3ea0ae7df3b667e86e
TERMUX_PKG_AUTO_UPDATE=true
termux_step_make() {

View File

@ -0,0 +1,15 @@
https://github.com/lib/pq/pull/1060
diff --git a/src/vendor/github.com/lib/pq/user_posix.go b/src/vendor/github.com/lib/pq/user_posix.go
index 227a948e..5f2d439b 100644
--- a/src/vendor/github.com/lib/pq/user_posix.go
+++ b/src/vendor/github.com/lib/pq/user_posix.go
@@ -1,7 +1,7 @@
// Package pq is a pure Go Postgres driver for the database/sql package.
-//go:build aix || darwin || dragonfly || freebsd || linux || nacl || netbsd || openbsd || plan9 || solaris || rumprun || illumos
-// +build aix darwin dragonfly freebsd linux nacl netbsd openbsd plan9 solaris rumprun illumos
+//go:build aix || darwin || dragonfly || freebsd || (linux && !android) || nacl || netbsd || openbsd || plan9 || solaris || rumprun || illumos
+// +build aix darwin dragonfly freebsd linux,!android nacl netbsd openbsd plan9 solaris rumprun illumos
package pq