From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 90086138334 for ; Thu, 6 Sep 2018 17:40:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 38EBBE086C; Thu, 6 Sep 2018 17:40:20 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0DED7E086C for ; Thu, 6 Sep 2018 17:40:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 39D9F335CC3 for ; Thu, 6 Sep 2018 17:40:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 430D93C1 for ; Thu, 6 Sep 2018 17:40:06 +0000 (UTC) From: "Manuel Rüger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Manuel Rüger" Message-ID: <1536255553.9900a9f8022569e9368ee056207dbc305af3a6ac.mrueg@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/mkcert/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/mkcert/Manifest app-misc/mkcert/mkcert-1.1.2.ebuild X-VCS-Directories: app-misc/mkcert/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: 9900a9f8022569e9368ee056207dbc305af3a6ac X-VCS-Branch: master Date: Thu, 6 Sep 2018 17:40:06 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 046c9fdd-604d-4854-9bc5-2581a8d899b4 X-Archives-Hash: 6199b638ddb1d3009cafdac4d5e75d73 commit: 9900a9f8022569e9368ee056207dbc305af3a6ac Author: Manuel Rüger gentoo org> AuthorDate: Thu Sep 6 17:39:13 2018 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Thu Sep 6 17:39:13 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9900a9f8 app-misc/mkcert: Version bump to 1.1.2 Package-Manager: Portage-2.3.49, Repoman-2.3.10 app-misc/mkcert/Manifest | 1 + app-misc/mkcert/mkcert-1.1.2.ebuild | 28 ++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+) diff --git a/app-misc/mkcert/Manifest b/app-misc/mkcert/Manifest index 8c707b9f953..0227a592111 100644 --- a/app-misc/mkcert/Manifest +++ b/app-misc/mkcert/Manifest @@ -1 +1,2 @@ DIST mkcert-1.0.1.tar.gz 1695474 BLAKE2B eeef86a3e626f044c7b83d86be55082ce256752d834bf1388890db18f74678df57f2fc0050874dd4ff9ec4b849aa5b8d339e09e6af7e08a8f0b5236e0ac7aa09 SHA512 9e4ebadf19134fee7bf637fbb402df46a70d1f99ad06685a6a49da929fdd61b1ae9bea6b3f287201f488aec90505c60a58b454abb2efe584114d814023789600 +DIST mkcert-1.1.2.tar.gz 374244 BLAKE2B 3d9dd700e77ae6eae693bed51ae027fba409880f2c0f8fe1d5eb3c4af1e85f03784c0f6b55a384117c8ba8949ba0f061911998846f8c7ac3fddaa9e4dee567f5 SHA512 6015964915088914c0c208c47a41142b4b69e1e0c6e890422fe07c0dee2fb7c8a1ac04b9efba8a913de35ef3f46d3c8ee96941257eefbceb1c1885a67e1255da diff --git a/app-misc/mkcert/mkcert-1.1.2.ebuild b/app-misc/mkcert/mkcert-1.1.2.ebuild new file mode 100644 index 00000000000..0176c20c925 --- /dev/null +++ b/app-misc/mkcert/mkcert-1.1.2.ebuild @@ -0,0 +1,28 @@ +# 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 +}