* [gentoo-commits] repo/gentoo:master commit in: dev-go/go-md2man/
@ 2015-08-24 23:02 William Hubbs
0 siblings, 0 replies; 28+ messages in thread
From: William Hubbs @ 2015-08-24 23:02 UTC (permalink / raw
To: gentoo-commits
commit: 45e1b39bac1c35cb5b83944311a4351abe82fdab
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 24 22:59:21 2015 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Mon Aug 24 23:01:43 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45e1b39b
dev-go/go-md2man: new package
go-md2man is a utility written in Go which converts markdown documents
to man pages.
dev-go/go-md2man/Manifest | 1 +
dev-go/go-md2man/go-md2man-1.0.3.ebuild | 30 ++++++++++++++++++++++++++++++
dev-go/go-md2man/metadata.xml | 10 ++++++++++
3 files changed, 41 insertions(+)
diff --git a/dev-go/go-md2man/Manifest b/dev-go/go-md2man/Manifest
new file mode 100644
index 0000000..d2f1300
--- /dev/null
+++ b/dev-go/go-md2man/Manifest
@@ -0,0 +1 @@
+DIST go-md2man-1.0.3.tar.gz 3279 SHA256 25f96e2a05513d76ccd1a29f8f2813865f93643623a5d208ae5cc180531e0040 SHA512 855809f068daae2becb31d4b182b0953a9a11428cf89d488e2148256c6f4292bf24d42bd1c5bc96ba2c1c18a8201e859629f2515f750de390e4325cc320ac7b8 WHIRLPOOL 20da88491e60d1b0ebbbea4e798bf69cc91f7eefaa81b6f9f866f235e21674d31c76d7f62149526132e1578c9a41c57e193154f7c13a1dd1875ca917390bc0a2
diff --git a/dev-go/go-md2man/go-md2man-1.0.3.ebuild b/dev-go/go-md2man/go-md2man-1.0.3.ebuild
new file mode 100644
index 0000000..ece084e
--- /dev/null
+++ b/dev-go/go-md2man/go-md2man-1.0.3.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+EGO_PN=github.com/cpuguy83/go-md2man
+
+if [[ ${PV} = *9999* ]]; then
+ inherit golang-vcs
+else
+ KEYWORDS="~amd64"
+ EGIT_COMMIT=v${PV}
+ SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
+ inherit golang-vcs-snapshot
+fi
+inherit golang-build
+
+DESCRIPTION="A utility to convert markdown to man pages"
+HOMEPAGE="https://github.com/cpuguy83/go-md2man"
+LICENSE="MIT"
+SLOT="0"
+IUSE=""
+DEPEND="dev-go/blackfriday"
+RDEPEND=""
+
+src_install() {
+ "${S}"/go-md2man -in src/${EGO_PN}/go-md2man.1.md -out go-md2man.1
+ dobin go-md2man
+ doman go-md2man.1
+}
diff --git a/dev-go/go-md2man/metadata.xml b/dev-go/go-md2man/metadata.xml
new file mode 100644
index 0000000..8a70a0e
--- /dev/null
+++ b/dev-go/go-md2man/metadata.xml
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer>
+ <email>williamh@gentoo.org</email>
+ <name>William Hubbs</name>
+ </maintainer>
+ <longdescription lang="en">
+ </longdescription>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-go/go-md2man/
@ 2016-02-27 18:51 Stephen Klimaszewski
0 siblings, 0 replies; 28+ messages in thread
From: Stephen Klimaszewski @ 2016-02-27 18:51 UTC (permalink / raw
To: gentoo-commits
commit: 7ecc6aebd2ef7b66ba13ebd737786bffea994797
Author: Steev Klimaszewski <steev <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 27 18:48:08 2016 +0000
Commit: Stephen Klimaszewski <steev <AT> gentoo <DOT> org>
CommitDate: Sat Feb 27 18:48:08 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ecc6aeb
dev-go/go-md2man: add ~arm64 keyword
Tested on X-C1 with dev-lang/go-1.6-r2
Package-Manager: portage-2.2.27
dev-go/go-md2man/go-md2man-1.0.3.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-go/go-md2man/go-md2man-1.0.3.ebuild b/dev-go/go-md2man/go-md2man-1.0.3.ebuild
index ece084e..fa861b6 100644
--- a/dev-go/go-md2man/go-md2man-1.0.3.ebuild
+++ b/dev-go/go-md2man/go-md2man-1.0.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
@@ -8,7 +8,7 @@ EGO_PN=github.com/cpuguy83/go-md2man
if [[ ${PV} = *9999* ]]; then
inherit golang-vcs
else
- KEYWORDS="~amd64"
+ KEYWORDS="~amd64 ~arm64"
EGIT_COMMIT=v${PV}
SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
inherit golang-vcs-snapshot
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-go/go-md2man/
@ 2016-04-27 8:24 Agostino Sarubbo
0 siblings, 0 replies; 28+ messages in thread
From: Agostino Sarubbo @ 2016-04-27 8:24 UTC (permalink / raw
To: gentoo-commits
commit: 3cc3bd0ee167e3ac820937528f538858a555a8b4
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 27 08:24:13 2016 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Wed Apr 27 08:24:13 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3cc3bd0e
dev-go/go-md2man: amd64 stable wrt bug #581236
Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
dev-go/go-md2man/go-md2man-1.0.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-go/go-md2man/go-md2man-1.0.3.ebuild b/dev-go/go-md2man/go-md2man-1.0.3.ebuild
index fa861b6..bc053d8 100644
--- a/dev-go/go-md2man/go-md2man-1.0.3.ebuild
+++ b/dev-go/go-md2man/go-md2man-1.0.3.ebuild
@@ -8,7 +8,7 @@ EGO_PN=github.com/cpuguy83/go-md2man
if [[ ${PV} = *9999* ]]; then
inherit golang-vcs
else
- KEYWORDS="~amd64 ~arm64"
+ KEYWORDS="amd64 ~arm64"
EGIT_COMMIT=v${PV}
SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
inherit golang-vcs-snapshot
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-go/go-md2man/
@ 2017-01-22 23:18 William Hubbs
0 siblings, 0 replies; 28+ messages in thread
From: William Hubbs @ 2017-01-22 23:18 UTC (permalink / raw
To: gentoo-commits
commit: ea6a8a15f5fba38f839e53ea4e6945a746ccd3a2
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 22 23:12:40 2017 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Sun Jan 22 23:18:16 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea6a8a15
dev-go/go-md2man: 1.0.6 version bump for #606690
Package-Manager: Portage-2.3.0, Repoman-2.3.1
dev-go/go-md2man/Manifest | 1 +
dev-go/go-md2man/go-md2man-1.0.6.ebuild | 30 ++++++++++++++++++++++++++++++
2 files changed, 31 insertions(+)
diff --git a/dev-go/go-md2man/Manifest b/dev-go/go-md2man/Manifest
index d2f1300..6508e41 100644
--- a/dev-go/go-md2man/Manifest
+++ b/dev-go/go-md2man/Manifest
@@ -1 +1,2 @@
DIST go-md2man-1.0.3.tar.gz 3279 SHA256 25f96e2a05513d76ccd1a29f8f2813865f93643623a5d208ae5cc180531e0040 SHA512 855809f068daae2becb31d4b182b0953a9a11428cf89d488e2148256c6f4292bf24d42bd1c5bc96ba2c1c18a8201e859629f2515f750de390e4325cc320ac7b8 WHIRLPOOL 20da88491e60d1b0ebbbea4e798bf69cc91f7eefaa81b6f9f866f235e21674d31c76d7f62149526132e1578c9a41c57e193154f7c13a1dd1875ca917390bc0a2
+DIST go-md2man-1.0.6.tar.gz 40240 SHA256 8ae73d81757835a286ecea8e1776e2e397dbd101493c44417b7a6fd9eda31542 SHA512 73abf08470c7ba3c5e5f0212a19f37ae98a8582605d2493bb21b2e5c07fafa8fb711f05665e153863d195749a0870e674e203f377ec7bb8425b9d497fa9864d1 WHIRLPOOL 15a0af9d37b34a8678faeed1daee1274a58d1d15dae66f287a17b0b9f56323f30bcd6ad3018d0233c568b698063f8675cfd2af6826226ef5a5f922e8aeec4a27
diff --git a/dev-go/go-md2man/go-md2man-1.0.6.ebuild b/dev-go/go-md2man/go-md2man-1.0.6.ebuild
new file mode 100644
index 00000000..42992df
--- /dev/null
+++ b/dev-go/go-md2man/go-md2man-1.0.6.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+EGO_PN=github.com/cpuguy83/go-md2man
+
+if [[ ${PV} = *9999* ]]; then
+ inherit golang-vcs
+else
+ KEYWORDS="~amd64 ~arm64"
+ EGIT_COMMIT=v${PV}
+ SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
+ inherit golang-vcs-snapshot
+fi
+inherit golang-build
+
+DESCRIPTION="A utility to convert markdown to man pages"
+HOMEPAGE="https://github.com/cpuguy83/go-md2man"
+LICENSE="MIT"
+SLOT="0"
+IUSE=""
+DEPEND="dev-go/blackfriday"
+RDEPEND="dev-go/blackfriday:="
+
+src_install() {
+ "${S}"/go-md2man -in src/${EGO_PN}/go-md2man.1.md -out go-md2man.1
+ dobin go-md2man
+ doman go-md2man.1
+}
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-go/go-md2man/
@ 2017-04-05 10:21 Michael Weber
0 siblings, 0 replies; 28+ messages in thread
From: Michael Weber @ 2017-04-05 10:21 UTC (permalink / raw
To: gentoo-commits
commit: 4c26e5068fa7af8173bac541ad85545394ccc432
Author: Michael Weber <xmw <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 5 10:18:21 2017 +0000
Commit: Michael Weber <xmw <AT> gentoo <DOT> org>
CommitDate: Wed Apr 5 10:20:57 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c26e506
dev-go/go-md2man: add ~arm (bug 566732)
Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --include-arches="amd64 arm arm64 ppc ppc64"
dev-go/go-md2man/go-md2man-1.0.6.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-go/go-md2man/go-md2man-1.0.6.ebuild b/dev-go/go-md2man/go-md2man-1.0.6.ebuild
index 78c16010115..e5d53b0b1eb 100644
--- a/dev-go/go-md2man/go-md2man-1.0.6.ebuild
+++ b/dev-go/go-md2man/go-md2man-1.0.6.ebuild
@@ -7,7 +7,7 @@ EGO_PN=github.com/cpuguy83/go-md2man
if [[ ${PV} = *9999* ]]; then
inherit golang-vcs
else
- KEYWORDS="~amd64 ~arm64"
+ KEYWORDS="~amd64 ~arm ~arm64"
EGIT_COMMIT=v${PV}
SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
inherit golang-vcs-snapshot
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-go/go-md2man/
@ 2019-01-01 19:20 William Hubbs
0 siblings, 0 replies; 28+ messages in thread
From: William Hubbs @ 2019-01-01 19:20 UTC (permalink / raw
To: gentoo-commits
commit: 63fb1d24566ccef345a348f716bbb203b896bf71
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 1 19:19:30 2019 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Tue Jan 1 19:20:02 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63fb1d24
dev-go/go-md2man: 1.0.8 bump
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Signed-off-by: William Hubbs <williamh <AT> gentoo.org>
dev-go/go-md2man/Manifest | 1 +
dev-go/go-md2man/go-md2man-1.0.8.ebuild | 27 +++++++++++++++++++++++++++
2 files changed, 28 insertions(+)
diff --git a/dev-go/go-md2man/Manifest b/dev-go/go-md2man/Manifest
index ae8675a3a32..f12a1a05ace 100644
--- a/dev-go/go-md2man/Manifest
+++ b/dev-go/go-md2man/Manifest
@@ -1,2 +1,3 @@
DIST go-md2man-1.0.3.tar.gz 3279 BLAKE2B 0b693569ad7ff609508dd28b11bacdc0eb08ee0fd2b2a23dad5e26a670e1fc0fcc2321ee099114dc144fb8671dfcd7ed072e7feb17bb96e17c2f9ff0e748ddac SHA512 855809f068daae2becb31d4b182b0953a9a11428cf89d488e2148256c6f4292bf24d42bd1c5bc96ba2c1c18a8201e859629f2515f750de390e4325cc320ac7b8
DIST go-md2man-1.0.6.tar.gz 40240 BLAKE2B 183a96b661419861fcca27e34fcd107070839087d61d3c36f3da3b3aa644678d4eeb6fa31ae3a07eb41dbd750ed43fa29b5518db9a56290530795f6b3cc16873 SHA512 73abf08470c7ba3c5e5f0212a19f37ae98a8582605d2493bb21b2e5c07fafa8fb711f05665e153863d195749a0870e674e203f377ec7bb8425b9d497fa9864d1
+DIST go-md2man-1.0.8.tar.gz 79284 BLAKE2B c6bf5c1507f0e7e6393c08592bf56e6423157f265a2f26b10f262c00b15c855e99c022d9e4b465247997b0c9d667ed71c727d03735af6214ec20ca30583235aa SHA512 4c52e01c9b07582b5d55d1e94935378a676bd284a3e8230a8a191d4678b1b6ae92b704a249117c542832170069a70c649e58a1752fb2973709259b5bc108db91
diff --git a/dev-go/go-md2man/go-md2man-1.0.8.ebuild b/dev-go/go-md2man/go-md2man-1.0.8.ebuild
new file mode 100644
index 00000000000..c3767538421
--- /dev/null
+++ b/dev-go/go-md2man/go-md2man-1.0.8.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+EGO_PN=github.com/cpuguy83/go-md2man
+
+if [[ ${PV} = *9999* ]]; then
+ inherit golang-vcs
+else
+ KEYWORDS="~amd64 ~arm ~arm64"
+ EGIT_COMMIT=v${PV}
+ SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
+ inherit golang-vcs-snapshot
+fi
+inherit golang-build
+
+DESCRIPTION="A utility to convert markdown to man pages"
+HOMEPAGE="https://github.com/cpuguy83/go-md2man"
+LICENSE="MIT"
+SLOT="0"
+IUSE=""
+
+src_install() {
+ "${S}"/go-md2man -in src/${EGO_PN}/go-md2man.1.md -out go-md2man.1
+ dobin go-md2man
+ doman go-md2man.1
+}
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-go/go-md2man/
@ 2020-01-17 8:52 Georgy Yakovlev
0 siblings, 0 replies; 28+ messages in thread
From: Georgy Yakovlev @ 2020-01-17 8:52 UTC (permalink / raw
To: gentoo-commits
commit: be17f220465bfbd947d88ae42b2b9191cf3f7248
Author: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 17 08:00:24 2020 +0000
Commit: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
CommitDate: Fri Jan 17 08:44:49 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be17f220
dev-go/go-md2man: keyword on ~ppc64
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org>
dev-go/go-md2man/go-md2man-1.0.8.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-go/go-md2man/go-md2man-1.0.8.ebuild b/dev-go/go-md2man/go-md2man-1.0.8.ebuild
index c3767538421..e6e44b47412 100644
--- a/dev-go/go-md2man/go-md2man-1.0.8.ebuild
+++ b/dev-go/go-md2man/go-md2man-1.0.8.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -7,7 +7,7 @@ EGO_PN=github.com/cpuguy83/go-md2man
if [[ ${PV} = *9999* ]]; then
inherit golang-vcs
else
- KEYWORDS="~amd64 ~arm ~arm64"
+ KEYWORDS="~amd64 ~arm ~arm64 ~ppc64"
EGIT_COMMIT=v${PV}
SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
inherit golang-vcs-snapshot
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-go/go-md2man/
@ 2020-03-12 1:39 William Hubbs
0 siblings, 0 replies; 28+ messages in thread
From: William Hubbs @ 2020-03-12 1:39 UTC (permalink / raw
To: gentoo-commits
commit: 42957cfaaeefb05e3a68bf1e723df1fbe9dd8300
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 12 01:37:07 2020 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Thu Mar 12 01:39:28 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42957cfa
dev-go/go-md2man: 2.0.0 bump
Signed-off-by: William Hubbs <williamh <AT> gentoo.org>
dev-go/go-md2man/Manifest | 1 +
dev-go/go-md2man/go-md2man-2.0.0.ebuild | 24 ++++++++++++++++++++++++
2 files changed, 25 insertions(+)
diff --git a/dev-go/go-md2man/Manifest b/dev-go/go-md2man/Manifest
index f12a1a05ace..0895ada5ad1 100644
--- a/dev-go/go-md2man/Manifest
+++ b/dev-go/go-md2man/Manifest
@@ -1,3 +1,4 @@
DIST go-md2man-1.0.3.tar.gz 3279 BLAKE2B 0b693569ad7ff609508dd28b11bacdc0eb08ee0fd2b2a23dad5e26a670e1fc0fcc2321ee099114dc144fb8671dfcd7ed072e7feb17bb96e17c2f9ff0e748ddac SHA512 855809f068daae2becb31d4b182b0953a9a11428cf89d488e2148256c6f4292bf24d42bd1c5bc96ba2c1c18a8201e859629f2515f750de390e4325cc320ac7b8
DIST go-md2man-1.0.6.tar.gz 40240 BLAKE2B 183a96b661419861fcca27e34fcd107070839087d61d3c36f3da3b3aa644678d4eeb6fa31ae3a07eb41dbd750ed43fa29b5518db9a56290530795f6b3cc16873 SHA512 73abf08470c7ba3c5e5f0212a19f37ae98a8582605d2493bb21b2e5c07fafa8fb711f05665e153863d195749a0870e674e203f377ec7bb8425b9d497fa9864d1
DIST go-md2man-1.0.8.tar.gz 79284 BLAKE2B c6bf5c1507f0e7e6393c08592bf56e6423157f265a2f26b10f262c00b15c855e99c022d9e4b465247997b0c9d667ed71c727d03735af6214ec20ca30583235aa SHA512 4c52e01c9b07582b5d55d1e94935378a676bd284a3e8230a8a191d4678b1b6ae92b704a249117c542832170069a70c649e58a1752fb2973709259b5bc108db91
+DIST go-md2man-2.0.0.tar.gz 52021 BLAKE2B d3df2300a28d972b6b7269172a734dda7a60df5c25d8b4a4d9a45a2c636f08286eea4873c32d22a9533ba4e333660e4ec2deabe8fbdb9af3db96c07884278d04 SHA512 22a6c950ca7e386246fadb15f05d0a60437a249df48a7c5f905bc4bd05034cede6318e1158bd2113e97b4fd2d1e838776680a00c6141ac2b3c8795aeee15a39d
diff --git a/dev-go/go-md2man/go-md2man-2.0.0.ebuild b/dev-go/go-md2man/go-md2man-2.0.0.ebuild
new file mode 100644
index 00000000000..09492c13936
--- /dev/null
+++ b/dev-go/go-md2man/go-md2man-2.0.0.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2016 Gentoo Foundation
+# 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="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64"
+
+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
+}
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-go/go-md2man/
@ 2020-03-12 2:29 William Hubbs
0 siblings, 0 replies; 28+ messages in thread
From: William Hubbs @ 2020-03-12 2:29 UTC (permalink / raw
To: gentoo-commits
commit: c7a9137ed033c1e351a773129233c4efca154785
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 12 02:29:38 2020 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Thu Mar 12 02:29:38 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7a9137e
dev-go/go-md2man: typo fix
Signed-off-by: William Hubbs <williamh <AT> gentoo.org>
dev-go/go-md2man/go-md2man-2.0.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-go/go-md2man/go-md2man-2.0.0.ebuild b/dev-go/go-md2man/go-md2man-2.0.0.ebuild
index 09492c13936..15488683bb0 100644
--- a/dev-go/go-md2man/go-md2man-2.0.0.ebuild
+++ b/dev-go/go-md2man/go-md2man-2.0.0.ebuild
@@ -17,7 +17,7 @@ src_compile() {
}
src_install() {
- "${S}"/bin/go-md2man -in go-md2man.1.md -out go-md2man.1 || ||
+ "${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
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-go/go-md2man/
@ 2020-03-22 16:10 William Hubbs
0 siblings, 0 replies; 28+ messages in thread
From: William Hubbs @ 2020-03-22 16:10 UTC (permalink / raw
To: gentoo-commits
commit: 5855ce5516556adc4d525475265c0ccc43eef3b2
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 22 16:08:28 2020 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Sun Mar 22 16:10:27 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5855ce55
dev-go/go-md2man: fix test phase
Closes: https://bugs.gentoo.org/712404
Signed-off-by: William Hubbs <williamh <AT> gentoo.org>
dev-go/go-md2man/go-md2man-2.0.0.ebuild | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/dev-go/go-md2man/go-md2man-2.0.0.ebuild b/dev-go/go-md2man/go-md2man-2.0.0.ebuild
index 15488683bb0..652c7526066 100644
--- a/dev-go/go-md2man/go-md2man-2.0.0.ebuild
+++ b/dev-go/go-md2man/go-md2man-2.0.0.ebuild
@@ -22,3 +22,7 @@ src_install() {
dobin bin/go-md2man
doman go-md2man.1
}
+
+src_test() {
+ emake test
+}
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-go/go-md2man/
@ 2020-04-04 6:38 Robin H. Johnson
0 siblings, 0 replies; 28+ messages in thread
From: Robin H. Johnson @ 2020-04-04 6:38 UTC (permalink / raw
To: gentoo-commits
commit: 291506d2d5a5afee11dadd1940ef31394f80d51f
Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 4 06:38:08 2020 +0000
Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Sat Apr 4 06:38:28 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=291506d2
dev-go/go-md2man: fix LICENSE
Closes: https://bugs.gentoo.org/694386
Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>
dev-go/go-md2man/go-md2man-1.0.3.ebuild | 2 +-
dev-go/go-md2man/go-md2man-1.0.6.ebuild | 2 +-
dev-go/go-md2man/go-md2man-1.0.8.ebuild | 2 +-
dev-go/go-md2man/go-md2man-2.0.0.ebuild | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/dev-go/go-md2man/go-md2man-1.0.3.ebuild b/dev-go/go-md2man/go-md2man-1.0.3.ebuild
index 0a502fe2881..f0255be8f6a 100644
--- a/dev-go/go-md2man/go-md2man-1.0.3.ebuild
+++ b/dev-go/go-md2man/go-md2man-1.0.3.ebuild
@@ -16,7 +16,7 @@ inherit golang-build
DESCRIPTION="A utility to convert markdown to man pages"
HOMEPAGE="https://github.com/cpuguy83/go-md2man"
-LICENSE="MIT"
+LICENSE="BSD-2 MIT"
SLOT="0"
IUSE=""
DEPEND="dev-go/blackfriday"
diff --git a/dev-go/go-md2man/go-md2man-1.0.6.ebuild b/dev-go/go-md2man/go-md2man-1.0.6.ebuild
index e5d53b0b1eb..9c67ea4a48b 100644
--- a/dev-go/go-md2man/go-md2man-1.0.6.ebuild
+++ b/dev-go/go-md2man/go-md2man-1.0.6.ebuild
@@ -16,7 +16,7 @@ inherit golang-build
DESCRIPTION="A utility to convert markdown to man pages"
HOMEPAGE="https://github.com/cpuguy83/go-md2man"
-LICENSE="MIT"
+LICENSE="BSD-2 MIT"
SLOT="0"
IUSE=""
DEPEND="dev-go/blackfriday"
diff --git a/dev-go/go-md2man/go-md2man-1.0.8.ebuild b/dev-go/go-md2man/go-md2man-1.0.8.ebuild
index e6e44b47412..0fa2e9d8aeb 100644
--- a/dev-go/go-md2man/go-md2man-1.0.8.ebuild
+++ b/dev-go/go-md2man/go-md2man-1.0.8.ebuild
@@ -16,7 +16,7 @@ inherit golang-build
DESCRIPTION="A utility to convert markdown to man pages"
HOMEPAGE="https://github.com/cpuguy83/go-md2man"
-LICENSE="MIT"
+LICENSE="BSD-2 MIT"
SLOT="0"
IUSE=""
diff --git a/dev-go/go-md2man/go-md2man-2.0.0.ebuild b/dev-go/go-md2man/go-md2man-2.0.0.ebuild
index 652c7526066..9af47a4a7da 100644
--- a/dev-go/go-md2man/go-md2man-2.0.0.ebuild
+++ b/dev-go/go-md2man/go-md2man-2.0.0.ebuild
@@ -8,7 +8,7 @@ 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="MIT"
+LICENSE="BSD-2 MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~ppc64"
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-go/go-md2man/
@ 2020-05-25 22:55 William Hubbs
0 siblings, 0 replies; 28+ messages in thread
From: William Hubbs @ 2020-05-25 22:55 UTC (permalink / raw
To: gentoo-commits
commit: df88b1fb724b7aff010bf33a2bd606e532458b98
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Mon May 25 22:53:44 2020 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Mon May 25 22:54:32 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df88b1fb
dev-go/go-md2man: remove old
Signed-off-by: William Hubbs <williamh <AT> gentoo.org>
dev-go/go-md2man/Manifest | 3 ---
dev-go/go-md2man/go-md2man-1.0.3.ebuild | 29 -----------------------------
dev-go/go-md2man/go-md2man-1.0.6.ebuild | 29 -----------------------------
dev-go/go-md2man/go-md2man-1.0.8.ebuild | 27 ---------------------------
4 files changed, 88 deletions(-)
diff --git a/dev-go/go-md2man/Manifest b/dev-go/go-md2man/Manifest
index 0895ada5ad1..d5819c4093b 100644
--- a/dev-go/go-md2man/Manifest
+++ b/dev-go/go-md2man/Manifest
@@ -1,4 +1 @@
-DIST go-md2man-1.0.3.tar.gz 3279 BLAKE2B 0b693569ad7ff609508dd28b11bacdc0eb08ee0fd2b2a23dad5e26a670e1fc0fcc2321ee099114dc144fb8671dfcd7ed072e7feb17bb96e17c2f9ff0e748ddac SHA512 855809f068daae2becb31d4b182b0953a9a11428cf89d488e2148256c6f4292bf24d42bd1c5bc96ba2c1c18a8201e859629f2515f750de390e4325cc320ac7b8
-DIST go-md2man-1.0.6.tar.gz 40240 BLAKE2B 183a96b661419861fcca27e34fcd107070839087d61d3c36f3da3b3aa644678d4eeb6fa31ae3a07eb41dbd750ed43fa29b5518db9a56290530795f6b3cc16873 SHA512 73abf08470c7ba3c5e5f0212a19f37ae98a8582605d2493bb21b2e5c07fafa8fb711f05665e153863d195749a0870e674e203f377ec7bb8425b9d497fa9864d1
-DIST go-md2man-1.0.8.tar.gz 79284 BLAKE2B c6bf5c1507f0e7e6393c08592bf56e6423157f265a2f26b10f262c00b15c855e99c022d9e4b465247997b0c9d667ed71c727d03735af6214ec20ca30583235aa SHA512 4c52e01c9b07582b5d55d1e94935378a676bd284a3e8230a8a191d4678b1b6ae92b704a249117c542832170069a70c649e58a1752fb2973709259b5bc108db91
DIST go-md2man-2.0.0.tar.gz 52021 BLAKE2B d3df2300a28d972b6b7269172a734dda7a60df5c25d8b4a4d9a45a2c636f08286eea4873c32d22a9533ba4e333660e4ec2deabe8fbdb9af3db96c07884278d04 SHA512 22a6c950ca7e386246fadb15f05d0a60437a249df48a7c5f905bc4bd05034cede6318e1158bd2113e97b4fd2d1e838776680a00c6141ac2b3c8795aeee15a39d
diff --git a/dev-go/go-md2man/go-md2man-1.0.3.ebuild b/dev-go/go-md2man/go-md2man-1.0.3.ebuild
deleted file mode 100644
index f0255be8f6a..00000000000
--- a/dev-go/go-md2man/go-md2man-1.0.3.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-EGO_PN=github.com/cpuguy83/go-md2man
-
-if [[ ${PV} = *9999* ]]; then
- inherit golang-vcs
-else
- KEYWORDS="amd64 ~arm64"
- EGIT_COMMIT=v${PV}
- SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
- inherit golang-vcs-snapshot
-fi
-inherit golang-build
-
-DESCRIPTION="A utility to convert markdown to man pages"
-HOMEPAGE="https://github.com/cpuguy83/go-md2man"
-LICENSE="BSD-2 MIT"
-SLOT="0"
-IUSE=""
-DEPEND="dev-go/blackfriday"
-RDEPEND=""
-
-src_install() {
- "${S}"/go-md2man -in src/${EGO_PN}/go-md2man.1.md -out go-md2man.1
- dobin go-md2man
- doman go-md2man.1
-}
diff --git a/dev-go/go-md2man/go-md2man-1.0.6.ebuild b/dev-go/go-md2man/go-md2man-1.0.6.ebuild
deleted file mode 100644
index 9c67ea4a48b..00000000000
--- a/dev-go/go-md2man/go-md2man-1.0.6.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-EGO_PN=github.com/cpuguy83/go-md2man
-
-if [[ ${PV} = *9999* ]]; then
- inherit golang-vcs
-else
- KEYWORDS="~amd64 ~arm ~arm64"
- EGIT_COMMIT=v${PV}
- SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
- inherit golang-vcs-snapshot
-fi
-inherit golang-build
-
-DESCRIPTION="A utility to convert markdown to man pages"
-HOMEPAGE="https://github.com/cpuguy83/go-md2man"
-LICENSE="BSD-2 MIT"
-SLOT="0"
-IUSE=""
-DEPEND="dev-go/blackfriday"
-RDEPEND="dev-go/blackfriday:="
-
-src_install() {
- "${S}"/go-md2man -in src/${EGO_PN}/go-md2man.1.md -out go-md2man.1
- dobin go-md2man
- doman go-md2man.1
-}
diff --git a/dev-go/go-md2man/go-md2man-1.0.8.ebuild b/dev-go/go-md2man/go-md2man-1.0.8.ebuild
deleted file mode 100644
index 0fa2e9d8aeb..00000000000
--- a/dev-go/go-md2man/go-md2man-1.0.8.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-EGO_PN=github.com/cpuguy83/go-md2man
-
-if [[ ${PV} = *9999* ]]; then
- inherit golang-vcs
-else
- KEYWORDS="~amd64 ~arm ~arm64 ~ppc64"
- EGIT_COMMIT=v${PV}
- SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
- inherit golang-vcs-snapshot
-fi
-inherit golang-build
-
-DESCRIPTION="A utility to convert markdown to man pages"
-HOMEPAGE="https://github.com/cpuguy83/go-md2man"
-LICENSE="BSD-2 MIT"
-SLOT="0"
-IUSE=""
-
-src_install() {
- "${S}"/go-md2man -in src/${EGO_PN}/go-md2man.1.md -out go-md2man.1
- dobin go-md2man
- doman go-md2man.1
-}
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-go/go-md2man/
@ 2020-05-25 22:55 William Hubbs
0 siblings, 0 replies; 28+ messages in thread
From: William Hubbs @ 2020-05-25 22:55 UTC (permalink / raw
To: gentoo-commits
commit: b2786033ed18cbfe28c03b99d5cdbbb8776de6c8
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Mon May 25 22:52:38 2020 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Mon May 25 22:54:32 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2786033
dev-go/go-md2man: stabilize 2.0.0 on amd64
Signed-off-by: William Hubbs <williamh <AT> gentoo.org>
dev-go/go-md2man/go-md2man-2.0.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-go/go-md2man/go-md2man-2.0.0.ebuild b/dev-go/go-md2man/go-md2man-2.0.0.ebuild
index 9af47a4a7da..05192cf6398 100644
--- a/dev-go/go-md2man/go-md2man-2.0.0.ebuild
+++ b/dev-go/go-md2man/go-md2man-2.0.0.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://github.com/cpuguy83/go-md2man"
LICENSE="BSD-2 MIT"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc64"
src_compile() {
emake BUILD_FLAGS="-mod=vendor" build
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-go/go-md2man/
@ 2020-05-26 23:35 William Hubbs
0 siblings, 0 replies; 28+ messages in thread
From: William Hubbs @ 2020-05-26 23:35 UTC (permalink / raw
To: gentoo-commits
commit: 0ec0a7642577e366fb75560f49b82fec12f1e00c
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Tue May 26 23:31:48 2020 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Tue May 26 23:33:13 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ec0a764
dev-go/go-md2man: restrict tests due to the use of the network
Closes: https://bugs.gentoo.org/715028
Signed-off-by: William Hubbs <williamh <AT> gentoo.org>
dev-go/go-md2man/go-md2man-2.0.0.ebuild | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/dev-go/go-md2man/go-md2man-2.0.0.ebuild b/dev-go/go-md2man/go-md2man-2.0.0.ebuild
index 05192cf6398..c2c7bbae829 100644
--- a/dev-go/go-md2man/go-md2man-2.0.0.ebuild
+++ b/dev-go/go-md2man/go-md2man-2.0.0.ebuild
@@ -12,6 +12,10 @@ LICENSE="BSD-2 MIT"
SLOT="0"
KEYWORDS="amd64 ~arm ~arm64 ~ppc64"
+# restrict tests because they need network-sandbox disabled
+# bug https://bugs.gentoo.org/715028
+RESTRICT+=" test"
+
src_compile() {
emake BUILD_FLAGS="-mod=vendor" build
}
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-go/go-md2man/
@ 2020-08-31 21:03 Thomas Deutschmann
0 siblings, 0 replies; 28+ messages in thread
From: Thomas Deutschmann @ 2020-08-31 21:03 UTC (permalink / raw
To: gentoo-commits
commit: 49eac056c7dec3ef3c900c7daebc9c5c15603278
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 31 21:03:27 2020 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Mon Aug 31 21:03:40 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49eac056
dev-go/go-md2man: x86 keyworded (bug #738758)
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
dev-go/go-md2man/go-md2man-2.0.0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 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
index c2c7bbae829..864c956f6d1 100644
--- a/dev-go/go-md2man/go-md2man-2.0.0.ebuild
+++ b/dev-go/go-md2man/go-md2man-2.0.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -10,7 +10,7 @@ HOMEPAGE="https://github.com/cpuguy83/go-md2man"
LICENSE="BSD-2 MIT"
SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~x86"
# restrict tests because they need network-sandbox disabled
# bug https://bugs.gentoo.org/715028
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-go/go-md2man/
@ 2020-10-18 0:48 Georgy Yakovlev
0 siblings, 0 replies; 28+ messages in thread
From: Georgy Yakovlev @ 2020-10-18 0:48 UTC (permalink / raw
To: gentoo-commits
commit: 5836ceb61319c33347ea51cc94cd2b8aa2636b61
Author: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 18 00:30:48 2020 +0000
Commit: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
CommitDate: Sun Oct 18 00:48:17 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5836ceb6
dev-go/go-md2man: ppc64 stable, bug #749768
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org>
dev-go/go-md2man/go-md2man-2.0.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-go/go-md2man/go-md2man-2.0.0.ebuild b/dev-go/go-md2man/go-md2man-2.0.0.ebuild
index 864c956f6d1..1c7a88897aa 100644
--- a/dev-go/go-md2man/go-md2man-2.0.0.ebuild
+++ b/dev-go/go-md2man/go-md2man-2.0.0.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://github.com/cpuguy83/go-md2man"
LICENSE="BSD-2 MIT"
SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ppc64 ~x86"
# restrict tests because they need network-sandbox disabled
# bug https://bugs.gentoo.org/715028
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-go/go-md2man/
@ 2020-10-18 0:48 Georgy Yakovlev
0 siblings, 0 replies; 28+ messages in thread
From: Georgy Yakovlev @ 2020-10-18 0:48 UTC (permalink / raw
To: gentoo-commits
commit: e5584e2e3ac0cc371d26210bf979691b395918b0
Author: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 18 00:31:27 2020 +0000
Commit: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
CommitDate: Sun Oct 18 00:48:17 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5584e2e
dev-go/go-md2man: arm64 stable, bug #749768
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org>
dev-go/go-md2man/go-md2man-2.0.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-go/go-md2man/go-md2man-2.0.0.ebuild b/dev-go/go-md2man/go-md2man-2.0.0.ebuild
index 1c7a88897aa..31aca907e20 100644
--- a/dev-go/go-md2man/go-md2man-2.0.0.ebuild
+++ b/dev-go/go-md2man/go-md2man-2.0.0.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://github.com/cpuguy83/go-md2man"
LICENSE="BSD-2 MIT"
SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ppc64 ~x86"
+KEYWORDS="amd64 ~arm arm64 ppc64 ~x86"
# restrict tests because they need network-sandbox disabled
# bug https://bugs.gentoo.org/715028
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-go/go-md2man/
@ 2021-08-13 2:09 Yixun Lan
0 siblings, 0 replies; 28+ messages in thread
From: Yixun Lan @ 2021-08-13 2:09 UTC (permalink / raw
To: gentoo-commits
commit: d43886d3444a2d1f3257adc77ade79707f19e839
Author: Yixun Lan <dlan <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 12 22:44:45 2021 +0000
Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Fri Aug 13 02:07:14 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d43886d3
dev-go/go-md2man: keyword ~riscv
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>
dev-go/go-md2man/go-md2man-2.0.0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 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
index 31aca907e20..128e3b19783 100644
--- a/dev-go/go-md2man/go-md2man-2.0.0.ebuild
+++ b/dev-go/go-md2man/go-md2man-2.0.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -10,7 +10,7 @@ HOMEPAGE="https://github.com/cpuguy83/go-md2man"
LICENSE="BSD-2 MIT"
SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ppc64 ~x86"
+KEYWORDS="amd64 ~arm arm64 ppc64 ~riscv ~x86"
# restrict tests because they need network-sandbox disabled
# bug https://bugs.gentoo.org/715028
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-go/go-md2man/
@ 2022-08-25 5:31 WANG Xuerui
0 siblings, 0 replies; 28+ messages in thread
From: WANG Xuerui @ 2022-08-25 5:31 UTC (permalink / raw
To: gentoo-commits
commit: c076a58b9649d49bfafb349bc453606cb3aaa128
Author: WANG Xuerui <xen0n <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 25 05:29:19 2022 +0000
Commit: WANG Xuerui <xen0n <AT> gentoo <DOT> org>
CommitDate: Thu Aug 25 05:29:19 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c076a58b
dev-go/go-md2man: keyword 2.0.0 for ~loong
Signed-off-by: WANG Xuerui <xen0n <AT> gentoo.org>
dev-go/go-md2man/go-md2man-2.0.0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 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
index 128e3b197838..8273c2e066e3 100644
--- a/dev-go/go-md2man/go-md2man-2.0.0.ebuild
+++ b/dev-go/go-md2man/go-md2man-2.0.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -10,7 +10,7 @@ HOMEPAGE="https://github.com/cpuguy83/go-md2man"
LICENSE="BSD-2 MIT"
SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ppc64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm arm64 ~loong ppc64 ~riscv ~x86"
# restrict tests because they need network-sandbox disabled
# bug https://bugs.gentoo.org/715028
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-go/go-md2man/
@ 2023-02-21 17:18 William Hubbs
0 siblings, 0 replies; 28+ messages in thread
From: William Hubbs @ 2023-02-21 17:18 UTC (permalink / raw
To: gentoo-commits
commit: c34e1458c05a88079beec38575407054ef238cee
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 21 17:18:20 2023 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Tue Feb 21 17:18:37 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c34e1458
dev-go/go-md2man: add 2.0.2
Closes: https://bugs.gentoo.org/895448
Signed-off-by: William Hubbs <williamh <AT> gentoo.org>
dev-go/go-md2man/Manifest | 1 +
dev-go/go-md2man/go-md2man-2.0.2.ebuild | 32 ++++++++++++++++++++++++++++++++
2 files changed, 33 insertions(+)
diff --git a/dev-go/go-md2man/Manifest b/dev-go/go-md2man/Manifest
index d5819c4093be..d147bd3f296c 100644
--- a/dev-go/go-md2man/Manifest
+++ b/dev-go/go-md2man/Manifest
@@ -1 +1,2 @@
DIST go-md2man-2.0.0.tar.gz 52021 BLAKE2B d3df2300a28d972b6b7269172a734dda7a60df5c25d8b4a4d9a45a2c636f08286eea4873c32d22a9533ba4e333660e4ec2deabe8fbdb9af3db96c07884278d04 SHA512 22a6c950ca7e386246fadb15f05d0a60437a249df48a7c5f905bc4bd05034cede6318e1158bd2113e97b4fd2d1e838776680a00c6141ac2b3c8795aeee15a39d
+DIST go-md2man-2.0.2.tar.gz 64353 BLAKE2B cc9ce9d14b61e600cf5179b72e08bc7e6ae5fcf31d3e00d6e5f7e5e77a26dd2b2b8a938e168e0053b2a9f9aab734d9beb02f7d95549fbf073125ad42b03cf478 SHA512 c81edfdc0b6647ef699cc908a1a7038d98da34df6d48b223b83a0699de91a7e322e70d67645acf1fc848918f4c1ea310160c7ccb75e6f97b53af7103c7aa18b3
diff --git a/dev-go/go-md2man/go-md2man-2.0.2.ebuild b/dev-go/go-md2man/go-md2man-2.0.2.ebuild
new file mode 100644
index 000000000000..a3c4c9e0ebeb
--- /dev/null
+++ b/dev-go/go-md2man/go-md2man-2.0.2.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+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
+}
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-go/go-md2man/
@ 2023-09-28 0:22 Sam James
0 siblings, 0 replies; 28+ messages in thread
From: Sam James @ 2023-09-28 0:22 UTC (permalink / raw
To: gentoo-commits
commit: 7a802b2d9a8979efd604ad435d493f4cdb1bd539
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 28 00:22:17 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Sep 28 00:22:17 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a802b2d
dev-go/go-md2man: Stabilize 2.0.2 arm64, #914482
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-go/go-md2man/go-md2man-2.0.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-go/go-md2man/go-md2man-2.0.2.ebuild b/dev-go/go-md2man/go-md2man-2.0.2.ebuild
index a3c4c9e0ebeb..97ed30f10098 100644
--- a/dev-go/go-md2man/go-md2man-2.0.2.ebuild
+++ b/dev-go/go-md2man/go-md2man-2.0.2.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://github.com/cpuguy83/go-md2man"
LICENSE="BSD-2 MIT"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
+KEYWORDS="~amd64 ~arm arm64 ~loong ~ppc64 ~riscv ~x86"
# restrict tests because they need network-sandbox disabled
# bug https://bugs.gentoo.org/715028
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-go/go-md2man/
@ 2023-09-28 1:00 Sam James
0 siblings, 0 replies; 28+ messages in thread
From: Sam James @ 2023-09-28 1:00 UTC (permalink / raw
To: gentoo-commits
commit: a849c0d0de678074898a237011614eac946d9d38
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 28 01:00:06 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Sep 28 01:00:06 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a849c0d0
dev-go/go-md2man: Stabilize 2.0.2 ppc64, #914482
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-go/go-md2man/go-md2man-2.0.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-go/go-md2man/go-md2man-2.0.2.ebuild b/dev-go/go-md2man/go-md2man-2.0.2.ebuild
index 97ed30f10098..fe2b7eb85a6e 100644
--- a/dev-go/go-md2man/go-md2man-2.0.2.ebuild
+++ b/dev-go/go-md2man/go-md2man-2.0.2.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://github.com/cpuguy83/go-md2man"
LICENSE="BSD-2 MIT"
SLOT="0"
-KEYWORDS="~amd64 ~arm arm64 ~loong ~ppc64 ~riscv ~x86"
+KEYWORDS="~amd64 ~arm arm64 ~loong ppc64 ~riscv ~x86"
# restrict tests because they need network-sandbox disabled
# bug https://bugs.gentoo.org/715028
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-go/go-md2man/
@ 2023-09-28 16:15 Arthur Zamarin
0 siblings, 0 replies; 28+ messages in thread
From: Arthur Zamarin @ 2023-09-28 16:15 UTC (permalink / raw
To: gentoo-commits
commit: 88704d08b1590d2efd8fffcd3049dd28d500cce2
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 28 16:15:11 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu Sep 28 16:15:11 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88704d08
dev-go/go-md2man: Stabilize 2.0.2 amd64, #914482
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-go/go-md2man/go-md2man-2.0.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-go/go-md2man/go-md2man-2.0.2.ebuild b/dev-go/go-md2man/go-md2man-2.0.2.ebuild
index fe2b7eb85a6e..8d9a92730d2d 100644
--- a/dev-go/go-md2man/go-md2man-2.0.2.ebuild
+++ b/dev-go/go-md2man/go-md2man-2.0.2.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://github.com/cpuguy83/go-md2man"
LICENSE="BSD-2 MIT"
SLOT="0"
-KEYWORDS="~amd64 ~arm arm64 ~loong ppc64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm arm64 ~loong ppc64 ~riscv ~x86"
# restrict tests because they need network-sandbox disabled
# bug https://bugs.gentoo.org/715028
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-go/go-md2man/
@ 2023-09-28 20:30 William Hubbs
0 siblings, 0 replies; 28+ messages in thread
From: William Hubbs @ 2023-09-28 20:30 UTC (permalink / raw
To: gentoo-commits
commit: 93e72fdaec181e905c2815c18d66eb68461b9ef9
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 28 20:29:11 2023 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Thu Sep 28 20:29:11 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93e72fda
dev-go/go-md2man: drop 2.0.0
Signed-off-by: William Hubbs <williamh <AT> gentoo.org>
dev-go/go-md2man/Manifest | 1 -
dev-go/go-md2man/go-md2man-2.0.0.ebuild | 32 --------------------------------
2 files changed, 33 deletions(-)
diff --git a/dev-go/go-md2man/Manifest b/dev-go/go-md2man/Manifest
index d147bd3f296c..ac3ef5d418e9 100644
--- a/dev-go/go-md2man/Manifest
+++ b/dev-go/go-md2man/Manifest
@@ -1,2 +1 @@
-DIST go-md2man-2.0.0.tar.gz 52021 BLAKE2B d3df2300a28d972b6b7269172a734dda7a60df5c25d8b4a4d9a45a2c636f08286eea4873c32d22a9533ba4e333660e4ec2deabe8fbdb9af3db96c07884278d04 SHA512 22a6c950ca7e386246fadb15f05d0a60437a249df48a7c5f905bc4bd05034cede6318e1158bd2113e97b4fd2d1e838776680a00c6141ac2b3c8795aeee15a39d
DIST go-md2man-2.0.2.tar.gz 64353 BLAKE2B cc9ce9d14b61e600cf5179b72e08bc7e6ae5fcf31d3e00d6e5f7e5e77a26dd2b2b8a938e168e0053b2a9f9aab734d9beb02f7d95549fbf073125ad42b03cf478 SHA512 c81edfdc0b6647ef699cc908a1a7038d98da34df6d48b223b83a0699de91a7e322e70d67645acf1fc848918f4c1ea310160c7ccb75e6f97b53af7103c7aa18b3
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
-}
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-go/go-md2man/
@ 2024-01-12 18:45 William Hubbs
0 siblings, 0 replies; 28+ messages in thread
From: William Hubbs @ 2024-01-12 18:45 UTC (permalink / raw
To: gentoo-commits
commit: 9ccd620b9620d7b59effe6e3335d91caf4572949
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 12 18:43:00 2024 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Fri Jan 12 18:45:25 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ccd620b
dev-go/go-md2man: add 2.0.3
Closes: https://bugs.gentoo.org/921726
Signed-off-by: William Hubbs <williamh <AT> gentoo.org>
dev-go/go-md2man/Manifest | 1 +
dev-go/go-md2man/go-md2man-2.0.3.ebuild | 32 ++++++++++++++++++++++++++++++++
2 files changed, 33 insertions(+)
diff --git a/dev-go/go-md2man/Manifest b/dev-go/go-md2man/Manifest
index ac3ef5d418e9..6a3a3a63a429 100644
--- a/dev-go/go-md2man/Manifest
+++ b/dev-go/go-md2man/Manifest
@@ -1 +1,2 @@
DIST go-md2man-2.0.2.tar.gz 64353 BLAKE2B cc9ce9d14b61e600cf5179b72e08bc7e6ae5fcf31d3e00d6e5f7e5e77a26dd2b2b8a938e168e0053b2a9f9aab734d9beb02f7d95549fbf073125ad42b03cf478 SHA512 c81edfdc0b6647ef699cc908a1a7038d98da34df6d48b223b83a0699de91a7e322e70d67645acf1fc848918f4c1ea310160c7ccb75e6f97b53af7103c7aa18b3
+DIST go-md2man-2.0.3.tar.gz 64961 BLAKE2B 790fe7c247e0f934a397d7389be589c6e4d75be3cd533da13ae4e46c927604c3249e3a2f0c975320bac0f21f3040059202434f6fd4b2ea6dd50d6b772fa01842 SHA512 237e8039beea11b4efb7d0c75fb5826c17dea50057b0149b9533e72e2a5198811f9a3a5b264ea3788922d2f03b07cb57914448b2d4325d54d0f946fb42c42f40
diff --git a/dev-go/go-md2man/go-md2man-2.0.3.ebuild b/dev-go/go-md2man/go-md2man-2.0.3.ebuild
new file mode 100644
index 000000000000..84427b8c616f
--- /dev/null
+++ b/dev-go/go-md2man/go-md2man-2.0.3.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+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
+}
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-go/go-md2man/
@ 2024-02-22 4:45 Ionen Wolkens
0 siblings, 0 replies; 28+ messages in thread
From: Ionen Wolkens @ 2024-02-22 4:45 UTC (permalink / raw
To: gentoo-commits
commit: 616107b35116c1ff90519510fc557fc645f1c627
Author: Matoro Mahri <matoro_gentoo <AT> matoro <DOT> tk>
AuthorDate: Wed Feb 21 15:48:50 2024 +0000
Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Thu Feb 22 04:45:33 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=616107b3
dev-go/go-md2man: Stabilize 2.0.3 arm64, #921771
Signed-off-by: Matoro Mahri <matoro_gentoo <AT> matoro.tk>
Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
dev-go/go-md2man/go-md2man-2.0.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-go/go-md2man/go-md2man-2.0.3.ebuild b/dev-go/go-md2man/go-md2man-2.0.3.ebuild
index 84427b8c616f..9fb1aa86c1e9 100644
--- a/dev-go/go-md2man/go-md2man-2.0.3.ebuild
+++ b/dev-go/go-md2man/go-md2man-2.0.3.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://github.com/cpuguy83/go-md2man"
LICENSE="BSD-2 MIT"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
+KEYWORDS="~amd64 ~arm arm64 ~loong ~ppc64 ~riscv ~x86"
# restrict tests because they need network-sandbox disabled
# bug https://bugs.gentoo.org/715028
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-go/go-md2man/
@ 2024-02-22 6:58 Sam James
0 siblings, 0 replies; 28+ messages in thread
From: Sam James @ 2024-02-22 6:58 UTC (permalink / raw
To: gentoo-commits
commit: a1722ccc61bf3b9f38d62ec0cca082b070fef768
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 22 06:58:01 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Feb 22 06:58:01 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1722ccc
dev-go/go-md2man: Stabilize 2.0.3 amd64, #921771
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-go/go-md2man/go-md2man-2.0.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-go/go-md2man/go-md2man-2.0.3.ebuild b/dev-go/go-md2man/go-md2man-2.0.3.ebuild
index 8601293d979e..de6a9433af88 100644
--- a/dev-go/go-md2man/go-md2man-2.0.3.ebuild
+++ b/dev-go/go-md2man/go-md2man-2.0.3.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://github.com/cpuguy83/go-md2man"
LICENSE="BSD-2 MIT"
SLOT="0"
-KEYWORDS="~amd64 ~arm arm64 ~loong ppc64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm arm64 ~loong ppc64 ~riscv ~x86"
# restrict tests because they need network-sandbox disabled
# bug https://bugs.gentoo.org/715028
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-go/go-md2man/
@ 2024-02-22 6:58 Sam James
0 siblings, 0 replies; 28+ messages in thread
From: Sam James @ 2024-02-22 6:58 UTC (permalink / raw
To: gentoo-commits
commit: 0f9bace360cbb83e3aa135128c0130bedafa1e8f
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 22 06:58:00 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Feb 22 06:58:00 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f9bace3
dev-go/go-md2man: Stabilize 2.0.3 ppc64, #921771
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-go/go-md2man/go-md2man-2.0.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-go/go-md2man/go-md2man-2.0.3.ebuild b/dev-go/go-md2man/go-md2man-2.0.3.ebuild
index 9fb1aa86c1e9..8601293d979e 100644
--- a/dev-go/go-md2man/go-md2man-2.0.3.ebuild
+++ b/dev-go/go-md2man/go-md2man-2.0.3.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://github.com/cpuguy83/go-md2man"
LICENSE="BSD-2 MIT"
SLOT="0"
-KEYWORDS="~amd64 ~arm arm64 ~loong ~ppc64 ~riscv ~x86"
+KEYWORDS="~amd64 ~arm arm64 ~loong ppc64 ~riscv ~x86"
# restrict tests because they need network-sandbox disabled
# bug https://bugs.gentoo.org/715028
^ permalink raw reply related [flat|nested] 28+ messages in thread
end of thread, other threads:[~2024-02-22 6:58 UTC | newest]
Thread overview: 28+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-28 0:22 [gentoo-commits] repo/gentoo:master commit in: dev-go/go-md2man/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2024-02-22 6:58 Sam James
2024-02-22 6:58 Sam James
2024-02-22 4:45 Ionen Wolkens
2024-01-12 18:45 William Hubbs
2023-09-28 20:30 William Hubbs
2023-09-28 16:15 Arthur Zamarin
2023-09-28 1:00 Sam James
2023-02-21 17:18 William Hubbs
2022-08-25 5:31 WANG Xuerui
2021-08-13 2:09 Yixun Lan
2020-10-18 0:48 Georgy Yakovlev
2020-10-18 0:48 Georgy Yakovlev
2020-08-31 21:03 Thomas Deutschmann
2020-05-26 23:35 William Hubbs
2020-05-25 22:55 William Hubbs
2020-05-25 22:55 William Hubbs
2020-04-04 6:38 Robin H. Johnson
2020-03-22 16:10 William Hubbs
2020-03-12 2:29 William Hubbs
2020-03-12 1:39 William Hubbs
2020-01-17 8:52 Georgy Yakovlev
2019-01-01 19:20 William Hubbs
2017-04-05 10:21 Michael Weber
2017-01-22 23:18 William Hubbs
2016-04-27 8:24 Agostino Sarubbo
2016-02-27 18:51 Stephen Klimaszewski
2015-08-24 23:02 William Hubbs
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox