Compare commits

...
Sign in to create a new pull request.

10 commits

Author SHA1 Message Date
Till Maas
550030c5a3 2014-12-20: Retired because of broken deps:
unresolved dependencies for ushare-1.0-4.el5.i386:
libupnp.so.3
libthreadutil.so.2
libixml.so.2
2014-12-20 18:00:58 +01:00
Fedora Release Engineering
f979be94a7 dist-git conversion 2010-07-29 14:49:10 +00:00
Bill Nottingham
dacf2f0de4 Fix typo that causes a failure to update the common directory. (releng
#2781)
2009-11-26 01:16:27 +00:00
Eric Tanguy
50b7680b77 *** empty log message *** 2007-12-03 18:46:56 +00:00
Eric Tanguy
16020c7816 *** empty log message *** 2007-07-06 18:07:47 +00:00
Eric Tanguy
0a868af78c *** empty log message *** 2007-06-25 18:09:23 +00:00
Dennis Gilmore
435716a261 Initialize branch EL-5 for ushare 2007-05-15 11:44:54 +00:00
Eric Tanguy
13298cd60c auto-import ushare-0.9.10-1 on branch FC-6 from ushare-0.9.10-1.src.rpm 2007-02-27 19:26:54 +00:00
Eric Tanguy
f3688e6da2 *** empty log message *** 2007-02-18 10:08:26 +00:00
Eric Tanguy
6a89f4afd0 auto-import ushare-0.9.8-1 on branch FC-6 from ushare-0.9.8-1.src.rpm 2006-12-13 21:07:06 +00:00
6 changed files with 6 additions and 203 deletions

View file

@ -1 +0,0 @@
ushare-0.9.7.tar.bz2

View file

@ -1,21 +0,0 @@
# Makefile for source rpm: ushare
# $Id$
NAME := ushare
SPECFILE = $(firstword $(wildcard *.spec))
define find-makefile-common
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
endef
MAKEFILE_COMMON := $(shell $(find-makefile-common))
ifeq ($(MAKEFILE_COMMON),)
# attept a checkout
define checkout-makefile-common
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
endef
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
endif
include $(MAKEFILE_COMMON)

6
dead.package Normal file
View file

@ -0,0 +1,6 @@
2014-12-20: Retired because of broken deps:
unresolved dependencies for ushare-1.0-4.el5.i386:
libupnp.so.3
libthreadutil.so.2
libixml.so.2

View file

@ -1 +0,0 @@
e978c648f808cf1740b1583a78b922ff ushare-0.9.7.tar.bz2

View file

@ -1,80 +0,0 @@
#!/bin/sh
#
# ushare This shell script takes care of starting and stopping ushare.
#
# chkconfig: - 75 25
# description: uShare UPnP A/V Media Server.
#
# Source function library.
. /etc/rc.d/init.d/functions
# Source networking configuration.
. /etc/sysconfig/network
# Check that networking is up.
[ ${NETWORKING} = "no" ] && exit 0
OPTIONS=""
prog=ushare
DESC="UPnP A/V Media Server"
[ -r "/etc/ushare.conf" ] && . /etc/ushare.conf
# abort if no shared directory is defined
[ -z "$USHARE_DIR" ] && exit 0
start() {
echo -n $"Starting $prog: "
daemon --user ushare $prog -D
RETVAL=$?
echo
[ $RETVAL -eq 0 ] && touch /var/lock/subsys/$prog
}
stop() {
echo -n $"Stopping $prog: "
killproc $prog
RETVAL=$?
echo
[ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/$prog /var/run/ircd.pid
}
reload() {
echo -n $"Reloading $prog: "
killproc $prog -HUP
RETVAL=$?
echo
}
# See how we were called.
case "$1" in
start)
start
;;
stop)
stop
;;
status)
status $prog
RETVAL=$?
;;
restart)
stop
start
;;
condrestart)
if [ -f /var/lock/subsys/$prog ]; then
stop
start
fi
;;
reload)
reload
;;
*)
echo $"Usage: $prog {start|stop|restart|condrestart|reload|status"
exit 1
esac
exit $RETVAL

