From 6e75300cde9e3998488c233b8449328163c050cb Mon Sep 17 00:00:00 2001 From: emes Date: Tue, 22 Apr 2008 23:10:17 +0000 Subject: [PATCH] - up to 0.5.1 - spec based on original one, for FC - init script b0rken, NFY Changed files: flumotion.spec -> 1.6 --- flumotion.spec | 183 +++++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 162 insertions(+), 21 deletions(-) diff --git a/flumotion.spec b/flumotion.spec index c9d9d63..810db97 100644 --- a/flumotion.spec +++ b/flumotion.spec @@ -1,36 +1,58 @@ Summary: The Fluendo Streaming Server Summary(pl.UTF-8): Serwer strumieni Fluendo Name: flumotion -Version: 0.1.9 -Release: 0.1 +Version: 0.5.1 +Release: 0.3 License: GPL Group: Daemons Source0: http://www.flumotion.net/src/flumotion/%{name}-%{version}.tar.bz2 -# Source0-md5: 7f2b4abbabd7756d1d689b38fd477d3e +# Source0-md5: 70256d8d80a0d5cda61e468116ff8be2 +Patch0: %{name}-pdksh.patch URL: http://www.flumotion.net/ BuildRequires: automake -BuildRequires: gstreamer-devel >= 0.8 -BuildRequires: python-pygtk-devel >= 2.4.0 -BuildRequires: python-gstreamer >= 0.8.2-1 +BuildRequires: gstreamer-devel >= 0.10.10 +BuildRequires: python-pygtk-devel >= 2.8.0 +BuildRequires: python-gstreamer >= 0.10.4 +BuildRequires: python-TwistedCore >= 2.0.1 +BuildRequires: python-TwistedNames +BuildRequires: python-TwistedWeb +Requires: gstreamer-audio-effects-good +Requires: gstreamer-libpng +Requires: gstreamer-plugins-base >= 0.10.10 +Requires: python-PIL +Requires: python-TwistedCore-ssl +Requires(pre): /usr/sbin/useradd +Requires(post,preun): /sbin/chkconfig +Requires(post): openssl-tools +Provides: user(flumotion) BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n) %description -Flumotion is a streaming media server created with the backing of -Fluendo. It features intuitive graphical administration tools, making -the task of setting up and manipulating audio and video streams easy -for even novice system administrators. +Flumotion is a GPL streaming media server written in Python. It is distributed +and component-based: every step in the streaming process (production, +conversion, consumption) can be run inside a separate process on separate +machines. + +Flumotion uses a central manager process to control the complete network; one +or more worker processes distributed over machines to run actual streaming +components; and one or more admin clients connecting to the manager to control +it. %description -l pl.UTF-8 -Flumotion to serwer strumieni multimedialnych stworzony przy poparciu -Fluendo. Ma intuicyjne graficzne narzędzia administracyjne, czyniące -zadanie konfiguracji i obróbki strumieni dźwięku i obrazu łatwym nawet -dla początkujących administratorów systemów. +Flumotion to serwer strumieni multimedialnych napisany w Pythonie i udostępniany +na licencji GPL. Jest to system rozproszony i modularny: każdy etap przetwarzania +strumienia (produkcja, konwersja, konsumpcja) może być przeprowadzany w osobnym +procesie i na osobnej maszynie. + +Flumotion używa centralnego procesu zarządcy, który kontroluje cały system; jednego +lub więcej procesu robotnika czuwającego nad komponentami; jednego lub więcej +klienta administracji, pozwalającego na sprawowanie kontroli przez użytkownika. %prep %setup -q +%patch0 -p1 %build -install /usr/share/automake/config.* . %configure %{__make} @@ -40,16 +62,135 @@ rm -rf $RPM_BUILD_ROOT %{__make} install \ DESTDIR=$RPM_BUILD_ROOT -mv -f $RPM_BUILD_ROOT{%{_bindir},%{_sbindir}}/ffserver -install doc/*.conf $RPM_BUILD_ROOT%{_sysconfdir} +mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/flumotion + +# install service files +install -d $RPM_BUILD_ROOT%{_sysconfdir}/rc.d/init.d +install -m 755 \ + doc/redhat/flumotion \ + $RPM_BUILD_ROOT%{_sysconfdir}/rc.d/init.d + +# create log and run and cache directory +install -d $RPM_BUILD_ROOT%{_localstatedir}/log/flumotion +install -d $RPM_BUILD_ROOT%{_localstatedir}/run/flumotion +install -d $RPM_BUILD_ROOT%{_localstatedir}/cache/flumotion + +# Install the logrotate entry +install -m 0644 -D doc/redhat/flumotion.logrotate \ + $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d/flumotion + +%find_lang flumotion %clean rm -rf $RPM_BUILD_ROOT -%post -p /sbin/ldconfig -%postun -p /sbin/ldconfig +%pre +%groupadd -g 229 flumotion +%useradd -u 229 -d %{_localstatedir}/cache/flumotion -s /bin/false -g flumotion -c "Flumotion server" flumotion + +%post +/sbin/chkconfig --add flumotion +# generate a default .pem certificate ? +PEM_FILE="%{_sysconfdir}/flumotion/default.pem" +if ! test -e ${PEM_FILE} +then + sh %{_datadir}/flumotion/make-dummy-cert ${PEM_FILE} + chown :flumotion ${PEM_FILE} + chmod 640 ${PEM_FILE} +fi + +# create a default planet config if no manager configs present +# the default login will be user/test +if ! test -e %{_sysconfdir}/flumotion/managers +then + mkdir -p %{_sysconfdir}/flumotion/managers/default/flows + cat > %{_sysconfdir}/flumotion/managers/default/planet.xml < + + + + localhost + + + + + + + + + +EOF +fi + +# create a default worker config if no worker configs present +# the default login will be user/test +if ! test -e %{_sysconfdir}/flumotion/workers +then + mkdir -p %{_sysconfdir}/flumotion/workers + cat > %{_sysconfdir}/flumotion/workers/default.xml < + + + + + + + + + user + test + + + + + +EOF + +fi + +%preun +# if removal and not upgrade, stop the processes, clean up locks +if [ $1 -eq 0 ] +then + /sbin/service flumotion stop > /dev/null + + rm -rf %{_localstatedir}/lock/flumotion* + rm -rf %{_localstatedir}/run/flumotion* + + # clean out the cache/home dir too, without deleting it or the user + rm -rf %{_localstatedir}/cache/flumotion/* + rm -rf %{_localstatedir}/cache/flumotion/.[^.]* + + /sbin/chkconfig --del flumotion +fi + %files %defattr(644,root,root,755) -%attr(755,root,root) %{_sbindir}/ffserver -%config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/*.conf +%attr(755,root,root) %{_sbindir}/%{name} +%attr(755,root,root) %{_bindir}/* +%attr(750,root,flumotion) %{_sysconfdir}/flumotion +%attr(540,root,flumotion) %{_sysconfdir}/logrotate.d/flumotion +%attr(770,root,flumotion) %{_localstatedir}/run/flumotion +%attr(770,root,flumotion) %{_localstatedir}/log/flumotion +%attr(770,flumotion,flumotion) %{_localstatedir}/cache/%{name} +%attr(754,root,flumotion) %{_sysconfdir}/rc.d/init.d/%{name} +%{_libdir}/%{name} +%{_datadir}/%{name} +%{_desktopdir}/%{name}-admin.desktop +%{_pkgconfigdir}/%{name}.pc +%{_pixmapsdir}/* +%{_mandir}/man1/* +%doc ChangeLog COPYING README AUTHORS %{name}.doap +%doc conf -- 2.43.0