diff options
author | John Helmert III <ajak@gentoo.org> | 2022-12-26 21:01:42 -0600 |
---|---|---|
committer | John Helmert III <ajak@gentoo.org> | 2022-12-26 21:03:53 -0600 |
commit | 427a7e41116651ab440672115ae6402d3711d36a (patch) | |
tree | 91b943fa6c7c0c7cee066acebec694d2f05302b1 /sys-cluster/nomad | |
parent | sci-mathematics/lean: bump to 3.50.3 (diff) | |
download | gentoo-427a7e41116651ab440672115ae6402d3711d36a.tar.gz gentoo-427a7e41116651ab440672115ae6402d3711d36a.tar.bz2 gentoo-427a7e41116651ab440672115ae6402d3711d36a.zip |
sys-cluster/nomad: drop 1.2.13, 1.4.1
Bug: https://bugs.gentoo.org/881269
Signed-off-by: John Helmert III <ajak@gentoo.org>
Diffstat (limited to 'sys-cluster/nomad')
-rw-r--r-- | sys-cluster/nomad/Manifest | 4 | ||||
-rw-r--r-- | sys-cluster/nomad/nomad-1.2.13.ebuild | 44 | ||||
-rw-r--r-- | sys-cluster/nomad/nomad-1.4.1.ebuild | 44 |
3 files changed, 0 insertions, 92 deletions
diff --git a/sys-cluster/nomad/Manifest b/sys-cluster/nomad/Manifest index 397b48a484a9..ae51c63496b8 100644 --- a/sys-cluster/nomad/Manifest +++ b/sys-cluster/nomad/Manifest @@ -1,6 +1,2 @@ -DIST nomad-1.2.13-deps.tar.xz 333983572 BLAKE2B 089b6de3c72d38ed78ed4b6e643faf636c103f7b63ce669ea1fa07b0c1a8d67d637498d23279b40f53127c9db58d1d4115769b85457e5181a4bf163272d6dd62 SHA512 1b40e3189ea95ac280baff5c604a6a0c01fde79954855694e117af7b54c6448a1343ce09f0eb0a3fdc64121866d6366af96750be5f62ee423962265671d43275 -DIST nomad-1.2.13.tar.gz 21582623 BLAKE2B 88922fa619af1f1ad31326b9729a0d8b0885fbc88dcb1657181ee8e7472f043dd455c847edd7615f84ead2031c91f85c13524e20e6df2b5bf1ffef87919a0dfd SHA512 a4390f37707df4483b93b85b153f26e2e1340736cbb5e8363782467c8b88f9ac5b9967102b8f7478c27ab39bc682486f39fc90a158e04b0a02aa1e12b4e97d23 -DIST nomad-1.4.1-deps.tar.xz 374031840 BLAKE2B 8859181e7e5bbf74367f2e9231c80869b91394d831d367d0dbad77cec1822e399d0436f93f4e66c3079c47687a366dac6fe926b7cd3906f8ce1539b40e860085 SHA512 c422fc115c062482d8ea85f9271c3be9fcdccbd67cc6cc3a2c26f1df77f2686ea90df7e118e82dd9f496af4c8482e11d6eb3130fd69e3e797d684c2d41e4da0c -DIST nomad-1.4.1.tar.gz 22931445 BLAKE2B b21eed2e85a618738f8ade32b993799d0cf2e3afaf7abfd174ad9cd93b54360bc27089fda4a37eafb1487c36ae93c087208eaa1078fecaf61d8e01fa992983d5 SHA512 80da494a595339242f77182ee47a124b75277a609e845b9e7fa20f0d9f89b1d4044e18f4d44ade7fe9e4feb06d1bdf71ca9d733ec6270af8ae062374a4ee01a2 DIST nomad-1.4.3-deps.tar.xz 380318008 BLAKE2B 76dcb628d70d94019870e8837770f06b270c12f06f29bccc8394992c0bb04856e58bfcb5cbcc439b9401ad9433935d7480db5a7201d3b120d6374418fb347f67 SHA512 d634f3400d48e452ceeac43754bda5970b5bfe41a3478e50752cc3b93fcaef881b8781920647417bd16d780fea0387769c946680308f0f926520cc7f5ceb649c DIST nomad-1.4.3.tar.gz 23243041 BLAKE2B dec5cb10993b45da906e98446531679543befd820b5dde226a4ea12e817408330cc80806e5b85c54d968fe110249bc266bb9426cc6f59e64c0c0ce78a4e5b884 SHA512 abc4b6b62e5693d7efd80a29726b21544fe3c8b03099f5cb2e1aa6707f512ea6f744c250996bc8d3f3f70bb4eaf6177d7640c8decb503800bee5397d9c0b4140 diff --git a/sys-cluster/nomad/nomad-1.2.13.ebuild b/sys-cluster/nomad/nomad-1.2.13.ebuild deleted file mode 100644 index 11268df20c44..000000000000 --- a/sys-cluster/nomad/nomad-1.2.13.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 2020-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -inherit go-module systemd -GIT_COMMIT=6892b138959f03d2fcc02975b61c24c297b360bb - -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" -SRC_URI+=" https://dev.gentoo.org/~williamh/dist/${P}-deps.tar.xz" - -LICENSE="MPL-2.0" -SLOT="0" -KEYWORDS="~amd64 ~arm64" -IUSE="ui" - -RESTRICT=" test" - -src_compile() { - local go_ldflags go_tags - go_ldflags="-X github.com/hashicorp/nomad/version.GitCommit=${GIT_COMMIT}" - go_tags="codegen_generated" - go_tags+="$(usex ui ',ui' '' )" - CGO_ENABLED=1 \ - ego build \ - -ldflags "${go_ldflags}" \ - -tags "${go_tags}" \ - -trimpath \ - -o bin/${PN} -} - -src_install() { - dobin bin/${PN} - systemd_dounit "${FILESDIR}"/nomad.service - keepdir /etc/nomad.d - 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.4.1.ebuild b/sys-cluster/nomad/nomad-1.4.1.ebuild deleted file mode 100644 index 83f65f816da5..000000000000 --- a/sys-cluster/nomad/nomad-1.4.1.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 2020-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -inherit go-module systemd -GIT_COMMIT=2aa7e66bdb526e25f59883952d74dad7ea9a014e - -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" -SRC_URI+=" https://dev.gentoo.org/~williamh/dist/${P}-deps.tar.xz" - -LICENSE="MPL-2.0" -SLOT="0" -KEYWORDS="~amd64 ~arm64" -IUSE="ui" - -RESTRICT=" test" - -src_compile() { - local go_ldflags go_tags - go_ldflags="-X github.com/hashicorp/nomad/version.GitCommit=${GIT_COMMIT}" - go_tags="codegen_generated" - go_tags+="$(usex ui ',ui' '' )" - CGO_ENABLED=1 \ - ego build \ - -ldflags "${go_ldflags}" \ - -tags "${go_tags}" \ - -trimpath \ - -o bin/${PN} -} - -src_install() { - dobin bin/${PN} - systemd_dounit "${FILESDIR}"/nomad.service - keepdir /etc/nomad.d - 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 -} |