View file

@ -1,100 +0,0 @@
Summary: UPnP (TM) A/V Media Server
Name: ushare
Version: 0.9.7
Release: 3%{?dist}
License: GPL
Group: Applications/Multimedia
URL: http://ushare.geexbox.org/
Source: http://ushare.geexbox.org/releases/%{name}-%{version}.tar.bz2
Source1:ushare.init
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: libupnp-devel, pkgconfig
Requires(pre): fedora-usermgmt
Requires(post): /sbin/chkconfig
Requires(preun): /sbin/service, /sbin/chkconfig
Requires(postun): /sbin/service
%description
uShare is a UPnP (TM) A/V Media Server. It implements the server
component that provides UPnP media devices with information on
available multimedia files. uShare uses the built-in http server
of libupnp to stream the files to clients.
%prep
%setup -q
%build
%configure
make %{?_smp_mflags}
%install
rm -rf %{buildroot}
%makeinstall
%{__rm} -rf %{buildroot}%{_sysconfdir}/init.d
%{__install} -m 0755 -D %{SOURCE1} %{buildroot}%{_initrddir}/ushare
%{__mkdir_p} %{buildroot}%{_var}/lib/ushare
%find_lang %{name}
%clean
rm -rf %{buildroot}
%pre
%{_sbindir}/fedora-useradd 21 -s /sbin/nologin -M -r -d %{_var}/lib/ushare \
-c "ushare service account" ushare &>/dev/null || :
%post
/sbin/chkconfig --add ushare
%preun
if [ $1 -eq 0 ]; then
/sbin/service ushare stop &>/dev/null || :
/sbin/chkconfig --del ushare
fi
%postun
if [ $1 -ge 1 ]; then
/sbin/service ushare condrestart &>/dev/null || :
fi
%files -f %{name}.lang
%defattr(-,root,root,-)
%doc AUTHORS ChangeLog COPYING NEWS README
%{_bindir}/ushare
%config(noreplace) %{_sysconfdir}/ushare.conf
%{_initrddir}/ushare
%{_mandir}/man1/*
%attr(770,ushare,ushare) %dir %{_var}/lib/ushare/
%changelog
* Mon Aug 28 2006 Eric Tanguy <eric.tanguy@univ-nantes.fr> - 0.9.7-3
- Rebuild for Fedora Extras 6
* Thu Jun 29 2006 Eric Tanguy <eric.tanguy@univ-nantes.fr> - 0.9.7-2
- Add pkgconfig to buildrequires
* Sun Mar 12 2006 Eric Tanguy <eric.tanguy@univ-nantes.fr> - 0.9.7-1
- Update to 0.9.7
* Tue Feb 14 2006 Eric Tanguy <eric.tanguy@univ-nantes.fr> - 0.9.6-1
- Update to 0.9.6
* Tue Feb 14 2006 Eric Tanguy <eric.tanguy@univ-nantes.fr> - 0.9.5-6
- Rebuild for FC5
* Fri Feb 10 2006 Eric Tanguy <eric.tanguy@univ-nantes.fr> - 0.9.5-5
- Rebuild for FC5
* Tue Dec 27 2005 Eric Tanguy 0.9.5-4
- Use %find_lang macro instead of %{_datadir}/locale/*
* Tue Dec 27 2005 Eric Tanguy 0.9.5-3
- Drop "Requires: libupnp"
- replace %{_sysconfdir}/ushare.conf by %config(noreplace) %{_sysconfdir}/ushare.conf
* Tue Dec 27 2005 Eric Tanguy 0.9.5-2
- add patch for buffer
* Tue Dec 27 2005 Eric Tanguy 0.9.5-1
- First build