public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-misc/flasm/, app-misc/flasm/files/, profiles/
@ 2017-08-14  8:03 Michał Górny
  0 siblings, 0 replies; only message in thread
From: Michał Górny @ 2017-08-14  8:03 UTC (permalink / raw
  To: gentoo-commits

commit:     e03f84f37a69191a661bd10279332b0f9042fede
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 14 07:59:13 2017 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Aug 14 08:02:54 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e03f84f3

app-misc/flasm: Remove last-rited pkg, #604816

 app-misc/flasm/Manifest                        |  1 -
 app-misc/flasm/files/flasm-1.63-makefile.patch | 27 -----------------
 app-misc/flasm/flasm-1.63.ebuild               | 41 --------------------------
 app-misc/flasm/metadata.xml                    | 12 --------
 profiles/package.mask                          |  4 ---
 5 files changed, 85 deletions(-)

diff --git a/app-misc/flasm/Manifest b/app-misc/flasm/Manifest
deleted file mode 100644
index 72e3b856833..00000000000
--- a/app-misc/flasm/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST flasm-1.63.zip 111912 SHA256 df1273a506e2479cf95775197f5b7fa94e29fe1e0aae5aa190ed5bbebc4be5c6 SHA512 af53c8902bac9bc03a4274f51280abe7e595f19d8ee367c0237868634df58a42144bb6c335a99f860c494da90d483072c66064897ef1ad467b7621c648ca322a WHIRLPOOL e69860fdfa5be54235c0a02f2b77e30e4a2735b6785aa45260a2bdb55ff8a2edd366c1c9dadc93c7ac76886bd0070c4b6220a38365b6ba3135a1ade19a7ef103

diff --git a/app-misc/flasm/files/flasm-1.63-makefile.patch b/app-misc/flasm/files/flasm-1.63-makefile.patch
deleted file mode 100644
index 32ea2bc0018..00000000000
--- a/app-misc/flasm/files/flasm-1.63-makefile.patch
+++ /dev/null
@@ -1,27 +0,0 @@
---- Makefile.o	2010-08-31 01:17:46.505000089 +0200
-+++ Makefile	2010-08-31 01:19:11.841000098 +0200
-@@ -1,6 +1,4 @@
- UNAME = $(shell uname)
--CC = gcc
--CFLAGS = -g -Wall -O2
- LIBS = -lz
- OFILES = util.o keywords.o flasm.o unflasm.o lex.yy.o assembler.tab.o
- GARBAGE = assembler.tab.* lex.yy.c memwatch.o gmon.out memwatch.log core
-@@ -9,8 +7,6 @@
- ifneq (,$(findstring debug,$(MAKECMDGOALS)))
- 	CFLAGS += -DMEMWATCH -pg -p -pedantic -W -Wcast-align -Wcast-qual -Wshadow -Wnested-externs -Wstrict-prototypes -Waggregate-return -Wmissing-prototypes -Wpointer-arith
- 	OFILES += memwatch.o
--else
--	CFLAGS += -s
- endif
- 
- # executable should not depend on cygwin.dll
-@@ -26,7 +22,7 @@
- 	-rm -f ${OFILES} ${GARBAGE}
- 
- flasm:	${OFILES}
--	${CC} $(CFLAGS) -o flasm ${OFILES} ${LIBS}
-+	${CC} $(CFLAGS) $(LDFLAGS) -o flasm ${OFILES} ${LIBS}
- 
- assembler.tab.c assembler.tab.h: assembler.y
- 	bison --defines --debug assembler.y

diff --git a/app-misc/flasm/flasm-1.63.ebuild b/app-misc/flasm/flasm-1.63.ebuild
deleted file mode 100644
index 2d3e9daedc3..00000000000
--- a/app-misc/flasm/flasm-1.63.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils versionator toolchain-funcs
-
-MY_PV=$(delete_all_version_separators $(get_version_component_range 1-2))
-DESCRIPTION="Command line assembler/disassembler of Flash ActionScript bytecode"
-HOMEPAGE="http://www.nowrap.de/flasm.html"
-SRC_URI="http://www.nowrap.de/download/flasm${MY_PV}src.zip -> ${P}.zip"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~x86-fbsd"
-IUSE=""
-
-RDEPEND="sys-libs/zlib"
-DEPEND="${RDEPEND}
-	app-arch/unzip
-	dev-util/gperf
-	sys-devel/flex
-	virtual/yacc
-"
-
-S=${WORKDIR}
-
-src_prepare() {
-	epatch "${FILESDIR}"/${P}-makefile.patch
-}
-
-src_compile() {
-	tc-export CC
-	emake
-}
-
-src_install() {
-	dobin flasm
-	dodoc CHANGES.TXT
-	dohtml flasm.html classic.css
-}

diff --git a/app-misc/flasm/metadata.xml b/app-misc/flasm/metadata.xml
deleted file mode 100644
index 1116deeb8e4..00000000000
--- a/app-misc/flasm/metadata.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-  <!-- maintainer-needed -->
-  <longdescription>Flasm disassembles your entire SWF including all the
-      timelines and events.  Looking at disassembly, you learn how the Flash
-      compiler works, which improves your ActionScript skills. You can also do
-      some optimizations on the disassembled code by hand or adjust the code as
-      you wish. Flasm then applies your changes to the original SWF, replacing
-      original actions.
-  </longdescription>
-</pkgmetadata>

diff --git a/profiles/package.mask b/profiles/package.mask
index 4d4350191b7..786ae643351 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -354,10 +354,6 @@ x11-terms/evilvte
 dev-libs/qcodeedit
 
 # Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
-# Not compatible with gperf-3.1 (#604816). Removal in a month.
-app-misc/flasm
-
-# Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
 # Dead for ages, relies on dead libs (#622010), you can move to moserial, cutecom or
 # minicom. Removal in 2 months.
 net-dialup/gtkterm


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2017-08-14  8:03 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-08-14  8:03 [gentoo-commits] repo/gentoo:master commit in: app-misc/flasm/, app-misc/flasm/files/, profiles/ Michał Górny

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox