diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2018-02-09 16:32:42 +0100 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2018-02-09 16:32:42 +0100 |
commit | 82a9176fb565d7ec7278ff6b6f5a0f41735e7dbb (patch) | |
tree | 61933b0d8661d47e28d2221fe8ed9b4e13468731 /app-emulation/flannel/flannel-0.9.0.ebuild | |
parent | app-emulation/flannel: Version bump to 0.10.0 (diff) | |
download | gentoo-82a9176fb565d7ec7278ff6b6f5a0f41735e7dbb.tar.gz gentoo-82a9176fb565d7ec7278ff6b6f5a0f41735e7dbb.tar.bz2 gentoo-82a9176fb565d7ec7278ff6b6f5a0f41735e7dbb.zip |
app-emulation/flannel: Remove old
Package-Manager: Portage-2.3.24, Repoman-2.3.6
Diffstat (limited to 'app-emulation/flannel/flannel-0.9.0.ebuild')
-rw-r--r-- | app-emulation/flannel/flannel-0.9.0.ebuild | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/app-emulation/flannel/flannel-0.9.0.ebuild b/app-emulation/flannel/flannel-0.9.0.ebuild deleted file mode 100644 index 5135efe94f88..000000000000 --- a/app-emulation/flannel/flannel-0.9.0.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit golang-vcs-snapshot systemd user - -KEYWORDS="~amd64" -DESCRIPTION="An etcd backed network fabric for containers" -EGO_PN="github.com/coreos/flannel" -HOMEPAGE="https://github.com/coreos/flannel" -SRC_URI="https://${EGO_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" -LICENSE="Apache-2.0" -SLOT="0" -IUSE="hardened" -RESTRICT="test" - -src_prepare() { - default - sed -e "s:^var Version =.*:var Version = \"${PV}\":" \ - -i "${S}/src/${EGO_PN}/version/version.go" || die -} - -src_compile() { - CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')"\ - GOPATH="${WORKDIR}/${P}" \ - go install -v -work -x ${EGO_BUILD_FLAGS} "${EGO_PN}" - [[ -x bin/${PN} ]] || die -} - -src_test() { - GOPATH="${WORKDIR}/${P}" \ - go test -v -work -x "${EGO_PN}" || die -} - -src_install() { - newbin "bin/${PN}" ${PN}d - cd "src/${EGO_PN}" || die - exeinto /usr/libexec/flannel - doexe dist/mk-docker-opts.sh - insinto /etc/systemd/system/docker.service.d - newins "${FILESDIR}/flannel-docker.conf" flannel.conf - newinitd "${FILESDIR}"/flanneld.initd flanneld - newconfd "${FILESDIR}"/flanneld.confd flanneld - keepdir /var/log/${PN} - insinto /etc/logrotate.d - newins "${FILESDIR}"/flanneld.logrotated flanneld - systemd_newtmpfilesd "${FILESDIR}/flannel.tmpfilesd" flannel.conf - systemd_dounit "${FILESDIR}/flanneld.service" - dodoc README.md -} |