From: David Oberhollenzer Date: Tue, 23 Aug 2016 10:17:28 +0000 (+0200) Subject: Remove RPM spec file X-Git-Tag: v2.0.0-rc1~34 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=f50f9671523f307a6f2faeb2e626d52831c6fa8c;p=mtd-utils.git Remove RPM spec file Building packages for distributions is typically something highly distribution specific. While there are widely used package formats like RPM, implementing a de-facto standard, the build process, list of files actually packaged, list of required dependencies, package grouping, package versioning, etc... is still _very_ distribution specific. In fact, this spec file completely fails to address some of these points. Actual RPM based distributions out there currently use their own, distribution specific, RPM spec files that were possibly _based_ on this one at some point (judging from similar descriptions). The spec file _may_ have worked at some point, but it definitely doesn't work with the new build system and there is no real reason to fix it (which, by definition, isn't possible for the reasons above) and drag it along for another decade or two. Signed-off-by: David Oberhollenzer Signed-off-by: Richard Weinberger --- diff --git a/mtd-utils.spec b/mtd-utils.spec deleted file mode 100644 index 120e00c..0000000 --- a/mtd-utils.spec +++ /dev/null @@ -1,39 +0,0 @@ -Summary: Tools for maintaining Memory Technology Devices -Name: mtd-utils -Version: 1.0 -Release: 1 -License: GPL -Group: Applications/System -URL: http://www.linux-mtd.infradead.org/ -Source0: %{name}-%{version}.tar.gz -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root - -%description -This package contains tools for erasing and formatting flash devices, -including JFFS2, M-Systems DiskOnChip devices, etc. - -%prep -%setup -q - -%build -make -C util - -%install -rm -rf $RPM_BUILD_ROOT -make DESTDIR=$RPM_BUILD_ROOT -C util install - -%clean -rm -rf $RPM_BUILD_ROOT - - -%files -%defattr(-,root,root,-) -/usr/sbin -/usr/man/man1/mkfs.jffs2.1.gz -/usr/include/mtd -%doc - - -%changelog -* Wed May 5 2004 - 1.0 -- Initial build.