Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-containers/flannel/
Date: Sun, 09 Jan 2022 19:10:19
Message-Id: 1641755378.cd5b6de416f1918e56a9bfedb11a5bf93794adab.zmedico@gentoo
1 commit: cd5b6de416f1918e56a9bfedb11a5bf93794adab
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 9 19:09:38 2022 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 9 19:09:38 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd5b6de4
7
8 app-containers/flannel: Bump to version 0.16.1
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
12
13 app-containers/flannel/Manifest | 1 +
14 app-containers/flannel/flannel-0.16.1.ebuild | 54 ++++++++++++++++++++++++++++
15 2 files changed, 55 insertions(+)
16
17 diff --git a/app-containers/flannel/Manifest b/app-containers/flannel/Manifest
18 index 5e758fe9775d..82af2aae9839 100644
19 --- a/app-containers/flannel/Manifest
20 +++ b/app-containers/flannel/Manifest
21 @@ -1,2 +1,3 @@
22 DIST flannel-0.14.0.tar.gz 8324790 BLAKE2B 47fd65d531f9fa10e602ccf1858549ede97d8f8c9afa32ffeb010d733060703262cafd02b5daddc65142dfa96b1c6b429eaff30b7fdaca27e2a5397c0d756e7c SHA512 a5d9f45d55f18c744e635b4d697200cf9d5a8c4387cd6d9c57220e652e3688337f2ee50fef193135dd0073b14edb8800fac8d5ca9f9d0d3e9ef70d09a52f259c
23 DIST flannel-0.16.0.tar.gz 8697548 BLAKE2B a307990554a6cf215bef6ac75a544d00d8c6cd702f02e98efaf80b89d0ecf4592c1c338d1f80cf22ee086355ee7edb77492e6af587cbf037f38b6e3dbc4ac252 SHA512 7b80fe1e282c312b8b242d2201ecd164d87b551f4bc02d8375ca856c0dcfad2d31bd1b4041663016130b0bd7ebaf0062afe59c0946e97f10478142ca8ffd94f0
24 +DIST flannel-0.16.1.tar.gz 8697974 BLAKE2B bff4d5a6fe179129fa9ae494291301b25bc3ff9d6f4049b990f50b01920dfd20d149eb85339e2930b66dd060aca57f269a3b21fa508a3c95f5d152bbfb91631f SHA512 699ba7e7b80dd60a03bb5c6ee384a582201d8167ef21e60816ca9942a9d70ba0fd7633a3d2a44802f9f0a0851a79709afe78bd46f15ca81641ff64d46859f928
25
26 diff --git a/app-containers/flannel/flannel-0.16.1.ebuild b/app-containers/flannel/flannel-0.16.1.ebuild
27 new file mode 100644
28 index 000000000000..ad8fbf25ad4e
29 --- /dev/null
30 +++ b/app-containers/flannel/flannel-0.16.1.ebuild
31 @@ -0,0 +1,54 @@
32 +# Copyright 1999-2022 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +inherit go-module systemd tmpfiles
37 +
38 +KEYWORDS="~amd64 ~arm64"
39 +DESCRIPTION="An etcd backed network fabric for containers"
40 +HOMEPAGE="https://github.com/coreos/flannel"
41 +SRC_URI="https://github.com/coreos/flannel/archive/v${PV}.tar.gz -> ${P}.tar.gz"
42 +
43 +LICENSE="Apache-2.0 BSD ISC LGPL-3 MIT"
44 +SLOT="0"
45 +IUSE="hardened"
46 +
47 +RESTRICT+=" test"
48 +
49 +src_prepare() {
50 + default
51 + sed -e "s:^var Version =.*:var Version = \"${PV}\":" \
52 + -i "${S}/version/version.go" || die
53 +}
54 +
55 +src_compile() {
56 + CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')"\
57 + go build -o dist/flanneld -ldflags "
58 + -X github.com/flannel-io/flannel/version.Version=v${PV}
59 + -extldflags \"-static\"" . || die
60 +}
61 +
62 +src_test() {
63 + GOPATH="${WORKDIR}/${P}" \
64 + go test -v -work -x "${EGO_PN}" || die
65 +}
66 +
67 +src_install() {
68 + dobin dist/${PN}d
69 + exeinto /usr/libexec/flannel
70 + doexe dist/mk-docker-opts.sh
71 + insinto /etc/systemd/system/docker.service.d
72 + newins "${FILESDIR}/flannel-docker.conf" flannel.conf
73 + newinitd "${FILESDIR}"/flanneld.initd flanneld
74 + newconfd "${FILESDIR}"/flanneld.confd flanneld
75 + keepdir /var/log/${PN}
76 + insinto /etc/logrotate.d
77 + newins "${FILESDIR}"/flanneld.logrotated flanneld
78 + newtmpfiles "${FILESDIR}/flannel.tmpfilesd" flannel.conf
79 + systemd_dounit "${FILESDIR}/flanneld.service"
80 + dodoc README.md
81 +}
82 +
83 +pkg_postinst() {
84 + tmpfiles_process flannel.conf
85 +}