* [gentoo-commits] repo/proj/guru:master commit in: dev-util/mh/
@ 2021-08-03 8:45 Andrew Ammerlaan
0 siblings, 0 replies; 3+ messages in thread
From: Andrew Ammerlaan @ 2021-08-03 8:45 UTC (permalink / raw
To: gentoo-commits
commit: 394e9d42bf55730ed4a260b17497053e27c7d2b8
Author: Oz N Tiram <oz.tiram <AT> gmail <DOT> com>
AuthorDate: Mon Aug 2 07:58:10 2021 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Mon Aug 2 08:03:13 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=394e9d42
dev-util/mh: initial import
Signed-off-by: Oz N Tiram <oz.tiram <AT> gmail.com>
dev-util/mh/Manifest | 1 +
dev-util/mh/metadata.xml | 23 +++++++++++++++++++++++
dev-util/mh/mh-1.0.3.ebuild | 33 +++++++++++++++++++++++++++++++++
3 files changed, 57 insertions(+)
diff --git a/dev-util/mh/Manifest b/dev-util/mh/Manifest
new file mode 100644
index 000000000..17cb68dc9
--- /dev/null
+++ b/dev-util/mh/Manifest
@@ -0,0 +1 @@
+DIST mh-1.0.3.tar.gz 929281 BLAKE2B 4a565dc317c9d0d6d3678bc9c4de56b186175414a84437c59deb0c10b8c3d6432e974deb995c9ed954e144bc8e7bac0145215409de88956d71c570eb8590ed63 SHA512 7f3e64bcac4743b746e5c0fbbc7579066ec563ac3a5f5fbbc1eb540111843ed72000c7b0fbb3787b1f9015d9c434fa99af5179f7c47cf7f217bf27a3f7ae6b05
diff --git a/dev-util/mh/metadata.xml b/dev-util/mh/metadata.xml
new file mode 100644
index 000000000..06eced278
--- /dev/null
+++ b/dev-util/mh/metadata.xml
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person" proxied="yes">
+ <name>Oz Tiram</name>
+ <email>oz.tiram@gmail.com</email>
+ </maintainer>
+ <maintainer type="project" proxied="proxy">
+ <email>proxy-maint@gentoo.org</email>
+ <name>Proxy Maintainers</name>
+ </maintainer>
+ <longdescription lang="en">
+ A small program you put in your Makefile to produce fancy help.
+ mh parses the comments you put after targets and variables, and
+ produces a help menu, which helps understanding what each target
+ does. This is useful, if Makefile is used as a task launcher for
+ different tools (e.g. wrapper around docker, yarn, npm and setup.py
+ etc.)
+ </longdescription>
+ <upstream>
+ <remote-id type="github">oz123/mh</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/dev-util/mh/mh-1.0.3.ebuild b/dev-util/mh/mh-1.0.3.ebuild
new file mode 100644
index 000000000..d2c0f855c
--- /dev/null
+++ b/dev-util/mh/mh-1.0.3.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Generate help for Makefile"
+HOMEPAGE="https://github.com/oz123/mh"
+SRC_URI="https://github.com/oz123/mh/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+LICENSE="BSD"
+SLOT=0
+
+IUSE="test"
+KEYWORDS="~amd64"
+
+RESTRICT="!test? ( test )"
+
+BDEPEND="virtual/pkgconfig"
+
+RDEPEND="dev-libs/libpcre2"
+
+DEPEND="
+ ${RDEPEND}
+ test? ( dev-util/cmocka )
+ "
+
+src_compile() {
+ emake mh VERSION="${PV}"
+}
+
+src_install() {
+ emake install DESTDIR="${D}" PREFIX="/usr"
+ dodoc Makefile.example
+}
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: dev-util/mh/
@ 2021-08-07 17:48 Florian Schmaus
0 siblings, 0 replies; 3+ messages in thread
From: Florian Schmaus @ 2021-08-07 17:48 UTC (permalink / raw
To: gentoo-commits
commit: 5abb1aaf94b6b99d854cb45a6a50c8c79c2bfbf2
Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Fri Aug 6 00:43:39 2021 +0000
Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Fri Aug 6 00:43:39 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5abb1aaf
dev-util/mh: update maintainers
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
dev-util/mh/metadata.xml | 6 +-----
1 file changed, 1 insertion(+), 5 deletions(-)
diff --git a/dev-util/mh/metadata.xml b/dev-util/mh/metadata.xml
index 06eced278..f7c437466 100644
--- a/dev-util/mh/metadata.xml
+++ b/dev-util/mh/metadata.xml
@@ -1,14 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <maintainer type="person" proxied="yes">
+ <maintainer type="person">
<name>Oz Tiram</name>
<email>oz.tiram@gmail.com</email>
</maintainer>
- <maintainer type="project" proxied="proxy">
- <email>proxy-maint@gentoo.org</email>
- <name>Proxy Maintainers</name>
- </maintainer>
<longdescription lang="en">
A small program you put in your Makefile to produce fancy help.
mh parses the comments you put after targets and variables, and
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: dev-util/mh/
@ 2024-12-06 8:32 Viorel Munteanu
0 siblings, 0 replies; 3+ messages in thread
From: Viorel Munteanu @ 2024-12-06 8:32 UTC (permalink / raw
To: gentoo-commits
commit: a678f8cf6ac5b9b512937a78c2b4f77a124ee86a
Author: Oz Tiram <oz.tiram <AT> gmail <DOT> com>
AuthorDate: Thu Dec 5 14:08:20 2024 +0000
Commit: Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Thu Dec 5 14:09:24 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a678f8cf
dev-util/mh: inherit from toolchain-funcs
Closes: https://bugs.gentoo.org/945901
Signed-off-by: Oz Tiram <oz.tiram <AT> gmail.com>
dev-util/mh/mh-1.4.1.ebuild | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/dev-util/mh/mh-1.4.1.ebuild b/dev-util/mh/mh-1.4.1.ebuild
index d3d830e8f..e42f86af5 100644
--- a/dev-util/mh/mh-1.4.1.ebuild
+++ b/dev-util/mh/mh-1.4.1.ebuild
@@ -11,6 +11,8 @@ LICENSE="BSD"
SLOT=0
KEYWORDS="~amd64"
+inherit toolchain-funcs
+
IUSE="test"
RESTRICT="!test? ( test )"
@@ -23,7 +25,7 @@ DEPEND="
"
src_compile() {
- emake mh VERSION="${PV}"
+ emake mh VERSION="${PV}" CC="$(tc-getCC)"
}
src_install() {
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-12-06 8:32 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-06 8:32 [gentoo-commits] repo/proj/guru:master commit in: dev-util/mh/ Viorel Munteanu
-- strict thread matches above, loose matches on Subject: below --
2021-08-07 17:48 Florian Schmaus
2021-08-03 8:45 Andrew Ammerlaan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox