public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "William Hubbs" <williamh@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/nomad/
Date: Mon,  1 Mar 2021 22:27:54 +0000 (UTC)	[thread overview]
Message-ID: <1614637667.fee7adf5f060a26b44b1ebbe32a5956b374fcc64.williamh@gentoo> (raw)

commit:     fee7adf5f060a26b44b1ebbe32a5956b374fcc64
Author:     William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Mon Mar  1 22:25:58 2021 +0000
Commit:     William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Mon Mar  1 22:27:47 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fee7adf5

sys-cluster/nomad: remove vulnerable versions

Bug: https://bugs.gentoo.org/768309
Signed-off-by: William Hubbs <williamh <AT> gentoo.org>

 sys-cluster/nomad/Manifest            |  2 --
 sys-cluster/nomad/nomad-0.12.8.ebuild | 45 -----------------------------------
 sys-cluster/nomad/nomad-1.0.1.ebuild  | 45 -----------------------------------
 3 files changed, 92 deletions(-)

diff --git a/sys-cluster/nomad/Manifest b/sys-cluster/nomad/Manifest
index 33e78cfa5e2..9d0b5bc1691 100644
--- a/sys-cluster/nomad/Manifest
+++ b/sys-cluster/nomad/Manifest
@@ -1,3 +1 @@
-DIST nomad-0.12.8.tar.gz 51472616 BLAKE2B 17316e4305edc5a74d640d1bd46e1f997ae43727a6c6dcc5df19af64c659a9b00e4fa2c45c92d70ff70b465278b1bb5c03d81d041facf89549faba17d86efa96 SHA512 c4615043bd1ce3c28cc9a564d58cc0ebbd197b4761763f4d4106fc8d36678c1d8b5b697a38c5ec1093d7d3973b700cd5f32415ec10b8c00546aa1707dea25231
-DIST nomad-1.0.1.tar.gz 51101330 BLAKE2B ee955890e7d3cb093c05f91bb4ad4c33f65048875fbf626b8c40975b21c81b8c9802288cc90953a7639ae8b03ba01f1f65320d711bf884aa27c80bfcecccb73b SHA512 07032f965c5826882a4ce0acd7ef2a5d74cc5f0c439b030a4787e60c474070797c5f88d84353e5d423c1d0f6ac411119fd40eebb57848d4eecd8394477fbffa2
 DIST nomad-1.0.4.tar.gz 39538107 BLAKE2B ff72d527e23ce01a6ef0201e3606f4f66933f3c205123a32f503947710de3221476ce738b92becb147a8570c65bb5f4707fad480889197f605840197cfa13155 SHA512 935c8a6924434548f65b162c15f9ca14383546a1e0cea0694312f323d776d92863357f82c7ab53408e76c5c966986c0a511eda8a35043cf21c1020634c6e2ae4

diff --git a/sys-cluster/nomad/nomad-0.12.8.ebuild b/sys-cluster/nomad/nomad-0.12.8.ebuild
deleted file mode 100644
index 390774fda6a..00000000000
--- a/sys-cluster/nomad/nomad-0.12.8.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 2020-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit go-module systemd
-GIT_COMMIT=99fa2774301199ee20e661c7c1832a6ee1d5c553
-
-DESCRIPTION="A simple and flexible workload orchestrator"
-HOMEPAGE="https://nomadproject.io"
-SRC_URI="https://github.com/hashicorp/nomad/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MPL-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="nvidia"
-
-RESTRICT+=" test"
-
-src_compile() {
-	local go_ldflags go_tags
-	go_ldflags="-X github.com/hashicorp/nomad/version.GitCommit=${GIT_COMMIT}"
-	go_tags="codegen_generated $(usex nvidia '' 'nonvidia')"
-	CGO_ENABLED=1 \
-		go build \
-		-trimpath \
-		-ldflags "${go_ldflags}" \
-		-mod=vendor \
-		-tags "${go_tags}" \
-		-o bin/${PN} || die "compile failed"
-}
-
-src_install() {
-	dobin bin/${PN}
-	systemd_dounit dist/systemd/nomad.service
-	insinto /etc/nomad.d
-	newins dist/client.hcl client.hcl.example
-	newins dist/server.hcl server.hcl.example
-	einstalldocs
-	dodoc CHANGELOG.md
-	keepdir /var/lib/nomad /var/log/nomad
-	newconfd "${FILESDIR}/nomad.confd" nomad
-	newinitd "${FILESDIR}/nomad.initd" nomad
-	insinto /etc/logrotate.d
-	newins "${FILESDIR}/nomad.logrotated" nomad
-}

