public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Alexis Ballier" <aballier@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/bmake/
Date: Thu, 20 Oct 2016 13:06:50 +0000 (UTC)	[thread overview]
Message-ID: <1476965987.3099a9a149e427c7c62739b92b2a12d119105aa5.aballier@gentoo> (raw)

commit:     3099a9a149e427c7c62739b92b2a12d119105aa5
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 20 12:19:47 2016 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Thu Oct 20 12:19:47 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3099a9a1

sys-devel/bmake: bump to 20160926

Package-Manager: portage-2.3.2

 sys-devel/bmake/Manifest              |  1 +
 sys-devel/bmake/bmake-20160926.ebuild | 55 +++++++++++++++++++++++++++++++++++
 2 files changed, 56 insertions(+)

diff --git a/sys-devel/bmake/Manifest b/sys-devel/bmake/Manifest
index 497ddec..d4d365d 100644
--- a/sys-devel/bmake/Manifest
+++ b/sys-devel/bmake/Manifest
@@ -1,4 +1,5 @@
 DIST bmake-20160315.tar.gz 538673 SHA256 372475f0ab78da5341a1a61af505aaba76356107a1914b3345d79344275cbbe9 SHA512 5addb2b128be6bdeaf93c740bafa102d26224ee8b91e90dbb92333b3f660fdb3837418a081d29718c21519c5cdf994473f1ee75affe4d9e18e5753607ec55ba0 WHIRLPOOL 688c478428b52153384b6fb214807ab57fa133bfe669d8e8c4133c390efad9e5dc11dcf77cf977da5f3eb5581f7ed7e5a5044a3ece615cc8627112069bae52f8
 DIST bmake-20160606.tar.gz 541786 SHA256 4420509062d5b3a8ce970245f14520261f5bd770ddf056dc75d9ba13831fd317 SHA512 ecf8e2e3127c603edc0a29e2cd88d1e5847a0bfd01db08d16fade9a32e0691edb356a1b50f72cdca6d03ce2eeb9daa6e4b1d520b1c6acfe56e4a30f7b03de311 WHIRLPOOL 2e5bb40110fe28e7ef0f5c2a3d670874465db8316977b8cd62f762ba9561176d6fa8cd01db41dd1ecceb1a2646ec2f507373ae0de8cf202c16c25034b3e4f26e
 DIST bmake-20160818.tar.gz 543406 SHA256 d64b23e3e4013b6d4ea590b05251874ffa9d841299b4e5344a6edf45ea7e1141 SHA512 b8474eab965040a047f8b77ae4c0bd6e08e77381b39a746d4255394d88f025800d71eeb47146a358227cc6bc5e383705ca60a78694e8e5eb86869da718c3057f WHIRLPOOL 7451f3cd16b06a8969dff0db1d2e707d34975867625596b3b38b52a39e5aa3eb0530b364de1cb192cbfd2c8bd25c2f2878b531bc858ebf0f14823ff1a49cd6b0
+DIST bmake-20160926.tar.gz 544748 SHA256 5859a7c988936f605120ad3ad127a7c116269d92dd45b559f143f3ee7addba11 SHA512 38c9f928d9178404b9cb32c78cc2317e0947e0a23631e8c416f7ec35523c3e75ab324651204ebdc1928653927f8aa990a5aa75ce48d35184f7392195402ad2a7 WHIRLPOOL 194f40525f99cb2fa2738526fb2300bd2a80f25bc74a073837b42287abeebb9369e7d0121c940675ea160df192eab2f9a7909fd20e5b8628a4ca2fd3a6638dde
 DIST mk-20151111.tar.gz 88106 SHA256 beebba89da0ba068c904599d3358e6f08c35418b13300fac787c11774a525bc1 SHA512 48fc6c845f2aef3b9be6fdb1db8a62448857ba7cbffc5417f45a7a2d5e59940356a245b9f484aa05e4c585e0a4c2e2eb7577c7d9e942cc673eb561f6c6e257d4 WHIRLPOOL 68838257558b43bc503841cf23f09cfc926e1152f847fcecc803574070eb9c0ceb5fc75c0f78f52559d1dfd7283a4b001c76b62e44158850c0c019a67d69b3aa

