mirror of
https://git.freebsd.org/ports.git
synced 2025-07-17 01:09:24 -04:00
containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc. WWW: https://containerd.io/ Thanks to Samuel Karp <me@samuelkarp.com> for working on the FreeBSD support which is all upstream already!
13 lines
454 B
Text
13 lines
454 B
Text
--- Makefile.orig 2021-05-03 20:52:36 UTC
|
|
+++ Makefile
|
|
@@ -21,8 +21,8 @@ DESTDIR ?= /usr/local
|
|
TEST_IMAGE_LIST ?=
|
|
|
|
# Used to populate variables in version package.
|
|
-VERSION=$(shell git describe --match 'v[0-9]*' --dirty='.m' --always)
|
|
-REVISION=$(shell git rev-parse HEAD)$(shell if ! git diff --no-ext-diff --quiet --exit-code; then echo .m; fi)
|
|
+VERSION?=unknown
|
|
+REVISION?=unknown
|
|
PACKAGE=github.com/containerd/containerd
|
|
SHIM_CGO_ENABLED ?= 0
|
|
|