rpms/staging-kmod - New directory
by Thorsten Leemhuis
Author: thl
Update of /cvs/free/rpms/staging-kmod
In directory se02.es.rpmfusion.net:/home/rpmfusion/thl/free/owners/tmpcvsN13657/rpms/staging-kmod
Log Message:
Directory /cvs/free/rpms/staging-kmod added to the repository
15 years
rpms/staging-kmod/devel - New directory
by Thorsten Leemhuis
Author: thl
Update of /cvs/free/rpms/staging-kmod/devel
In directory se02.es.rpmfusion.net:/home/rpmfusion/thl/free/owners/tmpcvsN13657/rpms/staging-kmod/devel
Log Message:
Directory /cvs/free/rpms/staging-kmod/devel added to the repository
15 years
rpms/iscsitarget/F-11 iscsitarget-1.4.18-initscript.patch,NONE,1.1
by Lubomir Rintel
Author: lkundrak
Update of /cvs/free/rpms/iscsitarget/F-11
In directory se02.es.rpmfusion.net:/tmp/cvs-serv12622/F-11
Added Files:
iscsitarget-1.4.18-initscript.patch
Log Message:
Add forgotten patch file
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
15 years
rpms/iscsitarget/F-10 iscsitarget-1.4.18-initscript.patch,NONE,1.1
by Lubomir Rintel
Author: lkundrak
Update of /cvs/free/rpms/iscsitarget/F-10
In directory se02.es.rpmfusion.net:/tmp/cvs-serv12622/F-10
Added Files:
iscsitarget-1.4.18-initscript.patch
Log Message:
Add forgotten patch file
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
15 years
rpms/iscsitarget/F-10 .cvsignore, 1.3, 1.4 iscsitarget.spec, 1.3, 1.4 sources, 1.3, 1.4 iscsitarget-0.4.15-initscript.patch, 1.1, NONE
by Lubomir Rintel
Author: lkundrak
Update of /cvs/free/rpms/iscsitarget/F-10
In directory se02.es.rpmfusion.net:/tmp/cvs-serv12104/F-10
Modified Files:
.cvsignore iscsitarget.spec sources
Removed Files:
iscsitarget-0.4.15-initscript.patch
Log Message:
Pull devel iscsitarget to released branches
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/iscsitarget/F-10/.cvsignore,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- .cvsignore 15 Apr 2009 19:32:47 -0000 1.3
+++ .cvsignore 1 Nov 2009 13:53:54 -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/F-10/iscsitarget.spec,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- iscsitarget.spec 15 Apr 2009 19:32:47 -0000 1.3
+++ iscsitarget.spec 1 Nov 2009 13:53:54 -0000 1.4
@@ -1,6 +1,6 @@
Name: iscsitarget
-Version: 0.4.17
-Release: 3%{?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}
@@ -41,6 +41,10 @@
install -d $RPM_BUILD_ROOT%{_sysconfdir}/rc.d
mv $RPM_BUILD_ROOT%{_sysconfdir}/init.d $RPM_BUILD_ROOT%{_sysconfdir}/rc.d
+# Use old config file location not to break existing installations
+mv $RPM_BUILD_ROOT%{_sysconfdir}/iet/* $RPM_BUILD_ROOT%{_sysconfdir}
+rmdir $RPM_BUILD_ROOT%{_sysconfdir}/iet
+
%clean
rm -rf $RPM_BUILD_ROOT
@@ -60,19 +64,28 @@
%files
%defattr(-,root,root,-)
-%doc COPYING README README.vmware ChangeLog
%{_sbindir}/ietd
%{_sbindir}/ietadm
%attr(600,root,root) %config(noreplace) %{_sysconfdir}/ietd.conf
%config(noreplace) %{_sysconfdir}/initiators.allow
-%config(noreplace) %{_sysconfdir}/initiators.deny
+%config(noreplace) %{_sysconfdir}/targets.allow
%{_initrddir}/iscsi-target
%{_mandir}/man5/ietd.conf.5*
%{_mandir}/man8/ietadm.8*
%{_mandir}/man8/ietd.8*
+%doc COPYING README README.vmware ChangeLog RELEASE_NOTES
%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
+
+* Sun Sep 13 2009 Hans de Goede <j.w.r.degoede(a)hhs.nl> - 1:0.4.17-4
+- rebuild for new ssl
+
* Sun Mar 29 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-3
- rebuild for new F11 features
Index: sources
===================================================================
RCS file: /cvs/free/rpms/iscsitarget/F-10/sources,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- sources 15 Apr 2009 19:32:47 -0000 1.3
+++ sources 1 Nov 2009 13:53:54 -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/iscsitarget/F-11 .cvsignore, 1.3, 1.4 iscsitarget.spec, 1.5, 1.6 sources, 1.3, 1.4 iscsitarget-0.4.15-initscript.patch, 1.1, NONE
by Lubomir Rintel
Author: lkundrak
Update of /cvs/free/rpms/iscsitarget/F-11
In directory se02.es.rpmfusion.net:/tmp/cvs-serv12104/F-11
Modified Files:
.cvsignore iscsitarget.spec sources
Removed Files:
iscsitarget-0.4.15-initscript.patch
Log Message:
Pull devel iscsitarget to released branches
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/iscsitarget/F-11/.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:53:55 -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/F-11/iscsitarget.spec,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- iscsitarget.spec 29 Mar 2009 13:14:57 -0000 1.5
+++ iscsitarget.spec 1 Nov 2009 13:53:55 -0000 1.6
@@ -1,6 +1,6 @@
Name: iscsitarget
-Version: 0.4.17
-Release: 3%{?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}
@@ -41,6 +41,10 @@
install -d $RPM_BUILD_ROOT%{_sysconfdir}/rc.d
mv $RPM_BUILD_ROOT%{_sysconfdir}/init.d $RPM_BUILD_ROOT%{_sysconfdir}/rc.d
+# Use old config file location not to break existing installations
+mv $RPM_BUILD_ROOT%{_sysconfdir}/iet/* $RPM_BUILD_ROOT%{_sysconfdir}
+rmdir $RPM_BUILD_ROOT%{_sysconfdir}/iet
+
%clean
rm -rf $RPM_BUILD_ROOT
@@ -60,19 +64,28 @@
%files
%defattr(-,root,root,-)
-%doc COPYING README README.vmware ChangeLog
%{_sbindir}/ietd
%{_sbindir}/ietadm
%attr(600,root,root) %config(noreplace) %{_sysconfdir}/ietd.conf
%config(noreplace) %{_sysconfdir}/initiators.allow
-%config(noreplace) %{_sysconfdir}/initiators.deny
+%config(noreplace) %{_sysconfdir}/targets.allow
%{_initrddir}/iscsi-target
%{_mandir}/man5/ietd.conf.5*
%{_mandir}/man8/ietadm.8*
%{_mandir}/man8/ietd.8*
+%doc COPYING README README.vmware ChangeLog RELEASE_NOTES
%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
+
+* Sun Sep 13 2009 Hans de Goede <j.w.r.degoede(a)hhs.nl> - 1:0.4.17-4
+- rebuild for new ssl
+
* Sun Mar 29 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-3
- rebuild for new F11 features
Index: sources
===================================================================
RCS file: /cvs/free/rpms/iscsitarget/F-11/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:53:55 -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/iscsitarget-kmod/F-10 .cvsignore, 1.3, 1.4 iscsitarget-kmod.spec, 1.34, 1.35 sources, 1.3, 1.4 iscsitarget-0.4.17-2.6.29.patch, 1.1, NONE
by Lubomir Rintel
Author: lkundrak
Update of /cvs/free/rpms/iscsitarget-kmod/F-10
In directory se02.es.rpmfusion.net:/tmp/cvs-serv11546/F-10
Modified Files:
.cvsignore iscsitarget-kmod.spec sources
Removed Files:
iscsitarget-0.4.17-2.6.29.patch
Log Message:
Pull devel iscsitarget to released branches
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/iscsitarget-kmod/F-10/.cvsignore,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- .cvsignore 15 Apr 2009 17:57:18 -0000 1.3
+++ .cvsignore 1 Nov 2009 13:51:08 -0000 1.4
@@ -1 +1 @@
-iscsitarget-0.4.17.tar.gz
+iscsitarget-1.4.18.tar.gz
Index: iscsitarget-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/iscsitarget-kmod/F-10/iscsitarget-kmod.spec,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- iscsitarget-kmod.spec 16 Oct 2009 10:52:27 -0000 1.34
+++ iscsitarget-kmod.spec 1 Nov 2009 13:51:08 -0000 1.35
@@ -6,8 +6,8 @@
%define buildforkernels newest
Name: iscsitarget-kmod
-Version: 0.4.17
-Release: 2%{?dist}.19
+Version: 1.4.18
+Release: 1%{?dist}
Epoch: 1
Summary: iscsitarget kernel modules
@@ -15,7 +15,6 @@
License: GPLv2
URL: http://sourceforge.net/projects/iscsitarget/
Source0: http://dl.sf.net/iscsitarget/iscsitarget-%{version}.tar.gz
-Patch0: iscsitarget-0.4.17-2.6.29.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
# needed for plague to make sure it builds for i586 and i686
@@ -40,7 +39,6 @@
# go
%setup -q -c -T -a 0
pushd iscsitarget-%{version}
-%patch0 -p0 -b .2.6.29
popd
for kernel_version in %{?kernel_versions}; do
@@ -71,115 +69,23 @@
%changelog
-* Fri Oct 16 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-2.19
-- rebuild for new kernels
-
-* Fri Oct 02 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-2.18
-- rebuild for new kernels
-
-* Sun Aug 23 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-2.17
-- rebuild for new kernels
-
-* Sat Aug 22 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-2.16
-- rebuild for new kernels
-
-* Sat Aug 15 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-2.15
-- rebuild for new kernels
-
-* Tue Aug 04 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-2.14
-- rebuild for new kernels
-
-* Tue Jul 14 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-2.13
-- rebuild for new kernels
-
-* Mon Jun 22 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-2.12
-- rebuild for new kernels
-
-* Fri Jun 19 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-2.11
-- rebuild for new kernels
-
-* Wed May 27 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-2.10
-- rebuild for new kernels
-
-* Sun May 24 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-2.9
-- rebuild for new kernels
-
-* Tue May 12 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-2.8
-- rebuild for new kernels
-
-* Sat May 02 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-2.7
-- rebuild for new kernels
-
-* Sun Apr 05 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-2.6
-- rebuild for new kernels
-
-* Sun Mar 29 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-2.5
-- rebuild for new F11 features
+* Sun Nov 01 2009 Lubomir Rintel <lkundrak(a)v3.sk> - 1:1.4.18-1
+- Update to newer upstream release
+- Remove rebuild changelog entries
-* Sun Feb 15 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-1.5
-- rebuild for latest Fedora kernel;
-
-* Sun Feb 01 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-1.4
-- rebuild for latest Fedora kernel;
-
-* Sun Jan 25 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-1.3
-- rebuild for latest Fedora kernel;
-
-* Sun Jan 18 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-1.2
-- rebuild for latest Fedora kernel;
-
-* Sun Jan 11 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-1.1
-- rebuild for latest Fedora kernel;
+* Thu Jul 30 2009 Hans de Goede <hdegoede(a)redhat.com> - 1:0.4.17-3
+- Fix compilation with 2.6.31 kernel
* Mon Jan 05 2009 Lubomir Rintel <lkundrak(a)v3.sk> - 1:0.4.17-1
- Bump to latest upstream version
- Fix for 2.6.29
-* Sun Jan 04 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.15-42.svn147.3
-- rebuild for latest Fedora kernel;
-
-* Sun Dec 28 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.15-42.svn147.2
-- rebuild for latest Fedora kernel;
-
* Sat Dec 27 2008 Hans de Goede <hdegoede(a)redhat.com> - 1:0.4.15-42.svn147.1
- Fix compilation with 2.6.28 kernel
-* Sun Dec 21 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.15-41.svn147.11
-- rebuild for latest Fedora kernel;
-
-* Sun Dec 14 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.15-41.svn147.10
-- rebuild for latest Fedora kernel;
-
-* Sat Nov 22 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.15-41.svn147.9
-- rebuild for latest Fedora kernel;
-
-* Wed Nov 19 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.15-41.svn147.8
-- rebuild for latest Fedora kernel;
-
-* Tue Nov 18 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.15-41.svn147.7
-- rebuild for latest Fedora kernel;
-
-* Fri Nov 14 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.15-41.svn147.6
-- rebuild for latest Fedora kernel;
-
-* Sun Nov 09 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.15-41.svn147.5
-- rebuild for latest Fedora kernel;
-
-* Sun Nov 02 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.15-41.svn147.4
-- rebuild for latest rawhide kernel;
-
* Sun Oct 26 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.15-41.svn147.3
- rebuild for latest rawhide kernel; enable ppc and ppc64 again
-* Sun Oct 19 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.15-41.svn147.2
-- rebuild for latest rawhide kernel
-
-* Fri Oct 03 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info - 1:0.4.15-41.svn147.1
-- rebuild for rpm fusion
-
-* Wed Oct 01 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info - 1:0.4.15-40.svn147
-- rebuild for new kernels
-
* Sun Sep 21 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info - 1:0.4.15-39.svn147
- temporary disable ppc due to http://bugzilla.kernel.org/show_bug.cgi?id=11143
@@ -187,30 +93,6 @@
- rebuild for new kernels
- add patch iscsitarget-0.4.15-types.h.patch from hansg
-* Sat Aug 16 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info - 1:0.4.15-37.svn147
-- rebuild for new kernels
-
-* Thu Jul 24 2008 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 0.4.15-36
-- rebuild for new Fedora kernels
-
-* Tue Jul 15 2008 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 0.4.15-35
-- rebuild for new Fedora kernels
-
-* Wed Jul 02 2008 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 0.4.15-34
-- rebuild for new Fedora kernels
-
-* Fri Jun 13 2008 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 0.4.15-33
-- rebuild for new Fedora kernels
-
-* Fri Jun 06 2008 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 0.4.15-32
-- rebuild for new Fedora kernels
-
-* Thu May 15 2008 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 0.4.15-31
-- rebuild for new Fedora kernels
-
-* Sun May 04 2008 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 1:0.4.15-30.svn142
-- build for f9
-
* Sat Feb 16 2008 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 1:0.4.15-9.svn142
- fix typo
Index: sources
===================================================================
RCS file: /cvs/free/rpms/iscsitarget-kmod/F-10/sources,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- sources 15 Apr 2009 17:57:18 -0000 1.3
+++ sources 1 Nov 2009 13:51:08 -0000 1.4
@@ -1 +1 @@
-e79b437695fc50e7d054631855a16b1b iscsitarget-0.4.17.tar.gz
+9e756e89cc47aaa71824ed34a6560543 iscsitarget-1.4.18.tar.gz
--- iscsitarget-0.4.17-2.6.29.patch DELETED ---
15 years
rpms/iscsitarget-kmod/F-11 .cvsignore, 1.3, 1.4 iscsitarget-kmod.spec, 1.43, 1.44 sources, 1.3, 1.4 iscsitarget-0.4.17-2.6.29.patch, 1.1, NONE
by Lubomir Rintel
Author: lkundrak
Update of /cvs/free/rpms/iscsitarget-kmod/F-11
In directory se02.es.rpmfusion.net:/tmp/cvs-serv11546/F-11
Modified Files:
.cvsignore iscsitarget-kmod.spec sources
Removed Files:
iscsitarget-0.4.17-2.6.29.patch
Log Message:
Pull devel iscsitarget to released branches
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/iscsitarget-kmod/F-11/.cvsignore,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- .cvsignore 5 Jan 2009 16:13:05 -0000 1.3
+++ .cvsignore 1 Nov 2009 13:51:08 -0000 1.4
@@ -1 +1 @@
-iscsitarget-0.4.17.tar.gz
+iscsitarget-1.4.18.tar.gz
Index: iscsitarget-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/iscsitarget-kmod/F-11/iscsitarget-kmod.spec,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- iscsitarget-kmod.spec 20 Oct 2009 17:50:14 -0000 1.43
+++ iscsitarget-kmod.spec 1 Nov 2009 13:51:08 -0000 1.44
@@ -6,8 +6,8 @@
%define buildforkernels newest
Name: iscsitarget-kmod
-Version: 0.4.17
-Release: 2%{?dist}.25
+Version: 1.4.18
+Release: 1%{?dist}
Epoch: 1
Summary: iscsitarget kernel modules
@@ -15,7 +15,6 @@
License: GPLv2
URL: http://sourceforge.net/projects/iscsitarget/
Source0: http://dl.sf.net/iscsitarget/iscsitarget-%{version}.tar.gz
-Patch0: iscsitarget-0.4.17-2.6.29.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
# needed for plague to make sure it builds for i586 and i686
@@ -40,7 +39,6 @@
# go
%setup -q -c -T -a 0
pushd iscsitarget-%{version}
-%patch0 -p0 -b .2.6.29
popd
for kernel_version in %{?kernel_versions}; do
@@ -71,133 +69,23 @@
%changelog
-* Tue Oct 20 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-2.25
-- rebuild for new kernels
-
-* Wed Sep 30 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-2.24
-- rebuild for new kernels
-
-* Tue Sep 01 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-2.23
-- rebuild for new kernels
-
-* Thu Aug 27 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-2.22
-- rebuild for new kernels
-
-* Sun Aug 23 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-2.21
-- rebuild for new kernels
-
-* Sat Aug 22 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-2.20
-- rebuild for new kernels
-
-* Sat Aug 15 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-2.19
-- rebuild for new kernels
-
-* Fri Aug 14 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-2.18
-- rebuild for new kernels
-
-* Fri Jul 31 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-2.17
-- rebuild for new kernels
+* Sun Nov 01 2009 Lubomir Rintel <lkundrak(a)v3.sk> - 1:1.4.18-1
+- Update to newer upstream release
+- Remove rebuild changelog entries
-* Tue Jul 14 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-2.16
-- rebuild for new kernels
-
-* Sun Jun 21 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-2.15
-- rebuild for new kernels
-
-* Sun Jun 21 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-2.14
-- rebuild for new kernels
-
-* Thu May 28 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-2.13
-- rebuild for new kernels
-
-* Wed May 27 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-2.12
-- rebuild for new kernels
-
-* Thu May 21 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-2.11
-- rebuild for new kernels
-
-* Wed May 13 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-2.10
-- rebuild for new kernels
-
-* Tue May 05 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-2.9
-- rebuild for new kernels
-
-* Sat May 02 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-2.8
-- rebuild for new kernels
-
-* Sun Apr 26 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-2.7
-- rebuild for new kernels
-
-* Sun Apr 05 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-2.6
-- rebuild for new kernels
-
-* Sun Mar 29 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-2.5
-- rebuild for new F11 features
-
-* Sun Feb 15 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-1.5
-- rebuild for latest Fedora kernel;
-
-* Sun Feb 01 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-1.4
-- rebuild for latest Fedora kernel;
-
-* Sun Jan 25 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-1.3
-- rebuild for latest Fedora kernel;
-
-* Sun Jan 18 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-1.2
-- rebuild for latest Fedora kernel;
-
-* Sun Jan 11 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-1.1
-- rebuild for latest Fedora kernel;
+* Thu Jul 30 2009 Hans de Goede <hdegoede(a)redhat.com> - 1:0.4.17-3
+- Fix compilation with 2.6.31 kernel
* Mon Jan 05 2009 Lubomir Rintel <lkundrak(a)v3.sk> - 1:0.4.17-1
- Bump to latest upstream version
- Fix for 2.6.29
-* Sun Jan 04 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.15-42.svn147.3
-- rebuild for latest Fedora kernel;
-
-* Sun Dec 28 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.15-42.svn147.2
-- rebuild for latest Fedora kernel;
-
* Sat Dec 27 2008 Hans de Goede <hdegoede(a)redhat.com> - 1:0.4.15-42.svn147.1
- Fix compilation with 2.6.28 kernel
-* Sun Dec 21 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.15-41.svn147.11
-- rebuild for latest Fedora kernel;
-
-* Sun Dec 14 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.15-41.svn147.10
-- rebuild for latest Fedora kernel;
-
-* Sat Nov 22 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.15-41.svn147.9
-- rebuild for latest Fedora kernel;
-
-* Wed Nov 19 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.15-41.svn147.8
-- rebuild for latest Fedora kernel;
-
-* Tue Nov 18 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.15-41.svn147.7
-- rebuild for latest Fedora kernel;
-
-* Fri Nov 14 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.15-41.svn147.6
-- rebuild for latest Fedora kernel;
-
-* Sun Nov 09 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.15-41.svn147.5
-- rebuild for latest Fedora kernel;
-
-* Sun Nov 02 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.15-41.svn147.4
-- rebuild for latest rawhide kernel;
-
* Sun Oct 26 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.15-41.svn147.3
- rebuild for latest rawhide kernel; enable ppc and ppc64 again
-* Sun Oct 19 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.15-41.svn147.2
-- rebuild for latest rawhide kernel
-
-* Fri Oct 03 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info - 1:0.4.15-41.svn147.1
-- rebuild for rpm fusion
-
-* Wed Oct 01 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info - 1:0.4.15-40.svn147
-- rebuild for new kernels
-
* Sun Sep 21 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info - 1:0.4.15-39.svn147
- temporary disable ppc due to http://bugzilla.kernel.org/show_bug.cgi?id=11143
@@ -205,30 +93,6 @@
- rebuild for new kernels
- add patch iscsitarget-0.4.15-types.h.patch from hansg
-* Sat Aug 16 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info - 1:0.4.15-37.svn147
-- rebuild for new kernels
-
-* Thu Jul 24 2008 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 0.4.15-36
-- rebuild for new Fedora kernels
-
-* Tue Jul 15 2008 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 0.4.15-35
-- rebuild for new Fedora kernels
-
-* Wed Jul 02 2008 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 0.4.15-34
-- rebuild for new Fedora kernels
-
-* Fri Jun 13 2008 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 0.4.15-33
-- rebuild for new Fedora kernels
-
-* Fri Jun 06 2008 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 0.4.15-32
-- rebuild for new Fedora kernels
-
-* Thu May 15 2008 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 0.4.15-31
-- rebuild for new Fedora kernels
-
-* Sun May 04 2008 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 1:0.4.15-30.svn142
-- build for f9
-
* Sat Feb 16 2008 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 1:0.4.15-9.svn142
- fix typo
Index: sources
===================================================================
RCS file: /cvs/free/rpms/iscsitarget-kmod/F-11/sources,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- sources 5 Jan 2009 16:13:05 -0000 1.3
+++ sources 1 Nov 2009 13:51:08 -0000 1.4
@@ -1 +1 @@
-e79b437695fc50e7d054631855a16b1b iscsitarget-0.4.17.tar.gz
+9e756e89cc47aaa71824ed34a6560543 iscsitarget-1.4.18.tar.gz
--- iscsitarget-0.4.17-2.6.29.patch DELETED ---
15 years
rpms/iscsitarget/devel iscsitarget.spec,1.8,1.9
by Lubomir Rintel
Author: lkundrak
Update of /cvs/free/rpms/iscsitarget/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv11327
Modified Files:
iscsitarget.spec
Log Message:
Fix up build
Index: iscsitarget.spec
===================================================================
RCS file: /cvs/free/rpms/iscsitarget/devel/iscsitarget.spec,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- iscsitarget.spec 1 Nov 2009 13:32:47 -0000 1.8
+++ iscsitarget.spec 1 Nov 2009 13:46:31 -0000 1.9
@@ -41,6 +41,10 @@
install -d $RPM_BUILD_ROOT%{_sysconfdir}/rc.d
mv $RPM_BUILD_ROOT%{_sysconfdir}/init.d $RPM_BUILD_ROOT%{_sysconfdir}/rc.d
+# Use old config file location not to break existing installations
+mv $RPM_BUILD_ROOT%{_sysconfdir}/iet/* $RPM_BUILD_ROOT%{_sysconfdir}
+rmdir $RPM_BUILD_ROOT%{_sysconfdir}/iet
+
%clean
rm -rf $RPM_BUILD_ROOT
@@ -60,16 +64,16 @@
%files
%defattr(-,root,root,-)
-%doc COPYING README README.vmware ChangeLog
%{_sbindir}/ietd
%{_sbindir}/ietadm
%attr(600,root,root) %config(noreplace) %{_sysconfdir}/ietd.conf
%config(noreplace) %{_sysconfdir}/initiators.allow
-%config(noreplace) %{_sysconfdir}/initiators.deny
+%config(noreplace) %{_sysconfdir}/targets.allow
%{_initrddir}/iscsi-target
%{_mandir}/man5/ietd.conf.5*
%{_mandir}/man8/ietadm.8*
%{_mandir}/man8/ietd.8*
+%doc COPYING README README.vmware ChangeLog RELEASE_NOTES
%changelog
15 years
rpms/iscsitarget-kmod/devel .cvsignore, 1.3, 1.4 iscsitarget-kmod.spec, 1.35, 1.36 sources, 1.3, 1.4 iscsitarget-0.4.17-2.6.29.patch, 1.1, NONE iscsitarget-0.4.17-2.6.31.patch, 1.1, NONE
by Lubomir Rintel
Author: lkundrak
Update of /cvs/free/rpms/iscsitarget-kmod/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv10632
Modified Files:
.cvsignore iscsitarget-kmod.spec sources
Removed Files:
iscsitarget-0.4.17-2.6.29.patch
iscsitarget-0.4.17-2.6.31.patch
Log Message:
* Sun Nov 01 2009 Lubomir Rintel <lkundrak(a)v3.sk> - 1:1.4.18-1
- Update to newer upstream release
- Remove rebuild changelog entries
Index: iscsitarget-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/iscsitarget-kmod/devel/iscsitarget-kmod.spec,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- iscsitarget-kmod.spec 24 Oct 2009 11:58:23 -0000 1.35
+++ iscsitarget-kmod.spec 1 Nov 2009 13:38:45 -0000 1.36
@@ -6,8 +6,8 @@
%define buildforkernels newest
Name: iscsitarget-kmod
-Version: 0.4.17
-Release: 3%{?dist}.2
+Version: 1.4.18
+Release: 1%{?dist}
Epoch: 1
Summary: iscsitarget kernel modules
@@ -15,8 +15,6 @@
License: GPLv2
URL: http://sourceforge.net/projects/iscsitarget/
Source0: http://dl.sf.net/iscsitarget/iscsitarget-%{version}.tar.gz
-Patch0: iscsitarget-0.4.17-2.6.29.patch
-Patch1: iscsitarget-0.4.17-2.6.31.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
# needed for plague to make sure it builds for i586 and i686
@@ -41,8 +39,6 @@
# go
%setup -q -c -T -a 0
pushd iscsitarget-%{version}
-%patch0 -p0 -b .2.6.29
-%patch1 -p1 -b .2.6.31
popd
for kernel_version in %{?kernel_versions}; do
@@ -73,109 +69,23 @@
%changelog
-* Sat Oct 24 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-3.2
-- rebuild for new kernels
-
-* Wed Oct 21 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-3.1
-- rebuild for new kernels
+* Sun Nov 01 2009 Lubomir Rintel <lkundrak(a)v3.sk> - 1:1.4.18-1
+- Update to newer upstream release
+- Remove rebuild changelog entries
* Thu Jul 30 2009 Hans de Goede <hdegoede(a)redhat.com> - 1:0.4.17-3
- Fix compilation with 2.6.31 kernel
-* Fri Jun 05 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-2.14
-- rebuild for final F11 kernel
-
-* Thu May 28 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-2.13
-- rebuild for new kernels
-
-* Wed May 27 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-2.12
-- rebuild for new kernels
-
-* Thu May 21 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-2.11
-- rebuild for new kernels
-
-* Wed May 13 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-2.10
-- rebuild for new kernels
-
-* Tue May 05 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-2.9
-- rebuild for new kernels
-
-* Sat May 02 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-2.8
-- rebuild for new kernels
-
-* Sun Apr 26 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-2.7
-- rebuild for new kernels
-
-* Sun Apr 05 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-2.6
-- rebuild for new kernels
-
-* Sun Mar 29 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-2.5
-- rebuild for new F11 features
-
-* Sun Feb 15 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-1.5
-- rebuild for latest Fedora kernel;
-
-* Sun Feb 01 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-1.4
-- rebuild for latest Fedora kernel;
-
-* Sun Jan 25 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-1.3
-- rebuild for latest Fedora kernel;
-
-* Sun Jan 18 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-1.2
-- rebuild for latest Fedora kernel;
-
-* Sun Jan 11 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.17-1.1
-- rebuild for latest Fedora kernel;
-
* Mon Jan 05 2009 Lubomir Rintel <lkundrak(a)v3.sk> - 1:0.4.17-1
- Bump to latest upstream version
- Fix for 2.6.29
-* Sun Jan 04 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.15-42.svn147.3
-- rebuild for latest Fedora kernel;
-
-* Sun Dec 28 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.15-42.svn147.2
-- rebuild for latest Fedora kernel;
-
* Sat Dec 27 2008 Hans de Goede <hdegoede(a)redhat.com> - 1:0.4.15-42.svn147.1
- Fix compilation with 2.6.28 kernel
-* Sun Dec 21 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.15-41.svn147.11
-- rebuild for latest Fedora kernel;
-
-* Sun Dec 14 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.15-41.svn147.10
-- rebuild for latest Fedora kernel;
-
-* Sat Nov 22 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.15-41.svn147.9
-- rebuild for latest Fedora kernel;
-
-* Wed Nov 19 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.15-41.svn147.8
-- rebuild for latest Fedora kernel;
-
-* Tue Nov 18 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.15-41.svn147.7
-- rebuild for latest Fedora kernel;
-
-* Fri Nov 14 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.15-41.svn147.6
-- rebuild for latest Fedora kernel;
-
-* Sun Nov 09 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.15-41.svn147.5
-- rebuild for latest Fedora kernel;
-
-* Sun Nov 02 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.15-41.svn147.4
-- rebuild for latest rawhide kernel;
-
* Sun Oct 26 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.15-41.svn147.3
- rebuild for latest rawhide kernel; enable ppc and ppc64 again
-* Sun Oct 19 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1:0.4.15-41.svn147.2
-- rebuild for latest rawhide kernel
-
-* Fri Oct 03 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info - 1:0.4.15-41.svn147.1
-- rebuild for rpm fusion
-
-* Wed Oct 01 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info - 1:0.4.15-40.svn147
-- rebuild for new kernels
-
* Sun Sep 21 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info - 1:0.4.15-39.svn147
- temporary disable ppc due to http://bugzilla.kernel.org/show_bug.cgi?id=11143
@@ -183,30 +93,6 @@
- rebuild for new kernels
- add patch iscsitarget-0.4.15-types.h.patch from hansg
-* Sat Aug 16 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info - 1:0.4.15-37.svn147
-- rebuild for new kernels
-
-* Thu Jul 24 2008 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 0.4.15-36
-- rebuild for new Fedora kernels
-
-* Tue Jul 15 2008 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 0.4.15-35
-- rebuild for new Fedora kernels
-
-* Wed Jul 02 2008 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 0.4.15-34
-- rebuild for new Fedora kernels
-
-* Fri Jun 13 2008 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 0.4.15-33
-- rebuild for new Fedora kernels
-
-* Fri Jun 06 2008 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 0.4.15-32
-- rebuild for new Fedora kernels
-
-* Thu May 15 2008 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 0.4.15-31
-- rebuild for new Fedora kernels
-
-* Sun May 04 2008 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 1:0.4.15-30.svn142
-- build for f9
-
* Sat Feb 16 2008 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 1:0.4.15-9.svn142
- fix typo
Index: sources
===================================================================
RCS file: /cvs/free/rpms/iscsitarget-kmod/devel/sources,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- sources 5 Jan 2009 16:13:05 -0000 1.3
+++ sources 1 Nov 2009 13:38:45 -0000 1.4
@@ -1 +1 @@
-e79b437695fc50e7d054631855a16b1b iscsitarget-0.4.17.tar.gz
+9e756e89cc47aaa71824ed34a6560543 iscsitarget-1.4.18.tar.gz
--- iscsitarget-0.4.17-2.6.29.patch DELETED ---
--- iscsitarget-0.4.17-2.6.31.patch DELETED ---
15 years