sys-fs/yaffs2-utils: Remove last-rited pkg
authorMichał Górny <mgorny@gentoo.org>
Mon, 3 Feb 2020 05:41:19 +0000 (06:41 +0100)
committerMichał Górny <mgorny@gentoo.org>
Mon, 3 Feb 2020 05:41:19 +0000 (06:41 +0100)
Closes: https://bugs.gentoo.org/703040
Signed-off-by: Michał Górny <mgorny@gentoo.org>
profiles/package.mask
sys-fs/yaffs2-utils/files/yaffs2-utils-9999-build.patch [deleted file]
sys-fs/yaffs2-utils/metadata.xml [deleted file]
sys-fs/yaffs2-utils/yaffs2-utils-9999.ebuild [deleted file]

index d3c37448d9cb4fe8b4ac94d2bfa7decaed5a929f..bed38c339e198755394979822a08d1e045069fef 100644 (file)
@@ -825,13 +825,6 @@ sci-calculators/calculator
 x11-misc/pathfinder
 x11-misc/shutterbug
 
-# Michał Górny <mgorny@gentoo.org> (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 <soap@gentoo.org> (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 (file)
index ecbb958..0000000
+++ /dev/null
@@ -1,46 +0,0 @@
-From 3f4b0661b63efaca78791612ce9be84271d784a5 Mon Sep 17 00:00:00 2001
-From: Mike Frysinger <vapier@gentoo.org>
-Date: Mon, 5 Nov 2012 02:08:27 -0500
-Subject: [PATCH] fix build build system
-
-Signed-off-by: Mike Frysinger <vapier@gentoo.org>
----
- 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 (file)
index 71b1461..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<maintainer type="project">
-       <email>embedded@gentoo.org</email>
-       <name>Embedded Gentoo</name>
-</maintainer>
-</pkgmetadata>
diff --git a/sys-fs/yaffs2-utils/yaffs2-utils-9999.ebuild b/sys-fs/yaffs2-utils/yaffs2-utils-9999.ebuild
deleted file mode 100644 (file)
index dc90c93..0000000
+++ /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
-}