summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-misc/mkcert/mkcert-1.1.2.ebuild')
-rw-r--r--app-misc/mkcert/mkcert-1.1.2.ebuild28
1 files changed, 0 insertions, 28 deletions
diff --git a/app-misc/mkcert/mkcert-1.1.2.ebuild b/app-misc/mkcert/mkcert-1.1.2.ebuild
deleted file mode 100644
index 0176c20c9259..000000000000
--- a/app-misc/mkcert/mkcert-1.1.2.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-EGO_PN="github.com/FiloSottile/mkcert"
-
-inherit golang-build golang-vcs-snapshot
-
-KEYWORDS="~amd64"
-
-DESCRIPTION="A zero-config tool to make locally trusted development certificates"
-HOMEPAGE="https://github.com/FiloSottile/mkcert"
-SRC_URI="https://github.com/FiloSottile/mkcert/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-LICENSE="BSD"
-SLOT="0"
-IUSE=""
-
-src_compile() {
- pushd src/${EGO_PN} || die
- GOPATH="${S}" go install -v ${EGO_PN} || die
- popd || die
-}
-
-src_install() {
- dobin bin/mkcert
- dodoc src/${EGO_PN}/README.md
-}