rpms/z-push/EL-5 z-push-1.5.7-package.patch, NONE, 1.1 z-push-1.5.7-zarafa.patch, NONE, 1.1 .cvsignore, 1.5, 1.6 sources, 1.5, 1.6 z-push.spec, 1.4, 1.5 z-push-1.5.6-package.patch, 1.1, NONE z-push-1.5.6-zarafa.patch, 1.1, NONE
by Robert Scheck
Author: robert
Update of /cvs/free/rpms/z-push/EL-5
In directory se02.es.rpmfusion.net:/tmp/cvs-serv24328/EL-5
Modified Files:
.cvsignore sources z-push.spec
Added Files:
z-push-1.5.7-package.patch z-push-1.5.7-zarafa.patch
Removed Files:
z-push-1.5.6-package.patch z-push-1.5.6-zarafa.patch
Log Message:
Upgrade to 1.5.7
z-push-1.5.7-package.patch:
config.php | 20 +++++---------------
debug.php | 2 +-
index.php | 9 +++++++++
3 files changed, 15 insertions(+), 16 deletions(-)
--- NEW FILE z-push-1.5.7-package.patch ---
Patch by Robert Scheck <robert(a)fedoraproject.org> for z-push >= 1.5.7, that
changes the original paths from Z-Push upstream to Fedora compliant ones.
--- z-push-1.5.7/debug.php 2010-11-19 22:20:24.000000000 +0100
+++ z-push-1.5.7/debug.php.package 2011-12-11 23:34:15.000000000 +0100
@@ -57,7 +57,7 @@
function debugLog($message) {
global $auth_user;
$user = (isset($auth_user))?"[". $auth_user ."] ":"";
- @$fp = fopen(BASE_PATH . "/debug.txt","a");
+ @$fp = fopen("/var/lib/z-push/debug.txt","a");
@$date = strftime("%x %X");
@fwrite($fp, "$date [". getmypid() ."] ". $user . "$message\n");
@fclose($fp);
--- z-push-1.5.7/config.php 2011-11-24 22:39:15.000000000 +0100
+++ z-push-1.5.7/config.php.package 2011-12-11 23:35:34.000000000 +0100
@@ -40,10 +40,8 @@
*
* Consult LICENSE file for details
************************************************/
- // Defines the default time zone
- if (function_exists("date_default_timezone_set")){
- date_default_timezone_set("Europe/Amsterdam");
- }
+ // Defines the default time zone, change e.g. to "Europe/London" if necessary
+ define('TIMEZONE', '');
// Defines the base path on the server, terminated by a slash
define('BASE_PATH', dirname($_SERVER['SCRIPT_FILENAME']) . "/");
@@ -57,7 +55,7 @@
"/usr/share/php5/" . PATH_SEPARATOR .
"/usr/share/pear/");
- define('STATE_DIR', BASE_PATH.'/state');
+ define('STATE_DIR', '/var/lib/z-push/state');
// Try to set unlimited timeout
define('SCRIPT_TIMEOUT', 0);
@@ -96,16 +94,8 @@
// a higher value if you have a high load on the server.
define('PING_INTERVAL', 30);
- // The data providers that we are using (see configuration below)
- $BACKEND_PROVIDER = "BackendICS";
-
- // ************************
- // BackendICS settings
- // ************************
-
- // Defines the server to which we want to connect
- define('MAPI_SERVER', 'file:///var/run/zarafa');
-
+ // The data provider that we are using
+ $BACKEND_PROVIDER = "BackendIMAP";
// ************************
// BackendIMAP settings
--- z-push-1.5.7/index.php 2011-08-04 19:32:40.000000000 +0200
+++ z-push-1.5.7/index.php.package 2011-12-11 23:35:57.000000000 +0100
@@ -53,6 +53,15 @@
include_once("compat.php");
include_once("version.php");
+// Set timezone, see https://developer.berlios.de/mantis/view.php?id=479
+if(function_exists("date_default_timezone_set")) {
+ if(defined('TIMEZONE') ? constant('TIMEZONE') : false) {
+ date_default_timezone_set(TIMEZONE);
+ } else if(!ini_get('date.timezone')) {
+ date_default_timezone_set('Europe/Amsterdam');
+ }
+}
+
// Attempt to set maximum execution time
ini_set('max_execution_time', SCRIPT_TIMEOUT);
set_time_limit(SCRIPT_TIMEOUT);
z-push-1.5.7-zarafa.patch:
config.php | 45 ++++-----------------------------------------
debug.php | 2 +-
index.php | 9 +++++++++
3 files changed, 14 insertions(+), 42 deletions(-)
--- NEW FILE z-push-1.5.7-zarafa.patch ---
Patch by Robert Scheck <robert(a)fedoraproject.org> for z-push >= 1.5.7, that
changes the original paths from Z-Push upstream to Fedora compliant ones.
--- z-push-1.5.7/debug.php 2010-11-19 22:20:24.000000000 +0100
+++ z-push-1.5.7/debug.php.zarafa 2011-12-11 23:27:55.000000000 +0100
@@ -57,7 +57,7 @@
function debugLog($message) {
global $auth_user;
$user = (isset($auth_user))?"[". $auth_user ."] ":"";
- @$fp = fopen(BASE_PATH . "/debug.txt","a");
+ @$fp = fopen("/var/lib/zarafa-z-push/debug.txt","a");
@$date = strftime("%x %X");
@fwrite($fp, "$date [". getmypid() ."] ". $user . "$message\n");
@fclose($fp);
--- z-push-1.5.7/config.php 2011-11-24 22:39:15.000000000 +0100
+++ z-push-1.5.7/config.php.zarafa 2011-12-11 23:29:14.000000000 +0100
@@ -40,10 +40,8 @@
*
* Consult LICENSE file for details
************************************************/
- // Defines the default time zone
- if (function_exists("date_default_timezone_set")){
- date_default_timezone_set("Europe/Amsterdam");
- }
+ // Defines the default time zone, change e.g. to "Europe/London" if necessary
+ define('TIMEZONE', '');
// Defines the base path on the server, terminated by a slash
define('BASE_PATH', dirname($_SERVER['SCRIPT_FILENAME']) . "/");
@@ -57,7 +55,7 @@
"/usr/share/php5/" . PATH_SEPARATOR .
"/usr/share/pear/");
- define('STATE_DIR', BASE_PATH.'/state');
+ define('STATE_DIR', '/var/lib/zarafa-z-push/state');
// Try to set unlimited timeout
define('SCRIPT_TIMEOUT', 0);
@@ -96,7 +94,7 @@
// a higher value if you have a high load on the server.
define('PING_INTERVAL', 30);
- // The data providers that we are using (see configuration below)
+ // The data provider that we are using
$BACKEND_PROVIDER = "BackendICS";
// ************************
@@ -107,41 +105,6 @@
define('MAPI_SERVER', 'file:///var/run/zarafa');
- // ************************
- // BackendIMAP settings
- // ************************
-
- // Defines the server to which we want to connect
- // recommended to use local servers only
- define('IMAP_SERVER', 'localhost');
- // connecting to default port (143)
- define('IMAP_PORT', 143);
- // best cross-platform compatibility (see http://php.net/imap_open for options)
- define('IMAP_OPTIONS', '/notls/norsh');
- // overwrite the "from" header if it isn't set when sending emails
- // options: 'username' - the username will be set (usefull if your login is equal to your emailaddress)
- // 'domain' - the value of the "domain" field is used
- // '@mydomain.com' - the username is used and the given string will be appended
- define('IMAP_DEFAULTFROM', '');
- // copy outgoing mail to this folder. If not set z-push will try the default folders
- define('IMAP_SENTFOLDER', '');
- // forward messages inline (default off - as attachment)
- define('IMAP_INLINE_FORWARD', false);
- // use imap_mail() to send emails (default) - off uses mail()
- define('IMAP_USE_IMAPMAIL', true);
-
-
- // ************************
- // BackendMaildir settings
- // ************************
- define('MAILDIR_BASE', '/tmp');
- define('MAILDIR_SUBDIR', 'Maildir');
-
- // **********************
- // BackendVCDir settings
- // **********************
- define('VCARDDIR_DIR', '/home/%u/.kde/share/apps/kabc/stdvcf');
-
// Alternative backend to perform SEARCH requests (GAL search)
// if an empty value is used, the default search functionality of the main backend is used
// use 'SearchLDAP' to search in a LDAP directory (see backend/searchldap/config.php)
--- z-push-1.5.7/index.php 2011-08-04 19:32:40.000000000 +0200
+++ z-push-1.5.7/index.php.zarafa 2011-12-11 23:29:43.000000000 +0100
@@ -53,6 +53,15 @@
include_once("compat.php");
include_once("version.php");
+// Set timezone, see https://developer.berlios.de/mantis/view.php?id=479
+if(function_exists("date_default_timezone_set")) {
+ if(defined('TIMEZONE') ? constant('TIMEZONE') : false) {
+ date_default_timezone_set(TIMEZONE);
+ } else if(!ini_get('date.timezone')) {
+ date_default_timezone_set('Europe/Amsterdam');
+ }
+}
+
// Attempt to set maximum execution time
ini_set('max_execution_time', SCRIPT_TIMEOUT);
set_time_limit(SCRIPT_TIMEOUT);
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/z-push/EL-5/.cvsignore,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- .cvsignore 11 Dec 2011 22:41:35 -0000 1.5
+++ .cvsignore 7 Feb 2012 22:20:47 -0000 1.6
@@ -1,2 +1,2 @@
-z-push-1.5.6-954.tar.gz
+z-push-1.5.7-1101.tar.gz
z-push-permission.pdf
Index: sources
===================================================================
RCS file: /cvs/free/rpms/z-push/EL-5/sources,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- sources 11 Dec 2011 22:41:35 -0000 1.5
+++ sources 7 Feb 2012 22:20:47 -0000 1.6
@@ -1,2 +1,2 @@
-730df738da44757fdd270b37b36fa3e7 z-push-1.5.6-954.tar.gz
+9fc2d6e2d72d540de2eb52e157b8efe2 z-push-1.5.7-1101.tar.gz
0d25be91b27fe7ebab16ed593c9fbf48 z-push-permission.pdf
Index: z-push.spec
===================================================================
RCS file: /cvs/free/rpms/z-push/EL-5/z-push.spec,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- z-push.spec 11 Dec 2011 22:41:37 -0000 1.4
+++ z-push.spec 7 Feb 2012 22:20:47 -0000 1.5
@@ -1,9 +1,9 @@
-%global svnrevision 954
+%global svnrevision 1101
%global with_ldap 1
Summary: ActiveSync over-the-air implementation for mobile syncing
Name: z-push
-Version: 1.5.6
+Version: 1.5.7
Release: 1%{?dist}
License: AGPLv3 with exceptions
Group: Applications/Productivity
@@ -178,6 +178,9 @@
%attr(-,apache,apache) %dir %{_localstatedir}/lib/zarafa-%{name}/state/
%changelog
+* Tue Feb 07 2012 Robert Scheck <robert(a)fedoraproject.org> 1.5.7-1
+- Upgrade to 1.5.7
+
* Sun Dec 11 2011 Robert Scheck <robert(a)fedoraproject.org> 1.5.6-1
- Upgrade to 1.5.6
--- z-push-1.5.6-package.patch DELETED ---
--- z-push-1.5.6-zarafa.patch DELETED ---
12 years, 9 months
rpms/z-push/devel z-push-1.5.7-package.patch, NONE, 1.1 z-push-1.5.7-zarafa.patch, NONE, 1.1 .cvsignore, 1.5, 1.6 sources, 1.5, 1.6 z-push.spec, 1.4, 1.5 z-push-1.5.6-package.patch, 1.1, NONE z-push-1.5.6-zarafa.patch, 1.1, NONE
by Robert Scheck
Author: robert
Update of /cvs/free/rpms/z-push/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv24328/devel
Modified Files:
.cvsignore sources z-push.spec
Added Files:
z-push-1.5.7-package.patch z-push-1.5.7-zarafa.patch
Removed Files:
z-push-1.5.6-package.patch z-push-1.5.6-zarafa.patch
Log Message:
Upgrade to 1.5.7
z-push-1.5.7-package.patch:
config.php | 20 +++++---------------
debug.php | 2 +-
index.php | 9 +++++++++
3 files changed, 15 insertions(+), 16 deletions(-)
--- NEW FILE z-push-1.5.7-package.patch ---
Patch by Robert Scheck <robert(a)fedoraproject.org> for z-push >= 1.5.7, that
changes the original paths from Z-Push upstream to Fedora compliant ones.
--- z-push-1.5.7/debug.php 2010-11-19 22:20:24.000000000 +0100
+++ z-push-1.5.7/debug.php.package 2011-12-11 23:34:15.000000000 +0100
@@ -57,7 +57,7 @@
function debugLog($message) {
global $auth_user;
$user = (isset($auth_user))?"[". $auth_user ."] ":"";
- @$fp = fopen(BASE_PATH . "/debug.txt","a");
+ @$fp = fopen("/var/lib/z-push/debug.txt","a");
@$date = strftime("%x %X");
@fwrite($fp, "$date [". getmypid() ."] ". $user . "$message\n");
@fclose($fp);
--- z-push-1.5.7/config.php 2011-11-24 22:39:15.000000000 +0100
+++ z-push-1.5.7/config.php.package 2011-12-11 23:35:34.000000000 +0100
@@ -40,10 +40,8 @@
*
* Consult LICENSE file for details
************************************************/
- // Defines the default time zone
- if (function_exists("date_default_timezone_set")){
- date_default_timezone_set("Europe/Amsterdam");
- }
+ // Defines the default time zone, change e.g. to "Europe/London" if necessary
+ define('TIMEZONE', '');
// Defines the base path on the server, terminated by a slash
define('BASE_PATH', dirname($_SERVER['SCRIPT_FILENAME']) . "/");
@@ -57,7 +55,7 @@
"/usr/share/php5/" . PATH_SEPARATOR .
"/usr/share/pear/");
- define('STATE_DIR', BASE_PATH.'/state');
+ define('STATE_DIR', '/var/lib/z-push/state');
// Try to set unlimited timeout
define('SCRIPT_TIMEOUT', 0);
@@ -96,16 +94,8 @@
// a higher value if you have a high load on the server.
define('PING_INTERVAL', 30);
- // The data providers that we are using (see configuration below)
- $BACKEND_PROVIDER = "BackendICS";
-
- // ************************
- // BackendICS settings
- // ************************
-
- // Defines the server to which we want to connect
- define('MAPI_SERVER', 'file:///var/run/zarafa');
-
+ // The data provider that we are using
+ $BACKEND_PROVIDER = "BackendIMAP";
// ************************
// BackendIMAP settings
--- z-push-1.5.7/index.php 2011-08-04 19:32:40.000000000 +0200
+++ z-push-1.5.7/index.php.package 2011-12-11 23:35:57.000000000 +0100
@@ -53,6 +53,15 @@
include_once("compat.php");
include_once("version.php");
+// Set timezone, see https://developer.berlios.de/mantis/view.php?id=479
+if(function_exists("date_default_timezone_set")) {
+ if(defined('TIMEZONE') ? constant('TIMEZONE') : false) {
+ date_default_timezone_set(TIMEZONE);
+ } else if(!ini_get('date.timezone')) {
+ date_default_timezone_set('Europe/Amsterdam');
+ }
+}
+
// Attempt to set maximum execution time
ini_set('max_execution_time', SCRIPT_TIMEOUT);
set_time_limit(SCRIPT_TIMEOUT);
z-push-1.5.7-zarafa.patch:
config.php | 45 ++++-----------------------------------------
debug.php | 2 +-
index.php | 9 +++++++++
3 files changed, 14 insertions(+), 42 deletions(-)
--- NEW FILE z-push-1.5.7-zarafa.patch ---
Patch by Robert Scheck <robert(a)fedoraproject.org> for z-push >= 1.5.7, that
changes the original paths from Z-Push upstream to Fedora compliant ones.
--- z-push-1.5.7/debug.php 2010-11-19 22:20:24.000000000 +0100
+++ z-push-1.5.7/debug.php.zarafa 2011-12-11 23:27:55.000000000 +0100
@@ -57,7 +57,7 @@
function debugLog($message) {
global $auth_user;
$user = (isset($auth_user))?"[". $auth_user ."] ":"";
- @$fp = fopen(BASE_PATH . "/debug.txt","a");
+ @$fp = fopen("/var/lib/zarafa-z-push/debug.txt","a");
@$date = strftime("%x %X");
@fwrite($fp, "$date [". getmypid() ."] ". $user . "$message\n");
@fclose($fp);
--- z-push-1.5.7/config.php 2011-11-24 22:39:15.000000000 +0100
+++ z-push-1.5.7/config.php.zarafa 2011-12-11 23:29:14.000000000 +0100
@@ -40,10 +40,8 @@
*
* Consult LICENSE file for details
************************************************/
- // Defines the default time zone
- if (function_exists("date_default_timezone_set")){
- date_default_timezone_set("Europe/Amsterdam");
- }
+ // Defines the default time zone, change e.g. to "Europe/London" if necessary
+ define('TIMEZONE', '');
// Defines the base path on the server, terminated by a slash
define('BASE_PATH', dirname($_SERVER['SCRIPT_FILENAME']) . "/");
@@ -57,7 +55,7 @@
"/usr/share/php5/" . PATH_SEPARATOR .
"/usr/share/pear/");
- define('STATE_DIR', BASE_PATH.'/state');
+ define('STATE_DIR', '/var/lib/zarafa-z-push/state');
// Try to set unlimited timeout
define('SCRIPT_TIMEOUT', 0);
@@ -96,7 +94,7 @@
// a higher value if you have a high load on the server.
define('PING_INTERVAL', 30);
- // The data providers that we are using (see configuration below)
+ // The data provider that we are using
$BACKEND_PROVIDER = "BackendICS";
// ************************
@@ -107,41 +105,6 @@
define('MAPI_SERVER', 'file:///var/run/zarafa');
- // ************************
- // BackendIMAP settings
- // ************************
-
- // Defines the server to which we want to connect
- // recommended to use local servers only
- define('IMAP_SERVER', 'localhost');
- // connecting to default port (143)
- define('IMAP_PORT', 143);
- // best cross-platform compatibility (see http://php.net/imap_open for options)
- define('IMAP_OPTIONS', '/notls/norsh');
- // overwrite the "from" header if it isn't set when sending emails
- // options: 'username' - the username will be set (usefull if your login is equal to your emailaddress)
- // 'domain' - the value of the "domain" field is used
- // '@mydomain.com' - the username is used and the given string will be appended
- define('IMAP_DEFAULTFROM', '');
- // copy outgoing mail to this folder. If not set z-push will try the default folders
- define('IMAP_SENTFOLDER', '');
- // forward messages inline (default off - as attachment)
- define('IMAP_INLINE_FORWARD', false);
- // use imap_mail() to send emails (default) - off uses mail()
- define('IMAP_USE_IMAPMAIL', true);
-
-
- // ************************
- // BackendMaildir settings
- // ************************
- define('MAILDIR_BASE', '/tmp');
- define('MAILDIR_SUBDIR', 'Maildir');
-
- // **********************
- // BackendVCDir settings
- // **********************
- define('VCARDDIR_DIR', '/home/%u/.kde/share/apps/kabc/stdvcf');
-
// Alternative backend to perform SEARCH requests (GAL search)
// if an empty value is used, the default search functionality of the main backend is used
// use 'SearchLDAP' to search in a LDAP directory (see backend/searchldap/config.php)
--- z-push-1.5.7/index.php 2011-08-04 19:32:40.000000000 +0200
+++ z-push-1.5.7/index.php.zarafa 2011-12-11 23:29:43.000000000 +0100
@@ -53,6 +53,15 @@
include_once("compat.php");
include_once("version.php");
+// Set timezone, see https://developer.berlios.de/mantis/view.php?id=479
+if(function_exists("date_default_timezone_set")) {
+ if(defined('TIMEZONE') ? constant('TIMEZONE') : false) {
+ date_default_timezone_set(TIMEZONE);
+ } else if(!ini_get('date.timezone')) {
+ date_default_timezone_set('Europe/Amsterdam');
+ }
+}
+
// Attempt to set maximum execution time
ini_set('max_execution_time', SCRIPT_TIMEOUT);
set_time_limit(SCRIPT_TIMEOUT);
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/z-push/devel/.cvsignore,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- .cvsignore 11 Dec 2011 22:41:42 -0000 1.5
+++ .cvsignore 7 Feb 2012 22:20:47 -0000 1.6
@@ -1,2 +1,2 @@
-z-push-1.5.6-954.tar.gz
+z-push-1.5.7-1101.tar.gz
z-push-permission.pdf
Index: sources
===================================================================
RCS file: /cvs/free/rpms/z-push/devel/sources,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- sources 11 Dec 2011 22:41:42 -0000 1.5
+++ sources 7 Feb 2012 22:20:47 -0000 1.6
@@ -1,2 +1,2 @@
-730df738da44757fdd270b37b36fa3e7 z-push-1.5.6-954.tar.gz
+9fc2d6e2d72d540de2eb52e157b8efe2 z-push-1.5.7-1101.tar.gz
0d25be91b27fe7ebab16ed593c9fbf48 z-push-permission.pdf
Index: z-push.spec
===================================================================
RCS file: /cvs/free/rpms/z-push/devel/z-push.spec,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- z-push.spec 11 Dec 2011 22:41:42 -0000 1.4
+++ z-push.spec 7 Feb 2012 22:20:47 -0000 1.5
@@ -1,9 +1,9 @@
-%global svnrevision 954
+%global svnrevision 1101
%global with_ldap 1
Summary: ActiveSync over-the-air implementation for mobile syncing
Name: z-push
-Version: 1.5.6
+Version: 1.5.7
Release: 1%{?dist}
License: AGPLv3 with exceptions
Group: Applications/Productivity
@@ -178,6 +178,9 @@
%attr(-,apache,apache) %dir %{_localstatedir}/lib/zarafa-%{name}/state/
%changelog
+* Tue Feb 07 2012 Robert Scheck <robert(a)fedoraproject.org> 1.5.7-1
+- Upgrade to 1.5.7
+
* Sun Dec 11 2011 Robert Scheck <robert(a)fedoraproject.org> 1.5.6-1
- Upgrade to 1.5.6
--- z-push-1.5.6-package.patch DELETED ---
--- z-push-1.5.6-zarafa.patch DELETED ---
12 years, 9 months
rpms/wl-kmod/devel wl-kmod.spec,1.57,1.58
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/wl-kmod/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv21540
Modified Files:
wl-kmod.spec
Log Message:
* Tue Feb 07 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 5.100.82.112-2.1
- Rebuild for UsrMove
Index: wl-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/wl-kmod/devel/wl-kmod.spec,v
retrieving revision 1.57
retrieving revision 1.58
diff -u -r1.57 -r1.58
--- wl-kmod.spec 9 Jan 2012 21:36:16 -0000 1.57
+++ wl-kmod.spec 7 Feb 2012 21:59:29 -0000 1.58
@@ -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
-#define buildforkernels newest
%define buildforkernels current
-#define buildforkernels akmods
+%define buildforkernels current
+%define buildforkernels current
Name: wl-kmod
Version: 5.100.82.112
-Release: 2%{?dist}
+Release: 2%{?dist}.1
Summary: Kernel module for Broadcom wireless devices
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -85,6 +85,9 @@
rm -rf $RPM_BUILD_ROOT
%changelog
+* Tue Feb 07 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 5.100.82.112-2.1
+- Rebuild for UsrMove
+
* Mon Jan 09 2012 Nicolas Vieville <nicolas.vieville(a)univ-valenciennes.fr> - 5.100.82.112-2
- Added patch to build for kernel >= 3.2
12 years, 9 months
rpms/nvidia-kmod/devel nvidia-kmod.spec,1.93,1.94
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/nvidia-kmod/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv21413
Modified Files:
nvidia-kmod.spec
Log Message:
* Tue Feb 07 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1:295.17-1.1
- Rebuild for UsrMove
Index: nvidia-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-kmod/devel/nvidia-kmod.spec,v
retrieving revision 1.93
retrieving revision 1.94
diff -u -r1.93 -r1.94
--- nvidia-kmod.spec 1 Feb 2012 22:46:58 -0000 1.93
+++ nvidia-kmod.spec 7 Feb 2012 21:59:21 -0000 1.94
@@ -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
-%define buildforkernels akmod
+%define buildforkernels current
Name: nvidia-kmod
Epoch: 1
Version: 295.17
# Taken over by kmodtool
-Release: 1%{?dist}
+Release: 1%{?dist}.1
Summary: NVIDIA display driver kernel module
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -77,6 +77,9 @@
%changelog
+* Tue Feb 07 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1:295.17-1.1
+- Rebuild for UsrMove
+
* Wed Feb 01 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1:295.17-1
- Update to 295.17 (beta)
12 years, 9 months
rpms/nvidia-173xx-kmod/devel nvidia-173xx-kmod.spec,1.40,1.41
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/nvidia-173xx-kmod/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv21285
Modified Files:
nvidia-173xx-kmod.spec
Log Message:
* Tue Feb 07 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 173.14.30-1.6
- Rebuild for UsrMove
Index: nvidia-173xx-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-173xx-kmod/devel/nvidia-173xx-kmod.spec,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -r1.40 -r1.41
--- nvidia-173xx-kmod.spec 2 Nov 2011 22:44:46 -0000 1.40
+++ nvidia-173xx-kmod.spec 7 Feb 2012 21:59:13 -0000 1.41
@@ -8,7 +8,7 @@
Name: nvidia-173xx-kmod
Version: 173.14.30
# Taken over by kmodtool
-Release: 1%{?dist}.5
+Release: 1%{?dist}.6
Summary: NVIDIA 173xx display driver kernel module
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -93,6 +93,9 @@
%changelog
+* Tue Feb 07 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 173.14.30-1.6
+- Rebuild for UsrMove
+
* Wed Nov 02 2011 Nicolas Chauvet <kwizart(a)gmail.com> - 173.14.30-1.5
- Rebuild for F-16 kernel
12 years, 9 months
rpms/catalyst-kmod/devel catalyst-kmod.spec,1.12,1.13
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/catalyst-kmod/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv21164
Modified Files:
catalyst-kmod.spec
Log Message:
* Tue Feb 07 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 11.11-1.1
- Rebuild for UsrMove
Index: catalyst-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/catalyst-kmod/devel/catalyst-kmod.spec,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- catalyst-kmod.spec 16 Nov 2011 22:56:44 -0000 1.12
+++ catalyst-kmod.spec 7 Feb 2012 21:59:05 -0000 1.13
@@ -3,7 +3,7 @@
# "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
-#define buildforkernels current
+%define buildforkernels current
# Tweak to have debuginfo - part 1/2
%if 0%{?fedora} > 7
@@ -13,7 +13,7 @@
Name: catalyst-kmod
Version: 11.11
-Release: 1%{?dist}
+Release: 1%{?dist}.1
# Taken over by kmodtool
Summary: AMD display driver kernel module
Group: System Environment/Kernel
@@ -97,6 +97,9 @@
%changelog
+* Tue Feb 07 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 11.11-1.1
+- Rebuild for UsrMove
+
* Wed Nov 16 2011 Stewart Adam <s.adam at diffingo.com> - 11.11-1
- Update to Catalyst 11.11 (internal version 8.91.1)
12 years, 9 months
rpms/xtables-addons-kmod/devel xtables-addons-kmod.spec,1.18,1.19
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/xtables-addons-kmod/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv20902
Modified Files:
xtables-addons-kmod.spec
Log Message:
* Tue Feb 07 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1.41-1.1
- Rebuild for UsrMove
Index: xtables-addons-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/xtables-addons-kmod/devel/xtables-addons-kmod.spec,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- xtables-addons-kmod.spec 24 Jan 2012 20:31:38 -0000 1.18
+++ xtables-addons-kmod.spec 7 Feb 2012 21:58:56 -0000 1.19
@@ -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
-%define buildforkernels akmod
+%define buildforkernels current
Name: xtables-addons-kmod
Summary: Kernel module (kmod) for xtables-addons
Version: 1.41
-Release: 1%{?dist}
+Release: 1%{?dist}.1
License: GPLv2
Group: System Environment/Kernel
URL: http://xtables-addons.sourceforge.net
@@ -66,6 +66,9 @@
rm -rf %{buildroot}
%changelog
+* Tue Feb 07 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1.41-1.1
+- Rebuild for UsrMove
+
* Tue Jan 24 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1.41-1
- Update to 1.41
12 years, 9 months
rpms/west-chamber-kmod/devel west-chamber-kmod.spec,1.11,1.12
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/west-chamber-kmod/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv20775
Modified Files:
west-chamber-kmod.spec
Log Message:
* Tue Feb 07 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 0.0.1-7.20101017svn.5
- Rebuild for UsrMove
Index: west-chamber-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/west-chamber-kmod/devel/west-chamber-kmod.spec,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- west-chamber-kmod.spec 2 Nov 2011 22:44:20 -0000 1.11
+++ west-chamber-kmod.spec 7 Feb 2012 21:58:48 -0000 1.12
@@ -11,7 +11,7 @@
Name: west-chamber-kmod
Summary: Kernel module (kmod) for west-chamber
Version: 0.0.1
-Release: 7.%{?svndate}svn%{?dist}.4
+Release: 7.%{?svndate}svn%{?dist}.5
License: GPLv2+
Group: System Environment/Kernel
URL: http://code.google.com/p/scholarzhang/
@@ -82,6 +82,9 @@
rm -rf %{buildroot}
%changelog
+* Tue Feb 07 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 0.0.1-7.20101017svn.5
+- Rebuild for UsrMove
+
* Wed Nov 02 2011 Nicolas Chauvet <kwizart(a)gmail.com> - 0.0.1-7.20101017svn.4
- Rebuild for F-16 kernel
12 years, 9 months
rpms/VirtualBox-OSE-kmod/devel VirtualBox-OSE-kmod.spec,1.59,1.60
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/VirtualBox-OSE-kmod/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv20654
Modified Files:
VirtualBox-OSE-kmod.spec
Log Message:
* Tue Feb 07 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 4.1.8-1.2
- Rebuild for UsrMove
Index: VirtualBox-OSE-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/VirtualBox-OSE-kmod/devel/VirtualBox-OSE-kmod.spec,v
retrieving revision 1.59
retrieving revision 1.60
diff -u -r1.59 -r1.60
--- VirtualBox-OSE-kmod.spec 23 Dec 2011 04:37:29 -0000 1.59
+++ VirtualBox-OSE-kmod.spec 7 Feb 2012 21:58:40 -0000 1.60
@@ -3,7 +3,7 @@
# "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
-%define buildforkernels akmod
+%define buildforkernels current
# In prerelease builds (such as betas), this package has the same
# major version number, while the kernel module abi is not guarranteed
@@ -18,7 +18,7 @@
Name: VirtualBox-OSE-kmod
Version: 4.1.8
-Release: 1%{?dist}.1
+Release: 1%{?dist}.2
Summary: Kernel module for VirtualBox-OSE
Group: System Environment/Kernel
@@ -100,6 +100,9 @@
%changelog
+* Tue Feb 07 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 4.1.8-1.2
+- Rebuild for UsrMove
+
* Fri Dec 23 2011 Sérgio Basto <sergio(a)serjux.com> - 4.1.8-1
- New release.
12 years, 9 months
rpms/staging-kmod/devel staging-kmod.spec,1.22,1.23
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/staging-kmod/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv20527
Modified Files:
staging-kmod.spec
Log Message:
* Tue Feb 07 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 3.1-2.2
- Rebuild for UsrMove
Index: staging-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/staging-kmod/devel/staging-kmod.spec,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- staging-kmod.spec 13 Nov 2011 09:03:13 -0000 1.22
+++ staging-kmod.spec 7 Feb 2012 21:58:32 -0000 1.23
@@ -20,7 +20,7 @@
Name: staging-kmod
Version: 3.1
-Release: %{?prever:0.}2%{?prever:.%{prever}}%{?dist}.1
+Release: %{?prever:0.}2%{?prever:.%{prever}}%{?dist}.2
Summary: Selected kernel modules from linux-staging
Group: System Environment/Kernel
@@ -134,6 +134,9 @@
rm -rf $RPM_BUILD_ROOT
%changelog
+* Tue Feb 07 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 3.1-2.2
+- Rebuild for UsrMove
+
* Sun Nov 13 2011 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 3.1-2.1
- Drop brcm80211 drivers; included in Fedora kernels since 3.1.1-1.rc1 with
changelog-enty "Backport brcm80211 from 3.2-rc1"
12 years, 9 months