rpms/VirtualBox-OSE/devel VirtualBox-OSE-3.0.0-strings.patch, NONE, 1.1 VirtualBox-OSE.spec, 1.8, 1.9 VirtualBox-OSE-2.2.2-strings.patch, 1.1, NONE
by Lubomir Rintel
Author: lkundrak
Update of /cvs/free/rpms/VirtualBox-OSE/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv8141
Modified Files:
VirtualBox-OSE.spec
Added Files:
VirtualBox-OSE-3.0.0-strings.patch
Removed Files:
VirtualBox-OSE-2.2.2-strings.patch
Log Message:
* Wed Jul 08 2009 Lubomir Rintel <lkundrak(a)v3.sk> - 3.0.0-2
- Tidy up the filelist check
- Libs need to be executable for the dep generator (#698)
VirtualBox-OSE-3.0.0-strings.patch:
--- NEW FILE VirtualBox-OSE-3.0.0-strings.patch ---
Replace some strings which ones that (sometimes) make more sense.
Lubomir Rintel <lkundrak(a)v3.sk>
diff -urb VirtualBox-3.0.0_OSE/src/VBox/Frontends/VirtualBox/src/main.cpp VirtualBox-3.0.0_OSEb/src/VBox/Frontends/VirtualBox/src/main.cpp
--- VirtualBox-3.0.0_OSE/src/VBox/Frontends/VirtualBox/src/main.cpp 2009-06-24 16:38:16.000000000 +0300
+++ VirtualBox-3.0.0_OSEb/src/VBox/Frontends/VirtualBox/src/main.cpp 2009-07-03 14:14:27.528519750 +0300
@@ -72,13 +72,13 @@
);
QString g_QStrHintLinuxNoDriver = QApplication::tr(
- "The VirtualBox Linux kernel driver (vboxdrv) is either not loaded or "
- "there is a permission problem with /dev/vboxdrv. Re-setup the kernel "
- "module by executing<br/><br/>"
- " <font color=blue>'/etc/init.d/vboxdrv setup'</font><br/><br/>"
- "as root. Users of Ubuntu, Fedora or Mandriva should install the DKMS "
- "package first. This package keeps track of Linux kernel changes and "
- "recompiles the vboxdrv kernel module if necessary."
+ "The VirtualBox Linux kernel driver (vboxdrv) is probably not "
+ "loaded.<br/><br/>"
+ "If you installed or VirtualBox OSE package recently you need to restart "
+ "the computer for the driver to load.<br/><br/>"
+ "Alternatively, you may attempt to load the driver by issuing the "
+ "following command with system administrator (root) privileges:<br/><br/>"
+ " <font color=blue>'/etc/sysconfig/modules/VirtualBox-OSE.modules'</font><br/><br/>"
);
QString g_QStrHintOtherWrongDriverVersion = QApplication::tr(
@@ -101,9 +101,9 @@
"Make sure the kernel module has been loaded successfully."
);
-/* I hope this isn't (C), (TM) or (R) Microsoft support ;-) */
+/* We're going to try to give a helping hand */
QString g_QStrHintReinstall = QApplication::tr(
- "It may help to reinstall VirtualBox."
+ "Please report the problem to the RPM Fusion Bugzilla."
);
#if defined(DEBUG) && defined(Q_WS_X11) && defined(RT_OS_LINUX)
diff -urb VirtualBox-3.0.0_OSE/src/VBox/Installer/linux/VBox.sh VirtualBox-3.0.0_OSEb/src/VBox/Installer/linux/VBox.sh
--- VirtualBox-3.0.0_OSE/src/VBox/Installer/linux/VBox.sh 2009-03-27 21:13:57.000000000 +0200
+++ VirtualBox-3.0.0_OSEb/src/VBox/Installer/linux/VBox.sh 2009-07-03 14:12:02.490521356 +0300
@@ -36,19 +36,20 @@
cat << EOF
WARNING: The vboxdrv kernel module is not loaded. Either there is no module
available for the current kernel (`uname -r`) or it failed to
- load. Please recompile the kernel module and install it by
+ load. Reboot the computer, or insert the kernel module by executing
- sudo /etc/init.d/vboxdrv setup
+ '/etc/sysconfig/modules/VirtualBox-OSE.modules' (as root)
You will not be able to start VMs until this problem is fixed.
EOF
elif [ ! -c /dev/vboxdrv ]; then
cat << EOF
-WARNING: The character device /dev/vboxdrv does not exist. Try
+WARNING: The character device /dev/vboxdrv does not exist. Try running
- sudo /etc/init.d/vboxdrv restart
+ '/sbin/udevtrigger' (as root)
- and if that is not successful, try to re-install the package.
+ and if that is not successful, then you're in situation that
+ can not possibly happen and there's nothing you can do about it.
You will not be able to start VMs until this problem is fixed.
EOF
diff -urb VirtualBox-3.0.0_OSE/src/VBox/Installer/linux/VirtualBox.desktop VirtualBox-3.0.0_OSEb/src/VBox/Installer/linux/VirtualBox.desktop
--- VirtualBox-3.0.0_OSE/src/VBox/Installer/linux/VirtualBox.desktop 2009-06-12 15:34:41.000000000 +0300
+++ VirtualBox-3.0.0_OSEb/src/VBox/Installer/linux/VirtualBox.desktop 2009-07-03 14:12:02.492525812 +0300
@@ -1,7 +1,7 @@
[Desktop Entry]
Encoding=UTF-8
Version=1.0
-Name=Sun VirtualBox
+Name=VirtualBox OSE
GenericName=Virtual Machine
Type=Application
Exec=VirtualBox
diff -urb VirtualBox-3.0.0_OSE/src/VBox/VMM/VM.cpp VirtualBox-3.0.0_OSEb/src/VBox/VMM/VM.cpp
--- VirtualBox-3.0.0_OSE/src/VBox/VMM/VM.cpp 2009-06-24 16:38:14.000000000 +0300
+++ VirtualBox-3.0.0_OSEb/src/VBox/VMM/VM.cpp 2009-07-03 14:12:02.501771542 +0300
@@ -314,8 +314,8 @@
#ifdef RT_OS_LINUX
pszError = N_("VirtualBox kernel driver not loaded. The vboxdrv kernel module "
"was either not loaded or /dev/vboxdrv is not set up properly. "
- "Re-setup the kernel module by executing "
- "'/etc/init.d/vboxdrv setup' as root");
+ "Reboot the computer, or insert the kernel module by executing "
+ "'/etc/sysconfig/modules/VirtualBox-OSE.modules' as root");
#else
pszError = N_("VirtualBox kernel driver not loaded");
#endif
@@ -356,8 +356,8 @@
#ifdef RT_OS_LINUX
pszError = N_("VirtualBox kernel driver not installed. The vboxdrv kernel module "
"was either not loaded or /dev/vboxdrv was not created for some "
- "reason. Re-setup the kernel module by executing "
- "'/etc/init.d/vboxdrv setup' as root");
+ "reason. Insert the kernel module by executing "
+ "'/etc/sysconfig/modules/VirtualBox-OSE.modules' as root");
#else
pszError = N_("VirtualBox kernel driver not installed");
#endif
Index: VirtualBox-OSE.spec
===================================================================
RCS file: /cvs/free/rpms/VirtualBox-OSE/devel/VirtualBox-OSE.spec,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- VirtualBox-OSE.spec 8 Jul 2009 13:35:40 -0000 1.8
+++ VirtualBox-OSE.spec 8 Jul 2009 18:27:29 -0000 1.9
@@ -9,8 +9,8 @@
%bcond_without hardening
Name: VirtualBox-OSE
-Version: 2.2.4
-Release: 4%{?dist}
+Version: 3.0.0
+Release: 2%{?dist}
Summary: A general-purpose full virtualizer for PC hardware
Group: Development/Tools
@@ -24,13 +24,16 @@
Source7: VirtualBox-OSE-guest.modules
Source8: VirtualBox-OSE-vboxresize.desktop
Patch1: VirtualBox-OSE-2.2.0-noupdate.patch
-Patch2: VirtualBox-OSE-2.2.2-strings.patch
+Patch2: VirtualBox-OSE-3.0.0-strings.patch
Patch10: VirtualBox-OSE-2.2.0-32bit.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: kBuild >= 0.1.5-1
-BuildRequires: SDL-devel xalan-c-devel hal-devel
+BuildRequires: SDL-devel xalan-c-devel
+BuildRequires: hal-devel
+BuildRequires: openssl-devel
+BuildRequires: libcurl-devel
BuildRequires: dev86 iasl libxslt-devel xerces-c-devel libXcursor-devel libIDL-devel
BuildRequires: yasm
BuildRequires: pulseaudio-libs-devel
@@ -173,13 +176,14 @@
obj/bin/VBoxNetAdpCtl \
obj/bin/VirtualBox
-
# Other binaries
install -p -m 0755 -t $RPM_BUILD_ROOT%{_libdir}/virtualbox \
obj/bin/VBoxManage \
obj/bin/VBoxSVC \
obj/bin/VBoxXPCOMIPCD \
- obj/bin/VBoxSysInfo.sh
+ obj/bin/VBoxSysInfo.sh \
+ obj/bin/vboxshell.py \
+ obj/bin/VBoxTestOGL
# Language files
install -p -m 0755 -t $RPM_BUILD_ROOT%{_libdir}/virtualbox/nls \
@@ -208,7 +212,7 @@
# Guest tools
install -m 0755 -t $RPM_BUILD_ROOT%{_bindir} \
obj/bin/additions/mountvboxsf \
- obj/bin/additions/vboxadd-timesync \
+ obj/bin/additions/VBoxService \
obj/bin/additions/VBoxClient \
obj/bin/additions/VBoxControl
@@ -323,9 +327,9 @@
%files guest
%defattr(-,root,root,-)
%{_bindir}/mountvboxsf
-%{_bindir}/vboxadd-timesync
%{_bindir}/VBoxClient
%{_bindir}/VBoxControl
+%{_bindir}/VBoxService
%{_libdir}/xorg/modules/drivers/*
%{_sysconfdir}/X11/xinit/xinitrc.d/98vboxadd-xclient.sh
%{_sysconfdir}/xdg/autostart/vboxclient.desktop
@@ -343,9 +347,13 @@
%changelog
-* Wed Jul 08 2009 Lubomir Rintel <lkundrak(a)v3.sk> - 2.2.4-4
+* Wed Jul 08 2009 Lubomir Rintel <lkundrak(a)v3.sk> - 3.0.0-2
+- Tidy up the filelist check
- Libs need to be executable for the dep generator (#698)
+* Fri Jul 03 2009 Jonathan Dieter <jdieter(a)gmail.com> - 3.0.0-1
+- New upstream release
+
* Thu Jul 02 2009 Lubomir Rintel <lkundrak(a)v3.sk> - 2.2.4-3
- Enable resize for the login window
- Add the guest udev rules
--- VirtualBox-OSE-2.2.2-strings.patch DELETED ---
15 years, 4 months
rpms/unrar/devel .cvsignore, 1.2, 1.3 sources, 1.2, 1.3 unrar.spec, 1.4, 1.5 unrar-3.7.8-fixes.patch, 1.1, NONE
by Conrad Meyer
Author: konradm
Update of /cvs/nonfree/rpms/unrar/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv7604
Modified Files:
.cvsignore sources unrar.spec
Removed Files:
unrar-3.7.8-fixes.patch
Log Message:
* Wed Jul 8 2009 Conrad Meyer <konrad(a)tylerc.org> - 3.8.5-1
- Bump to 3.8.5.
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/unrar/devel/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- .cvsignore 25 Jul 2008 06:01:30 -0000 1.2
+++ .cvsignore 8 Jul 2009 18:22:28 -0000 1.3
@@ -1,2 +0,0 @@
-unrar-nonfree_3.7.3-1.diff.gz
-unrarsrc-3.7.8.tar.gz
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/unrar/devel/sources,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sources 25 Jul 2008 06:01:30 -0000 1.2
+++ sources 8 Jul 2009 18:22:28 -0000 1.3
@@ -1,2 +0,0 @@
-c0a8487d0a5ab860a753027da8ba0ddc unrar-nonfree_3.7.3-1.diff.gz
-b783f1932bc0c73902c6399f7c2c6f43 unrarsrc-3.7.8.tar.gz
Index: unrar.spec
===================================================================
RCS file: /cvs/nonfree/rpms/unrar/devel/unrar.spec,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- unrar.spec 29 Mar 2009 15:22:28 -0000 1.4
+++ unrar.spec 8 Jul 2009 18:22:28 -0000 1.5
@@ -1,16 +1,13 @@
-# Might be needed to apply fuzzy patches with recent rpm
-#%%define _default_patch_fuzz 2
-
Name: unrar
-Version: 3.7.8
-Release: 4%{?dist}
+Version: 3.8.5
+Release: 1%{?dist}
Summary: Utility for extracting, testing and viewing RAR archives
License: Freeware with further limitations
Group: Applications/Archiving
URL: http://www.rarlab.com/rar_archiver.htm
Source0: http://www.rarlab.com/rar/unrarsrc-%{version}.tar.gz
-Patch0: http://ftp.debian.org/debian/pool/non-free/u/unrar-nonfree/unrar-nonfree_...
-Patch1: unrar-3.7.8-fixes.patch
+Patch0: http://ftp.debian.org/debian/pool/non-free/u/unrar-nonfree/unrar-nonfree_...
+Patch1: unrar-3.8.5-fixes.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
@@ -42,7 +39,7 @@
%prep
%setup -q -n %{name}
-%patch0 -p1
+%patch0 -p1 -b .deb
%patch1 -p1 -b .fix
@@ -55,18 +52,31 @@
%install
rm -rf %{buildroot}
-install -Dpm 755 unrar %{buildroot}%{_bindir}/unrar
-install -Dpm 644 debian/unrar.1 %{buildroot}%{_mandir}/man1/unrar.1
-install -Dpm 755 libunrar.so.3.7 %{buildroot}%{_libdir}/libunrar.so.3.7
+install -Dpm 755 unrar %{buildroot}%{_bindir}/unrar-nonfree
+install -Dpm 644 debian/unrar-nonfree.1 %{buildroot}%{_mandir}/man1/unrar-nonfree.1
+install -Dpm 755 libunrar.so.3.8 %{buildroot}%{_libdir}/libunrar.so.3.8
install -Dpm 644 dll.hpp %{buildroot}/%{_includedir}/unrar/dll.hpp
-ln -s libunrar.so.3.7 %{buildroot}%{_libdir}/libunrar.so.3
-ln -s libunrar.so.3 %{buildroot}%{_libdir}/libunrar.so
+ln -s libunrar.so.3.8 %{buildroot}%{_libdir}/libunrar.so
+
+# handle alternatives
+touch %{buildroot}%{_bindir}/unrar
+
%clean
rm -rf %{buildroot}
+%post
+%{_sbindir}/alternatives \
+ --install %{_bindir}/unrar unrar %{_bindir}/unrar-nonfree 50 || :
+
+%preun
+if [ "$1" -eq 0 ]; then
+ %{_sbindir}/alternatives \
+ --remove un%{name} %{_bindir}/un%{name}-nonfree || :
+fi
+
%post -n libunrar -p /sbin/ldconfig
@@ -76,8 +86,9 @@
%files
%defattr(-,root,root,-)
%doc license.txt readme.txt
-%{_bindir}/unrar
-%{_mandir}/man1/unrar.1*
+%ghost %{_bindir}/unrar
+%{_bindir}/unrar-nonfree
+%{_mandir}/man1/unrar-nonfree.1*
%files -n libunrar
%defattr(-,root,root,-)
@@ -92,6 +103,9 @@
%changelog
+* Wed Jul 8 2009 Conrad Meyer <konrad(a)tylerc.org> - 3.8.5-1
+- Bump to 3.8.5.
+
* Sun Mar 29 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 3.7.8-4
- rebuild for new F11 features
--- unrar-3.7.8-fixes.patch DELETED ---
15 years, 4 months
rpms/VirtualBox-OSE/devel VirtualBox-OSE.spec,1.7,1.8
by Lubomir Rintel
Author: lkundrak
Update of /cvs/free/rpms/VirtualBox-OSE/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv24076
Modified Files:
VirtualBox-OSE.spec
Log Message:
* Wed Jul 08 2009 Lubomir Rintel <lkundrak(a)v3.sk> - 2.2.4-4
- Libs need to be executable for the dep generator (#698)
Index: VirtualBox-OSE.spec
===================================================================
RCS file: /cvs/free/rpms/VirtualBox-OSE/devel/VirtualBox-OSE.spec,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- VirtualBox-OSE.spec 8 Jul 2009 12:49:13 -0000 1.7
+++ VirtualBox-OSE.spec 8 Jul 2009 13:35:40 -0000 1.8
@@ -10,7 +10,7 @@
Name: VirtualBox-OSE
Version: 2.2.4
-Release: 3%{?dist}
+Release: 4%{?dist}
Summary: A general-purpose full virtualizer for PC hardware
Group: Development/Tools
@@ -158,8 +158,10 @@
obj/bin/components/*
# Lib
+install -p -m 0755 -t $RPM_BUILD_ROOT%{_libdir}/virtualbox \
+ obj/bin/*.so
+
install -p -m 0644 -t $RPM_BUILD_ROOT%{_libdir}/virtualbox \
- obj/bin/*.so \
obj/bin/V*.gc \
obj/bin/V*.r0
@@ -341,6 +343,9 @@
%changelog
+* Wed Jul 08 2009 Lubomir Rintel <lkundrak(a)v3.sk> - 2.2.4-4
+- Libs need to be executable for the dep generator (#698)
+
* Thu Jul 02 2009 Lubomir Rintel <lkundrak(a)v3.sk> - 2.2.4-3
- Enable resize for the login window
- Add the guest udev rules
15 years, 4 months
rpms/VirtualBox-OSE-kmod/devel VirtualBox-OSE-kmod.spec,1.14,1.15
by Lubomir Rintel
Author: lkundrak
Update of /cvs/free/rpms/VirtualBox-OSE-kmod/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv21515
Modified Files:
VirtualBox-OSE-kmod.spec
Log Message:
* Thu Jul 02 2009 Lubomir Rintel <lkundrak(a)v3.sk> - 2.2.4-2
- Enable the DRM module
Index: VirtualBox-OSE-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/VirtualBox-OSE-kmod/devel/VirtualBox-OSE-kmod.spec,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- VirtualBox-OSE-kmod.spec 5 Jun 2009 13:25:25 -0000 1.14
+++ VirtualBox-OSE-kmod.spec 8 Jul 2009 12:49:21 -0000 1.15
@@ -7,7 +7,7 @@
Name: VirtualBox-OSE-kmod
Version: 2.2.4
-Release: 1%{?dist}.1
+Release: 2%{?dist}
Summary: Kernel module for VirtualBox-OSE
Group: System Environment/Kernel
@@ -55,7 +55,7 @@
%build
for kernel_version in %{?kernel_versions}; do
- for module in vbox{drv,netflt,add,vfs}; do
+ for module in vbox{drv,netflt,add,vfs,video_drm}; do
make VBOX_USE_INSERT_PAGE=1 %{?_smp_mflags} -C "${kernel_version##*___}" SUBDIRS="${PWD}/_kmod_build_${kernel_version%%___*}/${module}" modules
done
done
@@ -78,6 +78,9 @@
%changelog
+* Thu Jul 02 2009 Lubomir Rintel <lkundrak(a)v3.sk> - 2.2.4-2
+- Enable the DRM module
+
* Fri Jun 05 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 2.2.4-1.1
- rebuild for final F11 kernel
15 years, 4 months
rpms/VirtualBox-OSE/devel VirtualBox-OSE-60-vboxadd.rules, NONE, 1.1 VirtualBox-OSE-vboxresize.desktop, NONE, 1.1 VirtualBox-OSE.spec, 1.6, 1.7
by Lubomir Rintel
Author: lkundrak
Update of /cvs/free/rpms/VirtualBox-OSE/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv21482
Modified Files:
VirtualBox-OSE.spec
Added Files:
VirtualBox-OSE-60-vboxadd.rules
VirtualBox-OSE-vboxresize.desktop
Log Message:
* Thu Jul 02 2009 Lubomir Rintel <lkundrak(a)v3.sk> - 2.2.4-3
- Enable resize for the login window
- Add the guest udev rules
- Actually install documentation
--- NEW FILE VirtualBox-OSE-60-vboxadd.rules ---
ACTION=="add", KERNEL=="vboxadd", SUBSYSTEM=="misc", OWNER="root", MODE="0600"
ACTION=="add", KERNEL=="vboxuser", SUBSYSTEM=="misc", OWNER="root", MODE="0666"
--- NEW FILE VirtualBox-OSE-vboxresize.desktop ---
[Desktop Entry]
Type=Application
Version=1.0
Name=vbox-autoresize
Exec=/usr/bin/VBoxClient --autoresize
X-GNOME-Autostart-enabled=true
Index: VirtualBox-OSE.spec
===================================================================
RCS file: /cvs/free/rpms/VirtualBox-OSE/devel/VirtualBox-OSE.spec,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- VirtualBox-OSE.spec 29 Jun 2009 03:09:41 -0000 1.6
+++ VirtualBox-OSE.spec 8 Jul 2009 12:49:13 -0000 1.7
@@ -10,7 +10,7 @@
Name: VirtualBox-OSE
Version: 2.2.4
-Release: 2%{?dist}
+Release: 3%{?dist}
Summary: A general-purpose full virtualizer for PC hardware
Group: Development/Tools
@@ -19,8 +19,10 @@
Source0: http://dlc.sun.com/virtualbox/%{version}/VirtualBox-%{version}-OSE.tar.bz2
Source1: http://download.virtualbox.org/virtualbox/%{version}/UserManual.pdf
Source4: VirtualBox-OSE-90-vboxdrv.rules
-Source5: VirtualBox-OSE.modules
-Source6: VirtualBox-OSE-guest.modules
+Source5: VirtualBox-OSE-60-vboxadd.rules
+Source6: VirtualBox-OSE.modules
+Source7: VirtualBox-OSE-guest.modules
+Source8: VirtualBox-OSE-vboxresize.desktop
Patch1: VirtualBox-OSE-2.2.0-noupdate.patch
Patch2: VirtualBox-OSE-2.2.2-strings.patch
Patch10: VirtualBox-OSE-2.2.0-32bit.patch
@@ -213,7 +215,12 @@
install -m 0755 -D src/VBox/Additions/x11/Installer/vboxclient.desktop \
$RPM_BUILD_ROOT%{_sysconfdir}/xdg/autostart/vboxclient.desktop
+
+install -m 0755 -D %{SOURCE8} \
+ $RPM_BUILD_ROOT%{_datadir}/gdm/autostart/LoginWindow/vbox-autoresize.desktop
+
desktop-file-validate $RPM_BUILD_ROOT%{_sysconfdir}/xdg/autostart/vboxclient.desktop
+desktop-file-validate $RPM_BUILD_ROOT%{_datadir}/gdm/autostart/LoginWindow/vbox-autoresize.desktop
# Guest libraries
install -m 0755 -t $RPM_BUILD_ROOT%{_libdir} \
@@ -223,12 +230,13 @@
install -d $RPM_BUILD_ROOT/%{_sysconfdir}/vbox
echo 'INSTALL_DIR="%{_libdir}/virtualbox"' > $RPM_BUILD_ROOT/%{_sysconfdir}/vbox/vbox.cfg
-# Install udev rule
+# Install udev rules
install -p -m 0644 -D %{SOURCE4} $RPM_BUILD_ROOT%{_sysconfdir}/udev/rules.d/90-vboxdrv.rules
+install -p -m 0644 -D %{SOURCE5} $RPM_BUILD_ROOT%{_sysconfdir}/udev/rules.d/60-vboxadd.rules
# Install modules load script
-install -p -m 0755 -D %{SOURCE5} $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/modules/%{name}.modules
-install -p -m 0755 -D %{SOURCE6} $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/modules/%{name}-guest.modules
+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
# Module Source Code
mkdir -p %{name}-kmod-%{version}
@@ -301,7 +309,7 @@
%config %{_sysconfdir}/vbox/vbox.cfg
%config %{_sysconfdir}/udev/rules.d/90-vboxdrv.rules
%config %{_sysconfdir}/sysconfig/modules/%{name}.modules
-%doc COPYING
+%doc COPYING UserManual.pdf
%files devel
@@ -319,8 +327,10 @@
%{_libdir}/xorg/modules/drivers/*
%{_sysconfdir}/X11/xinit/xinitrc.d/98vboxadd-xclient.sh
%{_sysconfdir}/xdg/autostart/vboxclient.desktop
+%{_datadir}/gdm/autostart/LoginWindow
%{_libdir}/VBoxOGL*.so
%{_datadir}/hal/fdi/information/20thirdparty/90-vboxguest.fdi
+%config %{_sysconfdir}/udev/rules.d/60-vboxadd.rules
%config %{_sysconfdir}/sysconfig/modules/%{name}-guest.modules
%doc COPYING
@@ -331,6 +341,11 @@
%changelog
+* Thu Jul 02 2009 Lubomir Rintel <lkundrak(a)v3.sk> - 2.2.4-3
+- Enable resize for the login window
+- Add the guest udev rules
+- Actually install documentation
+
* Mon Jun 29 2009 Lubomir Rintel <lkundrak(a)v3.sk> - 2.2.4-2
- They left for beer too early, dicks, so we fix up wbox now
- Make guest additions just work
15 years, 4 months
rpms/gstreamer-plugins-bad/devel gstreamer-plugins-bad.spec, 1.20, 1.21
by Thorsten Leemhuis
Author: thl
Update of /cvs/free/rpms/gstreamer-plugins-bad/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv25261
Modified Files:
gstreamer-plugins-bad.spec
Log Message:
* Tue Jul 07 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 0.10.13-4
- rebuild for new directfb
Index: gstreamer-plugins-bad.spec
===================================================================
RCS file: /cvs/free/rpms/gstreamer-plugins-bad/devel/gstreamer-plugins-bad.spec,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- gstreamer-plugins-bad.spec 27 Jun 2009 15:32:06 -0000 1.20
+++ gstreamer-plugins-bad.spec 7 Jul 2009 16:59:24 -0000 1.21
@@ -7,7 +7,7 @@
Summary: GStreamer streaming media framework "bad" plug-ins
Name: gstreamer-plugins-bad
Version: 0.10.13
-Release: 3%{?dist}
+Release: 4%{?dist}
# The freeze and nfs plugins are LGPLv2 (only)
License: LGPLv2+ and LGPLv2
Group: Applications/Multimedia
@@ -266,6 +266,9 @@
%changelog
+* Tue Jul 07 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 0.10.13-4
+- rebuild for new directfb
+
* Sat Jun 27 2009 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.10.13-3
- Disable rtpmanager as it also has been added to gstreamer-plugins-good (#689)
15 years, 4 months
rpms/vlc/F-11 vlc.spec,1.41,1.42
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/vlc/F-11
In directory se02.es.rpmfusion.net:/tmp/cvs-serv32610
Modified Files:
vlc.spec
Log Message:
Epoch only with qt, not qt4
Index: vlc.spec
===================================================================
RCS file: /cvs/free/rpms/vlc/F-11/vlc.spec,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- vlc.spec 7 Jul 2009 11:02:28 -0000 1.41
+++ vlc.spec 7 Jul 2009 11:22:40 -0000 1.42
@@ -112,7 +112,7 @@
BuildRequires: prelink
BuildRequires: pulseaudio-libs-devel >= 0.9.8
BuildRequires: portaudio-devel
-BuildRequires: qt4-devel >= 1:4.5.2
+BuildRequires: qt4-devel >= 4.5.2
BuildRequires: schroedinger-devel
BuildRequires: SDL_image-devel
BuildRequires: speex-devel >= 1.1.5
15 years, 4 months
rpms/vlc/devel vlc.spec,1.44,1.45
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/vlc/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv32508
Modified Files:
vlc.spec
Log Message:
Epoch is only for qt, not qt4
Index: vlc.spec
===================================================================
RCS file: /cvs/free/rpms/vlc/devel/vlc.spec,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- vlc.spec 7 Jul 2009 11:00:51 -0000 1.44
+++ vlc.spec 7 Jul 2009 11:21:56 -0000 1.45
@@ -112,7 +112,7 @@
BuildRequires: prelink
BuildRequires: pulseaudio-libs-devel >= 0.9.8
BuildRequires: portaudio-devel
-BuildRequires: qt4-devel >= 1:4.5.2
+BuildRequires: qt4-devel >= 4.5.2
BuildRequires: schroedinger-devel
BuildRequires: SDL_image-devel
BuildRequires: speex-devel >= 1.1.5
15 years, 4 months
rpms/vlc/F-11 sources,1.16,1.17
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/vlc/F-11
In directory se02.es.rpmfusion.net:/tmp/cvs-serv31671
Modified Files:
sources
Log Message:
Fix shine
Index: sources
===================================================================
RCS file: /cvs/free/rpms/vlc/F-11/sources,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- sources 7 Jul 2009 11:02:28 -0000 1.16
+++ sources 7 Jul 2009 11:08:50 -0000 1.17
@@ -1 +1,3 @@
fc78904ab5fa73f518d8fe4e852e7f67 vlc-1.0.0.tar.bz2
+a897e4f24fb3fb993db7daf5a5f4d551 enc_base.h
+c64e9e104b1eeba838a6c87435c6533c shine.c
15 years, 4 months
rpms/vlc/devel sources,1.18,1.19 .cvsignore,1.18,1.19
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/vlc/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv31567
Modified Files:
sources .cvsignore
Log Message:
Fix shine
Index: sources
===================================================================
RCS file: /cvs/free/rpms/vlc/devel/sources,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- sources 7 Jul 2009 11:00:51 -0000 1.18
+++ sources 7 Jul 2009 11:08:19 -0000 1.19
@@ -1 +1,3 @@
fc78904ab5fa73f518d8fe4e852e7f67 vlc-1.0.0.tar.bz2
+a897e4f24fb3fb993db7daf5a5f4d551 enc_base.h
+c64e9e104b1eeba838a6c87435c6533c shine.c
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/vlc/devel/.cvsignore,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- .cvsignore 7 Jul 2009 11:00:51 -0000 1.18
+++ .cvsignore 7 Jul 2009 11:08:19 -0000 1.19
@@ -1 +1,3 @@
vlc-1.0.0.tar.bz2
+enc_base.h
+shine.c
15 years, 4 months