From 143063a68f2676a0bb1b70bd49a093031193f276 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Fri, 16 Dec 2016 17:26:04 +0000 Subject: [PATCH] Remove generated .spec file Likely extremely bitrotten, and we should not ship this anyway. --- .gitignore | 1 - Makefile.am | 5 +++-- configure.ac | 1 - gst-rtsp.spec.in | 54 ------------------------------------------------ 4 files changed, 3 insertions(+), 58 deletions(-) delete mode 100644 gst-rtsp.spec.in diff --git a/.gitignore b/.gitignore index 82aec05c40..2d4d543b41 100644 --- a/.gitignore +++ b/.gitignore @@ -34,7 +34,6 @@ ltmain.sh missing stamp-h1 tags -gst-rtsp.spec stamp-h.in .dirstamp diff --git a/Makefile.am b/Makefile.am index 7ece053671..eb01c6a53d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -22,13 +22,13 @@ include $(top_srcdir)/common/win32.mak EXTRA_DIST = \ ChangeLog autogen.sh depcomp \ AUTHORS COPYING NEWS README RELEASE REQUIREMENTS \ - gst-rtsp.spec docs/design/gst-rtp-server-design \ + docs/design/gst-rtp-server-design \ gst-rtsp-server.doap \ $(win32) ACLOCAL_AMFLAGS = -I m4 -I common/m4 -DISTCLEANFILES = _stdint.h gst-rtsp.spec +DISTCLEANFILES = _stdint.h include $(top_srcdir)/common/release.mak include $(top_srcdir)/common/po.mak @@ -52,6 +52,7 @@ endif # cruft: plugins that have been merged or moved or renamed CRUFT_FILES = \ + $(top_builddir)/gst-rtsp.spec \ $(top_builddir)/common/shave \ $(top_builddir)/common/shave-libtool \ $(top_builddir)/common/m4/codeset.m4 \ diff --git a/configure.ac b/configure.ac index 4f85610e69..8167ff9fdd 100644 --- a/configure.ac +++ b/configure.ac @@ -356,7 +356,6 @@ dnl *** output files *** dnl keep this alphabetic per directory, please AC_CONFIG_FILES([ Makefile -gst-rtsp.spec common/Makefile common/m4/Makefile gst/Makefile diff --git a/gst-rtsp.spec.in b/gst-rtsp.spec.in deleted file mode 100644 index 12224f8bab..0000000000 --- a/gst-rtsp.spec.in +++ /dev/null @@ -1,54 +0,0 @@ -%define gst_majorminor @GST_API_VERSION@ - -Name: gstreamer-rtsp-server -Version: @VERSION@ -Release: 1%{?dist} -Summary: GStreamer based RTSP server -Vendor: Collabora Multimedia -Group: Applications/Multimedia -License: LGPLv2+ -Source0: gst-rtsp-%{version}.tar.bz2 -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) - -BuildRequires: gstreamer-devel >= 0.10.11 - - -%description -This is a RTSP server using the GStreamer framework. - - -%prep -%setup -q -n gst-rtsp-%{version} - - -%build -%configure - -make - -%install -%makeinstall - -# Clean out files that should not be part of the rpm. -rm -f $RPM_BUILD_ROOT%{_libdir}/gstreamer-%{majorminor}/*.a -rm -f $RPM_BUILD_ROOT%{_libdir}/*.a -rm -f $RPM_BUILD_ROOT%{_libdir}/*.la - -%clean -rm -rf $RPM_BUILD_ROOT - - -%post -p /sbin/ldconfig - - -%postun -p /sbin/ldconfig - - -%files -%defattr(-,root,root,-) -%doc AUTHORS COPYING README INSTALL docs/design/gst-rtp-server-design -%{_bindir}/gst-rtsp-server - -%changelog -* Thu Oct 9 2008 Christian Schaller -- First spec file