commit dmidecode for openSUSE:Factory

2011-04-14 Thread h_root

Hello community,

here is the log from the commit of package dmidecode for openSUSE:Factory
checked in at Thu Apr 14 09:10:20 CEST 2011.




--- dmidecode/dmidecode.changes 2011-01-25 18:02:52.0 +0100
+++ /mounts/work_src_done/STABLE/dmidecode/dmidecode.changes2011-04-13 
17:46:29.0 +0200
@@ -1,0 +2,6 @@
+Wed Apr 13 17:45:35 CEST 2011 - jdelv...@suse.de
+
+- dmidecode-add-SMBIOS-2_7_1-support.patch: Add enumerated values
+  from SMBIOS 2.7.1.
+
+---

calling whatdependson for head-i586


New:

  dmidecode-add-SMBIOS-2_7_1-support.patch



Other differences:
--
++ dmidecode.spec ++
--- /var/tmp/diff_new_pack.BWaO5t/_old  2011-04-14 09:09:38.0 +0200
+++ /var/tmp/diff_new_pack.BWaO5t/_new  2011-04-14 09:09:38.0 +0200
@@ -21,7 +21,7 @@
 Name:   dmidecode
 Url:http://www.nongnu.org/dmidecode/
 Version:2.11
-Release:2
+Release:18
 License:GPLv2+
 Group:  System/Console
 Provides:   pmtools:/usr/sbin/dmidecode
@@ -29,6 +29,7 @@
 Summary:DMI table decoder
 Source: %{name}-%{version}.tar.bz2
 Patch1: dmidecode-fix-memory-array-location-overrun.patch
+Patch2: dmidecode-add-SMBIOS-2_7_1-support.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 ExclusiveArch:  %ix86 ia64 x86_64
 Obsoletes:  pmtools  20071117
@@ -50,6 +51,7 @@
 %prep
 %setup
 %patch1 -p1
+%patch2 -p1
 
 %build
 make CFLAGS=$RPM_OPT_FLAGS

++ dmidecode-add-SMBIOS-2_7_1-support.patch ++
Add support for SMBIOS 2.7.1:
* 6 new AMD processor families
* 1 new cache associativity value
* PCI Express 3 slot types

---
 dmidecode.c |   38 +++---
 1 file changed, 31 insertions(+), 7 deletions(-)

--- dmidecode.orig/dmidecode.c  2011-01-25 17:10:05.0 +0100
+++ dmidecode/dmidecode.c   2011-04-13 16:10:39.0 +0200
@@ -707,6 +707,8 @@ static const char *dmi_processor_family(
{ 0x3A, Athlon II Dual-Core M },
{ 0x3B, Opteron 6100 },
{ 0x3C, Opteron 4100 },
+   { 0x3D, Opteron 6200 },
+   { 0x3E, Opteron 4200 },
 
{ 0x40, MIPS },
{ 0x41, MIPS R4000 },
@@ -714,6 +716,10 @@ static const char *dmi_processor_family(
{ 0x43, MIPS R4400 },
{ 0x44, MIPS R4600 },
{ 0x45, MIPS R1 },
+   { 0x46, C-Series },
+   { 0x47, E-Series },
+   { 0x48, S-Series },
+   { 0x49, G-Series },
 
{ 0x50, SPARC },
{ 0x51, SuperSPARC },
@@ -997,7 +1003,8 @@ static void dmi_processor_id(u8 type, co
sig = 1;
else if ((type = 0x18  type = 0x1D) /* AMD */
  || type == 0x1F /* AMD */
- || (type = 0x38  type = 0x3C) /* AMD */
+ || (type = 0x38  type = 0x3E) /* AMD */
+ || (type = 0x46  type = 0x49) /* AMD */
  || (type = 0x83  type = 0x8F) /* AMD */
  || (type = 0xB6  type = 0xB7) /* AMD */
  || (type = 0xE6  type = 0xEF)) /* AMD */
@@ -1143,10 +1150,20 @@ static const char *dmi_processor_upgrade
Socket LGA1156,
Socket LGA1567,
Socket PGA988A,
-   Socket BGA1288 /* 0x20 */
+   Socket BGA1288,
+   Socket rPGA988B,
+   Socket BGA1023,
+   Socket BGA1024,
+   Socket BGA1155,
+   Socket LGA1356,
+   Socket LGA2011,
+   Socket FS1,
+   Socket FS2,
+   Socket FM1,
+   Socket FM2 /* 0x2A */
};
 
-   if (code = 0x01  code = 0x20)
+   if (code = 0x01  code = 0x2A)
return upgrade[code - 0x01];
return out_of_spec;
 }
@@ -1493,10 +1510,11 @@ static const char *dmi_cache_associativi
24-way Set-associative,
32-way Set-associative,
48-way Set-associative,
-   64-way Set-associative /* 0x0D */
+   64-way Set-associative,
+   20-way Set-associative /* 0x0E */
};
 
-   if (code = 0x01  code = 0x0D)
+   if (code = 0x01  code = 0x0E)
return type[code - 0x01];
return out_of_spec;
 }
@@ -1660,12 +1678,18 @@ static const char *dmi_slot_type(u8 code
PCI Express 2 x2,
PCI Express 2 x4,
PCI Express 2 x8,
-   PCI Express 2 x16, /* 0xB0 */
+   PCI Express 2 x16,
+   PCI Express 3,
+   PCI Express 3 x1,
+   PCI Express 3 x2,
+   PCI Express 3 x4,
+   PCI Express 3 x8,
+   PCI Express 3 x16 /* 0xB6 */
};
 
