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 B127D138239 for ; Sat, 25 May 2019 20:59:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D9297E0864; Sat, 25 May 2019 20:59:20 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 71754E083E for ; Sat, 25 May 2019 20:59:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 0CB2A345016 for ; Sat, 25 May 2019 20:59:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5572F5FA for ; Sat, 25 May 2019 20:59:15 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1558817677.6d8e71e3effb7640e05c43914fad0ca8378806f0.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/ftjam/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/ftjam/ftjam-2.5.3_rc2-r2.ebuild X-VCS-Directories: dev-util/ftjam/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 6d8e71e3effb7640e05c43914fad0ca8378806f0 X-VCS-Branch: master Date: Sat, 25 May 2019 20:59:15 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 889be518-8d40-4d4b-9e02-ed74ac8d4932 X-Archives-Hash: da46404c2d04bffdc1ee7d280c1d7ff1 commit: 6d8e71e3effb7640e05c43914fad0ca8378806f0 Author: Michael Mair-Keimberger gmail com> AuthorDate: Thu May 23 17:25:48 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat May 25 20:54:37 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d8e71e3 dev-util/ftjam: EAPI=7 bump Closes: https://bugs.gentoo.org/686616 Signed-off-by: Michael Mair-Keimberger gmail.com> Closes: https://github.com/gentoo/gentoo/pull/12091 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-util/ftjam/ftjam-2.5.3_rc2-r2.ebuild | 34 ++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/dev-util/ftjam/ftjam-2.5.3_rc2-r2.ebuild b/dev-util/ftjam/ftjam-2.5.3_rc2-r2.ebuild new file mode 100644 index 00000000000..f8cfcd0508c --- /dev/null +++ b/dev-util/ftjam/ftjam-2.5.3_rc2-r2.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit toolchain-funcs + +MY_PV=$(ver_rs 3 "") + +DESCRIPTION="A 100% compatible, enhanced implementation of the make alternative Jam" +HOMEPAGE="http://freetype.sourceforge.net/jam/index.html" +SRC_URI="http://david.freetype.org/jam/ftjam-${MY_PV}.tar.bz2" + +LICENSE="perforce GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos" + +BDEPEND="sys-devel/bison" + +S=${WORKDIR}/${PN}-${MY_PV} + +DOCS=( README README.ORG CHANGES RELNOTES ) +HTML_DOCS=( Jam.html Jambase.html Jamfile.html ) + +PATCHES=( + "${FILESDIR}"/${PN}-2.5.3-nostrip.patch + "${FILESDIR}"/${PN}-2.5.3-i-hate-yacc.patch + "${FILESDIR}"/${PN}-2.5.3-false-flags.patch +) + +src_prepare() { + default + tc-export CC +}