
Hello community, here is the log from the commit of package omnibook checked in at Thu May 31 21:09:01 CEST 2007. -------- --- omnibook/omnibook.changes 2007-04-04 17:58:41.000000000 +0200 +++ /mounts/work_src_done/STABLE/omnibook/omnibook.changes 2007-05-30 20:13:37.000000000 +0200 @@ -1,0 +2,12 @@ +Wed May 30 19:22:52 CEST 2007 - danny@suse.de + +- update tpo current SVN trunk (20070530): + - Update for post 2.6.21 input handler API change + - Changing P25 to ectype 12 + - fix msecs_to_jiffies implicit declaration warning +- removed patch: + - omnibook-jiffies.patch +- added patch: + - omnibook-fix-cast.diff: fix cast of enum + +------------------------------------------------------------------- Old: ---- omnibook-2.20070404.tar.gz omnibook-jiffies.patch New: ---- omnibook-2.20070530.tar.bz2 omnibook-fix-cast.diff ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ omnibook.spec ++++++ --- /var/tmp/diff_new_pack.I11178/_old 2007-05-31 21:08:45.000000000 +0200 +++ /var/tmp/diff_new_pack.I11178/_new 2007-05-31 21:08:45.000000000 +0200 @@ -1,5 +1,5 @@ # -# spec file for package omnibook (Version 20070404) +# spec file for package omnibook (Version 20070530) # # Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany. # This file and all modifications and additions to the pristine @@ -13,17 +13,17 @@ Name: omnibook BuildRequires: kernel-source kernel-syms module-init-tools -Summary: Kernel modules for Omnibooks from omke-project -Version: 20070404 +Summary: Kernel modules for Omnibooks +Version: 20070530 Release: 1 Group: Hardware/Other License: GNU General Public License (GPL) BuildRoot: %{_tmppath}/%{name}-%{version}-build URL: http://sourceforge.net/projects/omnibook Autoreqprov: on -Source: %{name}-2.%{version}.tar.gz +Source: %{name}-2.%{version}.tar.bz2 Source2: preamble -Patch: omnibook-jiffies.patch +Patch1: omnibook-fix-cast.diff ExclusiveArch: %ix86 x86_64 %suse_kernel_module_package -p %_sourcedir/preamble um %package -n omnibook-KMP @@ -58,7 +58,7 @@ %prep %setup -n %{name}-2.%{version} -%patch +%patch1 -p1 %build cd .. @@ -84,6 +84,15 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed May 30 2007 - danny@suse.de +- update tpo current SVN trunk (20070530): + - Update for post 2.6.21 input handler API change + - Changing P25 to ectype 12 + - fix msecs_to_jiffies implicit declaration warning +- removed patch: + - omnibook-jiffies.patch +- added patch: + - omnibook-fix-cast.diff: fix cast of enum * Wed Apr 04 2007 - dkukawka@suse.de - updated to current SVN HEAD to fix build problems/errors - added module-init-tools to BuildRequires ++++++ omnibook-fix-cast.diff ++++++ From: Danny Kukawka <dkukawka@suse.de> Subject: fix compiler warning for x86_64 fix compiler warning about 'cast from pointer to integer of different size' on x86_64 Signed-off-by: Danny Kukawka <dkukawka@suse.de> --- init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- omnibook-2.20070530/init.c 2007-05-30 19:37:56.000000000 +0200 +++ omnibook-2.20070530/init.c 2007-05-30 19:38:29.000000000 +0200 @@ -134,7 +134,7 @@ static int __init dmi_matched(struct dmi_system_id *dmi) { - omnibook_ectype = (int)dmi->driver_data; + omnibook_ectype = (enum omnibook_ectype_t)dmi->driver_data; if (dmi->ident) laptop_model = (char *)dmi->ident; else ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... --------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@Hilbert.suse.de