[arch-commits] Commit in cri-o/repos (6 files)

Christian Hesse eworm at archlinux.org
Tue Feb 2 19:59:29 UTC 2021


    Date: Tuesday, February 2, 2021 @ 19:59:29
  Author: eworm
Revision: 841494

archrelease: copy trunk to community-staging-x86_64

Added:
  cri-o/repos/community-staging-x86_64/
  cri-o/repos/community-staging-x86_64/PKGBUILD
    (from rev 841492, cri-o/trunk/PKGBUILD)
  cri-o/repos/community-staging-x86_64/cri-o-1.19.0-pinns_pie.patch
    (from rev 841492, cri-o/trunk/cri-o-1.19.0-pinns_pie.patch)
  cri-o/repos/community-staging-x86_64/cri-o.install
    (from rev 841492, cri-o/trunk/cri-o.install)
  cri-o/repos/community-staging-x86_64/modules-cri-o.conf
    (from rev 841492, cri-o/trunk/modules-cri-o.conf)
  cri-o/repos/community-staging-x86_64/sysctl-cri-o.conf
    (from rev 841492, cri-o/trunk/sysctl-cri-o.conf)

------------------------------+
 PKGBUILD                     |   87 +++++++++++++++++++++++++++++++++++++++++
 cri-o-1.19.0-pinns_pie.patch |   33 +++++++++++++++
 cri-o.install                |    8 +++
 modules-cri-o.conf           |    2 
 sysctl-cri-o.conf            |    3 +
 5 files changed, 133 insertions(+)