diff --git a/sys-cluster/nomad/nomad-1.0.1.ebuild b/sys-cluster/nomad/nomad-1.0.1.ebuild
deleted file mode 100644
index 78c2f6b1233..00000000000
--- a/sys-cluster/nomad/nomad-1.0.1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 2020-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit go-module systemd
-GIT_COMMIT=52ec2e19f1d6e383b30a495b9bcdece315adac17
-
-DESCRIPTION="A simple and flexible workload orchestrator"
-HOMEPAGE="https://nomadproject.io"
-SRC_URI="https://github.com/hashicorp/nomad/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MPL-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="nvidia"
-
-RESTRICT+=" test"
-
-src_compile() {
-	local go_ldflags go_tags
-	go_ldflags="-X github.com/hashicorp/nomad/version.GitCommit=${GIT_COMMIT}"
-	go_tags="codegen_generated $(usex nvidia '' 'nonvidia')"
-	CGO_ENABLED=1 \
-		go build \
-		-ldflags "${go_ldflags}" \
-		-mod=vendor \
-		-tags "${go_tags}" \
-		-trimpath \
-		-o bin/${PN} || die "compile failed"
-}
-
-src_install() {
-	dobin bin/${PN}
-	systemd_dounit dist/systemd/nomad.service
-	insinto /etc/nomad.d
-	newins dist/client.hcl client.hcl.example
-	newins dist/server.hcl server.hcl.example
-	einstalldocs
-	dodoc CHANGELOG.md
-	keepdir /var/lib/nomad /var/log/nomad
-	newconfd "${FILESDIR}/nomad.confd" nomad
-	newinitd "${FILESDIR}/nomad.initd" nomad
-	insinto /etc/logrotate.d
-	newins "${FILESDIR}/nomad.logrotated" nomad
-}


             reply	other threads:[~2021-03-01 22:27 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-03-01 22:27 William Hubbs [this message]
  -- strict thread matches above, loose matches on Subject: below --
2023-11-17  4:23 [gentoo-commits] repo/gentoo:master commit in: sys-cluster/nomad/ John Helmert III
2023-08-08 20:12 William Hubbs
2023-04-27 19:40 William Hubbs
2022-12-27  3:04 John Helmert III
2022-12-15 18:12 William Hubbs
2022-10-26 19:27 William Hubbs
2022-10-26 19:27 William Hubbs
2022-10-26 18:56 William Hubbs
2022-06-14  7:06 Jakov Smolić
2022-02-20 18:53 William Hubbs
2022-02-16 19:54 William Hubbs
2021-08-07 19:35 William Hubbs
2021-08-07 19:30 William Hubbs
2021-02-27 19:31 William Hubbs
2021-02-12 22:35 Conrad Kostecki
2020-12-26  0:25 William Hubbs
2020-12-26  0:20 William Hubbs
2020-11-19 16:49 William Hubbs
2020-10-09 21:00 William Hubbs
2020-09-19  2:47 William Hubbs
2020-08-21 16:49 William Hubbs
2020-08-21 16:49 William Hubbs
2020-08-21 16:49 William Hubbs
2020-08-14  2:04 William Hubbs

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1614637667.fee7adf5f060a26b44b1ebbe32a5956b374fcc64.williamh@gentoo \
    --to=williamh@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox