Gentoo Archives: gentoo-commits

From: "Victor Ostorga (vostorga)" <vostorga@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-misc/flasm: ChangeLog flasm-1.62.ebuild flasm-1.6.2.ebuild
Date: Mon, 26 Oct 2009 16:26:23
Message-Id: E1N2SOj-00046R-LC@stork.gentoo.org
1 vostorga 09/10/26 16:26:21
2
3 Modified: ChangeLog
4 Added: flasm-1.62.ebuild
5 Removed: flasm-1.6.2.ebuild
6 Log:
7 Fixing version number from 1.6.2 to 1.62 bug #276451
8 (Portage version: 2.1.6.13/cvs/Linux i686)
9
10 Revision Changes Path
11 1.7 app-misc/flasm/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/flasm/ChangeLog?rev=1.7&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/flasm/ChangeLog?rev=1.7&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/flasm/ChangeLog?r1=1.6&r2=1.7
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-misc/flasm/ChangeLog,v
20 retrieving revision 1.6
21 retrieving revision 1.7
22 diff -u -r1.6 -r1.7
23 --- ChangeLog 25 Oct 2009 20:21:46 -0000 1.6
24 +++ ChangeLog 26 Oct 2009 16:26:21 -0000 1.7
25 @@ -1,6 +1,20 @@
26 # ChangeLog for app-misc/flasm
27 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-misc/flasm/ChangeLog,v 1.6 2009/10/25 20:21:46 tove Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-misc/flasm/ChangeLog,v 1.7 2009/10/26 16:26:21 vostorga Exp $
30 +
31 + 26 Oct 2009; Víctor Ostorga <vostorga@g.o> -flasm-1.6.2.ebuild,
32 + -files/flasm-1.6.2-bison-2.patch, -files/flasm-1.6.2-makefile.patch,
33 + +flasm-1.62.ebuild, +files/flasm-1.62-bison-2.patch,
34 + +files/flasm-1.62-makefile.patch:
35 + Fixing version number from 1.6.2 to 1.62 bug #276451
36 +
37 +*flasm-1.62 (26 Oct 2009)
38 +
39 + 26 Oct 2009; Víctor Ostorga <vostorga@g.o> -flasm-1.6.2.ebuild,
40 + -files/flasm-1.6.2-bison-2.patch, -files/flasm-1.6.2-makefile.patch,
41 + +flasm-1.62.ebuild, +files/flasm-1.62-bison-2.patch,
42 + +files/flasm-1.62-makefile.patch:
43 + Fixing version number from 1.6.2 to 1.62 bug #276451
44
45 25 Oct 2009; Torsten Veller <tove@g.o> metadata.xml:
46 Remove drizzt from metadata.xml (#149111)
47
48
49
50 1.1 app-misc/flasm/flasm-1.62.ebuild
51
52 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/flasm/flasm-1.62.ebuild?rev=1.1&view=markup
53 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/flasm/flasm-1.62.ebuild?rev=1.1&content-type=text/plain
54
55 Index: flasm-1.62.ebuild
56 ===================================================================
57 # Copyright 1999-2009 Gentoo Foundation
58 # Distributed under the terms of the GNU General Public License v2
59 # $Header: /var/cvsroot/gentoo-x86/app-misc/flasm/flasm-1.62.ebuild,v 1.1 2009/10/26 16:26:21 vostorga Exp $
60
61 inherit eutils versionator toolchain-funcs
62
63 MY_PV=$(delete_all_version_separators $(get_version_component_range 1-2))
64 DESCRIPTION="Command line assembler/disassembler of Flash ActionScript bytecode"
65 HOMEPAGE="http://www.nowrap.de/flasm.html"
66 SRC_URI="http://www.nowrap.de/download/flasm${MY_PV}src.zip"
67 RESTRICT="mirror"
68
69 LICENSE="BSD"
70 SLOT="0"
71 KEYWORDS="~amd64 ~x86 ~x86-fbsd"
72 IUSE=""
73
74 RDEPEND="sys-libs/zlib"
75 DEPEND="${RDEPEND}
76 app-arch/unzip
77 sys-devel/flex
78 sys-devel/bison
79 dev-util/gperf"
80
81 S="${WORKDIR}"
82
83 src_unpack() {
84 unpack ${A}
85 cd "${S}"
86
87 epatch "${FILESDIR}"/${P}-makefile.patch
88 epatch "${FILESDIR}"/${P}-bison-2.patch
89 }
90
91 src_compile() {
92 tc-export CC
93 emake || die "emake failed"
94 }
95
96 src_install() {
97 dobin flasm
98 dodoc CHANGES.TXT
99 dohtml flasm.html classic.css
100 }
101
102 pkg_postinst() {
103 elog
104 elog "This is a version bump to fix the version number"
105 elog "of flasm and offers no changes from the previous 1.6.2."
106 elog "For more details check bug 276451"
107 elog
108 }