From: Mikle Kolyada Date: Mon, 9 Jul 2018 19:46:42 +0000 (+0300) Subject: sys-fs/yaffs-utils: remove last rited package X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=37180689981de73209819b92692cb5616e764021;p=gentoo.git sys-fs/yaffs-utils: remove last rited package --- diff --git a/sys-fs/yaffs-utils/files/yaffs-utils-9999-build.patch b/sys-fs/yaffs-utils/files/yaffs-utils-9999-build.patch deleted file mode 100644 index 901484db9995..000000000000 --- a/sys-fs/yaffs-utils/files/yaffs-utils-9999-build.patch +++ /dev/null @@ -1,36 +0,0 @@ -diff --git a/utils/Makefile b/utils/Makefile -index 4929e08..51c4e5f 100644 ---- a/utils/Makefile -+++ b/utils/Makefile -@@ -16,14 +16,13 @@ - - #KERNELDIR = /usr/src/kernel-headers-2.4.18 - --CFLAGS = -I/usr/include -I.. -O2 -Wall -DCONFIG_YAFFS_UTIL -+CFLAGS+= -I.. -Wall -DCONFIG_YAFFS_UTIL $(CPPFLAGS) - 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 - - MKYAFFSOBJS = mkyaffs.o - -@@ -36,13 +35,13 @@ $(MKYAFFSIMAGEOBJS): %.o: %.c - $(CC) -c $(CFLAGS) $< -o $@ - - mkyaffsimage: $(MKYAFFSIMAGEOBJS) -- $(CC) -o $@ $(MKYAFFSIMAGEOBJS) -+ $(CC) $(CFLAGS) -o $@ $(MKYAFFSIMAGEOBJS) $(LDFLAGS) - - $(MKYAFFSOBJS): %.o: %.c - $(CC) -c $(CFLAGS) $< -o $@ - - mkyaffs: $(MKYAFFSOBJS) -- $(CC) -o $@ $(MKYAFFSOBJS) -+ $(CC) $(CFLAGS) -o $@ $(MKYAFFSOBJS) $(LDFLAGS) - - yaffs_ecc.c: - ln -s ../yaffs_ecc.c yaffs_ecc.c diff --git a/sys-fs/yaffs-utils/metadata.xml b/sys-fs/yaffs-utils/metadata.xml deleted file mode 100644 index 71b1461e1146..000000000000 --- a/sys-fs/yaffs-utils/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - embedded@gentoo.org - Embedded Gentoo - - diff --git a/sys-fs/yaffs-utils/yaffs-utils-9999.ebuild b/sys-fs/yaffs-utils/yaffs-utils-9999.ebuild deleted file mode 100644 index 9606fd88801f..000000000000 --- a/sys-fs/yaffs-utils/yaffs-utils-9999.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="2" - -EGIT_REPO_URI="git://www.aleph1.co.uk/yaffs" -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 mkyaffs || die - dodoc ../README -}