Compare commits
26 commits
main
...
packages/g
Author | SHA1 | Date | |
---|---|---|---|
bcc23af4fd | |||
0698415756 | |||
1f84a7e8a6 | |||
72ff7aa113 | |||
b761d9eef8 | |||
79084e8625 | |||
55cc90eb43 | |||
1e6b64dced | |||
5643845234 | |||
0bdcf86e67 | |||
f830635125 | |||
37e52b320a | |||
43ee169c29 | |||
203fab7b47 | |||
9e3a590350 | |||
0c97cb55dc | |||
bd1d92f55b | |||
5c52ec18d5 | |||
36b33a85bc | |||
65b494881a | |||
8d94d53212 | |||
7ebd0c66b6 | |||
99ed976501 | |||
a4c1731648 | |||
3f36c8de08 | |||
a8febff259 |
2 changed files with 7 additions and 7 deletions
4
.SRCINFO
4
.SRCINFO
|
@ -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
|
||||
|
|
10
PKGBUILD
10
PKGBUILD
|
@ -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() {
|
||||
|
|
Loading…
Reference in a new issue