public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Randall Vasquez" <ran.dall@icloud.com>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-util/shfmt/
Date: Sat, 30 Jul 2022 16:30:24 +0000 (UTC)	[thread overview]
Message-ID: <1659198577.e86df47ed839b988490678e24b472e666d6d400a.ran.dall@gentoo> (raw)

commit:     e86df47ed839b988490678e24b472e666d6d400a
Author:     Randall T. Vasquez <ran.dall <AT> icloud <DOT> com>
AuthorDate: Sat Jul 30 16:27:57 2022 +0000
Commit:     Randall Vasquez <ran.dall <AT> icloud <DOT> com>
CommitDate: Sat Jul 30 16:29:37 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e86df47e

dev-util/shfmt: drop ebuilds

`dev-util/sh` is now available in ::gentoo

Signed-off-by: Randall T. Vasquez <ran.dall <AT> icloud.com>

 dev-util/shfmt/Manifest           |  2 --
 dev-util/shfmt/metadata.xml       | 14 -----------
 dev-util/shfmt/shfmt-3.5.1.ebuild | 50 ---------------------------------------
 dev-util/shfmt/shfmt-9999.ebuild  | 50 ---------------------------------------
 4 files changed, 116 deletions(-)

diff --git a/dev-util/shfmt/Manifest b/dev-util/shfmt/Manifest
deleted file mode 100644
index 5363e0a6e..000000000
--- a/dev-util/shfmt/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST shfmt-3.5.1-deps.tar.xz 3117092 BLAKE2B 13e85d2b737f80f1c90201e7d035fb01bb624e396ccf292d00e5c8c19da8209c69ecff88ce334ba0de8e7bbf4243be58cbcea21ee99166285f2738f0036862c9 SHA512 24791e7798fdfe69e76117785b5d469742f680c2ed7d186cb580e55776e5e011ab907be882f6394b9f84f82717611a28f9e72ec5280d6a9d7e89f629bb4a378a
-DIST shfmt-3.5.1.tar.gz 222608 BLAKE2B a81af092d0f8d0ee7c05240d816a99f044bce3e35d242a815a238a27893db5bfc320efc4a0237ca9ecfa0276e4687152c87f6e0170f5326e2d0a8604f94f6adb SHA512 fd1084921254b70376b3ac47b97e2108308252fa6bd23aff1e59aaefb45a7e01c1738a46ae6f4eb255ecade77fb9659fbc8184d2473e8e4f70e520757bad506d

diff --git a/dev-util/shfmt/metadata.xml b/dev-util/shfmt/metadata.xml
deleted file mode 100644
index 898031468..000000000
--- a/dev-util/shfmt/metadata.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-  <maintainer type="person">
-    <email>ran.dall@icloud.com</email>
-    <name>Randall Vasquez</name>
-  </maintainer>
-  <longdescription lang="en">
-    A shell parser, formatter, and interpreter with bash support; includes shfmt. Supports POSIX Shell, Bash, and mksh.
-  </longdescription>
-  <upstream>
-    <remote-id type="github">mvdan/sh</remote-id>
-  </upstream>
-</pkgmetadata>

diff --git a/dev-util/shfmt/shfmt-3.5.1.ebuild b/dev-util/shfmt/shfmt-3.5.1.ebuild
deleted file mode 100644
index 96a20587a..000000000
--- a/dev-util/shfmt/shfmt-3.5.1.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 2020-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit go-module
-
-DESCRIPTION="Shell script formatter"
-HOMEPAGE="https://github.com/mvdan/sh"
-if [[ ${PV} == *9999 ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/mvdan/sh.git"
-	RESTRICT="fetch mirror test"
-else
-	SRC_URI="https://github.com/mvdan/sh/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
-	SRC_URI+=" https://github.com/ran-dall/portage-deps/raw/master/${P}-deps.tar.xz"
-	KEYWORDS="~amd64 ~arm64 ~x86"
-	RESTRICT="mirror test"
-	S="${WORKDIR}/${PN//fmt}-${PV}"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="+man"
-
-BDEPEND="man? ( app-text/scdoc )"
-
-src_unpack() {
-	default
-	if [[ ${PV} == *9999 ]]; then
-		git-r3_src_unpack
-		go-module_live_vendor
-	else
-		go-module_src_unpack
-	fi
-}
-
-src_compile() {
-	ego build -v -ldflags "-s -w" -o "${PN}" "./cmd/shfmt"
-	if use man; then
-		scdoc < cmd/shfmt/shfmt.1.scd > shfmt.1 || die "conversation of man page failed"
-	fi
-}
-
-src_install() {
-	dobin ${PN}
-	if use man; then
-		doman shfmt.1
-	fi
-}

diff --git a/dev-util/shfmt/shfmt-9999.ebuild b/dev-util/shfmt/shfmt-9999.ebuild
deleted file mode 100644
index 96a20587a..000000000
--- a/dev-util/shfmt/shfmt-9999.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 2020-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit go-module
-
-DESCRIPTION="Shell script formatter"
-HOMEPAGE="https://github.com/mvdan/sh"
-if [[ ${PV} == *9999 ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/mvdan/sh.git"
-	RESTRICT="fetch mirror test"
-else
-	SRC_URI="https://github.com/mvdan/sh/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
-	SRC_URI+=" https://github.com/ran-dall/portage-deps/raw/master/${P}-deps.tar.xz"
-	KEYWORDS="~amd64 ~arm64 ~x86"
-	RESTRICT="mirror test"
-	S="${WORKDIR}/${PN//fmt}-${PV}"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="+man"
-
-BDEPEND="man? ( app-text/scdoc )"
-
-src_unpack() {
-	default
-	if [[ ${PV} == *9999 ]]; then
-		git-r3_src_unpack
-		go-module_live_vendor
-	else
-		go-module_src_unpack
-	fi
-}
-
-src_compile() {
-	ego build -v -ldflags "-s -w" -o "${PN}" "./cmd/shfmt"
-	if use man; then
-		scdoc < cmd/shfmt/shfmt.1.scd > shfmt.1 || die "conversation of man page failed"
-	fi
-}
-
-src_install() {
-	dobin ${PN}
-	if use man; then
-		doman shfmt.1
-	fi
-}


             reply	other threads:[~2022-07-30 16:30 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-07-30 16:30 Randall Vasquez [this message]
  -- strict thread matches above, loose matches on Subject: below --
2022-07-29 21:00 [gentoo-commits] repo/proj/guru:dev commit in: dev-util/shfmt/ Randall Vasquez
2022-07-29 21:00 Randall Vasquez
2022-05-28 21:16 Randall Vasquez
2022-05-24 13:04 Randall Vasquez
2022-05-22 16:30 Randall Vasquez
2022-05-22  2:47 Randall Vasquez
2022-05-21 18:05 Randall Vasquez
2022-05-21 16:57 Randall Vasquez

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=1659198577.e86df47ed839b988490678e24b472e666d6d400a.ran.dall@gentoo \
    --to=ran.dall@icloud.com \
    --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