rpms/madwifi/devel dead.package, NONE, 1.1 ath5k_blacklist-modprobe.d, 1.1, NONE madwifi-modprobe.d, 1.1, NONE madwifi.spec, 1.3, NONE sources, 1.2, NONE
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/madwifi/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv20329
Added Files:
dead.package
Removed Files:
ath5k_blacklist-modprobe.d madwifi-modprobe.d madwifi.spec
sources
Log Message:
dead.package
--- NEW FILE dead.package ---
ath5k/ath9k are now the reference implementation since kernel 2.6.29
--- ath5k_blacklist-modprobe.d DELETED ---
--- madwifi-modprobe.d DELETED ---
--- madwifi.spec DELETED ---
--- sources DELETED ---
15 years, 7 months
rpms/open-vm-tools/devel open-vm-tools.spec,1.7,1.8
by Denis Leroy
Author: denis
Update of /cvs/free/rpms/open-vm-tools/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv7616
Modified Files:
open-vm-tools.spec
Log Message:
Fixing ExclusiveArch
Index: open-vm-tools.spec
===================================================================
RCS file: /cvs/free/rpms/open-vm-tools/devel/open-vm-tools.spec,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- open-vm-tools.spec 28 Mar 2009 13:50:28 -0000 1.7
+++ open-vm-tools.spec 3 Apr 2009 21:57:33 -0000 1.8
@@ -3,7 +3,7 @@
Name: open-vm-tools
Version: 0.0.0.%{buildver}
-Release: 2%{?dist}
+Release: 3%{?dist}
Summary: VMware Guest OS Tools
Group: Applications/System
License: LGPLv2
@@ -15,7 +15,7 @@
Source4: %{name}-modprobe.vmnics
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
-ExclusiveArch: i386 i586 i686 x86_64
+ExclusiveArch: i586 x86_64
BuildRequires: gtk2-devel
BuildRequires: gtkmm24-devel
@@ -162,6 +162,9 @@
%changelog
+* Fri Apr 3 2009 Denis Leroy <denis(a)poolshark.org> - 0.0.0.154848-3
+- Fixing ExclusiveArch
+
* Sat Mar 28 2009 Denis Leroy <denis(a)poolshark.org> - 0.0.0.154848-2
- Updated arches for F-11
15 years, 7 months
rpms/libtunepimp-extras-freeworld/devel libtunepimp-0.5.3-glibc210_strrchr.patch, NONE, 1.1 libtunepimp-extras-freeworld.spec, 1.6, 1.7
by Rex Dieter
Author: rdieter
Update of /cvs/free/rpms/libtunepimp-extras-freeworld/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv1045
Modified Files:
libtunepimp-extras-freeworld.spec
Added Files:
libtunepimp-0.5.3-glibc210_strrchr.patch
Log Message:
* Fri Apr 03 2009 Rex Dieter <rdieter(a)fedoraproject.org> - 0.5.3-7
- fix build (port fedora/rawhide build fixes)
libtunepimp-0.5.3-glibc210_strrchr.patch:
--- NEW FILE libtunepimp-0.5.3-glibc210_strrchr.patch ---
diff -up libtunepimp-0.5.3/lib/fileio.cpp.gcc44 libtunepimp-0.5.3/lib/fileio.cpp
--- libtunepimp-0.5.3/lib/fileio.cpp.gcc44 2006-11-18 04:52:33.000000000 -0600
+++ libtunepimp-0.5.3/lib/fileio.cpp 2009-03-06 13:33:44.000000000 -0600
@@ -122,7 +124,8 @@ int taccess(const char *pathname, int mo
void tmktempname(const char *path, char *newPath, int newPathLen)
{
- char *ptr, *temp;
+ const char *ptr;
+ char *temp;
temp = (char *)malloc(strlen(path) + 32);
ptr = strrchr(path, dirSepChar);
Index: libtunepimp-extras-freeworld.spec
===================================================================
RCS file: /cvs/free/rpms/libtunepimp-extras-freeworld/devel/libtunepimp-extras-freeworld.spec,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- libtunepimp-extras-freeworld.spec 29 Mar 2009 13:28:39 -0000 1.6
+++ libtunepimp-extras-freeworld.spec 3 Apr 2009 20:00:58 -0000 1.7
@@ -2,7 +2,7 @@
Summary: Additional plugins for libtunepimp
Name: libtunepimp-extras-freeworld
Version: 0.5.3
-Release: 6%{?dist}
+Release: 7%{?dist}
License: LGPLv2+
Group: System Environment/Libraries
@@ -16,11 +16,19 @@
Obsoletes: libtunepimp-extras-nonfree < 0.5.3-5
Patch1: libtunepimp-0.5.3-gcc43.patch
-Patch2: libtunepimp-0.5.3-libmad.patch
+Patch2: libtunepimp-0.5.3-glibc210_strrchr.patch
+
+Patch10: libtunepimp-0.5.3-libmad.patch
%define pkglibdir %{_libdir}/tunepimp
-BuildRequires: automake libtool
+%if 0%{?fedora} > 10
+# libtool2 (libltdl) building busted
+%else
+%define use_autofoo 1
+BuildRequires: automake libtool libtool-ltdl-devel
+%endif
+
BuildRequires: libmusicbrainz-devel >= 2.1.0
BuildRequires: readline-devel ncurses-devel
BuildRequires: zlib-devel
@@ -51,11 +59,19 @@
%setup -q -n libtunepimp-%{version}
%patch1 -p1 -b .gcc43
-%patch2 -p1 -b .libmad
+%patch2 -p1 -b .glibc210_strrchr
-libtoolize --force
-aclocal
-automake
+%patch10 -p1 -b .libmad
+
+# nuke rpath -- Rex
+%if 0%{?use_autofoo}
+autoreconf -i -f
+%else
+# ugly non-autofoo-but-works-with-libtool2 solution
+%if "%{_libdir}" != "/usr/lib"
+sed -i -e 's|"/lib /usr/lib|"/%{_lib} %{_libdir}|' configure
+%endif
+%endif
%build
@@ -99,6 +115,9 @@
%changelog
+* Fri Apr 03 2009 Rex Dieter <rdieter(a)fedoraproject.org> - 0.5.3-7
+- fix build (port fedora/rawhide build fixes)
+
* Sun Mar 29 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 0.5.3-6
- rebuild for new F11 features
15 years, 7 months
rpms/xorg-x11-drv-nvidia-96xx/devel xorg-x11-drv-nvidia-96xx.spec, 1.7, 1.8
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/xorg-x11-drv-nvidia-96xx/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv584
Modified Files:
xorg-x11-drv-nvidia-96xx.spec
Log Message:
Fix for x86 Arch for Fedora >= 11
Index: xorg-x11-drv-nvidia-96xx.spec
===================================================================
RCS file: /cvs/nonfree/rpms/xorg-x11-drv-nvidia-96xx/devel/xorg-x11-drv-nvidia-96xx.spec,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- xorg-x11-drv-nvidia-96xx.spec 29 Mar 2009 15:25:24 -0000 1.7
+++ xorg-x11-drv-nvidia-96xx.spec 3 Apr 2009 19:57:08 -0000 1.8
@@ -8,7 +8,7 @@
Name: xorg-x11-drv-nvidia-96xx
Version: 96.43.11
-Release: 2%{?dist}
+Release: 3%{?dist}
Summary: NVIDIA's 96xx series proprietary display driver for NVIDIA graphic cards
Group: User Interface/X Hardware Support
@@ -26,7 +26,11 @@
%define __find_requires %{SOURCE91}
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
-ExclusiveArch: i386 x86_64
+%if 0%{?fedora} >= 11
+ExclusiveArch: i586 x86_64
+%else
+ExclusiveArch: i386 x86_64
+%endif
Requires: nvidia-96xx-kmod >= %{version}
Requires(post): nvidia-96xx-kmod >= %{version}
@@ -257,18 +261,18 @@
%changelog
+* Fri Apr 3 2009 kwizart < kwizart at gmail.com > - 96.43.11-3
+- Fix x86 Arch for fedora >= 11
+
* Sun Mar 29 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 96.43.11-2
- rebuild for new F11 features
* Wed Feb 25 2009 kwizart < kwizart at gmail.com > - 96.43.11-1
- Update to 96.43.11 (stable)
-* Sun Feb 22 2009 Stewart Adam <s.adam at diffingo.com> - 96.43.10-2
+* Sun Feb 22 2009 Stewart Adam <s.adam at diffingo.com> - 96.43.09-4
- Make devel subpackage depend on lib subpackage of the same arch
-* Thu Jan 29 2009 kwizart < kwizart at gmail.com > - 96.43.10-1
-- Update to 96.43.10 (beta)
-
* Mon Nov 10 2008 kwizart < kwizart at gmail.com > - 96.43.09-3
- Clean the spec.
15 years, 7 months
rpms/xorg-x11-drv-nvidia-173xx/devel xorg-x11-drv-nvidia-173xx.spec, 1.6, 1.7
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/xorg-x11-drv-nvidia-173xx/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv478
Modified Files:
xorg-x11-drv-nvidia-173xx.spec
Log Message:
Fix for x86 arch on Fedora >= 11
Index: xorg-x11-drv-nvidia-173xx.spec
===================================================================
RCS file: /cvs/nonfree/rpms/xorg-x11-drv-nvidia-173xx/devel/xorg-x11-drv-nvidia-173xx.spec,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- xorg-x11-drv-nvidia-173xx.spec 29 Mar 2009 15:24:39 -0000 1.6
+++ xorg-x11-drv-nvidia-173xx.spec 3 Apr 2009 19:55:37 -0000 1.7
@@ -8,7 +8,7 @@
Name: xorg-x11-drv-nvidia-173xx
Version: 173.14.18
-Release: 2%{?dist}
+Release: 3%{?dist}
Summary: NVIDIA's 173xx serie proprietary display driver for NVIDIA graphic cards
Group: User Interface/X Hardware Support
@@ -26,7 +26,11 @@
%define __find_requires %{SOURCE91}
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+%if 0%{?fedora} >= 11
+ExclusiveArch: i586 x86_64
+%else
ExclusiveArch: i386 x86_64
+%endif
Requires: nvidia-173xx-kmod >= %{version}
Requires(post): nvidia-173xx-kmod >= %{version}
@@ -271,6 +275,9 @@
%changelog
+* Fri Apr 3 2009 kwizart < kwizart at gmail.com > - 173.14.18-3
+- Fix x86 Arch for fedora >= 11
+
* Sun Mar 29 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 173.14.18-2
- rebuild for new F11 features
15 years, 7 months
rpms/xorg-x11-drv-nvidia/devel xorg-x11-drv-nvidia.spec,1.20,1.21
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/xorg-x11-drv-nvidia/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv32538
Modified Files:
xorg-x11-drv-nvidia.spec
Log Message:
Fix x86 for F-11
Index: xorg-x11-drv-nvidia.spec
===================================================================
RCS file: /cvs/nonfree/rpms/xorg-x11-drv-nvidia/devel/xorg-x11-drv-nvidia.spec,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- xorg-x11-drv-nvidia.spec 29 Mar 2009 15:26:09 -0000 1.20
+++ xorg-x11-drv-nvidia.spec 3 Apr 2009 19:51:21 -0000 1.21
@@ -8,7 +8,7 @@
Name: xorg-x11-drv-nvidia
Version: 180.37
-Release: 2%{?dist}
+Release: 3%{?dist}
Summary: NVIDIA's proprietary display driver for NVIDIA graphic cards
Group: User Interface/X Hardware Support
@@ -26,7 +26,11 @@
%define __find_requires %{SOURCE91}
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
-ExclusiveArch: i386 x86_64
+%if 0%{?fedora} >= 11
+ExclusiveArch: i586 x86_64
+%else
+ExclusiveArch: i386 x86_64
+%endif
Requires: nvidia-kmod >= %{version}
Requires(post): nvidia-kmod >= %{version}
@@ -306,6 +310,9 @@
%changelog
+* Fri Apr 3 2009 kwizart < kwizart at gmail.com > - 180.37-3
+- Fix x86 Arch for fedora >= 11
+
* Sun Mar 29 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 180.37-2
- rebuild for new F11 features
15 years, 7 months
rpms/vlc/F-10 vlc.spec,1.20,1.21
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/vlc/F-10
In directory se02.es.rpmfusion.net:/tmp/cvs-serv32241
Modified Files:
vlc.spec
Log Message:
Trivial fix
Index: vlc.spec
===================================================================
RCS file: /cvs/free/rpms/vlc/F-10/vlc.spec,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- vlc.spec 3 Apr 2009 19:35:14 -0000 1.20
+++ vlc.spec 3 Apr 2009 19:46:23 -0000 1.21
@@ -367,7 +367,6 @@
%if %with_mozilla
--enable-mozilla \
%endif
- --with-xml2-config-path=`pwd`
# remove rpath from libtool
15 years, 7 months
rpms/vlc/F-9 vlc-0.9.9-fix_playlist.patch, NONE, 1.1 vlc.spec, 1.14, 1.15 sources, 1.8, 1.9
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/vlc/F-9
In directory se02.es.rpmfusion.net:/tmp/cvs-serv32184
Modified Files:
vlc.spec sources
Added Files:
vlc-0.9.9-fix_playlist.patch
Log Message:
update to 0.9.9
vlc-0.9.9-fix_playlist.patch:
--- NEW FILE vlc-0.9.9-fix_playlist.patch ---
diff --git a/share/http/requests/playlist.xml b/share/http/requests/playlist.xml
index 5a3fb5c..cfeb4a8 100644
--- a/share/http/requests/playlist.xml
+++ b/share/http/requests/playlist.xml
@@ -35,9 +35,9 @@
<vlc id="end" />
<vlc id="if" param1="pl.type value 'Node' strcmp" />
<vlc id="rpn" param1="1 +" />
- <leaf id="<vlc id="value" param1="pl.index" />" <vlc id="if" param1="pl.current" /> current="current" <vlc id="end" /> uri="<vlc id="value" param1="pl.uri xml_encode" />" name="<vlc id="value" param1="pl.name xml_encode" />" ro="<vlc id="value" param1="pl.ro" />" duration="<vlc id="value" param1="pl.duration" />" />
+ <leaf id="<vlc id="value" param1="pl.index" />" <vlc id="if" param1="pl.current" /> current="current" <vlc id="end" /> uri="<vlc id="value" param1="pl.uri value xml_encode" />" name="<vlc id="value" param1="pl.name value xml_encode" />" ro="<vlc id="value" param1="pl.ro" />" duration="<vlc id="value" param1="pl.duration" />" />
<vlc id="else" />
- <node id="<vlc id="value" param1="pl.index" />" name="<vlc id="value" param1="pl.name xml_encode" />" ro="<vlc id="value" param1="pl.ro" />" >
+ <node id="<vlc id="value" param1="pl.index" />" name="<vlc id="value" param1="pl.name value xml_encode" />" ro="<vlc id="value" param1="pl.ro" />" >
<vlc id="if" param1="first_item value 0 ="/>
<vlc id="rpn" param1="first_item 1 store" />
<vlc id="end"/>
diff --git a/share/http/requests/status.xml b/share/http/requests/status.xml
index c180fa2..a5eeb43 100644
--- a/share/http/requests/status.xml
+++ b/share/http/requests/status.xml
@@ -117,9 +117,9 @@
<repeat><vlc id="value" param1="'repeat' 'VLC_OBJECT_PLAYLIST' vlc_var_get" /></repeat>
<information>
<vlc id="foreach" param1="inf" param2="information" />
- <category name="<vlc id="value" param1="inf.name xml_encode" />">
+ <category name="<vlc id="value" param1="inf.name value xml_encode" />">
<vlc id="foreach" param1="subinf" param2="inf.info" />
- <info name="<vlc id="value" param1="subinf.name xml_encode" />"><vlc id="value" param1="subinf.value xml_encode" /></info>
+ <info name="<vlc id="value" param1="subinf.name value xml_encode" />"><vlc id="value" param1="subinf.value value xml_encode" /></info>
<vlc id="end" />
</category>
<vlc id="end" />
diff --git a/src/playlist/search.c b/src/playlist/search.c
index 720f481..1e6a566 100644
--- a/src/playlist/search.c
+++ b/src/playlist/search.c
@@ -171,7 +171,7 @@ static bool playlist_LiveSearchUpdateInternal( playlist_item_t *p_root,
}
else
{
- if( input_item_MetaMatch( p_item->p_input, vlc_meta_Title, psz_string ) ||
+ if( strcasestr( p_item->p_input->psz_name, psz_string ) || /* Soon to be replaced by vlc_meta_Title */
input_item_MetaMatch( p_item->p_input, vlc_meta_Album, psz_string ) ||
input_item_MetaMatch( p_item->p_input, vlc_meta_Artist, psz_string ) )
{
Index: vlc.spec
===================================================================
RCS file: /cvs/free/rpms/vlc/F-9/vlc.spec,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- vlc.spec 5 Dec 2008 01:58:29 -0000 1.14
+++ vlc.spec 3 Apr 2009 19:45:48 -0000 1.15
@@ -4,7 +4,8 @@
%define with_internal_live555 0
%define live555_date 2008.07.25
%define vlc_git 0
-%define vlc_date 20080915
+#define vlc_rc -rc2
+%define vlc_date 20090210
%define with_mozilla 1
%define with_dc1394 0
%define with_directfb 1
@@ -17,7 +18,7 @@
%define _version %{version}-git
%define release_tag 0.1.%{vlc_date}git
%else
-Version: 0.9.8a
+Version: 0.9.9
%define _version %{version}
%define release_tag 1
%endif
@@ -28,7 +29,7 @@
%if %vlc_git
Source0: http://nightlies.videolan.org/build/source/trunk-%{vlc_date}-0024/vlc-sna...
%else
-Source0: http://download.videolan.org/pub/videolan/vlc/%{version}/vlc-%{_version}....
+Source0: http://download.videolan.org/pub/videolan/vlc/%{version}/vlc-%{_version}%...
%endif
%if %with_internal_live555
Source2: http://www.live555.com/liveMedia/public/live.%{live555_date}.tar.gz
@@ -39,6 +40,7 @@
Patch3: 300_all_pic.patch
Patch4: 310_all_mmx_pic.patch
Patch5: vlc-pulse0071.patch
+Patch6: vlc-0.9.9-fix_playlist.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: desktop-file-utils
@@ -53,7 +55,7 @@
BuildRequires: avahi-devel
BuildRequires: cdparanoia-devel
BuildRequires: dbus-devel
-%{?_with_dirac: BuildRequires: dirac-devel >= 1.0.0}
+%{?_with_dirac: BuildRequires: dirac-devel >= 0.10.0 }
%if %with_directfb
BuildRequires: directfb-devel
%endif
@@ -68,6 +70,7 @@
BuildRequires: gsm-devel
BuildRequires: hal-devel
BuildRequires: jack-audio-connection-kit-devel
+BuildRequires: libass-devel
BuildRequires: libavc1394-devel
BuildRequires: libcaca-devel
BuildRequires: libcddb-devel
@@ -85,7 +88,7 @@
BuildRequires: libmp4v2-devel
BuildRequires: libmpcdec-devel
BuildRequires: libnotify-devel
-BuildRequires: librsvg2-devel >= 2.5.0
+BuildRequires: librsvg2-devel >= 2.9.0
BuildRequires: libsysfs-devel
BuildRequires: libshout-devel
BuildRequires: libtar-devel
@@ -108,11 +111,12 @@
BuildRequires: libGL-devel
BuildRequires: libGLU-devel
BuildRequires: libmusicbrainz-devel
-%{?_with_lua:BuildRequires: lua-devel}
+BuildRequires: lua-devel
BuildRequires: mpeg2dec-devel >= 0.3.2
BuildRequires: ncurses-devel
BuildRequires: opencv-devel
BuildRequires: openslp-devel
+BuildRequires: pcre-devel
BuildRequires: prelink
BuildRequires: qt4-devel
BuildRequires: schroedinger-devel
@@ -173,14 +177,14 @@
%if %with_dc1394
BuildRequires: compat-libdc1394-devel
BuildRequires: compat-libraw1394-devel
-%else
-BuildRequires: libraw1394-devel
+#else
+#BuildRequires: libraw1394-devel
%endif
Requires: vlc-core = %{version}-%{release}
%if 0%{?fedora} > 10
-Requires: dejavu-fonts-sans
+Requires: dejavu-sans-fonts
%else
Requires: dejavu-fonts
%endif
@@ -201,7 +205,6 @@
Non-default rpmbuild options:
--with dirac: Enable dirac codec support
--with kate: Enable kate codec support
---with lua: Enable lua support
%description devel
@@ -259,11 +262,13 @@
%endif
%prep
-%setup -q -n %{name}-%{_version}
+%setup -q -n %{name}-%{_version}%{?vlc_rc}
%if %with_internal_live555
-%setup -q -D -T -a 2 -n %{name}-%{_version}
+%setup -q -D -T -a 2 -n %{name}-%{_version}%{?vlc_rc}
%endif
%patch0 -p1 -b .default_font
+%if %vlc_git
+%else
%patch1 -p1 -b .pulse_default
%patch2 -p1 -b .embedded
#http://trac.videolan.org/vlc/ticket/1383
@@ -271,9 +276,13 @@
sed -i.dmo_pic -e 's/fno-PIC/fPIC/' libs/loader/Makefile.in
%patch4 -p1 -b .mmx_pic
%patch5 -p1 -b .pulse0071
+%patch6 -p1 -b .pl
chmod -x modules/gui/qt4/qt4*
+
#./bootstrap
+%endif
+
%build
@@ -295,7 +304,7 @@
--with-tuning=no \
--enable-switcher \
--enable-shout \
- %{?_with_lua:--enable-lua --enable-lua} \
+ --enable-lua \
--enable-live555 \
%if %with_internal_live555
--with-live555-tree=live \
@@ -323,6 +332,8 @@
--enable-tarkin \
--enable-theora \
%{?_with_dirac:--enable-dirac} \
+ --enable-libass \
+ --enable-asademux \
--enable-svg \
--enable-snapshot \
%ifarch %{ix86} x86_64
@@ -372,7 +383,6 @@
make %{?_smp_mflags}
-
%install
rm -rf $RPM_BUILD_ROOT
@@ -440,12 +450,8 @@
%{_datadir}/applications/*%{name}.desktop
%{_datadir}/icons/hicolor/*/apps/vlc.png
%{_datadir}/vlc/skins2/
-%{_bindir}/cvlc
-%{_bindir}/nvlc
%{_bindir}/qvlc
-%{_bindir}/rvlc
%{_bindir}/svlc
-%{_bindir}/vlc-wrapper
%{_libdir}/vlc/gui/libqt4_plugin.so
%{_libdir}/vlc/access/libaccess_gnomevfs_plugin.so
%{_libdir}/vlc/access/libscreen_plugin.so
@@ -473,6 +479,10 @@
%files core -f %{name}.lang
%defattr(-,root,root,-)
%{_bindir}/vlc
+%{_bindir}/cvlc
+%{_bindir}/nvlc
+%{_bindir}/rvlc
+%{_bindir}/vlc-wrapper
%exclude %{_datadir}/vlc/skins2
%{_datadir}/vlc/
%{_libdir}/*.so.*
@@ -507,7 +517,7 @@
%exclude %{_libdir}/vlc/access/libdc1394_plugin.so
%endif
%{_libdir}/vlc/
-%{_mandir}/man1/vlc.1*
+%{_mandir}/man1/vlc*.1*
%files nox
%defattr(-,root,root,-)
@@ -541,6 +551,18 @@
%changelog
+* Fri Apr 3 2009 kwizart < kwizart at gmail.com > - 0.9.9-1
+- Update to 0.9.9 final
+- backport playlist patch
+- Enable subtitles decoding
+
+* Tue Mar 16 2009 kwizart < kwizart at gmail.com > - 0.9.9-0.5rc2
+- Use libxml2-static 2.6.2 from the Fedora GA repository
+
+* Fri Mar 6 2009 kwizart < kwizart at gmail.com > - 0.9.9-0.4rc2
+- Update to 0.9.9-rc2
+- Add lua support by default
+
* Fri Dec 5 2008 kwizart < kwizart at gmail.com > - 0.9.8a-1
- Update to 0.9.8a
Security update:
Index: sources
===================================================================
RCS file: /cvs/free/rpms/vlc/F-9/sources,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- sources 5 Dec 2008 01:58:29 -0000 1.8
+++ sources 3 Apr 2009 19:45:48 -0000 1.9
@@ -1 +1 @@
-8ffa2ff763badd5de7592004d8d69a63 vlc-0.9.8a.tar.bz2
+b7c2a75194ad5c73979c3d880aebbe38 vlc-0.9.9.tar.bz2
15 years, 7 months
rpms/vlc/F-10 vlc.spec,1.19,1.20
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/vlc/F-10
In directory se02.es.rpmfusion.net:/tmp/cvs-serv31556
Modified Files:
vlc.spec
Log Message:
minor tweak
Index: vlc.spec
===================================================================
RCS file: /cvs/free/rpms/vlc/F-10/vlc.spec,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- vlc.spec 3 Apr 2009 19:32:03 -0000 1.19
+++ vlc.spec 3 Apr 2009 19:35:14 -0000 1.20
@@ -44,7 +44,7 @@
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: desktop-file-utils
-%if 1
+%if 0
BuildRequires: gettext-devel
BuildRequires: libtool
%endif
15 years, 7 months
rpms/vlc/F-10 vlc-0.9.9-fix_playlist.patch, NONE, 1.1 vlc.spec, 1.18, 1.19 sources, 1.9, 1.10 .cvsignore, 1.7, 1.8
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/vlc/F-10
In directory se02.es.rpmfusion.net:/tmp/cvs-serv31164
Modified Files:
vlc.spec sources .cvsignore
Added Files:
vlc-0.9.9-fix_playlist.patch
Log Message:
Update to 0.9.9 final
vlc-0.9.9-fix_playlist.patch:
--- NEW FILE vlc-0.9.9-fix_playlist.patch ---
diff --git a/share/http/requests/playlist.xml b/share/http/requests/playlist.xml
index 5a3fb5c..cfeb4a8 100644
--- a/share/http/requests/playlist.xml
+++ b/share/http/requests/playlist.xml
@@ -35,9 +35,9 @@
<vlc id="end" />
<vlc id="if" param1="pl.type value 'Node' strcmp" />
<vlc id="rpn" param1="1 +" />
- <leaf id="<vlc id="value" param1="pl.index" />" <vlc id="if" param1="pl.current" /> current="current" <vlc id="end" /> uri="<vlc id="value" param1="pl.uri xml_encode" />" name="<vlc id="value" param1="pl.name xml_encode" />" ro="<vlc id="value" param1="pl.ro" />" duration="<vlc id="value" param1="pl.duration" />" />
+ <leaf id="<vlc id="value" param1="pl.index" />" <vlc id="if" param1="pl.current" /> current="current" <vlc id="end" /> uri="<vlc id="value" param1="pl.uri value xml_encode" />" name="<vlc id="value" param1="pl.name value xml_encode" />" ro="<vlc id="value" param1="pl.ro" />" duration="<vlc id="value" param1="pl.duration" />" />
<vlc id="else" />
- <node id="<vlc id="value" param1="pl.index" />" name="<vlc id="value" param1="pl.name xml_encode" />" ro="<vlc id="value" param1="pl.ro" />" >
+ <node id="<vlc id="value" param1="pl.index" />" name="<vlc id="value" param1="pl.name value xml_encode" />" ro="<vlc id="value" param1="pl.ro" />" >
<vlc id="if" param1="first_item value 0 ="/>
<vlc id="rpn" param1="first_item 1 store" />
<vlc id="end"/>
diff --git a/share/http/requests/status.xml b/share/http/requests/status.xml
index c180fa2..a5eeb43 100644
--- a/share/http/requests/status.xml
+++ b/share/http/requests/status.xml
@@ -117,9 +117,9 @@
<repeat><vlc id="value" param1="'repeat' 'VLC_OBJECT_PLAYLIST' vlc_var_get" /></repeat>
<information>
<vlc id="foreach" param1="inf" param2="information" />
- <category name="<vlc id="value" param1="inf.name xml_encode" />">
+ <category name="<vlc id="value" param1="inf.name value xml_encode" />">
<vlc id="foreach" param1="subinf" param2="inf.info" />
- <info name="<vlc id="value" param1="subinf.name xml_encode" />"><vlc id="value" param1="subinf.value xml_encode" /></info>
+ <info name="<vlc id="value" param1="subinf.name value xml_encode" />"><vlc id="value" param1="subinf.value value xml_encode" /></info>
<vlc id="end" />
</category>
<vlc id="end" />
diff --git a/src/playlist/search.c b/src/playlist/search.c
index 720f481..1e6a566 100644
--- a/src/playlist/search.c
+++ b/src/playlist/search.c
@@ -171,7 +171,7 @@ static bool playlist_LiveSearchUpdateInternal( playlist_item_t *p_root,
}
else
{
- if( input_item_MetaMatch( p_item->p_input, vlc_meta_Title, psz_string ) ||
+ if( strcasestr( p_item->p_input->psz_name, psz_string ) || /* Soon to be replaced by vlc_meta_Title */
input_item_MetaMatch( p_item->p_input, vlc_meta_Album, psz_string ) ||
input_item_MetaMatch( p_item->p_input, vlc_meta_Artist, psz_string ) )
{
Index: vlc.spec
===================================================================
RCS file: /cvs/free/rpms/vlc/F-10/vlc.spec,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- vlc.spec 17 Mar 2009 11:31:20 -0000 1.18
+++ vlc.spec 3 Apr 2009 19:32:03 -0000 1.19
@@ -4,7 +4,7 @@
%define with_internal_live555 0
%define live555_date 2008.07.25
%define vlc_git 0
-%define vlc_rc -rc2
+#define vlc_rc -rc2
%define vlc_date 20090210
%define with_mozilla 1
%define with_dc1394 0
@@ -20,7 +20,7 @@
%else
Version: 0.9.9
%define _version %{version}
-%define release_tag 0.5rc2
+%define release_tag 1
%endif
Release: %{release_tag}%{?dist}
License: GPLv2+
@@ -40,6 +40,7 @@
Patch3: 300_all_pic.patch
Patch4: 310_all_mmx_pic.patch
Patch5: vlc-pulse0071.patch
+Patch6: vlc-0.9.9-fix_playlist.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: desktop-file-utils
@@ -69,6 +70,7 @@
BuildRequires: gsm-devel
BuildRequires: hal-devel
BuildRequires: jack-audio-connection-kit-devel
+BuildRequires: libass-devel
BuildRequires: libavc1394-devel
BuildRequires: libcaca-devel
BuildRequires: libcddb-devel
@@ -97,11 +99,7 @@
BuildRequires: libv4l-devel
%endif
BuildRequires: libvorbis-devel
-%if 0%{?fedora} < 11
-BuildRequires: libxml2 < 2.7.3
-BuildRequires: libxml2-devel < 2.7.3
-BuildRequires: libxml2-static < 2.7.3
-%endif
+BuildRequires: libxml2-devel
BuildRequires: lirc-devel
%if %with_internal_live555
BuildConflicts: live-devel
@@ -118,6 +116,7 @@
BuildRequires: ncurses-devel
BuildRequires: opencv-devel
BuildRequires: openslp-devel
+BuildRequires: pcre-devel
BuildRequires: prelink
BuildRequires: qt4-devel
BuildRequires: schroedinger-devel
@@ -277,18 +276,15 @@
sed -i.dmo_pic -e 's/fno-PIC/fPIC/' libs/loader/Makefile.in
%patch4 -p1 -b .mmx_pic
%patch5 -p1 -b .pulse0071
+%patch6 -p1 -b .pl
chmod -x modules/gui/qt4/qt4*
-./bootstrap
-%endif
-%if 0%{?fedora} > 10
-%else
-cp -p %{_bindir}/xml2-config .
-sed -i.libxml2_static -e 's|-lxml2|-static -lxml2 -shared -L%{_libdir} -lc |g' xml2-config configure.ac configure
+#./bootstrap
%endif
+
%build
%if %with_internal_live555
# Then bundled live555 - not needed
@@ -336,6 +332,8 @@
--enable-tarkin \
--enable-theora \
%{?_with_dirac:--enable-dirac} \
+ --enable-libass \
+ --enable-asademux \
--enable-svg \
--enable-snapshot \
%ifarch %{ix86} x86_64
@@ -554,6 +552,11 @@
%changelog
+* Fri Apr 3 2009 kwizart < kwizart at gmail.com > - 0.9.9-1
+- Update to 0.9.9 final
+- backport playlist patch
+- Enable subtitles decoding
+
* Tue Mar 16 2009 kwizart < kwizart at gmail.com > - 0.9.9-0.5rc2
- Use libxml2-static 2.6.2 from the Fedora GA repository
Index: sources
===================================================================
RCS file: /cvs/free/rpms/vlc/F-10/sources,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- sources 6 Mar 2009 18:23:51 -0000 1.9
+++ sources 3 Apr 2009 19:32:03 -0000 1.10
@@ -1 +1 @@
-d9e43e626c183052a6d44954eb366f08 vlc-0.9.9-rc2.tar.bz2
+b7c2a75194ad5c73979c3d880aebbe38 vlc-0.9.9.tar.bz2
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/vlc/F-10/.cvsignore,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- .cvsignore 6 Nov 2008 15:37:28 -0000 1.7
+++ .cvsignore 3 Apr 2009 19:32:03 -0000 1.8
@@ -1 +1 @@
-vlc-0.9.6.tar.bz2
+vlc-0.9.9.tar.bz2
15 years, 7 months