From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 4F4261381F3 for ; Thu, 16 May 2013 06:41:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 79CBEE0855; Thu, 16 May 2013 06:41:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E324AE0855 for ; Thu, 16 May 2013 06:40:59 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id F357533E083 for ; Thu, 16 May 2013 06:40:58 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2272) id CD7472171D; Thu, 16 May 2013 06:40:56 +0000 (UTC) From: "Sergei Trofimovich (slyfox)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, slyfox@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in dev-lang/jwasm: metadata.xml jwasm-2.10.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: metadata.xml jwasm-2.10.ebuild ChangeLog X-VCS-Directories: dev-lang/jwasm X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20130516064056.CD7472171D@flycatcher.gentoo.org> Date: Thu, 16 May 2013 06:40:56 +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: d8461a22-ba9d-42de-8f28-319b55d3ed6a X-Archives-Hash: e651427337b6a31f5650d522ad234262 slyfox 13/05/16 06:40:56 Added: metadata.xml jwasm-2.10.ebuild ChangeLog Log: Initial import. MASM-compatible TASM-similar assembler (Wasm fork). Bug #431706 by Anton Kochkov and others. (Portage version: 2.2.0_alpha173_p24/cvs/Linux x86_64, signed Manifest commit with key 611FF3AA) Revision Changes Path 1.1 dev-lang/jwasm/metadata.xml file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/jwasm/metadata.xml?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/jwasm/metadata.xml?rev=1.1&content-type=text/plain Index: metadata.xml =================================================================== slyfox@gentoo.org Sergei Trofimovich Primary Maintainer 1.1 dev-lang/jwasm/jwasm-2.10.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/jwasm/jwasm-2.10.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/jwasm/jwasm-2.10.ebuild?rev=1.1&content-type=text/plain Index: jwasm-2.10.ebuild =================================================================== # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-lang/jwasm/jwasm-2.10.ebuild,v 1.1 2013/05/16 06:40:56 slyfox Exp $ EAPI=5 inherit eutils toolchain-funcs versionator # 2.10 -> 210s MY_PN=JWasm MY_PV="$(delete_version_separator 1)s" MY_P="${MY_PN}${MY_PV}" DESCRIPTION="MASM-compatible TASM-similar assembler (fork of Wasm)" HOMEPAGE="http://www.japheth.de/JWasm.html" SRC_URI="http://www.japheth.de/Download/${MY_PN}/${MY_P}.zip" LICENSE="Watcom-1.0" SLOT="0" KEYWORDS="~amd64 ~x86" RDEPEND="" DEPEND="" S="${WORKDIR}" src_prepare() { epatch "${FILESDIR}"/${P}-gcc-4.8-fwdecl.patch # don't strip binary sed -i GccUnix.mak -e 's/ -s //g' || die } src_compile() { emake -f GccUnix.mak CC="$(tc-getCC) ${CFLAGS} ${LDFLAGS}" } src_install() { dobin GccUnixR/jwasm dodoc *.txt Doc/*.txt } 1.1 dev-lang/jwasm/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/jwasm/ChangeLog?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/jwasm/ChangeLog?rev=1.1&content-type=text/plain Index: ChangeLog =================================================================== # ChangeLog for dev-lang/jwasm # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 # $Header: /var/cvsroot/gentoo-x86/dev-lang/jwasm/ChangeLog,v 1.1 2013/05/16 06:40:56 slyfox Exp $ *jwasm-2.10 (16 May 2013) 16 May 2013; Sergei Trofimovich +files/jwasm-2.10-gcc-4.8-fwdecl.patch, +jwasm-2.10.ebuild, +metadata.xml: Initial import. MASM-compatible TASM-similar assembler (Wasm fork). Bug #431706 by Anton Kochkov and others.