rpms/libdlna/F-8 libdlna-0.2.3-ffmpeg-header-move.patch, 1.1, 1.2 libdlna.spec, 1.2, 1.3
by Dominik Mierzejewski
Author: rathann
Update of /cvs/free/rpms/libdlna/F-8
In directory se02.es.rpmfusion.net:/tmp/cvs-serv1914
Modified Files:
libdlna-0.2.3-ffmpeg-header-move.patch libdlna.spec
Log Message:
* Sat Sep 27 2008 Dominik Mierzejewski <rpm(a)greysector.net> 0.2.3-9
- use proper ffmpeg #include convention
- use pkg-config to get ffmpeg include and libs paths
libdlna-0.2.3-ffmpeg-header-move.patch:
Index: libdlna-0.2.3-ffmpeg-header-move.patch
===================================================================
RCS file: /cvs/free/rpms/libdlna/F-8/libdlna-0.2.3-ffmpeg-header-move.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libdlna-0.2.3-ffmpeg-header-move.patch 27 Sep 2008 19:57:13 -0000 1.1
+++ libdlna-0.2.3-ffmpeg-header-move.patch 27 Sep 2008 20:44:32 -0000 1.2
@@ -1,65 +1,71 @@
-diff -up libdlna-0.2.3/configure~ libdlna-0.2.3/configure
---- libdlna-0.2.3/configure~ 2008-09-27 21:08:58.000000000 +0200
-+++ libdlna-0.2.3/configure 2008-09-27 21:08:58.000000000 +0200
-@@ -610,9 +610,9 @@ if [ -n "$ffmpegdir" ]; then
+diff -up libdlna-0.2.3/configure.ff libdlna-0.2.3/configure
+--- libdlna-0.2.3/configure.ff 2008-09-27 22:29:07.000000000 +0200
++++ libdlna-0.2.3/configure 2008-09-27 22:29:31.000000000 +0200
+@@ -607,12 +607,15 @@ fi
+ if [ -n "$ffmpegdir" ]; then
+ check_cflags -I$ffmpegdir
+ check_ldflags -L$ffmpegdir
++elif [ ! `pkg-config --exists libavcodec libavformat` ]; then
++ check_cflags `pkg-config --cflags libavcodec libavformat`
++ check_ldflags `pkg-config --libs-only-L libavcodec libavformat`
fi
echolog "Checking for libavformat ..."
-check_lib ffmpeg/avformat.h av_register_all -lavformat || die "Error, can't find libavformat !"
-+check_lib ffmpeg/libavformat/avformat.h av_register_all -lavformat || die "Error, can't find libavformat !"
++check_lib libavformat/avformat.h av_register_all -lavformat || die "Error, can't find libavformat !"
echolog "Checking for libavcodec ..."
-check_lib ffmpeg/avcodec.h avcodec_register_all -lavcodec || die "Error, can't find libavcodec !"
-+check_lib ffmpeg/libavcodec/avcodec.h avcodec_register_all -lavcodec || die "Error, can't find libavcodec !"
++check_lib libavcodec/avcodec.h avcodec_register_all -lavcodec || die "Error, can't find libavcodec !"
#################################################
# version
-diff -up libdlna-0.2.3/src/av_mpeg4_part10.c~ libdlna-0.2.3/src/av_mpeg4_part10.c
---- libdlna-0.2.3/src/av_mpeg4_part10.c~ 2008-09-27 21:38:31.000000000 +0200
-+++ libdlna-0.2.3/src/av_mpeg4_part10.c 2008-09-27 21:38:31.000000000 +0200
+diff -up libdlna-0.2.3/src/av_mpeg4_part10.c.ff libdlna-0.2.3/src/av_mpeg4_part10.c
+--- libdlna-0.2.3/src/av_mpeg4_part10.c.ff 2007-11-26 21:47:43.000000000 +0100
++++ libdlna-0.2.3/src/av_mpeg4_part10.c 2008-09-27 22:29:07.000000000 +0200
@@ -26,7 +26,7 @@
#include <sys/stat.h>
#include <fcntl.h>
-#include <ffmpeg/avcodec.h>
-+#include <ffmpeg/libavcodec/avcodec.h>
++#include <libavcodec/avcodec.h>
#include "dlna_internals.h"
#include "profiles.h"
-diff -up libdlna-0.2.3/src/av_mpeg4_part2.c~ libdlna-0.2.3/src/av_mpeg4_part2.c
---- libdlna-0.2.3/src/av_mpeg4_part2.c~ 2008-09-27 21:38:17.000000000 +0200
-+++ libdlna-0.2.3/src/av_mpeg4_part2.c 2008-09-27 21:38:17.000000000 +0200
+diff -up libdlna-0.2.3/src/av_mpeg4_part2.c.ff libdlna-0.2.3/src/av_mpeg4_part2.c
+--- libdlna-0.2.3/src/av_mpeg4_part2.c.ff 2007-11-26 21:47:43.000000000 +0100
++++ libdlna-0.2.3/src/av_mpeg4_part2.c 2008-09-27 22:29:07.000000000 +0200
@@ -26,7 +26,7 @@
#include <sys/stat.h>
#include <fcntl.h>
-#include <ffmpeg/avcodec.h>
-+#include <ffmpeg/libavcodec/avcodec.h>
++#include <libavcodec/avcodec.h>
#include "dlna_internals.h"
#include "profiles.h"
-diff -up libdlna-0.2.3/src/containers.c~ libdlna-0.2.3/src/containers.c
---- libdlna-0.2.3/src/containers.c~ 2008-09-27 21:38:40.000000000 +0200
-+++ libdlna-0.2.3/src/containers.c 2008-09-27 21:38:40.000000000 +0200
+diff -up libdlna-0.2.3/src/containers.c.ff libdlna-0.2.3/src/containers.c
+--- libdlna-0.2.3/src/containers.c.ff 2007-11-26 21:47:43.000000000 +0100
++++ libdlna-0.2.3/src/containers.c 2008-09-27 22:29:07.000000000 +0200
@@ -4,7 +4,7 @@
#include <sys/stat.h>
#include <fcntl.h>
-#include <ffmpeg/avformat.h>
-+#include <ffmpeg/libavformat/avformat.h>
++#include <libavformat/avformat.h>
#include "containers.h"
#include "profiles.h"
-diff -up libdlna-0.2.3/src/profiles.h~ libdlna-0.2.3/src/profiles.h
---- libdlna-0.2.3/src/profiles.h~ 2008-09-27 21:38:42.000000000 +0200
-+++ libdlna-0.2.3/src/profiles.h 2008-09-27 21:38:42.000000000 +0200
+diff -up libdlna-0.2.3/src/profiles.h.ff libdlna-0.2.3/src/profiles.h
+--- libdlna-0.2.3/src/profiles.h.ff 2007-11-26 21:47:43.000000000 +0100
++++ libdlna-0.2.3/src/profiles.h 2008-09-27 22:29:07.000000000 +0200
@@ -22,8 +22,8 @@
#ifndef _PROFILES_H_
#define _PROFILES_H_
-#include <ffmpeg/avcodec.h>
-#include <ffmpeg/avformat.h>
-+#include <ffmpeg/libavcodec/avcodec.h>
-+#include <ffmpeg/libavformat/avformat.h>
++#include <libavcodec/avcodec.h>
++#include <libavformat/avformat.h>
#include "dlna_internals.h"
#include "containers.h"
Index: libdlna.spec
===================================================================
RCS file: /cvs/free/rpms/libdlna/F-8/libdlna.spec,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- libdlna.spec 27 Sep 2008 19:57:13 -0000 1.2
+++ libdlna.spec 27 Sep 2008 20:44:32 -0000 1.3
@@ -1,7 +1,7 @@
Version: 0.2.3
Summary: Open-source implementation of DLNA (Digital Living Network Alliance) standards
Name: libdlna
-Release: 8%{?dist}
+Release: 9%{?dist}
License: LGPLv2+
Group: System Environment/Libraries
URL: http://libdlna.geexbox.org/
@@ -32,7 +32,7 @@
%patch1 -p1
%build
-export CFLAGS="$RPM_OPT_FLAGS -I/usr/include/ffmpeg"
+export CFLAGS="$RPM_OPT_FLAGS"
./configure --prefix=%{_prefix} --libdir=%{_libdir} --includedir=%{_includedir} --disable-static
make
@@ -59,6 +59,10 @@
rm -rf $RPM_BUILD_ROOT
%changelog
+* Sat Sep 27 2008 Dominik Mierzejewski <rpm(a)greysector.net> 0.2.3-9
+- use proper ffmpeg #include convention
+- use pkg-config to get ffmpeg include and libs paths
+
* Sat Sep 27 2008 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.2.3-8
- Fix build with even newer ffmpeg
16 years, 2 months
rpms/libdlna/F-9 libdlna-0.2.3-ffmpeg-header-move.patch, 1.1, 1.2 libdlna.spec, 1.3, 1.4
by Dominik Mierzejewski
Author: rathann
Update of /cvs/free/rpms/libdlna/F-9
In directory se02.es.rpmfusion.net:/tmp/cvs-serv1741
Modified Files:
libdlna-0.2.3-ffmpeg-header-move.patch libdlna.spec
Log Message:
* Sat Sep 27 2008 Dominik Mierzejewski <rpm(a)greysector.net> 0.2.3-9
- use proper ffmpeg #include convention
- use pkg-config to get ffmpeg include and libs paths
libdlna-0.2.3-ffmpeg-header-move.patch:
Index: libdlna-0.2.3-ffmpeg-header-move.patch
===================================================================
RCS file: /cvs/free/rpms/libdlna/F-9/libdlna-0.2.3-ffmpeg-header-move.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libdlna-0.2.3-ffmpeg-header-move.patch 27 Sep 2008 19:56:34 -0000 1.1
+++ libdlna-0.2.3-ffmpeg-header-move.patch 27 Sep 2008 20:43:52 -0000 1.2
@@ -1,65 +1,71 @@
-diff -up libdlna-0.2.3/configure~ libdlna-0.2.3/configure
---- libdlna-0.2.3/configure~ 2008-09-27 21:08:58.000000000 +0200
-+++ libdlna-0.2.3/configure 2008-09-27 21:08:58.000000000 +0200
-@@ -610,9 +610,9 @@ if [ -n "$ffmpegdir" ]; then
+diff -up libdlna-0.2.3/configure.ff libdlna-0.2.3/configure
+--- libdlna-0.2.3/configure.ff 2008-09-27 22:29:07.000000000 +0200
++++ libdlna-0.2.3/configure 2008-09-27 22:29:31.000000000 +0200
+@@ -607,12 +607,15 @@ fi
+ if [ -n "$ffmpegdir" ]; then
+ check_cflags -I$ffmpegdir
+ check_ldflags -L$ffmpegdir
++elif [ ! `pkg-config --exists libavcodec libavformat` ]; then
++ check_cflags `pkg-config --cflags libavcodec libavformat`
++ check_ldflags `pkg-config --libs-only-L libavcodec libavformat`
fi
echolog "Checking for libavformat ..."
-check_lib ffmpeg/avformat.h av_register_all -lavformat || die "Error, can't find libavformat !"
-+check_lib ffmpeg/libavformat/avformat.h av_register_all -lavformat || die "Error, can't find libavformat !"
++check_lib libavformat/avformat.h av_register_all -lavformat || die "Error, can't find libavformat !"
echolog "Checking for libavcodec ..."
-check_lib ffmpeg/avcodec.h avcodec_register_all -lavcodec || die "Error, can't find libavcodec !"
-+check_lib ffmpeg/libavcodec/avcodec.h avcodec_register_all -lavcodec || die "Error, can't find libavcodec !"
++check_lib libavcodec/avcodec.h avcodec_register_all -lavcodec || die "Error, can't find libavcodec !"
#################################################
# version
-diff -up libdlna-0.2.3/src/av_mpeg4_part10.c~ libdlna-0.2.3/src/av_mpeg4_part10.c
---- libdlna-0.2.3/src/av_mpeg4_part10.c~ 2008-09-27 21:38:31.000000000 +0200
-+++ libdlna-0.2.3/src/av_mpeg4_part10.c 2008-09-27 21:38:31.000000000 +0200
+diff -up libdlna-0.2.3/src/av_mpeg4_part10.c.ff libdlna-0.2.3/src/av_mpeg4_part10.c
+--- libdlna-0.2.3/src/av_mpeg4_part10.c.ff 2007-11-26 21:47:43.000000000 +0100
++++ libdlna-0.2.3/src/av_mpeg4_part10.c 2008-09-27 22:29:07.000000000 +0200
@@ -26,7 +26,7 @@
#include <sys/stat.h>
#include <fcntl.h>
-#include <ffmpeg/avcodec.h>
-+#include <ffmpeg/libavcodec/avcodec.h>
++#include <libavcodec/avcodec.h>
#include "dlna_internals.h"
#include "profiles.h"
-diff -up libdlna-0.2.3/src/av_mpeg4_part2.c~ libdlna-0.2.3/src/av_mpeg4_part2.c
---- libdlna-0.2.3/src/av_mpeg4_part2.c~ 2008-09-27 21:38:17.000000000 +0200
-+++ libdlna-0.2.3/src/av_mpeg4_part2.c 2008-09-27 21:38:17.000000000 +0200
+diff -up libdlna-0.2.3/src/av_mpeg4_part2.c.ff libdlna-0.2.3/src/av_mpeg4_part2.c
+--- libdlna-0.2.3/src/av_mpeg4_part2.c.ff 2007-11-26 21:47:43.000000000 +0100
++++ libdlna-0.2.3/src/av_mpeg4_part2.c 2008-09-27 22:29:07.000000000 +0200
@@ -26,7 +26,7 @@
#include <sys/stat.h>
#include <fcntl.h>
-#include <ffmpeg/avcodec.h>
-+#include <ffmpeg/libavcodec/avcodec.h>
++#include <libavcodec/avcodec.h>
#include "dlna_internals.h"
#include "profiles.h"
-diff -up libdlna-0.2.3/src/containers.c~ libdlna-0.2.3/src/containers.c
---- libdlna-0.2.3/src/containers.c~ 2008-09-27 21:38:40.000000000 +0200
-+++ libdlna-0.2.3/src/containers.c 2008-09-27 21:38:40.000000000 +0200
+diff -up libdlna-0.2.3/src/containers.c.ff libdlna-0.2.3/src/containers.c
+--- libdlna-0.2.3/src/containers.c.ff 2007-11-26 21:47:43.000000000 +0100
++++ libdlna-0.2.3/src/containers.c 2008-09-27 22:29:07.000000000 +0200
@@ -4,7 +4,7 @@
#include <sys/stat.h>
#include <fcntl.h>
-#include <ffmpeg/avformat.h>
-+#include <ffmpeg/libavformat/avformat.h>
++#include <libavformat/avformat.h>
#include "containers.h"
#include "profiles.h"
-diff -up libdlna-0.2.3/src/profiles.h~ libdlna-0.2.3/src/profiles.h
---- libdlna-0.2.3/src/profiles.h~ 2008-09-27 21:38:42.000000000 +0200
-+++ libdlna-0.2.3/src/profiles.h 2008-09-27 21:38:42.000000000 +0200
+diff -up libdlna-0.2.3/src/profiles.h.ff libdlna-0.2.3/src/profiles.h
+--- libdlna-0.2.3/src/profiles.h.ff 2007-11-26 21:47:43.000000000 +0100
++++ libdlna-0.2.3/src/profiles.h 2008-09-27 22:29:07.000000000 +0200
@@ -22,8 +22,8 @@
#ifndef _PROFILES_H_
#define _PROFILES_H_
-#include <ffmpeg/avcodec.h>
-#include <ffmpeg/avformat.h>
-+#include <ffmpeg/libavcodec/avcodec.h>
-+#include <ffmpeg/libavformat/avformat.h>
++#include <libavcodec/avcodec.h>
++#include <libavformat/avformat.h>
#include "dlna_internals.h"
#include "containers.h"
Index: libdlna.spec
===================================================================
RCS file: /cvs/free/rpms/libdlna/F-9/libdlna.spec,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- libdlna.spec 27 Sep 2008 19:56:34 -0000 1.3
+++ libdlna.spec 27 Sep 2008 20:43:52 -0000 1.4
@@ -1,7 +1,7 @@
Version: 0.2.3
Summary: Open-source implementation of DLNA (Digital Living Network Alliance) standards
Name: libdlna
-Release: 8%{?dist}
+Release: 9%{?dist}
License: LGPLv2+
Group: System Environment/Libraries
URL: http://libdlna.geexbox.org/
@@ -32,7 +32,7 @@
%patch1 -p1
%build
-export CFLAGS="$RPM_OPT_FLAGS -I/usr/include/ffmpeg"
+export CFLAGS="$RPM_OPT_FLAGS"
./configure --prefix=%{_prefix} --libdir=%{_libdir} --includedir=%{_includedir} --disable-static
make
@@ -59,6 +59,10 @@
rm -rf $RPM_BUILD_ROOT
%changelog
+* Sat Sep 27 2008 Dominik Mierzejewski <rpm(a)greysector.net> 0.2.3-9
+- use proper ffmpeg #include convention
+- use pkg-config to get ffmpeg include and libs paths
+
* Sat Sep 27 2008 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.2.3-8
- Fix build with even newer ffmpeg
16 years, 2 months
rpms/libdlna/devel libdlna-0.2.3-ffmpeg-header-move.patch, 1.1, 1.2 libdlna.spec, 1.7, 1.8
by Dominik Mierzejewski
Author: rathann
Update of /cvs/free/rpms/libdlna/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv1273
Modified Files:
libdlna-0.2.3-ffmpeg-header-move.patch libdlna.spec
Log Message:
* Sat Sep 27 2008 Dominik Mierzejewski <rpm(a)greysector.net> 0.2.3-9
- use proper ffmpeg #include convention
- use pkg-config to get ffmpeg include and libs paths
libdlna-0.2.3-ffmpeg-header-move.patch:
Index: libdlna-0.2.3-ffmpeg-header-move.patch
===================================================================
RCS file: /cvs/free/rpms/libdlna/devel/libdlna-0.2.3-ffmpeg-header-move.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libdlna-0.2.3-ffmpeg-header-move.patch 27 Sep 2008 19:40:07 -0000 1.1
+++ libdlna-0.2.3-ffmpeg-header-move.patch 27 Sep 2008 20:41:17 -0000 1.2
@@ -1,65 +1,71 @@
-diff -up libdlna-0.2.3/configure~ libdlna-0.2.3/configure
---- libdlna-0.2.3/configure~ 2008-09-27 21:08:58.000000000 +0200
-+++ libdlna-0.2.3/configure 2008-09-27 21:08:58.000000000 +0200
-@@ -610,9 +610,9 @@ if [ -n "$ffmpegdir" ]; then
+diff -up libdlna-0.2.3/configure.ff libdlna-0.2.3/configure
+--- libdlna-0.2.3/configure.ff 2008-09-27 22:29:07.000000000 +0200
++++ libdlna-0.2.3/configure 2008-09-27 22:29:31.000000000 +0200
+@@ -607,12 +607,15 @@ fi
+ if [ -n "$ffmpegdir" ]; then
+ check_cflags -I$ffmpegdir
+ check_ldflags -L$ffmpegdir
++elif [ ! `pkg-config --exists libavcodec libavformat` ]; then
++ check_cflags `pkg-config --cflags libavcodec libavformat`
++ check_ldflags `pkg-config --libs-only-L libavcodec libavformat`
fi
echolog "Checking for libavformat ..."
-check_lib ffmpeg/avformat.h av_register_all -lavformat || die "Error, can't find libavformat !"
-+check_lib ffmpeg/libavformat/avformat.h av_register_all -lavformat || die "Error, can't find libavformat !"
++check_lib libavformat/avformat.h av_register_all -lavformat || die "Error, can't find libavformat !"
echolog "Checking for libavcodec ..."
-check_lib ffmpeg/avcodec.h avcodec_register_all -lavcodec || die "Error, can't find libavcodec !"
-+check_lib ffmpeg/libavcodec/avcodec.h avcodec_register_all -lavcodec || die "Error, can't find libavcodec !"
++check_lib libavcodec/avcodec.h avcodec_register_all -lavcodec || die "Error, can't find libavcodec !"
#################################################
# version
-diff -up libdlna-0.2.3/src/av_mpeg4_part10.c~ libdlna-0.2.3/src/av_mpeg4_part10.c
---- libdlna-0.2.3/src/av_mpeg4_part10.c~ 2008-09-27 21:38:31.000000000 +0200
-+++ libdlna-0.2.3/src/av_mpeg4_part10.c 2008-09-27 21:38:31.000000000 +0200
+diff -up libdlna-0.2.3/src/av_mpeg4_part10.c.ff libdlna-0.2.3/src/av_mpeg4_part10.c
+--- libdlna-0.2.3/src/av_mpeg4_part10.c.ff 2007-11-26 21:47:43.000000000 +0100
++++ libdlna-0.2.3/src/av_mpeg4_part10.c 2008-09-27 22:29:07.000000000 +0200
@@ -26,7 +26,7 @@
#include <sys/stat.h>
#include <fcntl.h>
-#include <ffmpeg/avcodec.h>
-+#include <ffmpeg/libavcodec/avcodec.h>
++#include <libavcodec/avcodec.h>
#include "dlna_internals.h"
#include "profiles.h"
-diff -up libdlna-0.2.3/src/av_mpeg4_part2.c~ libdlna-0.2.3/src/av_mpeg4_part2.c
---- libdlna-0.2.3/src/av_mpeg4_part2.c~ 2008-09-27 21:38:17.000000000 +0200
-+++ libdlna-0.2.3/src/av_mpeg4_part2.c 2008-09-27 21:38:17.000000000 +0200
+diff -up libdlna-0.2.3/src/av_mpeg4_part2.c.ff libdlna-0.2.3/src/av_mpeg4_part2.c
+--- libdlna-0.2.3/src/av_mpeg4_part2.c.ff 2007-11-26 21:47:43.000000000 +0100
++++ libdlna-0.2.3/src/av_mpeg4_part2.c 2008-09-27 22:29:07.000000000 +0200
@@ -26,7 +26,7 @@
#include <sys/stat.h>
#include <fcntl.h>
-#include <ffmpeg/avcodec.h>
-+#include <ffmpeg/libavcodec/avcodec.h>
++#include <libavcodec/avcodec.h>
#include "dlna_internals.h"
#include "profiles.h"
-diff -up libdlna-0.2.3/src/containers.c~ libdlna-0.2.3/src/containers.c
---- libdlna-0.2.3/src/containers.c~ 2008-09-27 21:38:40.000000000 +0200
-+++ libdlna-0.2.3/src/containers.c 2008-09-27 21:38:40.000000000 +0200
+diff -up libdlna-0.2.3/src/containers.c.ff libdlna-0.2.3/src/containers.c
+--- libdlna-0.2.3/src/containers.c.ff 2007-11-26 21:47:43.000000000 +0100
++++ libdlna-0.2.3/src/containers.c 2008-09-27 22:29:07.000000000 +0200
@@ -4,7 +4,7 @@
#include <sys/stat.h>
#include <fcntl.h>
-#include <ffmpeg/avformat.h>
-+#include <ffmpeg/libavformat/avformat.h>
++#include <libavformat/avformat.h>
#include "containers.h"
#include "profiles.h"
-diff -up libdlna-0.2.3/src/profiles.h~ libdlna-0.2.3/src/profiles.h
---- libdlna-0.2.3/src/profiles.h~ 2008-09-27 21:38:42.000000000 +0200
-+++ libdlna-0.2.3/src/profiles.h 2008-09-27 21:38:42.000000000 +0200
+diff -up libdlna-0.2.3/src/profiles.h.ff libdlna-0.2.3/src/profiles.h
+--- libdlna-0.2.3/src/profiles.h.ff 2007-11-26 21:47:43.000000000 +0100
++++ libdlna-0.2.3/src/profiles.h 2008-09-27 22:29:07.000000000 +0200
@@ -22,8 +22,8 @@
#ifndef _PROFILES_H_
#define _PROFILES_H_
-#include <ffmpeg/avcodec.h>
-#include <ffmpeg/avformat.h>
-+#include <ffmpeg/libavcodec/avcodec.h>
-+#include <ffmpeg/libavformat/avformat.h>
++#include <libavcodec/avcodec.h>
++#include <libavformat/avformat.h>
#include "dlna_internals.h"
#include "containers.h"
Index: libdlna.spec
===================================================================
RCS file: /cvs/free/rpms/libdlna/devel/libdlna.spec,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- libdlna.spec 27 Sep 2008 19:40:07 -0000 1.7
+++ libdlna.spec 27 Sep 2008 20:41:17 -0000 1.8
@@ -1,7 +1,7 @@
Version: 0.2.3
Summary: Open-source implementation of DLNA (Digital Living Network Alliance) standards
Name: libdlna
-Release: 8%{?dist}
+Release: 9%{?dist}
License: LGPLv2+
Group: System Environment/Libraries
URL: http://libdlna.geexbox.org/
@@ -32,7 +32,7 @@
%patch1 -p1
%build
-export CFLAGS="$RPM_OPT_FLAGS -I/usr/include/ffmpeg"
+export CFLAGS="$RPM_OPT_FLAGS"
./configure --prefix=%{_prefix} --libdir=%{_libdir} --includedir=%{_includedir} --disable-static
make
@@ -59,6 +59,10 @@
rm -rf $RPM_BUILD_ROOT
%changelog
+* Sat Sep 27 2008 Dominik Mierzejewski <rpm(a)greysector.net> 0.2.3-9
+- use proper ffmpeg #include convention
+- use pkg-config to get ffmpeg include and libs paths
+
* Sat Sep 27 2008 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.2.3-8
- Fix build with even newer ffmpeg
16 years, 2 months
rpms/compat-python24/devel compat-python-2.4.5-db47.patch, NONE, 1.1 compat-python24.spec, 1.4, 1.5
by jwrdegoede
Author: jwrdegoede
Update of /cvs/free/rpms/compat-python24/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv440
Modified Files:
compat-python24.spec
Added Files:
compat-python-2.4.5-db47.patch
Log Message:
* Sat Sep 27 2008 Hans de Goede <j.w.r.degoede(a)hhs.nl> 2.4.5-3
- Fix building with db4 4.7.x
compat-python-2.4.5-db47.patch:
--- NEW FILE compat-python-2.4.5-db47.patch ---
diff -up Python-2.4.5/Modules/_bsddb.c.db4 Python-2.4.5/Modules/_bsddb.c
--- Python-2.4.5/Modules/_bsddb.c.db4 2006-10-05 20:49:36.000000000 +0200
+++ Python-2.4.5/Modules/_bsddb.c 2008-09-27 22:06:55.000000000 +0200
@@ -3831,6 +3831,7 @@ DBEnv_set_lk_detect(DBEnvObject* self, P
}
+#if (DBVER < 45)
static PyObject*
DBEnv_set_lk_max(DBEnvObject* self, PyObject* args)
{
@@ -3846,6 +3847,7 @@ DBEnv_set_lk_max(DBEnvObject* self, PyOb
RETURN_IF_ERR();
RETURN_NONE();
}
+#endif
#if (DBVER >= 32)
@@ -4532,7 +4534,9 @@ static PyMethodDef DBEnv_methods[] = {
{"set_lg_dir", (PyCFunction)DBEnv_set_lg_dir, METH_VARARGS},
{"set_lg_max", (PyCFunction)DBEnv_set_lg_max, METH_VARARGS},
{"set_lk_detect", (PyCFunction)DBEnv_set_lk_detect, METH_VARARGS},
+#if (DBVER < 45)
{"set_lk_max", (PyCFunction)DBEnv_set_lk_max, METH_VARARGS},
+#endif
#if (DBVER >= 32)
{"set_lk_max_locks", (PyCFunction)DBEnv_set_lk_max_locks, METH_VARARGS},
{"set_lk_max_lockers", (PyCFunction)DBEnv_set_lk_max_lockers, METH_VARARGS},
@@ -4575,11 +4579,17 @@ static PyObject*
DBEnv_getattr(DBEnvObject* self, char *name)
{
if (!strcmp(name, "db_home")) {
+ const char *db_home;
CHECK_ENV_NOT_CLOSED(self);
- if (self->db_env->db_home == NULL) {
+#if (DBVER >= 47)
+ self->db_env->get_home(self->db_env, &db_home);
+#else
+ db_home = self->db_env->db_home;
+#endif
+ if (db_home == NULL) {
RETURN_NONE();
}
- return PyString_FromString(self->db_env->db_home);
+ return PyString_FromString(db_home);
}
return Py_FindMethod(DBEnv_methods, (PyObject* )self, name);
@@ -5039,7 +5049,9 @@ DL_EXPORT(void) init_bsddb(void)
ADD_INT(d, DB_AFTER);
ADD_INT(d, DB_APPEND);
ADD_INT(d, DB_BEFORE);
+#if (DBVER < 45)
ADD_INT(d, DB_CACHED_COUNTS);
+#endif
#if (DBVER >= 41)
_addIntToDict(d, "DB_CHECKPOINT", 0);
#else
@@ -5074,7 +5086,9 @@ DL_EXPORT(void) init_bsddb(void)
ADD_INT(d, DB_POSITION);
ADD_INT(d, DB_PREV);
ADD_INT(d, DB_PREV_NODUP);
+#if (DBVER < 45)
ADD_INT(d, DB_RECORDCOUNT);
+#endif
ADD_INT(d, DB_SET);
ADD_INT(d, DB_SET_RANGE);
ADD_INT(d, DB_SET_RECNO);
@@ -5130,8 +5144,13 @@ DL_EXPORT(void) init_bsddb(void)
ADD_INT(d, DB_TIME_NOTGRANTED);
ADD_INT(d, DB_TXN_NOT_DURABLE);
ADD_INT(d, DB_TXN_WRITE_NOSYNC);
+#if (DBVER >= 47)
+ ADD_INT(d, DB_LOG_AUTO_REMOVE);
+ ADD_INT(d, DB_LOG_DIRECT);
+#else
ADD_INT(d, DB_LOG_AUTOREMOVE);
ADD_INT(d, DB_DIRECT_LOG);
+#endif
ADD_INT(d, DB_DIRECT_DB);
ADD_INT(d, DB_INIT_REP);
ADD_INT(d, DB_ENCRYPT);
@@ -5139,7 +5158,11 @@ DL_EXPORT(void) init_bsddb(void)
#endif
#if (DBVER >= 43)
+#if (DBVER >= 47)
+ ADD_INT(d, DB_LOG_IN_MEMORY);
+#else
ADD_INT(d, DB_LOG_INMEMORY);
+#endif
ADD_INT(d, DB_BUFFER_SMALL);
#endif
diff -up Python-2.4.5/setup.py.db4 Python-2.4.5/setup.py
--- Python-2.4.5/setup.py.db4 2008-09-27 21:08:21.000000000 +0200
+++ Python-2.4.5/setup.py 2008-09-27 22:09:43.000000000 +0200
@@ -522,7 +522,7 @@ class PyBuildExt(build_ext):
#
# http://www.sleepycat.com/update/index.html
- max_db_ver = (4, 4)
+ max_db_ver = (4, 7)
min_db_ver = (3, 2)
db_setup_debug = False # verbose debug prints from this script?
@@ -539,7 +539,7 @@ class PyBuildExt(build_ext):
'/sw/include/db3',
]
# 4.x minor number specific paths
- for x in (0,1,2,3,4):
+ for x in (0,1,2,3,4,5,6,7):
db_inc_paths.append('/usr/include/db4%d' % x)
db_inc_paths.append('/usr/include/db4.%d' % x)
db_inc_paths.append('/usr/local/BerkeleyDB.4.%d/include' % x)
Index: compat-python24.spec
===================================================================
RCS file: /cvs/free/rpms/compat-python24/devel/compat-python24.spec,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- compat-python24.spec 10 Aug 2008 06:22:52 -0000 1.4
+++ compat-python24.spec 27 Sep 2008 20:30:21 -0000 1.5
@@ -13,7 +13,7 @@
Summary: An interpreted, interactive, object-oriented programming language
Name: compat-python24
Version: %{pybasever}.5
-Release: 2%{?dist}.1
+Release: 3%{?dist}
License: Python Software Foundation License v2
Group: Development/Languages
Source: http://www.python.org/ftp/python/%{version}/Python-%{version}.tar.bz2
@@ -33,7 +33,7 @@
Patch17: compat-python-2.4-webbrowser.patch
Patch18: compat-python-2.4.3-cflags.patch
Patch19: compat-python-2.4.3-locale.patch
-Patch20: compat-python-2.4.4-db46.patch
+Patch20: compat-python-2.4.5-db47.patch
#Patch21: compat-python-2.4.4-db4-debug.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
@@ -370,6 +370,9 @@
%{_libdir}/python%{pybasever}/lib-dynload/_tkinter.so
%changelog
+* Sat Sep 27 2008 Hans de Goede <j.w.r.degoede(a)hhs.nl> 2.4.5-3
+- Fix building with db4 4.7.x
+
* Sun Aug 10 2008 Thorsten Leemhuis <fedora at leemhuis.info> 2.4.5-2.1
- _default_patch_fuzz 2 for now
16 years, 2 months
rpms/rpmfusion-nonfree-release/F-8 RPM-GPG-KEY-rpmfusion-nonfree-fedora, NONE, 1.1 rpmfusion-nonfree-rawhide.repo, NONE, 1.1 rpmfusion-nonfree-release.spec, NONE, 1.1 rpmfusion-nonfree-updates-testing.repo, NONE, 1.1 rpmfusion-nonfree-updates.repo, NONE, 1.1 rpmfusion-nonfree.repo, NONE, 1.1
by Thorsten Leemhuis
Author: thl
Update of /cvs/nonfree/rpms/rpmfusion-nonfree-release/F-8
In directory se02.es.rpmfusion.net:/tmp/cvs-serv32257
Added Files:
RPM-GPG-KEY-rpmfusion-nonfree-fedora
rpmfusion-nonfree-rawhide.repo rpmfusion-nonfree-release.spec
rpmfusion-nonfree-updates-testing.repo
rpmfusion-nonfree-updates.repo rpmfusion-nonfree.repo
Log Message:
add rpmfusion-nonfree-release
--- NEW FILE RPM-GPG-KEY-rpmfusion-nonfree-fedora ---
-----BEGIN PGP PUBLIC KEY BLOCK-----
Version: GnuPG v1.4.5 (GNU/Linux)
mQGiBEh43oURBACjM0AB3YpQ9MLjCASiZg+/GPCiqI+iKpLmmynFmT+THbqqCxLu
oV7AcDKnaoZnrwNoVOj5ZG6ITFO2hQ+D4KPsbAXZLfhZv/5tiXqEV8XUbHlEIVpw
iuLBGX8JK/gPZGsoBQgOUKn2FFiSJCCa8uBRbX9ihccdEEuYvC2NWcsXIwCghH1A
7+ltEEI9MoLNFNio25Sqs6kD/ii/fG02JFPi8JDN8R2BWHcbCd59FDDIdXvbHXld
m9SngJaIYZ5cECx5iOPlqmZTrJyqmoG0RzQRGA7kj/7yTal4LIqsfaLRLMDI+EVa
cxA9zdnBEAQgwZmQ0QRsBDEBD2zKhMvHMMro00/8i01qfalfwLlCj7r58dOdB/wc
n6B4A/9cIpcV1zipJrOTgEA4t48ehDMPOH58v5DP8ZCtpdzJm9hKGa3HwDSZt+A4
HgdBKUODyBi5LqNDEySz9DdJn4+k9iro6rEgapWc/6IjuJrLlCPYAEOa17ka3kA9
0rRMeOUEdTqNSJpuOp8rGXCPCKZ5pGYdujx7QWXIPHAVLHxxiLRRUlBNIEZ1c2lv
biByZXBvc2l0b3J5IChGZWRvcmEgLSBub25mcmVlKSA8cnBtZnVzaW9uLWJ1aWxk
c3lzQGxpc3RzLnJwbWZ1c2lvbi5vcmc+iGAEExECACAFAkh43oUCGwMGCwkIBwMC
BBUCCAMEFgIDAQIeAQIXgAAKCRAgb4GCsZgbaLXxAJoDQKjEweJjPsqRK6+ezh9h
tFh79gCfSLKkR/B4184aB7/LLCJZz7ilJ+O5Ag0ESHjemRAIANlJHiAsjpIBD1FD
NYZCtXnfh4Z5A4jZAN9Gp5pcguIUhIl0IdzOKRRtLezEMP8F6yB7CuQBCDUgl3bE
gJK1/MXBJTSCz/BYYzhSx3tE852gzQwN/gAbn/1/fW+L/cXCYPVcRluNYSg2I6AB
qLm2egNzd8FF+ars/dTLBb0SUODhW4IftCBYVA45sdewN5/HLVP7rHivqFZcOJoA
Epuyx23ZP47Vv5wEX+SrgsFERu7j0zv9QFaFNue/MsgEJ8ef4K8bWzQgleVCpegh
gpniSE9sToV/e1dCVewdQsmup/NCLSsTmB880LUoUMYJBQIrChRur2Tiu6Po8E8K
0MLToVsAAwYIAL/DcDGeepvhSyLuDsu875L7otoWwxRk2Y09/aME9KUB/h7vaWcv
YWdCdBtlzq7g7Fv9QK+s4B63ozM3HoMwQvtObQvksdD3vPbOaHymjE6Fqt+0+Qbd
OvJsxKK4Y62nDD9dRW2/1kdeURgl9VH0eWKEcUWNg1NPHUkZ2Mdh7DEzGCEvDDx7
aevKQYDXrYdTOcaByijXqswRZbJepZ32CUxQPYrZ0dwA4gjXs8UXDuLSnXNM/rUN
o1dAbSsgsOYCaqr1Z1nPF8RbTg6yA4gFqI/IGrgwVVe6DCTz2Shn57IpnZf0diO3
qJ6k5pw/8FvVm20nSuvhM/SdEH9nGQ2SuOWISQQYEQIACQUCSHjemQIbDAAKCRAg
b4GCsZgbaEu6AJ0ceO1s64zSr5fqbPv3A7JHFtMBLQCdGBcBFmKyvFvC1LwX9pb9
keJNaDc=
=UO0s
-----END PGP PUBLIC KEY BLOCK-----
--- NEW FILE rpmfusion-nonfree-rawhide.repo ---
# Please note that the mirrorlists URLs are only temporary and will be changed soon.
# The debuginfo and source repos will also be switching from baseurl to a
# mirror list.
[rpmfusion-nonfree-rawhide]
name=RPM Fusion for Fedora $releasever - Non-Free - Rawhide
failovermethod=priority
#baseurl=http://download.rpmfusion.org/nonfree/fedora/development/$basearch/os/
mirrorlist=http://download1.rpmfusion.org/nonfree/fedora/.mirrorlist-nonf...
failovermethod=roundrobin
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-nonfree-fedora
[rpmfusion-nonfree-rawhide-debuginfo]
name=RPM Fusion for Fedora $releasever - Non-Free - Rawhide Debug
failovermethod=priority
baseurl=http://download1.rpmfusion.org/nonfree/fedora/development/$basear...
#mirrorlist=http://mirrors.rpmfusion.org/mirrorlist?repo=rpmfusion-nonfree-rawhide-debug&arch=$basearch
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-nonfree-fedora
[rpmfusion-nonfree-rawhide-source]
name=RPM Fusion for Fedora $releasever - Non-Free - Rawhide Source
failovermethod=priority
baseurl=http://download1.rpmfusion.org/nonfree/fedora/development/source/...
#mirrorlist=http://mirrors.rpmfusion.org/mirrorlist?repo=rpmfusion-nonfree-rawhide-source&arch=$basearch
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-nonfree-fedora
--- NEW FILE rpmfusion-nonfree-release.spec ---
#define repo free
%define repo nonfree
Name: rpmfusion-%{repo}-release
Version: 8
Release: 1
Summary: RPM Fusion (Free) Repository Configuration
Group: System Environment/Base
License: BSD
URL: http://rpmfusion.org
Source0: RPM-GPG-KEY-rpmfusion-%{repo}-fedora
Source1: rpmfusion-%{repo}.repo
Source2: rpmfusion-%{repo}-updates.repo
Source3: rpmfusion-%{repo}-updates-testing.repo
Source4: rpmfusion-%{repo}-rawhide.repo
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch: noarch
Requires: fedora-release >= %{version}
# If apt is around, it needs to be a version with repomd support
Conflicts: apt < 0.5.15lorg3
%if %{repo} == "nonfree"
Requires: rpmfusion-free-release >= %{version}
# enable those once RPM Fusion is in full production and ready
# to obsolete the old repos:
#Provides: freshrpms-release = %{version}-%{release}
#Obsoletes: freshrpms-release <= %{version}-%{release}
#Provides: livna-release = %{version}-%{release}
#Obsoletes: livna-release <= %{version}-%{release}
#Provides: dribble-release = %{version}-%{release}
#Obsoletes: dribble-release <= %{version}-%{release}
%description
RPM Fusion repository contains open source and other distributable software for
Fedora. It is the merger of the Dribble, FreshRPMs and Livna repositories.
This package contains the RPM Fusion GPG key as well as Yum package manager
configuration files for RPM Fusion's "nonfree" repository, which holds
software that is not considered as Open Source Software according to the
Fedora packaging guidelines.
%else
%description
RPM Fusion repository contains open source and other distributable software for
Fedora. It is the merger of the Dribble, FreshRPMs and Livna repositories.
This package contains the RPM Fusion GPG key as well as Yum package manager
configuration files for RPM Fusion's "free" repository, which holds only
software that is considered as Open Source Software according to the Fedora
packaging guidelines.
%endif
%prep
echo "Nothing to prep"
%build
echo "Nothing to build"
%install
rm -rf $RPM_BUILD_ROOT
# Create dirs
install -d -m755 \
$RPM_BUILD_ROOT%{_sysconfdir}/pki/rpm-gpg \
$RPM_BUILD_ROOT%{_sysconfdir}/yum.repos.d
# GPG Key
%{__install} -Dp -m644 %{SOURCE0} \
$RPM_BUILD_ROOT%{_sysconfdir}/pki/rpm-gpg
# Yum .repo files
%{__install} -p -m644 %{SOURCE1} %{SOURCE2} %{SOURCE3} %{SOURCE4} \
$RPM_BUILD_ROOT%{_sysconfdir}/yum.repos.d
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
%{_sysconfdir}/pki/rpm-gpg/*
%config(noreplace) %{_sysconfdir}/yum.repos.d/*
%changelog
* Sat Sep 27 2008 Thorsten Leemhuis <fedora at leemhuis.info> - 8-1
- adjust for F8
* Sat Sep 27 2008 Stewart Adam <s.adam at diffingo.com> - 9-6
- Use temporary mirrorlists for now, and baseurl for the debug & source repos
* Mon Aug 18 2008 Stewart Adam <s.adam at diffingo.com> - 9-5
- Use mirrors.rpmfusion.org instead of rpmfusion.org/mirrorlist
- Use download.rpmfusion.org instead of download1.rpmfusion.org
* Fri Aug 15 2008 Stewart Adam <s.adam at diffingo.com> - 9-4
- Only include provides/obsoletes for pre-merger release RPMs in nonfree
- Remove GPL doc
* Thu Aug 14 2008 Thorsten Leemhuis <fedora at leemhuis.info> - 9-3
- add conditionals and macros to use one spec file for both free and nonfree
- some cleanups
* Wed Aug 13 2008 Stewart Adam <s.adam at diffingo.com> - 9-2
- Split into free and non-free RPMs based on original release RPM
- Remove double BuildArch
- Remove GPL source
- Fix mirror URLs
- devel --> rawhide
* Tue Aug 12 2008 Stewart Adam <s.adam at diffingo.com> - 9-1
- Initial RPM release
--- NEW FILE rpmfusion-nonfree-updates-testing.repo ---
# Please note that the mirrorlists URLs are only temporary and will be changed soon.
# The debuginfo and source repos will also be switching from baseurl to a
# mirror list.
[rpmfusion-nonfree-updates-testing]
name=RPM Fusion for Fedora $releasever - Non-Free - Test Updates
failovermethod=priority
#baseurl=http://download.rpmfusion.org/nonfree/fedora/updates/testing/$releasever/$basearch/
mirrorlist=http://download1.rpmfusion.org/nonfree/fedora/.mirrorlist-nonf...
failovermethod=roundrobin
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-nonfree-fedora
[rpmfusion-nonfree-updates-testing-debuginfo]
name=RPM Fusion for Fedora $releasever - Non-Free - Test Updates Debug
failovermethod=priority
baseurl=http://download1.rpmfusion.org/nonfree/fedora/updates/testing/$re...
#mirrorlist=http://mirrors.rpmfusion.org/mirrorlist?repo=rpmfusion-nonfree-updates-testing-debug-f$releasever&arch=$basearch
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-nonfree-fedora
[rpmfusion-nonfree-updates-testing-source]
name=RPM Fusion for Fedora $releasever - Non-Free - Test Updates Source
failovermethod=priority
baseurl=http://download1.rpmfusion.org/nonfree/fedora/updates/testing/$re...
#mirrorlist=http://mirrors.rpmfusion.org/mirrorlist?repo=rpmfusion-nonfree-updates-testing-source-f$releasever&arch=$basearch
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-nonfree-fedora
--- NEW FILE rpmfusion-nonfree-updates.repo ---
# Please note that the mirrorlists URLs are only temporary and will be changed soon.
# The debuginfo and source repos will also be switching from baseurl to a
# mirror list.
[rpmfusion-nonfree-updates]
name=RPM Fusion for Fedora $releasever - Non-Free - Updates
failovermethod=priority
#baseurl=http://download.rpmfusion.org/nonfree/fedora/updates/$releasever/$basearch/
mirrorlist=http://download1.rpmfusion.org/nonfree/fedora/.mirrorlist-nonf...
failovermethod=roundrobin
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-nonfree-fedora
[rpmfusion-nonfree-updates-debuginfo]
name=RPM Fusion for Fedora $releasever - Non-Free - Updates Debug
failovermethod=priority
baseurl=http://download1.rpmfusion.org/nonfree/fedora/updates/$releasever...
#mirrorlist=http://mirrors.rpmfusion.org/mirrorlist?repo=rpmfusion-nonfree-updates-debug-f$releasever&arch=$basearch
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-nonfree-fedora
[rpmfusion-nonfree-updates-source]
name=RPM Fusion for Fedora $releasever - Non-Free - Updates Source
failovermethod=priority
baseurl=http://download1.rpmfusion.org/nonfree/fedora/updates/$releasever...
#mirrorlist=http://mirrors.rpmfusion.org/mirrorlist?repo=rpmfusion-nonfree-updates-source-f$releasever&arch=$basearch
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-nonfree-fedora
--- NEW FILE rpmfusion-nonfree.repo ---
# Please note that the mirrorlists URLs are only temporary and will be changed soon.
# The debuginfo and source repos will also be switching from baseurl to a
# mirror list.
[rpmfusion-nonfree]
name=RPM Fusion for Fedora $releasever - Non-Free
failovermethod=priority
#baseurl=http://download.rpmfusion.org/nonfree/fedora/releases/$releasever/Everything/$basearch/os/
mirrorlist=http://download1.rpmfusion.org/nonfree/fedora/.mirrorlist-nonf...
failovermethod=roundrobin
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-nonfree-fedora
[rpmfusion-nonfree-debuginfo]
name=RPM Fusion for Fedora $releasever - Non-Free - Debug
failovermethod=priority
baseurl=http://download1.rpmfusion.org/nonfree/fedora/releases/$releaseve...
#mirrorlist=http://mirrors.rpmfusion.org/mirrorlist?repo=rpmfusion-nonfree-debug-f$releasever&arch=$basearch
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-nonfree-fedora
[rpmfusion-nonfree-source]
name=RPM Fusion for Fedora $releasever - Non-Free - Source
failovermethod=priority
baseurl=http://download1.rpmfusion.org/nonfree/fedora/releases/$releaseve...
#mirrorlist=http://mirrors.rpmfusion.org/mirrorlist?repo=rpmfusion-nonfree-source-f$releasever&arch=$basearch
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-nonfree-fedora
16 years, 2 months
rpms/rpmfusion-free-release/F-8 RPM-GPG-KEY-rpmfusion-free-fedora, NONE, 1.1 rpmfusion-free-rawhide.repo, NONE, 1.1 rpmfusion-free-release.spec, NONE, 1.1 rpmfusion-free-updates-testing.repo, NONE, 1.1 rpmfusion-free-updates.repo, NONE, 1.1 rpmfusion-free.repo, NONE, 1.1 Makefile, 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-serv32062
Modified Files:
Makefile
Added Files:
RPM-GPG-KEY-rpmfusion-free-fedora rpmfusion-free-rawhide.repo
rpmfusion-free-release.spec
rpmfusion-free-updates-testing.repo
rpmfusion-free-updates.repo rpmfusion-free.repo
Log Message:
add rpmfusion-free-release
--- NEW FILE RPM-GPG-KEY-rpmfusion-free-fedora ---
-----BEGIN PGP PUBLIC KEY BLOCK-----
Version: GnuPG v1.4.5 (GNU/Linux)
mQGiBEh43fsRBADXpQLcyRQu1qFrq0C1T94j+wcLVsYcs3Gsiq82jjM7OCDuFGvw
FuWX93V1b0X0L/bnO8fseOsVP4N7ok7UHeuFWfyVT64NBk7pSXMCbYldRIJyJ4o+
KqHgejQEYRCJriJGoFVL53DeXbmlESjytMK1PTZwSX4zKctSUhQaYRmRhwCgufX6
g23aQ4+FS3RywyinvA23mZ0D/iiF/r3U2jKvBk/FgG/0qTaSFsSoBVdvKI5B/HWA
UUIkFewI12sdcwBKVXTzLppul6NyElh5KEY4ls7xadMWRyRl4BU8WzrUyMd0yxem
TqiBjG8s6EO0c2JwebzqBgEmU/nLpkyhEF0xN8trjzhK8lWbAdjnzyzw8xUAF5r0
uyO9BACj6Hyi/mAwLY+aSj58KBtScf3X8e1NSnZTqDoZlOXnm34/Y23Gfwin/RK5
omqa2ZshKNl+8UkPH50Y9x7sRmS2MiiFjuzXQdzLCmLGQMjK/HFUm4a2+byEZXOA
3Pu282Xz5P06/zX+eXTREn1RbBStXVEptWWxLAkqb66Kp4v9OrROUlBNIEZ1c2lv
biByZXBvc2l0b3J5IChGZWRvcmEgLSBmcmVlKSA8cnBtZnVzaW9uLWJ1aWxkc3lz
QGxpc3RzLnJwbWZ1c2lvbi5vcmc+iGAEExECACAFAkh43fsCGwMGCwkIBwMCBBUC
CAMEFgIDAQIeAQIXgAAKCRCFUJmySciIWpd7AJ9LI5/Ae7naPr49NNjQfd1AydJ3
wQCgtf460zaZZeHdzgr2cCg3vmuAPV+5Ag0ESHjeBRAIAIVouFaPtMhROoskFPhS
PA/3nzdi1HlmAYOlzulfAoCjjeo9O+gj6ZPJDJPeO/qG8UWyIn9fAvM+y4Jg32Jy
GWn+lfSHnL+S/ZBJxCgEKl5E2qCGE7nnSyB2HM7aLQzjn58L7JZtlf5EL+Nw/tAC
dfyzHJglteuGl4rrwa7QdWnhTvtmDA7KRDkYrw9A7zSRoH1qyaQkqOhz4YFXI4c+
bGAFBPgiIxu5FRSjMBJJHzrlZtTJx6z+oqCZjP5TLPHrqGbatcum9DmN65LvdV4Y
KMPyMmnTiPRH2YDIC6QleHxPKljol2vxzK2mUvBMr7S0X21i2ImRTXODXMScIZB8
r+sAAwYH/jN63OsS2aPXy9/Tj7bUwSp163O5FVBUtlqdisKECXU/86XlCVbL7wjb
Tn4FxQVPoYfNjzFoi89T4FXcKH3lvQ03vhhG2PNAIyudj/j35Q85xKfSkKBdPIUz
1u5rFMNvCr5cCA3dCFR3bUUykVh1xKvfMluUiZzUZkAQ1Ke/4/GCR9bpwfZDzr3c
RrTveDG1CLw4qakpIzC9KjAJdWMB/voifU1EhWxzt2R7J27c5zvTGvb746nyZUa+
3LBmklUdM4xRZcy25nqSSIwgmGx4Iak0fj0+6cMM47TliDeBNfJpSRb3qauuVEk8
m2gi1GvcJXIxq2jM77w8nIILdjxoxB6ISQQYEQIACQUCSHjeBQIbDAAKCRCFUJmy
SciIWlHZAKCJyGKXrfd45XI9lP/Jz3GF5RmWrQCfWdHtDXkY3PWz1qFPj7EfXc2b
pog=
=zozD
-----END PGP PUBLIC KEY BLOCK-----
--- NEW FILE rpmfusion-free-rawhide.repo ---
# Please note that the mirrorlists URLs are only temporary and will be changed soon.
# The debuginfo and source repos will also be switching from baseurl to a
# mirror list.
[rpmfusion-free-rawhide]
name=RPM Fusion for Fedora $releasever - Free - Rawhide
failovermethod=priority
#baseurl=http://download.rpmfusion.org/free/fedora/development/$basearch/os/
mirrorlist=http://download1.rpmfusion.org/free/fedora/.mirrorlist-free-fe...
failovermethod=roundrobin
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-free-fedora
[rpmfusion-free-rawhide-debuginfo]
name=RPM Fusion for Fedora $releasever - Free - Rawhide Debug
failovermethod=priority
baseurl=http://download1.rpmfusion.org/free/fedora/development/$basearch/...
#mirrorlist=http://mirrors.rpmfusion.org/mirrorlist?repo=rpmfusion-free-rawhide-debug&arch=$basearch
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-free-fedora
[rpmfusion-free-rawhide-source]
name=RPM Fusion for Fedora $releasever - Free - Rawhide Source
failovermethod=priority
baseurl=http://download1.rpmfusion.org/free/fedora/development/source/SRPMS/
#mirrorlist=http://mirrors.rpmfusion.org/mirrorlist?repo=rpmfusion-free-rawhide-source&arch=$basearch
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-free-fedora
--- NEW FILE rpmfusion-free-release.spec ---
%define repo free
#define repo nonfree
Name: rpmfusion-%{repo}-release
Version: 8
Release: 1
Summary: RPM Fusion (Free) Repository Configuration
Group: System Environment/Base
License: BSD
URL: http://rpmfusion.org
Source0: RPM-GPG-KEY-rpmfusion-%{repo}-fedora
Source1: rpmfusion-%{repo}.repo
Source2: rpmfusion-%{repo}-updates.repo
Source3: rpmfusion-%{repo}-updates-testing.repo
Source4: rpmfusion-%{repo}-rawhide.repo
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch: noarch
Requires: fedora-release >= %{version}
# If apt is around, it needs to be a version with repomd support
Conflicts: apt < 0.5.15lorg3
%if %{repo} == "nonfree"
Requires: rpmfusion-free-release >= %{version}
# enable those once RPM Fusion is in full production and ready
# to obsolete the old repos:
#Provides: freshrpms-release = %{version}-%{release}
#Obsoletes: freshrpms-release <= %{version}-%{release}
#Provides: livna-release = %{version}-%{release}
#Obsoletes: livna-release <= %{version}-%{release}
#Provides: dribble-release = %{version}-%{release}
#Obsoletes: dribble-release <= %{version}-%{release}
%description
RPM Fusion repository contains open source and other distributable software for
Fedora. It is the merger of the Dribble, FreshRPMs and Livna repositories.
This package contains the RPM Fusion GPG key as well as Yum package manager
configuration files for RPM Fusion's "nonfree" repository, which holds
software that is not considered as Open Source Software according to the
Fedora packaging guidelines.
%else
%description
RPM Fusion repository contains open source and other distributable software for
Fedora. It is the merger of the Dribble, FreshRPMs and Livna repositories.
This package contains the RPM Fusion GPG key as well as Yum package manager
configuration files for RPM Fusion's "free" repository, which holds only
software that is considered as Open Source Software according to the Fedora
packaging guidelines.
%endif
%prep
echo "Nothing to prep"
%build
echo "Nothing to build"
%install
rm -rf $RPM_BUILD_ROOT
# Create dirs
install -d -m755 \
$RPM_BUILD_ROOT%{_sysconfdir}/pki/rpm-gpg \
$RPM_BUILD_ROOT%{_sysconfdir}/yum.repos.d
# GPG Key
%{__install} -Dp -m644 %{SOURCE0} \
$RPM_BUILD_ROOT%{_sysconfdir}/pki/rpm-gpg
# Yum .repo files
%{__install} -p -m644 %{SOURCE1} %{SOURCE2} %{SOURCE3} %{SOURCE4} \
$RPM_BUILD_ROOT%{_sysconfdir}/yum.repos.d
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
%{_sysconfdir}/pki/rpm-gpg/*
%config(noreplace) %{_sysconfdir}/yum.repos.d/*
%changelog
* Sat Sep 27 2008 Thorsten Leemhuis <fedora at leemhuis.info> - 8-1
- adjust for F8
* 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
* Thu Sep 18 2008 Stewart Adam <s.adam at diffingo.com> - 9-6
- Fix rpmfusion-rpmfusion typo
* Mon Aug 18 2008 Stewart Adam <s.adam at diffingo.com> - 9-5
- Use mirrors.rpmfusion.org instead of rpmfusion.org/mirrorlist
- Use download.rpmfusion.org instead of download1.rpmfusion.org
* Fri Aug 15 2008 Stewart Adam <s.adam at diffingo.com> - 9-4
- Only include provides/obsoletes for pre-merger release RPMs in nonfree
- Remove GPL doc
* Thu Aug 14 2008 Thorsten Leemhuis <fedora at leemhuis.info> - 9-3
- add conditionals and macros to use one spec file for both free and nonfree
- some cleanups
* Wed Aug 13 2008 Stewart Adam <s.adam at diffingo.com> - 9-2
- Split into free and non-free RPMs based on original release RPM
- Remove double BuildArch
- Remove GPL source
- Fix mirror URLs
- devel --> rawhide
* Tue Aug 12 2008 Stewart Adam <s.adam at diffingo.com> - 9-1
- Initial RPM release
--- NEW FILE rpmfusion-free-updates-testing.repo ---
# Please note that the mirrorlists URLs are only temporary and will be changed soon.
# The debuginfo and source repos will also be switching from baseurl to a
# mirror list.
[rpmfusion-free-updates-testing]
name=RPM Fusion for Fedora $releasever - Free - Test Updates
failovermethod=priority
#baseurl=http://download.rpmfusion.org/free/fedora/updates/testing/$releasever/$basearch/
mirrorlist=http://download1.rpmfusion.org/free/fedora/.mirrorlist-free-fe...
failovermethod=roundrobin
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-free-fedora
[rpmfusion-free-updates-testing-debuginfo]
name=RPM Fusion for Fedora $releasever - Free - Test Updates Debug
failovermethod=priority
baseurl=http://download1.rpmfusion.org/free/fedora/updates/testing/$relea...
#mirrorlist=http://mirrors.rpmfusion.org/mirrorlist?repo=rpmfusion-free-updates-testing-debug-f$releasever&arch=$basearch
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-free-fedora
[rpmfusion-free-updates-testing-source]
name=RPM Fusion for Fedora $releasever - Free - Test Updates Source
failovermethod=priority
baseurl=http://download1.rpmfusion.org/free/fedora/updates/testing/$relea...
#mirrorlist=http://mirrors.rpmfusion.org/mirrorlist?repo=rpmfusion-free-updates-testing-source-f$releasever&arch=$basearch
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-free-fedora
--- NEW FILE rpmfusion-free-updates.repo ---
# Please note that the mirrorlists URLs are only temporary and will be changed soon.
# The debuginfo and source repos will also be switching from baseurl to a
# mirror list.
[rpmfusion-rpmfusion-free-updates]
name=RPM Fusion for Fedora $releasever - Free - Updates
failovermethod=priority
#baseurl=http://download.rpmfusion.org/free/fedora/updates/$releasever/$basearch/
mirrorlist=http://download1.rpmfusion.org/free/fedora/.mirrorlist-free-fe...
failovermethod=roundrobin
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-free-fedora
[rpmfusion-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...
#mirrorlist=http://mirrors.rpmfusion.org/mirrorlist?repo=rpmfusion-free-updates-debug-f$releasever&arch=$basearch
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-free-fedora
[rpmfusion-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...
#mirrorlist=http://mirrors.rpmfusion.org/mirrorlist?repo=rpmfusion-free-updates-source-f$releasever&arch=$basearch
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-free-fedora
--- NEW FILE rpmfusion-free.repo ---
# Please note that the mirrorlists URLs are only temporary and will be changed soon.
# The debuginfo and source repos will also be switching from baseurl to a
# mirror list.
[rpmfusion-free]
name=RPM Fusion for Fedora $releasever - Free
failovermethod=priority
#baseurl=http://download.rpmfusion.org/free/fedora/releases/$releasever/Everything/$basearch/os/
mirrorlist=http://download1.rpmfusion.org/free/fedora/.mirrorlist-free-fe...
failovermethod=roundrobin
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-free-fedora
[rpmfusion-free-debuginfo]
name=RPM Fusion for Fedora $releasever - Free - Debug
failovermethod=priority
baseurl=http://download1.rpmfusion.org/free/fedora/releases/$releasever/E...
#mirrorlist=http://mirrors.rpmfusion.org/mirrorlist?repo=rpmfusion-free-debug-f$releasever&arch=$basearch
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-free-fedora
[rpmfusion-free-source]
name=RPM Fusion for Fedora $releasever - Free - Source
failovermethod=priority
baseurl=http://download1.rpmfusion.org/free/fedora/releases/$releasever/E...
#mirrorlist=http://mirrors.rpmfusion.org/mirrorlist?repo=rpmfusion-free-source-f$releasever&arch=$basearch
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-free-fedora
Index: Makefile
===================================================================
RCS file: /cvs/free/rpms/rpmfusion-free-release/F-8/Makefile,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Makefile 20 Jun 2008 15:45:16 -0000 1.1
+++ Makefile 27 Sep 2008 20:20:00 -0000 1.2
@@ -1,6 +1,6 @@
# Makefile for source rpm: rpmfusion-release
# $Id$
-NAME := rpmfusion-release
+NAME := rpmfusion-free-release
SPECFILE = $(firstword $(wildcard *.spec))
define find-makefile-common
16 years, 2 months
rpms/rpmfusion-free-release/devel Makefile,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-serv31661
Modified Files:
Makefile
Log Message:
update makefile
Index: Makefile
===================================================================
RCS file: /cvs/free/rpms/rpmfusion-free-release/devel/Makefile,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Makefile 20 Jun 2008 15:45:16 -0000 1.1
+++ Makefile 27 Sep 2008 20:17:40 -0000 1.2
@@ -1,6 +1,6 @@
# Makefile for source rpm: rpmfusion-release
# $Id$
-NAME := rpmfusion-release
+NAME := rpmfusion-free-release
SPECFILE = $(firstword $(wildcard *.spec))
define find-makefile-common
16 years, 2 months
rpms/rpmfusion-free-release/devel RPM-GPG-KEY-rpmfusion-free-fedora, NONE, 1.1 rpmfusion-free-rawhide.repo, NONE, 1.1 rpmfusion-free-rawhide.repo~, NONE, 1.1 rpmfusion-free-release.spec, NONE, 1.1 rpmfusion-free-updates-testing.repo, NONE, 1.1 rpmfusion-free-updates.repo, NONE, 1.1 rpmfusion-free.repo, NONE, 1.1
by Thorsten Leemhuis
Author: thl
Update of /cvs/free/rpms/rpmfusion-free-release/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv31592
Added Files:
RPM-GPG-KEY-rpmfusion-free-fedora rpmfusion-free-rawhide.repo
rpmfusion-free-rawhide.repo~ rpmfusion-free-release.spec
rpmfusion-free-updates-testing.repo
rpmfusion-free-updates.repo rpmfusion-free.repo
Log Message:
add rpmfusion-nonfree-release
--- NEW FILE RPM-GPG-KEY-rpmfusion-free-fedora ---
-----BEGIN PGP PUBLIC KEY BLOCK-----
Version: GnuPG v1.4.5 (GNU/Linux)
mQGiBEh43fsRBADXpQLcyRQu1qFrq0C1T94j+wcLVsYcs3Gsiq82jjM7OCDuFGvw
FuWX93V1b0X0L/bnO8fseOsVP4N7ok7UHeuFWfyVT64NBk7pSXMCbYldRIJyJ4o+
KqHgejQEYRCJriJGoFVL53DeXbmlESjytMK1PTZwSX4zKctSUhQaYRmRhwCgufX6
g23aQ4+FS3RywyinvA23mZ0D/iiF/r3U2jKvBk/FgG/0qTaSFsSoBVdvKI5B/HWA
UUIkFewI12sdcwBKVXTzLppul6NyElh5KEY4ls7xadMWRyRl4BU8WzrUyMd0yxem
TqiBjG8s6EO0c2JwebzqBgEmU/nLpkyhEF0xN8trjzhK8lWbAdjnzyzw8xUAF5r0
uyO9BACj6Hyi/mAwLY+aSj58KBtScf3X8e1NSnZTqDoZlOXnm34/Y23Gfwin/RK5
omqa2ZshKNl+8UkPH50Y9x7sRmS2MiiFjuzXQdzLCmLGQMjK/HFUm4a2+byEZXOA
3Pu282Xz5P06/zX+eXTREn1RbBStXVEptWWxLAkqb66Kp4v9OrROUlBNIEZ1c2lv
biByZXBvc2l0b3J5IChGZWRvcmEgLSBmcmVlKSA8cnBtZnVzaW9uLWJ1aWxkc3lz
QGxpc3RzLnJwbWZ1c2lvbi5vcmc+iGAEExECACAFAkh43fsCGwMGCwkIBwMCBBUC
CAMEFgIDAQIeAQIXgAAKCRCFUJmySciIWpd7AJ9LI5/Ae7naPr49NNjQfd1AydJ3
wQCgtf460zaZZeHdzgr2cCg3vmuAPV+5Ag0ESHjeBRAIAIVouFaPtMhROoskFPhS
PA/3nzdi1HlmAYOlzulfAoCjjeo9O+gj6ZPJDJPeO/qG8UWyIn9fAvM+y4Jg32Jy
GWn+lfSHnL+S/ZBJxCgEKl5E2qCGE7nnSyB2HM7aLQzjn58L7JZtlf5EL+Nw/tAC
dfyzHJglteuGl4rrwa7QdWnhTvtmDA7KRDkYrw9A7zSRoH1qyaQkqOhz4YFXI4c+
bGAFBPgiIxu5FRSjMBJJHzrlZtTJx6z+oqCZjP5TLPHrqGbatcum9DmN65LvdV4Y
KMPyMmnTiPRH2YDIC6QleHxPKljol2vxzK2mUvBMr7S0X21i2ImRTXODXMScIZB8
r+sAAwYH/jN63OsS2aPXy9/Tj7bUwSp163O5FVBUtlqdisKECXU/86XlCVbL7wjb
Tn4FxQVPoYfNjzFoi89T4FXcKH3lvQ03vhhG2PNAIyudj/j35Q85xKfSkKBdPIUz
1u5rFMNvCr5cCA3dCFR3bUUykVh1xKvfMluUiZzUZkAQ1Ke/4/GCR9bpwfZDzr3c
RrTveDG1CLw4qakpIzC9KjAJdWMB/voifU1EhWxzt2R7J27c5zvTGvb746nyZUa+
3LBmklUdM4xRZcy25nqSSIwgmGx4Iak0fj0+6cMM47TliDeBNfJpSRb3qauuVEk8
m2gi1GvcJXIxq2jM77w8nIILdjxoxB6ISQQYEQIACQUCSHjeBQIbDAAKCRCFUJmy
SciIWlHZAKCJyGKXrfd45XI9lP/Jz3GF5RmWrQCfWdHtDXkY3PWz1qFPj7EfXc2b
pog=
=zozD
-----END PGP PUBLIC KEY BLOCK-----
--- NEW FILE rpmfusion-free-rawhide.repo ---
# Please note that the mirrorlists URLs are only temporary and will be changed soon.
# The debuginfo and source repos will also be switching from baseurl to a
# mirror list.
[rpmfusion-free-rawhide]
name=RPM Fusion for Fedora $releasever - Free - Rawhide
failovermethod=priority
#baseurl=http://download.rpmfusion.org/free/fedora/development/$basearch/os/
mirrorlist=http://download1.rpmfusion.org/free/fedora/.mirrorlist-free-fe...
failovermethod=roundrobin
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-free-fedora
[rpmfusion-free-rawhide-debuginfo]
name=RPM Fusion for Fedora $releasever - Free - Rawhide Debug
failovermethod=priority
baseurl=http://download1.rpmfusion.org/free/fedora/development/$basearch/...
#mirrorlist=http://mirrors.rpmfusion.org/mirrorlist?repo=rpmfusion-free-rawhide-debug&arch=$basearch
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-free-fedora
[rpmfusion-free-rawhide-source]
name=RPM Fusion for Fedora $releasever - Free - Rawhide Source
failovermethod=priority
baseurl=http://download1.rpmfusion.org/free/fedora/development/source/SRPMS/
#mirrorlist=http://mirrors.rpmfusion.org/mirrorlist?repo=rpmfusion-free-rawhide-source&arch=$basearch
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-free-fedora
--- NEW FILE rpmfusion-free-rawhide.repo~ ---
# Please note that the mirrorlists URLs are only temporary and will be changed soon.
# The debuginfo and source repos will also be switching from baseurl to a
# mirror list.
[rpmfusion-free-rawhide]
name=RPM Fusion for Fedora $releasever - Free - Rawhide
failovermethod=priority
#baseurl=http://download.rpmfusion.org/free/fedora/development/$basearch/os/
mirrorlist=http://download1.rpmfusion.org/free/fedora/.mirrorlist-free-fe...
failovermethod=roundrobin
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-free-fedora
[rpmfusion-free-rawhide-debuginfo]
name=RPM Fusion for Fedora $releasever - Free - Rawhide Debug
failovermethod=priority
baseurl=http://download1.rpmfusion.org/free/fedora/development/$basearch/...
#mirrorlist=http://mirrors.rpmfusion.org/mirrorlist?repo=rpmfusion-free-rawhide-debug&arch=$basearch
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-free-fedora
[rpmfusion-free-rawhide-source]
name=RPM Fusion for Fedora $releasever - Free - Rawhide Source
failovermethod=priority
baseurl=http://download1.rpmfusion.org/free/fedora/development/source/SRPMS/
#mirrorlist=http://mirrors.rpmfusion.org/mirrorlist?repo=rpmfusion-free-rawhide-source&arch=$basearch
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-free-fedora
--- NEW FILE rpmfusion-free-release.spec ---
%define repo free
#define repo nonfree
Name: rpmfusion-%{repo}-release
Version: 9.90
Release: 1
Summary: RPM Fusion (Free) Repository Configuration
Group: System Environment/Base
License: BSD
URL: http://rpmfusion.org
Source0: RPM-GPG-KEY-rpmfusion-%{repo}-fedora
Source1: rpmfusion-%{repo}.repo
Source2: rpmfusion-%{repo}-updates.repo
Source3: rpmfusion-%{repo}-updates-testing.repo
Source4: rpmfusion-%{repo}-rawhide.repo
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch: noarch
Requires: fedora-release >= %{version}
# If apt is around, it needs to be a version with repomd support
Conflicts: apt < 0.5.15lorg3
%if %{repo} == "nonfree"
Requires: rpmfusion-free-release >= %{version}
# enable those once RPM Fusion is in full production and ready
# to obsolete the old repos:
#Provides: freshrpms-release = %{version}-%{release}
#Obsoletes: freshrpms-release <= %{version}-%{release}
#Provides: livna-release = %{version}-%{release}
#Obsoletes: livna-release <= %{version}-%{release}
#Provides: dribble-release = %{version}-%{release}
#Obsoletes: dribble-release <= %{version}-%{release}
%description
RPM Fusion repository contains open source and other distributable software for
Fedora. It is the merger of the Dribble, FreshRPMs and Livna repositories.
This package contains the RPM Fusion GPG key as well as Yum package manager
configuration files for RPM Fusion's "nonfree" repository, which holds
software that is not considered as Open Source Software according to the
Fedora packaging guidelines.
%else
%description
RPM Fusion repository contains open source and other distributable software for
Fedora. It is the merger of the Dribble, FreshRPMs and Livna repositories.
This package contains the RPM Fusion GPG key as well as Yum package manager
configuration files for RPM Fusion's "free" repository, which holds only
software that is considered as Open Source Software according to the Fedora
packaging guidelines.
%endif
%prep
echo "Nothing to prep"
%build
echo "Nothing to build"
%install
rm -rf $RPM_BUILD_ROOT
# Create dirs
install -d -m755 \
$RPM_BUILD_ROOT%{_sysconfdir}/pki/rpm-gpg \
$RPM_BUILD_ROOT%{_sysconfdir}/yum.repos.d
# GPG Key
%{__install} -Dp -m644 %{SOURCE0} \
$RPM_BUILD_ROOT%{_sysconfdir}/pki/rpm-gpg
# Yum .repo files
%{__install} -p -m644 %{SOURCE1} %{SOURCE2} %{SOURCE3} %{SOURCE4} \
$RPM_BUILD_ROOT%{_sysconfdir}/yum.repos.d
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
%{_sysconfdir}/pki/rpm-gpg/*
%config(noreplace) %{_sysconfdir}/yum.repos.d/*
%changelog
* Sat Sep 27 2008 Thorsten Leemhuis <fedora at leemhuis.info> - 9.90-1
- Update for Fedora 10 rawhide
- enable devel repos, disable all the others
* 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
* Thu Sep 18 2008 Stewart Adam <s.adam at diffingo.com> - 9-6
- Fix rpmfusion-rpmfusion typo
* Mon Aug 18 2008 Stewart Adam <s.adam at diffingo.com> - 9-5
- Use mirrors.rpmfusion.org instead of rpmfusion.org/mirrorlist
- Use download.rpmfusion.org instead of download1.rpmfusion.org
* Fri Aug 15 2008 Stewart Adam <s.adam at diffingo.com> - 9-4
- Only include provides/obsoletes for pre-merger release RPMs in nonfree
- Remove GPL doc
* Thu Aug 14 2008 Thorsten Leemhuis <fedora at leemhuis.info> - 9-3
- add conditionals and macros to use one spec file for both free and nonfree
- some cleanups
* Wed Aug 13 2008 Stewart Adam <s.adam at diffingo.com> - 9-2
- Split into free and non-free RPMs based on original release RPM
- Remove double BuildArch
- Remove GPL source
- Fix mirror URLs
- devel --> rawhide
* Tue Aug 12 2008 Stewart Adam <s.adam at diffingo.com> - 9-1
- Initial RPM release
--- NEW FILE rpmfusion-free-updates-testing.repo ---
# Please note that the mirrorlists URLs are only temporary and will be changed soon.
# The debuginfo and source repos will also be switching from baseurl to a
# mirror list.
[rpmfusion-free-updates-testing]
name=RPM Fusion for Fedora $releasever - Free - Test Updates
failovermethod=priority
#baseurl=http://download.rpmfusion.org/free/fedora/updates/testing/$releasever/$basearch/
mirrorlist=http://download1.rpmfusion.org/free/fedora/.mirrorlist-free-fe...
failovermethod=roundrobin
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-free-fedora
[rpmfusion-free-updates-testing-debuginfo]
name=RPM Fusion for Fedora $releasever - Free - Test Updates Debug
failovermethod=priority
baseurl=http://download1.rpmfusion.org/free/fedora/updates/testing/$relea...
#mirrorlist=http://mirrors.rpmfusion.org/mirrorlist?repo=rpmfusion-free-updates-testing-debug-f$releasever&arch=$basearch
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-free-fedora
[rpmfusion-free-updates-testing-source]
name=RPM Fusion for Fedora $releasever - Free - Test Updates Source
failovermethod=priority
baseurl=http://download1.rpmfusion.org/free/fedora/updates/testing/$relea...
#mirrorlist=http://mirrors.rpmfusion.org/mirrorlist?repo=rpmfusion-free-updates-testing-source-f$releasever&arch=$basearch
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-free-fedora
--- NEW FILE rpmfusion-free-updates.repo ---
# Please note that the mirrorlists URLs are only temporary and will be changed soon.
# The debuginfo and source repos will also be switching from baseurl to a
# mirror list.
[rpmfusion-rpmfusion-free-updates]
name=RPM Fusion for Fedora $releasever - Free - Updates
failovermethod=priority
#baseurl=http://download.rpmfusion.org/free/fedora/updates/$releasever/$basearch/
mirrorlist=http://download1.rpmfusion.org/free/fedora/.mirrorlist-free-fe...
failovermethod=roundrobin
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-free-fedora
[rpmfusion-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...
#mirrorlist=http://mirrors.rpmfusion.org/mirrorlist?repo=rpmfusion-free-updates-debug-f$releasever&arch=$basearch
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-free-fedora
[rpmfusion-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...
#mirrorlist=http://mirrors.rpmfusion.org/mirrorlist?repo=rpmfusion-free-updates-source-f$releasever&arch=$basearch
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-free-fedora
--- NEW FILE rpmfusion-free.repo ---
# Please note that the mirrorlists URLs are only temporary and will be changed soon.
# The debuginfo and source repos will also be switching from baseurl to a
# mirror list.
[rpmfusion-free]
name=RPM Fusion for Fedora $releasever - Free
failovermethod=priority
#baseurl=http://download.rpmfusion.org/free/fedora/releases/$releasever/Everything/$basearch/os/
mirrorlist=http://download1.rpmfusion.org/free/fedora/.mirrorlist-free-fe...
failovermethod=roundrobin
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-free-fedora
[rpmfusion-free-debuginfo]
name=RPM Fusion for Fedora $releasever - Free - Debug
failovermethod=priority
baseurl=http://download1.rpmfusion.org/free/fedora/releases/$releasever/E...
#mirrorlist=http://mirrors.rpmfusion.org/mirrorlist?repo=rpmfusion-free-debug-f$releasever&arch=$basearch
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-free-fedora
[rpmfusion-free-source]
name=RPM Fusion for Fedora $releasever - Free - Source
failovermethod=priority
baseurl=http://download1.rpmfusion.org/free/fedora/releases/$releasever/E...
#mirrorlist=http://mirrors.rpmfusion.org/mirrorlist?repo=rpmfusion-free-source-f$releasever&arch=$basearch
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-free-fedora
16 years, 2 months
rpms/rpmfusion-nonfree-release/devel RPM-GPG-KEY-rpmfusion-nonfree-fedora, NONE, 1.1 rpmfusion-nonfree-rawhide.repo, NONE, 1.1 rpmfusion-nonfree-release.spec, NONE, 1.1 rpmfusion-nonfree-updates-testing.repo, NONE, 1.1 rpmfusion-nonfree-updates.repo, NONE, 1.1 rpmfusion-nonfree.repo, NONE, 1.1
by Thorsten Leemhuis
Author: thl
Update of /cvs/nonfree/rpms/rpmfusion-nonfree-release/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv31148
Added Files:
RPM-GPG-KEY-rpmfusion-nonfree-fedora
rpmfusion-nonfree-rawhide.repo rpmfusion-nonfree-release.spec
rpmfusion-nonfree-updates-testing.repo
rpmfusion-nonfree-updates.repo rpmfusion-nonfree.repo
Log Message:
add rpmfusion-nonfree-release
--- NEW FILE RPM-GPG-KEY-rpmfusion-nonfree-fedora ---
-----BEGIN PGP PUBLIC KEY BLOCK-----
Version: GnuPG v1.4.5 (GNU/Linux)
mQGiBEh43oURBACjM0AB3YpQ9MLjCASiZg+/GPCiqI+iKpLmmynFmT+THbqqCxLu
oV7AcDKnaoZnrwNoVOj5ZG6ITFO2hQ+D4KPsbAXZLfhZv/5tiXqEV8XUbHlEIVpw
iuLBGX8JK/gPZGsoBQgOUKn2FFiSJCCa8uBRbX9ihccdEEuYvC2NWcsXIwCghH1A
7+ltEEI9MoLNFNio25Sqs6kD/ii/fG02JFPi8JDN8R2BWHcbCd59FDDIdXvbHXld
m9SngJaIYZ5cECx5iOPlqmZTrJyqmoG0RzQRGA7kj/7yTal4LIqsfaLRLMDI+EVa
cxA9zdnBEAQgwZmQ0QRsBDEBD2zKhMvHMMro00/8i01qfalfwLlCj7r58dOdB/wc
n6B4A/9cIpcV1zipJrOTgEA4t48ehDMPOH58v5DP8ZCtpdzJm9hKGa3HwDSZt+A4
HgdBKUODyBi5LqNDEySz9DdJn4+k9iro6rEgapWc/6IjuJrLlCPYAEOa17ka3kA9
0rRMeOUEdTqNSJpuOp8rGXCPCKZ5pGYdujx7QWXIPHAVLHxxiLRRUlBNIEZ1c2lv
biByZXBvc2l0b3J5IChGZWRvcmEgLSBub25mcmVlKSA8cnBtZnVzaW9uLWJ1aWxk
c3lzQGxpc3RzLnJwbWZ1c2lvbi5vcmc+iGAEExECACAFAkh43oUCGwMGCwkIBwMC
BBUCCAMEFgIDAQIeAQIXgAAKCRAgb4GCsZgbaLXxAJoDQKjEweJjPsqRK6+ezh9h
tFh79gCfSLKkR/B4184aB7/LLCJZz7ilJ+O5Ag0ESHjemRAIANlJHiAsjpIBD1FD
NYZCtXnfh4Z5A4jZAN9Gp5pcguIUhIl0IdzOKRRtLezEMP8F6yB7CuQBCDUgl3bE
gJK1/MXBJTSCz/BYYzhSx3tE852gzQwN/gAbn/1/fW+L/cXCYPVcRluNYSg2I6AB
qLm2egNzd8FF+ars/dTLBb0SUODhW4IftCBYVA45sdewN5/HLVP7rHivqFZcOJoA
Epuyx23ZP47Vv5wEX+SrgsFERu7j0zv9QFaFNue/MsgEJ8ef4K8bWzQgleVCpegh
gpniSE9sToV/e1dCVewdQsmup/NCLSsTmB880LUoUMYJBQIrChRur2Tiu6Po8E8K
0MLToVsAAwYIAL/DcDGeepvhSyLuDsu875L7otoWwxRk2Y09/aME9KUB/h7vaWcv
YWdCdBtlzq7g7Fv9QK+s4B63ozM3HoMwQvtObQvksdD3vPbOaHymjE6Fqt+0+Qbd
OvJsxKK4Y62nDD9dRW2/1kdeURgl9VH0eWKEcUWNg1NPHUkZ2Mdh7DEzGCEvDDx7
aevKQYDXrYdTOcaByijXqswRZbJepZ32CUxQPYrZ0dwA4gjXs8UXDuLSnXNM/rUN
o1dAbSsgsOYCaqr1Z1nPF8RbTg6yA4gFqI/IGrgwVVe6DCTz2Shn57IpnZf0diO3
qJ6k5pw/8FvVm20nSuvhM/SdEH9nGQ2SuOWISQQYEQIACQUCSHjemQIbDAAKCRAg
b4GCsZgbaEu6AJ0ceO1s64zSr5fqbPv3A7JHFtMBLQCdGBcBFmKyvFvC1LwX9pb9
keJNaDc=
=UO0s
-----END PGP PUBLIC KEY BLOCK-----
--- NEW FILE rpmfusion-nonfree-rawhide.repo ---
# Please note that the mirrorlists URLs are only temporary and will be changed soon.
# The debuginfo and source repos will also be switching from baseurl to a
# mirror list.
[rpmfusion-nonfree-rawhide]
name=RPM Fusion for Fedora $releasever - Non-Free - Rawhide
failovermethod=priority
#baseurl=http://download.rpmfusion.org/nonfree/fedora/development/$basearch/os/
mirrorlist=http://download1.rpmfusion.org/nonfree/fedora/.mirrorlist-nonf...
failovermethod=roundrobin
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-nonfree-fedora
[rpmfusion-nonfree-rawhide-debuginfo]
name=RPM Fusion for Fedora $releasever - Non-Free - Rawhide Debug
failovermethod=priority
baseurl=http://download1.rpmfusion.org/nonfree/fedora/development/$basear...
#mirrorlist=http://mirrors.rpmfusion.org/mirrorlist?repo=rpmfusion-nonfree-rawhide-debug&arch=$basearch
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-nonfree-fedora
[rpmfusion-nonfree-rawhide-source]
name=RPM Fusion for Fedora $releasever - Non-Free - Rawhide Source
failovermethod=priority
baseurl=http://download1.rpmfusion.org/nonfree/fedora/development/source/...
#mirrorlist=http://mirrors.rpmfusion.org/mirrorlist?repo=rpmfusion-nonfree-rawhide-source&arch=$basearch
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-nonfree-fedora
--- NEW FILE rpmfusion-nonfree-release.spec ---
#define repo free
%define repo nonfree
Name: rpmfusion-%{repo}-release
Version: 9.90
Release: 1
Summary: RPM Fusion (Free) Repository Configuration
Group: System Environment/Base
License: BSD
URL: http://rpmfusion.org
Source0: RPM-GPG-KEY-rpmfusion-%{repo}-fedora
Source1: rpmfusion-%{repo}.repo
Source2: rpmfusion-%{repo}-updates.repo
Source3: rpmfusion-%{repo}-updates-testing.repo
Source4: rpmfusion-%{repo}-rawhide.repo
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch: noarch
Requires: fedora-release >= %{version}
# If apt is around, it needs to be a version with repomd support
Conflicts: apt < 0.5.15lorg3
%if %{repo} == "nonfree"
Requires: rpmfusion-free-release >= %{version}
# enable those once RPM Fusion is in full production and ready
# to obsolete the old repos:
#Provides: freshrpms-release = %{version}-%{release}
#Obsoletes: freshrpms-release <= %{version}-%{release}
#Provides: livna-release = %{version}-%{release}
#Obsoletes: livna-release <= %{version}-%{release}
#Provides: dribble-release = %{version}-%{release}
#Obsoletes: dribble-release <= %{version}-%{release}
%description
RPM Fusion repository contains open source and other distributable software for
Fedora. It is the merger of the Dribble, FreshRPMs and Livna repositories.
This package contains the RPM Fusion GPG key as well as Yum package manager
configuration files for RPM Fusion's "nonfree" repository, which holds
software that is not considered as Open Source Software according to the
Fedora packaging guidelines.
%else
%description
RPM Fusion repository contains open source and other distributable software for
Fedora. It is the merger of the Dribble, FreshRPMs and Livna repositories.
This package contains the RPM Fusion GPG key as well as Yum package manager
configuration files for RPM Fusion's "free" repository, which holds only
software that is considered as Open Source Software according to the Fedora
packaging guidelines.
%endif
%prep
echo "Nothing to prep"
%build
echo "Nothing to build"
%install
rm -rf $RPM_BUILD_ROOT
# Create dirs
install -d -m755 \
$RPM_BUILD_ROOT%{_sysconfdir}/pki/rpm-gpg \
$RPM_BUILD_ROOT%{_sysconfdir}/yum.repos.d
# GPG Key
%{__install} -Dp -m644 %{SOURCE0} \
$RPM_BUILD_ROOT%{_sysconfdir}/pki/rpm-gpg
# Yum .repo files
%{__install} -p -m644 %{SOURCE1} %{SOURCE2} %{SOURCE3} %{SOURCE4} \
$RPM_BUILD_ROOT%{_sysconfdir}/yum.repos.d
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
%{_sysconfdir}/pki/rpm-gpg/*
%config(noreplace) %{_sysconfdir}/yum.repos.d/*
%changelog
* Sat Sep 27 2008 Thorsten Leemhuis <fedora at leemhuis.info> - 9.90-1
- Update for Fedora 10 rawhide
- enable devel repos, disable all the others
* Sat Sep 27 2008 Stewart Adam <s.adam at diffingo.com> - 9-6
- Use temporary mirrorlists for now, and baseurl for the debug & source repos
* Mon Aug 18 2008 Stewart Adam <s.adam at diffingo.com> - 9-5
- Use mirrors.rpmfusion.org instead of rpmfusion.org/mirrorlist
- Use download.rpmfusion.org instead of download1.rpmfusion.org
* Fri Aug 15 2008 Stewart Adam <s.adam at diffingo.com> - 9-4
- Only include provides/obsoletes for pre-merger release RPMs in nonfree
- Remove GPL doc
* Thu Aug 14 2008 Thorsten Leemhuis <fedora at leemhuis.info> - 9-3
- add conditionals and macros to use one spec file for both free and nonfree
- some cleanups
* Wed Aug 13 2008 Stewart Adam <s.adam at diffingo.com> - 9-2
- Split into free and non-free RPMs based on original release RPM
- Remove double BuildArch
- Remove GPL source
- Fix mirror URLs
- devel --> rawhide
* Tue Aug 12 2008 Stewart Adam <s.adam at diffingo.com> - 9-1
- Initial RPM release
--- NEW FILE rpmfusion-nonfree-updates-testing.repo ---
# Please note that the mirrorlists URLs are only temporary and will be changed soon.
# The debuginfo and source repos will also be switching from baseurl to a
# mirror list.
[rpmfusion-nonfree-updates-testing]
name=RPM Fusion for Fedora $releasever - Non-Free - Test Updates
failovermethod=priority
#baseurl=http://download.rpmfusion.org/nonfree/fedora/updates/testing/$releasever/$basearch/
mirrorlist=http://download1.rpmfusion.org/nonfree/fedora/.mirrorlist-nonf...
failovermethod=roundrobin
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-nonfree-fedora
[rpmfusion-nonfree-updates-testing-debuginfo]
name=RPM Fusion for Fedora $releasever - Non-Free - Test Updates Debug
failovermethod=priority
baseurl=http://download1.rpmfusion.org/nonfree/fedora/updates/testing/$re...
#mirrorlist=http://mirrors.rpmfusion.org/mirrorlist?repo=rpmfusion-nonfree-updates-testing-debug-f$releasever&arch=$basearch
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-nonfree-fedora
[rpmfusion-nonfree-updates-testing-source]
name=RPM Fusion for Fedora $releasever - Non-Free - Test Updates Source
failovermethod=priority
baseurl=http://download1.rpmfusion.org/nonfree/fedora/updates/testing/$re...
#mirrorlist=http://mirrors.rpmfusion.org/mirrorlist?repo=rpmfusion-nonfree-updates-testing-source-f$releasever&arch=$basearch
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-nonfree-fedora
--- NEW FILE rpmfusion-nonfree-updates.repo ---
# Please note that the mirrorlists URLs are only temporary and will be changed soon.
# The debuginfo and source repos will also be switching from baseurl to a
# mirror list.
[rpmfusion-nonfree-updates]
name=RPM Fusion for Fedora $releasever - Non-Free - Updates
failovermethod=priority
#baseurl=http://download.rpmfusion.org/nonfree/fedora/updates/$releasever/$basearch/
mirrorlist=http://download1.rpmfusion.org/nonfree/fedora/.mirrorlist-nonf...
failovermethod=roundrobin
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-nonfree-fedora
[rpmfusion-nonfree-updates-debuginfo]
name=RPM Fusion for Fedora $releasever - Non-Free - Updates Debug
failovermethod=priority
baseurl=http://download1.rpmfusion.org/nonfree/fedora/updates/$releasever...
#mirrorlist=http://mirrors.rpmfusion.org/mirrorlist?repo=rpmfusion-nonfree-updates-debug-f$releasever&arch=$basearch
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-nonfree-fedora
[rpmfusion-nonfree-updates-source]
name=RPM Fusion for Fedora $releasever - Non-Free - Updates Source
failovermethod=priority
baseurl=http://download1.rpmfusion.org/nonfree/fedora/updates/$releasever...
#mirrorlist=http://mirrors.rpmfusion.org/mirrorlist?repo=rpmfusion-nonfree-updates-source-f$releasever&arch=$basearch
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-nonfree-fedora
--- NEW FILE rpmfusion-nonfree.repo ---
# Please note that the mirrorlists URLs are only temporary and will be changed soon.
# The debuginfo and source repos will also be switching from baseurl to a
# mirror list.
[rpmfusion-nonfree]
name=RPM Fusion for Fedora $releasever - Non-Free
failovermethod=priority
#baseurl=http://download.rpmfusion.org/nonfree/fedora/releases/$releasever/Everything/$basearch/os/
mirrorlist=http://download1.rpmfusion.org/nonfree/fedora/.mirrorlist-nonf...
failovermethod=roundrobin
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-nonfree-fedora
[rpmfusion-nonfree-debuginfo]
name=RPM Fusion for Fedora $releasever - Non-Free - Debug
failovermethod=priority
baseurl=http://download1.rpmfusion.org/nonfree/fedora/releases/$releaseve...
#mirrorlist=http://mirrors.rpmfusion.org/mirrorlist?repo=rpmfusion-nonfree-debug-f$releasever&arch=$basearch
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-nonfree-fedora
[rpmfusion-nonfree-source]
name=RPM Fusion for Fedora $releasever - Non-Free - Source
failovermethod=priority
baseurl=http://download1.rpmfusion.org/nonfree/fedora/releases/$releaseve...
#mirrorlist=http://mirrors.rpmfusion.org/mirrorlist?repo=rpmfusion-nonfree-source-f$releasever&arch=$basearch
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-nonfree-fedora
16 years, 2 months