rpms/iscsitarget/devel iscsitarget-1.4.18-initscript.patch, NONE, 1.1 .cvsignore, 1.3, 1.4 iscsitarget.spec, 1.7, 1.8 sources, 1.3, 1.4 iscsitarget-0.4.15-initscript.patch, 1.2, NONE
by Lubomir Rintel
Author: lkundrak
Update of /cvs/free/rpms/iscsitarget/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv10174
Modified Files:
.cvsignore iscsitarget.spec sources
Added Files:
iscsitarget-1.4.18-initscript.patch
Removed Files:
iscsitarget-0.4.15-initscript.patch
Log Message:
* Sun Nov 01 2009 Lubomir Rintel <lkundrak(a)v3.sk> - 1:1.4.18-1
- Update to new upstream release
iscsitarget-1.4.18-initscript.patch:
--- NEW FILE iscsitarget-1.4.18-initscript.patch ---
diff -up iscsitarget-1.4.18/etc/initd/initd.redhat.initscript iscsitarget-1.4.18/etc/initd/initd.redhat
--- iscsitarget-1.4.18/etc/initd/initd.redhat.initscript 2009-09-21 20:28:14.000000000 +0200
+++ iscsitarget-1.4.18/etc/initd/initd.redhat 2009-11-01 14:29:57.074823142 +0100
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
#
# chkconfig: - 39 35
# description: Starts and stops the iSCSI target
@@ -6,7 +6,14 @@
# pidfile: /var/run/ietd.pid
# config: /etc/ietd.conf
-PATH=/sbin:/bin:/usr/sbin:/usr/bin
+### BEGIN INIT INFO
+# Provides: iscsi-target
+# Required-Start: $local_fs $network $remote_fs $syslog
+# Required-Stop: $local_fs $network $remote_fs $syslog
+# Short-Description: start and stop ietd
+# Description: Starts and stops the iSCSI target
+### END INIT INFO
+
OPTIONS=""
# Source function library.
@@ -27,11 +34,15 @@ RETVAL=0
start()
{
echo -n "Starting iSCSI Target: "
- modprobe -q crc32c
+ # 2> /dev/null for kernels where regular crc32c is build in, as there
+ # modprobe will sometimes pick a CPU specific one which will then fail
+ # if not loaded on the right CPU, ie crc32c_intel on an amd64
+ modprobe crc32c 2> /dev/null
modprobe iscsi_trgt
daemon /usr/sbin/ietd $OPTIONS
RETVAL=$?
if [ $RETVAL -eq 0 ]; then
+ touch /var/lock/subsys/iscsi-target
echo_success
else
echo_failure
@@ -48,6 +59,7 @@ stop()
modprobe -r iscsi_trgt
RETVAL=$?
if [ $RETVAL -eq 0 ]; then
+ rm -f /var/lock/subsys/iscsi-target
echo_success
else
echo_failure
@@ -71,6 +83,16 @@ condrestart()
fi
}
+try-restart()
+{
+ condrestart
+}
+
+force-reload()
+{
+ try-restart
+}
+
status()
{
PID=`pidofproc ietd`
@@ -99,7 +121,7 @@ case "$1" in
status
;;
*)
- echo $"Usage: $0 {start|stop|restart|condrestart|status}"
+ echo $"Usage: $0 {start|stop|restart|try-restart|force-reload|status}"
exit 1
esac
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/iscsitarget/devel/.cvsignore,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- .cvsignore 5 Jan 2009 16:33:27 -0000 1.3
+++ .cvsignore 1 Nov 2009 13:32:47 -0000 1.4
@@ -1 +1 @@
-iscsitarget-0.4.17.tar.gz
+iscsitarget-1.4.18.tar.gz
Index: iscsitarget.spec
===================================================================
RCS file: /cvs/free/rpms/iscsitarget/devel/iscsitarget.spec,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- iscsitarget.spec 13 Sep 2009 18:08:38 -0000 1.7
+++ iscsitarget.spec 1 Nov 2009 13:32:47 -0000 1.8
@@ -1,6 +1,6 @@
Name: iscsitarget
-Version: 0.4.17
-Release: 5%{?dist}
+Version: 1.4.18
+Release: 1%{?dist}
Epoch: 1
Summary: Utilities for iSCSI Enterprise Target
@@ -8,7 +8,7 @@
License: GPLv2
URL: http://sourceforge.net/projects/iscsitarget/
Source0: http://dl.sf.net/iscsitarget/%{name}-%{version}.tar.gz
-Patch1: iscsitarget-0.4.15-initscript.patch
+Patch1: iscsitarget-1.4.18-initscript.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
Requires: %{name}-kmod >= %{epoch}:%{version}
@@ -73,6 +73,9 @@
%changelog
+* Sun Nov 01 2009 Lubomir Rintel <lkundrak(a)v3.sk> - 1:1.4.18-1
+- Update to new upstream release
+
* Sun Sep 13 2009 Hans de Goede <j.w.r.degoede(a)hhs.nl> - 1:0.4.17-5
- silence crc32c_intel loading failure on amd machines
Index: sources
===================================================================
RCS file: /cvs/free/rpms/iscsitarget/devel/sources,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- sources 5 Jan 2009 16:33:27 -0000 1.3
+++ sources 1 Nov 2009 13:32:47 -0000 1.4
@@ -1 +1 @@
-e79b437695fc50e7d054631855a16b1b iscsitarget-0.4.17.tar.gz
+9e756e89cc47aaa71824ed34a6560543 iscsitarget-1.4.18.tar.gz
--- iscsitarget-0.4.15-initscript.patch DELETED ---
15 years
rpms/VirtualBox-OSE/devel .cvsignore, 1.9, 1.10 VirtualBox-OSE.spec, 1.33, 1.34 sources, 1.9, 1.10
by Lubomir Rintel
Author: lkundrak
Update of /cvs/free/rpms/VirtualBox-OSE/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv9713
Modified Files:
.cvsignore VirtualBox-OSE.spec sources
Log Message:
* Sun Nov 01 2009 Lubomir Rintel <lkundrak(a)v3.sk> - 3.0.10-1
- Update to newer upstream release
- Fix mixed up source files (Tony Nelson, #881)
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/VirtualBox-OSE/devel/.cvsignore,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- .cvsignore 7 Oct 2009 09:07:54 -0000 1.9
+++ .cvsignore 1 Nov 2009 13:27:02 -0000 1.10
@@ -1,2 +1,2 @@
+VirtualBox-3.0.10-OSE.tar.bz2
UserManual.pdf
-VirtualBox-3.0.8-OSE.tar.bz2
Index: VirtualBox-OSE.spec
===================================================================
RCS file: /cvs/free/rpms/VirtualBox-OSE/devel/VirtualBox-OSE.spec,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- VirtualBox-OSE.spec 7 Oct 2009 09:07:54 -0000 1.33
+++ VirtualBox-OSE.spec 1 Nov 2009 13:27:02 -0000 1.34
@@ -16,7 +16,7 @@
%endif
Name: VirtualBox-OSE
-Version: 3.0.8
+Version: 3.0.10
Release: 1%{?dist}
Summary: A general-purpose full virtualizer for PC hardware
@@ -299,7 +299,7 @@
# Install modules load script
install -p -m 0755 -D %{SOURCE6} $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/modules/%{name}.modules
install -p -m 0755 -D %{SOURCE7} $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/modules/%{name}-guest.modules
-install -p -m 0644 -D %{SOURCE8} $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/modprobe.d/blacklist-kvm.conf
+install -p -m 0644 -D %{SOURCE9} $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/modprobe.d/blacklist-kvm.conf
# Module Source Code
mkdir -p %{name}-kmod-%{version}
@@ -435,6 +435,10 @@
%changelog
+* Sun Nov 01 2009 Lubomir Rintel <lkundrak(a)v3.sk> - 3.0.10-1
+- Update to newer upstream release
+- Fix mixed up source files (Tony Nelson, #881)
+
* Wed Oct 07 2009 Lubomir Rintel <lkundrak(a)v3.sk> - 3.0.8-1
- Update to newer upstream
- Fixes SunSolve #268188 security issue
Index: sources
===================================================================
RCS file: /cvs/free/rpms/VirtualBox-OSE/devel/sources,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- sources 7 Oct 2009 09:07:54 -0000 1.9
+++ sources 1 Nov 2009 13:27:02 -0000 1.10
@@ -1,2 +1,2 @@
-e682baf64906a0d01bb592b81a3c54ac UserManual.pdf
-e712f2979e501be59314464d021b6d8b VirtualBox-3.0.8-OSE.tar.bz2
+54a3fc2af8420c6463ecb73bef2eeb2e VirtualBox-3.0.10-OSE.tar.bz2
+4abaa23db5d8e22c36cd8f808c2c6975 UserManual.pdf
15 years
rpms/mythtv/devel mythtv.spec,1.56,1.57 sources,1.34,1.35
by Jarod Wilson
Author: jarod
Update of /cvs/free/rpms/mythtv/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv11503
Modified Files:
mythtv.spec sources
Log Message:
* Sat Oct 31 2009 Jarod Wilson <jarod(a)wilsonet.com> 0.22-0.9.rc2
- Update to 0.22-rc2
Index: mythtv.spec
===================================================================
RCS file: /cvs/free/rpms/mythtv/devel/mythtv.spec,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -r1.56 -r1.57
--- mythtv.spec 14 Oct 2009 22:08:04 -0000 1.56
+++ mythtv.spec 1 Nov 2009 03:57:43 -0000 1.57
@@ -65,7 +65,7 @@
%define desktop_vendor RPMFusion
# SVN Revision number and branch ID
-%define _svnrev r22457
+%define _svnrev r22680
%define branch trunk
#
@@ -79,7 +79,7 @@
# Version/Release info
Version: 0.22
%if "%{branch}" == "trunk"
-Release: 0.5.rc1%{?dist}
+Release: 0.9.rc2%{?dist}
#Release: 0.4.svn.%{_svnrev}%{?dist}
%else
Release: 1%{?dist}
@@ -980,7 +980,7 @@
--enable-debug
# Insert rpm version-release for mythbackend --version output
- find . -name version.pro -exec sed -i -e 's,svnversion \$\${SVNTREEDIR},echo "%{version}-%{release}",g' {} \;
+ find . -name version.pro -exec sed -i -e 's,myth_binary_version = \$\${BINARY_VERSION},myth_binary_version = %{version}-%{release} (%{_svnrev}),g' {} \;
# Make
make %{?_smp_mflags}
@@ -1482,6 +1482,18 @@
################################################################################
%changelog
+* Sat Oct 31 2009 Jarod Wilson <jarod(a)wilsonet.com> 0.22-0.9.rc2
+- Update to 0.22-rc2
+
+* Tue Oct 27 2009 Jarod Wilson <jarod(a)wilsonet.com> 0.22-0.8.rc1
+- Update to release-0-22-fixes branch, svn revision 22579
+
+* Tue Oct 20 2009 Jarod Wilson <jarod(a)wilsonet.com> 0.22-0.7.rc1
+- Update to release-0-22-fixes branch, svn revision 22548
+
+* Fri Oct 16 2009 Jarod Wilson <jarod(a)wilsonet.com> 0.22-0.6.rc1
+- Update to release-0-22-fixes branch, svn revision 22507
+
* Wed Oct 14 2009 Jarod Wilson <jarod(a)wilsonet.com> 0.22-0.5.rc1
- Update to 0.22-rc1
- Now tracking release-0-22-fixes branch
Index: sources
===================================================================
RCS file: /cvs/free/rpms/mythtv/devel/sources,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- sources 14 Oct 2009 22:08:04 -0000 1.34
+++ sources 1 Nov 2009 03:57:43 -0000 1.35
@@ -1,4 +1,4 @@
be3ab99952c2a3a135a7c4af90b08f15 mythfrontend.png
be3ab99952c2a3a135a7c4af90b08f15 mythtv-setup.png
-45a0fb8271b177f9b1c496022ef49361 mythtv-0.22.tar.bz2
-e7b08be1e378ca2a60335f755b31f9a8 mythplugins-0.22.tar.bz2
+14c58545850046c5a50a3c45dc1f1508 mythtv-0.22.tar.bz2
+13a1e5c8cef677e4d429696b3a64c66a mythplugins-0.22.tar.bz2
15 years
rpms/mythtv-themes/devel mythtv-themes.spec, 1.23, 1.24 sources, 1.17, 1.18
by Jarod Wilson
Author: jarod
Update of /cvs/free/rpms/mythtv-themes/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv10822
Modified Files:
mythtv-themes.spec sources
Log Message:
* Sat Oct 31 2009 Jarod Wilson <jarod(a)wilsonet.com> 0.22-0.9.rc2
- Update to 0.22-rc2
Index: mythtv-themes.spec
===================================================================
RCS file: /cvs/free/rpms/mythtv-themes/devel/mythtv-themes.spec,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- mythtv-themes.spec 14 Oct 2009 22:36:21 -0000 1.23
+++ mythtv-themes.spec 1 Nov 2009 03:48:03 -0000 1.24
@@ -17,7 +17,7 @@
%define desktop_vendor RPMFusion
# SVN Revision number and branch ID
-%define _svnrev r22457
+%define _svnrev r22680
%define branch trunk
#
@@ -32,7 +32,7 @@
# Version/Release info
Version: 0.22
%if "%{branch}" == "trunk"
-Release: 0.6.rc1%{?dist}
+Release: 0.7.rc2%{?dist}
#Release: 0.5.svn.%{_svnrev}%{?dist}
%else
Release: 1%{?dist}
@@ -103,6 +103,9 @@
%{_datadir}/mythtv/themes/*
%changelog
+* Sat Oct 31 2009 Jarod Wilson <jarod(a)wilsonet.com> 0.22-0.9.rc2
+- Update to 0.22-rc2
+
* Wed Oct 14 2009 Jarod Wilson <jarod(a)wilsonet.com> - 0.22-0.6.rc1
- Update to 0.22-rc1
- Drop oldthemes and unofficial themes at upstream's request, after
15 years