summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2024-12-01 09:49:54 -0800
committerZac Medico <zmedico@gentoo.org>2024-12-01 09:51:09 -0800
commit848a71e3ee304682348b997365a72ff524969345 (patch)
tree343426571d0db3a3478a1ca51a110092fa21c6b7 /app-text
parentapp-text/yamlfmt: add 0.14.0 (diff)
downloadgentoo-848a71e3ee304682348b997365a72ff524969345.tar.gz
gentoo-848a71e3ee304682348b997365a72ff524969345.tar.bz2
gentoo-848a71e3ee304682348b997365a72ff524969345.zip
app-text/yamlfmt: drop 0.12.1
Signed-off-by: Zac Medico <zmedico@gentoo.org>
Diffstat (limited to 'app-text')
-rw-r--r--app-text/yamlfmt/Manifest2
-rw-r--r--app-text/yamlfmt/yamlfmt-0.12.1.ebuild29
2 files changed, 0 insertions, 31 deletions
diff --git a/app-text/yamlfmt/Manifest b/app-text/yamlfmt/Manifest
index 29d9f3aca799..f9567531c7d7 100644
--- a/app-text/yamlfmt/Manifest
+++ b/app-text/yamlfmt/Manifest
@@ -1,5 +1,3 @@
-DIST yamlfmt-0.12.1-deps.tar.xz 128404 BLAKE2B aa976bf73fb0a8094afc0ae480881aaff58c6263a57587ea6ceb22ce67776c424a7ed5d5fae6c38293f1ec5f3821de99e4bfd74f7951b826b2bb211914944c94 SHA512 11c9c45535ace449c3784a55707699923dcc2809db4f86a8fdb72b8b99443a92498b1c329cca40771d63414a6571bd4c590df4a304d798bb4c3709fd0edf0ef4
-DIST yamlfmt-0.12.1.tar.gz 40958 BLAKE2B 3a1187c2a21716a16e6c86ab145eed424bb3eb65ab8b0525c1ad221c27d8be3221f668f0393dcdc117bd4d34c9283bcc30e72ccddf99f61e44050c61e88b3026 SHA512 ac39234977d11751802a3a8c2e2140c16e408f987d29aa4ac8e7dd329067c1cef686b0950fa4e4478aeeb214506e7d3fe498734e584abcbc4f3aa48f9f1c7504
DIST yamlfmt-0.13.0-deps.tar.xz 128464 BLAKE2B c51a77b6fa84e88239fe5185761bac4ab74b48f3200a822ef98884bc34670ec07c6b87bc999de77da5da0ea33b501ef911854910f74798a7532575f7c6a36881 SHA512 2187441405e028dd0dfb1d302f2a047b47af175d965c7605e5464b6403b4379425f13c5a506cad5bdce6dd424247ced12126722817c02e2afeb23d33be644a1b
DIST yamlfmt-0.13.0.tar.gz 43334 BLAKE2B da1828f6f8ab24236173fd5621781468e123ed4c9521ab2233b6185ab61a2e6744593f280dd786bbe3e0f38fd692b307dcde0cdce4944c9b6468425b9f7898d3 SHA512 28cf1d04690ce72a1330c0d93b148516e80b33306067f4dbe1b5056e243202d93ed09293b6fe5c958a341dd590edd61e6c1fdb278b28c88b421fb7364cff10b8
DIST yamlfmt-0.14.0-deps.tar.xz 145900 BLAKE2B a58b00c7efc0a0d3c72a3482576f88458f46a984c7f7b11dbaa235c65d18982bb6aba95169e379b809dfc3349eeac4155493a6085dfe6a326a92d0d4beed848b SHA512 42d3ef9a91571eb9712cbd6bf7e7ffeb657a9ae424991b8837897a01eeed5c40ac926e399d8b0644553f878b7024ab3d8ad2aa90c8019153e9c5b7092b56b771
diff --git a/app-text/yamlfmt/yamlfmt-0.12.1.ebuild b/app-text/yamlfmt/yamlfmt-0.12.1.ebuild
deleted file mode 100644
index 5f85ed96ccb4..000000000000
--- a/app-text/yamlfmt/yamlfmt-0.12.1.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-inherit go-module
-
-DESCRIPTION="An extensible command line tool or library to format yaml files"
-HOMEPAGE="https://github.com/google/yamlfmt"
-SRC_URI="https://github.com/google/yamlfmt/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
- https://dev.gentoo.org/~zmedico/dist/${P}-deps.tar.xz"
-
-LICENSE="Apache-2.0"
-LICENSE+=" BSD MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-
-src_compile() {
- CGO_ENABLED=0 ego build -ldflags "-X main.version=${PV} -s -w" \
- -o yamlfmt ./cmd/yamlfmt
-}
-
-src_install() {
- dodoc -r README.md docs
- dobin yamlfmt
-}
-
-src_test() {
- emake test
-}