Copied: cri-o/repos/community-staging-x86_64/PKGBUILD (from rev 841492, cri-o/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2021-02-02 19:59:29 UTC (rev 841494)
@@ -0,0 +1,87 @@
+# Maintainer: David Runge <dvzrv at archlinux.org>
+# Contributor: Tony Lambiris <tony at libpcap.net>
+
+pkgname=cri-o
+pkgver=1.20.0
+pkgrel=2
+pkgdesc="Open Container Initiative-based implementation of Kubernetes Container Runtime Interface"
+arch=('x86_64')
+url="https://github.com/cri-o/cri-o"
+license=('Apache')
+depends=('cni-plugins' 'conmon' 'conntrack-tools' 'containers-common'
+'device-mapper' 'glibc' 'iproute2' 'iptables' 'runc')
+makedepends=('apparmor' 'btrfs-progs' 'gpgme' 'go' 'go-md2man' 'libassuan'
+'libseccomp' 'ostree')
+optdepends=('apparmor: for apparmor integration'
+            'btrfs-progs: for btrfs support')
+provides=('container-runtime')
+backup=('etc/crio/crio.conf'
+        'etc/cni/net.d/100-crio-bridge.conf'
+        'etc/cni/net.d/199-crio-loopback.conf'
+)
+# configuration override and hook directories should exist
+options=('emptydirs')
+install="${pkgname}.install"
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/v${pkgver}.tar.gz"
+        "modules-${pkgname}.conf"
+        "sysctl-${pkgname}.conf"
+        "${pkgname}-1.19.0-pinns_pie.patch")
+sha512sums=('9bc718d0f2e082947f592e3a26f75a8a05116defecff7270f058e47ca0d0ba0a2a581ee155df15d5466e6dff8049bd52abc883577d7b917a0342d2133649d46c'
+            '85ee1310cb36c85c42b4068a9549a3ef72b856cd61b2c1036c3e871ef43a69ed80b43599ad94ce5b069ddd823e730596bb3d3875d4ba8cd77c4cc1985335ffff'
+            'fbcc3c29d5d3dedf56ea96577dec50cb2656b4a22f5a82bf2d600ae20c6b113d35d5db116bac5520398d47a22d40835f56b86433c5713924060e1a7018d297ec'
+            '1eb382a0a5c273a6ed1df9666ff2b7a83cdb513818f85ca9984da254aecf518580c1b13410715eb73fd1bc7d687a4fd6ef5ae30eb11a1046e422157f117aeb1a')
+b2sums=('6a13a7cae521f3c0daaadb01ce5865ec5b38395f581d9cc14a31ca83418f5bc8dd06c232f6a3fdd681326ddb578df22b7759393ddc45b51ea28344e3c7ee2410'
+        '2771c64b45876d728fc139aa90754df8aadb07e14a7e1126a1488dfcbad7ebcbca923cb0230c4b87acdc6dad8243af2ad06ef4ce587d5c71fc200e40835d8b8d'
+        'c8a2133df6575c54eb9bd0a89a0c6c764c0cd456bff7338c4a2e1ef4f70a5a778d5a05c335fcf2491ed55e15fc36c677853c0bc8ab66d673f1950fa2c7695f6e'
+        '8d77c8060f483c943bd48d9bc2c1d676878e570b29989b7ff733906612b6dff09ed1ffcabc5174175ebc667df897e37e98a8132016bddcb27137661fca2da6dd')
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+  # make sure that /run instead of /var/run is used
+  sed -e 's|/var/run|/run|g' \
+      -i crictl.yaml pkg/config/config{,_unix}.go \
+      docs/*.md crio-umount.conf \
+      vendor/github.com/containers/conmon/runner/config/config_unix.go
+  # make sure that /usr/bin is used in systemd units
+  sed -e 's|/usr/local|/usr|g' \
+      -i contrib/systemd/*.service
+  # set the correct default PATH for cni-plugins
+  sed -e 's|/opt/cni/bin/|/usr/lib/cni/|g' \
+      -i pkg/config/config_unix.go
+  # do not statically link pinns and enable PIE
+  patch -Np1 -i "../${pkgname}-1.19.0-pinns_pie.patch"
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external -mod=readonly -modcacherw"
+
+  make GO_MD2MAN=/usr/bin/go-md2man
+}
+
+package() {
+  depends+=('libdevmapper.so' 'libgpgme.so' 'libseccomp.so')
+  cd "${pkgname}-${pkgver}"
+  # makefile is mixing DESTDIR and PREFIX
+  make install install.systemd GO_MD2MAN=/usr/bin/go-md2man DESTDIR="${pkgdir}" PREFIX="${pkgdir}/usr"
+  # install CNI configs
+  install -vDm 644 contrib/cni/10-crio-bridge.conf "${pkgdir}/etc/cni/net.d/100-crio-bridge.conf"
+  install -vDm 644 contrib/cni/99-loopback.conf "${pkgdir}/etc/cni/net.d/199-crio-loopback.conf"
+  # modules
+  install -vDm 644 "../modules-${pkgname}.conf" "${pkgdir}/usr/lib/modules-load.d/cri-o.conf"
+  # sysctl
+  install -vDm 644 "../sysctl-${pkgname}.conf" "${pkgdir}/usr/lib/sysctl.d/90-cri-o.conf"
+  # docs
+  install -vDm 644 {CONTRIBUTING,README,awesome,code-of-conduct,install,transfer,tutorial}.md \
+    -t "${pkgdir}/usr/share/doc/${pkgname}/"
+  install -vDm 644 tutorials/*.md \
+    -t "${pkgdir}/usr/share/doc/${pkgname}/tutorials/"
+  install -vDm 644 contrib/cni/*.{conf,md} \
+    -t "${pkgdir}/usr/share/doc/${pkgname}/examples/cni/"
+  install -vDm 644 contrib/metrics-exporter/{Containerfile,*.{yaml,gif,json,go}} \
+    -t "${pkgdir}/usr/share/doc/${pkgname}/examples/metrics-exporter/"
+}

Copied: cri-o/repos/community-staging-x86_64/cri-o-1.19.0-pinns_pie.patch (from rev 841492, cri-o/trunk/cri-o-1.19.0-pinns_pie.patch)
===================================================================
--- community-staging-x86_64/cri-o-1.19.0-pinns_pie.patch	                        (rev 0)
+++ community-staging-x86_64/cri-o-1.19.0-pinns_pie.patch	2021-02-02 19:59:29 UTC (rev 841494)
@@ -0,0 +1,33 @@
+diff -ruN a/Makefile b/Makefile
+--- a/Makefile	2020-09-14 15:46:17.000000000 +0200
++++ b/Makefile	2020-10-28 16:14:38.476052535 +0100
+@@ -157,7 +157,7 @@
+ 		-x ${SHELLFILES}
+ 
+ bin/pinns:
+-	$(MAKE) -C pinns
++	$(MAKE) -C pinns LDFLAGS=$(LDFLAGS)
+ 
+ test/copyimg/copyimg: $(GO_FILES) .gopathok
+ 	$(GO_BUILD) $(GCFLAGS) $(GO_LDFLAGS) -tags "$(BUILDTAGS)" -o $@ $(PROJECT)/test/copyimg
+diff -ruN a/pinns/Makefile b/pinns/Makefile
+--- a/pinns/Makefile	2020-09-14 15:46:17.000000000 +0200
++++ b/pinns/Makefile	2020-10-28 16:24:25.212722369 +0100
+@@ -1,15 +1,15 @@
+ src = $(wildcard src/*.c)
+ obj = $(src:.c=.o)
+ 
++LDFLAGS ?=
+ STRIP ?= strip
+ override LIBS +=
+ CFLAGS ?= -std=c99 -Os -Wall -Werror -Wextra
+-override CFLAGS += -static
+ 
+ all: ../bin/pinns
+ 
+ ../bin/pinns: $(obj) | ../bin
+-	$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
++	$(CC) -o $@ $^ $(CFLAGS) $(LDFLAGS) $(LIBS)
+ 	$(STRIP) -s $@
+ 
+ %.o: %.c $(HEADERS)

Copied: cri-o/repos/community-staging-x86_64/cri-o.install (from rev 841492, cri-o/trunk/cri-o.install)
===================================================================
--- community-staging-x86_64/cri-o.install	                        (rev 0)
+++ community-staging-x86_64/cri-o.install	2021-02-02 19:59:29 UTC (rev 841494)
@@ -0,0 +1,8 @@
+post_install() {
+  if ! grep "br_netfilter" /proc/modules; then
+    echo "Load the br_netfilter kernel module or reboot: modprobe br_netfilter."
+  fi
+  if ! grep "overlay" /proc/modules; then
+    echo "Load the overlay kernel module (if required) or reboot: modprobe overlay."
+  fi
+}

Copied: cri-o/repos/community-staging-x86_64/modules-cri-o.conf (from rev 841492, cri-o/trunk/modules-cri-o.conf)
===================================================================
--- community-staging-x86_64/modules-cri-o.conf	                        (rev 0)
+++ community-staging-x86_64/modules-cri-o.conf	2021-02-02 19:59:29 UTC (rev 841494)
@@ -0,0 +1,2 @@
+br_netfilter
+overlay

Copied: cri-o/repos/community-staging-x86_64/sysctl-cri-o.conf (from rev 841492, cri-o/trunk/sysctl-cri-o.conf)
===================================================================
--- community-staging-x86_64/sysctl-cri-o.conf	                        (rev 0)
+++ community-staging-x86_64/sysctl-cri-o.conf	2021-02-02 19:59:29 UTC (rev 841494)
@@ -0,0 +1,3 @@
+net.bridge.bridge-nf-call-iptables = 1
+net.bridge.bridge-nf-call-ip6tables = 1
+net.ipv4.ip_forward = 1



More information about the arch-commits mailing list