diff --git a/sys-devel/bmake/bmake-20160926.ebuild b/sys-devel/bmake/bmake-20160926.ebuild
new file mode 100644
index 00000000..cce8dff
--- /dev/null
+++ b/sys-devel/bmake/bmake-20160926.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils
+
+MK_VER=20151111
+DESCRIPTION="NetBSD's portable make"
+HOMEPAGE="http://www.crufty.net/help/sjg/bmake.html"
+SRC_URI="http://void.crufty.net/ftp/pub/sjg/${P}.tar.gz
+		http://void.crufty.net/ftp/pub/sjg/mk-${MK_VER}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86 ~x64-freebsd"
+IUSE=""
+
+DEPEND=""
+RDEPEND=""
+
+S="${WORKDIR}/${PN}"
+
+src_configure() {
+	econf \
+		--with-mksrc=../mk \
+		--with-default-sys-path="${EPREFIX}"/usr/share/mk/${PN} \
+		--with-machine_arch=${ARCH}
+}
+
+src_compile() {
+	sh make-bootstrap.sh || die "bootstrap failed"
+}
+
+src_test() {
+	cd unit-tests
+	LC_ALL=C env -u A ${S}/bmake -r -m . > test.out 2>&1 \
+		|| die "tests compilation failed"
+	sed -i \
+		-e "s:${S}/::g" \
+		-e "s:bmake\\[.\\]:make:g" \
+		-e "s:unit-tests/::g" \
+		test.out || die "Fixing values failed"
+	diff -u test.exp test.out
+	[[ $(diff -u test.exp test.out |wc -l) -gt 0 ]] && die "tests differ"
+}
+
+src_install() {
+	dobin ${PN}
+	newman ${PN}.cat1 ${PN}.1
+	FORCE_BSD_MK=1 SYS_MK_DIR=. \
+		sh ../mk/install-mk -v -m 644 "${ED}"/usr/share/mk/${PN} \
+		|| die "failed to install mk files"
+}


             reply	other threads:[~2016-10-20 13:06 UTC|newest]