if (code = 

commit kiwi for openSUSE:Factory

2011-04-14 Thread h_root

Hello community,

here is the log from the commit of package kiwi for openSUSE:Factory
checked in at Thu Apr 14 09:35:19 CEST 2011.




--- kiwi/kiwi.changes   2011-04-01 14:40:18.0 +0200
+++ /mounts/work_src_done/STABLE/kiwi/kiwi.changes  2011-04-13 
18:23:56.0 +0200
@@ -1,0 +2,220 @@
+Wed Apr 13 17:45:12 CEST 2011 - m...@suse.de
+  
+- fixed parted type setup, use the form 'set [nr] type 0x[id]'
+  this is used to workaround a parted bug happening if you
+  type 'set [nr] swap on'. parted refuses to set this even
+  though the help page in batch mode tells the user to do it
+  exactly that way
+  
+---
+Wed Apr 13 15:31:18 CEST 2011 - m...@suse.de
+  
+- removed fat 8+3 kernel/initrd renaming code. This is no longer
+  required when using a fat32 / vfat partition / filesystem
+- fixed kernelCheck() function: rewrote the code
+  
+---
+Wed Apr 13 15:27:30 CEST 2011 - m...@suse.de
+  
+- fixed fstab setup in ec2 format setup (bnc #687211)
+  
+---
+Tue Apr 12 23:59:22 CEST 2011 - m...@suse.de
+  
+- fixed syslinux kernel/initrd setup in resetBootBind()
+  
+---
+Tue Apr 12 23:03:08 CEST 2011 - m...@suse.de
+  
+- added syslinux to package list of JeOS images
+  
+---
+Tue Apr 12 17:27:23 CEST 2011 - m...@suse.de
+  
+- fixed partition id setup if parted is used
+  
+---
+Tue Apr 12 09:53:04 CEST 2011 - m...@suse.de
+  
+- added lvm2 to ix86 SLE11 JeOS template
+  
+---
+Mon Apr 11 16:56:01 CEST 2011 - m...@suse.de
+  
+- fixed the --lvm option. The option now adds a systemdisk
+  element and behaves the same as if the users would have
+  modified the XML accordingly
+  
+---
+Mon Apr 11 15:49:18 CEST 2011 - m...@suse.de
+  
+- make sure installBootLoader() is called for vmxboot
+  image if a root overlay filesystem structure is used
+- move resetBootBind() into installBootLoader()
+  
+---
+Mon Apr 11 12:41:27 CEST 2011 - m...@suse.de
+  
+- call setupBootPartition() only on first boot
+  
+---
+Mon Apr 11 11:48:02 CEST 2011 - m...@suse.de
+  
+- added evaluation of kiwi_ramonly element for vmx too
+- added evaluation of kiwi_ramonly element for ppc and s390 arch
+- added evaluation of kiwi_ramonly element for non LVM setup
+  
+---
+Mon Apr 11 11:01:52 CEST 2011 - m...@suse.de
+  
+- fixed subsequent mount procedure of a clicfs based image.
+  The resize2fs call has to happen in any case if the image
+  is a ramonly system
+  
+---
+Fri Apr  8 14:23:21 CEST 2011 - m...@suse.de
+  
+- v4.85 released
+  
+---
+Fri Apr  8 12:08:52 CEST 2011 - m...@suse.de
+  
+- in KIWIRoot.pm the fixupOverlayFilesOwnership() function
+  fails to quote the filaname which results in problems with
+  files/directories with spaces in their names.
+  
+---
+Thu Apr  7 11:27:01 CEST 2011 - m...@suse.de
+  
+- Added a new consistency check and unit tests to ensure that
+  config.xml files specifying an image type that requires an
+  initrd set the boot attribute on the type element.
+  
+---
+Wed Apr  6 17:12:14 CEST 2011 - mbarrin...@suse.de
+  
+  Fixing a problem with imagewriter's makefile
+  
+---
+Wed Apr  6 15:33:38 CEST 2011 - mbarrin...@suse.de
+  
+  Minor fix to the command line help output in Imagewriter
+  
+---
+Wed Apr  6 15:32:15 CEST 2011 - mbarrin...@suse.de
+  
+  Fixing Imagewriter compilation w/ HAL support enabled
+  
+---
+Wed Apr  6 15:26:01 CEST 2011 - m...@suse.de
+  
+- don't use the result of a getExecPath() call happened outside
+  of the chroot, for a command call inside the chroot. It might
+  happen that the path to the binary is different inside the
+  chroot and thus can't be found
+  
+---
+Wed Apr  6 15:20:58 CEST 2011 - mbarrin...@suse.de
+  
+  Fixing bnc#679099 - Imagewriter still requires HAL
+  
+---
+Wed 

commit squid3 for openSUSE:Factory

2011-04-14 Thread h_root

Hello community,

here is the log from the commit of package squid3 for openSUSE:Factory
checked in at Thu Apr 14 09:36:39 CEST 2011.




--- squid3/squid3.changes   2011-04-06 16:40:44.0 +0200
+++ /mounts/work_src_done/STABLE/squid3/squid3.changes  2011-04-12 
15:12:05.0 +0200
@@ -1,0 +2,18 @@
+Tue Apr 12 13:11:40 UTC 2011 - ch...@computersalat.de
+
+- rework config patch
+  o 3.1.4 - 3.1.12
+- add some comments for patches
+- sort header TAGS
+
+---
+Mon Apr 11 03:03:01 UTC 2011 - crrodrig...@opensuse.org
+
+- Allow compile without SSLv2
+  o no-sslv2 patch
+- Supress build dates in binaries.
+  o nobuilddates patch
+- Default cache storage type should be aufs in Linux
+  o update config patch
+
+---

calling whatdependson for head-i586


Old:

  squid-3.1.4-config.patch

New:

  squid-3.1.12-config.patch
  squid-3.1.12-no-sslv2.patch
  squid-3.1.12-nobuilddates.patch



Other differences:
--
++ squid3.spec ++
--- /var/tmp/diff_new_pack.oHviKQ/_old  2011-04-14 09:35:29.0 +0200
+++ /var/tmp/diff_new_pack.oHviKQ/_new  2011-04-14 09:35:29.0 +0200
@@ -22,16 +22,11 @@
 Name:   squid3
 Summary:Squid Version 3 WWW Proxy Server
 Version:3.1.12
-Release:1
+Release:3
 License:GPLv2+
-Url:http://www.squid-cache.org/Versions/v3
 Group:  Productivity/Networking/Web/Proxy
-PreReq: permissions
-Conflicts:  squid squid2 squid23 squid-beta
-Obsoletes:  squid-beta squid2
 AutoReqProv:on
-PreReq: %insserv_prereq %fillup_prereq
-PreReq: pwdutils /usr/bin/getent
+Url:http://www.squid-cache.org/Versions/v3
 Source0:
http://www.squid-cache.org/Versions/v3/3.0/squid-%{version}.tar.bz2
 #%define   squid_ldapauth_version 1.3
 #Source1:  squid_ldapauth-%{squid_ldapauth_version}.tar.bz2
@@ -52,9 +47,18 @@
 #
 #Patch0: 
http://www.squid-cache.org/Versions/v3/3.0/changesets/squid-3.0-9107.patch
 #
-Patch100:   squid-3.1.4-config.patch
+# some useful defaults for squid
+Patch100:   squid-3.1.12-config.patch
+# FIX SWAPDIR - make it a configure option
 Patch101:   squid-3.1.10-swapdir.patch
+# FIX for insecure SSLv2 - allow build without SSLv2
+Patch102:   squid-3.1.12-no-sslv2.patch
+# make build compare happy - remove build dates
+Patch103:   squid-3.1.12-nobuilddates.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+PreReq: %insserv_prereq %fillup_prereq
+PreReq: permissions
+PreReq: pwdutils /usr/bin/getent
 # needed by bootstrap.sh
 BuildRequires:  ed
 BuildRequires:  db-devel expat gcc-c++
@@ -70,6 +74,8 @@
 %endif
 Requires:   logrotate
 Provides:   http_proxy
+Conflicts:  squid squid2 squid23 squid-beta
+Obsoletes:  squid-beta squid2
 
 %description
 Squid is a caching proxy for the Web supporting HTTP, HTTPS, FTP, and
@@ -108,6 +114,8 @@
 %endif
 perl -p -i -e 's|/usr/local/bin/perl|/usr/bin/perl|' `find -name *.pl`
 chmod a-x CREDITS
+%patch102
+%patch103
 
 %build
 %if 0%{suse_version}  1010

++ squid-3.1.4-config.patch - squid-3.1.12-config.patch ++
--- squid3/squid-3.1.4-config.patch 2010-06-08 22:55:17.0 +0200
+++ /mounts/work_src_done/STABLE/squid3/squid-3.1.12-config.patch   
2011-04-12 15:12:05.0 +0200
@@ -1,17 +1,36 @@
-diff -ruN squid-3.1.4-orig/src/cf.data.pre squid-3.1.4/src/cf.data.pre
 squid-3.1.4-orig/src/cf.data.pre   2010-05-30 15:21:11.0 +0200
-+++ squid-3.1.4/src/cf.data.pre2010-06-08 21:11:17.0 +0200
-@@ -866,6 +866,9 @@
+diff -ruN squid-3.1.12-orig/src/cf.data.pre squid-3.1.12/src/cf.data.pre
+--- squid-3.1.12-orig/src/cf.data.pre  2011-04-04 03:24:06.0 +0200
 squid-3.1.12/src/cf.data.pre   2011-04-12 15:03:41.0 +0200
+@@ -915,6 +915,8 @@
+ # Adapt localnet in the ACL section to list your (internal) IP networks
+ # from where browsing should be allowed
  http_access allow localnet
++
++# Allow localhost always proxy functionality
  http_access allow localhost
  
-+# allow localhost always proxy functionality
-+http_access allow localhost
-+
  # And finally deny all other access to this proxy
- http_access deny all
+@@ -2290,6 +2292,10 @@
+   Instead, if you want Squid to use the entire disk drive,
+   subtract 20% and use that value.
+ 
++  Note on 'Mbytes': You need to consider the available RAM on the
++   machine versus the approx. 10MB RAM per 1GB of files which the
++   cache_dir index will consume. 
++
+   'L1' is the number of first-level subdirectories which
+   will be created under the 'Directory'.  The default is 16.
+ 
+@@ -2365,7 +2371,7 @@
+ NOCOMMENT_START
+ 
+ # Uncomment and adjust the following to 

commit perl-autobox for openSUSE:Factory

2011-04-14 Thread h_root

Hello community,

here is the log from the commit of package perl-autobox for openSUSE:Factory
checked in at Thu Apr 14 09:42:35 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/perl-autobox/perl-autobox.changes  
2011-04-12 13:16:58.0 +0200
@@ -0,0 +1,18 @@
+---
+Tue Apr 12 11:09:21 UTC 2011 - co...@opensuse.org
+
+- regenerate with newer cpanspec
+
+---
+Sun Apr  3 14:57:55 UTC 2011 - co...@novell.com
+
+- updated to 2.73
+   - Makefile.PL fix
+   - fix conflict with use re 'taint' (thanks, Peter Rabbitson)
+
+---
+Mon Jan 17 18:08:43 UTC 2011 - co...@novell.com
+
+- initial package 2.71
+  * created by cpanspec 1.78.03
+

calling whatdependson for head-i586


New:

  autobox-2.73.tar.gz
  perl-autobox.changes
  perl-autobox.spec



Other differences:
--
++ perl-autobox.spec ++
#
# spec file for package perl-autobox
#
# 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:   perl-autobox
Version:2.73
Release:1
License:GPL+ or Artistic
%define cpan_name autobox
Summary:call methods on native types
Url:http://search.cpan.org/dist/autobox/
Group:  Development/Libraries/Perl
Source: 
http://www.cpan.org/authors/id/C/CH/CHOCOLATE/%{cpan_name}-%{version}.tar.gz
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
BuildRequires:  perl
BuildRequires:  perl-macros
BuildRequires:  perl(ExtUtils::MakeMaker)
BuildRequires:  perl(Scope::Guard) = 0.20
Requires:   perl(Scope::Guard) = 0.20
%{perl_requires}

%description
The autobox pragma allows methods to be called on integers, floats,
strings, arrays, hashes, and code references in exactly the same manner as
blessed references.

The autoboxing is transparent: boxed values are not blessed into their
(user-defined) implementation class (unless the method elects to bestow
such a blessing) - they simply use its methods as though they are.

The classes (packages) into which the native types are boxed are fully
configurable. By default, a method invoked on a non-object is assumed to be
defined in a class whose name corresponds to the 'ref()' type of that value
- or SCALAR if the value is a non-reference.

%prep
%setup -q -n %{cpan_name}-%{version}

%build
%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE=%{optflags}
%{__make} %{?_smp_mflags}

%check
%{__make} test

%install
%perl_make_install
%perl_process_packlist
%perl_gen_filelist

%clean
%{__rm} -rf %{buildroot}

%files -f %{name}.files
%defattr(-,root,root,755)
%doc %attr(644,-,-) 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



commit perl-HTML-RewriteAttributes for openSUSE:Factory

2011-04-14 Thread h_root

Hello community,

here is the log from the commit of package perl-HTML-RewriteAttributes for 
openSUSE:Factory
checked in at Thu Apr 14 09:46:15 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ 
/mounts/work_src_done/STABLE/perl-HTML-RewriteAttributes/perl-HTML-RewriteAttributes.changes
2010-12-01 14:46:31.0 +0100
@@ -0,0 +1,16 @@
+---
+Wed Dec  1 13:32:51 UTC 2010 - co...@novell.com
+
+- switch to perl_requires macro
+
+---
+Sat Sep  4 19:46:44 UTC 2010 - ch...@computersalat.de
+
+- recreated by cpanspec 1.78
+- noarch pkg
+
+---
+Sat Dec 26 19:12:20 UTC 2009 - l...@linux-schulserver.de
+
+- initial version 0.03
+

calling whatdependson for head-i586


New:

  HTML-RewriteAttributes-0.03.tar.bz2
  perl-HTML-RewriteAttributes.changes
  perl-HTML-RewriteAttributes.spec



Other differences:
--
++ perl-HTML-RewriteAttributes.spec ++
#
# spec file for package perl-HTML-RewriteAttributes
#
# 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/
#

# norootforbuild


Name:   perl-HTML-RewriteAttributes
%define cpan_name HTML-RewriteAttributes
Summary:Concise attribute rewriting
Version:0.03
Release:1
License:GPL+ or Artistic
Group:  Development/Libraries/Perl
Url:http://search.cpan.org/dist/HTML-RewriteAttributes/
#Source: 
http://www.cpan.org/modules/by-module/HTML/HTML-RewriteAttributes-%{version}.tar.gz
Source: %{cpan_name}-%{version}.tar.bz2
BuildArch:  noarch
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
%{perl_requires}
BuildRequires:  perl
BuildRequires:  perl-macros
BuildRequires:  perl(HTML::Entities)
BuildRequires:  perl(HTML::Parser)
BuildRequires:  perl(HTML::Tagset)
BuildRequires:  perl(URI)
Requires:   perl(HTML::Entities)
Requires:   perl(HTML::Parser)
Requires:   perl(HTML::Tagset)
Requires:   perl(URI)

%description
HTML::RewriteAttributes is designed for simple yet powerful HTML attribute
rewriting.

You simply specify a callback to run for each attribute and we do the rest for
you.

This module is designed to be subclassable to make handling special cases
eaiser. See the source for methods you can override.

Author:
---
Shawn M Moore, sar...@bestpractical.com

%prep
%setup -q -n %{cpan_name}-%{version}

%build
%{__perl} Makefile.PL INSTALLDIRS=vendor
%{__make} %{?_smp_mflags}

%check
%{__make} test

%install
%perl_make_install
# do not perl_process_packlist (noarch)
# remove .packlist file
%{__rm} -rf $RPM_BUILD_ROOT%perl_vendorarch
# remove perllocal.pod file
%{__rm} -rf $RPM_BUILD_ROOT%perl_archlib
%perl_gen_filelist

%clean
%{__rm} -rf $RPM_BUILD_ROOT

%files -f %{name}.files
%defattr(-,root,root,-)
%doc Changes

%changelog





Remember to have fun...

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



commit perl-File-chdir for openSUSE:Factory

2011-04-14 Thread h_root

Hello community,

here is the log from the commit of package perl-File-chdir for openSUSE:Factory
checked in at Thu Apr 14 10:10:21 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/perl-File-chdir/perl-File-chdir.changes
2011-01-21 21:18:04.0 +0100
@@ -0,0 +1,6 @@
+---
+Fri Jan 21 20:18:00 UTC 2011 - co...@novell.com
+
+- initial package 0.1004
+  * created by cpanspec 1.78.03
+

calling whatdependson for head-i586


New:

  File-chdir-0.1004.tar.bz2
  perl-File-chdir.changes
  perl-File-chdir.spec



Other differences:
--
++ perl-File-chdir.spec ++
#
# spec file for package perl-File-chdir
#
# 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:   perl-File-chdir
Version:0.1004
Release:1
License:GPL+ or Artistic
%define cpan_name File-chdir
Summary:a more sensible way to change directories
Url:http://search.cpan.org/dist/File-chdir/
Group:  Development/Libraries/Perl
#Source: 
http://www.cpan.org/authors/id/D/DA/DAGOLDEN/File-chdir-%{version}.tar.gz
Source: %{cpan_name}-%{version}.tar.bz2
BuildRequires:  perl(Cwd) = 3.16
BuildRequires:  perl(File::Spec) = 3.27
BuildRequires:  perl
BuildRequires:  perl-macros
BuildRequires:  perl(Module::Build)
Requires:   perl(Cwd) = 3.16
Requires:   perl(File::Spec) = 3.27
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
BuildArch:  noarch
%{perl_requires}

%description
Perl's 'chdir()' has the unfortunate problem of being very, very, very
global. If any part of your program calls 'chdir()' or if any library you
use calls 'chdir()', it changes the current working directory for the
*whole* program.

This sucks.

File::chdir gives you an alternative, '$CWD' and '@CWD'. These two
variables combine all the power of 'chdir()', the File::Spec manpage and
the Cwd manpage.

%prep
%setup -q -n %{cpan_name}-%{version}

%build
%{__perl} Build.PL installdirs=vendor
./Build build flags=%{?_smp_mflags}

%check
./Build test

%install
./Build install destdir=%{buildroot} create_packlist=0
%perl_gen_filelist

%clean
%{__rm} -rf %{buildroot}

%files -f %{name}.files
%defattr(644,root,root,755)
%doc Changes examples LICENSE README xt

%changelog





Remember to have fun...

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



commit icoutils for openSUSE:Factory

2011-04-14 Thread h_root

Hello community,

here is the log from the commit of package icoutils for openSUSE:Factory
checked in at Thu Apr 14 10:22:52 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/icoutils/icoutils.changes  2011-04-11 
13:00:26.0 +0200
@@ -0,0 +1,41 @@
+---
+Mon Apr 11 10:58:07 UTC 2011 - lazy.k...@opensuse.org
+
+- build requires libpng12-compat-devel for oS  11.2
+- added COPYING
+
+---
+Sun Sep  5 21:51:45 UTC 2010 - lazy.kent.s...@gmail.com
+
+- removed unnecessary build dependences
+- marked manpages as docs
+- minor spec formatting
+
+---
+Mon Apr 12 07:12:52 UTC 2010 - lazy.kent.s...@gmail.com
+
+- update to 0.29.1
+- added new author
+
+---
+Wed Oct 21 00:00:00 UTC 2009 - lazy.kent.s...@gmail.com
+
+- update to 0.28.0
+  * license changed to GPLv3+
+
+---
+Thu Oct 15 00:00:00 UTC 2009 - lazy.kent.s...@gmail.com
+
+- spec-file corrected
+
+---
+Fri Aug 14 00:00:00 UTC 2009 - lazy.kent.s...@gmail.com
+
+- update to 0.27.0
+  * minor fixes
+
+---
+Sun Mar  1 00:00:00 UTC 2009 - lazy.kent.s...@gmail.com
+
+- spec-file corrected
+

calling whatdependson for head-i586


New:

  icoutils-0.29.1.tar.bz2
  icoutils.changes
  icoutils.spec



Other differences:
--
++ icoutils.spec ++
#
# spec file for package icoutils
#
# 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:   icoutils
Version:0.29.1
Release:1
License:GPLv3+
Summary:Extracting and Converting Microsoft Icon and Cursor Files
Url:http://www.nongnu.org/icoutils/
Group:  Productivity/Graphics/Other
Source0:%{name}-%{version}.tar.bz2
%if 0%{suse_version}  1130
BuildRequires:  libpng-devel
%else
BuildRequires:  libpng12-compat-devel
%endif
BuildRequires:  zlib-devel
BuildRoot:  %{_tmppath}/%{name}-%{version}-build

%description
The icoutils are a set of programs for extracting and converting images
in Microsoft Windows icon and cursor files. These files usually have the
extension .ico or .cur, but they can also be embedded in executables or
libraries (.dll-files).



Authors:

Frank Richter frank.rich...@gmail.com
Oskar Liljeblad os...@osk.mine.nu

%prep
%setup -q

%build
# Don't compile strange locales en@boldquot and en@quot.
# Otherwise, remove '--disable-nls'.
%configure --disable-nls
%__make %{?_smp_mflags}

%install
%makeinstall

%clean
%{?buildroot:%__rm -rf %{buildroot}}

%files
%defattr(-,root,root,-)
%doc AUTHORS ChangeLog COPYING NEWS README TODO
%doc %{_mandir}/man?/*
%{_bindir}/*

%changelog





Remember to have fun...

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



commit perl-Declare-Constraints-Simple for openSUSE:Factory

2011-04-14 Thread h_root

Hello community,

here is the log from the commit of package perl-Declare-Constraints-Simple for 
openSUSE:Factory
checked in at Thu Apr 14 10:28:39 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ 
/mounts/work_src_done/STABLE/perl-Declare-Constraints-Simple/perl-Declare-Constraints-Simple.changes
2011-02-04 23:45:50.0 +0100
@@ -0,0 +1,16 @@
+---
+Fri Feb  4 22:44:51 UTC 2011 - ch...@computersalat.de
+
+- recreated by cpanspec 1.78.03
+- noarch pkg
+
+---
+Wed Dec  1 11:45:00 UTC 2010 - co...@novell.com
+
+- switch to perl_requires macro
+
+---
+Sat Dec 26 20:32:30 UTC 2009 - l...@linux-schulserver.de
+
+- initial version 0.03
+

calling whatdependson for head-i586


New:

  Declare-Constraints-Simple-0.03.tar.bz2
  perl-Declare-Constraints-Simple.changes
  perl-Declare-Constraints-Simple.spec



Other differences:
--
++ perl-Declare-Constraints-Simple.spec ++
#
# spec file for package perl-Declare-Constraints-Simple
#
# 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/
#


%bcond_with pod

Name:   perl-Declare-Constraints-Simple
%define cpan_name Declare-Constraints-Simple
Summary:Declarative Validation of Data Structures
Version:0.03
Release:3
License:GPL+ or Artistic
Group:  Development/Libraries/Perl
Url:http://search.cpan.org/dist/Declare-Constraints-Simple/
#Source: 
http://www.cpan.org/authors/id/P/PH/PHAYLON/Declare-Constraints-Simple-%{version}.tar.gz
Source: %{cpan_name}-%{version}.tar.bz2
BuildArch:  noarch
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
BuildRequires:  perl
BuildRequires:  perl-macros
BuildRequires:  perl(Test::More)
BuildRequires:  perl(aliased)
BuildRequires:  perl(Carp::Clan)
BuildRequires:  perl(Class::Inspector)
BuildRequires:  perl(Scalar::Util)
%if 0%{?with pod}
BuildRequires:  perl(Test::Pod) = 1.00
BuildRequires:  perl(Test::Pod::Coverage) = 1.00
%endif
Requires:   perl(aliased)
Requires:   perl(Carp::Clan)
Requires:   perl(Class::Inspector)
Requires:   perl(Scalar::Util)
%{perl_requires}

%description
The main purpose of this module is to provide an easy way to build a
profile to validate a data structure. It does this by giving you a set of
declarative keywords in the importing namespace.

%prep
%setup -q -n %{cpan_name}-%{version}

%build
%{__perl} Makefile.PL INSTALLDIRS=vendor
%{__make} %{?_smp_mflags}

%check
%{__make} test

%install
%perl_make_install
%perl_process_packlist
%perl_gen_filelist

%clean
%{__rm} -rf %{buildroot}

%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



commit arpwatch-ethercodes for openSUSE:Factory

2011-04-14 Thread h_root

Hello community,

here is the log from the commit of package arpwatch-ethercodes for 
openSUSE:Factory
checked in at Thu Apr 14 11:01:13 CEST 2011.




--- AUTO/all/arpwatch-ethercodes/arpwatch-ethercodes.changes2011-04-07 
09:40:07.0 +0200
+++ 
/mounts/work_src_done/STABLE/arpwatch-ethercodes/arpwatch-ethercodes.changes
2011-04-14 10:40:08.0 +0200
@@ -2 +2 @@
-Thu Apr  7 09:40:07 CEST 2011 - autobu...@suse.de
+Thu Apr 14 10:40:08 CEST 2011 - autobu...@suse.de
@@ -4 +4 @@
-- automated update on 2011-04-07
+- automated update on 2011-04-14

calling whatdependson for head-i586




Other differences:
--
++ arpwatch-ethercodes.spec ++
--- /var/tmp/diff_new_pack.VmdkE8/_old  2011-04-14 11:00:59.0 +0200
+++ /var/tmp/diff_new_pack.VmdkE8/_new  2011-04-14 11:00:59.0 +0200
@@ -25,7 +25,7 @@
 Group:  Productivity/Networking/Diagnostic
 AutoReqProv:on
 Summary:Ethercodes Data for arpwatch
-Version:2011.4.7
+Version:2011.4.14
 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.VmdkE8/_old  2011-04-14 11:01:00.0 +0200
+++ /var/tmp/diff_new_pack.VmdkE8/_new  2011-04-14 11:01:00.0 +0200
@@ -3541,11 +3541,10 @@
UK
UNITED KINGDOM
 
-00-02-20   (hex)   Canon Aptex, Inc.
-000220 (base 16)   Canon Aptex, Inc.
-   5-15, Shimomaruko 2-Chrome, Ota-ku
-   Tokyo 156-0092
-   JAPAN
+00-02-20   (hex)   CANON FINETECH INC.
+000220 (base 16)   CANON FINETECH INC.
+   717, Yaguchi, Misato-shi,
+   Saitama  341-8527
JAPAN
 
 00-02-21   (hex)   DSP Application, Ltd.
@@ -65325,8 +65324,8 @@
RG7 4QW - UNITED KINGDOM
UNITED KINGDOM
 
-00-40-20   (hex)   Tyco Electronics (UK) Ltd
-004020 (base 16)   Tyco Electronics (UK) Ltd
+00-40-20   (hex)   TE Connectivity Ltd.
+004020 (base 16)   TE Connectivity Ltd.
Kinmel Park
Bodelwyddan RHYL LL18 5TZ
UNITED KINGDOM
@@ -81995,6 +81994,12 @@
Xian Shaanxi 710075
CHINA
 
+10-45-BE   (hex)   Norphonic AS
+1045BE (base 16)   Norphonic AS
+   Fabrikkgaten 10
+   Bergen  5059
+   NORWAY
+
 10-45-F8   (hex)   LNT-Automation GmbH
 1045F8 (base 16)   LNT-Automation GmbH
Hans-Paul-Kaysser-Stra�e 1
@@ -82476,6 +82481,13 @@
Shanghai  201613
CHINA
 
+18-F6-50   (hex)   Multimedia Pacific Limited
+18F650 (base 16)   Multimedia Pacific Limited
+   1 Matheson Street, Shell Tower 29F/12
+   Time Square, Causeway Bay
+   00
+   HONG KONG
+
 18-FC-9F   (hex)   Changhe Electronics Co., Ltd.
 18FC9F (base 16)   Changhe Electronics Co., Ltd.
6th Floor, Building B, Dajiahao Square, Yu��an 
1st Road, Bao��an, 
@@ -83070,6 +83082,12 @@
Abingdon  OX14 4RY
UNITED KINGDOM
 
+28-40-1A   (hex)   C8 MediSensors, Inc.
+28401A (base 16)   C8 MediSensors, Inc.
+   727 University Ave
+   Los Gatos CA 95032
+   UNITED STATES
+
 28-48-46   (hex)   GridCentric Inc.
 284846 (base 16)   GridCentric Inc.
350 Bloor St. E
@@ -84037,6 +84055,12 @@
Sydney NSW 2075
AUSTRALIA
 
+3C-BD-D8   (hex)   LG ELECTRONICS INC
+3CBDD8 (base 16)   LG ELECTRONICS INC
+   19-1, CHEONGHO-RI, JINWI-MYEON
+   PYEONGTAEK GYEONGGI-DO 451-713
+   KOREA, REPUBLIC OF
+
 3C-C0-C6   (hex)   damp;b audiotechnik GmbH
 3CC0C6 (base 16)   damp;b audiotechnik GmbH
Eugen Adolff Str 134
@@ -84290,6 +84314,13 @@
Zapopan Jalisco 44130
MEXICO
 
+40-B3-FC   

commit python-virtualenv for openSUSE:Factory

2011-04-14 Thread h_root

Hello community,

here is the log from the commit of package python-virtualenv for 
openSUSE:Factory
checked in at Thu Apr 14 13:07:24 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/python-virtualenv/python-virtualenv.changes
2011-04-13 20:37:20.0 +0200
@@ -0,0 +1,104 @@
+---
+Wed Apr 13 18:25:47 UTC 2011 - alexan...@exatati.com.br
+
+- Update to 1.6:
+  * Added Python 3 support! Huge thanks to Vinay Sajip and Vitaly Babiy.
+  * Fixed creation of virtualenvs on Mac OS X when standard library modules
+(readline) are installed outside the standard library.
+  * Updated bundled pip to 1.0.
+- Regenerate spec file with py2pack.
+
+---
+Sun Sep 19 23:39:18 UTC 2010 - alexan...@exatati.com.br
+
+- Update to 1.5.1:
+  - Added ``_weakrefset`` requirement for Python 2.7.1.
+  - Fixed Windows regression in 1.5.
+
+---
+Wed Sep 15 02:36:21 UTC 2010 - alexan...@exatati.com.br
+
+- Update to 1.5:
+  - Include pip 0.8.1.
+  - Add support for PyPy.
+  - Uses a proper temporary dir when installing environment requirements.
+  - Add --prompt option to be able to override the default prompt prefix.
+  - Fix an issue with --relocatable on Windows.
+  - Fix issue with installing the wrong version of distribute.
+  - Add fish and csh activate scripts.
+
+---
+Fri May 28 01:50:35 UTC 2010 - alexan...@exatati.com.br
+
+- Update to 1.4.9:
+  * Include pip 0.7.2.
+
+---
+Fri Apr 23 13:01:48 UTC 2010 - alexan...@exatati.com.br
+
+- Update to 1.4.8:
+  * Fix for Mac OS X Framework builds that use
+``--universal-archs=intel``
+  * Fix ``activate_this.py`` on Windows.
+  * Allow ``$PYTHONHOME`` to be set, so long as you use ``source
+bin/activate`` it will get unset; if you leave it set and do not
+activate the environment it will still break the environment.
+  * Include pip 0.7.1.
+
+---
+Mon Apr 19 02:00:28 UTC 2010 - alexan...@exatati.com.br
+
+- Update to 1.4.7:
+  * Include pip 0.7.
+
+---
+Wed Mar 31 22:56:52 UTC 2010 - alexan...@exatati.com.br
+
+- Update to 1.4.6
+  * Allow ``activate.sh`` to skip updating the prompt (by setting
+``$VIRTUAL_ENV_DISABLE_PROMPT``).
+- Spec file cleaned with spec-cleaner.
+
+---
+Mon Mar 15 01:24:36 UTC 2010 - alexan...@exatati.com.br
+
+- Added python-setuptools as Requires;
+- Generated changes file from spec file;
+- Removed old tarballs;
+- Update to 1.4.5
+  - Include pip 0.6.3
+- Aditional changes from 1.4.4:
+  - Include pip 0.6.2 and Distribute 0.6.10
+  - Create the virtualenv script even when Setuptools isn’t installed
+  - Fix problem with virtualenv --relocate when bin/ has subdirectories
+(e.g., bin/.svn/); from Alan Franzoni.
+  - If you set $VIRTUALENV_USE_DISTRIBUTE then virtualenv will use
+Distribute by default (so you don’t have to remember to use --distribute).
+
+---
+Sat Nov 21 00:00:00 UTC 2009 - cfarrell1...@gmail.com
+
+- 1.4.3
+ * Include pip 0.6.1
+
+---
+Mon Nov  9 00:00:00 UTC 2009 - cfarrell1...@gmail.com
+
+- Update to 1.4
+  * Updated setuptools to 0.6c11
+  * Added the --distribute option
+  * Fixed packaging problem of support-files
+
+
+---
+Thu Mar  3 00:00:00 UTC 2009 - cfarrell1...@gmail.com
+
+- Update to 1.3.2
+  - Remove the [install] prefix = ... setting from virtualenv distutils.cfg as 
has been causing problems for a lot of people, in rather obscure ways.
+  - If you use a boot script it will attempt to import virtualenv and find a 
pre-downloaded Setuptools egg using that.
+  - Added platform-specific paths, like /usr/lib/pythonX.Y/plat-linux2
+
+---
+Wed Nov  5 00:00:00 UTC 2008 - cfarrell1...@gmail.com
+
+- Initial import and build - 1.3

calling whatdependson for head-i586


New:

  python-virtualenv.changes
  python-virtualenv.spec
  virtualenv-1.6.tar.bz2



Other differences:
--
++ python-virtualenv.spec ++
#
# spec file for package python-virtualenv
#
# 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. 

commit krb5 for openSUSE:11.2

2011-04-14 Thread h_root

Hello community,

here is the log from the commit of package krb5 for openSUSE:11.2
checked in at Thu Apr 14 13:57:10 CEST 2011.




--- old-versions/11.2/UPDATES/all/krb5/krb5-mini.changes2011-03-16 
08:57:38.0 +0100
+++ 11.2/krb5/krb5-mini.changes 2011-04-14 13:56:32.765012000 +0200
@@ -1,0 +2,7 @@
+Thu Apr 14 11:16:16 CEST 2011 - m...@suse.de
+
+- fix kadmind invalid pointer free()
+  (MITKRB5-SA-2011-004, bnc#687469)
+  CVE-2011-0285
+
+---
krb5.changes: same change

calling whatdependson for 11.2-i586


New:

  krb5-1.7-MITKRB5-SA-2011-004.dif



Other differences:
--
++ krb5-doc.spec ++
--- /var/tmp/diff_new_pack.60AwLE/_old  2011-04-14 13:56:53.0 +0200
+++ /var/tmp/diff_new_pack.60AwLE/_new  2011-04-14 13:56:53.0 +0200
@@ -21,7 +21,7 @@
 Name:   krb5-doc
 BuildRequires:  ghostscript-library latex2html texlive
 Version:1.7
-Release:6.RELEASE12
+Release:6.RELEASE13
 %define srcRoot krb5-1.7
 Summary:MIT Kerberos5 Implementation--Documentation
 License:MIT License (or similar)

++ krb5-mini.spec ++
--- /var/tmp/diff_new_pack.60AwLE/_old  2011-04-14 13:56:53.0 +0200
+++ /var/tmp/diff_new_pack.60AwLE/_new  2011-04-14 13:56:53.0 +0200
@@ -28,7 +28,7 @@
 BuildRequires:  bison libcom_err-devel ncurses-devel
 BuildRequires:  keyutils keyutils-devel
 Version:1.7
-Release:6.RELEASE10
+Release:6.RELEASE11
 %if ! 0%{?build_mini}
 BuildRequires:  libopenssl-devel openldap2-devel
 # bug437293
@@ -69,6 +69,7 @@
 Patch55:krb5-1.7-MITKRB5-SA-2011-001.dif
 Patch56:krb5-1.7-MITKRB5-SA-2011-002.dif
 Patch57:krb5-1.7-MITKRB5-SA-2011-003.dif
+Patch58:krb5-1.7-MITKRB5-SA-2011-004.dif
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 PreReq: mktemp, grep, /bin/touch, coreutils
 PreReq: %insserv_prereq %fillup_prereq 
@@ -276,6 +277,7 @@
 %patch55 -p1
 %patch56 -p1
 %patch57 -p1
+%patch58 -p1
 # Rename the man pages so that they'll get generated correctly.
 pushd src
 cat %{SOURCE10} | while read manpage ; do

++ krb5.spec ++
--- /var/tmp/diff_new_pack.60AwLE/_old  2011-04-14 13:56:53.0 +0200
+++ /var/tmp/diff_new_pack.60AwLE/_new  2011-04-14 13:56:53.0 +0200
@@ -28,7 +28,7 @@
 BuildRequires:  bison libcom_err-devel ncurses-devel
 BuildRequires:  keyutils keyutils-devel
 Version:1.7
-Release:6.RELEASE12
+Release:6.RELEASE14
 %if ! 0%{?build_mini}
 BuildRequires:  libopenssl-devel openldap2-devel
 # bug437293
@@ -69,6 +69,7 @@
 Patch55:krb5-1.7-MITKRB5-SA-2011-001.dif
 Patch56:krb5-1.7-MITKRB5-SA-2011-002.dif
 Patch57:krb5-1.7-MITKRB5-SA-2011-003.dif
+Patch58:krb5-1.7-MITKRB5-SA-2011-004.dif
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 PreReq: mktemp, grep, /bin/touch, coreutils
 PreReq: %insserv_prereq %fillup_prereq 
@@ -276,6 +277,7 @@
 %patch55 -p1
 %patch56 -p1
 %patch57 -p1
+%patch58 -p1
 # Rename the man pages so that they'll get generated correctly.
 pushd src
 cat %{SOURCE10} | while read manpage ; do

++ krb5-1.7-MITKRB5-SA-2011-004.dif ++
Index: krb5-1.7/src/kadmin/server/network.c
===
--- krb5-1.7.orig/src/kadmin/server/network.c
+++ krb5-1.7/src/kadmin/server/network.c
@@ -1351,6 +1351,10 @@ cleanup:
 if (local_kaddrs != NULL)
krb5_free_addresses(server_handle-context, local_kaddrs);
 
+if ((*response)-data == NULL) {
+free(*response);
+*response = NULL;
+}
 krb5_kt_close(server_handle-context, kt);
 
 return ret;
Index: krb5-1.7/src/kadmin/server/schpw.c
===
--- krb5-1.7.orig/src/kadmin/server/schpw.c
+++ krb5-1.7/src/kadmin/server/schpw.c
@@ -73,8 +73,13 @@ process_chpw_request(context, server_han
 plen = (*ptr++  0xff);
 plen = (plen8) | (*ptr++  0xff);
 
-if (plen != req-length)
-   return(KRB5KRB_AP_ERR_MODIFIED);
+if (plen != req-length) {
+ret = KRB5KRB_AP_ERR_MODIFIED;
+numresult = KRB5_KPASSWD_MALFORMED;
+strlcpy(strresult, Request length was inconsistent,
+sizeof(strresult));
+goto chpwfail;
+}
 
 /* verify version number */
 





Remember to have fun...

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



commit net-snmp for openSUSE:Factory

2011-04-14 Thread h_root

Hello community,

here is the log from the commit of package net-snmp for openSUSE:Factory
checked in at Thu Apr 14 14:33:04 CEST 2011.




--- net-snmp/net-snmp.changes   2011-01-04 12:34:47.0 +0100
+++ /mounts/work_src_done/STABLE/net-snmp/net-snmp.changes  2011-04-13 
19:57:20.0 +0200
@@ -1,0 +2,10 @@
+Wed Apr 13 17:30:28 UTC 2011 - lchiqui...@novell.com
+
+- add JFS and XFS to the list of known file systems (bnc#687327)
+
+---
+Mon Mar 28 18:53:16 UTC 2011 - lchiqui...@novell.com
+
+- update upstream patches from branch V5-6-patches to 20110328
+
+---

calling whatdependson for head-i586


Old:

  net-snmp-5.6.0-net-snmp-config-headercheck.patch
  net-snmp-5.6.1-upstream-20110104.patch.bz2

New:

  net-snmp-5.6.1-net-snmp-config-headercheck.patch
  net-snmp-5.6.1-recognize-jfs-and-xfs.patch
  net-snmp-5.6.1-upstream-20110328.patch.bz2



Other differences:
--
++ net-snmp.spec ++
--- /var/tmp/diff_new_pack.SZ7xDI/_old  2011-04-14 14:32:09.0 +0200
+++ /var/tmp/diff_new_pack.SZ7xDI/_new  2011-04-14 14:32:09.0 +0200
@@ -1,5 +1,5 @@
 #
-# spec file for package net-snmp (Version 5.6.1)
+# spec file for package net-snmp
 #
 # Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
@@ -28,7 +28,7 @@
 
 Name:   net-snmp
 Version:5.6.1
-Release:1
+Release:6
 License:BSD3c(or similar) ; MIT License (or similar)
 Group:  Productivity/Networking/Other
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -55,15 +55,16 @@
 Source7:net-snmp.sysconfig
 Source8:net-snmp-rpmlintrc
 Source9:baselibs.conf
-Patch0: net-snmp-5.6.1-upstream-20110104.patch.bz2
+Patch0: net-snmp-5.6.1-upstream-20110328.patch.bz2
 # unused patch atm
 Patch1: net-snmp-5.5.0-socket-path.patch
 Patch2: net-snmp-5.5.0-testing-empty-arptable.patch
 Patch3: net-snmp-5.6.0-pie.patch
-Patch5: net-snmp-5.6.0-net-snmp-config-headercheck.patch
+Patch5: net-snmp-5.6.1-net-snmp-config-headercheck.patch
 Patch6: net-snmp-5.5.0-perl-tk-warning.patch
 Patch7: net-snmp-5.5.0-velocity-mib.patch
 Patch9: net-snmp-5.6.0-enable-hrh-filesys.patch
+Patch10:net-snmp-5.6.1-recognize-jfs-and-xfs.patch
 #
 Summary:SNMP Daemon
 
@@ -206,6 +207,7 @@
 %patch6 -p1
 %patch7 -p1
 %patch9 -p1
+%patch10 -p1
 
 %build
 MIBS=misc/ipfwacc ucd-snmp/diskio etherlike-mib rmon-mib velocity smux \

++ net-snmp-5.6.0-net-snmp-config-headercheck.patch - 
net-snmp-5.6.1-net-snmp-config-headercheck.patch ++
--- net-snmp/net-snmp-5.6.0-net-snmp-config-headercheck.patch   2010-10-20 
03:09:58.0 +0200
+++ 
/mounts/work_src_done/STABLE/net-snmp/net-snmp-5.6.1-net-snmp-config-headercheck.patch
  2011-03-28 22:37:52.0 +0200
@@ -1,7 +1,7 @@
-Index: net-snmp-5.6/net-snmp-config.in
+Index: net-snmp-5.6.1/net-snmp-config.in
 ===
 net-snmp-5.6.orig/net-snmp-config.in
-+++ net-snmp-5.6/net-snmp-config.in
+--- net-snmp-5.6.1.orig/net-snmp-config.in
 net-snmp-5.6.1/net-snmp-config.in
 @@ -41,6 +41,14 @@ count()
  echo $#
  }
@@ -17,7 +17,7 @@
  prefix=@prefix@
  exec_prefix=@exec_prefix@
  includedir=@includedir@
-@@ -127,9 +135,11 @@ else
+@@ -138,9 +146,11 @@ else
;;
   compile
  --base-cflags)
@@ -29,7 +29,7 @@
echo @CFLAGS@ @DEVFLAGS@ @CPPFLAGS@ -I. -I${NSC_INCLUDEDIR}
;;
  --srcdir)
-@@ -140,6 +150,7 @@ else
+@@ -151,6 +161,7 @@ else
echo $NSC_LIBDIR
;;
  --ldflags|--ld*)
@@ -37,34 +37,34 @@
echo $NSC_LDFLAGS
;;
  --build-lib-dirs)
-@@ -177,29 +188,37 @@ else
+@@ -188,29 +199,37 @@ else
   client lib
  --libs)
# use this one == --netsnmp-libs + --external-libs
 +  check_devel_files
-   echo $NSC_LDFLAGS $NSC_LIBDIR -lnetsnmp $NSC_LIBS $NSC_LNETSNMPLIBS
+   echo $NSC_LDFLAGS $NSC_LIBDIR $NSC_SNMPLIBS $NSC_LIBS
;;
  --netsnmp-libs)
 +  check_devel_files
-   echo $NSC_LIBDIR -lnetsnmp
+   echo $NSC_LIBDIR $NSC_BASE_SNMP_LIBS
;;
  --external-libs)
 +  check_devel_files
-   echo $NSC_LDFLAGS $NSC_LIBS $NSC_LNETSNMPLIBS
+   echo $NSC_LDFLAGS $NSC_LNETSNMPLIBS $NSC_LIBS
;;
   agent lib
  --base-agent-libs)
 +  check_devel_files
-   echo $NSC_BASE_AGENT_LIBS $NSC_LNETSNMPLIBS
+   echo $NSC_BASE_AGENT_LIBS
;;
  --base-subagent-libs)
 +  check_devel_files
echo $NSC_BASE_SUBAGENT_LIBS
;;
  

commit sffview for openSUSE:Factory

2011-04-14 Thread h_root

Hello community,

here is the log from the commit of package sffview for openSUSE:Factory
checked in at Thu Apr 14 14:51:36 CEST 2011.




--- sffview/sffview.changes 2010-12-29 15:44:54.0 +0100
+++ sffview/sffview.changes 2011-01-21 13:52:43.0 +0100
@@ -1,0 +2,5 @@
+Fri Jan 21 13:52:17 CET 2011 - sbra...@suse.cz
+
+- Fixed build for older distributions.
+
+---

calling whatdependson for head-i586




Other differences:
--
++ sffview.spec ++
--- /var/tmp/diff_new_pack.SqmJNp/_old  2011-04-14 14:50:14.0 +0200
+++ /var/tmp/diff_new_pack.SqmJNp/_new  2011-04-14 14:50:14.0 +0200
@@ -19,35 +19,42 @@
 
 
 Name:   sffview
-BuildRequires:  SDL-devel boost-devel gcc-c++ libtiff-devel 
update-desktop-files wxWidgets-devel xorg-x11
+BuildRequires:  SDL-devel boost-devel gcc-c++ libtiff-devel 
update-desktop-files xorg-x11
+%if %suse_version  1130
+BuildRequires:  wxWidgets-devel
+%else
+BuildRequires:  wxGTK-devel
+%endif
 License:MIT License (or similar)
 Group:  Hardware/ISDN
 AutoReqProv:on
 Version:0.4
-Release:260
+Release:265
 Summary:Simple viewer for Structured Fax Files (.sff) used by ISDN 
applications
 Source: %{name}-%{version}.tar.bz2
 Url:http://sfftools.sourceforge.net/
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Patch0: %{name}-%{version}.diff
 Patch1: %{name}-gcc43.diff
+%if %suse_version  1130
 %define _use_internal_dependency_generator 0
 %define __find_requires %wx_requires
+%endif
 
 %description
 The CAPI interface for programming ISDN hardware expects and gives you
 faxes in the Structured Fax File (SFF) format.
 
 SffView is a viewer for SFF-files. SffView is written in C++ using the
-wxWindows/wxGTK toolkit and is therefore available for Linux and
-Windows (wxWindows is a platform independent toolkit and wxGTK is a
-unix implementation based on GTK+, see wxWindows homepage).
+wxWidgets/wxGTK toolkit and is therefore available for Linux and
+Windows (wxWidgets is a platform independent toolkit and wxGTK is a
+unix implementation based on GTK+, see wxWidgets homepage).
 
 
 
 Authors:
 
-Peter Sch�fer
+Peter Schäfer
 
 %prep
 %setup






Remember to have fun...

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



commit python-pylint for openSUSE:Factory

2011-04-14 Thread h_root

Hello community,

here is the log from the commit of package python-pylint for openSUSE:Factory
checked in at Thu Apr 14 15:02:04 CEST 2011.




--- python-pylint/python-pylint.changes 2010-12-01 22:31:39.0 +0100
+++ python-pylint/python-pylint.changes 2011-04-11 22:10:13.0 +0200
@@ -1,0 +2,31 @@
+Mon Apr 11 21:45:30 CEST 2011 - h...@urpla.net
+
+- fix build
+- update to 0.23.0
+   * documentation update, add manpages
+   * several performance improvements
+   * finalize python3 support
+   * new W0106 warning 'Expression %s is assigned to nothing'
+   * drop E0501 and E0502 messages about wrong source encoding: not anymore
+ interesting since it's a syntax error for python = 2.5 and we now only
+ support this python version and above.
+   * don't emit W0221 or W0222 when methods as variable arguments (eg *arg
+ and/or **args). Patch submitted by Charles Duffy.
+
+---
+Fri Jan  7 12:47:47 CET 2011 - h...@urpla.net
+
+- Update to 0.22.0:
+   * python versions: minimal python3.x support; drop python  2.5 support
+
+  - 2010-10-27  --  0.21.4
+* fix #48066: pylint crashes when redirecting output containing non-ascii 
characters
+* fix #19799: pylint -blah exit with status 2
+* update documentation
+
+   - 2010-09-28  --  0.21.3
+* restored python 2.3 compatibility. Along with logilab-astng
+  0.21.3 and logilab-common 0.52, this will much probably be the
+  latest release supporting python  2.5.
+
+---

calling whatdependson for head-i586


Old:

  pylint-0.21.2.tar.bz2

New:

  pylint-0.23.0.tar.bz2



Other differences:
--
++ python-pylint.spec ++
--- /var/tmp/diff_new_pack.8lnGfL/_old  2011-04-14 15:00:56.0 +0200
+++ /var/tmp/diff_new_pack.8lnGfL/_new  2011-04-14 15:00:56.0 +0200
@@ -18,8 +18,8 @@
 
 
 Name:   python-pylint
-Version:0.21.2
-Release:2
+Version:0.23.0
+Release:1
 License:GPLv2+
 Summary:Syntax and style checker for Python code
 Url:http://www.logilab.org/projects/pylint/
@@ -73,7 +73,15 @@
 %install
 #export PYTHONOPTIMIZE=1 #--optimize=1
 %{__python} setup.py install --prefix=%{_prefix} --root=%{buildroot} 
--record-rpm=INSTALLED_FILES
-%{__rm} -rf %{buildroot}%{py_sitedir}/pylint/test/
+
+# some files contain expected errors, hence compilation fails, 
+# remove them from installed file list, too
+for p in $(find %{buildroot}%{py_sitedir}/pylint/test/input -name \*.py); do
+if ! $(test -f ${p}c); then
+   f=$(basename $p)
+   sed -i /.*${f}c$/d INSTALLED_FILES
+fi
+done
 
 %clean
 %{__rm} -rf %{buildroot}

++ pylint-0.21.2.tar.bz2 - pylint-0.23.0.tar.bz2 ++
 7928 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 perl-CLASS for openSUSE:Factory

2011-04-14 Thread h_root

Hello community,

here is the log from the commit of package perl-CLASS for openSUSE:Factory
checked in at Thu Apr 14 15:04:01 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ perl-CLASS/perl-CLASS.changes   2011-01-22 20:32:08.0 +0100
@@ -0,0 +1,6 @@
+---
+Sat Jan 22 19:32:04 UTC 2011 - co...@novell.com
+
+- initial package 1.00
+  * created by cpanspec 1.78.03
+

calling whatdependson for head-i586


New:

  CLASS-1.00.tar.bz2
  perl-CLASS.changes
  perl-CLASS.spec



Other differences:
--
++ perl-CLASS.spec ++
#
# spec file for package perl-CLASS
#
# 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:   perl-CLASS
Version:1.00
Release:1
License:GPL+ or Artistic
%define cpan_name CLASS
Summary:Alias for __PACKAGE__
Url:http://search.cpan.org/dist/CLASS/
Group:  Development/Libraries/Perl
#Source: 
http://www.cpan.org/authors/id/M/MS/MSCHWERN/CLASS-%{version}.tar.gz
Source: %{cpan_name}-%{version}.tar.bz2
BuildRequires:  perl
BuildRequires:  perl-macros
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
BuildArch:  noarch
%{perl_requires}

%description
CLASS and $CLASS are both synonyms for __PACKAGE__. Easier to type.

$CLASS has the additional benefit of working in strings.

%prep
%setup -q -n %{cpan_name}-%{version}

%build
%{__perl} Makefile.PL INSTALLDIRS=vendor
%{__make} %{?_smp_mflags}

%check
%{__make} test

%install
%perl_make_install
%perl_process_packlist
%perl_gen_filelist

%clean
%{__rm} -rf %{buildroot}

%files -f %{name}.files
%defattr(644,root,root,755)
%doc Changes

%changelog





Remember to have fun...

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



commit sssd for openSUSE:Factory

2011-04-14 Thread h_root

Hello community,

here is the log from the commit of package sssd for openSUSE:Factory
checked in at Thu Apr 14 15:05:04 CEST 2011.




--- sssd/sssd.changes   2011-03-29 17:12:36.0 +0200
+++ sssd/sssd.changes   2011-04-14 13:36:26.0 +0200
@@ -1,0 +2,15 @@
+Thu Apr 14 11:31:38 UTC 2011 - rha...@suse.de
+
+- Update to 1.5.5
+ * Fixes for several crash bugs
+ * LDAP group lookups will no longer abort if there is a
+   zero-length member attribute
+ * Add automatic fallback to 'cn' if the 'gecos' attribute does not
+   exist
+
+---
+Wed Mar 30 09:47:23 UTC 2011 - rha...@suse.de
+
+- Should build in SLE-11-SP1 now
+
+---

calling whatdependson for head-i586


Old:

  sssd-1.5.4.tar.bz2

New:

  sssd-1.5.5.tar.bz2



Other differences:
--
++ sssd.spec ++
--- /var/tmp/diff_new_pack.3VP4PF/_old  2011-04-14 15:04:13.0 +0200
+++ /var/tmp/diff_new_pack.3VP4PF/_new  2011-04-14 15:04:13.0 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   sssd
-Version:1.5.4
+Version:1.5.5
 Release:1
 Group:  System/Daemons
 Summary:System Security Services Daemon
@@ -34,6 +34,12 @@
 %define pipepath %{sssdstatedir}/pipes
 %define pubconfpath %{sssdstatedir}/pubconf
 
+# SLES11 doesn't know the python_* macros
+%if %suse_version = 1110
+%define python_sitelib %py_sitedir
+%define python_sitearch %py_sitedir
+%endif
+
 ### Build Dependencies ###
 BuildRequires:  autoconf
 BuildRequires:  automake
@@ -149,6 +155,18 @@
 $RPM_BUILD_ROOT/%{_libdir}/sssd/libsss_ipa.la \
 $RPM_BUILD_ROOT/%{_libdir}/sssd/libsss_simple.la \
 $RPM_BUILD_ROOT/%{_libdir}/krb5/plugins/libkrb5/sssd_krb5_locator_plugin.la
+
+%if %suse_version = 1110
+# remove some unsupported languages, sssd does not contain
+# translations for these anyway
+rm -rf \
+$RPM_BUILD_ROOT/usr/share/locale/fa_IR \
+$RPM_BUILD_ROOT/usr/share/locale/ja_JP \
+$RPM_BUILD_ROOT/usr/share/locale/lt_LT \
+$RPM_BUILD_ROOT/usr/share/locale/ta_IN \
+$RPM_BUILD_ROOT/usr/share/locale/vi_VN
+%endif
+
 %find_lang %{name} --all-name
 
 %clean

++ sssd-1.5.4.tar.bz2 - sssd-1.5.5.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sssd-1.5.4/configure new/sssd-1.5.5/configure
--- old/sssd-1.5.4/configure2011-03-24 19:56:34.0 +0100
+++ new/sssd-1.5.5/configure2011-04-12 16:49:33.0 +0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.66 for sssd 1.5.4.
+# Generated by GNU Autoconf 2.66 for sssd 1.5.5.
 #
 # Report bugs to sssd-de...@lists.fedorahosted.org.
 #
@@ -562,8 +562,8 @@
 # Identity of this package.
 PACKAGE_NAME='sssd'
 PACKAGE_TARNAME='sssd'
-PACKAGE_VERSION='1.5.4'
-PACKAGE_STRING='sssd 1.5.4'
+PACKAGE_VERSION='1.5.5'
+PACKAGE_STRING='sssd 1.5.5'
 PACKAGE_BUGREPORT='sssd-de...@lists.fedorahosted.org'
 PACKAGE_URL=''
 
@@ -1474,7 +1474,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat _ACEOF
-\`configure' configures sssd 1.5.4 to adapt to many kinds of systems.
+\`configure' configures sssd 1.5.5 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1544,7 +1544,7 @@
 
 if test -n $ac_init_help; then
   case $ac_init_help in
- short | recursive ) echo Configuration of sssd 1.5.4:;;
+ short | recursive ) echo Configuration of sssd 1.5.5:;;
esac
   cat \_ACEOF
 
@@ -1760,7 +1760,7 @@
 test -n $ac_init_help  exit $ac_status
 if $ac_init_version; then
   cat \_ACEOF
-sssd configure 1.5.4
+sssd configure 1.5.5
 generated by GNU Autoconf 2.66
 
 Copyright (C) 2010 Free Software Foundation, Inc.
@@ -2418,7 +2418,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by sssd $as_me 1.5.4, which was
+It was created by sssd $as_me 1.5.5, which was
 generated by GNU Autoconf 2.66.  Invocation command line was
 
   $ $0 $@
@@ -3238,7 +3238,7 @@
 
 # Define the identity of the package.
  PACKAGE='sssd'
- VERSION='1.5.4'
+ VERSION='1.5.5'
 
 
 cat confdefs.h _ACEOF
@@ -18029,7 +18029,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log=
-This file was extended by sssd $as_me 1.5.4, which was
+This file was extended by sssd $as_me 1.5.5, which was
 generated by GNU Autoconf 2.66.  Invocation command line was
 
   CONFIG_FILES= $CONFIG_FILES
@@ -18095,7 +18095,7 @@
 cat $CONFIG_STATUS _ACEOF || ac_write_fail=1
 ac_cs_config=`$as_echo $ac_configure_args | sed 's/^ //; 
s/[\\\`\$]//g'`
 ac_cs_version=\\
-sssd 

commit krb5 for openSUSE:11.3

2011-04-14 Thread h_root

Hello community,

here is the log from the commit of package krb5 for openSUSE:11.3
checked in at Thu Apr 14 16:24:26 CEST 2011.




--- old-versions/11.3/UPDATES/all/krb5/krb5-mini.changes2011-03-16 
08:58:09.0 +0100
+++ 11.3/krb5/krb5-mini.changes 2011-04-14 16:23:47.66889 +0200
@@ -1,0 +2,7 @@
+Thu Apr 14 11:14:20 CEST 2011 - m...@suse.de
+
+- fix kadmind invalid pointer free()
+  (MITKRB5-SA-2011-004, bnc#687469)
+  CVE-2011-0285
+
+---
krb5.changes: same change

calling whatdependson for 11.3-i586


New:

  krb5-1.8-MITKRB5-SA-2011-004.dif



Other differences:
--
++ krb5-doc.spec ++
--- /var/tmp/diff_new_pack.g6g0NN/_old  2011-04-14 16:24:05.0 +0200
+++ /var/tmp/diff_new_pack.g6g0NN/_new  2011-04-14 16:24:05.0 +0200
@@ -21,7 +21,7 @@
 Name:   krb5-doc
 BuildRequires:  ghostscript-library latex2html texlive
 Version:1.8.1
-Release:5.RELEASE5
+Release:5.RELEASE6
 %define srcRoot krb5-1.8.1
 Summary:MIT Kerberos5 Implementation--Documentation
 License:MIT License (or similar)

++ krb5-mini.spec ++
--- /var/tmp/diff_new_pack.g6g0NN/_old  2011-04-14 16:24:05.0 +0200
+++ /var/tmp/diff_new_pack.g6g0NN/_new  2011-04-14 16:24:05.0 +0200
@@ -28,7 +28,7 @@
 BuildRequires:  bison libcom_err-devel ncurses-devel
 BuildRequires:  keyutils keyutils-devel
 Version:1.8.1
-Release:5.RELEASE5
+Release:5.RELEASE6
 %if ! 0%{?build_mini}
 BuildRequires:  libopenssl-devel openldap2-devel
 # bug437293
@@ -63,6 +63,7 @@
 Patch14:krb5-1.8-MITKRB5-SA-2011-001.dif
 Patch15:krb5-1.8-MITKRB5-SA-2011-002.dif
 Patch16:krb5-1.8-MITKRB5-SA-2011-003.dif
+Patch17:krb5-1.8-MITKRB5-SA-2011-004.dif
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 PreReq: mktemp, grep, /bin/touch, coreutils
 PreReq: %insserv_prereq %fillup_prereq 
@@ -218,6 +219,7 @@
 %patch14 -p1
 %patch15 -p0
 %patch16 -p1
+%patch17 -p1
 # Rename the man pages so that they'll get generated correctly.
 pushd src
 cat %{SOURCE10} | while read manpage ; do

++ krb5.spec ++
--- /var/tmp/diff_new_pack.g6g0NN/_old  2011-04-14 16:24:05.0 +0200
+++ /var/tmp/diff_new_pack.g6g0NN/_new  2011-04-14 16:24:05.0 +0200
@@ -28,7 +28,7 @@
 BuildRequires:  bison libcom_err-devel ncurses-devel
 BuildRequires:  keyutils keyutils-devel
 Version:1.8.1
-Release:5.RELEASE7
+Release:5.RELEASE9
 %if ! 0%{?build_mini}
 BuildRequires:  libopenssl-devel openldap2-devel
 # bug437293
@@ -63,6 +63,7 @@
 Patch14:krb5-1.8-MITKRB5-SA-2011-001.dif
 Patch15:krb5-1.8-MITKRB5-SA-2011-002.dif
 Patch16:krb5-1.8-MITKRB5-SA-2011-003.dif
+Patch17:krb5-1.8-MITKRB5-SA-2011-004.dif
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 PreReq: mktemp, grep, /bin/touch, coreutils
 PreReq: %insserv_prereq %fillup_prereq 
@@ -218,6 +219,7 @@
 %patch14 -p1
 %patch15 -p0
 %patch16 -p1
+%patch17 -p1
 # Rename the man pages so that they'll get generated correctly.
 pushd src
 cat %{SOURCE10} | while read manpage ; do

++ krb5-1.8-MITKRB5-SA-2011-004.dif ++
diff --git a/src/kadmin/server/network.c b/src/kadmin/server/network.c
index c8ce4f1..bb911ff 100644
--- a/src/kadmin/server/network.c
+++ b/src/kadmin/server/network.c
@@ -1384,6 +1384,10 @@ cleanup:
 if (local_kaddrs != NULL)
 krb5_free_addresses(server_handle-context, local_kaddrs);
 
+if ((*response)-data == NULL) {
+free(*response);
+*response = NULL;
+}
 krb5_kt_close(server_handle-context, kt);
 
 return ret;
diff --git a/src/kadmin/server/schpw.c b/src/kadmin/server/schpw.c
index c1b2217..992b55f 100644
--- a/src/kadmin/server/schpw.c
+++ b/src/kadmin/server/schpw.c
@@ -74,8 +74,13 @@ process_chpw_request(context, server_handle, realm, keytab,
 plen = (*ptr++  0xff);
 plen = (plen8) | (*ptr++  0xff);
 
-if (plen != req-length)
-return(KRB5KRB_AP_ERR_MODIFIED);
+if (plen != req-length) {
+ret = KRB5KRB_AP_ERR_MODIFIED;
+numresult = KRB5_KPASSWD_MALFORMED;
+strlcpy(strresult, Request length was inconsistent,
+sizeof(strresult));
+goto chpwfail;
+}
 
 /* verify version number */
 





Remember to have fun...

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



commit krb5 for openSUSE:11.4

2011-04-14 Thread h_root

Hello community,

here is the log from the commit of package krb5 for openSUSE:11.4
checked in at Thu Apr 14 16:29:45 CEST 2011.




--- old-versions/11.4/UPDATES/all/krb5/krb5-mini.changes2011-03-16 
08:58:53.0 +0100
+++ 11.4/krb5/krb5-mini.changes 2011-04-14 11:13:06.0 +0200
@@ -1,0 +2,7 @@
+Thu Apr 14 11:09:38 CEST 2011 - m...@suse.de
+
+- fix kadmind invalid pointer free()
+  (MITKRB5-SA-2011-004, bnc#687469)
+  CVE-2011-0285
+
+---
krb5.changes: same change

calling whatdependson for 11.4-i586


New:

  krb5-1.8-MITKRB5-SA-2011-004.dif



Other differences:
--
++ krb5-mini.spec ++
--- /var/tmp/diff_new_pack.LE16XZ/_old  2011-04-14 16:29:01.0 +0200
+++ /var/tmp/diff_new_pack.LE16XZ/_new  2011-04-14 16:29:01.0 +0200
@@ -60,6 +60,7 @@
 Patch14:krb5-1.8-MITKRB5-SA-2011-001.dif
 Patch15:krb5-1.8-MITKRB5-SA-2011-002.dif
 Patch16:krb5-1.8-MITKRB5-SA-2011-003.dif
+Patch17:krb5-1.8-MITKRB5-SA-2011-004.dif
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 PreReq: mktemp, grep, /bin/touch, coreutils
 PreReq: %insserv_prereq %fillup_prereq 
@@ -212,6 +213,7 @@
 %patch14 -p1
 %patch15 -p0
 %patch16 -p1
+%patch17 -p1
 # Rename the man pages so that they'll get generated correctly.
 pushd src
 cat %{SOURCE10} | while read manpage ; do

++ krb5.spec ++
--- /var/tmp/diff_new_pack.LE16XZ/_old  2011-04-14 16:29:01.0 +0200
+++ /var/tmp/diff_new_pack.LE16XZ/_new  2011-04-14 16:29:01.0 +0200
@@ -28,7 +28,7 @@
 BuildRequires:  bison libcom_err-devel ncurses-devel
 BuildRequires:  keyutils keyutils-devel
 Version:1.8.3
-Release:16.RELEASE2
+Release:16.RELEASE17
 %if ! 0%{?build_mini}
 BuildRequires:  libopenssl-devel openldap2-devel
 # bug437293
@@ -60,6 +60,7 @@
 Patch14:krb5-1.8-MITKRB5-SA-2011-001.dif
 Patch15:krb5-1.8-MITKRB5-SA-2011-002.dif
 Patch16:krb5-1.8-MITKRB5-SA-2011-003.dif
+Patch17:krb5-1.8-MITKRB5-SA-2011-004.dif
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 PreReq: mktemp, grep, /bin/touch, coreutils
 PreReq: %insserv_prereq %fillup_prereq 
@@ -212,6 +213,7 @@
 %patch14 -p1
 %patch15 -p0
 %patch16 -p1
+%patch17 -p1
 # Rename the man pages so that they'll get generated correctly.
 pushd src
 cat %{SOURCE10} | while read manpage ; do

++ krb5-1.8-MITKRB5-SA-2011-004.dif ++
diff --git a/src/kadmin/server/network.c b/src/kadmin/server/network.c
index c8ce4f1..bb911ff 100644
--- a/src/kadmin/server/network.c
+++ b/src/kadmin/server/network.c
@@ -1384,6 +1384,10 @@ cleanup:
 if (local_kaddrs != NULL)
 krb5_free_addresses(server_handle-context, local_kaddrs);
 
+if ((*response)-data == NULL) {
+free(*response);
+*response = NULL;
+}
 krb5_kt_close(server_handle-context, kt);
 
 return ret;
diff --git a/src/kadmin/server/schpw.c b/src/kadmin/server/schpw.c
index c1b2217..992b55f 100644
--- a/src/kadmin/server/schpw.c
+++ b/src/kadmin/server/schpw.c
@@ -74,8 +74,13 @@ process_chpw_request(context, server_handle, realm, keytab,
 plen = (*ptr++  0xff);
 plen = (plen8) | (*ptr++  0xff);
 
-if (plen != req-length)
-return(KRB5KRB_AP_ERR_MODIFIED);
+if (plen != req-length) {
+ret = KRB5KRB_AP_ERR_MODIFIED;
+numresult = KRB5_KPASSWD_MALFORMED;
+strlcpy(strresult, Request length was inconsistent,
+sizeof(strresult));
+goto chpwfail;
+}
 
 /* verify version number */
 





Remember to have fun...

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



commit rubygem-passenger for openSUSE:Factory

2011-04-14 Thread h_root

Hello community,

here is the log from the commit of package rubygem-passenger for 
openSUSE:Factory
checked in at Thu Apr 14 18:20:50 CEST 2011.




--- rubygem-passenger/rubygem-passenger.changes 2011-02-25 12:43:14.0 
+0100
+++ rubygem-passenger/rubygem-passenger.changes 2011-04-12 20:35:54.0 
+0200
@@ -1,0 +2,66 @@
+Tue Apr 12 18:32:04 UTC 2011 - mrueck...@suse.de
+
+- split out a devel-static package containing the 2 static
+  libraries that you need to compile nginx with passenger support
+  later.
+  that saves us recompiling them in the nginx build.
+- clean up file lists
+
+---
+Tue Apr 12 13:56:32 UTC 2011 - mrueck...@suse.de
+
+- update to version 3.0.6
+ * Fixed various Union Station-related stability issues.
+ * Fixed an issue with host name detection on certain platforms.
+ * Improved error logging in various parts.
+ * The dependency on the file-tail library has been removed.
+ * During installation, check whether /tmp is mounted with 'noexec'.
+   Phusion Passenger's installer relies on /tmp *not* being mounted
+   with 'noexec'. If it is then the installer will now show a
+   helpful error message instead of bailing out in a confusing
+   manner. Users can now tell the installer to use a different
+   directory for storing temporary files by customizing the $TMPDIR
+   environment variable.
+ * Phusion Passenger Standalone can now run Rackup files that are
+   not named 'config.ru'.  The filename can be passed through the
+   command line using the -R option.
+- additional changes from 3.0.5
+ * [Apache] Fixed Union Station process statistics collection
+   Union Station users that are using Apache may notice that no
+   process information show up in Union Station. This is because of
+   a bug in Phusion Passenger's Apache version, which has now been
+   fixed.
+ * [Apache] PassengerAnalytics has been renamed to
+   UnionStationSupport This option has been renamed for consistency
+   reasons.
+ * [Nginx] passenger_analytics has been renamed to
+   union_station_support This option has been renamed for
+   consistency reasons.
+ * Fixed Union Station data sending on older libcurl versions
+   Some Union Station users have reported that their data don't
+   show up.  Upon investigation this turned out to be a
+   compatibility with older libcurl versions. Affected systems
+   include all RHEL 5 based systems, such as RHEL 5.5 and CentOS
+   5.5. We've now fixed compatibility with older libcurl versions.
+ * Added support for the Union Station filter language
+   This language can be used to limit the kind of data that's sent
+   to Union Station. Please read
+   https://engage.unionstationapp.com/help#filtering for details.
+ * Fixed a PassengerMaxPoolSize/passenger_max_pool_size violation
+   bug People who host a lot of different applications on Phusion
+   Passenger may notice that it sometimes spawns more processes
+   than is allowed by PassengerMaxPoolSize/passenger_max_pool_size.
+   This has been fixed.
+- additional changes from 3.0.4
+ * [Apache] Changed mod_dir workaround hook priority
+   Phusion Passenger temporarily disables mod_dir on all Phusion
+   Passenger-handled requests in order to avoid conflicts. In order
+   to do this it registers some Apache hooks with the
+   APR_HOOK_MIDDLE priority, but it turned out that this breaks
+   some other modules like mod_python. The hook priority has been
+   changed to APR_HOOK_LAST to match mod_dir's hook priorities.
+   Issue reported by Jay Freeman.
+ * Added support for Union Station: http://www.unionstationapp.com/
+ * Some error messages have been improved.
+
+---

calling whatdependson for head-i586


Old:

  passenger-3.0.3.gem

New:

  passenger-3.0.6.gem



Other differences:
--
++ rubygem-passenger.spec ++
--- /var/tmp/diff_new_pack.w4G77b/_old  2011-04-14 18:20:11.0 +0200
+++ /var/tmp/diff_new_pack.w4G77b/_new  2011-04-14 18:20:11.0 +0200
@@ -19,7 +19,7 @@
 
 
 Name:   rubygem-passenger
-Version:3.0.3
+Version:3.0.6
 Release:1
 %define mod_name passenger
 %define apxs /usr/sbin/apxs2
@@ -42,8 +42,6 @@
 Requires:   rubygem-fastthread = 1.0.1
 BuildRequires:  rubygem-daemon_controller = 0.2.5
 Requires:   rubygem-daemon_controller = 0.2.5
-BuildRequires:  rubygem-file-tail
-Requires:   rubygem-file-tail
 BuildRequires:  rubygem-rack
 Requires:   rubygem-rack
 BuildRequires:  apache2-devel
@@ -90,25 +88,33 @@
 Additional rubygem-passenger module for apache2 HTTP-server.
 
 %package doc
+License:MIT GPLv2
 Summary:RDoc documentation for %{mod_name}
 Group:  Development/Languages/Ruby
-License:GPLv2+ or Ruby
 Requires:   %{name} = %{version}
 
 %description doc