Compare commits

...

26 commits

Author SHA1 Message Date
bcc23af4fd upgpkg: gvisor-git 20241104.0-1
upstream release
2024-11-08 21:49:39 +01:00
0698415756 upgpkg: gvisor-git 20241007.0-1
upstream release
2024-10-09 23:12:50 +02:00
1f84a7e8a6 upgpkg: gvisor-git 20240916.0-1
upstream release
2024-09-19 19:55:52 +02:00
72ff7aa113 upgpkg: gvisor-git 20240807.0-1
upstream release
2024-08-09 16:56:36 +02:00
b761d9eef8 upgpkg: gvisor-git 20240715.0-1
upstream release
2024-07-21 07:39:22 +02:00
79084e8625 Adopt SPDX identifiers for license fields 2024-07-21 07:32:40 +02:00
55cc90eb43 upgpkg: gvisor-git 20240603.0-1
upstream release
2024-06-11 21:54:21 +02:00
1e6b64dced upgpkg: gvisor-git 20240501.0-1
upstream release
2024-05-07 19:41:09 +02:00
5643845234 upgpkg: gvisor-git 20240401.0-1
upstream release
2024-04-05 21:25:08 +02:00
0bdcf86e67 upgpkg: gvisor-git 20240305.0-1
upstream release
2024-03-07 06:53:26 +01:00
f830635125 upgpkg: gvisor-git 20240206.0-1
upstream release
2024-02-11 12:11:47 +01:00
37e52b320a upgpkg: gvisor-git 20240109.0-1
upstream release
2024-01-12 13:56:12 +01:00
43ee169c29 upgpkg: gvisor-git 20231204.0-1
upstream release
2023-12-06 22:36:53 +01:00
203fab7b47 upgpkg: gvisor-git 20231106.0-1
upstream release
2023-11-09 14:48:33 +01:00
9e3a590350 upgpkg: gvisor-git 20231009.0-1
upstream release
2023-10-12 21:53:21 +02:00
0c97cb55dc upgpkg: gvisor-git 20230904.0-1
upstream release
2023-09-08 23:57:58 +02:00
bd1d92f55b upgpkg: gvisor-git 20230801.0-1
upstream release
Better support debug packages
Remove unnecessary GO111MODULE=on
Fix version not being written correctly
2023-08-05 15:21:52 +02:00
5c52ec18d5 upgpkg: gvisor-git 20230710.0-1 2023-07-13 06:38:29 +02:00
36b33a85bc upgpkg: gvisor-git 20230605.0-1 2023-06-08 21:42:39 +02:00
65b494881a upgpkg: gvisor-git 20230501.0-1 2023-05-03 18:57:50 +02:00
8d94d53212 upgpkg: gvisor-git 20230417.0-1 2023-04-19 21:00:09 +02:00
7ebd0c66b6 upgpkg: gvisor-git 20230306.0-1 2023-03-09 20:39:07 +01:00
99ed976501 upgpkg: gvisor-git 20230214.0-1 2023-02-18 22:55:33 +01:00
a4c1731648 upgpkg: gvisor-git 20230102.0-1 2023-01-04 23:07:26 +01:00
3f36c8de08 upgpkg: gvisor-git 20221205.0-1 2022-12-08 21:18:26 +01:00
a8febff259 upgpkg: gvisor-git 20221102.1-1 2022-11-05 12:46:20 +01:00
2 changed files with 7 additions and 7 deletions

View file

@ -1,11 +1,11 @@
pkgbase = gvisor-git
pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use
pkgver = 20220905.0
pkgver = 20241104.0
pkgrel = 1
url = https://gvisor.dev
arch = x86_64
arch = aarch64
license = Apache
license = Apache-2.0
makedepends = git
makedepends = go
optdepends = docker: for Docker runtime support

View file

@ -4,12 +4,12 @@
pkgname='gvisor-git'
_pkgbin='runsc'
_pkgshim='containerd-shim-runsc-v1'
pkgver=20220905.0
pkgver=20241104.0
pkgrel=1
pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use'
arch=('x86_64' 'aarch64')
url='https://gvisor.dev'
license=('Apache')
license=('Apache-2.0')
makedepends=('git' 'go')
optdepends=('docker: for Docker runtime support')
provides=(
@ -32,10 +32,10 @@ build() {
export CGO_CFLAGS="${CFLAGS}"
export CGO_CXXFLAGS="${CXXFLAGS}"
export CGO_LDFLAGS="${LDFLAGS}"
export GO111MODULE=on
export GOPATH="${srcdir}"
export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
CGO_ENABLED=0 go build -v -o "bin/$_pkgbin" -ldflags "-X main.version=${pkgver}" gvisor.dev/gvisor/runsc
go build -v -o "bin/$_pkgshim" gvisor.dev/gvisor/shim
go build -v -o "bin/$_pkgbin" -ldflags "-linkmode=external -compressdwarf=false -X gvisor.dev/gvisor/runsc/version.version=${pkgver}" gvisor.dev/gvisor/runsc
go build -v -o "bin/$_pkgshim" -ldflags "-linkmode=external -compressdwarf=false" gvisor.dev/gvisor/shim
}
package() {