Thread overview: 117+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-10-20 13:06 Alexis Ballier [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-01-10  8:21 [gentoo-commits] repo/gentoo:master commit in: sys-devel/bmake/ Jakov Smolić
2024-01-08 21:10 Arthur Zamarin
2023-12-27  0:20 Jakov Smolić
2023-12-11  4:33 Arthur Zamarin
2023-12-11  4:33 Arthur Zamarin
2023-12-08 10:25 Arthur Zamarin
2023-12-08 10:05 Arthur Zamarin
2023-12-08  9:38 Jakov Smolić
2023-11-22 17:10 Jakov Smolić
2023-07-25  8:28 Jakov Smolić
2023-07-24 22:50 Sam James
2023-06-10  5:22 Jakov Smolić
2023-06-09 17:47 Arthur Zamarin
2023-05-18 15:56 Jakov Smolić
2023-05-18 15:56 Jakov Smolić
2023-04-25 20:57 Sam James
2023-04-25 18:44 Jakov Smolić
2023-04-25 13:48 Arthur Zamarin
2023-04-11 21:42 Jakov Smolić
2023-04-11 18:43 Arthur Zamarin
2023-04-04  8:20 Jakov Smolić
2023-03-06 19:19 Jakov Smolić
2023-03-06 19:19 Jakov Smolić
2023-01-25  6:44 Jakov Smolić
2023-01-08 17:06 Jakov Smolić
2023-01-08 17:00 Arthur Zamarin
2022-11-14 10:46 WANG Xuerui
2022-10-29 11:03 Jakov Smolić
2022-10-07 12:25 Jakov Smolić
2022-10-06  5:58 Jakov Smolić
2022-10-05 11:35 Sam James
2022-10-04 15:42 Jakov Smolić
2022-09-03 14:09 Jakov Smolić
2022-09-03 14:09 Jakov Smolić
2022-08-31  7:36 Jakov Smolić
2022-08-21 14:57 Jakov Smolić
2022-08-16 15:07 Sam James
2022-07-31  7:15 Jakov Smolić
2022-07-02 11:18 Jakov Smolić
2022-05-29 17:27 Jakov Smolić
2022-05-28 15:58 Jakov Smolić
2022-05-20 18:41 Jakov Smolić
2022-05-20 18:41 Jakov Smolić
2022-04-27 19:47 Jakov Smolić
2022-04-12  8:17 Jakov Smolić
2022-04-12  8:17 Jakov Smolić
2022-04-07 20:58 Jakov Smolić
2022-04-04 12:26 Jakov Smolić
2022-03-31 17:36 Jakov Smolić
2022-03-08  8:54 Jakov Smolić
2022-02-24 11:55 Jakov Smolić
2022-02-24 11:55 Jakov Smolić
2022-02-24  9:38 Jakov Smolić
2022-02-24  9:37 Jakov Smolić
2022-02-11 19:18 Jakov Smolić
2022-01-18 13:09 Jakov Smolić
2022-01-18 13:09 Jakov Smolić
2022-01-18 13:09 Jakov Smolić
2022-01-18 13:09 Jakov Smolić
2021-12-27 11:11 Jakov Smolić
2021-12-19  9:01 Jakov Smolić
2021-12-19  9:01 Jakov Smolić
2021-12-13 20:29 Jakov Smolić
2021-12-10  9:38 Jakov Smolić
2021-12-10  9:38 Jakov Smolić
2021-11-05 10:40 Jakov Smolić
2021-11-05 10:40 Jakov Smolić
2021-11-05 10:40 Jakov Smolić
2021-10-27  5:58 Jakov Smolić
2021-10-07  8:12 Jakov Smolić
2021-09-12 10:14 Jakov Smolić
2021-09-12 10:14 Jakov Smolić
2021-08-28 21:02 Jakov Smolić
2021-08-28 21:02 Jakov Smolić
2021-08-13  8:13 David Seifert
2021-08-13  8:13 David Seifert
2021-08-12 19:59 David Seifert
2021-07-29 10:46 Joonas Niilola
2021-07-29 10:46 Joonas Niilola
2021-07-18 11:06 David Seifert
2021-05-27 21:13 David Seifert
2021-05-04 22:30 Sam James
2021-05-04 22:30 Sam James
2021-04-27  9:47 David Seifert
2021-04-27  9:47 David Seifert
2021-04-27  9:47 David Seifert
2021-03-26 13:24 David Seifert
2021-03-26 13:24 David Seifert
2021-03-23 14:44 David Seifert
2020-12-31  1:20 Sam James
2020-08-23  8:21 Sergei Trofimovich
2020-08-18 11:22 Agostino Sarubbo
2020-08-17 13:50 Agostino Sarubbo
2020-08-16 16:45 David Seifert
2020-05-15  9:21 Jason A. Donenfeld
2020-01-28 18:11 David Seifert
2020-01-28 18:11 David Seifert
2017-08-23  7:30 Alexis Ballier
2017-05-25 15:48 Alexis Ballier
2017-05-25 15:48 Alexis Ballier
2017-04-23 12:36 Alexis Ballier
2017-02-09 14:03 Alexis Ballier
2016-12-29 15:45 Alexis Ballier
2016-12-21 10:46 Patrice Clement
2016-12-21 10:46 Patrice Clement
2016-12-21 10:46 Patrice Clement
2016-12-21 10:46 Patrice Clement
2016-12-17 13:08 Alexis Ballier
2016-12-17 13:08 Alexis Ballier
2016-08-27 18:32 Alexis Ballier
2016-08-03 10:30 Alexis Ballier
2016-08-03 10:30 Alexis Ballier
2016-04-05 11:29 Alexis Ballier
2016-03-08  8:44 Alexis Ballier
2016-01-26  8:01 Alexis Ballier
2015-10-20 14:24 Alexis Ballier

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1476965987.3099a9a149e427c7c62739b92b2a12d119105aa5.aballier@gentoo \
    --to=aballier@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox