commit acpica for openSUSE:Factory

2011-02-25 Thread h_root

Hello community,

here is the log from the commit of package acpica for openSUSE:Factory
checked in at Fri Feb 25 09:35:09 CET 2011.




--- acpica/acpica.changes   2011-01-14 16:02:04.0 +0100
+++ /mounts/work_src_done/STABLE/acpica/acpica.changes  2011-02-24 
16:32:20.0 +0100
@@ -1,0 +2,5 @@
+Thu Feb 24 15:31:07 UTC 2011 - tr...@novell.com
+
+- Add possibility to see changes via new -s param: -r [ -s sleep ]
+
+---

calling whatdependson for head-i586




Other differences:
--
++ acpica.spec ++
--- /var/tmp/diff_new_pack.FymZg4/_old  2011-02-25 09:33:21.0 +0100
+++ /var/tmp/diff_new_pack.FymZg4/_new  2011-02-25 09:33:21.0 +0100
@@ -21,7 +21,7 @@
 Name:   acpica
 Url:http://acpica.org
 Version:20110112
-Release:1
+Release:6
 License:Intel ACPICA
 %define src_dir acpica-unix-%{version}
 %define dmp_ver 20101221

++ ec_access.c ++
--- /var/tmp/diff_new_pack.FymZg4/_old  2011-02-25 09:33:21.0 +0100
+++ /var/tmp/diff_new_pack.FymZg4/_new  2011-02-25 09:33:21.0 +0100
@@ -28,6 +28,7 @@
 */
 
 static int read_mode = -1;
+static int sleep_time;
 static int write_byte_offset = -1;
 static int read_byte_offset = -1;
 static uint8_t write_value = -1;
@@ -35,16 +36,18 @@
 void usage(char progname[], int exit_status)
 {
printf(Usage:\n);
-   printf(1) %s -r\n, basename(progname));
+   printf(1) %s -r [-s sleep]\n, basename(progname));
printf(2) %s -b byte_offset\n, basename(progname));
printf(3) %s -w byte_offset -v value\n\n, basename(progname));
 
-   puts(\t-r or --read -- Dump EC registers);
-   puts(\t-b or --byte byte_offset -- Read value 
+   puts(\t-r [-s sleep]  : Dump EC registers);
+   puts(\t If sleep is given, sleep x seconds,);
+   puts(\t re-read EC registers and show changes);
+   puts(\t-b offset  : Read value
  at byte_offset (in hex));
-   puts(\t-w or --write byte_offset -v or --value value -- 
+   puts(\t-w offset -v value : 
 Write value at byte_offset);
-   puts(\t-h or --help -- Print this help\n\n);
+   puts(\t-h : Print this help\n\n);
puts(Offsets and values are in hexadecimal number sytem.);
puts(The offset and value must be between 0 and 0xff.);
exit(exit_status);
@@ -53,21 +56,8 @@
 void parse_opts(int argc, char *argv[])
 {
int c;
-   struct option long_options[] = {
-   {read, 0, 0, 'r'},
-   {byte, 0, 0, 'b'},
-   {write, 1, 0, 'w'},
-   {value, 1, 0, 'v'},
-   {help, 0, 0, 'h'},
-   {0, 0, 0, 0}
-   };
-
-   while (1) {
-   c = getopt_long(argc, argv, rb:w:v:h,
-   long_options, NULL);
 
-   if (c == -1)
-   break;
+   while ((c = getopt(argc, argv, rs:b:w:v:h)) != -1) {
 
switch (c) {
case 'r':
@@ -75,6 +65,17 @@
usage (argv[0], EXIT_FAILURE);
read_mode = 1;
break;
+   case 's':
+   if (read_mode != -1  read_mode != 1)
+   usage (argv[0], EXIT_FAILURE);
+   
+   sleep_time = atoi(optarg);
+   if (sleep_time = 0) {
+   sleep_time = 0;
+   usage(argv[0], EXIT_FAILURE);
+   printf(Bad sleep time: %s\n, optarg);
+   }
+   break;
case 'b':
if (read_mode != -1)
usage (argv[0], EXIT_FAILURE);
@@ -127,6 +128,7 @@
 void dump_ec(int fd)
 {
char buf[EC_SPACE_SIZE];
+   char buf2[EC_SPACE_SIZE];
int byte_off, bytes_read;
 
bytes_read = read(fd, buf, EC_SPACE_SIZE);
@@ -137,14 +139,40 @@
if (bytes_read != EC_SPACE_SIZE)
fprintf(stderr, Could only read %d bytes\n, bytes_read);
 
-   printf(\t00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F\n);
+   printf( 00  01  02  03  04  05  06  07  08  09  0A  0B  0C  0D  0E 
 0F);
+   for (byte_off = 0; byte_off  bytes_read; byte_off++) {
+   if ((byte_off % 16) == 0)
+   printf(\n%.2X: , byte_off);
+   printf( %.2x , (uint8_t)buf[byte_off]);
+   }
+   printf(\n);
+
+   if (!sleep_time)
+   return;
+
+   printf(\n);
+   lseek(fd, 0, SEEK_SET);
+   sleep(sleep_time);
+   
+   bytes_read = read(fd, buf2, EC_SPACE_SIZE);
+
+   if (bytes_read == -1)
+

commit xen for openSUSE:Factory

2011-02-25 Thread h_root

Hello community,

here is the log from the commit of package xen for openSUSE:Factory
checked in at Fri Feb 25 09:44:42 CET 2011.




--- xen/xen.changes 2011-02-14 22:34:49.0 +0100
+++ /mounts/work_src_done/STABLE/xen/xen.changes2011-02-24 
19:24:37.0 +0100
@@ -1,0 +2,7 @@
+Thu Feb 24 10:17:03 CET 2011 - oher...@suse.de
+
+- bnc#674063 - drop xenpaging.autostart_delay.patch 
+  avoid python excpetions due to intermediate xenstore and .sxp
+  state caused by change of xenpaging variable from int to str
+
+---

calling whatdependson for head-i586


Old:

  xenpaging.autostart_delay.patch



Other differences:
--
++ xen.spec ++
--- /var/tmp/diff_new_pack.eTQIDR/_old  2011-02-25 09:35:32.0 +0100
+++ /var/tmp/diff_new_pack.eTQIDR/_new  2011-02-25 09:35:32.0 +0100
@@ -73,7 +73,7 @@
 BuildRequires:  kernel-source kernel-syms module-init-tools xorg-x11
 %endif
 Version:4.0.2_02
-Release:1
+Release:6
 License:GPLv2+
 Group:  System/Kernel
 AutoReqProv:on
@@ -302,7 +302,6 @@
 Patch10020: xenpaging.guest_remove_page.patch
 Patch10021: xenpaging.mem_event_check_ring-free_requests.patch
 Patch10022: xenpaging.blacklist.patch
-Patch10023: xenpaging.autostart_delay.patch
 Patch10024: xenpaging.page_already_populated.patch
 Patch10025: xenpaging.notify_policy_only_once.patch
 Patch10026: xenpaging.num_pages_equal_max_pages.patch
@@ -827,7 +826,6 @@
 %patch10020 -p1
 %patch10021 -p1
 %patch10022 -p1
-%patch10023 -p1
 %patch10024 -p1
 %patch10025 -p1
 %patch10026 -p1







Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit git for openSUSE:Factory

2011-02-25 Thread h_root

Hello community,

here is the log from the commit of package git for openSUSE:Factory
checked in at Fri Feb 25 09:46:53 CET 2011.




--- git/git.changes 2010-12-17 17:53:01.0 +0100
+++ /mounts/work_src_done/STABLE/git/git.changes2011-02-24 
17:47:08.0 +0100
@@ -1,0 +2,12 @@
+Thu Feb 24 17:42:33 CET 2011 - dmuel...@suse.de
+
+- update to 1.7.4.1:
+  * major version update, see included Documentation/RelNotes/1.7.4.txt
+
+---
+Tue Feb 15 17:28:12 UTC 2011 - ch...@computersalat.de
+
+- mod apache config
+  o remove ending / from alias (Alias /git /usr/share/gitweb/)
+
+---

calling whatdependson for head-i586


Old:

  git-1.7.3.4.tar.bz2

New:

  git-1.7.4.1.tar.bz2



Other differences:
--
++ cgit.spec ++
--- /var/tmp/diff_new_pack.xHkE41/_old  2011-02-25 09:45:11.0 +0100
+++ /var/tmp/diff_new_pack.xHkE41/_new  2011-02-25 09:45:11.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package cgit (Version 0.8.3.3)
+# spec file for package cgit
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 # norootforbuild
 
-%define git_version1.7.3.4
+%define git_version1.7.4.1
 
 Name:   cgit
 Url:http://hjemli.net/git/cgit/
@@ -25,7 +25,7 @@
 Group:  Development/Libraries/C and C++
 AutoReqProv:on
 Version:0.8.3.3
-Release:4
+Release:5
 Summary:A web frontend for git repositories
 Source0:%{name}-%{version}.tar.bz2
 Source1:git-%{git_version}.tar.bz2

++ git.spec ++
--- /var/tmp/diff_new_pack.xHkE41/_old  2011-02-25 09:45:11.0 +0100
+++ /var/tmp/diff_new_pack.xHkE41/_new  2011-02-25 09:45:11.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package git (Version 1.7.3.4)
+# spec file for package git
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -38,7 +38,7 @@
 BuildRequires:  xmlto
 BuildRequires:  python
 BuildRequires:  perl-Error
-Version:1.7.3.4
+Version:1.7.4.1
 Release:1
 Summary:Fast, scalable, distributed revision control system
 License:GPLv2+

++ apache2-gitweb.conf ++
--- /var/tmp/diff_new_pack.xHkE41/_old  2011-02-25 09:45:11.0 +0100
+++ /var/tmp/diff_new_pack.xHkE41/_new  2011-02-25 09:45:11.0 +0100
@@ -1,4 +1,4 @@
-Alias /git/ /usr/share/gitweb/
+Alias /git /usr/share/gitweb/
 
 Directory /usr/share/gitweb
 Options ExecCGI

++ git-1.7.3.4.tar.bz2 - git-1.7.4.1.tar.bz2 ++
 38404 lines of diff (skipped)






Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit kernel-firmware for openSUSE:Factory

2011-02-25 Thread h_root

Hello community,

here is the log from the commit of package kernel-firmware for openSUSE:Factory
checked in at Fri Feb 25 10:26:56 CET 2011.




--- kernel-firmware/kernel-firmware.changes 2010-12-15 23:44:47.0 
+0100
+++ /mounts/work_src_done/STABLE/kernel-firmware/kernel-firmware.changes
2011-02-24 22:41:54.0 +0100
@@ -1,0 +2,10 @@
+Thu Feb 24 21:40:58 UTC 2011 - gre...@suse.de
+
+- create symlinks for Broadcom driver (bnc#673054)
+
+---
+Sat Feb  5 13:56:23 UTC 2011 - johannesoberm...@gmx.de
+
+- Add scm service for automatical updates 
+
+---

calling whatdependson for head-i586


Old:

  linux-firmware-20101214.tar.bz2

New:

  _service
  _service:recompress:tar_scm:kernel-firmware-2.6.38.tar.bz2
  _service:set_version:kernel-firmware.spec



Other differences:
--
++ _service:set_version:kernel-firmware.spec ++
#
# spec file for package kernel-firmware
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An Open Source License is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#



Name:   kernel-firmware
BuildRequires:  fdupes kernel-default
Version:2.6.38
Release:1
Summary:Linux kernel firmware files
License:NON-OSI-COMPLIANT(no modification) ; GPLv2 ; GPLv2+ ; MIT 
License (or similar)
Group:  System/Kernel
Url:ftp://ftp.kernel.org/pub/linux/kernel/people/dwmw2/firmware/
Source0:%name-%{version}.tar.bz2
Source1:firmware.sh
%define __find_supplements bash %_sourcedir/firmware.sh --find-supplements
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
BuildArch:  noarch
Provides:   qlogic-firmware
Obsoletes:  qlogic-firmware
Provides:   cxgb3-firmware
Obsoletes:  cxgb3-firmware
Provides:   ralink-firmware
Obsoletes:  ralink-firmware
Provides:   iwl1000-ucode
Obsoletes:  iwl1000-ucode
Provides:   iwl3945-ucode
Obsoletes:  iwl3945-ucode
Provides:   iwl4965-ucode
Obsoletes:  iwl4965-ucode
Provides:   iwl5000-ucode
Obsoletes:  iwl5000-ucode
Provides:   iwl5150-ucode
Obsoletes:  iwl5150-ucode
AutoReq:off

%description
This package contains the firmware for in-kernel drivers that was
previously included in the kernel. It is shared by all kernels =
2.6.27-rc1.



%prep
%setup -q

%build
# nothing to do

%install
mkdir -p %{buildroot}/lib/firmware
cp -avf * %{buildroot}/lib/firmware
rm -f %{buildroot}/lib/firmware/WHENCE
bash %_sourcedir/firmware.sh --kill-duplicates %buildroot/lib/firmware/
%fdupes %{buildroot}

# create symlinks for Broadcom driver (bnc#673054)
cd %{buildroot}/lib/firmware/brcm/
ln -s bcm43xx-0-610-809-0.fw bcm43xx-0.fw
ln -s bcm43xx_hdr-0-610-809-0.fw bcm43xx_hdr-0.fw

%clean
rm -rf %{buildroot}

%files
%defattr(0644,root,root,0755)
%doc WHENCE
/lib/firmware/*

%changelog
++ kernel-firmware.spec ++
--- /var/tmp/diff_new_pack.paeIUH/_old  2011-02-25 10:25:58.0 +0100
+++ /var/tmp/diff_new_pack.paeIUH/_new  2011-02-25 10:25:58.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package kernel-firmware (Version 20101214)
+# spec file for package kernel-firmware
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,12 +20,12 @@
 Name:   kernel-firmware
 BuildRequires:  fdupes kernel-default
 Version:20101214
-Release:1
+Release:6
 Summary:Linux kernel firmware files
 License:NON-OSI-COMPLIANT(no modification) ; GPLv2 ; GPLv2+ ; MIT 
License (or similar)
 Group:  System/Kernel
 Url:ftp://ftp.kernel.org/pub/linux/kernel/people/dwmw2/firmware/
-Source0:linux-firmware-%{version}.tar.bz2
+Source0:%name-%{version}.tar.bz2
 Source1:firmware.sh
 %define __find_supplements bash %_sourcedir/firmware.sh --find-supplements
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -56,7 +56,7 @@
 
 
 %prep
-%setup -q -n linux-firmware-%{version}
+%setup -q
 
 %build
 # nothing to do
@@ -68,6 

commit mailman for openSUSE:Factory

2011-02-25 Thread h_root

Hello community,

here is the log from the commit of package mailman for openSUSE:Factory
checked in at Fri Feb 25 10:50:28 CET 2011.




--- mailman/mailman.changes 2010-11-15 10:49:19.0 +0100
+++ /mounts/work_src_done/STABLE/mailman/mailman.changes2011-02-23 
19:43:22.0 +0100
@@ -1,0 +2,5 @@
+Wed Feb 23 19:42:27 CET 2011 - matej...@suse.cz
+
+- fixed a XSS vulnerability in confirm.py (CVE-2011-0707, bnc#671745)
+
+---

calling whatdependson for head-i586


Old:

  minmem

New:

  mailman-2.1.14-CVE-2011-0707.patch



Other differences:
--
++ mailman.spec ++
--- /var/tmp/diff_new_pack.Tx9jRk/_old  2011-02-25 10:49:22.0 +0100
+++ /var/tmp/diff_new_pack.Tx9jRk/_new  2011-02-25 10:49:22.0 +0100
@@ -31,7 +31,7 @@
 PreReq: permissions
 Summary:The GNU Mailing List Manager
 Version:2.1.14
-Release:1
+Release:6
 Source: %{name}-%{version}.tgz
 Source1:README.SuSE
 Source2:mailman-2.1-manpages.tgz
@@ -65,6 +65,7 @@
 %else
 Patch20:mailman-SuSE2.patch
 %endif
+Patch21:mailman-2.1.14-CVE-2011-0707.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %define   m_uid 72
 %define   m_gid 67
@@ -104,6 +105,7 @@
 %else
 %patch20
 %endif
+%patch21
 cp -av %{S:1} .
 # 
 

++ mailman-2.1.14-CVE-2011-0707.patch ++
=== modified file 'Mailman/Cgi/confirm.py'
--- Mailman/Cgi/confirm.py  2010-03-29 20:48:11 +
+++ Mailman/Cgi/confirm.py  2011-02-12 02:24:47 +
@@ -471,7 +471,7 @@
 if fullname is None:
 fullname = _('emNot available/em')
 else:
-fullname = Utils.uncanonstr(fullname, lang)
+fullname = Utils.websafe(Utils.uncanonstr(fullname, lang))
 table.AddRow([_(Your confirmation is required in order to complete the
 unsubscription request from the mailing list em%(listname)s/em.  You
 are currently subscribed with
@@ -573,7 +573,7 @@
 if fullname is None:
 fullname = _('emNot available/em')
 else:
-fullname = Utils.uncanonstr(fullname, lang)
+fullname = Utils.websafe(Utils.uncanonstr(fullname, lang))
 if globally:
 globallys = _('globally')
 else:
@@ -814,7 +814,7 @@
 if username is None:
 username = _('emnot available/em')
 else:
-username = Utils.uncanonstr(username, lang)
+username = Utils.websafe(Utils.uncanonstr(username, lang))
 
 table.AddRow([_(Your membership in the %(realname)s mailing list is
 currently disabled due to excessive bounces.  Your confirmation is






Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit arpwatch-ethercodes for openSUSE:Factory

2011-02-25 Thread h_root

Hello community,

here is the log from the commit of package arpwatch-ethercodes for 
openSUSE:Factory
checked in at Fri Feb 25 10:59:16 CET 2011.




--- AUTO/all/arpwatch-ethercodes/arpwatch-ethercodes.changes2011-02-24 
08:40:07.0 +0100
+++ 
/mounts/work_src_done/STABLE/arpwatch-ethercodes/arpwatch-ethercodes.changes
2011-02-25 06:40:08.0 +0100
@@ -2 +2 @@
-Thu Feb 24 08:40:06 CET 2011 - autobu...@suse.de
+Fri Feb 25 06:40:07 CET 2011 - autobu...@suse.de
@@ -4 +4 @@
-- automated update on 2011-02-24
+- automated update on 2011-02-25

calling whatdependson for head-i586




Other differences:
--
++ arpwatch-ethercodes.spec ++
--- /var/tmp/diff_new_pack.gfcNqG/_old  2011-02-25 10:59:09.0 +0100
+++ /var/tmp/diff_new_pack.gfcNqG/_new  2011-02-25 10:59:09.0 +0100
@@ -25,7 +25,7 @@
 Group:  Productivity/Networking/Diagnostic
 AutoReqProv:on
 Summary:Ethercodes Data for arpwatch
-Version:2011.2.24
+Version:2011.2.25
 Release:1
 Source: http://standards.ieee.org/regauth/oui/oui.txt.bz2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ oui.txt.bz2 ++
--- /var/tmp/diff_new_pack.gfcNqG/_old  2011-02-25 10:59:09.0 +0100
+++ /var/tmp/diff_new_pack.gfcNqG/_new  2011-02-25 10:59:09.0 +0100
@@ -82531,6 +82531,12 @@
San Jose CA 95134
UNITED STATES
 
+1C-E2-CC   (hex)   Texas Instruments
+1CE2CC (base 16)   Texas Instruments
+   12500 TI Boulevard
+   Dallas TX 75243
+   UNITED STATES
+
 1C-F0-61   (hex)   SCAPS GmbH
 1CF061 (base 16)   SCAPS GmbH
Bahnhofstr. 17
@@ -84288,6 +84294,12 @@
Landsham Bavaria 85652
GERMANY
 
+44-C1-5C   (hex)   Texas Instruments
+44C15C (base 16)   Texas Instruments
+   12500 TI Boulevard
+   Dallas TX 75243
+   UNITED STATES
+
 44-C2-33   (hex)   Guangzhou Comet Technology Development Co.Ltd
 44C233 (base 16)   Guangzhou Comet Technology Development Co.Ltd
Rm 304,FL 3,Block G,Science and  Technology 
Innovation Base,
@@ -85280,8 +85292,8 @@
 
 5C-D9-98   (hex)   D-Link Corporation
 5CD998 (base 16)   D-Link Corporation
-   No.289, ShinHu Rd., Neihu District, Taipei City 
-   Taipei  114
+   No.289, Sinhu 3rd Rd., Neihu District, 
+   Taipei City   114
TAIWAN, REPUBLIC OF CHINA
 
 5C-DA-D4   (hex)   Murata Manufacturing Co., Ltd.
@@ -85695,6 +85707,12 @@
Moscow  127591
RUSSIAN FEDERATION
 
+64-A7-69   (hex)   HTC Corporation
+64A769 (base 16)   HTC Corporation
+   No. 23, Xinghua Rd, 
+   Taoyuan County  330
+   TAIWAN, REPUBLIC OF CHINA
+
 64-A8-37   (hex)   Juni Korea Co., Ltd
 64A837 (base 16)   Juni Korea Co., Ltd
E603 Bundang Techno-Park 151
@@ -87200,6 +87218,13 @@
Tongzhou District Beijing 10
CHINA
 
+80-2D-E1   (hex)   Solarbridge Technologies
+802DE1 (base 16)   Solarbridge Technologies
+   9229 Waterford Centre Blvd
+   Building C, Suite 110
+   Austin TX 78758
+   UNITED STATES
+
 80-34-57   (hex)   OT Systems Limited
 803457 (base 16)   OT Systems Limited
Unit 1023, 10/F., Landmark North,
@@ -89445,6 +89470,12 @@
Puchheim By 82178
GERMANY
 
+B0-A1-0A   (hex)   Pivotal Systems Corporation
+B0A10A (base 16)   Pivotal Systems Corporation
+   4683  Chabot Drive
+   Pleasanton CA 94588
+   UNITED STATES
+
 B0-A7-2A   (hex)   Ensemble Designs, Inc.
 B0A72A (base 16)   Ensemble Designs, Inc.
870 Gold Flat Road
@@ -90755,6 +90786,12 @@
Florian�polis SC 88032-001
BRAZIL
 
+CC-5D-4E   (hex)   ZyXEL Communications Corporation
+CC5D4E (base 16)   ZyXEL 

commit php5 for openSUSE:11.2

2011-02-25 Thread h_root

Hello community,

here is the log from the commit of package php5 for openSUSE:11.2
checked in at Fri Feb 25 11:55:47 CET 2011.




--- old-versions/11.2/UPDATES/all/php5/php5.changes 2011-02-10 
17:51:35.0 +0100
+++ 11.2/php5/php5.changes  2011-02-25 11:12:52.0 +0100
@@ -1,0 +2,6 @@
+Fri Feb 25 10:12:30 UTC 2011 - ch...@computersalat.de
+
+- fix for macros.php
+  o devel pkg must have Obsoletes/Provides: php-macros 
+
+---

calling whatdependson for 11.2-i586




Other differences:
--
++ php5.spec ++
--- /var/tmp/diff_new_pack.T08Ocj/_old  2011-02-25 11:55:24.0 +0100
+++ /var/tmp/diff_new_pack.T08Ocj/_new  2011-02-25 11:55:24.0 +0100
@@ -77,14 +77,12 @@
 ###
 ###
 Version:5.3.3
-Release:0.RELEASE11
+Release:0.RELEASE12
 License:The PHP License, version 3.01
 Group:  Development/Languages/Other
 Provides:   php zend php-xml php-spl php-simplexml php-session php-pcre 
php-date php-reflection php-filter
 Provides:   php-api = %{apiver}, php-zend-abi = %{zendver}
 Provides:   php(api) = %{apiver}, php(zend-abi) = %{zendver}
-Provides:   php-macros = 2.0
-Obsoletes:  php-macros  2.0
 AutoReqProv:on
 PreReq: update-alternatives
 #extensions that are no longer here
@@ -165,6 +163,8 @@
 %endif
 Conflicts:  php4-devel
 PreReq: update-alternatives
+Provides:   php-macros = 2.0
+Obsoletes:  php-macros  2.0
 
 %description devel
 PHP is a server-side, cross-platform, HTML embedded scripting language.







Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit php5 for openSUSE:11.3

2011-02-25 Thread h_root

Hello community,

here is the log from the commit of package php5 for openSUSE:11.3
checked in at Fri Feb 25 11:57:43 CET 2011.




--- old-versions/11.3/UPDATES/all/php5/php5.changes 2011-02-10 
17:51:24.0 +0100
+++ 11.3/php5/php5.changes  2011-02-25 11:14:06.0 +0100
@@ -1,0 +2,6 @@
+Fri Feb 25 10:13:38 UTC 2011 - ch...@computersalat.de
+
+- fix for macros.php
+  o devel pkg must have Obsoletes/Provides: php-macros
+
+---

calling whatdependson for 11.3-i586




Other differences:
--
++ php5.spec ++
--- /var/tmp/diff_new_pack.qTyei3/_old  2011-02-25 11:56:57.0 +0100
+++ /var/tmp/diff_new_pack.qTyei3/_new  2011-02-25 11:56:57.0 +0100
@@ -77,14 +77,12 @@
 ###
 ###
 Version:5.3.3
-Release:0.RELEASE11
+Release:0.RELEASE12
 License:The PHP License, version 3.01
 Group:  Development/Languages/Other
 Provides:   php zend php-xml php-spl php-simplexml php-session php-pcre 
php-date php-reflection php-filter
 Provides:   php-api = %{apiver}, php-zend-abi = %{zendver}
 Provides:   php(api) = %{apiver}, php(zend-abi) = %{zendver}
-Provides:   php-macros = 2.0
-Obsoletes:  php-macros  2.0
 AutoReqProv:on
 PreReq: update-alternatives
 #extensions that are no longer here
@@ -165,6 +163,8 @@
 %endif
 Conflicts:  php4-devel
 PreReq: update-alternatives
+Provides:   php-macros = 2.0
+Obsoletes:  php-macros  2.0
 
 %description devel
 PHP is a server-side, cross-platform, HTML embedded scripting language.







Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit java-1_6_0-openjdk for openSUSE:Factory

2011-02-25 Thread h_root

Hello community,

here is the log from the commit of package java-1_6_0-openjdk for 
openSUSE:Factory
checked in at Fri Feb 25 12:40:53 CET 2011.




--- java-1_6_0-openjdk/java-1_6_0-openjdk.changes   2011-02-01 
15:14:14.0 +0100
+++ /mounts/work_src_done/STABLE/java-1_6_0-openjdk/java-1_6_0-openjdk.changes  
2011-02-24 14:02:09.0 +0100
@@ -1,0 +2,31 @@
+Thu Feb 24 13:01:52 UTC 2011 - mvysko...@suse.cz
+
+- fix bnc#671714 - VUL-0: java-1_6_0-openjdk: permissions assigned to applets
+  with multiple JARs (icedtea6-1.9.7) 
+- Security updates
+  * S6878713, CVE-2010-4469: Hotspot backward jsr heap corruption
+  * S6907662, CVE-2010-4465: Swing timer-based security manager bypass
+  * S6994263, CVE-2010-4472: Untrusted code allowed to replace DSIG/C14N 
implementation
+  * S6981922, CVE-2010-4448: DNS cache poisoning by untrusted applets
+  * S6983554, CVE-2010-4450: Launcher incorrect processing of empty library 
path entries
+  * S6985453, CVE-2010-4471: Java2D font-related system property leak
+  * S6927050, CVE-2010-4470: JAXP untrusted component state manipulation
+  * RH677332, CVE-2011-0706: Multiple signers privilege escalation
+-  Bug fixes
+  * RH676659: Pass -export-dynamic flag to linker using -Wl, as option in gcc 
4.6+ is broken
+  * G344659: Fix issue when building on SPARC
+  * Fix latent JAXP bug caused by missing import
+- fix bnc#670304 - VUL-1: java-1_6_0-openjdk: denial of service using floats
+  (icedtea6-1.9.6)
+- Security updates
+  * S4421494, CVE-2010-4476: infinite loop while parsing double literal
+- patches changes:
+  * obsoletes stack-protector patches (already upstreamed)
+  * modified openjdk-6-src-b20-initialized-after.patch
+  * modified openjdk-6-src-b20-no-werror.patch
+  * openjdk-ecj-6-src-b20-no-return-in-nonvoid-function.patch
+  * add openjdk-6-src-b20-stringcompare.patch
+  * add openjdk-ecj-6-src-b20-no-return-in-nonvoid-function.patch
+  * add openjdk-6-src-b20-gcj-workaround.patch (11.2/x86_64 workaround)
+
+---

calling whatdependson for head-i586


Old:

  0803c0f69b51.tar.gz
  icedtea6-1.9.5.tar.bz2
  openjdk-6-src-b17-stack-protector-fclose.patch
  openjdk-6-src-b17-stack-protector.patch

New:

  13edc857b967.tar.gz
  icedtea6-1.9.7.tar.gz
  openjdk-6-src-b20-gcj-workaround.patch
  openjdk-6-src-b20-stringcompare.patch
  openjdk-ecj-6-src-b20-no-return-in-nonvoid-function.patch



Other differences:
--
++ java-1_6_0-openjdk.spec ++
--- /var/tmp/diff_new_pack.HA8Qmd/_old  2011-02-25 12:32:54.0 +0100
+++ /var/tmp/diff_new_pack.HA8Qmd/_new  2011-02-25 12:32:54.0 +0100
@@ -16,6 +16,8 @@
 #
 
 
+%define gcjbootstrap 1
+
 %define jit_arches %{ix86} x86_64
 # Turn on/off some features depending on openSUSE version
 %define with_systemtap 0
@@ -26,12 +28,15 @@
 %endif
 %endif
 
-%define gcjbootstrap 0
+# XXX: systemtap does not work with gcj
+%if %{gcjbootstrap}
+%define with_systemtap 0
+%endif
 
 # If runtests is 0 test suites will not be run.
 %define runtests 0
 
-%define icedteaver 1.9.5
+%define icedteaver 1.9.7
 %define icedteasnapshot %{nil}
 %define openjdkver b20
 %define openjdkdate 21_jun_2010
@@ -139,9 +144,7 @@
 Group:  Development/Languages/Java
 License:GPLv2 ; - with the OpenJDK Assembly Exception and the GNU 
Classpath Exception
 Url:http://openjdk.java.net/
-# hg clone http://icedtea.classpath.org/hg/icedtea6-%{icedteaver} 
icedtea6-%{icedteaver}
-# tar --exclude-vcs -cjf icedtea6-%{icedteaver}%{icedteasnapshot}.tar.bz2 
icedtea6-%{icedteaver}
-Source0:%{url}icedtea6-%{icedteaver}%{icedteasnapshot}.tar.bz2
+Source0:%{url}icedtea6-%{icedteaver}%{icedteasnapshot}.tar.gz
 # # download the openjdk from 
http://download.java.net/openjdk/jdk6/promoted/latest/
 # sh generate-fedora-zip.sh openjdk-6-src-%{openjdkver}-%{openjdkdate}.tar.gz
 Source1:%{fedorazip}
@@ -152,7 +155,7 @@
 Source5:mauve-%{mauvedate}.tar.bz2
 # from Fedora rpm
 Source6:mauve_tests
-Source7:%{hotspoturl}0803c0f69b51.tar.gz
+Source7:%{hotspoturl}13edc857b967.tar.gz
 Source8:%{jaxpurl}jdk6-jaxp-%{openjdkver}.zip
 Source9:%{jafurl}jdk6-jaf-%{openjdkver}.zip
 Source10:   %{jaxwsurl}jdk6-jaxws-%{openjdkver}.zip
@@ -198,12 +201,6 @@
 Patch123:   openjdk-6-src-b20-no-werror.patch
 # PATCH-FIX-OPENSUSE: the no-return-in-non-void againd - sent to upstream
 Patch124:   icedtea6-1.7-no-return-in-non-void.patch
-# PATCH-FIX-UPSTREAM: bnc#589021
-# http://cr.openjdk.java.net/~aph/6929067-jdk7-webrev-4/
-Patch125:   openjdk-6-src-b17-stack-protector.patch
-# PATCH-FIX-OPENSUSE: bnc#603316
-# The stack protector patch did not close the /proc/self/maps correctly
-Patch126:   openjdk-6-src-b17-stack-protector-fclose.patch
 # PATCH-FIX-OPENSUSE: gcc 4.5 warnings
 Patch127:  

commit php5 for openSUSE:Factory

2011-02-25 Thread h_root

Hello community,

here is the log from the commit of package php5 for openSUSE:Factory
checked in at Fri Feb 25 12:42:20 CET 2011.




--- php5/php5.changes   2011-02-22 16:01:00.0 +0100
+++ /mounts/work_src_done/STABLE/php5/php5.changes  2011-02-25 
10:51:25.0 +0100
@@ -1,0 +2,6 @@
+Fri Feb 25 09:50:17 UTC 2011 - ch...@computersalat.de
+
+- fix for macros.php
+  o devel pkg must have Obsoletes/Provides: php-macros
+
+---

calling whatdependson for head-i586




Other differences:
--
++ php5.spec ++
--- /var/tmp/diff_new_pack.DQLMfc/_old  2011-02-25 12:41:48.0 +0100
+++ /var/tmp/diff_new_pack.DQLMfc/_new  2011-02-25 12:41:48.0 +0100
@@ -77,14 +77,12 @@
 ###
 ###
 Version:5.3.5
-Release:8
+Release:9
 License:The PHP License, version 3.01
 Group:  Development/Languages/Other
 Provides:   php zend php-xml php-spl php-simplexml php-session php-pcre 
php-date php-reflection php-filter
 Provides:   php-api = %{apiver}, php-zend-abi = %{zendver}
 Provides:   php(api) = %{apiver}, php(zend-abi) = %{zendver}
-Provides:   php-macros = 2.0
-Obsoletes:  php-macros  2.0
 AutoReqProv:on
 PreReq: update-alternatives
 #extensions that are no longer here
@@ -157,6 +155,8 @@
 %endif
 Conflicts:  php4-devel
 PreReq: update-alternatives
+Provides:   php-macros = 2.0
+Obsoletes:  php-macros  2.0
 
 %description devel
 PHP is a server-side, cross-platform, HTML embedded scripting language.







Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit wine for openSUSE:Factory

2011-02-25 Thread h_root

Hello community,

here is the log from the commit of package wine for openSUSE:Factory
checked in at Fri Feb 25 14:00:45 CET 2011.




--- wine/wine.changes   2011-01-27 12:11:15.0 +0100
+++ /mounts/work_src_done/STABLE/wine/wine.changes  2011-02-24 
17:53:13.0 +0100
@@ -1,0 +2,19 @@
+Sat Feb 19 08:34:33 CET 2011 - meiss...@suse.de
+
+- Updated to 1.3.14 development snapshot
+  - Many cleanups to address Valgrind and Clang warnings.
+  - Support for creating compressed cabinet files.
+  - Translation updates.
+  - Various bug fixes.
+
+---
+Fri Feb  4 21:25:23 CET 2011 - meiss...@suse.de
+
+- Updated to 1.3.13 development snapshoamrcust
+  - Tools for creating MSI installers.
+  - Clipboard improvements.
+  - Support for po files in the message compiler.
+  - Improvements to the Wine debugger.
+  - Various bug fixes.
+
+---

calling whatdependson for head-i586


Old:

  wine-1.3.12.tar.bz2

New:

  wine-1.3.14.tar.bz2



Other differences:
--
++ wine.spec ++
--- /var/tmp/diff_new_pack.N5SaK4/_old  2011-02-25 14:00:29.0 +0100
+++ /var/tmp/diff_new_pack.N5SaK4/_new  2011-02-25 14:00:29.0 +0100
@@ -30,7 +30,7 @@
 License:LGPLv2.1+
 Group:  System/Emulators/PC
 AutoReqProv:on
-Version:1.3.12
+Version:1.3.14
 Release:1
 Summary:An MS Windows Emulator
 Url:http://www.winehq.com

++ wine-1.3.12.tar.bz2 - wine-1.3.14.tar.bz2 ++
wine/wine-1.3.12.tar.bz2 /mounts/work_src_done/STABLE/wine/wine-1.3.14.tar.bz2 
differ: char 11, line 1






Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gconf2-branding-openSUSE for openSUSE:Factory

2011-02-25 Thread h_root

Hello community,

here is the log from the commit of package gconf2-branding-openSUSE for 
openSUSE:Factory
checked in at Fri Feb 25 14:04:23 CET 2011.




--- gconf2-branding-openSUSE/gconf2-branding-SLED.changes   2011-02-21 
15:56:13.0 +0100
+++ 
/mounts/work_src_done/STABLE/gconf2-branding-openSUSE/gconf2-branding-SLED.changes
  2011-02-25 11:31:01.0 +0100
@@ -1,0 +2,6 @@
+Fri Feb 25 11:03:12 CET 2011 - vu...@opensuse.org
+
+- Update gnome-panel-layout.patch: make sure there is no empty
+  space between the main-menu, tomboy and the window list.
+
+---
gconf2-branding-SLES.changes: same change
gconf2-branding-openSUSE.changes: same change

calling whatdependson for head-i586




Other differences:
--
++ gconf2-branding-SLED.spec ++
--- /var/tmp/diff_new_pack.7exTPL/_old  2011-02-25 14:03:32.0 +0100
+++ /var/tmp/diff_new_pack.7exTPL/_new  2011-02-25 14:03:32.0 +0100
@@ -50,7 +50,7 @@
 Group:  System/GUI/GNOME
 Summary:SLED defaults for the GNOME configuration system
 Version:%{desktop_data_ver}
-Release:9
+Release:10
 Source: gconf2-branding_spec-prepare.sh
 # panel-default-setup.entries from gnome-panel (patched version):
 Source2:panel-default-setup.entries

gconf2-branding-SLES.spec: same change
++ gconf2-branding-openSUSE.spec ++
--- /var/tmp/diff_new_pack.7exTPL/_old  2011-02-25 14:03:32.0 +0100
+++ /var/tmp/diff_new_pack.7exTPL/_new  2011-02-25 14:03:32.0 +0100
@@ -50,7 +50,7 @@
 Group:  System/GUI/GNOME
 Summary:openSUSE defaults for the GNOME configuration system
 Version:%{desktop_data_ver}
-Release:16
+Release:17
 Source: gconf2-branding_spec-prepare.sh
 # panel-default-setup.entries from gnome-panel (patched version):
 Source2:panel-default-setup.entries

++ gconf2-branding.changes.in ++
--- /var/tmp/diff_new_pack.7exTPL/_old  2011-02-25 14:03:32.0 +0100
+++ /var/tmp/diff_new_pack.7exTPL/_new  2011-02-25 14:03:32.0 +0100
@@ -1,4 +1,10 @@
 ---
+Fri Feb 25 11:03:12 CET 2011 - vu...@opensuse.org
+
+- Update gnome-panel-layout.patch: make sure there is no empty
+  space between the main-menu, tomboy and the window list.
+
+---
 Mon Feb 21 14:12:02 CET 2011 - vu...@opensuse.org
 
 - Remove support for building on openSUSE  11.4: the changes we're

++ gconf2-branding.spec.in ++
--- /var/tmp/diff_new_pack.7exTPL/_old  2011-02-25 14:03:32.0 +0100
+++ /var/tmp/diff_new_pack.7exTPL/_new  2011-02-25 14:03:32.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package gconf2-branding-%{branding_name} (Version 11.4)
+# spec file for package gconf2-branding-%{branding_name}
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed

++ gnome-panel-layout.patch ++
--- /var/tmp/diff_new_pack.7exTPL/_old  2011-02-25 14:03:32.0 +0100
+++ /var/tmp/diff_new_pack.7exTPL/_new  2011-02-25 14:03:32.0 +0100
@@ -193,7 +193,7 @@
 +  keyapplets/tomboy/position/key
 +  schema_key/schemas/apps/panel/objects/position/schema_key
 +  value
-+int103/int
++int1/int
 +  /value
 +/entry
 +entry
@@ -303,7 +303,7 @@
schema_key/schemas/apps/panel/objects/position/schema_key
value
 -int1/int
-+int125/int
++int2/int
/value
  /entry
  entry








Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mozilla-xulrunner20 for openSUSE:Factory

2011-02-25 Thread h_root

Hello community,

here is the log from the commit of package mozilla-xulrunner20 for 
openSUSE:Factory
checked in at Fri Feb 25 14:26:45 CET 2011.




--- mozilla-xulrunner20/mozilla-xulrunner20.changes 2011-02-17 
20:13:51.0 +0100
+++ 
/mounts/work_src_done/STABLE/mozilla-xulrunner20/mozilla-xulrunner20.changes
2011-02-23 10:07:39.0 +0100
@@ -1,0 +2,6 @@
+Wed Feb 23 07:51:12 UTC 2011 - w...@rosenauer.org
+
+- update to 2.0b12
+- update supported locale provides
+
+---

calling whatdependson for head-i586


Old:

  l10n-2.0b11.tar.bz2
  xulrunner-source-2.0b11.tar.bz2

New:

  l10n-2.0b12.tar.bz2
  xulrunner-source-2.0b12.tar.bz2



Other differences:
--
++ mozilla-xulrunner20.spec ++
--- /var/tmp/diff_new_pack.JK6dTi/_old  2011-02-25 14:22:30.0 +0100
+++ /var/tmp/diff_new_pack.JK6dTi/_new  2011-02-25 14:22:30.0 +0100
@@ -30,10 +30,10 @@
 BuildRequires:  wireless-tools
 %endif
 License:GPLv2+ ; LGPLv2.1+ ; MPLv1.1+
-Version:2.0b11
-Release:6
-%define releasedate 2011020300
-%define version_internal 2.0b11
+Version:2.0b12
+Release:1
+%define releasedate 2011022200
+%define version_internal 2.0b12
 %define apiversion 2.0
 %define uaweight 199900
 Summary:Mozilla Runtime Environment 2.0
@@ -163,7 +163,7 @@
 Summary:Extra translations for XULRunner 2.0
 Group:  System/Localization
 Requires:   %{name} = %{version}
-Provides:   
locale(%{name}:af;as;be;bg;bn_BD;bn_IN;cy;el;eo;es_MX;et;eu;fa;fy_NL;ga_IE;gl;gu_IN;he;hi_IN;hr;id;is;ka;kk;kn;ku;lt;lv;mk;ml;mr;nn_NO;oc;or;pa_IN;rm;ro;si;sk;sl;sq;sr;ta;ta_LK;te;th;tr;uk;vi)
+Provides:   
locale(%{name}:af;ak;ast;be;bg;bn_BD;br;bs;cy;el;en_ZA;eo;es_MX;et;eu;fy_NL;ga_IE;gd;gl;gu_IN;he;hi_IN;hr;hy_AM;id;is;kk;kn;ku;lg;lt;lv;mai;mk;ml;mr;nn_NO;nso;or;pa_IN;rm;ro;si;sk;sl;son;sq;sr;ta;ta_LK;te;th;tr;uk;zu)
 Obsoletes:  %{name}-translations  %{version}-%{release}
 
 %description translations-other
@@ -358,7 +358,7 @@
 touch %{_tmppath}/translations.{common,other}
 for locale in $(awk '{ print $1; }' 
../mozilla/browser/locales/shipped-locales); do
   case $locale in
-   ja-JP-mac|en-US)
+   ja-JP-mac|en-US|bn-IN)
   ;;
*)
   pushd $RPM_BUILD_DIR/compare-locales

++ compare-locales.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/compare-locales/lib/Mozilla/Checks.py 
new/compare-locales/lib/Mozilla/Checks.py
--- old/compare-locales/lib/Mozilla/Checks.py   2011-02-04 10:10:07.0 
+0100
+++ new/compare-locales/lib/Mozilla/Checks.py   2011-02-23 09:14:08.0 
+0100
@@ -37,6 +37,7 @@
 
 import re
 import itertools
+import codecs
 from difflib import SequenceMatcher
 from xml import sax
 try:
@@ -52,7 +53,7 @@
 pattern = None
 
 def use(self, file):
-return self.pattern.match(file)
+return self.pattern.match(file.file)
 
 def check(self, refEnt, l10nEnt):
 '''Given the reference and localized Entities, performs checks.
@@ -187,30 +188,40 @@
 
 
 class DTDChecker(Checker):
-'''Tests to run on DTD files.
+Tests to run on DTD files.
 
 Uses xml.sax for the heavy lifting of xml parsing.
 
 The code tries to parse until it doesn't find any unresolved entities
 anymore. If it finds one, it tries to grab the key, and adds an empty
 !ENTITY key  definition to the header.
-'''
+
 pattern = re.compile('.*\.dtd$')
 
 eref = re.compile('(%s);' % DTDParser.Name)
 tmpl = '''!DOCTYPE elem [%s]
-elem
-%s
-/elem
+elem%s/elem
 '''
 xmllist = set(('amp', 'lt', 'gt', 'apos', 'quot'))
 
+# Setup for XML parser, with default and text-only content handler
+parser = sax.make_parser()
+class TextContent(sax.handler.ContentHandler):
+textcontent = ''
+def characters(self, content):
+self.textcontent += content
+
+defaulthandler = sax.handler.ContentHandler()
+texthandler = TextContent()
+
+processContent = None
+
 def check(self, refEnt, l10nEnt):
-'''Try to parse the refvalue inside a dummy element, and keep
+Try to parse the refvalue inside a dummy element, and keep
 track of entities that we need to define to make that work.
 
 Return a checker that offers just those entities.
-'''
+
 refValue, l10nValue = refEnt.val, l10nEnt.val
 # find entities the refValue references,
 # reusing markup from DTDParser.
@@ -218,9 +229,13 @@
   for m in self.eref.finditer(refValue)) \
   - self.xmllist
 entities = ''.join('!ENTITY %s ' % s for s in sorted(reflist))
-parser = sax.make_parser()
+if self.processContent 

commit MozillaFirefox for openSUSE:Factory

2011-02-25 Thread h_root

Hello community,

here is the log from the commit of package MozillaFirefox for openSUSE:Factory
checked in at Fri Feb 25 14:44:31 CET 2011.




--- MozillaFirefox/MozillaFirefox.changes   2011-02-09 08:47:19.0 
+0100
+++ /mounts/work_src_done/STABLE/MozillaFirefox/MozillaFirefox.changes  
2011-02-23 10:27:44.0 +0100
@@ -1,0 +2,6 @@
+Wed Feb 23 07:52:04 UTC 2011 - w...@rosenauer.org
+
+- update to version 4.0b12
+- rebased patches
+
+---

calling whatdependson for head-i586


Old:

  firefox-4.0b11-source.tar.bz2
  l10n-4.0b11.tar.bz2

New:

  firefox-4.0b12-source.tar.bz2
  l10n-4.0b12.tar.bz2



Other differences:
--
++ MozillaFirefox.spec ++
--- /var/tmp/diff_new_pack.fBj4Pk/_old  2011-02-25 14:43:55.0 +0100
+++ /var/tmp/diff_new_pack.fBj4Pk/_new  2011-02-25 14:43:55.0 +0100
@@ -31,15 +31,15 @@
 BuildRequires:  wireless-tools
 %endif
 %if 0%{?use_xulrunner}
-BuildRequires:  %{xulrunner}-devel = 2.0b11
+BuildRequires:  %{xulrunner}-devel = 2.0b12
 %endif
 License:GPLv2+ ; LGPLv2.1+ ; MPLv1.1+
-Version:%{mainver}b11
+Version:%{mainver}b12
 Release:1
 Provides:   web_browser
 Provides:   firefox = %{version}-%{release}
 Provides:   firefox = %{mainver}
-%define releasedate 2011020300
+%define releasedate 2011022200
 Summary:Mozilla Firefox Web Browser
 Url:http://www.mozilla.org/
 Group:  Productivity/Networking/Web/Browsers
@@ -137,7 +137,7 @@
 %package translations-other
 Summary:Extra translations for MozillaFirefox
 License:GPLv2+ ; LGPLv2.1+ ; MPLv1.1+
-Provides:   
locale(%{name}:af;ak;ast;be;bg;bn_BD;br;cy;el;en_ZA;eo;et;eu;fy_NL;ga_IE;gd;gu_IN;he;hi_IN;hr;hy_AM;id;is;kk;kn;ku;lg;lt;lv;mai;mk;ml;mr;nn_NO;nso;or;pa_IN;rm;ro;si;sk;sl;son;sq;sr;ta;ta_LK;te;th;tr;uk)
+Provides:   
locale(%{name}:af;ak;ast;be;bg;bn_BD;br;bs;cy;el;en_ZA;eo;es_MX;et;eu;fy_NL;ga_IE;gd;gl;gu_IN;he;hi_IN;hr;hy_AM;id;is;kk;kn;ku;lg;lt;lv;mai;mk;ml;mr;nn_NO;nso;or;pa_IN;rm;ro;si;sk;sl;son;sq;sr;ta;ta_LK;te;th;tr;uk;zu)
 Group:  System/Localization
 Requires:   %{name} = %{version}
 Obsoletes:  %{name}-translations  %{version}-%{release}

++ compare-locales.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/compare-locales/lib/Mozilla/Checks.py 
new/compare-locales/lib/Mozilla/Checks.py
--- old/compare-locales/lib/Mozilla/Checks.py   2011-02-04 10:10:07.0 
+0100
+++ new/compare-locales/lib/Mozilla/Checks.py   2011-02-23 09:14:08.0 
+0100
@@ -37,6 +37,7 @@
 
 import re
 import itertools
+import codecs
 from difflib import SequenceMatcher
 from xml import sax
 try:
@@ -52,7 +53,7 @@
 pattern = None
 
 def use(self, file):
-return self.pattern.match(file)
+return self.pattern.match(file.file)
 
 def check(self, refEnt, l10nEnt):
 '''Given the reference and localized Entities, performs checks.
@@ -187,30 +188,40 @@
 
 
 class DTDChecker(Checker):
-'''Tests to run on DTD files.
+Tests to run on DTD files.
 
 Uses xml.sax for the heavy lifting of xml parsing.
 
 The code tries to parse until it doesn't find any unresolved entities
 anymore. If it finds one, it tries to grab the key, and adds an empty
 !ENTITY key  definition to the header.
-'''
+
 pattern = re.compile('.*\.dtd$')
 
 eref = re.compile('(%s);' % DTDParser.Name)
 tmpl = '''!DOCTYPE elem [%s]
-elem
-%s
-/elem
+elem%s/elem
 '''
 xmllist = set(('amp', 'lt', 'gt', 'apos', 'quot'))
 
+# Setup for XML parser, with default and text-only content handler
+parser = sax.make_parser()
+class TextContent(sax.handler.ContentHandler):
+textcontent = ''
+def characters(self, content):
+self.textcontent += content
+
+defaulthandler = sax.handler.ContentHandler()
+texthandler = TextContent()
+
+processContent = None
+
 def check(self, refEnt, l10nEnt):
-'''Try to parse the refvalue inside a dummy element, and keep
+Try to parse the refvalue inside a dummy element, and keep
 track of entities that we need to define to make that work.
 
 Return a checker that offers just those entities.
-'''
+
 refValue, l10nValue = refEnt.val, l10nEnt.val
 # find entities the refValue references,
 # reusing markup from DTDParser.
@@ -218,9 +229,13 @@
   for m in self.eref.finditer(refValue)) \
   - self.xmllist
 entities = ''.join('!ENTITY %s ' % s for s in sorted(reflist))
-parser = sax.make_parser()
+if self.processContent is None:
+self.parser.setContentHandler(self.defaulthandler)
+else:
+

commit desktop-translations for openSUSE:Factory

2011-02-25 Thread h_root

Hello community,

here is the log from the commit of package desktop-translations for 
openSUSE:Factory
checked in at Fri Feb 25 15:16:43 CET 2011.




--- desktop-translations/desktop-translations.changes   2011-02-17 
14:47:25.0 +0100
+++ 
/mounts/work_src_done/STABLE/desktop-translations/desktop-translations.changes  
2011-02-25 10:25:12.0 +0100
@@ -1,0 +2,5 @@
+Fri Feb 25 10:24:55 CET 2011 - k...@suse.de
+
+- update translations.
+
+---

calling whatdependson for head-i586




Other differences:
--
++ desktop-translations.spec ++
--- /var/tmp/diff_new_pack.yzVkAs/_old  2011-02-25 15:14:43.0 +0100
+++ /var/tmp/diff_new_pack.yzVkAs/_new  2011-02-25 15:14:43.0 +0100
@@ -20,7 +20,7 @@
 
 Name:   desktop-translations
 Version:11.4
-Release:10
+Release:11
 Summary:Desktop Files Translation updates
 License:BSD3c(or similar)
 Group:  System/GUI/Other

++ desktop-translations.tar.bz2 ++
desktop-translations/desktop-translations.tar.bz2 
/mounts/work_src_done/STABLE/desktop-translations/desktop-translations.tar.bz2 
differ: char 11, line 1






Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit kiwi for openSUSE:Factory

2011-02-25 Thread h_root

Hello community,

here is the log from the commit of package kiwi for openSUSE:Factory
checked in at Fri Feb 25 15:21:33 CET 2011.




--- kiwi/kiwi.changes   2011-02-22 18:05:20.0 +0100
+++ /mounts/work_src_done/STABLE/kiwi/kiwi.changes  2011-02-25 
13:35:30.0 +0100
@@ -1,0 +2,60 @@
+Fri Feb 25 13:29:39 CET 2011 - m...@suse.de
+  
+- v4.79 released
+  
+---
+Fri Feb 25 11:22:19 CET 2011 - m...@suse.de
+  
+- The default tftp block size chosen by kiwi is too small and
+  not aligned to page size (4096), so it causes unnecessary
+  overhead. This patch improves loading performance a lot
+  
+---
+Thu Feb 24 14:31:23 CET 2011 - adr...@suse.de
+  
+- just compare the major version of squashfs kernel module and squashfs tools 
(bnc #674653)
+  
+---
+Thu Feb 24 12:15:56 CET 2011 - adr...@suse.de
+  
+- parse all available product file not just the first one
+  
+---
+Thu Feb 24 10:18:04 CET 2011 - m...@suse.de
+  
+- fixed -z test for RELOAD_CONFIG variable in netboot
+  
+---
+Thu Feb 24 09:52:45 CET 2011 - m...@suse.de
+  
+- added unit testing for the KIWILocator object
+  
+---
+Thu Feb 24 09:46:06 CET 2011 - m...@suse.de
+  
+- added ensconce parameter -i imagename which contains
+  the contents of the name attribute. ensconce requires this
+  to distinguish between system image and initrd image
+  
+---
+Wed Feb 23 14:22:00 CET 2011 - m...@suse.de
+  
+- Using here documents with tabs in front of the limit
+  string works but is not recommended. Tabs are ignored
+  when searching for the limit string but spaces are not,
+  in which case the here document ends at the next occurence
+  of the limit string or at the end of the file with some
+  shells not even issuing a warning
+  
+---
+Wed Feb 23 09:52:15 CET 2011 - m...@suse.de
+  
+- fixed use of uninitialized value if an improper
+  configuration directory is specified
+  
+---
+Tue Feb 22 18:36:05 CET 2011 - m...@suse.de
+  
+- move warning messages about shm and semaphores into logfile
+  
+---

calling whatdependson for head-i586




Other differences:
--
++ kiwi.spec ++
--- /var/tmp/diff_new_pack.ceVne2/_old  2011-02-25 15:17:11.0 +0100
+++ /var/tmp/diff_new_pack.ceVne2/_new  2011-02-25 15:17:11.0 +0100
@@ -65,7 +65,7 @@
 %endif
 %endif
 Summary:OpenSuSE - KIWI Image System
-Version:4.78
+Version:4.79
 Release:1
 Group:  System/Management
 License:GPLv2

++ kiwi-docu.tar.bz2 ++
kiwi/kiwi-docu.tar.bz2 /mounts/work_src_done/STABLE/kiwi/kiwi-docu.tar.bz2 
differ: char 11, line 1

++ kiwi.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kiwi/.revision new/kiwi/.revision
--- old/kiwi/.revision  2011-02-22 18:02:35.0 +0100
+++ new/kiwi/.revision  2011-02-25 13:31:24.0 +0100
@@ -1 +1 @@
-d32fb17debadd5fa678e69503183bf70ad1eeb51
+ea7a834247aebbb4f41a028503fa9a62f03c2293
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kiwi/kiwi.pl new/kiwi/kiwi.pl
--- old/kiwi/kiwi.pl2011-02-22 18:02:35.0 +0100
+++ new/kiwi/kiwi.pl2011-02-25 13:31:24.0 +0100
@@ -47,7 +47,7 @@
 #
 # Globals (Version)
 #
-our $Version   = 4.78;
+our $Version   = 4.79;
 our $Publisher = SUSE LINUX Products GmbH;
 our $Preparer  = KIWI - http://kiwi.berlios.de;;
 our $openSUSE  = http://download.opensuse.org;;
@@ -2382,16 +2382,16 @@
my $mktool_vs = qxx (mksquashfs -version 21 | head 
-n 1);
my $module_vs = qxx (modinfo -d $km 21);
my $error = 0;
-   if ($mktool_vs =~ /^mksquashfs version (\d\.\d) \(/) {
+   if ($mktool_vs =~ /^mksquashfs version (\d)\.\d \(/) {
$mktool_vs = $1;
$error++;
}
-   if ($module_vs =~ /^squashfs (\d\.\d),/) {
+   if ($module_vs =~ /^squashfs (\d)\.\d,/) {
$module_vs = $1;
$error++;
 

commit patterns-openSUSE for openSUSE:Factory

2011-02-25 Thread h_root

Hello community,

here is the log from the commit of package patterns-openSUSE for 
openSUSE:Factory
checked in at Fri Feb 25 15:26:00 CET 2011.




--- patterns-openSUSE/patterns-openSUSE.changes 2011-02-14 14:29:16.0 
+0100
+++ /mounts/work_src_done/STABLE/patterns-openSUSE/patterns-openSUSE.changes
2011-02-25 13:59:04.0 +0100
@@ -1,0 +2,9 @@
+Fri Feb 25 12:58:41 UTC 2011 - co...@novell.com
+
+394ae9c revert some empty files
+ce02fc4 add dependencies of skype
+b285e13 move skype deps out of default install
+0286502 add depencies of acroread to the DVD
+7cacb80 phonon-backend-xine is unused
+
+---

calling whatdependson for head-i586




Other differences:
--
++ patterns-openSUSE.spec ++
--- /var/tmp/diff_new_pack.astDZ0/_old  2011-02-25 15:24:56.0 +0100
+++ /var/tmp/diff_new_pack.astDZ0/_new  2011-02-25 15:24:56.0 +0100
@@ -24,7 +24,7 @@
 AutoReqProv:on
 Summary:Patterns for Installation (full ftp tree)
 Version:11.4
-Release:2
+Release:8
 Url:http://en.opensuse.org/Patterns
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Source: patterns-openSUSE-data.tar.bz2
@@ -1599,13 +1599,14 @@
 Group:  Metapackages
 Summary:Meta package for pattern kde4_multimedia
 Recommends: amarok
+Recommends: gstreamer-0_10-plugins-good
 Recommends: k3b
 Recommends: kaffeine
 Recommends: kio_audiocd
 Recommends: kmix
 Recommends: kscd
 Recommends: opensuse-codecs-installer
-Recommends: phonon-backend-xine
+Recommends: phonon-backend-gstreamer-0_10
 Requires:   patterns-openSUSE-kde4_multimedia
 Supplements:packageand(patterns-openSUSE-kde4:patterns-openSUSE-multimedia)
 

++ patterns-openSUSE-data.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/patterns-openSUSE-data/data/KDE4-BASIS 
new/patterns-openSUSE-data/data/KDE4-BASIS
--- old/patterns-openSUSE-data/data/KDE4-BASIS  2011-02-01 12:31:58.0 
+0100
+++ new/patterns-openSUSE-data/data/KDE4-BASIS  2011-02-25 13:56:15.0 
+0100
@@ -37,7 +37,6 @@
 kio_iso
 // bnc#430161
 polkit-default-privs
-#if 1
 // pulseaudio
 pulseaudio
 pulseaudio-module-bluetooth
@@ -47,7 +46,6 @@
 pulseaudio-module-zeroconf
 pulseaudio-utils
 alsa-plugins-pulse
-#endif
 kdepasswd
 kvkbd
 // bnc#605509
@@ -67,7 +65,6 @@
 kjots
 kepas
 yakuake
-phonon-backend-gstreamer-0_10
 kcron
 ksystemlog
 -Psg:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/patterns-openSUSE-data/data/KDE4-Multimedia 
new/patterns-openSUSE-data/data/KDE4-Multimedia
--- old/patterns-openSUSE-data/data/KDE4-Multimedia 2010-10-23 
08:04:59.0 +0200
+++ new/patterns-openSUSE-data/data/KDE4-Multimedia 2011-02-25 
13:56:33.0 +0100
@@ -11,7 +11,8 @@
 // software.openSUSE.org/codecs  
 opensuse-codecs-installer 
 kaffeine
-phonon-backend-xine
+phonon-backend-gstreamer-0_10
+gstreamer-0_10-plugins-good
 -Prc:
 
 +Psg:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/patterns-openSUSE-data/data/NON-OSS-OPT 
new/patterns-openSUSE-data/data/NON-OSS-OPT
--- old/patterns-openSUSE-data/data/NON-OSS-OPT 2010-10-23 08:04:59.0 
+0200
+++ new/patterns-openSUSE-data/data/NON-OSS-OPT 2011-02-16 11:01:55.0 
+0100
@@ -36,4 +36,5 @@
 FZMingTiB
 // needed for instsys
 FZSongTi
+
 -Psg:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/patterns-openSUSE-data/data/REST-DVD 
new/patterns-openSUSE-data/data/REST-DVD
--- old/patterns-openSUSE-data/data/REST-DVD2010-10-23 08:05:00.0 
+0200
+++ new/patterns-openSUSE-data/data/REST-DVD2011-02-25 14:04:06.0 
+0100
@@ -162,4 +162,157 @@
 
 // bnc#626952
 quota-nfs
+
+// dependencies of skype.rpm
+libasound.so.2
+libasound.so.2(ALSA_0.9)
+libasound.so.2(ALSA_0.9.0rc4)
+libc.so.6
+libc.so.6(GLIBC_2.0)
+libc.so.6(GLIBC_2.1)
+libc.so.6(GLIBC_2.1.3)
+libc.so.6(GLIBC_2.2)
+libc.so.6(GLIBC_2.3)
+libc.so.6(GLIBC_2.3.4)
+libc.so.6(GLIBC_2.4)
+libdbus-1.so.3
+libdl.so.2
+libdl.so.2(GLIBC_2.0)
+libdl.so.2(GLIBC_2.1)
+libfontconfig.so.1
+libfreetype.so.6
+libgcc_s.so.1
+libgcc_s.so.1(GCC_3.0)
+libgcc_s.so.1(GLIBC_2.0)
+libglib-2.0.so.0
+libgthread-2.0.so.0
+libICE.so.6
+libm.so.6
+libm.so.6(GLIBC_2.0)
+libpng12.so.0
+libpthread.so.0
+libpthread.so.0(GLIBC_2.0)
+libpthread.so.0(GLIBC_2.1)
+libpthread.so.0(GLIBC_2.2)
+libpthread.so.0(GLIBC_2.3.2)
+libQtCore.so.4
+libQtDBus.so.4
+libQtGui.so.4
+libQtNetwork.so.4
+libQtXml.so.4
+librt.so.1
+libSM.so.6
+libstdc++.so.6
+libstdc++.so.6(CXXABI_1.3)
+libstdc++.so.6(GLIBCXX_3.4)
+libstdc++.so.6(GLIBCXX_3.4.9)
+libX11.so.6
+libXcursor.so.1
+libXext.so.6
+libXfixes.so.3
+libXinerama.so.1

commit nbd for openSUSE:Factory

2011-02-25 Thread h_root

Hello community,

here is the log from the commit of package nbd for openSUSE:Factory
checked in at Fri Feb 25 15:28:12 CET 2011.




--- nbd/nbd.changes 2009-08-05 12:02:50.0 +0200
+++ /mounts/work_src_done/STABLE/nbd/nbd.changes2011-02-25 
12:41:13.0 +0100
@@ -1,0 +2,8 @@
+Fri Feb 25 12:40:16 CET 2011 - m...@suse.de
+
+- Update to nbd-2.9.20:
+  * Documentation update
+  * Fix buffer size checking (bnc #674281)
+  * Extend test suite and fix named exports
+
+---

calling whatdependson for head-i586


Old:

  nbd-2.9.13-close.diff
  nbd-2.9.13-doc.diff
  nbd-2.9.13-warn.diff
  nbd-2.9.13.tar.bz2

New:

  nbd-2.9.20-close.diff
  nbd-2.9.20.tar.bz2



Other differences:
--
++ nbd.spec ++
--- /var/tmp/diff_new_pack.GNA8c9/_old  2011-02-25 15:26:22.0 +0100
+++ /var/tmp/diff_new_pack.GNA8c9/_new  2011-02-25 15:26:22.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package nbd (Version 2.9.13)
+# spec file for package nbd
 #
-# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -21,16 +21,14 @@
 Name:   nbd
 BuildRequires:  doxygen glib2-devel
 PreReq: %insserv_prereq coreutils
-Version:2.9.13
-Release:2
-License:GPL v2 or later
+Version:2.9.20
+Release:1
+License:GPLv2+
 Group:  Productivity/Networking/Other
 AutoReqProv:on
 Source: %{name}-%{version}.tar.bz2
 Source2:init.nbd-server
-Patch2: nbd-2.9.13-warn.diff
-Patch3: nbd-2.9.13-doc.diff
-Patch4: nbd-2.9.13-close.diff
+Patch2: nbd-2.9.20-close.diff
 Summary:Network Block Device Server and Client Utilities
 Url:http://nbd.sourceforge.net/
 Prefix: /usr
@@ -65,7 +63,7 @@
 Paul Clements paul.cleme...@steeleye.com
 
 %package doc
-License:GPL v2 or later
+License:GPLv2+
 Summary:Network Block Device Server and Client Utilities
 Group:  Productivity/Networking/Other
 Requires:   nbd = %{version}
@@ -97,14 +95,9 @@
 %prep
 %setup
 %patch2 -p1
-%patch3 -p1
-%patch4 -p1
-touch nbd-client.8
 
 %build
-autoreconf --force --install
 export CFLAGS=$RPM_OPT_FLAGS -fstack-protector
-#export CFLAGS=$RPM_OPT_FLAGS
 ./configure --with-gnu-ld --prefix=/usr --mandir=%{_mandir} \
--infodir=%{_infodir} --libdir=%{_libdir} --libexecdir=%{_libdir} \
--program-prefix= --sysconfdir=/etc --build=%{_target_cpu}-suse-linux

++ nbd-2.9.13-close.diff - nbd-2.9.20-close.diff ++
--- nbd/nbd-2.9.13-close.diff   2009-08-05 12:02:48.0 +0200
+++ /mounts/work_src_done/STABLE/nbd/nbd-2.9.20-close.diff  2011-02-25 
12:41:12.0 +0100
@@ -1,5 +1,5 @@
 nbd-2.9.13/nbd-client.c2009-08-05 11:52:04.0 +0200
-+++ nbd-2.9.13/nbd-client.c2009-08-05 11:54:20.0 +0200
+--- nbd-2.9.20/nbd-client.c2009-08-05 11:52:04.0 +0200
 nbd-2.9.20/nbd-client.c2009-08-05 11:54:20.0 +0200
 @@ -62,6 +62,7 @@
len=read(fd, buf, 256);
buf[len-1]='\0';

++ nbd-2.9.13.tar.bz2 - nbd-2.9.20.tar.bz2 ++
 20760 lines of diff (skipped)






Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit lv2core for openSUSE:Factory

2011-02-25 Thread h_root

Hello community,

here is the log from the commit of package lv2core for openSUSE:Factory
checked in at Fri Feb 25 15:28:55 CET 2011.




--- lv2core/lv2core.changes 2011-01-14 14:02:35.0 +0100
+++ /mounts/work_src_done/STABLE/lv2core/lv2core.changes2011-02-24 
14:35:49.0 +0100
@@ -1,0 +2,6 @@
+Wed Feb 23 10:09:22 UTC 2011 - davejpla...@gmail.com
+
+- Required python-redland for lv2config
+- Added man page for lv2config
+
+---

calling whatdependson for head-i586


New:

  lv2config.1



Other differences:
--
++ lv2core.spec ++
--- /var/tmp/diff_new_pack.J44GOA/_old  2011-02-25 15:28:40.0 +0100
+++ /var/tmp/diff_new_pack.J44GOA/_new  2011-02-25 15:28:40.0 +0100
@@ -20,7 +20,7 @@
 
 Name:   lv2core
 Version:4.0pre1
-Release:1
+Release:6
 Summary:Core package for LV2 plugin system
 
 Group:  Development/Tools/Other
@@ -28,6 +28,7 @@
 
 Url:http://lv2plug.in/
 Source0:http://lv2plug.in/spec/%{name}-%{version}.tar.bz2
+Source1:lv2config.1
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 BuildRequires:  doxygen gcc-c++ graphviz pkg-config python-base
@@ -36,6 +37,7 @@
 %else
 BuildRequires:  libredland-devel
 %endif
+Requires:   python-redland
 
 %description
 LV2 is a standard for plugins and matching host applications,
@@ -48,6 +50,15 @@
 but any system with LV2 plugins should have the LV2 bundle contained in
 this package installed somewhere in the LV2 path
 (it contains plugin classes and other useful information).
+The LV2 header (lv2.h) and core bundle (lv2core.lv2) are maintained by
+
+Authors
+---
+David Robillard d...@drobilla.net
+Steve Harris st...@plugin.org.uk
+with the input and help of many others.
+Thanks to all members of the free software community who made LV2 possible.
+
 
 %packagedevel
 License:LGPLv2.1+ ; X11 MIT ; GPLv2+ ; BSD3c
@@ -58,12 +69,21 @@
 %descriptiondevel
 The %{name}-devel package contains libraries and header files for
 developing applications that use %{name}.
+The LV2 header (lv2.h) and core bundle (lv2core.lv2) are maintained by
+
+Authors
+---
+David Robillard d...@drobilla.net
+Steve Harris st...@plugin.org.uk
+with the input and help of many others.
+Thanks to all members of the free software community who made LV2 possible.
 
 
 %prep
 %setup -q
 
 %build
+export LV2_PATH=%{_libdir}/lv2
 export CFLAGS=%{optflags} -fPIC -ggdb
 export CXXFLAGS=$CFLAGS
 autowaf/waf -vv \
@@ -78,6 +98,11 @@
 %install
 autowaf/waf install --destdir=%{buildroot}
 find %{buildroot} -name '*.la' -exec rm -f {} ';'
+# Install man page made with a modified help2man page combined with text from 
README.
+mkdir -p %{buildroot}/%{_mandir}/man1
+cp -v %{S:1} %{buildroot}/%{_mandir}/man1/
+# We need to own the directory /usr/include/lv2
+mkdir -p %{buildroot}%{_includedir}/lv2
 
 %clean
 rm -rf %{buildroot}
@@ -88,12 +113,14 @@
 
 %files
 %defattr(-,root,root,-)
-%doc
+%doc AUTHORS COPYING ChangeLog INSTALL README
 %{_bindir}/lv2config
+%{_mandir}/man1/lv2config.1.gz
 
 %files devel
 %defattr(-,root,root,-)
 %{_includedir}/lv2.h
+%dir %{_includedir}/lv2
 %dir %{_libdir}/lv2/lv2core.lv2/
 %dir %{_libdir}/lv2/
 %{_libdir}/pkgconfig/lv2core.pc

++ lv2config.1 ++
.\ DO NOT MODIFY THIS FILE!  It was generated by help2man 1.38.2.
.TH LV2CONFIG 1 February 2011 LV2CONFIG  User Commands
.SH NAME
LV2CONFIG \- manual page for LV2CONFIG
.SH SYNOPSIS
.B lv2config - Build the default system lv2 include directories, 
/usr/include/lv2 and /usr/local/include/lv2

.B lv2config  INCLUDEDIR - Build an lv2 include directory tree at INCLUDEDIR 
for all extensions found in $LV2_PATH.

.B lv2config BUNDLESDIR INCLUDEDIR - Build an lv2 include directory tree at 
INCLUDEDIR for all extensions found in bundles under BUNDLESDIR.

.SH DESCRIPTION
.IP
LV2 is a standard for plugins and matching host applications, primarily
targeted at audio processing and generation.
.PP
LV2 is a successor to LADSPA, created to address the limitations of LADSPA
which many applications have outgrown.  Compared to LADSPA, all plugin data
is moved from the code to a separate data file, and the code has been made as
generic as possible.  As a result, LV2 can be independently extended
(retaining compatibility wherever possible), and virtually any feasible
plugin features can be implemented in an LV2 plugin.
.IP
More information about LV2 can be found at http://lv2plug.in.
.PP
This package is the core LV2 specification in usual source package form.
The major version of this package refers to the LV2 specification revision
contained, while the minor version refers only to this package.
.IP
Application authors aren't required to depend on this package (including lv2.h
in source distributions is acceptable) but any 

commit logwatch for openSUSE:Factory

2011-02-25 Thread h_root

Hello community,

here is the log from the commit of package logwatch for openSUSE:Factory
checked in at Fri Feb 25 15:30:43 CET 2011.




--- logwatch/logwatch.changes   2011-02-01 12:26:52.0 +0100
+++ /mounts/work_src_done/STABLE/logwatch/logwatch.changes  2011-02-25 
12:51:22.0 +0100
@@ -1,0 +2,8 @@
+Fri Feb 25 12:36:14 CET 2011 - p...@suse.de
+
+- Add patch to fix the handling of special characters in log files
+  (CVE-2011-1018, bnc#674984).
+- Make files in Logwatch_Dmeventd_Setup_Files tarball 644 and
+  repack with bzip2.
+
+---

calling whatdependson for head-i586


Old:

  Logwatch_Dmeventd_Setup_Files.tgz

New:

  Logwatch_Dmeventd_Setup_Files.tar.bz2
  logwatch-CVE-2011-1018.patch



Other differences:
--
++ logwatch.spec ++
--- /var/tmp/diff_new_pack.s10aZ3/_old  2011-02-25 15:29:15.0 +0100
+++ /var/tmp/diff_new_pack.s10aZ3/_new  2011-02-25 15:29:15.0 +0100
@@ -27,18 +27,19 @@
 Name:   logwatch
 Summary:Analyzes and Reports on system logs
 Version:7.3.6
-Release:75
+Release:80
 License:MIT License (or similar)
 Group:  System/Monitoring
 Url:http://www.logwatch.org
 BuildArch:  noarch
 Source0:logwatch-%{version}.tar.bz2
 Source1:%{name}-rpmlintrc
-Source2:Logwatch_Dmeventd_Setup_Files.tgz
+Source2:Logwatch_Dmeventd_Setup_Files.tar.bz2
 Patch0: logwatch-firewall.patch
 Patch1: logwatch-full_path_to_sendmail.patch
 Patch2: logwatch-timestamp_in_var.patch
 Patch3: logwatch-make_save_work.patch
+Patch4: logwatch-CVE-2011-1018.patch
 Requires:   perl textutils sh-utils grep mailx cron %date_manip_pkg
 BuildRequires:  dos2unix
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -62,6 +63,7 @@
 %patch1
 %patch2
 %patch3
+%patch4
 dos2unix scripts/services/courier
 
 %build

++ logwatch-CVE-2011-1018.patch ++
Index: scripts/logwatch.pl
===
--- scripts/logwatch.pl.orig2011-02-25 12:30:40.934525836 +0100
+++ scripts/logwatch.pl 2011-02-25 12:34:45.979948361 +0100
@@ -845,6 +845,10 @@ foreach $LogFile (@LogFileList) {
my $DestFile =  $TempDir . $LogFile . -archive;
my $Archive;
foreach $Archive (@{$LogFileData{$LogFile}{'archives'}}) {
+  if ($Archive =~ /'/) {
+ print File $Archive has invalid embedded quotes.  File ignored.\n;
+next;
+  }
   my $CheckTime;
   # We need to find out what's the earliest log we need
   my @time_t = TimeBuild();
@@ -872,18 +876,18 @@ foreach $LogFile (@LogFileList) {
  #These system calls are not secure but we are getting closer
  #What needs to go is all the pipes and instead we need a command loop
  #For each filter to apply -mgt
-my $arguments = $Archive  $DestFile;
+my $arguments = '${Archive}'  $DestFile;
 system($Config{'pathtozcat'} $arguments) == 0
or die system $Config{'pathtozcat'} failed: $? 
  } elsif (($Archive =~ m/bz2$/)  (-f $Archive)) {
  #These system calls are not secure but we are getting closer
  #What needs to go is all the pipes and instead we need a command loop
  #For each filter to apply -mgt
-my $arguments = $Archive 2/dev/null  $DestFile;
+my $arguments = '${Archive}' 2/dev/null  $DestFile;
 system($Config{'pathtobzcat'} $arguments) == 0
or die system $Config{'pathtobzcat'} failed: $? 
- } elsif (-f $Archive) {
-my $arguments = $Archive   $DestFile;
+ } elsif (-f $Archive)  (-s $Archive)) {
+my $arguments = '${Archive}'   $DestFile;
 system($Config{'pathtocat'} $arguments) == 0
or die system $Config{'pathtocat'} failed: $? 
  } #End if/elsif existence
@@ -895,6 +899,10 @@ foreach $LogFile (@LogFileList) {
foreach my $ThisFile (@FileList) {
   #Existence check for files -mgt
   next unless (-f $ThisFile);
+  if ($ThisFile =~ /'/) {
+ print File $ThisFile has invalid embedded quotes.  File ignored.\n;
+next;
+  }
   if (! -r $ThisFile) {
  print File $ThisFile is not readable.  Check permissions.;
  if ($ != 0) {
@@ -903,7 +911,7 @@ foreach $LogFile (@LogFileList) {
  print \n;
  next;
   }
-  $FileText .= ($ThisFile .  );
+  $FileText .= (' . $ThisFile . ' );
} #End foreach ThisFile
 
# remove the ENV entries set by previous service





Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: 

commit phpMyAdmin for openSUSE:Factory

2011-02-25 Thread h_root

Hello community,

here is the log from the commit of package phpMyAdmin for openSUSE:Factory
checked in at Fri Feb 25 15:41:07 CET 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/phpMyAdmin/phpMyAdmin.changes  2011-02-24 
15:23:45.704322000 +0100
@@ -0,0 +1,769 @@
+---
+Wed Feb 23 12:10:46 UTC 2011 - ch...@computersalat.de
+
+- update to 3.3.9.2
+  - [security] SQL injection, see PMASA-2011-2
+- 3.3.9.1 (2011-02-08)
+  - [security] Path disclosure, see PMASA-2011-1
+- add macros for ap_usr, ap_grp
+- fix perm on sysconfdir
+  o 0750,root,www
+
+---
+Thu Jan 27 20:14:40 UTC 2011 - ch...@computersalat.de
+
+- update to 3.3.9
+  - bug [doc] Fix references to MySQL doc
+  - patch #3101490 Default function for TIMESTAMP, thanks to jirand - jirand
+  - bug #3103853 [js] Double quotes were not escaped in generated js
+  - bug #3077463 [core] Events were not copied when copying/renaming database
+  - bug #1762306 [core] Copy database with view of a view
+  - patch #3117535 [replication] Add quotes to database in initial statement,
+thanks to Craig Duncan - duncan3dc
+  - bug #3112614 [pdf schema] Scratchboard for PDF pages not working
+  - bug #3125606 [parser] Query for table level causes strange display
+  - bug #3127904 [parser] Close all opened round brackets indents
+- removed Authors from spec
+
+---
+Fri Dec  3 23:04:41 UTC 2010 - ch...@computersalat.de
+
+- update to 3.3.8.1
+  - bug #3115519 (private) [security] XSS on db search, see PMASA-2010-8
+- rework config patch
+  o add AllowNoPassword
+
+---
+Wed Oct 27 10:23:50 UTC 2010 - jav...@opensuse.org
+
+- update to 3.3.8 
+  - bug #3059311 [import] BIGINT field type added to table analysis
+  - [core] Update library PHPExcel to version 1.7.4
+  - bug #3062455 [core] copy procedures and routines before tables
+  - bug #3062455 [export] with SQL, export procedures and routines before 
tables
+  - bug #3056023 [import] USE query not working
+  - bug #3038193 [display] Error when editing row with GEOMETRY column
+  - bug #3062454 [interface] Display routines/events also when no tables are 
defin
+ed
+  - support ARIA storage engine as well as its previous name MARIA
+
+
+---
+Wed Sep 22 14:03:14 CEST 2010 - mci...@suse.cz
+
+- update to 3.3.7
+
+---
+Wed Jul  7 14:48:50 UTC 2010 - ch...@computersalat.de
+
+- update to version 3.3.4
+- bug #2996161 [import] properly escape import value
+- bug #2998889 [import] Import button does not work in Catalan
+- [browse] Fix handling of sort order if only column is specified.
++ [lang] Greek update, thanks to Panagiotis Papazoglou - panos78
++ [lang] Updated lot of translation based on work done in master branch.
+- bug #3008411 [databases] Last dropped database remains active in navi
+- bug #2986383 [parser] Not all data being shown / counted
+- bug [synchronize] Rows were deleted in target table regardless of the
+  Would you like to delete... option
+- bug [privileges] List of tables not shown when the db name has a wildcard
+- bug #3011126 [display] Edit link missing after long query
+- patch #3013264 [doc] FAQ 1.40 uses a comma instead of a period,
+  thanks to Isaac Bennetch - ibennetch
+- [engines] Fix getting InnoDB status.
+- bug #2986422 [import] Results for query are not displayed
+
+---
+Fri May 21 16:59:50 UTC 2010 - ch...@computersalat.de
+
+- update to version 3.3.3
+  - patch #2982480 [navi] Do not group if there would be one table in group
+  - patch #2983492 [sync] When asking to synchronize Structure and Data,
+only Structure is done
+  - patch #2984893 [engines] InnoDB storage page emits a warning
+  - bug #2974687, bug #2974692 [compatibility] PHPExcel : IBM AIX iconv() does 
not work
+  - bug #2983066 [interface] Flush table on table operations shows the query 
twice
+  - bug #2983060, patch #2987900 [interface] Fix initial state of tables in
+designer
+  - bug #2983062, patch #2989408 [engines] Fix warnings when changing table
+engine to Maria
+  - bug #2974067 [display] non-binary fields shown as hex
+  - bug #2983065 [operations] Error when changing from Maria to MyISAM engine
+  - bug #2975408 [tracking] Data too long for column data_sql
+  - bug [tracking] Tracking report should obey MaxCharactersInDisplayedSQL 
+  - bug [edit] Avoid selecting UNHEX function by default for a BLOB column for
+which editing is protected
+  - bug #2994168 [structure] Show auto_increment in uppercase 
+  - bug #2993970 [pdf schema] Page numbering in Table of Contents
+- 3.3.2.0 

commit perl-HTML-Tagset for openSUSE:Factory

2011-02-25 Thread h_root

Hello community,

here is the log from the commit of package perl-HTML-Tagset for openSUSE:Factory
checked in at Fri Feb 25 15:42:25 CET 2011.




--- perl-HTML-Tagset/perl-HTML-Tagset.changes   2010-11-30 20:26:10.0 
+0100
+++ /mounts/work_src_done/STABLE/perl-HTML-Tagset/perl-HTML-Tagset.changes  
2011-02-25 14:24:00.0 +0100
@@ -1,0 +2,6 @@
+Fri Feb 25 13:21:51 UTC 2011 - ch...@computersalat.de
+
+- recreated by cpanspec 1.78.03
+- noarch pkg
+
+---

calling whatdependson for head-i586




Other differences:
--
++ perl-HTML-Tagset.spec ++
--- /var/tmp/diff_new_pack.DURxUT/_old  2011-02-25 15:41:40.0 +0100
+++ /var/tmp/diff_new_pack.DURxUT/_new  2011-02-25 15:41:40.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package perl-HTML-Tagset (Version 3.20)
+# spec file for package perl-HTML-Tagset
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,47 +15,55 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 
 Name:   perl-HTML-Tagset
 Version:3.20
-Release:53
-AutoReqProv:on
+Release:59
+License:GPL+ or Artistic
+%define cpan_name HTML-Tagset
+Summary:Data tables useful in parsing HTML
+Url:http://search.cpan.org/dist/HTML-Tagset/
 Group:  Development/Libraries/Perl
-License:Artistic
-Url:http://cpan.org/modules/by-module/HTML/
-Summary:Data Tables Useful for Dealing with HTML
-Source: HTML-Tagset-%{version}.tar.bz2
+#Source: 
http://www.cpan.org/authors/id/P/PE/PETDANCE/HTML-Tagset-3.20.tar.gz
+Source: %{cpan_name}-%{version}.tar.bz2
+BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  perl
+BuildRequires:  perl-macros
 %{perl_requires}
-BuildRequires:  perl perl-macros
 
 %description
-Data tables useful for dealing with HTML.
+This module contains several data tables useful in various kinds of HTML
+parsing operations.
+
+Note that all tag names used are lowercase.
+
+In the following documentation, a hashset is a hash being used as a set
+-- the hash conveys that its keys are there, and the actual values
+associated with the keys are not significant. (But what values are there,
+are always true.)
 
 %prep
-%setup -n HTML-Tagset-%{version} -q
+%setup -q -n %{cpan_name}-%{version}
 
 %build
-perl Makefile.PL
-make %{?_smp_mflags}
+%{__perl} Makefile.PL INSTALLDIRS=vendor
+%{__make} %{?_smp_mflags}
 
 %check
-make test
+%{__make} test
 
 %install
-make DESTDIR=$RPM_BUILD_ROOT install_vendor
+%perl_make_install
 %perl_process_packlist
+%perl_gen_filelist
 
 %clean
-rm -rf $RPM_BUILD_ROOT
+%{__rm} -rf %{buildroot}
 
-%files
-%defattr(-,root,root)
-%doc README Changes
-%doc %{_mandir}/man3/*
-%{perl_vendorlib}/HTML
-%{perl_vendorarch}/auto/HTML
+%files -f %{name}.files
+%defattr(644,root,root,755)
+%doc Changes README
 
 %changelog






Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org