From: Michał Górny Date: Mon, 3 Feb 2020 05:41:19 +0000 (+0100) Subject: sys-fs/yaffs2-utils: Remove last-rited pkg X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=6a01b8758617087b4b9212c9650f8ddfd8933673;p=gentoo.git sys-fs/yaffs2-utils: Remove last-rited pkg Closes: https://bugs.gentoo.org/703040 Signed-off-by: Michał Górny --- diff --git a/profiles/package.mask b/profiles/package.mask index d3c37448d9cb..bed38c339e19 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -825,13 +825,6 @@ sci-calculators/calculator x11-misc/pathfinder x11-misc/shutterbug -# Michał Górny (2019-12-15) -# Live ebuild only. Not touched since 2012. Unsurprisingly, -# the included patch no longer applies. Actually, there's -# sys-fs/yaffs2utils duplicate which is a release. -# Removal in 14 days. Bug #703040. -sys-fs/yaffs2-utils - # David Seifert (2019-12-08) # Unmaintained, build hangs, tons of other build failures, missing # dependencies. Bug #663794, #666916, #666922, #667062, #678068, diff --git a/sys-fs/yaffs2-utils/files/yaffs2-utils-9999-build.patch b/sys-fs/yaffs2-utils/files/yaffs2-utils-9999-build.patch deleted file mode 100644 index ecbb958d434b..000000000000 --- a/sys-fs/yaffs2-utils/files/yaffs2-utils-9999-build.patch +++ /dev/null @@ -1,46 +0,0 @@ -From 3f4b0661b63efaca78791612ce9be84271d784a5 Mon Sep 17 00:00:00 2001 -From: Mike Frysinger -Date: Mon, 5 Nov 2012 02:08:27 -0500 -Subject: [PATCH] fix build build system - -Signed-off-by: Mike Frysinger ---- - utils/Makefile | 7 +++---- - 1 file changed, 3 insertions(+), 4 deletions(-) - -diff --git a/utils/Makefile b/utils/Makefile -index 710ebbf..26aea6b 100644 ---- a/utils/Makefile -+++ b/utils/Makefile -@@ -16,14 +16,13 @@ - - #KERNELDIR = /usr/src/kernel-headers-2.4.18 - --CFLAGS = -O2 -Wall -DCONFIG_YAFFS_UTIL -+CFLAGS+= -Wall -DCONFIG_YAFFS_UTIL -DCONFIG_YAFFS_DEFINES_TYPES - CFLAGS+= -Wshadow -Wpointer-arith -Wwrite-strings -Wstrict-prototypes -Wmissing-declarations - CFLAGS+= -Wmissing-prototypes -Wredundant-decls -Wnested-externs -Winline - - ## Change if you are using a cross-compiler - MAKETOOLS = - --CC=$(MAKETOOLS)gcc - - COMMON_BASE_C_LINKS = yaffs_ecc.c - COMMON_BASE_LINKS = $(COMMON_BASE_C_LINKS) yaffs_ecc.h yaffs_guts.h yaffs_packedtags2.h yaffs_trace.h -@@ -57,10 +56,10 @@ $(COMMONOBJS) $(MKYAFFSIMAGEOBJS) $(MKYAFFS2IMAGEOBJS) : %.o: %.c - $(CC) -c $(CFLAGS) $< -o $@ - - mkyaffsimage: $(MKYAFFSIMAGEOBJS) $(COMMONOBJS) -- $(CC) -o $@ $^ -+ $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) - - mkyaffs2image: $(MKYAFFS2IMAGEOBJS) $(COMMONOBJS) -- $(CC) -o $@ $^ -+ $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) - - - clean: --- -1.7.12.4 - diff --git a/sys-fs/yaffs2-utils/metadata.xml b/sys-fs/yaffs2-utils/metadata.xml deleted file mode 100644 index 71b1461e1146..000000000000 --- a/sys-fs/yaffs2-utils/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - embedded@gentoo.org - Embedded Gentoo - - diff --git a/sys-fs/yaffs2-utils/yaffs2-utils-9999.ebuild b/sys-fs/yaffs2-utils/yaffs2-utils-9999.ebuild deleted file mode 100644 index dc90c933a622..000000000000 --- a/sys-fs/yaffs2-utils/yaffs2-utils-9999.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="4" - -EGIT_REPO_URI="git://www.aleph1.co.uk/yaffs2" -EGIT_SOURCEDIR=${WORKDIR} - -inherit eutils git-2 toolchain-funcs - -DESCRIPTION="tools for generating YAFFS images" -HOMEPAGE="http://www.aleph1.co.uk/yaffs/" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="" -IUSE="" - -S=${WORKDIR}/utils - -src_prepare() { - epatch "${FILESDIR}"/${P}-build.patch - tc-export CC -} - -src_install() { - dobin mkyaffsimage mkyaffs2image - dodoc ../README-linux -}