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 06C801389E2 for ; Wed, 31 Dec 2014 04:23:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F014FE0876; Wed, 31 Dec 2014 04:23:52 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8F24CE0876 for ; Wed, 31 Dec 2014 04:23:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8877A34064B for ; Wed, 31 Dec 2014 04:23:51 +0000 (UTC) Received: by oystercatcher.gentoo.org (Postfix, from userid 665) id D1E54E8AB; Wed, 31 Dec 2014 04:23:49 +0000 (UTC) From: "Michael Sterrett (mr_bones_)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, mr_bones_@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in dev-lang/nasm: nasm-2.11.06.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: nasm-2.11.06.ebuild ChangeLog X-VCS-Directories: dev-lang/nasm X-VCS-Committer: mr_bones_ X-VCS-Committer-Name: Michael Sterrett Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20141231042349.D1E54E8AB@oystercatcher.gentoo.org> Date: Wed, 31 Dec 2014 04:23:49 +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: b27aca5a-a962-4b1b-89f3-0a9873120f1c X-Archives-Hash: 9cbe5b74955c96169f3300a5eb5d2ef1 mr_bones_ 14/12/31 04:23:49 Modified: ChangeLog Added: nasm-2.11.06.ebuild Log: version bump (bug #533486) (Portage version: 2.2.14/cvs/Linux x86_64, unsigned Manifest commit) Revision Changes Path 1.118 dev-lang/nasm/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/nasm/ChangeLog?rev=1.118&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/nasm/ChangeLog?rev=1.118&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/nasm/ChangeLog?r1=1.117&r2=1.118 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-lang/nasm/ChangeLog,v retrieving revision 1.117 retrieving revision 1.118 diff -u -r1.117 -r1.118 --- ChangeLog 16 Jul 2014 01:40:02 -0000 1.117 +++ ChangeLog 31 Dec 2014 04:23:49 -0000 1.118 @@ -1,6 +1,11 @@ # ChangeLog for dev-lang/nasm # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/nasm/ChangeLog,v 1.117 2014/07/16 01:40:02 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/nasm/ChangeLog,v 1.118 2014/12/31 04:23:49 mr_bones_ Exp $ + +*nasm-2.11.06 (31 Dec 2014) + + 31 Dec 2014; Michael Sterrett +nasm-2.11.06.ebuild: + version bump (bug #533486) 16 Jul 2014; Michael Sterrett -nasm-2.10.09.ebuild: old 1.1 dev-lang/nasm/nasm-2.11.06.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/nasm/nasm-2.11.06.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/nasm/nasm-2.11.06.ebuild?rev=1.1&content-type=text/plain Index: nasm-2.11.06.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-lang/nasm/nasm-2.11.06.ebuild,v 1.1 2014/12/31 04:23:49 mr_bones_ Exp $ EAPI=5 inherit flag-o-matic DESCRIPTION="groovy little assembler" HOMEPAGE="http://nasm.sourceforge.net/" SRC_URI="http://www.nasm.us/pub/nasm/releasebuilds/${PV/_}/${P/_}.tar.xz" LICENSE="BSD-2" SLOT="0" KEYWORDS="~amd64 ~ia64 ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x64-macos" IUSE="doc" DEPEND="dev-lang/perl doc? ( app-text/ghostscript-gpl sys-apps/texinfo )" RDEPEND="" S=${WORKDIR}/${P/_} src_configure() { strip-flags econf } src_compile() { emake nasmlib.o emake all use doc && emake doc } src_install() { emake INSTALLROOT="${D}" install install_rdf dodoc AUTHORS CHANGES ChangeLog README TODO if use doc ; then doinfo doc/info/* dohtml doc/html/* dodoc doc/nasmdoc.* fi }