rpms/ogre-cg/F-9 ogre-1.4.9-cg.patch, NONE, 1.1 ogre-cg.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2
by Alexey Torkhov
Author: atorkhov
Update of /cvs/nonfree/rpms/ogre-cg/F-9
In directory se02.es.rpmfusion.net:/tmp/cvs-serv20913
Modified Files:
.cvsignore sources
Added Files:
ogre-1.4.9-cg.patch ogre-cg.spec
Log Message:
Backported to F-9.
ogre-1.4.9-cg.patch:
--- NEW FILE ogre-1.4.9-cg.patch ---
diff -ur ogre/acinclude.m4 ogre.new/acinclude.m4
--- ogre/acinclude.m4 2007-09-09 23:53:55.000000000 +0400
+++ ogre.new/acinclude.m4 2008-09-28 00:06:23.000000000 +0400
@@ -305,19 +305,7 @@
[build_exr=$enableval],
[build_exr=no])
-if test "x$build_exr" = "xyes" ; then
- PKG_CHECK_MODULES(OPENEXR, OpenEXR, [build_exr=yes], [build_exr=no])
-
- if test "x$build_exr" = "xyes" ; then
- AC_CONFIG_FILES([ PlugIns/EXRCodec/Makefile \
- PlugIns/EXRCodec/src/Makefile \
- PlugIns/EXRCodec/include/Makefile])
- AC_SUBST(OPENEXR_CFLAGS)
- AC_SUBST(OPENEXR_LIBS)
-
- fi
-
-fi
+build_exr="no"
AM_CONDITIONAL(BUILD_EXRPLUGIN, test x$build_exr = xyes)
@@ -446,19 +434,7 @@
AC_DEFUN([OGRE_CHECK_CEGUI], [
PKG_CHECK_MODULES(CEGUI, CEGUI >= 0.5.0,
[build_cegui_sample=true], [build_cegui_sample=false])
- if test x$build_cegui_sample = xtrue; then
- AC_CONFIG_FILES([Samples/Common/CEGUIRenderer/Makefile \
- Samples/Common/CEGUIRenderer/CEGUI-OGRE.pc
- Samples/Common/CEGUIRenderer/src/Makefile \
- Samples/Common/CEGUIRenderer/include/Makefile \
- Samples/Gui/Makefile \
- Samples/Gui/src/Makefile])
- AC_SUBST(CEGUI_CFLAGS)
- AC_SUBST(CEGUI_LIBS)
- AC_MSG_RESULT([CEGUI available, Gui and FacialAnimation samples will be built])
- else
- AC_MSG_RESULT([CEGUI not available, Gui and FacialAnimation samples will not be built])
- fi
+ build_cegui_sample="false"
AM_CONDITIONAL([HAVE_CEGUI], [test x$build_cegui_sample = xtrue])
])
diff -ur ogre/configure.in ogre.new/configure.in
--- ogre/configure.in 2008-06-16 14:29:36.000000000 +0400
+++ ogre.new/configure.in 2008-09-28 00:07:40.000000000 +0400
@@ -78,9 +78,13 @@
AC_SUBST(ZZIPLIB_CFLAGS)
AC_SUBST(ZZIPLIB_LIBS)
+PKG_CHECK_MODULES(OGRE, OGRE)
+CXXFLAGS="$CXXFLAGS $OGRE_CFLAGS"
+LDFLAGS="$LDFLAGS $OGRE_LIBS"
+
dnl Get the GL and Platform libs for target build
OGRE_GET_PLATFORM
-OGRE_GET_GLSUPPORT
+dnl OGRE_GET_GLSUPPORT
dnl Find the optional components we should build
OGRE_CHECK_GUI
@@ -88,7 +92,9 @@
OGRE_CHECK_THREADING
OGRE_CHECK_FREEIMAGE
OGRE_CHECK_DEVIL
+AC_LANG_PUSH(C++)
OGRE_CHECK_CG
+AC_LANG_POP
OGRE_CHECK_OPENEXR
OGRE_CHECK_DX9
OGRE_CHECK_SSE
@@ -120,135 +126,10 @@
dnl Create the makefiles
AC_CONFIG_FILES([Makefile \
- OgreMain/Makefile \
- OgreMain/src/Makefile \
- OgreMain/include/Makefile \
- OgreMain/include/GLX/Makefile \
- OgreMain/include/gtk/Makefile \
PlugIns/Makefile \
- PlugIns/BSPSceneManager/Makefile \
- PlugIns/BSPSceneManager/src/Makefile \
- PlugIns/BSPSceneManager/include/Makefile \
PlugIns/CgProgramManager/Makefile \
PlugIns/CgProgramManager/src/Makefile \
- PlugIns/CgProgramManager/include/Makefile \
- PlugIns/OctreeSceneManager/Makefile \
- PlugIns/OctreeSceneManager/src/Makefile \
- PlugIns/OctreeSceneManager/include/Makefile \
- PlugIns/ParticleFX/Makefile \
- PlugIns/ParticleFX/src/Makefile \
- PlugIns/ParticleFX/include/Makefile \
- RenderSystems/Makefile \
- RenderSystems/GL/Makefile \
- RenderSystems/GL/src/Makefile \
- RenderSystems/GL/include/Makefile \
- RenderSystems/GL/src/atifs/Makefile \
- RenderSystems/GL/src/atifs/include/Makefile \
- RenderSystems/GL/src/atifs/src/Makefile \
- RenderSystems/GL/src/GLSL/Makefile \
- RenderSystems/GL/src/GLSL/include/Makefile \
- RenderSystems/GL/src/GLSL/src/Makefile \
- RenderSystems/GL/src/nvparse/Makefile \
- RenderSystems/Direct3D9/Makefile \
- RenderSystems/Direct3D9/src/Makefile \
- RenderSystems/Direct3D9/include/Makefile \
- Samples/Makefile \
- Samples/Common/Makefile \
- Samples/Common/include/Makefile \
- Samples/Common/bin/Makefile \
- Samples/BezierPatch/Makefile \
- Samples/BezierPatch/src/Makefile \
- Samples/BezierPatch/include/Makefile \
- Samples/CameraTrack/Makefile \
- Samples/CameraTrack/src/Makefile \
- Samples/CelShading/Makefile \
- Samples/CelShading/src/Makefile \
- Samples/Compositor/Makefile \
- Samples/Compositor/src/Makefile \
- Samples/Compositor/include/Makefile \
- Samples/CubeMapping/Makefile \
- Samples/CubeMapping/src/Makefile \
- Samples/CubeMapping/include/Makefile \
- Samples/DeferredShading/Makefile \
- Samples/DeferredShading/src/Makefile \
- Samples/DeferredShading/include/Makefile \
- Samples/Dot3Bump/Makefile \
- Samples/Dot3Bump/src/Makefile \
- Samples/EnvMapping/Makefile \
- Samples/EnvMapping/src/Makefile \
- Samples/EnvMapping/include/Makefile \
- Samples/FacialAnimation/Makefile \
- Samples/FacialAnimation/src/Makefile \
- Samples/Fresnel/Makefile \
- Samples/Fresnel/src/Makefile \
- Samples/Grass/Makefile \
- Samples/Grass/src/Makefile \
- Samples/Transpacency/Makefile \
- Samples/Transpacency/src/Makefile \
- Samples/Transpacency/include/Makefile \
- Samples/Lighting/Makefile \
- Samples/Lighting/src/Makefile \
- Samples/Lighting/include/Makefile \
- Samples/OceanDemo/Makefile \
- Samples/OceanDemo/src/Makefile \
- Samples/OceanDemo/include/Makefile \
- Samples/ParticleFX/Makefile \
- Samples/ParticleFX/src/Makefile \
- Samples/ParticleFX/include/Makefile \
- Samples/RenderToTexture/Makefile \
- Samples/RenderToTexture/src/Makefile \
- Samples/TextureFX/Makefile \
- Samples/TextureFX/src/Makefile \
- Samples/TextureFX/include/Makefile \
- Samples/Shadows/Makefile \
- Samples/Shadows/src/Makefile \
- Samples/SkyBox/Makefile \
- Samples/SkyBox/src/Makefile \
- Samples/SkyBox/include/Makefile \
- Samples/SkyDome/Makefile \
- Samples/SkyDome/src/Makefile \
- Samples/SkyDome/include/Makefile \
- Samples/SkyPlane/Makefile \
- Samples/SkyPlane/src/Makefile \
- Samples/SkyPlane/include/Makefile \
- Samples/Smoke/Makefile \
- Samples/Smoke/src/Makefile \
- Samples/Smoke/include/Makefile \
- Samples/BSP/Makefile \
- Samples/BSP/src/Makefile \
- Samples/SkeletalAnimation/Makefile \
- Samples/SkeletalAnimation/src/Makefile \
- Samples/SkeletalAnimation/include/Makefile \
- Samples/Terrain/Makefile \
- Samples/Terrain/src/Makefile \
- Samples/Terrain/include/Makefile \
- Samples/Water/Makefile \
- Samples/Water/src/Makefile \
- Samples/Water/include/Makefile \
- Samples/DynTex/Makefile \
- Samples/DynTex/src/Makefile \
- Samples/DynTex/include/Makefile \
- Samples/VolumeTex/Makefile \
- Samples/VolumeTex/src/Makefile \
- Samples/VolumeTex/include/Makefile \
- Samples/Instancing/Makefile \
- Samples/Instancing/src/Makefile \
- Samples/Instancing/include/Makefile \
- Tests/Makefile \
- Tests/src/Makefile \
- Tools/Makefile \
- Tools/MaterialUpgrader/Makefile \
- Tools/MaterialUpgrader/src/Makefile \
- Tools/MaterialUpgrader/include/Makefile \
- Tools/MeshUpgrader/Makefile \
- Tools/MeshUpgrader/src/Makefile \
- Tools/XMLConverter/Makefile \
- Tools/XMLConverter/src/Makefile \
- Tools/XMLConverter/include/Makefile \
- Tools/LightwaveConverter/Makefile \
- Tools/LightwaveConverter/src/Makefile \
- Tools/LightwaveConverter/include/Makefile \
- OGRE.pc
+ PlugIns/CgProgramManager/include/Makefile
])
AC_OUTPUT
diff -ur ogre/Makefile.am ogre.new/Makefile.am
--- ogre/Makefile.am 2007-01-07 00:18:24.000000000 +0300
+++ ogre.new/Makefile.am 2008-09-28 00:06:23.000000000 +0400
@@ -1,6 +1,3 @@
-SUBDIRS = OgreMain PlugIns RenderSystems Samples Tools Tests
+SUBDIRS = PlugIns
ACLOCAL_AMFLAGS = -I Scripts/m4
AUTOMAKE_OPTIONS = foreign
-
-pkgconfigdir = $(libdir)/pkgconfig
-pkgconfig_DATA = OGRE.pc
diff -ur ogre/PlugIns/Makefile.am ogre.new/PlugIns/Makefile.am
--- ogre/PlugIns/Makefile.am 2004-12-29 01:19:52.000000000 +0300
+++ ogre.new/PlugIns/Makefile.am 2008-09-28 00:06:23.000000000 +0400
@@ -1,9 +1,5 @@
-SUBDIRS = BSPSceneManager ParticleFX OctreeSceneManager
+SUBDIRS =
if BUILD_CGPLUGIN
SUBDIRS += CgProgramManager
endif
-
-if BUILD_EXRPLUGIN
-SUBDIRS += EXRCodec
-endif
--- NEW FILE ogre-cg.spec ---
Name: ogre-cg
Version: 1.4.7
Release: 2%{?dist}
Summary: Object-Oriented Graphics Rendering Engine
License: LGPLv2+
Group: System Environment/Libraries
URL: http://www.ogre3d.org/
# This is http://downloads.sourceforge.net/ogre/ogre-v%(echo %{version} | tr . -).tar.bz2
# stripped all except CgProgramManager plugin and core files needed to build it
Source0: ogre-%{version}-cg.tar.bz2
# Patch striping everything except CgProgramManager from compilation
Patch0: ogre-1.4.9-cg.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: zziplib-devel libXaw-devel libXrandr-devel libXxf86vm-devel
BuildRequires: autoconf automake libtool
# We are building only plugin, so we need main lib
BuildRequires: ogre-devel
# Cg package
BuildRequires: Cg
ExclusiveArch: i386 x86_64
Requires: ogre = %{version}
%description
This package contains the OGRE CgProgramManager plugin.
%prep
%setup -q -n ogre
%patch0 -p1
# Rebuilding autotools-generated files
autoreconf -v -f -i
%build
%configure --enable-cg --disable-devil --disable-freeimage --disable-openexr
# Don't use rpath!
sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
make %{?_smp_mflags}
%install
rm -rf $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT
rm $RPM_BUILD_ROOT%{_libdir}/OGRE/*.la
%clean
rm -rf $RPM_BUILD_ROOT
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%defattr(-,root,root,-)
%doc AUTHORS BUGS COPYING
%{_libdir}/OGRE/*.so
%changelog
* Sun Sep 18 2008 Alexey Torkhov <atorkhov(a)gmail.com> 1.4.7-2
- Packaged OGRE 1.4.7 Cg plugin basing on Fedora package by Hans de Goede.
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/ogre-cg/F-9/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore 28 Sep 2008 09:31:48 -0000 1.1
+++ .cvsignore 28 Sep 2008 19:56:02 -0000 1.2
@@ -0,0 +1 @@
+ogre-1.4.7-cg.tar.bz2
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/ogre-cg/F-9/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 28 Sep 2008 09:31:48 -0000 1.1
+++ sources 28 Sep 2008 19:56:02 -0000 1.2
@@ -0,0 +1 @@
+0c273bd948e09bc9d0268ca1dc8ed364 ogre-1.4.7-cg.tar.bz2
16 years, 1 month
rpms/ffmpeg/F-8 .cvsignore, 1.2, 1.3 ffmpeg-snapshot.sh, 1.1, 1.2 ffmpeg.spec, 1.1, 1.2 sources, 1.2, 1.3
by Dominik Mierzejewski
Author: rathann
Update of /cvs/free/rpms/ffmpeg/F-8
In directory se02.es.rpmfusion.net:/tmp/cvs-serv18461
Modified Files:
.cvsignore ffmpeg-snapshot.sh ffmpeg.spec sources
Log Message:
* Thu Sep 18 2008 Dominik Mierzejewski <rpm at greysector.net> - 0.4.9-0.48.20080908
- 20080908 snapshot (r25261), last before ABI change
- fix build --with amr
- update snapshot.sh
- drop liba52 support, native ac3 decoder is better in every way
- use CFLAGS more similar to upstream
- enable X11 grabbing input
- enable libavfilter
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/ffmpeg/F-8/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- .cvsignore 5 Aug 2008 17:08:38 -0000 1.2
+++ .cvsignore 28 Sep 2008 19:08:40 -0000 1.3
@@ -1 +1 @@
-ffmpeg-20080614.tar.bz2
+ffmpeg-20080908.tar.bz2
Index: ffmpeg-snapshot.sh
===================================================================
RCS file: /cvs/free/rpms/ffmpeg/F-8/ffmpeg-snapshot.sh,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ffmpeg-snapshot.sh 5 Aug 2008 17:08:38 -0000 1.1
+++ ffmpeg-snapshot.sh 28 Sep 2008 19:08:40 -0000 1.2
@@ -17,7 +17,7 @@
cd "$tmp"
svn checkout -r {$svn} svn://svn.mplayerhq.hu/ffmpeg/trunk ffmpeg-$svn
cd ffmpeg-$svn
-./version.sh .
+./version.sh . version.h
find . -type d -name .svn -print0 | xargs -0r rm -rf
sed -i -e '/^\.PHONY: version\.h$/d' Makefile
cd ..
Index: ffmpeg.spec
===================================================================
RCS file: /cvs/free/rpms/ffmpeg/F-8/ffmpeg.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ffmpeg.spec 5 Aug 2008 17:08:38 -0000 1.1
+++ ffmpeg.spec 28 Sep 2008 19:08:40 -0000 1.2
@@ -1,12 +1,12 @@
# TODO: add make test to %%check section
-%define svn 20080614
+%define svn 20080908
%define faad2min 1:2.6.1
Summary: Digital VCR and streaming server
Name: ffmpeg
Version: 0.4.9
-Release: 0.47.%{svn}%{?dist}
+Release: 0.48.%{svn}%{?dist}
License: GPLv2+
Group: Applications/Multimedia
URL: http://ffmpeg.org/
@@ -15,7 +15,6 @@
Patch4: %{name}-asmreg.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
-BuildRequires: a52dec-devel
%{?_with_amr:BuildRequires: amrnb-devel amrwb-devel}
BuildRequires: zlib-devel
BuildRequires: lame-devel
@@ -30,6 +29,8 @@
BuildRequires: texi2html
BuildRequires: faac-devel
BuildRequires: x264-devel >= 0.0.0-0.14.20080613
+#don't enable until PIC issues on x86_64 are fixed ('ff_imdct_half_sse' in libavcodec/i386/fft_sse.c)
+#BuildRequires: yasm
%description
FFMpeg is a complete and free Internet live audio and video
@@ -76,10 +77,9 @@
--shlibdir=%{_libdir} \
--mandir=%{_mandir} \
--arch=%{_target_cpu} \
- --extra-cflags="$RPM_OPT_FLAGS" \
- %{?_with_amr:--enable-libamr-nb --enable-libamr-wb} \
+ --extra-cflags="$RPM_OPT_FLAGS -D_ISOC99_SOURCE -D_POSIX_C_SOURCE=200112 -fasm -std=c99 -fno-math-errno" \
+ %{?_with_amr:--enable-libamr-nb --enable-libamr-wb --enable-nonfree} \
--enable-libdc1394 \
- --enable-liba52 \
--enable-libfaac \
--enable-libfaad \
--enable-libgsm \
@@ -88,6 +88,9 @@
--enable-libvorbis \
--enable-libx264 \
--enable-libxvid \
+ --enable-x11grab \
+ --enable-avfilter \
+ --enable-avfilter-lavf \
--enable-postproc \
--enable-swscale \
--enable-pthreads \
@@ -132,6 +135,7 @@
%defattr(-,root,root,-)
%{_libdir}/libavcodec.so.*
%{_libdir}/libavdevice.so.*
+%{_libdir}/libavfilter.so.*
%{_libdir}/libavformat.so.*
%{_libdir}/libavutil.so.*
%{_libdir}/libpostproc.so.*
@@ -144,6 +148,7 @@
%{_includedir}/ffmpeg
%{_libdir}/libavcodec.so
%{_libdir}/libavdevice.so
+%{_libdir}/libavfilter.so
%{_libdir}/libavformat.so
%{_libdir}/libavutil.so
%{_libdir}/libpostproc.so
@@ -151,12 +156,22 @@
%{_libdir}/pkgconfig/libswscale.pc
%{_libdir}/pkgconfig/libavcodec.pc
%{_libdir}/pkgconfig/libavdevice.pc
+%{_libdir}/pkgconfig/libavfilter.pc
%{_libdir}/pkgconfig/libavformat.pc
%{_libdir}/pkgconfig/libavutil.pc
%{_libdir}/pkgconfig/libpostproc.pc
%changelog
+* Thu Sep 18 2008 Dominik Mierzejewski <rpm at greysector.net> - 0.4.9-0.48.20080908
+- 20080908 snapshot (r25261), last before ABI change
+- fix build --with amr
+- update snapshot.sh
+- drop liba52 support, native ac3 decoder is better in every way
+- use CFLAGS more similar to upstream
+- enable X11 grabbing input
+- enable libavfilter
+
* Sun Aug 03 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info - 0.4.9-0.47.20080614
- rebuild
Index: sources
===================================================================
RCS file: /cvs/free/rpms/ffmpeg/F-8/sources,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sources 5 Aug 2008 17:08:38 -0000 1.2
+++ sources 28 Sep 2008 19:08:40 -0000 1.3
@@ -1 +1 @@
-322a5f53e33b5b4f312ed798d14c6ced ffmpeg-20080614.tar.bz2
+0165b69b8e5bfc7a82fcf2247269b84b ffmpeg-20080908.tar.bz2
16 years, 1 month
rpms/rpmfusion-free-release/F-9 rpmfusion-free-release.spec, 1.2, 1.3 rpmfusion-free-updates.repo, 1.1, 1.2
by Thorsten Leemhuis
Author: thl
Update of /cvs/free/rpms/rpmfusion-free-release/F-9
In directory se02.es.rpmfusion.net:/tmp/cvs-serv11885/F-9
Modified Files:
rpmfusion-free-release.spec rpmfusion-free-updates.repo
Log Message:
Fix rpmfusion-rpmfusion typo (again)
Index: rpmfusion-free-release.spec
===================================================================
RCS file: /cvs/free/rpms/rpmfusion-free-release/F-9/rpmfusion-free-release.spec,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- rpmfusion-free-release.spec 28 Sep 2008 11:35:20 -0000 1.2
+++ rpmfusion-free-release.spec 28 Sep 2008 17:16:54 -0000 1.3
@@ -3,7 +3,7 @@
Name: rpmfusion-%{repo}-release
Version: 9
-Release: 7
+Release: 8
Summary: RPM Fusion (%{repo}) Repository Configuration
Group: System Environment/Base
@@ -85,7 +85,8 @@
%config(noreplace) %{_sysconfdir}/yum.repos.d/*
%changelog
-!!! not build yet
+* Sun Sep 28 2008 Thorsten Leemhuis <fedora at leemhuis.info> - 9-8
+- Fix rpmfusion-rpmfusion typo (again)
- update summary to properly say free or nonfree
* Sat Sep 27 2008 Stewart Adam <s.adam at diffingo.com> - 9-7
Index: rpmfusion-free-updates.repo
===================================================================
RCS file: /cvs/free/rpms/rpmfusion-free-release/F-9/rpmfusion-free-updates.repo,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- rpmfusion-free-updates.repo 27 Sep 2008 19:59:21 -0000 1.1
+++ rpmfusion-free-updates.repo 28 Sep 2008 17:16:54 -0000 1.2
@@ -2,7 +2,7 @@
# The debuginfo and source repos will also be switching from baseurl to a
# mirror list.
-[rpmfusion-rpmfusion-free-updates]
+[rpmfusion-free-updates]
name=RPM Fusion for Fedora $releasever - Free - Updates
failovermethod=priority
#baseurl=http://download.rpmfusion.org/free/fedora/updates/$releasever/$basearch/
@@ -12,7 +12,7 @@
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-free-fedora
-[rpmfusion-rpmfusion-free-updates-debuginfo]
+[rpmfusion-free-updates-debuginfo]
name=RPM Fusion for Fedora $releasever - Free - Updates Debug
failovermethod=priority
baseurl=http://download1.rpmfusion.org/free/fedora/updates/$releasever/$b...
@@ -21,7 +21,7 @@
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-free-fedora
-[rpmfusion-rpmfusion-free-updates-source]
+[rpmfusion-free-updates-source]
name=RPM Fusion for Fedora $releasever - Free - Updates Source
failovermethod=priority
baseurl=http://download1.rpmfusion.org/free/fedora/updates/$releasever/SR...
16 years, 1 month
rpms/rpmfusion-free-release/F-8 rpmfusion-free-release.spec, 1.2, 1.3 rpmfusion-free-updates.repo, 1.1, 1.2
by Thorsten Leemhuis
Author: thl
Update of /cvs/free/rpms/rpmfusion-free-release/F-8
In directory se02.es.rpmfusion.net:/tmp/cvs-serv11885/F-8
Modified Files:
rpmfusion-free-release.spec rpmfusion-free-updates.repo
Log Message:
Fix rpmfusion-rpmfusion typo (again)
Index: rpmfusion-free-release.spec
===================================================================
RCS file: /cvs/free/rpms/rpmfusion-free-release/F-8/rpmfusion-free-release.spec,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- rpmfusion-free-release.spec 28 Sep 2008 11:35:20 -0000 1.2
+++ rpmfusion-free-release.spec 28 Sep 2008 17:16:54 -0000 1.3
@@ -3,7 +3,7 @@
Name: rpmfusion-%{repo}-release
Version: 8
-Release: 1
+Release: 2
Summary: RPM Fusion (%{repo}) Repository Configuration
Group: System Environment/Base
@@ -85,7 +85,8 @@
%config(noreplace) %{_sysconfdir}/yum.repos.d/*
%changelog
-!!! not build yet
+* Sun Sep 28 2008 Thorsten Leemhuis <fedora at leemhuis.info> - 8-2
+- Fix rpmfusion-rpmfusion typo (again)
- update summary to properly say free or nonfree
* Sat Sep 27 2008 Thorsten Leemhuis <fedora at leemhuis.info> - 8-1
Index: rpmfusion-free-updates.repo
===================================================================
RCS file: /cvs/free/rpms/rpmfusion-free-release/F-8/rpmfusion-free-updates.repo,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- rpmfusion-free-updates.repo 27 Sep 2008 20:20:00 -0000 1.1
+++ rpmfusion-free-updates.repo 28 Sep 2008 17:16:54 -0000 1.2
@@ -2,7 +2,7 @@
# The debuginfo and source repos will also be switching from baseurl to a
# mirror list.
-[rpmfusion-rpmfusion-free-updates]
+[rpmfusion-free-updates]
name=RPM Fusion for Fedora $releasever - Free - Updates
failovermethod=priority
#baseurl=http://download.rpmfusion.org/free/fedora/updates/$releasever/$basearch/
@@ -12,7 +12,7 @@
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-free-fedora
-[rpmfusion-rpmfusion-free-updates-debuginfo]
+[rpmfusion-free-updates-debuginfo]
name=RPM Fusion for Fedora $releasever - Free - Updates Debug
failovermethod=priority
baseurl=http://download1.rpmfusion.org/free/fedora/updates/$releasever/$b...
@@ -21,7 +21,7 @@
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-free-fedora
-[rpmfusion-rpmfusion-free-updates-source]
+[rpmfusion-free-updates-source]
name=RPM Fusion for Fedora $releasever - Free - Updates Source
failovermethod=priority
baseurl=http://download1.rpmfusion.org/free/fedora/updates/$releasever/SR...
16 years, 1 month
rpms/rpmfusion-free-release/devel rpmfusion-free-release.spec, 1.2, 1.3 rpmfusion-free-updates.repo, 1.1, 1.2
by Thorsten Leemhuis
Author: thl
Update of /cvs/free/rpms/rpmfusion-free-release/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv11885/devel
Modified Files:
rpmfusion-free-release.spec rpmfusion-free-updates.repo
Log Message:
Fix rpmfusion-rpmfusion typo (again)
Index: rpmfusion-free-release.spec
===================================================================
RCS file: /cvs/free/rpms/rpmfusion-free-release/devel/rpmfusion-free-release.spec,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- rpmfusion-free-release.spec 28 Sep 2008 11:35:20 -0000 1.2
+++ rpmfusion-free-release.spec 28 Sep 2008 17:16:55 -0000 1.3
@@ -3,7 +3,7 @@
Name: rpmfusion-%{repo}-release
Version: 9.90
-Release: 1
+Release: 2
Summary: RPM Fusion (%{repo}) Repository Configuration
Group: System Environment/Base
@@ -85,7 +85,8 @@
%config(noreplace) %{_sysconfdir}/yum.repos.d/*
%changelog
-!!! not build yet
+* Sun Sep 28 2008 Thorsten Leemhuis <fedora at leemhuis.info> - 9.90-2
+- Fix rpmfusion-rpmfusion typo (again)
- update summary to properly say free or nonfree
* Sat Sep 27 2008 Thorsten Leemhuis <fedora at leemhuis.info> - 9.90-1
Index: rpmfusion-free-updates.repo
===================================================================
RCS file: /cvs/free/rpms/rpmfusion-free-release/devel/rpmfusion-free-updates.repo,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- rpmfusion-free-updates.repo 27 Sep 2008 20:16:57 -0000 1.1
+++ rpmfusion-free-updates.repo 28 Sep 2008 17:16:55 -0000 1.2
@@ -2,7 +2,7 @@
# The debuginfo and source repos will also be switching from baseurl to a
# mirror list.
-[rpmfusion-rpmfusion-free-updates]
+[rpmfusion-free-updates]
name=RPM Fusion for Fedora $releasever - Free - Updates
failovermethod=priority
#baseurl=http://download.rpmfusion.org/free/fedora/updates/$releasever/$basearch/
@@ -12,7 +12,7 @@
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-free-fedora
-[rpmfusion-rpmfusion-free-updates-debuginfo]
+[rpmfusion-free-updates-debuginfo]
name=RPM Fusion for Fedora $releasever - Free - Updates Debug
failovermethod=priority
baseurl=http://download1.rpmfusion.org/free/fedora/updates/$releasever/$b...
@@ -21,7 +21,7 @@
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-free-fedora
-[rpmfusion-rpmfusion-free-updates-source]
+[rpmfusion-free-updates-source]
name=RPM Fusion for Fedora $releasever - Free - Updates Source
failovermethod=priority
baseurl=http://download1.rpmfusion.org/free/fedora/updates/$releasever/SR...
16 years, 1 month
rpms/ogre-cg/devel ogre-1.4.9-cg.patch, NONE, 1.1 ogre-cg.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2
by Alexey Torkhov
Author: atorkhov
Update of /cvs/nonfree/rpms/ogre-cg/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv7488/devel
Modified Files:
.cvsignore sources
Added Files:
ogre-1.4.9-cg.patch ogre-cg.spec
Log Message:
initial import
ogre-1.4.9-cg.patch:
--- NEW FILE ogre-1.4.9-cg.patch ---
diff -ur ogre/acinclude.m4 ogre.new/acinclude.m4
--- ogre/acinclude.m4 2007-09-09 23:53:55.000000000 +0400
+++ ogre.new/acinclude.m4 2008-09-28 00:06:23.000000000 +0400
@@ -305,19 +305,7 @@
[build_exr=$enableval],
[build_exr=no])
-if test "x$build_exr" = "xyes" ; then
- PKG_CHECK_MODULES(OPENEXR, OpenEXR, [build_exr=yes], [build_exr=no])
-
- if test "x$build_exr" = "xyes" ; then
- AC_CONFIG_FILES([ PlugIns/EXRCodec/Makefile \
- PlugIns/EXRCodec/src/Makefile \
- PlugIns/EXRCodec/include/Makefile])
- AC_SUBST(OPENEXR_CFLAGS)
- AC_SUBST(OPENEXR_LIBS)
-
- fi
-
-fi
+build_exr="no"
AM_CONDITIONAL(BUILD_EXRPLUGIN, test x$build_exr = xyes)
@@ -446,19 +434,7 @@
AC_DEFUN([OGRE_CHECK_CEGUI], [
PKG_CHECK_MODULES(CEGUI, CEGUI >= 0.5.0,
[build_cegui_sample=true], [build_cegui_sample=false])
- if test x$build_cegui_sample = xtrue; then
- AC_CONFIG_FILES([Samples/Common/CEGUIRenderer/Makefile \
- Samples/Common/CEGUIRenderer/CEGUI-OGRE.pc
- Samples/Common/CEGUIRenderer/src/Makefile \
- Samples/Common/CEGUIRenderer/include/Makefile \
- Samples/Gui/Makefile \
- Samples/Gui/src/Makefile])
- AC_SUBST(CEGUI_CFLAGS)
- AC_SUBST(CEGUI_LIBS)
- AC_MSG_RESULT([CEGUI available, Gui and FacialAnimation samples will be built])
- else
- AC_MSG_RESULT([CEGUI not available, Gui and FacialAnimation samples will not be built])
- fi
+ build_cegui_sample="false"
AM_CONDITIONAL([HAVE_CEGUI], [test x$build_cegui_sample = xtrue])
])
diff -ur ogre/configure.in ogre.new/configure.in
--- ogre/configure.in 2008-06-16 14:29:36.000000000 +0400
+++ ogre.new/configure.in 2008-09-28 00:07:40.000000000 +0400
@@ -78,9 +78,13 @@
AC_SUBST(ZZIPLIB_CFLAGS)
AC_SUBST(ZZIPLIB_LIBS)
+PKG_CHECK_MODULES(OGRE, OGRE)
+CXXFLAGS="$CXXFLAGS $OGRE_CFLAGS"
+LDFLAGS="$LDFLAGS $OGRE_LIBS"
+
dnl Get the GL and Platform libs for target build
OGRE_GET_PLATFORM
-OGRE_GET_GLSUPPORT
+dnl OGRE_GET_GLSUPPORT
dnl Find the optional components we should build
OGRE_CHECK_GUI
@@ -88,7 +92,9 @@
OGRE_CHECK_THREADING
OGRE_CHECK_FREEIMAGE
OGRE_CHECK_DEVIL
+AC_LANG_PUSH(C++)
OGRE_CHECK_CG
+AC_LANG_POP
OGRE_CHECK_OPENEXR
OGRE_CHECK_DX9
OGRE_CHECK_SSE
@@ -120,135 +126,10 @@
dnl Create the makefiles
AC_CONFIG_FILES([Makefile \
- OgreMain/Makefile \
- OgreMain/src/Makefile \
- OgreMain/include/Makefile \
- OgreMain/include/GLX/Makefile \
- OgreMain/include/gtk/Makefile \
PlugIns/Makefile \
- PlugIns/BSPSceneManager/Makefile \
- PlugIns/BSPSceneManager/src/Makefile \
- PlugIns/BSPSceneManager/include/Makefile \
PlugIns/CgProgramManager/Makefile \
PlugIns/CgProgramManager/src/Makefile \
- PlugIns/CgProgramManager/include/Makefile \
- PlugIns/OctreeSceneManager/Makefile \
- PlugIns/OctreeSceneManager/src/Makefile \
- PlugIns/OctreeSceneManager/include/Makefile \
- PlugIns/ParticleFX/Makefile \
- PlugIns/ParticleFX/src/Makefile \
- PlugIns/ParticleFX/include/Makefile \
- RenderSystems/Makefile \
- RenderSystems/GL/Makefile \
- RenderSystems/GL/src/Makefile \
- RenderSystems/GL/include/Makefile \
- RenderSystems/GL/src/atifs/Makefile \
- RenderSystems/GL/src/atifs/include/Makefile \
- RenderSystems/GL/src/atifs/src/Makefile \
- RenderSystems/GL/src/GLSL/Makefile \
- RenderSystems/GL/src/GLSL/include/Makefile \
- RenderSystems/GL/src/GLSL/src/Makefile \
- RenderSystems/GL/src/nvparse/Makefile \
- RenderSystems/Direct3D9/Makefile \
- RenderSystems/Direct3D9/src/Makefile \
- RenderSystems/Direct3D9/include/Makefile \
- Samples/Makefile \
- Samples/Common/Makefile \
- Samples/Common/include/Makefile \
- Samples/Common/bin/Makefile \
- Samples/BezierPatch/Makefile \
- Samples/BezierPatch/src/Makefile \
- Samples/BezierPatch/include/Makefile \
- Samples/CameraTrack/Makefile \
- Samples/CameraTrack/src/Makefile \
- Samples/CelShading/Makefile \
- Samples/CelShading/src/Makefile \
- Samples/Compositor/Makefile \
- Samples/Compositor/src/Makefile \
- Samples/Compositor/include/Makefile \
- Samples/CubeMapping/Makefile \
- Samples/CubeMapping/src/Makefile \
- Samples/CubeMapping/include/Makefile \
- Samples/DeferredShading/Makefile \
- Samples/DeferredShading/src/Makefile \
- Samples/DeferredShading/include/Makefile \
- Samples/Dot3Bump/Makefile \
- Samples/Dot3Bump/src/Makefile \
- Samples/EnvMapping/Makefile \
- Samples/EnvMapping/src/Makefile \
- Samples/EnvMapping/include/Makefile \
- Samples/FacialAnimation/Makefile \
- Samples/FacialAnimation/src/Makefile \
- Samples/Fresnel/Makefile \
- Samples/Fresnel/src/Makefile \
- Samples/Grass/Makefile \
- Samples/Grass/src/Makefile \
- Samples/Transpacency/Makefile \
- Samples/Transpacency/src/Makefile \
- Samples/Transpacency/include/Makefile \
- Samples/Lighting/Makefile \
- Samples/Lighting/src/Makefile \
- Samples/Lighting/include/Makefile \
- Samples/OceanDemo/Makefile \
- Samples/OceanDemo/src/Makefile \
- Samples/OceanDemo/include/Makefile \
- Samples/ParticleFX/Makefile \
- Samples/ParticleFX/src/Makefile \
- Samples/ParticleFX/include/Makefile \
- Samples/RenderToTexture/Makefile \
- Samples/RenderToTexture/src/Makefile \
- Samples/TextureFX/Makefile \
- Samples/TextureFX/src/Makefile \
- Samples/TextureFX/include/Makefile \
- Samples/Shadows/Makefile \
- Samples/Shadows/src/Makefile \
- Samples/SkyBox/Makefile \
- Samples/SkyBox/src/Makefile \
- Samples/SkyBox/include/Makefile \
- Samples/SkyDome/Makefile \
- Samples/SkyDome/src/Makefile \
- Samples/SkyDome/include/Makefile \
- Samples/SkyPlane/Makefile \
- Samples/SkyPlane/src/Makefile \
- Samples/SkyPlane/include/Makefile \
- Samples/Smoke/Makefile \
- Samples/Smoke/src/Makefile \
- Samples/Smoke/include/Makefile \
- Samples/BSP/Makefile \
- Samples/BSP/src/Makefile \
- Samples/SkeletalAnimation/Makefile \
- Samples/SkeletalAnimation/src/Makefile \
- Samples/SkeletalAnimation/include/Makefile \
- Samples/Terrain/Makefile \
- Samples/Terrain/src/Makefile \
- Samples/Terrain/include/Makefile \
- Samples/Water/Makefile \
- Samples/Water/src/Makefile \
- Samples/Water/include/Makefile \
- Samples/DynTex/Makefile \
- Samples/DynTex/src/Makefile \
- Samples/DynTex/include/Makefile \
- Samples/VolumeTex/Makefile \
- Samples/VolumeTex/src/Makefile \
- Samples/VolumeTex/include/Makefile \
- Samples/Instancing/Makefile \
- Samples/Instancing/src/Makefile \
- Samples/Instancing/include/Makefile \
- Tests/Makefile \
- Tests/src/Makefile \
- Tools/Makefile \
- Tools/MaterialUpgrader/Makefile \
- Tools/MaterialUpgrader/src/Makefile \
- Tools/MaterialUpgrader/include/Makefile \
- Tools/MeshUpgrader/Makefile \
- Tools/MeshUpgrader/src/Makefile \
- Tools/XMLConverter/Makefile \
- Tools/XMLConverter/src/Makefile \
- Tools/XMLConverter/include/Makefile \
- Tools/LightwaveConverter/Makefile \
- Tools/LightwaveConverter/src/Makefile \
- Tools/LightwaveConverter/include/Makefile \
- OGRE.pc
+ PlugIns/CgProgramManager/include/Makefile
])
AC_OUTPUT
diff -ur ogre/Makefile.am ogre.new/Makefile.am
--- ogre/Makefile.am 2007-01-07 00:18:24.000000000 +0300
+++ ogre.new/Makefile.am 2008-09-28 00:06:23.000000000 +0400
@@ -1,6 +1,3 @@
-SUBDIRS = OgreMain PlugIns RenderSystems Samples Tools Tests
+SUBDIRS = PlugIns
ACLOCAL_AMFLAGS = -I Scripts/m4
AUTOMAKE_OPTIONS = foreign
-
-pkgconfigdir = $(libdir)/pkgconfig
-pkgconfig_DATA = OGRE.pc
diff -ur ogre/PlugIns/Makefile.am ogre.new/PlugIns/Makefile.am
--- ogre/PlugIns/Makefile.am 2004-12-29 01:19:52.000000000 +0300
+++ ogre.new/PlugIns/Makefile.am 2008-09-28 00:06:23.000000000 +0400
@@ -1,9 +1,5 @@
-SUBDIRS = BSPSceneManager ParticleFX OctreeSceneManager
+SUBDIRS =
if BUILD_CGPLUGIN
SUBDIRS += CgProgramManager
endif
-
-if BUILD_EXRPLUGIN
-SUBDIRS += EXRCodec
-endif
--- NEW FILE ogre-cg.spec ---
Name: ogre-cg
Version: 1.4.9
Release: 2%{?dist}
Summary: Object-Oriented Graphics Rendering Engine
License: LGPLv2+
Group: System Environment/Libraries
URL: http://www.ogre3d.org/
# This is http://downloads.sourceforge.net/ogre/ogre-v%(echo %{version} | tr . -).tar.bz2
# stripped all except CgProgramManager plugin and core files needed to build it
Source0: ogre-%{version}-cg.tar.bz2
# Patch striping everything except CgProgramManager from compilation
Patch0: ogre-1.4.9-cg.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: zziplib-devel libXaw-devel libXrandr-devel libXxf86vm-devel
BuildRequires: autoconf automake libtool
# We are building only plugin, so we need main lib
BuildRequires: ogre-devel
# Cg package
BuildRequires: Cg
ExclusiveArch: i386 x86_64
Requires: ogre = %{version}
%description
This package contains the OGRE CgProgramManager plugin.
%prep
%setup -q -n ogre
%patch0 -p1
# Rebuilding autotools-generated files
autoreconf -v -f -i
%build
%configure --enable-cg --disable-devil --disable-freeimage --disable-openexr
# Don't use rpath!
sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
make %{?_smp_mflags}
%install
rm -rf $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT
rm $RPM_BUILD_ROOT%{_libdir}/OGRE/*.la
%clean
rm -rf $RPM_BUILD_ROOT
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%defattr(-,root,root,-)
%doc AUTHORS BUGS COPYING
%{_libdir}/OGRE/*.so
%changelog
* Sun Jul 13 2008 Alexey Torkhov <atorkhov(a)gmail.com> 1.4.9-2
- Packaged OGRE 1.4.9 Cg plugin basing on Fedora package by Hans de Goede.
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/ogre-cg/devel/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore 28 Sep 2008 09:31:48 -0000 1.1
+++ .cvsignore 28 Sep 2008 15:56:44 -0000 1.2
@@ -0,0 +1 @@
+ogre-1.4.9-cg.tar.bz2
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/ogre-cg/devel/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 28 Sep 2008 09:31:48 -0000 1.1
+++ sources 28 Sep 2008 15:56:44 -0000 1.2
@@ -0,0 +1 @@
+b80b4764ff031873088480537166dde3 ogre-1.4.9-cg.tar.bz2
16 years, 1 month
rpms/rpmfusion-nonfree-release/F-9 rpmfusion-nonfree-release.spec, 1.2, 1.3
by Thorsten Leemhuis
Author: thl
Update of /cvs/nonfree/rpms/rpmfusion-nonfree-release/F-9
In directory se02.es.rpmfusion.net:/tmp/cvs-serv24571/F-9
Modified Files:
rpmfusion-nonfree-release.spec
Log Message:
changed my mind; better build it now
Index: rpmfusion-nonfree-release.spec
===================================================================
RCS file: /cvs/nonfree/rpms/rpmfusion-nonfree-release/F-9/rpmfusion-nonfree-release.spec,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- rpmfusion-nonfree-release.spec 28 Sep 2008 11:32:11 -0000 1.2
+++ rpmfusion-nonfree-release.spec 28 Sep 2008 11:47:30 -0000 1.3
@@ -3,7 +3,7 @@
Name: rpmfusion-%{repo}-release
Version: 9
-Release: 6
+Release: 7
Summary: RPM Fusion (%{repo}) Repository Configuration
Group: System Environment/Base
@@ -85,7 +85,7 @@
%config(noreplace) %{_sysconfdir}/yum.repos.d/*
%changelog
-!!! not build yet
+* Sun Sep 28 2008 Thorsten Leemhuis <fedora at leemhuis.info> - 9-7
- update summary to properly say free or nonfree
* Sat Sep 27 2008 Stewart Adam <s.adam at diffingo.com> - 9-6
16 years, 2 months
rpms/rpmfusion-nonfree-release/F-8 rpmfusion-nonfree-release.spec, 1.2, 1.3
by Thorsten Leemhuis
Author: thl
Update of /cvs/nonfree/rpms/rpmfusion-nonfree-release/F-8
In directory se02.es.rpmfusion.net:/tmp/cvs-serv24571/F-8
Modified Files:
rpmfusion-nonfree-release.spec
Log Message:
changed my mind; better build it now
Index: rpmfusion-nonfree-release.spec
===================================================================
RCS file: /cvs/nonfree/rpms/rpmfusion-nonfree-release/F-8/rpmfusion-nonfree-release.spec,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- rpmfusion-nonfree-release.spec 28 Sep 2008 11:32:11 -0000 1.2
+++ rpmfusion-nonfree-release.spec 28 Sep 2008 11:47:30 -0000 1.3
@@ -3,7 +3,7 @@
Name: rpmfusion-%{repo}-release
Version: 8
-Release: 1
+Release: 2
Summary: RPM Fusion (%{repo}) Repository Configuration
Group: System Environment/Base
@@ -85,7 +85,7 @@
%config(noreplace) %{_sysconfdir}/yum.repos.d/*
%changelog
-!!! not build yet
+* Sun Sep 28 2008 Thorsten Leemhuis <fedora at leemhuis.info> - 8-2
- update summary to properly say free or nonfree
* Sat Sep 27 2008 Thorsten Leemhuis <fedora at leemhuis.info> - 8-1
16 years, 2 months
rpms/rpmfusion-nonfree-release/devel rpmfusion-nonfree-release.spec, 1.2, 1.3
by Thorsten Leemhuis
Author: thl
Update of /cvs/nonfree/rpms/rpmfusion-nonfree-release/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv24571/devel
Modified Files:
rpmfusion-nonfree-release.spec
Log Message:
changed my mind; better build it now
Index: rpmfusion-nonfree-release.spec
===================================================================
RCS file: /cvs/nonfree/rpms/rpmfusion-nonfree-release/devel/rpmfusion-nonfree-release.spec,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- rpmfusion-nonfree-release.spec 28 Sep 2008 11:32:11 -0000 1.2
+++ rpmfusion-nonfree-release.spec 28 Sep 2008 11:47:30 -0000 1.3
@@ -3,7 +3,7 @@
Name: rpmfusion-%{repo}-release
Version: 9.90
-Release: 1
+Release: 2
Summary: RPM Fusion (%{repo}) Repository Configuration
Group: System Environment/Base
@@ -85,7 +85,7 @@
%config(noreplace) %{_sysconfdir}/yum.repos.d/*
%changelog
-!!! not build yet
+* Sun Sep 28 2008 Thorsten Leemhuis <fedora at leemhuis.info> - 9.90-2
- update summary to properly say free or nonfree
* Sat Sep 27 2008 Thorsten Leemhuis <fedora at leemhuis.info> - 9.90-1
16 years, 2 months
rpms/rpmfusion-free-release/F-9 rpmfusion-free-release.spec, 1.1, 1.2
by Thorsten Leemhuis
Author: thl
Update of /cvs/free/rpms/rpmfusion-free-release/F-9
In directory se02.es.rpmfusion.net:/tmp/cvs-serv23314/F-9
Modified Files:
rpmfusion-free-release.spec
Log Message:
update summary to properly say free or nonfree
Index: rpmfusion-free-release.spec
===================================================================
RCS file: /cvs/free/rpms/rpmfusion-free-release/F-9/rpmfusion-free-release.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- rpmfusion-free-release.spec 27 Sep 2008 19:59:21 -0000 1.1
+++ rpmfusion-free-release.spec 28 Sep 2008 11:35:20 -0000 1.2
@@ -4,7 +4,7 @@
Name: rpmfusion-%{repo}-release
Version: 9
Release: 7
-Summary: RPM Fusion (Free) Repository Configuration
+Summary: RPM Fusion (%{repo}) Repository Configuration
Group: System Environment/Base
License: BSD
@@ -85,6 +85,9 @@
%config(noreplace) %{_sysconfdir}/yum.repos.d/*
%changelog
+!!! not build yet
+- update summary to properly say free or nonfree
+
* Sat Sep 27 2008 Stewart Adam <s.adam at diffingo.com> - 9-7
- Use temporary mirrorlists for now, and baseurl for the debug & source repos
16 years, 2 months