Compare commits

...

19 Commits

Author SHA1 Message Date
Manuel 1e6b64dced upgpkg: gvisor-git 20240501.0-1
upstream release
2024-05-07 19:41:09 +02:00
Manuel 5643845234 upgpkg: gvisor-git 20240401.0-1
upstream release
2024-04-05 21:25:08 +02:00
Manuel 0bdcf86e67 upgpkg: gvisor-git 20240305.0-1
upstream release
2024-03-07 06:53:26 +01:00
Manuel f830635125 upgpkg: gvisor-git 20240206.0-1
upstream release
2024-02-11 12:11:47 +01:00
Manuel 37e52b320a upgpkg: gvisor-git 20240109.0-1
upstream release
2024-01-12 13:56:12 +01:00
Manuel 43ee169c29 upgpkg: gvisor-git 20231204.0-1
upstream release
2023-12-06 22:36:53 +01:00
Manuel 203fab7b47 upgpkg: gvisor-git 20231106.0-1
upstream release
2023-11-09 14:48:33 +01:00
Manuel 9e3a590350 upgpkg: gvisor-git 20231009.0-1
upstream release
2023-10-12 21:53:21 +02:00
Manuel 0c97cb55dc upgpkg: gvisor-git 20230904.0-1
upstream release
2023-09-08 23:57:58 +02:00
Manuel 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
Manuel 5c52ec18d5 upgpkg: gvisor-git 20230710.0-1 2023-07-13 06:38:29 +02:00
Manuel 36b33a85bc upgpkg: gvisor-git 20230605.0-1 2023-06-08 21:42:39 +02:00
Manuel 65b494881a upgpkg: gvisor-git 20230501.0-1 2023-05-03 18:57:50 +02:00
Manuel 8d94d53212 upgpkg: gvisor-git 20230417.0-1 2023-04-19 21:00:09 +02:00
Manuel 7ebd0c66b6 upgpkg: gvisor-git 20230306.0-1 2023-03-09 20:39:07 +01:00
Manuel 99ed976501 upgpkg: gvisor-git 20230214.0-1 2023-02-18 22:55:33 +01:00
Manuel a4c1731648 upgpkg: gvisor-git 20230102.0-1 2023-01-04 23:07:26 +01:00
Manuel 3f36c8de08 upgpkg: gvisor-git 20221205.0-1 2022-12-08 21:18:26 +01:00
Manuel a8febff259 upgpkg: gvisor-git 20221102.1-1 2022-11-05 12:46:20 +01:00
2 changed files with 5 additions and 5 deletions

View File

@ -1,6 +1,6 @@
pkgbase = gvisor-git
pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use
pkgver = 20220905.0
pkgver = 20240501.0
pkgrel = 1
url = https://gvisor.dev
arch = x86_64

View File

@ -4,7 +4,7 @@
pkgname='gvisor-git'
_pkgbin='runsc'
_pkgshim='containerd-shim-runsc-v1'
pkgver=20220905.0
pkgver=20240501.0
pkgrel=1
pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use'
arch=('x86_64' 'aarch64')
@ -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() {