rpms/vboxgtk/F-11 vboxgtk-vboxgtk.desktop.in.patch, NONE, 1.1 vboxgtk-vboxpath.patch, NONE, 1.1 vboxgtk.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2
by Hicham HAOUARI
Author: hicham
Update of /cvs/free/rpms/vboxgtk/F-11
In directory se02.es.rpmfusion.net:/tmp/cvs-serv1210/F-11
Modified Files:
.cvsignore sources
Added Files:
vboxgtk-vboxgtk.desktop.in.patch vboxgtk-vboxpath.patch
vboxgtk.spec
Log Message:
vboxgtk-vboxgtk.desktop.in.patch:
--- NEW FILE vboxgtk-vboxgtk.desktop.in.patch ---
diff -up vboxgtk-0.5.0/data/vboxgtk.desktop.in.orig vboxgtk-0.5.0/data/vboxgtk.desktop.in
--- vboxgtk-0.5.0/data/vboxgtk.desktop.in.orig 2009-08-09 18:19:46.370336267 +0100
+++ vboxgtk-0.5.0/data/vboxgtk.desktop.in 2009-08-09 20:59:52.904335950 +0100
@@ -1,10 +1,12 @@
[Desktop Entry]
Encoding=UTF-8
+Version=1.0
Name=VBoxGtk
Comment=VirtualBox GTK+ interface
Exec=vboxgtk
Terminal=false
StartupNotify=true
-Icon=vboxgtk
+Icon=/usr/share/icons/hicolor/scalable/apps/vboxgtk.svg
Type=Application
-Categories=GTKi;Office;
+Categories=Emulator;System;
+X-Desktop-File-Install-Version=0.15
vboxgtk-vboxpath.patch:
--- NEW FILE vboxgtk-vboxpath.patch ---
diff -up vboxgtk-0.5.0/bin/vboxgtk.vboxpath vboxgtk-0.5.0/bin/vboxgtk
--- vboxgtk-0.5.0/bin/vboxgtk.vboxpath 2009-08-09 18:12:58.000000000 +0200
+++ vboxgtk-0.5.0/bin/vboxgtk 2009-08-09 18:13:05.000000000 +0200
@@ -34,7 +34,7 @@ anyway (hoping that the user has added t
import os
import sys
import textwrap
-
+import distutils.sysconfig;
def prepare_sys_path():
vbox_install_path = None
@@ -58,10 +58,14 @@ def prepare_sys_path():
sys.path.insert(0, vbox_install_path)
sdk_dir = 'sdk/bindings/xpcom/python'
sys.path.insert(0, os.path.join(vbox_install_path, sdk_dir))
- base_path = os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))
- if os.path.isdir(os.path.join(base_path, 'vboxgtk')):
- sys.path.insert(0, base_path)
+ base_path = os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))
+ site_lib = os.path.join(distutils.sysconfig.get_python_lib(1), 'virtualbox')
+
+ for base in (base_path, site_lib):
+ for sub in ('vboxgtk', 'xpcom'):
+ if os.path.isdir(os.path.join(base, sub)):
+ sys.path.insert(0, base)
def test_xpcom_import():
msg = """
--- NEW FILE vboxgtk.spec ---
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
Name: vboxgtk
Version: 0.5.0
Release: 2%{?dist}
Summary: A simple GTK frontend for VirtualBox
Group: Applications/Emulators
License: GPLv3
URL: http://vboxgtk.sourceforge.net/
Source0: http://freefr.dl.sourceforge.net/project/%{name}/%{name}/%{name}/%{name}-...
#Patch0: fix the vboxgtk desktop file, filed in : https://sourceforge.net/tracker/?func=detail&aid=2834528&group_id=263334&...
Patch0: vboxgtk-vboxgtk.desktop.in.patch
#Patch1: fix VirtualBox-OSE paths in vboxgtk launcher
Patch1: vboxgtk-vboxpath.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
%if 0%{?fedora} > 11
ExclusiveArch: i686 x86_64
%else %if 0%{?fedora} > 10
ExclusiveArch: i586 x86_64
%else
ExclusiveArch: i386 x86_64
%endif
Requires: python-VirtualBox-OSE
%description
A simple GTK frontend for VirtualBox.
%prep
%setup -q
%patch0 -p1
%patch1 -p1
%build
%install
rm -rf $RPM_BUILD_ROOT
./setup.py install --root $RPM_BUILD_ROOT
%find_lang %{name}
%clean
rm -rf $RPM_BUILD_ROOT
%files -f %{name}.lang
%defattr(-,root,root,-)
%doc AUTHORS COPYING README
%{_bindir}/%{name}
%{python_sitelib}/%{name}
%{python_sitelib}/%{name}-%{version}*
%{_datadir}/applications/%{name}.desktop
%{_datadir}/icons/hicolor/16x16/apps/%{name}.png
%{_datadir}/icons/hicolor/22x22/apps/%{name}.png
%{_datadir}/icons/hicolor/24x24/apps/%{name}.png
%{_datadir}/icons/hicolor/32x32/apps/%{name}.png
%{_datadir}/icons/hicolor/scalable/apps/%{name}.svg
%{_datadir}/%{name}
%changelog
* Sun Aug 09 2009 Hicham HAOUARI <hicham.haouari(a)gmail.com> 0.5.0-2
- Spec cleanup (https://bugzilla.rpmfusion.org/show_bug.cgi?id=751#c2).
* Fri Aug 07 2009 Hicham HAOUARI <hicham.haouari(a)gmail.com> 0.5.0-1
- Initial package for rpmfusion.
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/vboxgtk/F-11/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore 12 Aug 2009 08:22:09 -0000 1.1
+++ .cvsignore 12 Aug 2009 13:24:01 -0000 1.2
@@ -0,0 +1 @@
+vboxgtk-0.5.0.tar.gz
Index: sources
===================================================================
RCS file: /cvs/free/rpms/vboxgtk/F-11/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 12 Aug 2009 08:22:09 -0000 1.1
+++ sources 12 Aug 2009 13:24:01 -0000 1.2
@@ -0,0 +1 @@
+3f431b4ae6cfd411f53372f8a7e2010c vboxgtk-0.5.0.tar.gz
15 years, 3 months
rpms/vboxgtk/devel vboxgtk-vboxgtk.desktop.in.patch, NONE, 1.1 vboxgtk-vboxpath.patch, NONE, 1.1 vboxgtk.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2
by Hicham HAOUARI
Author: hicham
Update of /cvs/free/rpms/vboxgtk/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv32759/devel
Modified Files:
.cvsignore sources
Added Files:
vboxgtk-vboxgtk.desktop.in.patch vboxgtk-vboxpath.patch
vboxgtk.spec
Log Message:
vboxgtk-vboxgtk.desktop.in.patch:
--- NEW FILE vboxgtk-vboxgtk.desktop.in.patch ---
diff -up vboxgtk-0.5.0/data/vboxgtk.desktop.in.orig vboxgtk-0.5.0/data/vboxgtk.desktop.in
--- vboxgtk-0.5.0/data/vboxgtk.desktop.in.orig 2009-08-09 18:19:46.370336267 +0100
+++ vboxgtk-0.5.0/data/vboxgtk.desktop.in 2009-08-09 20:59:52.904335950 +0100
@@ -1,10 +1,12 @@
[Desktop Entry]
Encoding=UTF-8
+Version=1.0
Name=VBoxGtk
Comment=VirtualBox GTK+ interface
Exec=vboxgtk
Terminal=false
StartupNotify=true
-Icon=vboxgtk
+Icon=/usr/share/icons/hicolor/scalable/apps/vboxgtk.svg
Type=Application
-Categories=GTKi;Office;
+Categories=Emulator;System;
+X-Desktop-File-Install-Version=0.15
vboxgtk-vboxpath.patch:
--- NEW FILE vboxgtk-vboxpath.patch ---
diff -up vboxgtk-0.5.0/bin/vboxgtk.vboxpath vboxgtk-0.5.0/bin/vboxgtk
--- vboxgtk-0.5.0/bin/vboxgtk.vboxpath 2009-08-09 18:12:58.000000000 +0200
+++ vboxgtk-0.5.0/bin/vboxgtk 2009-08-09 18:13:05.000000000 +0200
@@ -34,7 +34,7 @@ anyway (hoping that the user has added t
import os
import sys
import textwrap
-
+import distutils.sysconfig;
def prepare_sys_path():
vbox_install_path = None
@@ -58,10 +58,14 @@ def prepare_sys_path():
sys.path.insert(0, vbox_install_path)
sdk_dir = 'sdk/bindings/xpcom/python'
sys.path.insert(0, os.path.join(vbox_install_path, sdk_dir))
- base_path = os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))
- if os.path.isdir(os.path.join(base_path, 'vboxgtk')):
- sys.path.insert(0, base_path)
+ base_path = os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))
+ site_lib = os.path.join(distutils.sysconfig.get_python_lib(1), 'virtualbox')
+
+ for base in (base_path, site_lib):
+ for sub in ('vboxgtk', 'xpcom'):
+ if os.path.isdir(os.path.join(base, sub)):
+ sys.path.insert(0, base)
def test_xpcom_import():
msg = """
--- NEW FILE vboxgtk.spec ---
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
Name: vboxgtk
Version: 0.5.0
Release: 2%{?dist}
Summary: A simple GTK frontend for VirtualBox
Group: Applications/Emulators
License: GPLv3
URL: http://vboxgtk.sourceforge.net/
Source0: http://freefr.dl.sourceforge.net/project/%{name}/%{name}/%{name}/%{name}-...
#Patch0: fix the vboxgtk desktop file, filed in : https://sourceforge.net/tracker/?func=detail&aid=2834528&group_id=263334&...
Patch0: vboxgtk-vboxgtk.desktop.in.patch
#Patch1: fix VirtualBox-OSE paths in vboxgtk launcher
Patch1: vboxgtk-vboxpath.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
%if 0%{?fedora} > 11
ExclusiveArch: i686 x86_64
%else %if 0%{?fedora} > 10
ExclusiveArch: i586 x86_64
%else
ExclusiveArch: i386 x86_64
%endif
Requires: python-VirtualBox-OSE
%description
A simple GTK frontend for VirtualBox.
%prep
%setup -q
%patch0 -p1
%patch1 -p1
%build
%install
rm -rf $RPM_BUILD_ROOT
./setup.py install --root $RPM_BUILD_ROOT
%find_lang %{name}
%clean
rm -rf $RPM_BUILD_ROOT
%files -f %{name}.lang
%defattr(-,root,root,-)
%doc AUTHORS COPYING README
%{_bindir}/%{name}
%{python_sitelib}/%{name}
%{python_sitelib}/%{name}-%{version}*
%{_datadir}/applications/%{name}.desktop
%{_datadir}/icons/hicolor/16x16/apps/%{name}.png
%{_datadir}/icons/hicolor/22x22/apps/%{name}.png
%{_datadir}/icons/hicolor/24x24/apps/%{name}.png
%{_datadir}/icons/hicolor/32x32/apps/%{name}.png
%{_datadir}/icons/hicolor/scalable/apps/%{name}.svg
%{_datadir}/%{name}
%changelog
* Sun Aug 09 2009 Hicham HAOUARI <hicham.haouari(a)gmail.com> 0.5.0-2
- Spec cleanup (https://bugzilla.rpmfusion.org/show_bug.cgi?id=751#c2).
* Fri Aug 07 2009 Hicham HAOUARI <hicham.haouari(a)gmail.com> 0.5.0-1
- Initial package for rpmfusion.
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/vboxgtk/devel/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore 12 Aug 2009 08:22:09 -0000 1.1
+++ .cvsignore 12 Aug 2009 13:11:00 -0000 1.2
@@ -0,0 +1 @@
+vboxgtk-0.5.0.tar.gz
Index: sources
===================================================================
RCS file: /cvs/free/rpms/vboxgtk/devel/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 12 Aug 2009 08:22:09 -0000 1.1
+++ sources 12 Aug 2009 13:11:00 -0000 1.2
@@ -0,0 +1 @@
+3f431b4ae6cfd411f53372f8a7e2010c vboxgtk-0.5.0.tar.gz
15 years, 3 months
rpms/vlc/F-11 sources,1.18,1.19 vlc.spec,1.43,1.44
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/vlc/F-11
In directory se02.es.rpmfusion.net:/tmp/cvs-serv23510
Modified Files:
sources vlc.spec
Log Message:
- Conditionalize libass until stabilized ABI.
- Update to 1.0-bugfix 20090812
Index: sources
===================================================================
RCS file: /cvs/free/rpms/vlc/F-11/sources,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- sources 28 Jul 2009 15:44:40 -0000 1.18
+++ sources 12 Aug 2009 10:26:02 -0000 1.19
@@ -1 +1,2 @@
6e299d373e7751bb36de001cdc6a2989 vlc-1.0.1.tar.bz2
+3cf4d28f13d2fe525c0df7e2460c5b8b vlc-1.0-bugfix-20090812.tar.bz2
Index: vlc.spec
===================================================================
RCS file: /cvs/free/rpms/vlc/F-11/vlc.spec,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- vlc.spec 28 Jul 2009 15:44:40 -0000 1.43
+++ vlc.spec 12 Aug 2009 10:26:02 -0000 1.44
@@ -8,7 +8,7 @@
Summary: Multi-platform MPEG, DVD, and DivX player
Name: vlc
Version: 1.0.1
-Release: 1%{?dist}
+Release: 2%{?dist}
License: GPLv2+
Group: Applications/Multimedia
URL: http://www.videolan.org
@@ -22,7 +22,7 @@
Patch2: 0002-Default-aout-for-pulse.patch
Patch3: 300_all_pic.patch
Patch4: 310_all_mmx_pic.patch
-Patch5: vlc-1.0-bugfix-bp_zip_qt4.patch
+Patch5: vlc-1.0-bugfix-20090812.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: desktop-file-utils
@@ -54,7 +54,7 @@
BuildRequires: hal-devel
BuildRequires: jack-audio-connection-kit-devel
BuildRequires: libavc1394-devel
-BuildRequires: libass-devel
+%{?_with_libass:BuildRequires: libass-devel >= 0.9.7}
BuildRequires: libcaca-devel
BuildRequires: libcddb-devel
BuildRequires: libcdio-devel >= 0.77-3
@@ -238,7 +238,7 @@
%patch3 -p1 -b .dmo_pic
sed -i.dmo_pic -e 's/fno-PIC/fPIC/' libs/loader/Makefile.in
%patch4 -p1 -b .mmx_pic
-%patch5 -p1 -b .bp5
+%patch5 -p1 -b .bf
rm modules/access/videodev2.h
@@ -292,7 +292,7 @@
--enable-tarkin \
--enable-theora \
--enable-dirac \
- --enable-libass \
+%{?_with_libass:--enable-libass} \
--enable-xcb \
--enable-svg \
--enable-snapshot \
@@ -549,6 +549,10 @@
%changelog
+* Wed Aug 12 2009 kwizart < kwizart at gmail.com > - 1.0.1-2
+- Conditionalize libass until stabilized ABI.
+- Update to 1.0-bugfix 20090812
+
* Tue Jul 28 2009 kwizart < kwizart at gmail.com > - 1.0.1-1
- Update to 1.0.1 (Final)
- Improve conditionals
15 years, 3 months
rpms/vlc/devel sources,1.21,1.22
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/vlc/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv21282
Modified Files:
sources
Log Message:
Update patches pack
Index: sources
===================================================================
RCS file: /cvs/free/rpms/vlc/devel/sources,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- sources 12 Aug 2009 08:59:56 -0000 1.21
+++ sources 12 Aug 2009 09:45:42 -0000 1.22
@@ -1,2 +1,2 @@
6e299d373e7751bb36de001cdc6a2989 vlc-1.0.1.tar.bz2
-2df9319d666071efd2a5b9f4a04e3a07 vlc-1.0-bugfix-20090812.tar.bz2
+3cf4d28f13d2fe525c0df7e2460c5b8b vlc-1.0-bugfix-20090812.tar.bz2
15 years, 3 months
rpms/xmms2-freeworld/devel xmms2-0.6DrMattDestruction-moresaneversioning.patch, NONE, 1.1 xmms2-0.6DrMattDestruction-use-libdir.patch, NONE, 1.1 .cvsignore, 1.2, 1.3 sources, 1.2, 1.3 xmms2-freeworld.spec, 1.2, 1.3 xmms2-0.5DrLecter-moresaneversioning.patch, 1.1, NONE xmms2-0.5DrLecter-use-libdir.patch, 1.1, NONE xmms2-devel.git-37578b59f5d7376213da74b3bf6b7c7f430d0bc9.patch, 1.1, NONE xmms2-devel.git-6f06f3409dfa82b7a3e7fdd682567d46fd65e262.patch, 1.1, NONE xmms2-devel.git-93aab85319fcc168db2d35058e99682
by Orcan Ogetbil
Author: oget
Update of /cvs/free/rpms/xmms2-freeworld/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv20493
Modified Files:
.cvsignore sources xmms2-freeworld.spec
Added Files:
xmms2-0.6DrMattDestruction-moresaneversioning.patch
xmms2-0.6DrMattDestruction-use-libdir.patch
Removed Files:
xmms2-0.5DrLecter-moresaneversioning.patch
xmms2-0.5DrLecter-use-libdir.patch
xmms2-devel.git-37578b59f5d7376213da74b3bf6b7c7f430d0bc9.patch
xmms2-devel.git-6f06f3409dfa82b7a3e7fdd682567d46fd65e262.patch
xmms2-devel.git-93aab85319fcc168db2d35058e996826a5c6a034.patch
xmms2-devel.git-a42762549126b8facdab90cf01a17fa106bc8dce.patch
xmms2-devel.git-a63d0f80f384ffd15c921af74f036d785d3b72df.patch
xmms2-devel.git-be6f8e111913433a0fee1ddfa3d234067695aadf.patch
xmms2-devel.git-d09c0d8a971c0333a0c8387113f744f0b9899fe4.patch
xmms2-devel.git-fae1d0cfd643e999d419162979b9c90d12a30002.patch
xmms2-devel.git-fccc583328ca58110a8b6e00ccb8c0bb1f6923ad.patch
Log Message:
* Wed Aug 12 2009 John Doe <anonymous(a)american.us> 0.6-1
- Update to 0.6
xmms2-0.6DrMattDestruction-moresaneversioning.patch:
--- NEW FILE xmms2-0.6DrMattDestruction-moresaneversioning.patch ---
diff -up xmms2-0.6DrMattDestruction/wscript.versionsanity xmms2-0.6DrMattDestruction/wscript
--- xmms2-0.6DrMattDestruction/wscript.versionsanity 2009-08-11 14:00:44.013247917 -0400
+++ xmms2-0.6DrMattDestruction/wscript 2009-08-11 14:01:48.446370522 -0400
@@ -23,7 +23,7 @@ import Build
import Configure
from logging import fatal, warning
-BASEVERSION="0.6 DrMattDestruction"
+BASEVERSION="0.6"
APPNAME='xmms2'
srcdir='.'
@@ -269,14 +269,15 @@ def configure(conf):
nam,changed = gittools.get_info()
conf.check_message("git commit id", "", True, nam)
- if Options.options.customversion:
- conf.env["VERSION"] = BASEVERSION + " (%s + %s)" % (nam, Options.options.customversion)
- else:
- dirty=""
- if changed:
- dirty="-dirty"
- conf.check_message("uncommitted changes", "", bool(changed))
- conf.env["VERSION"] = BASEVERSION + " (git commit: %s%s)" % (nam, dirty)
+ ## if Options.options.customversion:
+ ## conf.env["VERSION"] = BASEVERSION + " (%s + %s)" % (nam, Options.options.customversion)
+ ## else:
+ ## dirty=""
+ ## if changed:
+ ## dirty="-dirty"
+ ## conf.check_message("uncommitted changes", "", bool(changed))
+ ## conf.env["VERSION"] = BASEVERSION + " (git commit: %s%s)" % (nam, dirty)
+ conf.env["VERSION"] = BASEVERSION
## conf.env["CCFLAGS"] = Utils.to_list(conf.env["CCFLAGS"]) + ['-g', '-O0']
## conf.env["CXXFLAGS"] = Utils.to_list(conf.env["CXXFLAGS"]) + ['-g', '-O0']
xmms2-0.6DrMattDestruction-use-libdir.patch:
--- NEW FILE xmms2-0.6DrMattDestruction-use-libdir.patch ---
diff -up xmms2-0.6DrMattDestruction/src/include/xmms/wscript.BAD xmms2-0.6DrMattDestruction/src/include/xmms/wscript
--- xmms2-0.6DrMattDestruction/src/include/xmms/wscript.BAD 2009-08-11 15:17:57.020242949 -0400
+++ xmms2-0.6DrMattDestruction/src/include/xmms/wscript 2009-08-11 15:18:04.940381687 -0400
@@ -15,8 +15,7 @@ def configure(conf):
defs = {}
- defs['PKGLIBDIR'] = os.path.join(conf.env['PREFIX'],
- 'lib', 'xmms2')
+ defs['PKGLIBDIR'] = os.path.join(conf.env['LIBDIR'], 'xmms2')
defs['BINDIR'] = conf.env['BINDIR']
defs['SHAREDDIR'] = os.path.join(conf.env['PREFIX'],
'share', 'xmms2')
diff -up xmms2-0.6DrMattDestruction/waftools/tool.py.BAD xmms2-0.6DrMattDestruction/waftools/tool.py
--- xmms2-0.6DrMattDestruction/waftools/tool.py.BAD 2009-08-11 15:28:30.157242468 -0400
+++ xmms2-0.6DrMattDestruction/waftools/tool.py 2009-08-11 15:28:45.251245035 -0400
@@ -6,5 +6,5 @@ def add_install_flag(bld, obj):
if env['explicit_install_name']:
libname = obj.env["shlib_PATTERN"] % obj.target
- insname = os.path.join(obj.env["PREFIX"], 'lib', libname)
+ insname = os.path.join(obj.env["LIBDIR"], libname)
obj.env.append_unique("LINKFLAGS", '-install_name ' + insname)
diff -up xmms2-0.6DrMattDestruction/wafadmin/Tools/libtool.py.BAD xmms2-0.6DrMattDestruction/wafadmin/Tools/libtool.py
--- xmms2-0.6DrMattDestruction/wafadmin/Tools/libtool.py.BAD 2009-08-11 15:33:10.276383650 -0400
+++ xmms2-0.6DrMattDestruction/wafadmin/Tools/libtool.py 2009-08-11 15:33:33.646236480 -0400
@@ -45,7 +45,7 @@ def fakelibtool_build(task):
fu("current=0\n")
fu("age=0\nrevision=0\ninstalled=yes\nshouldnotlink=no\n")
fu("dlopen=''\ndlpreopen=''\n")
- fu("libdir='%s/lib'\n" % env['PREFIX'])
+ fu("libdir='%s'\n" % env['LIBDIR'])
dest.close()
return 0
@@ -75,7 +75,7 @@ def apply_link_libtool(self):
self.latask = latask
if Options.commands['install'] or Options.commands['uninstall']:
- Build.bld.install_files('PREFIX', 'lib', linktask.outputs[0].abspath(self.env), self.env)
+ Build.bld.install_files('LIBDIR', linktask.outputs[0].abspath(self.env), self.env)
@taskgen
@feature("libtool")
diff -up xmms2-0.6DrMattDestruction/wafadmin/Tools/ccroot.py.BAD xmms2-0.6DrMattDestruction/wafadmin/Tools/ccroot.py
--- xmms2-0.6DrMattDestruction/wafadmin/Tools/ccroot.py.BAD 2009-08-11 15:35:28.864257981 -0400
+++ xmms2-0.6DrMattDestruction/wafadmin/Tools/ccroot.py 2009-08-11 15:35:36.165270276 -0400
@@ -127,7 +127,7 @@ def vars_target_cprogram(self):
@feature('cstaticlib', 'dstaticlib', 'cshlib', 'dshlib')
@before('apply_core')
def vars_target_cstaticlib(self):
- self.default_install_path = '${PREFIX}/lib'
+ self.default_install_path = '${LIBDIR}'
if sys.platform in ['win32', 'cygwin']:
# on win32, libraries need the execute bit, else we
# get 'permission denied' when using them (issue 283)
diff -up xmms2-0.6DrMattDestruction/wafadmin/Tools/gnu_dirs.py.BAD xmms2-0.6DrMattDestruction/wafadmin/Tools/gnu_dirs.py
--- xmms2-0.6DrMattDestruction/wafadmin/Tools/gnu_dirs.py.BAD 2009-08-11 15:35:49.334273249 -0400
+++ xmms2-0.6DrMattDestruction/wafadmin/Tools/gnu_dirs.py 2009-08-11 15:36:35.058242288 -0400
@@ -39,7 +39,7 @@ libexecdir, program executables, $(EXEC_
sysconfdir, read-only single-machine data, $(PREFIX)/etc
sharedstatedir, modifiable architecture-independent data, $(PREFIX)/com
localstatedir, modifiable single-machine data, $(PREFIX)/var
-libdir, object code libraries, $(EXEC_PREFIX)/lib
+libdir, object code libraries, $(LIBDIR)
includedir, C header files, $(PREFIX)/include
oldincludedir, C header files for non-gcc, /usr/include
datarootdir, read-only arch.-independent data root, $(PREFIX)/share
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/xmms2-freeworld/devel/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- .cvsignore 16 Dec 2008 19:16:56 -0000 1.2
+++ .cvsignore 12 Aug 2009 09:39:19 -0000 1.3
@@ -1 +1 @@
-xmms2-0.5DrLecter.tar.bz2
+xmms2-0.6DrMattDestruction.tar.bz2
Index: sources
===================================================================
RCS file: /cvs/free/rpms/xmms2-freeworld/devel/sources,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sources 16 Dec 2008 19:16:56 -0000 1.2
+++ sources 12 Aug 2009 09:39:19 -0000 1.3
@@ -1 +1 @@
-9033ef15be9069ef43aeb4b6360a4d36 xmms2-0.5DrLecter.tar.bz2
+954fb9c76b5db5e324a105e81b273200 xmms2-0.6DrMattDestruction.tar.bz2
Index: xmms2-freeworld.spec
===================================================================
RCS file: /cvs/free/rpms/xmms2-freeworld/devel/xmms2-freeworld.spec,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- xmms2-freeworld.spec 29 Mar 2009 14:26:10 -0000 1.2
+++ xmms2-freeworld.spec 12 Aug 2009 09:39:19 -0000 1.3
@@ -1,32 +1,20 @@
-%define codename DrLecter
+%define codename DrMattDestruction
Name: xmms2-freeworld
-Summary: Plugins for XMMS2 that cannot be included in Fedora
-Version: 0.5
-Release: 6%{?dist}
+Summary: Plugins for XMMS2 that cannot be included in Fedora
+Version: 0.6
+Release: 1%{?dist}
License: LGPLv2+ and GPL+ and BSD
Group: Applications/Multimedia
# Fedora's xmms2 has to use a sanitized tarball, we don't.
Source0: http://downloads.sourceforge.net/xmms2/xmms2-%{version}%{codename}.tar.bz2
-# From upstream git (Compilation fixes)
-Patch0: xmms2-devel.git-37578b59f5d7376213da74b3bf6b7c7f430d0bc9.patch
# Use libdir properly for Fedora multilib
-Patch1: xmms2-0.5DrLecter-use-libdir.patch
+Patch1: xmms2-0.6DrMattDestruction-use-libdir.patch
# Don't add extra CFLAGS, we're smart enough, thanks.
-Patch4: xmms2-0.5DrLecter-no-O0.patch
+Patch4: xmms2-0.5DrLecter-no-O0.patch
# More sane versioning
-Patch5: xmms2-0.5DrLecter-moresaneversioning.patch
-
-# From upstream git (fix avcodec compilation and bugs)
-Patch10: xmms2-devel.git-fae1d0cfd643e999d419162979b9c90d12a30002.patch
-Patch11: xmms2-devel.git-be6f8e111913433a0fee1ddfa3d234067695aadf.patch
-Patch12: xmms2-devel.git-a63d0f80f384ffd15c921af74f036d785d3b72df.patch
-Patch13: xmms2-devel.git-6f06f3409dfa82b7a3e7fdd682567d46fd65e262.patch
-Patch14: xmms2-devel.git-93aab85319fcc168db2d35058e996826a5c6a034.patch
-Patch15: xmms2-devel.git-d09c0d8a971c0333a0c8387113f744f0b9899fe4.patch
-Patch16: xmms2-devel.git-a42762549126b8facdab90cf01a17fa106bc8dce.patch
-Patch17: xmms2-devel.git-fccc583328ca58110a8b6e00ccb8c0bb1f6923ad.patch
+Patch5: xmms2-0.6DrMattDestruction-moresaneversioning.patch
URL: http://wiki.xmms2.xmms.se/
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
@@ -35,15 +23,12 @@
BuildRequires: python-devel
# RPMFusion only BuildRequires
BuildRequires: faad2-devel, libmad-devel, ffmpeg-devel, libmms-devel
-# Keep the mac plugin disabled until mac goes to free repo
-#BuildRequires: mac-devel
Requires: xmms2-avcodec = %{version}-%{release}
Requires: xmms2-faad = %{version}-%{release}
Requires: xmms2-mad = %{version}-%{release}
Requires: xmms2-mms = %{version}-%{release}
Requires: xmms2-mp4 = %{version}-%{release}
-#Requires: xmms2-mac = %%{version}-%%{release}
%description
@@ -78,15 +63,6 @@
An XMMS2 Plugin which provides support for audio formats provided by FAAD
(AAC and MP4).
-#%%package -n xmms2-mac
-#Summary: XMMS2 Plugin for APE audio format
-#License: GPLv2+
-#Group: Applications/Multimedia
-#Requires: xmms2 = %%{version}
-
-#%%description -n xmms2-mac
-#An XMMS2 Plugin for listening to Monkey's Audio files.
-
%package -n xmms2-mad
Summary: XMMS2 Plugin for MPEG Audio files
License: GPLv2+
@@ -117,21 +93,12 @@
%prep
%setup -q -n xmms2-%{version}%{codename}
-%patch0 -p1 -b .compilefix
+
%patch1 -p1 -b .plugins-use-libdir
%patch4 -p1 -b .noO0
%patch5 -p1 -b .versionsanity
-%patch10 -p1 -b .avcodec10
-%patch11 -p1 -b .avcodec11
-%patch12 -p1 -b .avcodec12
-%patch13 -p1 -b .avcodec13
-%patch14 -p1 -b .avcodec14
-%patch15 -p1 -b .avcodec15
-%patch16 -p1 -b .avcodec16
-%patch17 -p1 -b .avcodec17
-
# Clean up paths in wafadmin
WAFADMIN_FILES=`find wafadmin/ -type f`
@@ -150,16 +117,19 @@
--without-optionals=et \
--without-optionals=launcher \
--without-optionals=medialib-updater \
+ --without-optionals=nycli \
--without-optionals=perl \
--without-optionals=pixmaps \
--without-optionals=python \
--without-optionals=ruby \
+ --without-optionals=vistest \
--without-optionals=xmmsclient-ecore \
--without-optionals=xmmsclient++ \
--without-optionals=xmmsclient++-glib \
--without-plugins=airplay \
--without-plugins=alsa \
--without-plugins=ao \
+ --without-plugins=apefile \
--without-plugins=asf \
--without-plugins=asx \
--without-plugins=cdda \
@@ -171,15 +141,15 @@
--without-plugins=curl \
--without-plugins=file \
--without-plugins=flac \
+ --without-plugins=flv \
--without-plugins=gme \
--without-plugins=gvfs \
+ --without-plugins=html \
--without-plugins=ices \
--without-plugins=icymetaint \
--without-plugins=id3v2 \
--without-plugins=jack \
--without-plugins=karaoke \
- --without-plugins=lastfm \
- --without-plugins=lastfmeta \
--without-plugins=m3u \
--without-plugins=modplug \
--without-plugins=musepack \
@@ -194,6 +164,7 @@
--without-plugins=rss \
--without-plugins=samba \
--without-plugins=speex \
+ --without-plugins=tta \
--without-plugins=vocoder \
--without-plugins=vorbis \
--without-plugins=wave \
@@ -229,11 +200,6 @@
%doc COPYING.GPL
%{_libdir}/xmms2/libxmms_faad.so
-#%%files -n xmms2-mac
-#%%defattr(-,root,root,-)
-#%%doc COPYING.GPL
-#%%{_libdir}/xmms2/libxmms_mac.so
-
%files -n xmms2-mad
%defattr(-,root,root,-)
%doc COPYING.GPL
@@ -250,6 +216,9 @@
%{_libdir}/xmms2/libxmms_mp4.so
%changelog
+* Wed Aug 12 2009 John Doe <anonymous(a)american.us> 0.6-1
+- Update to 0.6
+
* Sun Mar 29 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 0.5-6
- rebuild for new F11 features
--- xmms2-0.5DrLecter-moresaneversioning.patch DELETED ---
--- xmms2-0.5DrLecter-use-libdir.patch DELETED ---
--- xmms2-devel.git-37578b59f5d7376213da74b3bf6b7c7f430d0bc9.patch DELETED ---
--- xmms2-devel.git-6f06f3409dfa82b7a3e7fdd682567d46fd65e262.patch DELETED ---
--- xmms2-devel.git-93aab85319fcc168db2d35058e996826a5c6a034.patch DELETED ---
--- xmms2-devel.git-a42762549126b8facdab90cf01a17fa106bc8dce.patch DELETED ---
--- xmms2-devel.git-a63d0f80f384ffd15c921af74f036d785d3b72df.patch DELETED ---
--- xmms2-devel.git-be6f8e111913433a0fee1ddfa3d234067695aadf.patch DELETED ---
--- xmms2-devel.git-d09c0d8a971c0333a0c8387113f744f0b9899fe4.patch DELETED ---
--- xmms2-devel.git-fae1d0cfd643e999d419162979b9c90d12a30002.patch DELETED ---
--- xmms2-devel.git-fccc583328ca58110a8b6e00ccb8c0bb1f6923ad.patch DELETED ---
15 years, 3 months
rpms/xmms2-nonfree/devel xmms2-0.6DrMattDestruction-moresaneversioning.patch, NONE, 1.1 xmms2-0.6DrMattDestruction-use-libdir.patch, NONE, 1.1 .cvsignore, 1.2, 1.3 sources, 1.2, 1.3 xmms2-nonfree.spec, 1.1, 1.2 xmms2-0.5DrLecter-moresaneversioning.patch, 1.1, NONE xmms2-0.5DrLecter-use-libdir.patch, 1.1, NONE xmms2-devel.git-37578b59f5d7376213da74b3bf6b7c7f430d0bc9.patch, 1.1, NONE
by Orcan Ogetbil
Author: oget
Update of /cvs/nonfree/rpms/xmms2-nonfree/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv19753
Modified Files:
.cvsignore sources xmms2-nonfree.spec
Added Files:
xmms2-0.6DrMattDestruction-moresaneversioning.patch
xmms2-0.6DrMattDestruction-use-libdir.patch
Removed Files:
xmms2-0.5DrLecter-moresaneversioning.patch
xmms2-0.5DrLecter-use-libdir.patch
xmms2-devel.git-37578b59f5d7376213da74b3bf6b7c7f430d0bc9.patch
Log Message:
* Wed Aug 12 2009 John Doe <anonymous(a)american.us> 0.6-1
- Update to 0.6
xmms2-0.6DrMattDestruction-moresaneversioning.patch:
--- NEW FILE xmms2-0.6DrMattDestruction-moresaneversioning.patch ---
diff -up xmms2-0.6DrMattDestruction/wscript.versionsanity xmms2-0.6DrMattDestruction/wscript
--- xmms2-0.6DrMattDestruction/wscript.versionsanity 2009-08-11 14:00:44.013247917 -0400
+++ xmms2-0.6DrMattDestruction/wscript 2009-08-11 14:01:48.446370522 -0400
@@ -23,7 +23,7 @@ import Build
import Configure
from logging import fatal, warning
-BASEVERSION="0.6 DrMattDestruction"
+BASEVERSION="0.6"
APPNAME='xmms2'
srcdir='.'
@@ -269,14 +269,15 @@ def configure(conf):
nam,changed = gittools.get_info()
conf.check_message("git commit id", "", True, nam)
- if Options.options.customversion:
- conf.env["VERSION"] = BASEVERSION + " (%s + %s)" % (nam, Options.options.customversion)
- else:
- dirty=""
- if changed:
- dirty="-dirty"
- conf.check_message("uncommitted changes", "", bool(changed))
- conf.env["VERSION"] = BASEVERSION + " (git commit: %s%s)" % (nam, dirty)
+ ## if Options.options.customversion:
+ ## conf.env["VERSION"] = BASEVERSION + " (%s + %s)" % (nam, Options.options.customversion)
+ ## else:
+ ## dirty=""
+ ## if changed:
+ ## dirty="-dirty"
+ ## conf.check_message("uncommitted changes", "", bool(changed))
+ ## conf.env["VERSION"] = BASEVERSION + " (git commit: %s%s)" % (nam, dirty)
+ conf.env["VERSION"] = BASEVERSION
## conf.env["CCFLAGS"] = Utils.to_list(conf.env["CCFLAGS"]) + ['-g', '-O0']
## conf.env["CXXFLAGS"] = Utils.to_list(conf.env["CXXFLAGS"]) + ['-g', '-O0']
xmms2-0.6DrMattDestruction-use-libdir.patch:
--- NEW FILE xmms2-0.6DrMattDestruction-use-libdir.patch ---
diff -up xmms2-0.6DrMattDestruction/src/include/xmms/wscript.BAD xmms2-0.6DrMattDestruction/src/include/xmms/wscript
--- xmms2-0.6DrMattDestruction/src/include/xmms/wscript.BAD 2009-08-11 15:17:57.020242949 -0400
+++ xmms2-0.6DrMattDestruction/src/include/xmms/wscript 2009-08-11 15:18:04.940381687 -0400
@@ -15,8 +15,7 @@ def configure(conf):
defs = {}
- defs['PKGLIBDIR'] = os.path.join(conf.env['PREFIX'],
- 'lib', 'xmms2')
+ defs['PKGLIBDIR'] = os.path.join(conf.env['LIBDIR'], 'xmms2')
defs['BINDIR'] = conf.env['BINDIR']
defs['SHAREDDIR'] = os.path.join(conf.env['PREFIX'],
'share', 'xmms2')
diff -up xmms2-0.6DrMattDestruction/waftools/tool.py.BAD xmms2-0.6DrMattDestruction/waftools/tool.py
--- xmms2-0.6DrMattDestruction/waftools/tool.py.BAD 2009-08-11 15:28:30.157242468 -0400
+++ xmms2-0.6DrMattDestruction/waftools/tool.py 2009-08-11 15:28:45.251245035 -0400
@@ -6,5 +6,5 @@ def add_install_flag(bld, obj):
if env['explicit_install_name']:
libname = obj.env["shlib_PATTERN"] % obj.target
- insname = os.path.join(obj.env["PREFIX"], 'lib', libname)
+ insname = os.path.join(obj.env["LIBDIR"], libname)
obj.env.append_unique("LINKFLAGS", '-install_name ' + insname)
diff -up xmms2-0.6DrMattDestruction/wafadmin/Tools/libtool.py.BAD xmms2-0.6DrMattDestruction/wafadmin/Tools/libtool.py
--- xmms2-0.6DrMattDestruction/wafadmin/Tools/libtool.py.BAD 2009-08-11 15:33:10.276383650 -0400
+++ xmms2-0.6DrMattDestruction/wafadmin/Tools/libtool.py 2009-08-11 15:33:33.646236480 -0400
@@ -45,7 +45,7 @@ def fakelibtool_build(task):
fu("current=0\n")
fu("age=0\nrevision=0\ninstalled=yes\nshouldnotlink=no\n")
fu("dlopen=''\ndlpreopen=''\n")
- fu("libdir='%s/lib'\n" % env['PREFIX'])
+ fu("libdir='%s'\n" % env['LIBDIR'])
dest.close()
return 0
@@ -75,7 +75,7 @@ def apply_link_libtool(self):
self.latask = latask
if Options.commands['install'] or Options.commands['uninstall']:
- Build.bld.install_files('PREFIX', 'lib', linktask.outputs[0].abspath(self.env), self.env)
+ Build.bld.install_files('LIBDIR', linktask.outputs[0].abspath(self.env), self.env)
@taskgen
@feature("libtool")
diff -up xmms2-0.6DrMattDestruction/wafadmin/Tools/ccroot.py.BAD xmms2-0.6DrMattDestruction/wafadmin/Tools/ccroot.py
--- xmms2-0.6DrMattDestruction/wafadmin/Tools/ccroot.py.BAD 2009-08-11 15:35:28.864257981 -0400
+++ xmms2-0.6DrMattDestruction/wafadmin/Tools/ccroot.py 2009-08-11 15:35:36.165270276 -0400
@@ -127,7 +127,7 @@ def vars_target_cprogram(self):
@feature('cstaticlib', 'dstaticlib', 'cshlib', 'dshlib')
@before('apply_core')
def vars_target_cstaticlib(self):
- self.default_install_path = '${PREFIX}/lib'
+ self.default_install_path = '${LIBDIR}'
if sys.platform in ['win32', 'cygwin']:
# on win32, libraries need the execute bit, else we
# get 'permission denied' when using them (issue 283)
diff -up xmms2-0.6DrMattDestruction/wafadmin/Tools/gnu_dirs.py.BAD xmms2-0.6DrMattDestruction/wafadmin/Tools/gnu_dirs.py
--- xmms2-0.6DrMattDestruction/wafadmin/Tools/gnu_dirs.py.BAD 2009-08-11 15:35:49.334273249 -0400
+++ xmms2-0.6DrMattDestruction/wafadmin/Tools/gnu_dirs.py 2009-08-11 15:36:35.058242288 -0400
@@ -39,7 +39,7 @@ libexecdir, program executables, $(EXEC_
sysconfdir, read-only single-machine data, $(PREFIX)/etc
sharedstatedir, modifiable architecture-independent data, $(PREFIX)/com
localstatedir, modifiable single-machine data, $(PREFIX)/var
-libdir, object code libraries, $(EXEC_PREFIX)/lib
+libdir, object code libraries, $(LIBDIR)
includedir, C header files, $(PREFIX)/include
oldincludedir, C header files for non-gcc, /usr/include
datarootdir, read-only arch.-independent data root, $(PREFIX)/share
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/xmms2-nonfree/devel/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- .cvsignore 9 Apr 2009 19:43:48 -0000 1.2
+++ .cvsignore 12 Aug 2009 09:32:45 -0000 1.3
@@ -1 +1 @@
-xmms2-0.5DrLecter.tar.bz2
+xmms2-0.6DrMattDestruction.tar.bz2
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/xmms2-nonfree/devel/sources,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sources 9 Apr 2009 19:43:48 -0000 1.2
+++ sources 12 Aug 2009 09:32:45 -0000 1.3
@@ -1 +1 @@
-9033ef15be9069ef43aeb4b6360a4d36 xmms2-0.5DrLecter.tar.bz2
+954fb9c76b5db5e324a105e81b273200 xmms2-0.6DrMattDestruction.tar.bz2
Index: xmms2-nonfree.spec
===================================================================
RCS file: /cvs/nonfree/rpms/xmms2-nonfree/devel/xmms2-nonfree.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- xmms2-nonfree.spec 9 Apr 2009 19:43:48 -0000 1.1
+++ xmms2-nonfree.spec 12 Aug 2009 09:32:45 -0000 1.2
@@ -1,22 +1,20 @@
-%global codename DrLecter
+%global codename DrMattDestruction
Name: xmms2-nonfree
Summary: Nonfree plugins for XMMS2
-Version: 0.5
-Release: 3%{?dist}
+Version: 0.6
+Release: 1%{?dist}
License: LGPLv2+
Group: Applications/Multimedia
# Fedora's xmms2 has to use a sanitized tarball, we don't.
Source0: http://downloads.sourceforge.net/xmms2/xmms2-%{version}%{codename}.tar.bz2
-# From upstream git (Compilation fixes)
-Patch0: xmms2-devel.git-37578b59f5d7376213da74b3bf6b7c7f430d0bc9.patch
# Use libdir properly for Fedora multilib
-Patch1: xmms2-0.5DrLecter-use-libdir.patch
+Patch1: xmms2-0.6DrMattDestruction-use-libdir.patch
# Don't add extra CFLAGS, we're smart enough, thanks.
Patch4: xmms2-0.5DrLecter-no-O0.patch
# More sane versioning
-Patch5: xmms2-0.5DrLecter-moresaneversioning.patch
+Patch5: xmms2-0.6DrMattDestruction-moresaneversioning.patch
URL: http://wiki.xmms2.xmms.se/
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
@@ -28,7 +26,6 @@
Provides: xmms2-mac = %{version}-%{release}
-
%description
XMMS2 is an audio framework, but it is not a general multimedia player - it
will not play videos. It has a modular framework and plugin architecture for
@@ -44,7 +41,7 @@
%prep
%setup -q -n xmms2-%{version}%{codename}
-%patch0 -p1 -b .compilefix
+
%patch1 -p1 -b .plugins-use-libdir
%patch4 -p1 -b .noO0
@@ -78,6 +75,7 @@
--without-plugins=airplay \
--without-plugins=alsa \
--without-plugins=ao \
+ --without-plugins=apefile \
--without-plugins=asf \
--without-plugins=asx \
--without-plugins=cdda \
@@ -89,15 +87,15 @@
--without-plugins=curl \
--without-plugins=file \
--without-plugins=flac \
+ --without-plugins=flv \
--without-plugins=gme \
--without-plugins=gvfs \
+ --without-plugins=html \
--without-plugins=ices \
--without-plugins=icymetaint \
--without-plugins=id3v2 \
--without-plugins=jack \
--without-plugins=karaoke \
- --without-plugins=lastfm \
- --without-plugins=lastfmeta \
--without-plugins=m3u \
--without-plugins=modplug \
--without-plugins=musepack \
@@ -112,6 +110,7 @@
--without-plugins=rss \
--without-plugins=samba \
--without-plugins=speex \
+ --without-plugins=tta \
--without-plugins=vocoder \
--without-plugins=vorbis \
--without-plugins=wave \
@@ -154,6 +153,9 @@
%{_libdir}/xmms2/libxmms_mac.so
%changelog
+* Wed Aug 12 2009 John Doe <anonymous(a)american.us> 0.6-1
+- Update to 0.6
+
* Thu Apr 09 2009 John Doe <anonymous(a)american.us> 0.5-3
- License is LGPLv2+
- Some SPEC file cosmetics
--- xmms2-0.5DrLecter-moresaneversioning.patch DELETED ---
--- xmms2-0.5DrLecter-use-libdir.patch DELETED ---
--- xmms2-devel.git-37578b59f5d7376213da74b3bf6b7c7f430d0bc9.patch DELETED ---
15 years, 3 months
rpms/vlc/devel sources, 1.20, 1.21 .cvsignore, 1.20, 1.21 vlc.spec, 1.56, 1.57
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/vlc/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv11792
Modified Files:
sources .cvsignore vlc.spec
Log Message:
- Conditionalize libass until stabilized ABI.
- Update to 1.0-bugfix 20090812
Index: sources
===================================================================
RCS file: /cvs/free/rpms/vlc/devel/sources,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- sources 28 Jul 2009 11:02:28 -0000 1.20
+++ sources 12 Aug 2009 08:59:56 -0000 1.21
@@ -1 +1,2 @@
6e299d373e7751bb36de001cdc6a2989 vlc-1.0.1.tar.bz2
+2df9319d666071efd2a5b9f4a04e3a07 vlc-1.0-bugfix-20090812.tar.bz2
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/vlc/devel/.cvsignore,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- .cvsignore 28 Jul 2009 11:02:28 -0000 1.20
+++ .cvsignore 12 Aug 2009 08:59:56 -0000 1.21
@@ -1 +1,2 @@
vlc-1.0.1.tar.bz2
+vlc-1.0-bugfix-20090812.tar.bz2
Index: vlc.spec
===================================================================
RCS file: /cvs/free/rpms/vlc/devel/vlc.spec,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -r1.56 -r1.57
--- vlc.spec 28 Jul 2009 15:41:21 -0000 1.56
+++ vlc.spec 12 Aug 2009 08:59:56 -0000 1.57
@@ -8,7 +8,7 @@
Summary: Multi-platform MPEG, DVD, and DivX player
Name: vlc
Version: 1.0.1
-Release: 1%{?dist}
+Release: 2%{?dist}
License: GPLv2+
Group: Applications/Multimedia
URL: http://www.videolan.org
@@ -22,7 +22,7 @@
Patch2: 0002-Default-aout-for-pulse.patch
Patch3: 300_all_pic.patch
Patch4: 310_all_mmx_pic.patch
-Patch5: vlc-1.0-bugfix-bp_zip_qt4.patch
+Patch5: vlc-1.0-bugfix-20090812.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: desktop-file-utils
@@ -54,7 +54,7 @@
BuildRequires: hal-devel
BuildRequires: jack-audio-connection-kit-devel
BuildRequires: libavc1394-devel
-BuildRequires: libass-devel
+%{?_with_libass:BuildRequires: libass-devel >= 0.9.7}
BuildRequires: libcaca-devel
BuildRequires: libcddb-devel
BuildRequires: libcdio-devel >= 0.77-3
@@ -238,7 +238,7 @@
%patch3 -p1 -b .dmo_pic
sed -i.dmo_pic -e 's/fno-PIC/fPIC/' libs/loader/Makefile.in
%patch4 -p1 -b .mmx_pic
-%patch5 -p1 -b .bp5
+%patch5 -p1 -b .bf
rm modules/access/videodev2.h
@@ -292,7 +292,7 @@
--enable-tarkin \
--enable-theora \
--enable-dirac \
- --enable-libass \
+%{?_with_libass:--enable-libass} \
--enable-xcb \
--enable-svg \
--enable-snapshot \
@@ -549,6 +549,10 @@
%changelog
+* Wed Aug 12 2009 kwizart < kwizart at gmail.com > - 1.0.1-2
+- Conditionalize libass until stabilized ABI.
+- Update to 1.0-bugfix 20090812
+
* Tue Jul 28 2009 kwizart < kwizart at gmail.com > - 1.0.1-1
- Update to 1.0.1 (Final)
- Improve conditionals
15 years, 3 months
rpms/vboxgtk/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1
by Thorsten Leemhuis
Author: thl
Update of /cvs/free/rpms/vboxgtk/devel
In directory se02.es.rpmfusion.net:/home/rpmfusion/thl/nonfree/owners/tmpcvsNo5542/rpms/vboxgtk/devel
Added Files:
.cvsignore Makefile sources
Log Message:
Setup of module vboxgtk
--- NEW FILE .cvsignore ---
--- NEW FILE Makefile ---
# Makefile for source rpm: vboxgtk
# $Id: Makefile,v 1.1 2009/08/12 08:22:09 thl Exp $
NAME := vboxgtk
SPECFILE = $(firstword $(wildcard *.spec))
define find-makefile-common
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
endef
MAKEFILE_COMMON := $(shell $(find-makefile-common))
ifeq ($(MAKEFILE_COMMON),)
# attept a checkout
define checkout-makefile-common
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
endef
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
endif
include $(MAKEFILE_COMMON)
--- NEW FILE sources ---
15 years, 3 months
rpms/vboxgtk Makefile, NONE, 1.1 import.log, NONE, 1.1 pkg.acl, NONE, 1.1
by Thorsten Leemhuis
Author: thl
Update of /cvs/free/rpms/vboxgtk
In directory se02.es.rpmfusion.net:/home/rpmfusion/thl/nonfree/owners/tmpcvsNo5542/rpms/vboxgtk
Added Files:
Makefile import.log pkg.acl
Log Message:
Setup of module vboxgtk
--- NEW FILE Makefile ---
# Top level Makefile for module vboxgtk
all : CVS/Root common-update
@cvs update
common-update : common
@cd common && cvs update
common : CVS/Root
@cvs checkout common
CVS/Root :
@echo "ERROR: This does not look like a CVS checkout" && exit 1
clean :
@find . -type f -name *~ -exec rm -fv {} \;
--- NEW FILE import.log ---
--- NEW FILE pkg.acl ---
15 years, 3 months
rpms/vboxgtk/devel - New directory
by Thorsten Leemhuis
Author: thl
Update of /cvs/free/rpms/vboxgtk/devel
In directory se02.es.rpmfusion.net:/home/rpmfusion/thl/nonfree/owners/tmpcvsNo5542/rpms/vboxgtk/devel
Log Message:
Directory /cvs/free/rpms/vboxgtk/devel added to the repository
15 years, 3 months