Compare commits
10 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5d6b2c232e | ||
|
|
77cc359ac7 | ||
|
|
22840176f1 | ||
|
|
d437087819 | ||
|
|
28d35c70c9 | ||
|
|
f5501bf1ac | ||
|
|
12a7b5103c | ||
|
|
0e61bf563a | ||
|
|
2e0fa2ef75 | ||
|
|
6a6d356c00 |
8 changed files with 1 additions and 294 deletions
|
|
@ -1 +0,0 @@
|
|||
ushare-1.1a.tar.bz2
|
||||
21
Makefile
21
Makefile
|
|
@ -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)
|
||||
1
dead.package
Normal file
1
dead.package
Normal file
|
|
@ -0,0 +1 @@
|
|||
Package is retired
|
||||
1
sources
1
sources
|
|
@ -1 +0,0 @@
|
|||
5bbcdbf1ff85a9710fa3d4e82ccaa251 ushare-1.1a.tar.bz2
|
||||
|
|
@ -1,22 +0,0 @@
|
|||
--- ushare-1.1a/scripts/ushare.conf 2007-12-09 14:03:36.000000000 +0100
|
||||
+++ ushare-1.1a/scripts/ushare.conf.new 2008-03-09 09:53:12.000000000 +0100
|
||||
@@ -31,15 +31,15 @@
|
||||
USHARE_OVERRIDE_ICONV_ERR=
|
||||
|
||||
# Enable Web interface (yes/no)
|
||||
-ENABLE_WEB=
|
||||
+USHARE_ENABLE_WEB=
|
||||
|
||||
# Enable Telnet control interface (yes/no)
|
||||
-ENABLE_TELNET=
|
||||
+USHARE_ENABLE_TELNET=
|
||||
|
||||
# Use XboX 360 compatibility mode (yes/no)
|
||||
-ENABLE_XBOX=
|
||||
+USHARE_ENABLE_XBOX=
|
||||
|
||||
# Use DLNA profile (yes/no)
|
||||
# This is needed for PlayStation3 to work (among other devices)
|
||||
-ENABLE_DLNA=
|
||||
+USHARE_ENABLE_DLNA=
|
||||
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
--- ushare-1.1a/src/ushare.c 2007-12-09 14:03:36.000000000 +0100
|
||||
+++ ushare-1.1a/src/ushare.c.new 2008-03-09 09:58:06.000000000 +0100
|
||||
@@ -424,8 +424,6 @@
|
||||
if ((itf->ifa_flags & IFF_UP)
|
||||
&& !strncmp (itf->ifa_name, interface, IFNAMSIZ))
|
||||
{
|
||||
- log_error (_("Interface %s is down.\n"), interface);
|
||||
- log_error (_("Recheck uShare's configuration and try again !\n"));
|
||||
freeifaddrs (itflist);
|
||||
return true;
|
||||
}
|
||||
80
ushare.init
80
ushare.init
|
|
@ -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 -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
|
||||
}
|
||||
|
||||
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
|
||||
158
ushare.spec
158
ushare.spec
|
|
@ -1,158 +0,0 @@
|
|||
Summary: UPnP (TM) A/V Media Server
|
||||
Name: ushare
|
||||
Version: 1.1a
|
||||
Release: 5%{?dist}
|
||||
License: LGPLv2+
|
||||
Group: Applications/Multimedia
|
||||
URL: http://ushare.geexbox.org/
|
||||
|
||||
Source: http://ushare.geexbox.org/releases/%{name}-%{version}.tar.bz2
|
||||
Source1:ushare.init
|
||||
Patch0: ushare-conf.patch
|
||||
Patch1: ushare-error.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
|
||||
BuildRequires: libupnp-devel, pkgconfig
|
||||
Requires: /usr/sbin/alternatives
|
||||
Requires(pre): fedora-usermgmt
|
||||
Requires(post): /sbin/chkconfig, /usr/sbin/alternatives
|
||||
Requires(preun): /sbin/service, /sbin/chkconfig, /usr/sbin/alternatives
|
||||
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
|
||||
%patch0 -p1
|
||||
%patch1 -p1
|
||||
iconv -f ISO_8859-1 -t UTF-8 AUTHORS --output AUTHORS.utf8
|
||||
cp -af AUTHORS.utf8 AUTHORS
|
||||
|
||||
%build
|
||||
export CFLAGS="$RPM_OPT_FLAGS"
|
||||
./configure --prefix=%{_prefix} --localedir=%{_datadir}/locale --sysconfdir=%{_sysconfdir} --disable-dlna --enable-debug
|
||||
make %{?_smp_mflags}
|
||||
|
||||
%install
|
||||
rm -rf %{buildroot}
|
||||
%makeinstall DESTDIR=%{buildroot}
|
||||
%{__rm} -rf %{buildroot}%{_sysconfdir}/init.d
|
||||
%{__install} -m 0755 -D %{SOURCE1} %{buildroot}%{_initrddir}/ushare
|
||||
%{__mkdir_p} %{buildroot}%{_var}/lib/ushare
|
||||
%{__mv} %{buildroot}%{_bindir}/ushare %{buildroot}%{_bindir}/ushare-fedora
|
||||
%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
|
||||
alternatives --install %{_bindir}/ushare ushare %{_bindir}/ushare-fedora 10
|
||||
|
||||
%preun
|
||||
if [ $1 -eq 0 ]; then
|
||||
/sbin/service ushare stop &>/dev/null || :
|
||||
/sbin/chkconfig --del ushare
|
||||
alternatives --remove ushare %{_bindir}/ushare-fedora
|
||||
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-fedora
|
||||
%config(noreplace) %{_sysconfdir}/ushare.conf
|
||||
%{_initrddir}/ushare
|
||||
%attr(770,ushare,ushare) %dir %{_var}/lib/ushare/
|
||||
|
||||
%changelog
|
||||
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1a-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
||||
|
||||
* Thu Dec 18 2008 Dave Jones <davej@redhat.com>
|
||||
- Don't trash the ircd pid file when shutting down ushare.
|
||||
|
||||
* Sun Mar 09 2008 Eric Tanguy <eric.tanguy@univ-nantes.fr> - 1.1a-4
|
||||
- BZ 436605 & 436607
|
||||
|
||||
* Fri Jan 25 2008 Eric Tanguy <eric.tanguy@univ-nantes.fr> - 1.1a-3
|
||||
- Correct some spec error
|
||||
|
||||
* Tue Dec 25 2007 Eric Tanguy <eric.tanguy@univ-nantes.fr> - 1.1a-2
|
||||
- Introduce use of alternatives
|
||||
|
||||
* Thu Dec 06 2007 Eric Tanguy <eric.tanguy@univ-nantes.fr> - 1.1a-1
|
||||
- Update to 1.1a
|
||||
|
||||
* Wed Dec 05 2007 Eric Tanguy <eric.tanguy@univ-nantes.fr> - 1.1-1
|
||||
- Update to 1.1
|
||||
|
||||
* Sun Nov 18 2007 Eric Tanguy <eric.tanguy@univ-nantes.fr> - 1.0-4
|
||||
- Rebuild for new libupnp.
|
||||
|
||||
* Wed Aug 29 2007 Fedora Release Engineering <rel-eng at fedoraproject dot org> - 1.0-2
|
||||
- Rebuild for selinux ppc32 issue.
|
||||
|
||||
* Fri Jul 06 2007 Eric Tanguy <eric.tanguy@univ-nantes.fr> - 1.0-1
|
||||
- Update to 1.0
|
||||
|
||||
* Tue Jun 26 2007 Eric Tanguy <eric.tanguy@univ-nantes.fr> - 0.9.10-4
|
||||
- Rebuild
|
||||
|
||||
* Sat May 05 2007 Eric Tanguy <eric.tanguy@univ-nantes.fr> - 0.9.10-3
|
||||
- Rebuild for libupnp-1.6.0
|
||||
|
||||
* Sat May 05 2007 Eric Tanguy <eric.tanguy@univ-nantes.fr> - 0.9.10-2
|
||||
- Rebuild
|
||||
|
||||
* Mon Feb 26 2007 Eric Tanguy <eric.tanguy@univ-nantes.fr> - 0.9.10-1
|
||||
- Update to 0.9.10
|
||||
|
||||
* Sun Feb 25 2007 Eric Tanguy <eric.tanguy@univ-nantes.fr> - 0.9.9-1
|
||||
- Update to 0.9.9
|
||||
|
||||
* Sat Feb 17 2007 Eric Tanguy <eric.tanguy@univ-nantes.fr> - 0.9.8-2
|
||||
- Rebuild for libupnp 1.4.2
|
||||
|
||||
* Wed Dec 13 2006 Eric Tanguy <eric.tanguy@univ-nantes.fr> - 0.9.8-1
|
||||
- Update to 0.9.8
|
||||
|
||||
* 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue