rpms/caja-dropbox/devel .cvsignore, 1.3, 1.4 caja-dropbox.spec, 1.11, 1.12
by Wolfgang Ulbrich
Author: raveit65
Update of /cvs/nonfree/rpms/caja-dropbox/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv13953
Modified Files:
.cvsignore caja-dropbox.spec
Log Message:
* Sun Aug 09 2015 Wolfgang Ulbrich <chat-to-me(a)raveit.de> - 1.10.0-1
- update to 1.10.0 release
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/caja-dropbox/devel/.cvsignore,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- .cvsignore 21 Jul 2013 15:21:28 -0000 1.3
+++ .cvsignore 9 Aug 2015 19:15:27 -0000 1.4
@@ -1,2 +1 @@
-nautilus-dropbox-1.6.0.tar.bz2
-dropbox
+caja-dropbox-1.10.0.tar.xz
Index: caja-dropbox.spec
===================================================================
RCS file: /cvs/nonfree/rpms/caja-dropbox/devel/caja-dropbox.spec,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- caja-dropbox.spec 10 Jan 2015 13:32:07 -0000 1.11
+++ caja-dropbox.spec 9 Aug 2015 19:15:27 -0000 1.12
@@ -1,7 +1,7 @@
Summary: Dropbox extension for caja
Name: caja-dropbox
-Version: 1.8.0
-Release: 3%{?dist}
+Version: 1.10.0
+Release: 1%{?dist}
License: GPLv2+
Group: User Interface/Desktops
URL: https://github.com/mate-desktop/caja-dropbox
@@ -54,6 +54,9 @@
%changelog
+* Sun Aug 09 2015 Wolfgang Ulbrich <chat-to-me(a)raveit.de> - 1.10.0-1
+- update to 1.10.0 release
+
* Sat Jan 10 2015 Wolfgang Ulbrich <chat-to-me(a)raveit.de> - 1.8.0-3
- add ExclusiveArch
9 years, 3 months
rpms/caja-dropbox/devel sources,1.4,1.5
by Wolfgang Ulbrich
Author: raveit65
Update of /cvs/nonfree/rpms/caja-dropbox/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv13695
Modified Files:
sources
Log Message:
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/caja-dropbox/devel/sources,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- sources 10 Oct 2014 16:37:20 -0000 1.4
+++ sources 9 Aug 2015 19:13:29 -0000 1.5
@@ -1 +1 @@
-d545e4185e5766b88870b94b3c2e534c caja-dropbox-1.8.0.tar.xz
+8c382882e94193fb2e1793dad2441d2c caja-dropbox-1.10.0.tar.xz
9 years, 3 months
rpms/vdr-skindesigner/devel c0ab674dfba4f6b8dd62bd5b7b7b8a254ae59eab.patch, NONE, 1.1 .cvsignore, 1.42, 1.43 sources, 1.43, 1.44 vdr-skindesigner.spec, 1.46, 1.47
by Martin Gansser
Author: martinkg
Update of /cvs/free/rpms/vdr-skindesigner/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv6309/devel
Modified Files:
.cvsignore sources vdr-skindesigner.spec
Added Files:
c0ab674dfba4f6b8dd62bd5b7b7b8a254ae59eab.patch
Log Message:
c0ab674dfba4f6b8dd62bd5b7b7b8a254ae59eab.patch:
HISTORY | 1 +
displaymenu.h | 7 ++++---
views/displayaudiotracksview.c | 1 +
views/displaymenulistview.c | 1 +
views/displaymenurootview.c | 1 +
views/displaymenuview.c | 2 +-
6 files changed, 9 insertions(+), 4 deletions(-)
--- NEW FILE c0ab674dfba4f6b8dd62bd5b7b7b8a254ae59eab.patch ---
>From c0ab674dfba4f6b8dd62bd5b7b7b8a254ae59eab Mon Sep 17 00:00:00 2001
From: louis
Date: Sun, 09 Aug 2015 07:33:36 +0000
Subject: fixed compiling fur unpatched VDR
---
diff --git a/HISTORY b/HISTORY
index e8811ba..86fc82a 100644
--- a/HISTORY
+++ b/HISTORY
@@ -423,3 +423,4 @@ Version 0.6.3
Version 0.7.0
+- fixed compiling fur unpatched VDR
diff --git a/displaymenu.h b/displaymenu.h
index 5aee6d1..6600a9a 100644
--- a/displaymenu.h
+++ b/displaymenu.h
@@ -1,8 +1,5 @@
#ifndef __DISPLAYMENU_H
#define __DISPLAYMENU_H
-#include "libskindesignerapi/skindesignerapi.h"
-#include "libtemplate/template.h"
-#include "views/displaymenurootview.h"
#if defined(APIVERSNUM) && APIVERSNUM < 20301
#ifndef MENU_ORIENTATION_DEFINED
@@ -13,6 +10,10 @@ enum eMenuOrientation {
#endif
#endif
+#include "libskindesignerapi/skindesignerapi.h"
+#include "libtemplate/template.h"
+#include "views/displaymenurootview.h"
+
enum eViewState {
vsInit,
vsMenuInit,
diff --git a/views/displayaudiotracksview.c b/views/displayaudiotracksview.c
index f2f6a32..a24d331 100644
--- a/views/displayaudiotracksview.c
+++ b/views/displayaudiotracksview.c
@@ -1,5 +1,6 @@
#define __STL_CONFIG_H
#include <vdr/menu.h>
+#include "../displaymenu.h"
#include "displayaudiotracksview.h"
cDisplayAudiotracksView::cDisplayAudiotracksView(int numTracks, cTemplateView *tmplView) : cView(tmplView) {
diff --git a/views/displaymenulistview.c b/views/displaymenulistview.c
index b96bdc2..7cc08c9 100644
--- a/views/displaymenulistview.c
+++ b/views/displaymenulistview.c
@@ -1,4 +1,5 @@
#include <vdr/menu.h>
+#include "../displaymenu.h"
#include "displaymenulistview.h"
diff --git a/views/displaymenurootview.c b/views/displaymenurootview.c
index 2d4e457..76d8b86 100644
--- a/views/displaymenurootview.c
+++ b/views/displaymenurootview.c
@@ -1,5 +1,6 @@
#define __STL_CONFIG_H
#include <vdr/menu.h>
+#include "../displaymenu.h"
#include "displaymenurootview.h"
#include "displayviewelements.h"
#include "../config.h"
diff --git a/views/displaymenuview.c b/views/displaymenuview.c
index 53ab558..d5abe7d 100644
--- a/views/displaymenuview.c
+++ b/views/displaymenuview.c
@@ -1,6 +1,7 @@
#define __STL_CONFIG_H
#include <vdr/menu.h>
#include <vdr/videodir.h>
+#include "../displaymenu.h"
#include "displaymenuview.h"
#include "displayviewelements.h"
#include "../config.h"
--
cgit v0.9.0.2-40-g7c79
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/vdr-skindesigner/devel/.cvsignore,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -r1.42 -r1.43
--- .cvsignore 30 Jul 2015 17:48:09 -0000 1.42
+++ .cvsignore 9 Aug 2015 08:42:19 -0000 1.43
@@ -1 +1 @@
-vdr-plugin-skindesigner-0.6.3.tar.bz2
+vdr-plugin-skindesigner-0.7.0.tar.bz2
Index: sources
===================================================================
RCS file: /cvs/free/rpms/vdr-skindesigner/devel/sources,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- sources 30 Jul 2015 17:48:09 -0000 1.43
+++ sources 9 Aug 2015 08:42:19 -0000 1.44
@@ -1 +1 @@
-36103d7483fc01d8290c4efb66369787 vdr-plugin-skindesigner-0.6.3.tar.bz2
+77995cfb9a817a5dcbc77b446bcbb861 vdr-plugin-skindesigner-0.7.0.tar.bz2
Index: vdr-skindesigner.spec
===================================================================
RCS file: /cvs/free/rpms/vdr-skindesigner/devel/vdr-skindesigner.spec,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- vdr-skindesigner.spec 30 Jul 2015 17:48:09 -0000 1.46
+++ vdr-skindesigner.spec 9 Aug 2015 08:42:19 -0000 1.47
@@ -1,5 +1,5 @@
Name: vdr-skindesigner
-Version: 0.6.3
+Version: 0.7.0
Release: 1%{?dist}
Summary: A VDR skinning engine that displays XML based Skins
@@ -9,6 +9,8 @@
Source0: http://projects.vdr-developer.org/git/vdr-plugin-skindesigner.git/snapsho...
# Configuration files for plugin parameters. These are Fedora specific and not in upstream.
Source1: %{name}.conf
+# fixed compiling for unpatched VDR
+Patch0: c0ab674dfba4f6b8dd62bd5b7b7b8a254ae59eab.patch
BuildRequires: vdr-devel >= 2.0.0
BuildRequires: gettext
@@ -62,6 +64,8 @@
sed -i -e 's|PCDIR ?= $(PREFIX)/lib/pkgconfig|PCDIR ?= %{_libdir}/pkgconfig|g' libskindesignerapi/Makefile
chmod 755 scripts/temperatures.g2v
+%patch0 -p1
+
%build
make CFLAGS="%{optflags} -fPIC" CXXFLAGS="%{optflags} -fPIC" %{?_smp_mflags} all
@@ -113,6 +117,10 @@
%{_includedir}/libskindesignerapi/
%changelog
+* Sun Aug 09 2015 Martin Gansser <martinkg(a)fedoraproject.org> - 0.7.0-1
+- Update to 0.7.0
+- added Patch that fixed compiling for unpatched VDR
+
* Thu Jul 30 2015 Martin Gansser <martinkg(a)fedoraproject.org> - 0.6.3-1
- Update to 0.6.3
9 years, 3 months
rpms/clipgrab/devel .cvsignore, 1.4, 1.5 clipgrab.spec, 1.3, 1.4 sources, 1.4, 1.5
by Martin Gansser
Author: martinkg
Update of /cvs/nonfree/rpms/clipgrab/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv7725/devel
Modified Files:
.cvsignore clipgrab.spec sources
Log Message:
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/clipgrab/devel/.cvsignore,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- .cvsignore 22 May 2015 19:22:38 -0000 1.4
+++ .cvsignore 7 Aug 2015 14:45:59 -0000 1.5
@@ -1 +1 @@
-clipgrab-3.4.11.tar.bz2
+clipgrab-3.5.1.tar.gz
Index: clipgrab.spec
===================================================================
RCS file: /cvs/nonfree/rpms/clipgrab/devel/clipgrab.spec,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- clipgrab.spec 22 May 2015 19:22:38 -0000 1.3
+++ clipgrab.spec 7 Aug 2015 14:45:59 -0000 1.4
@@ -1,12 +1,12 @@
Name: clipgrab
-Version: 3.4.11
+Version: 3.5.1
Release: 1%{?dist}
License: GPLv3 and Non-Commercial Use Only (Artwork and Trademark)
Group: Applications/Internet
Summary: A free video downloader and converter
URL: http://clipgrab.de/en
-Source0: http://clipgrab.de/download/%{name}-%{version}.tar.bz2
+Source0: http://clipgrab.de/download/%{name}-%{version}.tar.gz
Source1: %{name}.desktop
BuildRequires: qt-devel
@@ -49,6 +49,9 @@
%changelog
+* Fri Aug 07 2015 Martin Gansser <martinkg(a)fedoraproject.org> - 3.5.1-1
+- Update to 3.5.1
+
* Fri May 22 2015 Martin Gansser <martinkg(a)fedoraproject.org> - 3.4.11-1
- Update to 3.4.11
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/clipgrab/devel/sources,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- sources 22 May 2015 19:22:38 -0000 1.4
+++ sources 7 Aug 2015 14:45:59 -0000 1.5
@@ -1 +1 @@
-89b1937c34d0251e1e83d914b537e85e clipgrab-3.4.11.tar.bz2
+c453359ec416f76af0d48502c5b59ddc clipgrab-3.5.1.tar.gz
9 years, 3 months
rpms/wl-kmod/devel wl-kmod.spec,1.125,1.126
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/wl-kmod/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv27587
Modified Files:
wl-kmod.spec
Log Message:
* Fri Aug 07 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.248-8.9
- Rebuilt for kernel
Index: wl-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/wl-kmod/devel/wl-kmod.spec,v
retrieving revision 1.125
retrieving revision 1.126
diff -u -r1.125 -r1.126
--- wl-kmod.spec 30 Jul 2015 08:04:42 -0000 1.125
+++ wl-kmod.spec 7 Aug 2015 08:14:32 -0000 1.126
@@ -7,7 +7,7 @@
Name: wl-kmod
Version: 6.30.223.248
-Release: 8%{?dist}.8
+Release: 8%{?dist}.9
Summary: Kernel module for Broadcom wireless devices
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -102,6 +102,9 @@
rm -rf $RPM_BUILD_ROOT
%changelog
+* Fri Aug 07 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.248-8.9
+- Rebuilt for kernel
+
* Thu Jul 30 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.248-8.8
- Rebuilt for kernel
9 years, 3 months
rpms/nvidia-kmod/devel nvidia-kmod.spec,1.217,1.218
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/nvidia-kmod/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv27464
Modified Files:
nvidia-kmod.spec
Log Message:
* Fri Aug 07 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 1:352.30-2.2
- Rebuilt for kernel
Index: nvidia-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-kmod/devel/nvidia-kmod.spec,v
retrieving revision 1.217
retrieving revision 1.218
diff -u -r1.217 -r1.218
--- nvidia-kmod.spec 30 Jul 2015 08:04:35 -0000 1.217
+++ nvidia-kmod.spec 7 Aug 2015 08:14:23 -0000 1.218
@@ -9,7 +9,7 @@
Epoch: 1
Version: 352.30
# Taken over by kmodtool
-Release: 2%{?dist}.1
+Release: 2%{?dist}.2
Summary: NVIDIA display driver kernel module
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -92,6 +92,9 @@
%changelog
+* Fri Aug 07 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 1:352.30-2.2
+- Rebuilt for kernel
+
* Thu Jul 30 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 1:352.30-2.1
- Rebuilt for kernel
9 years, 3 months
rpms/nvidia-340xx-kmod/devel nvidia-340xx-kmod.spec,1.31,1.32
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/nvidia-340xx-kmod/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv27336
Modified Files:
nvidia-340xx-kmod.spec
Log Message:
* Fri Aug 07 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 1:340.76-3.1
- Rebuilt for kernel
Index: nvidia-340xx-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-340xx-kmod/devel/nvidia-340xx-kmod.spec,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- nvidia-340xx-kmod.spec 31 Jul 2015 12:17:40 -0000 1.31
+++ nvidia-340xx-kmod.spec 7 Aug 2015 08:14:13 -0000 1.32
@@ -3,13 +3,13 @@
# "buildforkernels newest" macro for just that build; immediately after
# queuing that build enable the macro again for subsequent builds; that way
# a new akmod package will only get build when a new one is actually needed
-%global buildforkernels current
+%global buildforkernels newest
Name: nvidia-340xx-kmod
Epoch: 1
Version: 340.76
# Taken over by kmodtool
-Release: 3%{?dist}
+Release: 3%{?dist}.1
Summary: NVIDIA display driver kernel module
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -93,6 +93,9 @@
%changelog
+* Fri Aug 07 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 1:340.76-3.1
+- Rebuilt for kernel
+
* Fri Jul 31 2015 Leigh Scott <leigh123linux(a)googlemail.com> - 1:340.76-3
- add missing obsoletes
9 years, 3 months
rpms/nvidia-304xx-kmod/devel nvidia-304xx-kmod.spec,1.52,1.53
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/nvidia-304xx-kmod/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv27211
Modified Files:
nvidia-304xx-kmod.spec
Log Message:
* Fri Aug 07 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 304.125-3.18
- Rebuilt for kernel
Index: nvidia-304xx-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-304xx-kmod/devel/nvidia-304xx-kmod.spec,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -r1.52 -r1.53
--- nvidia-304xx-kmod.spec 30 Jul 2015 08:04:20 -0000 1.52
+++ nvidia-304xx-kmod.spec 7 Aug 2015 08:14:01 -0000 1.53
@@ -8,7 +8,7 @@
Name: nvidia-304xx-kmod
Version: 304.125
# Taken over by kmodtool
-Release: 3%{?dist}.17
+Release: 3%{?dist}.18
Summary: NVIDIA display driver kernel module
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -85,6 +85,9 @@
%changelog
+* Fri Aug 07 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 304.125-3.18
+- Rebuilt for kernel
+
* Thu Jul 30 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 304.125-3.17
- Rebuilt for kernel
9 years, 3 months
rpms/catalyst-kmod/devel catalyst-kmod.spec,1.27,1.28
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/catalyst-kmod/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv27090
Modified Files:
catalyst-kmod.spec
Log Message:
* Fri Aug 07 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 1:15.7-3.2
- Rebuilt for kernel
Index: catalyst-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/catalyst-kmod/devel/catalyst-kmod.spec,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- catalyst-kmod.spec 30 Jul 2015 08:04:12 -0000 1.27
+++ catalyst-kmod.spec 7 Aug 2015 08:13:54 -0000 1.28
@@ -14,7 +14,7 @@
Name: catalyst-kmod
Epoch: 1
Version: 15.7
-Release: 3%{?dist}.1
+Release: 3%{?dist}.2
# Taken over by kmodtool
Summary: AMD display driver kernel module
Group: System Environment/Kernel
@@ -107,6 +107,9 @@
%changelog
+* Fri Aug 07 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 1:15.7-3.2
+- Rebuilt for kernel
+
* Thu Jul 30 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 1:15.7-3.1
- Rebuilt for kernel
9 years, 3 months
rpms/xtables-addons-kmod/devel xtables-addons-kmod.spec,1.68,1.69
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/xtables-addons-kmod/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv26967
Modified Files:
xtables-addons-kmod.spec
Log Message:
* Fri Aug 07 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 2.7-1.1
- Rebuilt for kernel
Index: xtables-addons-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/xtables-addons-kmod/devel/xtables-addons-kmod.spec,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -r1.68 -r1.69
--- xtables-addons-kmod.spec 30 Jul 2015 08:23:24 -0000 1.68
+++ xtables-addons-kmod.spec 7 Aug 2015 08:13:47 -0000 1.69
@@ -3,12 +3,12 @@
# "buildforkernels newest" macro for just that build; immediately after
# queuing that build enable the macro again for subsequent builds; that way
# a new akmod package will only get build when a new one is actually needed
-#global buildforkernels newest
+%global buildforkernels newest
Name: xtables-addons-kmod
Summary: Kernel module (kmod) for xtables-addons
Version: 2.7
-Release: 1%{?dist}
+Release: 1%{?dist}.1
License: GPLv2
Group: System Environment/Kernel
URL: http://xtables-addons.sourceforge.net
@@ -65,6 +65,9 @@
rm -rf %{buildroot}
%changelog
+* Fri Aug 07 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 2.7-1.1
+- Rebuilt for kernel
+
* Thu Jul 30 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 2.7-1
- Update to 2.7
9 years, 3 months