diff options
author | Joonas Niilola <juippis@gentoo.org> | 2021-03-20 09:55:25 +0200 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2021-03-20 10:25:10 +0200 |
commit | 2cf3917ce9c6d6b73f971de21ef686468e6703be (patch) | |
tree | e2eab52aab531c867cc7e5c6357b1b3a145aa05e /dev-util/packer | |
parent | dev-util/bitrise: drop 1.16.1, 1.19.0, 1.20.0, 1.23.0 (diff) | |
download | gentoo-2cf3917ce9c6d6b73f971de21ef686468e6703be.tar.gz gentoo-2cf3917ce9c6d6b73f971de21ef686468e6703be.tar.bz2 gentoo-2cf3917ce9c6d6b73f971de21ef686468e6703be.zip |
dev-util/packer: drop 1.4.0, 1.4.5, 1.5.6, 1.6.1
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'dev-util/packer')
-rw-r--r-- | dev-util/packer/Manifest | 4 | ||||
-rw-r--r-- | dev-util/packer/packer-1.4.0.ebuild | 36 | ||||
-rw-r--r-- | dev-util/packer/packer-1.4.5.ebuild | 31 | ||||
-rw-r--r-- | dev-util/packer/packer-1.5.6.ebuild | 31 | ||||
-rw-r--r-- | dev-util/packer/packer-1.6.1.ebuild | 31 |
5 files changed, 0 insertions, 133 deletions
diff --git a/dev-util/packer/Manifest b/dev-util/packer/Manifest index ad37d1bb3945..459a61ab17ee 100644 --- a/dev-util/packer/Manifest +++ b/dev-util/packer/Manifest @@ -1,5 +1 @@ -DIST packer-1.4.0.tar.gz 9794922 BLAKE2B 2e1d817e0a3f549255ecd8693d6d99b2e45df2e8fb0acc128f03bd1448f28afa865a0849ccf58e9a562ef50b901ea86efd29fe29747c126aa98c05456638719f SHA512 d2dbeb99d1fe44a427d2997eeb4ff6ae66bdf2d7f8f08e2105f8614487a6565b8bc263cf8aab8413520783a4dde18d150aae6c69db171fe1cfab3ee1bd0a0743 -DIST packer-1.4.5.tar.gz 13705057 BLAKE2B d23527e8bb0104e3f0206f5a82eb93fbe15a9542409bcce13cefd49fa83a47c0262f48e74ff951990211de9f85fc32efd41bbd4ed286b3462aed86df68afebc8 SHA512 b2a3ae27612c78fcfcb2ac655437faf2cff6e587fd10033b39ddaca8b92b634b93ecd0ae7e3ee43253ee716a2c0f7da532b3ae0ce33c59d1d3896f9187d9a657 -DIST packer-1.5.6.tar.gz 16037500 BLAKE2B 9409aad981b3494a442fc6854481853494b12b74532ed3ac8d210d4e275a8f4f18bfb6dcfd7c36c4e97b3d5ba0263155fc8f08592b0123705c5d341d9183e6eb SHA512 993f54a1bf98abd5bc450bafaf202fbbfbad009b661d49783ff82cba9891b8556340801680c0fdc33b90396a3101a2ed93a11798ad51c10d7bd5f81fef4f5a31 -DIST packer-1.6.1.tar.gz 17334870 BLAKE2B c6db96de6a96c337ca2b2e7f273be21b4410e272817622af849346f38fab7212119aec1fcfd71b0c67bb00e8aad879485fd21cd42d7054eab4a37251fccc3ae7 SHA512 3b4b21eac425fec44a47a5799dcb5387099de06b777906a4b7c5bf169c71d8b82ab4296a21c8b60daefa4546d5a814b8d9f23e4d2afcf0eb91c3338d8f327ce7 DIST packer-1.6.5.tar.gz 17900733 BLAKE2B b267f5b861de9eb4fc88ab747560aef30825897e1f42038ff443185c6591afec039e12a4639ca22598704a7ada68b8af373c67f7391f9884566fd0f431b3c0ee SHA512 17df612ccac44f6ee987cfee0f5b0422768302a40e7e4177c47e427fd0aa09be136ceda40272e6a1cbdeb52587b5c93f2fe7158f787e19399149ee514fec001d diff --git a/dev-util/packer/packer-1.4.0.ebuild b/dev-util/packer/packer-1.4.0.ebuild deleted file mode 100644 index 5a13c74a3fa0..000000000000 --- a/dev-util/packer/packer-1.4.0.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit golang-vcs-snapshot - -DESCRIPTION="A tool to create identical machine images for multiple platforms" -HOMEPAGE="https://www.packer.io" - -EGO_PN="github.com/hashicorp/packer" -SRC_URI="https://github.com/hashicorp/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MPL-2.0" -SLOT="0" -KEYWORDS="~amd64" -IUSE="" -DEPEND=">=dev-lang/go-1.11.0" - -DOCS=( README.md CHANGELOG.md ) - -src_compile() { - cd "src/${EGO_PN}" || die - GOPATH="${S}" GOCACHE="${T}/go-cache" go build \ - -v -work -o "${S}/${PN}" ./ || die -} - -src_install() { - dobin packer - - pushd "src/${EGO_PN}" || die - einstalldocs - insinto /usr/share/zsh/site-functions - doins contrib/zsh-completion/_packer - popd || die -} diff --git a/dev-util/packer/packer-1.4.5.ebuild b/dev-util/packer/packer-1.4.5.ebuild deleted file mode 100644 index ab0e1cbcd571..000000000000 --- a/dev-util/packer/packer-1.4.5.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit go-module - -DESCRIPTION="A tool to create identical machine images for multiple platforms" -HOMEPAGE="https://www.packer.io" -SRC_URI="https://github.com/hashicorp/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="Apache-2.0 BSD-2 BSD-4 ECL-2.0 icu imagemagick ISC JSON MIT MPL-2.0" -SLOT="0" -KEYWORDS="~amd64" - -DOCS=( {README,CHANGELOG}.md ) - -src_compile() { - go build \ - -mod=vendor \ - -work -o "bin/${PN}" ./ || die -} - -src_install() { - dobin bin/packer - - einstalldocs - - insinto /usr/share/zsh/site-functions - doins contrib/zsh-completion/_packer -} diff --git a/dev-util/packer/packer-1.5.6.ebuild b/dev-util/packer/packer-1.5.6.ebuild deleted file mode 100644 index c1237d3214bd..000000000000 --- a/dev-util/packer/packer-1.5.6.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit go-module - -DESCRIPTION="A tool to create identical machine images for multiple platforms" -HOMEPAGE="https://www.packer.io" -SRC_URI="https://github.com/hashicorp/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="Apache-2.0 BSD-2 BSD-4 ECL-2.0 icu imagemagick ISC JSON MIT MPL-2.0" -SLOT="0" -KEYWORDS="~amd64" - -DOCS=( {README,CHANGELOG}.md ) - -src_compile() { - go build \ - -mod=vendor \ - -work -o "bin/${PN}" ./ || die -} - -src_install() { - dobin bin/packer - - einstalldocs - - insinto /usr/share/zsh/site-functions - doins contrib/zsh-completion/_packer -} diff --git a/dev-util/packer/packer-1.6.1.ebuild b/dev-util/packer/packer-1.6.1.ebuild deleted file mode 100644 index c1237d3214bd..000000000000 --- a/dev-util/packer/packer-1.6.1.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit go-module - -DESCRIPTION="A tool to create identical machine images for multiple platforms" -HOMEPAGE="https://www.packer.io" -SRC_URI="https://github.com/hashicorp/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="Apache-2.0 BSD-2 BSD-4 ECL-2.0 icu imagemagick ISC JSON MIT MPL-2.0" -SLOT="0" -KEYWORDS="~amd64" - -DOCS=( {README,CHANGELOG}.md ) - -src_compile() { - go build \ - -mod=vendor \ - -work -o "bin/${PN}" ./ || die -} - -src_install() { - dobin bin/packer - - einstalldocs - - insinto /usr/share/zsh/site-functions - doins contrib/zsh-completion/_packer -} |