summaryrefslogtreecommitdiff
path: root/dev-go/go-md2man/go-md2man-2.0.0.ebuild
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-09-28 23:35:57 +0100
committerV3n3RiX <venerix@koprulu.sector>2023-09-28 23:35:57 +0100
commit95ea6b4d5731b3430396be650fdb3d4b21cebba1 (patch)
tree8fac22db6af2c5c90106b07a31ee4bbb1ca5faae /dev-go/go-md2man/go-md2man-2.0.0.ebuild
parentbf3704584a111859229f36449fbc925a5a19dc0e (diff)
gentoo auto-resync : 28:09:2023 - 23:35:56
Diffstat (limited to 'dev-go/go-md2man/go-md2man-2.0.0.ebuild')
-rw-r--r--dev-go/go-md2man/go-md2man-2.0.0.ebuild32
1 files changed, 0 insertions, 32 deletions
diff --git a/dev-go/go-md2man/go-md2man-2.0.0.ebuild b/dev-go/go-md2man/go-md2man-2.0.0.ebuild
deleted file mode 100644
index 8273c2e066e3..000000000000
--- a/dev-go/go-md2man/go-md2man-2.0.0.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit go-module
-
-DESCRIPTION="A utility to convert markdown to man pages"
- SRC_URI="https://github.com/cpuguy83/go-md2man/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-HOMEPAGE="https://github.com/cpuguy83/go-md2man"
-
-LICENSE="BSD-2 MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~loong ppc64 ~riscv ~x86"
-
-# restrict tests because they need network-sandbox disabled
-# bug https://bugs.gentoo.org/715028
-RESTRICT+=" test"
-
-src_compile() {
- emake BUILD_FLAGS="-mod=vendor" build
-}
-
-src_install() {
- "${S}"/bin/go-md2man -in go-md2man.1.md -out go-md2man.1 ||
- die "Unable to create man page"
- dobin bin/go-md2man
- doman go-md2man.1
-}
-
-src_test() {
- emake test
-}