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: Fri, 31 Dec 2021 18:33:56
Message-Id: 1640975630.f4f8040318a9832011561a924e196a9eba0e74cc.zmedico@gentoo
1 commit: f4f8040318a9832011561a924e196a9eba0e74cc
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Fri Dec 31 18:33:23 2021 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 31 18:33:50 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4f80403
7
8 app-containers/flannel: Remove old version 0.11.0
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.11.0.ebuild | 55 ----------------------------
15 2 files changed, 56 deletions(-)
16
17 diff --git a/app-containers/flannel/Manifest b/app-containers/flannel/Manifest
18 index 9ee6f0eb03c0..5e758fe9775d 100644
19 --- a/app-containers/flannel/Manifest
20 +++ b/app-containers/flannel/Manifest
21 @@ -1,3 +1,2 @@
22 -DIST flannel-0.11.0.tar.gz 6443391 BLAKE2B 5358e513a73fec6d8fcdb0182ec814fcf204eb12830f7d60acb3d4432f821ccc9e174fcc7adb57584ab1782c3f285e46b51bb0f76635fab9cf851cb2bd40c1b3 SHA512 72d18cd4ec58ede3848da3b94b7f3e33f8dda59d9fceb13864757998a24f0b312bc5b5d7927d3da8a805475efee469095ac09390fa632eb0c6ef9dd0f5d38a3b
23 DIST flannel-0.14.0.tar.gz 8324790 BLAKE2B 47fd65d531f9fa10e602ccf1858549ede97d8f8c9afa32ffeb010d733060703262cafd02b5daddc65142dfa96b1c6b429eaff30b7fdaca27e2a5397c0d756e7c SHA512 a5d9f45d55f18c744e635b4d697200cf9d5a8c4387cd6d9c57220e652e3688337f2ee50fef193135dd0073b14edb8800fac8d5ca9f9d0d3e9ef70d09a52f259c
24 DIST flannel-0.16.0.tar.gz 8697548 BLAKE2B a307990554a6cf215bef6ac75a544d00d8c6cd702f02e98efaf80b89d0ecf4592c1c338d1f80cf22ee086355ee7edb77492e6af587cbf037f38b6e3dbc4ac252 SHA512 7b80fe1e282c312b8b242d2201ecd164d87b551f4bc02d8375ca856c0dcfad2d31bd1b4041663016130b0bd7ebaf0062afe59c0946e97f10478142ca8ffd94f0
25
26 diff --git a/app-containers/flannel/flannel-0.11.0.ebuild b/app-containers/flannel/flannel-0.11.0.ebuild
27 deleted file mode 100644
28 index 9ddf9cc7bedf..000000000000
29 --- a/app-containers/flannel/flannel-0.11.0.ebuild
30 +++ /dev/null
31 @@ -1,55 +0,0 @@
32 -# Copyright 1999-2021 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=6
36 -
37 -inherit golang-vcs-snapshot systemd user tmpfiles
38 -
39 -KEYWORDS="~amd64 ~arm64"
40 -DESCRIPTION="An etcd backed network fabric for containers"
41 -EGO_PN="github.com/coreos/flannel"
42 -HOMEPAGE="https://github.com/coreos/flannel"
43 -SRC_URI="https://${EGO_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
44 -LICENSE="Apache-2.0 BSD ISC LGPL-3 MIT"
45 -SLOT="0"
46 -IUSE="hardened"
47 -RESTRICT="test"
48 -
49 -src_prepare() {
50 - default
51 - sed -e "s:^var Version =.*:var Version = \"${PV}\":" \
52 - -i "${S}/src/${EGO_PN}/version/version.go" || die
53 -}
54 -
55 -src_compile() {
56 - CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')"\
57 - GOPATH="${WORKDIR}/${P}" \
58 - go install -v -work -x ${EGO_BUILD_FLAGS} "${EGO_PN}"
59 - [[ -x bin/${PN} ]] || 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 - newbin "bin/${PN}" ${PN}d
69 - cd "src/${EGO_PN}" || die
70 - exeinto /usr/libexec/flannel
71 - doexe dist/mk-docker-opts.sh
72 - insinto /etc/systemd/system/docker.service.d
73 - newins "${FILESDIR}/flannel-docker.conf" flannel.conf
74 - newinitd "${FILESDIR}"/flanneld.initd flanneld
75 - newconfd "${FILESDIR}"/flanneld.confd flanneld
76 - keepdir /var/log/${PN}
77 - insinto /etc/logrotate.d
78 - newins "${FILESDIR}"/flanneld.logrotated flanneld
79 - newtmpfiles "${FILESDIR}/flannel.tmpfilesd" flannel.conf
80 - systemd_dounit "${FILESDIR}/flanneld.service"
81 - dodoc README.md
82 -}
83 -
84 -pkg_postinst() {
85 - tmpfiles_process flannel.conf
86 -}