openSUSE Commits
Threads by month
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2007 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2006 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
May 2006
- 1 participants
- 1219 discussions
Hello community,
here is the log from the commit of package phpMyAdmin
checked in at Tue May 2 12:01:42 CEST 2006.
--------
--- phpMyAdmin/phpMyAdmin.changes 2006-04-20 17:33:20.000000000 +0200
+++ NOARCH/phpMyAdmin/phpMyAdmin.changes 2006-05-02 11:01:17.000000000 +0200
@@ -1,0 +2,6 @@
+Tue May 2 11:01:30 CEST 2006 - mmarek(a)suse.cz
+
+- fixed XSS in error messages
+ [#170529] (CVE-2006-2031.patch)
+
+-------------------------------------------------------------------
New:
----
phpMyAdmin-2.8.0.3-CVE-2006-2031.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ phpMyAdmin.spec ++++++
--- /var/tmp/diff_new_pack.pXt3c1/_old 2006-05-02 12:01:20.000000000 +0200
+++ /var/tmp/diff_new_pack.pXt3c1/_new 2006-05-02 12:01:20.000000000 +0200
@@ -17,11 +17,12 @@
Requires: mod_php_any php-mysql php-bz2 php-gd php-zlib php-iconv php-mcrypt php-session
Autoreqprov: on
Version: 2.8.0.3
-Release: 4
+Release: 8
%define tarversion %{version}
Source0: %{name}-%{tarversion}.tar.bz2
Patch1: %{name}-blowfish_secret.patch
Patch2: %{name}-%{version}-CVE-2006-1804.patch
+Patch3: %{name}-%{version}-CVE-2006-2031.patch
URL: http://www.phpMyAdmin.net
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Summary: Administration of MySQL over the web
@@ -66,6 +67,7 @@
%setup -q -n %{name}-%{tarversion}
%patch1
%patch2
+%patch3
find . -type d -exec chmod 755 {} \;
find . -type f -exec chmod 644 {} \;
find . -type f -name '*.orig' -exec rm {} \;
@@ -128,6 +130,9 @@
%verify(not md5 size mtime) %config(noreplace) %{serverroot}%{name}/libraries/blowfish_secret.inc.php
%changelog -n phpMyAdmin
+* Tue May 02 2006 - mmarek(a)suse.cz
+- fixed XSS in error messages
+ [#170529] (CVE-2006-2031.patch)
* Thu Apr 20 2006 - mmarek(a)suse.cz
- fixed XSS in sql.php (and other scripts): add a secret token to
each link and form to prevent linking to sql.php from outside
++++++ phpMyAdmin-2.8.0.3-CVE-2006-2031.patch ++++++
--- libraries/select_lang.lib.php
+++ libraries/select_lang.lib.php
@@ -415,7 +415,7 @@
$GLOBALS['PMA_errors'][] = sprintf($strLanguageUnknown, $lang_failed_cookie);
}
if ($lang_failed_request) {
- $GLOBALS['PMA_errors'][] = sprintf($strLanguageUnknown, $lang_failed_request);
+ $GLOBALS['PMA_errors'][] = sprintf($strLanguageUnknown, htmlspecialchars($lang_failed_request));
}
unset($lang_file, $lang_path, $strLanguageFileNotFound, $line, $fall_back_lang,
--- libraries/Theme_Manager.class.php
+++ libraries/Theme_Manager.class.php
@@ -80,7 +80,7 @@
{
if ( ! $this->checkTheme($theme)) {
$GLOBALS['PMA_errors'][] = sprintf($GLOBALS['strThemeNotFound'],
- $theme);
+ htmlspecialchars($theme));
trigger_error(
sprintf($GLOBALS['strThemeNotFound'], PMA_sanitize($theme)),
E_USER_WARNING);
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
1
0
Hello community,
here is the log from the commit of package apparmor-profiles
checked in at Tue May 2 12:01:12 CEST 2006.
--------
--- apparmor-profiles/apparmor-profiles.changes 2006-04-29 03:22:39.000000000 +0200
+++ NOARCH/apparmor-profiles/apparmor-profiles.changes 2006-05-02 03:35:07.000000000 +0200
@@ -1,0 +2,13 @@
+Tue May 2 03:34:44 CEST 2006 - srarnold(a)suse.de
+
+- Bug 165191 - named can't write slave zones
+- Bug 168581 - readaccess to /proc/meminfo not granted to nscd -- add
+ sysconf(3) files to abstractions/base
+- Bug 167798 - misc profile modifications from darix -- mlmmj, lighttpd,
+ oidentd profiles in extras/, new postfix helpers in complain mode
+ (enabled), split apart nameservice a little (non destructively), add new
+ abstractions for python, ruby, and php5, add web-data and
+ svn-repositories data-centric abstractions
+
+
+-------------------------------------------------------------------
Old:
----
apparmor-profiles-2.0-32.tar.gz
New:
----
apparmor-profiles-2.0-35.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ apparmor-profiles.spec ++++++
--- /var/tmp/diff_new_pack.vN84x3/_old 2006-05-02 12:00:39.000000000 +0200
+++ /var/tmp/diff_new_pack.vN84x3/_new 2006-05-02 12:00:39.000000000 +0200
@@ -16,9 +16,9 @@
%endif
Summary: AppArmor profiles that are loaded into the apparmor kernel module
Version: 2.0
-Release: 26
+Release: 29
Group: Productivity/Security
-Source0: %{name}-%{version}-32.tar.gz
+Source0: %{name}-%{version}-35.tar.gz
License: Other License(s), see package, GPL
BuildRoot: %{_tmppath}/%{name}-%{version}-build
URL: http://forge.novell.com/modules/xfmod/project/?apparmor
@@ -77,6 +77,15 @@
%preun
%changelog -n apparmor-profiles
+* Tue May 02 2006 - srarnold(a)suse.de
+- Bug 165191 - named can't write slave zones
+- Bug 168581 - readaccess to /proc/meminfo not granted to nscd -- add
+ sysconf(3) files to abstractions/base
+- Bug 167798 - misc profile modifications from darix -- mlmmj, lighttpd,
+ oidentd profiles in extras/, new postfix helpers in complain mode
+ (enabled), split apart nameservice a little (non destructively), add new
+ abstractions for python, ruby, and php5, add web-data and
+ svn-repositories data-centric abstractions
* Sat Apr 29 2006 - srarnold(a)suse.de
- Add a complain mode profile for postfix/pipe
* Sat Apr 29 2006 - srarnold(a)suse.de
++++++ apparmor-profiles-2.0-32.tar.gz -> apparmor-profiles-2.0-35.tar.gz ++++++
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/apparmor-profiles-2.0/abstractions/authentication new/apparmor-profiles-2.0/abstractions/authentication
--- old/apparmor-profiles-2.0/abstractions/authentication 2006-04-29 03:12:08.000000000 +0200
+++ new/apparmor-profiles-2.0/abstractions/authentication 2006-05-02 03:26:14.000000000 +0200
@@ -1,4 +1,4 @@
-# $Id: authentication 12 2006-04-12 21:35:41Z steve-beattie $
+# $Id: authentication 35 2006-05-02 01:25:47Z seth_arnold $
# ------------------------------------------------------------------
#
# Copyright (C) 2002-2005 Novell/SUSE
@@ -36,11 +36,9 @@
/etc/default/passwd r,
/etc/login.defs r,
- # pam_winbindd
- /tmp/.winbindd/pipe rw,
- /var/lib/samba/winbindd_privileged/pipe rw,
- /etc/samba/smb.conf r,
- /usr/lib/samba/valid.dat r,
- /usr/lib/samba/upcase.dat r,
- /usr/lib/samba/lowcase.dat r,
+ # nis
+ #include <abstractions/nis>
+
+ # winbind
+ #include <abstractions/winbind>
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/apparmor-profiles-2.0/abstractions/base new/apparmor-profiles-2.0/abstractions/base
--- old/apparmor-profiles-2.0/abstractions/base 2006-04-29 03:12:08.000000000 +0200
+++ new/apparmor-profiles-2.0/abstractions/base 2006-05-02 03:26:14.000000000 +0200
@@ -1,4 +1,4 @@
-# $Id: base 12 2006-04-12 21:35:41Z steve-beattie $
+# $Id: base 34 2006-05-01 18:34:59Z seth_arnold $
# ------------------------------------------------------------------
#
# Copyright (C) 2002-2005 Novell/SUSE
@@ -74,3 +74,8 @@
# Depending on which glibc routine uses this file, base may not be the
# best place -- but many profiles require it, and it is quite harmless.
/proc/sys/kernel/ngroups_max r,
+
+ # glibc's sysconf(3) routine to determine free memory, etc
+ /proc/meminfo r,
+ /proc/stat r,
+ /proc/cpuinfo r,
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/apparmor-profiles-2.0/abstractions/mdns new/apparmor-profiles-2.0/abstractions/mdns
--- old/apparmor-profiles-2.0/abstractions/mdns 1970-01-01 01:00:00.000000000 +0100
+++ new/apparmor-profiles-2.0/abstractions/mdns 2006-05-02 03:26:14.000000000 +0200
@@ -0,0 +1,14 @@
+# $Id: audio 12 2006-04-12 21:35:41Z steve-beattie $
+# ------------------------------------------------------------------
+#
+# Copyright (C) 2002-2006 Novell/SUSE
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of version 2 of the GNU General Public
+# License published by the Free Software Foundation.
+#
+# ------------------------------------------------------------------
+
+ # mdnsd
+ /etc/nss_mdns.conf r,
+ /var/run/mdnsd w,
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/apparmor-profiles-2.0/abstractions/mysql new/apparmor-profiles-2.0/abstractions/mysql
--- old/apparmor-profiles-2.0/abstractions/mysql 1970-01-01 01:00:00.000000000 +0100
+++ new/apparmor-profiles-2.0/abstractions/mysql 2006-05-02 03:26:14.000000000 +0200
@@ -0,0 +1,14 @@
+# $Id: audio 12 2006-04-12 21:35:41Z steve-beattie $
+# ------------------------------------------------------------------
+#
+# Copyright (C) 2002-2006 Novell/SUSE
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of version 2 of the GNU General Public
+# License published by the Free Software Foundation.
+#
+# ------------------------------------------------------------------
+
+ /var/lib/mysql/mysql.sock rw,
+ /usr/share/mysql/charsets r,
+ /usr/share/mysql/charsets/*.xml r,
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/apparmor-profiles-2.0/abstractions/nameservice new/apparmor-profiles-2.0/abstractions/nameservice
--- old/apparmor-profiles-2.0/abstractions/nameservice 2006-04-29 03:12:08.000000000 +0200
+++ new/apparmor-profiles-2.0/abstractions/nameservice 2006-05-02 03:26:14.000000000 +0200
@@ -1,4 +1,4 @@
-# $Id: nameservice 26 2006-04-24 22:25:24Z seth_arnold $
+# $Id: nameservice 35 2006-05-02 01:25:47Z seth_arnold $
# ------------------------------------------------------------------
#
# Copyright (C) 2002-2005 Novell/SUSE
@@ -43,20 +43,12 @@
/usr/lib/libnss_*.so* r,
/etc/default/nss r,
- # NIS rules
- /var/yp/binding/* r,
- # portmapper may ask root processes to do nis/ldap at low ports
- capability net_bind_service,
-
- # pam_winbindd
- /tmp/.winbindd/pipe rw,
- /var/lib/samba/winbindd_privileged/pipe rw,
- /etc/samba/smb.conf r,
- /usr/lib/samba/valid.dat r,
- /usr/lib/samba/upcase.dat r,
- /usr/lib/samba/lowcase.dat r,
+ # nis
+ #include <abstractions/nis>
+
+ # winbind
+ #include <abstractions/winbind>
# mdnsd
- /etc/nss_mdns.conf r,
- /var/run/mdnsd w,
+ #include <abstractions/mdns>
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/apparmor-profiles-2.0/abstractions/nis new/apparmor-profiles-2.0/abstractions/nis
--- old/apparmor-profiles-2.0/abstractions/nis 1970-01-01 01:00:00.000000000 +0100
+++ new/apparmor-profiles-2.0/abstractions/nis 2006-05-02 03:26:14.000000000 +0200
@@ -0,0 +1,16 @@
+# $Id: audio 12 2006-04-12 21:35:41Z steve-beattie $
+# ------------------------------------------------------------------
+#
+# Copyright (C) 2002-2006 Novell/SUSE
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of version 2 of the GNU General Public
+# License published by the Free Software Foundation.
+#
+# ------------------------------------------------------------------
+
+ # NIS rules
+ /var/yp/binding/* r,
+ # portmapper may ask root processes to do nis/ldap at low ports
+ capability net_bind_service,
+
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/apparmor-profiles-2.0/abstractions/php5 new/apparmor-profiles-2.0/abstractions/php5
--- old/apparmor-profiles-2.0/abstractions/php5 1970-01-01 01:00:00.000000000 +0100
+++ new/apparmor-profiles-2.0/abstractions/php5 2006-05-02 03:26:14.000000000 +0200
@@ -0,0 +1,31 @@
+# $Id: audio 12 2006-04-12 21:35:41Z steve-beattie $
+# ------------------------------------------------------------------
+#
+# Copyright (C) 2002-2006 Novell/SUSE
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of version 2 of the GNU General Public
+# License published by the Free Software Foundation.
+#
+# ------------------------------------------------------------------
+
+ # shared snippets for config files
+ /etc/php5/conf.d r,
+ /etc/php5/conf.d/*.ini r,
+
+ # fastcgi specific config
+ /etc/php5/fastcgi/php.ini r,
+
+ # Xlibs
+ /usr/X11R6/lib{64,}/lib*.so* r,
+ # php extensions
+ /usr/lib{64,}/php5/extensions/*.so r,
+
+ # php5 session mmap socket
+ /var/lib/php5/session_mm_* rwl,
+ # file based session handler
+ /var/lib/php5/sess_* rwl,
+
+ # php libraries
+ /usr/share/php r,
+ /usr/share/php/** r,
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/apparmor-profiles-2.0/abstractions/python new/apparmor-profiles-2.0/abstractions/python
--- old/apparmor-profiles-2.0/abstractions/python 1970-01-01 01:00:00.000000000 +0100
+++ new/apparmor-profiles-2.0/abstractions/python 2006-05-02 03:26:14.000000000 +0200
@@ -0,0 +1,20 @@
+# $Id: audio 12 2006-04-12 21:35:41Z steve-beattie $
+# ------------------------------------------------------------------
+#
+# Copyright (C) 2002-2006 Novell/SUSE
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of version 2 of the GNU General Public
+# License published by the Free Software Foundation.
+#
+# ------------------------------------------------------------------
+
+ /usr/lib64/python2.4/**.{py,pyc,pth,so} r,
+ /usr/lib64/python2.4/site-packages r,
+ /usr/lib/python2.4/**.{py,pyc,pth,so} r,
+ /usr/lib/python2.4/site-packages r,
+
+ /usr/local/lib64/python2.4/**.{py,pyc,pth,so} r,
+ /usr/local/lib64/python2.4/site-packages r,
+ /usr/local/lib/python2.4/**.{py,pyc,pth,so} r,
+ /usr/local/lib/python2.4/site-packages r,
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/apparmor-profiles-2.0/abstractions/ruby new/apparmor-profiles-2.0/abstractions/ruby
--- old/apparmor-profiles-2.0/abstractions/ruby 1970-01-01 01:00:00.000000000 +0100
+++ new/apparmor-profiles-2.0/abstractions/ruby 2006-05-02 03:26:14.000000000 +0200
@@ -0,0 +1,40 @@
+# $Id: audio 12 2006-04-12 21:35:41Z steve-beattie $
+# ------------------------------------------------------------------
+#
+# Copyright (C) 2002-2006 Novell/SUSE
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of version 2 of the GNU General Public
+# License published by the Free Software Foundation.
+#
+# ------------------------------------------------------------------
+
+ /usr/lib64/ruby/1.8 r,
+ /usr/lib64/ruby/1.8/*.rb r,
+ /usr/lib64/ruby/1.8/**/*.rb r,
+ /usr/lib64/ruby/1.8/*-linux/*.so r,
+ /usr/lib64/ruby/1.8/*-linux/**/*.so r,
+
+ /usr/lib64/ruby/site_ruby/1.8 r,
+ /usr/lib64/ruby/site_ruby/1.8/*.rb r,
+ /usr/lib64/ruby/site_ruby/1.8/**/*.rb r,
+ /usr/lib64/ruby/site_ruby/1.8/*-linux/*.so r,
+ /usr/lib64/ruby/site_ruby/1.8/*-linux/**/*.so r,
+
+ /usr/lib64/ruby/gems/1.8 r,
+ /usr/lib64/ruby/gems/1.8/** r,
+
+ /usr/lib/ruby/1.8 r,
+ /usr/lib/ruby/1.8/*.rb r,
+ /usr/lib/ruby/1.8/**/*.rb r,
+ /usr/lib/ruby/1.8/*-linux/*.so r,
+ /usr/lib/ruby/1.8/*-linux/**/*.so r,
+
+ /usr/lib/ruby/site_ruby/1.8 r,
+ /usr/lib/ruby/site_ruby/1.8/*.rb r,
+ /usr/lib/ruby/site_ruby/1.8/**/*.rb r,
+ /usr/lib/ruby/site_ruby/1.8/*-linux/*.so r,
+ /usr/lib/ruby/site_ruby/1.8/*-linux/**/*.so r,
+
+ /usr/lib/ruby/gems/1.8 r,
+ /usr/lib/ruby/gems/1.8/** r,
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/apparmor-profiles-2.0/abstractions/svn-repositories new/apparmor-profiles-2.0/abstractions/svn-repositories
--- old/apparmor-profiles-2.0/abstractions/svn-repositories 1970-01-01 01:00:00.000000000 +0100
+++ new/apparmor-profiles-2.0/abstractions/svn-repositories 2006-05-02 03:26:14.000000000 +0200
@@ -0,0 +1,53 @@
+# $Id: audio 12 2006-04-12 21:35:41Z steve-beattie $
+# ------------------------------------------------------------------
+#
+# Copyright (C) 2002-2006 Novell/SUSE
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of version 2 of the GNU General Public
+# License published by the Free Software Foundation.
+#
+# ------------------------------------------------------------------
+
+ # This little snippet should abstract the read/write access to a repository.
+ # it is intended to be included in profiles for svnserve/apache2 and maybe
+ # some repository viewers like trac/viewvc
+
+ # no hooks exec by default; please define whatever you need explicitely.
+
+ /srv/svn/**/conf/* r,
+ /srv/svn/**/format r,
+ /srv/svn/**/db/fs-type r,
+ /srv/svn/**/db/format r,
+
+ # FSFS
+ /srv/svn/**/db/ r,
+ /srv/svn/**/db/uuid r,
+ /srv/svn/**/db/write-lock rwl,
+ /srv/svn/**/db/current rwl,
+ /srv/svn/**/db/current*.tmp rwl,
+ /srv/svn/**/db/revs r,
+ /srv/svn/**/db/revs/* rw,
+ /srv/svn/**/db/revprops r,
+ /srv/svn/**/db/revprops/* rw,
+ /srv/svn/**/db/transactions/** rw,
+
+ # BDB
+ /srv/svn/**/db/DB_CONFIG r,
+ /srv/svn/**/db/__db.[0-9]* rwl,
+ /srv/svn/**/db/log.[0-9]* rwl,
+ /srv/svn/**/db/nodes rwl,
+ /srv/svn/**/db/revisions rwl,
+ /srv/svn/**/db/transactions rwl,
+ /srv/svn/**/db/copies rwl,
+ /srv/svn/**/db/changes rwl,
+ /srv/svn/**/db/representations rwl,
+ /srv/svn/**/db/strings rwl,
+ /srv/svn/**/db/uuids rwl,
+ /srv/svn/**/db/locks rwl,
+ /srv/svn/**/db/lock-tokens rwl,
+
+ # temp files
+ /tmp/apr* rwl,
+ /var/tmp/apr* rwl,
+ /tmp/report*.tmp rwl,
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/apparmor-profiles-2.0/abstractions/user-mail new/apparmor-profiles-2.0/abstractions/user-mail
--- old/apparmor-profiles-2.0/abstractions/user-mail 2006-04-29 03:12:08.000000000 +0200
+++ new/apparmor-profiles-2.0/abstractions/user-mail 2006-05-02 03:26:14.000000000 +0200
@@ -1,4 +1,4 @@
-# $Id: user-mail 12 2006-04-12 21:35:41Z steve-beattie $
+# $Id: user-mail 35 2006-05-02 01:25:47Z seth_arnold $
# ------------------------------------------------------------------
#
# Copyright (C) 2002-2006 Novell/SUSE
@@ -21,10 +21,5 @@
@{HOME}/mbox rw,
@{HOME}/inbox rw,
@{HOME}/.forward r,
-
- # location of configuration files -- maybe these should go elsewhere
- @{HOME}/.muttrc r,
- @{HOME}/.mutt_alias r,
- @{HOME}/.mailcap r,
- @{HOME}/.mime.types r,
-
+ @{HOME}/Maildir r,
+ @{HOME}/Maildir/** rw,
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/apparmor-profiles-2.0/abstractions/web-data new/apparmor-profiles-2.0/abstractions/web-data
--- old/apparmor-profiles-2.0/abstractions/web-data 1970-01-01 01:00:00.000000000 +0100
+++ new/apparmor-profiles-2.0/abstractions/web-data 2006-05-02 03:26:14.000000000 +0200
@@ -0,0 +1,22 @@
+# $Id: audio 12 2006-04-12 21:35:41Z steve-beattie $
+# ------------------------------------------------------------------
+#
+# Copyright (C) 2002-2006 Novell/SUSE
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of version 2 of the GNU General Public
+# License published by the Free Software Foundation.
+#
+# ------------------------------------------------------------------
+
+ /srv/www/htdocs/ r,
+ /srv/www/htdocs/** r,
+ # virtual hosting
+ /srv/www/vhosts/ r,
+ /srv/www/vhosts/** r,
+ # mod_userdir
+ @{HOME}/public_html/ r,
+ @{HOME}/public_html/** r,
+
+ /srv/www/rails/*/public/ r,
+ /srv/www/rails/*/public/** r,
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/apparmor-profiles-2.0/abstractions/winbind new/apparmor-profiles-2.0/abstractions/winbind
--- old/apparmor-profiles-2.0/abstractions/winbind 1970-01-01 01:00:00.000000000 +0100
+++ new/apparmor-profiles-2.0/abstractions/winbind 2006-05-02 03:26:14.000000000 +0200
@@ -0,0 +1,19 @@
+# $Id: audio 12 2006-04-12 21:35:41Z steve-beattie $
+# ------------------------------------------------------------------
+#
+# Copyright (C) 2002-2006 Novell/SUSE
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of version 2 of the GNU General Public
+# License published by the Free Software Foundation.
+#
+# ------------------------------------------------------------------
+
+ # pam_winbindd
+ /tmp/.winbindd/pipe rw,
+ /var/lib/samba/winbindd_privileged/pipe rw,
+ /etc/samba/smb.conf r,
+ /usr/lib/samba/valid.dat r,
+ /usr/lib/samba/upcase.dat r,
+ /usr/lib/samba/lowcase.dat r,
+
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/apparmor-profiles-2.0/apparmor-profiles.spec new/apparmor-profiles-2.0/apparmor-profiles.spec
--- old/apparmor-profiles-2.0/apparmor-profiles.spec 2006-04-29 03:20:13.000000000 +0200
+++ new/apparmor-profiles-2.0/apparmor-profiles.spec 2006-05-02 03:26:20.000000000 +0200
@@ -26,7 +26,7 @@
Version: 2.0
Release: 12
Group: Productivity/Security
-Source0: %{name}-%{version}-32.tar.gz
+Source0: %{name}-%{version}-35.tar.gz
License: GPL
BuildRoot: %{?_tmppath:}%{!?_tmppath:/var/tmp}/%{name}-%{version}-build
Url: http://forge.novell.com/modules/xfmod/project/?apparmor
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/apparmor-profiles-2.0/enabled/usr.lib.postfix.anvil new/apparmor-profiles-2.0/enabled/usr.lib.postfix.anvil
--- old/apparmor-profiles-2.0/enabled/usr.lib.postfix.anvil 2006-04-29 03:12:08.000000000 +0200
+++ new/apparmor-profiles-2.0/enabled/usr.lib.postfix.anvil 2006-05-02 03:26:14.000000000 +0200
@@ -23,8 +23,8 @@
/usr/lib/postfix/anvil rix,
/etc/postfix/main.cf r,
- /var/spool/postfix/private/anvil rw,
- /var/spool/postfix/pid/unix.anvil rw,
+ /{var/spool/postfix/,}private/anvil rw,
+ /{var/spool/postfix/,}pid/unix.anvil rw,
/proc/net/if_inet6 r,
/proc/sys/kernel/ngroups_max r,
}
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/apparmor-profiles-2.0/enabled/usr.lib.postfix.bounce new/apparmor-profiles-2.0/enabled/usr.lib.postfix.bounce
--- old/apparmor-profiles-2.0/enabled/usr.lib.postfix.bounce 2006-04-29 03:12:08.000000000 +0200
+++ new/apparmor-profiles-2.0/enabled/usr.lib.postfix.bounce 2006-05-02 03:26:14.000000000 +0200
@@ -1,4 +1,4 @@
-# $Id: usr.lib.postfix.bounce 12 2006-04-12 21:35:41Z steve-beattie $
+# $Id: usr.lib.postfix.bounce 35 2006-05-02 01:25:47Z seth_arnold $
# ------------------------------------------------------------------
#
# Copyright (C) 2002-2006 Novell/SUSE
@@ -38,11 +38,11 @@
/{var/spool/postfix/,}trace/[0-9A-F]/[0-9A-F]* rwl,
/{var/spool/postfix/,}trace/[0-9A-F]* rwl,
/{var/spool/postfix/,}public/cleanup w,
+ /{var/spool/postfix/,}pid/unix.bounce rw,
+ /{var/spool/postfix/,}pid/unix.defer rw,
+ /{var/spool/postfix/,}pid/unix.trace rw,
/etc/postfix/main.cf r,
- /var/spool/postfix/pid/unix.bounce rw,
- /var/spool/postfix/pid/unix.defer rw,
- /var/spool/postfix/pid/unix.trace rw,
/proc/net/if_inet6 r,
/proc/sys/kernel/ngroups_max r,
}
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/apparmor-profiles-2.0/enabled/usr.lib.postfix.cleanup new/apparmor-profiles-2.0/enabled/usr.lib.postfix.cleanup
--- old/apparmor-profiles-2.0/enabled/usr.lib.postfix.cleanup 2006-04-29 03:12:08.000000000 +0200
+++ new/apparmor-profiles-2.0/enabled/usr.lib.postfix.cleanup 2006-05-02 03:26:14.000000000 +0200
@@ -1,4 +1,4 @@
-# $Id: usr.lib.postfix.cleanup 12 2006-04-12 21:35:41Z steve-beattie $
+# $Id: usr.lib.postfix.cleanup 35 2006-05-02 01:25:47Z seth_arnold $
# ------------------------------------------------------------------
#
# Copyright (C) 2002-2006 Novell/SUSE
@@ -27,9 +27,9 @@
/{var/spool/postfix/,}incoming/[0-9A-F]* rwl,
/{var/spool/postfix/,}private/{rewrite,bounce} w,
/{var/spool/postfix/,}public/qmgr w,
+ /{var/spool/postfix/,}pid/unix.cleanup rw,
/etc/{m,fs}tab r,
/etc/postfix/* r,
/proc/sys/kernel/ngroups_max r,
/proc/{stat,cpuinfo} r,
- /var/spool/postfix/pid/unix.cleanup rw,
}
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/apparmor-profiles-2.0/enabled/usr.lib.postfix.discard new/apparmor-profiles-2.0/enabled/usr.lib.postfix.discard
--- old/apparmor-profiles-2.0/enabled/usr.lib.postfix.discard 1970-01-01 01:00:00.000000000 +0100
+++ new/apparmor-profiles-2.0/enabled/usr.lib.postfix.discard 2006-05-02 03:26:14.000000000 +0200
@@ -0,0 +1,19 @@
+# $Id: usr.lib.postfix.tlsmgr 12 2006-04-12 21:35:41Z steve-beattie $
+# ------------------------------------------------------------------
+#
+# Copyright (C) 2002-2005 Novell/SUSE
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of version 2 of the GNU General Public
+# License published by the Free Software Foundation.
+#
+# ------------------------------------------------------------------
+# vim:syntax=apparmor
+
+#include <tunables/global>
+
+/usr/lib/postfix/discard flags=(complain) {
+ #include <abstractions/base>
+
+ /usr/lib/postfix/discard r,
+}
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/apparmor-profiles-2.0/enabled/usr.lib.postfix.error new/apparmor-profiles-2.0/enabled/usr.lib.postfix.error
--- old/apparmor-profiles-2.0/enabled/usr.lib.postfix.error 1970-01-01 01:00:00.000000000 +0100
+++ new/apparmor-profiles-2.0/enabled/usr.lib.postfix.error 2006-05-02 03:26:14.000000000 +0200
@@ -0,0 +1,19 @@
+# $Id: usr.lib.postfix.bounce 12 2006-04-12 21:35:41Z steve-beattie $
+# ------------------------------------------------------------------
+#
+# Copyright (C) 2002-2006 Novell/SUSE
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of version 2 of the GNU General Public
+# License published by the Free Software Foundation.
+#
+# ------------------------------------------------------------------
+
+#include <tunables/global>
+
+/usr/lib/postfix/error flags=(complain) {
+ #include <abstractions/base>
+ #include <abstractions/nameservice>
+ #include <abstractions/kerberosclient>
+ #include <program-chunks/postfix-common>
+}
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/apparmor-profiles-2.0/enabled/usr.lib.postfix.flush new/apparmor-profiles-2.0/enabled/usr.lib.postfix.flush
--- old/apparmor-profiles-2.0/enabled/usr.lib.postfix.flush 2006-04-29 03:12:08.000000000 +0200
+++ new/apparmor-profiles-2.0/enabled/usr.lib.postfix.flush 2006-05-02 03:26:14.000000000 +0200
@@ -1,4 +1,4 @@
-# $Id: usr.lib.postfix.flush 12 2006-04-12 21:35:41Z steve-beattie $
+# $Id: usr.lib.postfix.flush 35 2006-05-02 01:25:47Z seth_arnold $
# ------------------------------------------------------------------
#
# Copyright (C) 2002-2006 Novell/SUSE
@@ -41,6 +41,7 @@
/{var/spool/postfix/,}incoming/[a-z]/[a-z]* rwl,
/{var/spool/postfix/,}incoming/[a-z]* rwl,
/{var/spool/postfix/,}public/qmgr w,
+ /{var/spool/postfix/,}pid/unix.flush rw,
/etc/mtab r,
/etc/postfix/main.cf r,
/etc/postfix/virtual.db r,
@@ -49,6 +50,5 @@
/proc/stat r,
/proc/sys/kernel/ngroups_max r,
- /var/spool/postfix/pid/unix.flush rw,
}
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/apparmor-profiles-2.0/enabled/usr.lib.postfix.lmtp new/apparmor-profiles-2.0/enabled/usr.lib.postfix.lmtp
--- old/apparmor-profiles-2.0/enabled/usr.lib.postfix.lmtp 1970-01-01 01:00:00.000000000 +0100
+++ new/apparmor-profiles-2.0/enabled/usr.lib.postfix.lmtp 2006-05-02 03:26:14.000000000 +0200
@@ -0,0 +1,19 @@
+# $Id: usr.lib.postfix.bounce 12 2006-04-12 21:35:41Z steve-beattie $
+# ------------------------------------------------------------------
+#
+# Copyright (C) 2002-2006 Novell/SUSE
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of version 2 of the GNU General Public
+# License published by the Free Software Foundation.
+#
+# ------------------------------------------------------------------
+
+#include <tunables/global>
+
+/usr/lib/postfix/lmtp flags=(complain) {
+ #include <abstractions/base>
+ #include <abstractions/nameservice>
+ #include <abstractions/kerberosclient>
+ #include <program-chunks/postfix-common>
+}
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/apparmor-profiles-2.0/enabled/usr.lib.postfix.local new/apparmor-profiles-2.0/enabled/usr.lib.postfix.local
--- old/apparmor-profiles-2.0/enabled/usr.lib.postfix.local 2006-04-29 03:12:08.000000000 +0200
+++ new/apparmor-profiles-2.0/enabled/usr.lib.postfix.local 2006-05-02 03:26:14.000000000 +0200
@@ -1,4 +1,4 @@
-# $Id: usr.lib.postfix.local 12 2006-04-12 21:35:41Z steve-beattie $
+# $Id: usr.lib.postfix.local 35 2006-05-02 01:25:47Z seth_arnold $
# ------------------------------------------------------------------
#
# Copyright (C) 2002-2006 Novell/SUSE
@@ -23,6 +23,8 @@
/usr/lib/mailman/mail/mailman px,
/var/mailman/mail/wrapper px,
+ /usr/bin/mlmmj-recieve px,
+
/usr/lib/postfix/local rix,
/bin/bash ixr,
/bin/date ixr,
@@ -32,12 +34,12 @@
# mailman on SuSE is configed to have its own alias file
/var/lib/mailman/data/aliases.db r,
/proc/{cpuinfo,stat} r,
- /var/spool/postfix/active/[0-9A-F]/[0-9A-F]/* rw,
- /var/spool/postfix/active/[0-9A-F]/[0-9A-F]* rw,
- /var/spool/postfix/active/[0-9A-F]* rw,
- /var/spool/postfix/pid/unix.local rw,
- /var/spool/postfix/private/{bounce,defer,flush,rewrite} rw,
- /var/spool/postfix/public/{cleanup,flush} rw,
+ /{var/spool/postfix/,}active/[0-9A-F]/[0-9A-F]/* rw,
+ /{var/spool/postfix/,}active/[0-9A-F]/[0-9A-F]* rw,
+ /{var/spool/postfix/,}active/[0-9A-F]* rw,
+ /{var/spool/postfix/,}pid/unix.local rw,
+ /{var/spool/postfix/,}private/{bounce,defer,flush,rewrite} rw,
+ /{var/spool/postfix/,}public/{cleanup,flush} rw,
/etc/postfix/virtual.db r,
/etc/postfix/lists.db r,
}
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/apparmor-profiles-2.0/enabled/usr.lib.postfix.master new/apparmor-profiles-2.0/enabled/usr.lib.postfix.master
--- old/apparmor-profiles-2.0/enabled/usr.lib.postfix.master 2006-04-29 03:12:08.000000000 +0200
+++ new/apparmor-profiles-2.0/enabled/usr.lib.postfix.master 2006-05-02 03:26:14.000000000 +0200
@@ -1,4 +1,4 @@
-# $Id: usr.lib.postfix.master 29 2006-04-27 23:40:08Z seth_arnold $
+# $Id: usr.lib.postfix.master 35 2006-05-02 01:25:47Z seth_arnold $
# ------------------------------------------------------------------
#
# Copyright (C) 2002-2006 Novell/SUSE
@@ -22,10 +22,10 @@
capability dac_override,
/etc/postfix/master.cf r,
- /var/spool/postfix/pid/master.pid rw,
- /var/spool/postfix/private/* wl,
- /var/spool/postfix/private/tlsmgr rwl,
- /var/spool/postfix/public/{cleanup,flush,pickup,qmgr,showq,tlsmgr} rwl,
+ /{var/spool/postfix/,}pid/master.pid rw,
+ /{var/spool/postfix/,}private/* wl,
+ /{var/spool/postfix/,}private/tlsmgr rwl,
+ /{var/spool/postfix/,}public/{cleanup,flush,pickup,qmgr,showq,tlsmgr} rwl,
/usr/lib/postfix/anvil px,
/usr/lib/postfix/bounce px,
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/apparmor-profiles-2.0/enabled/usr.lib.postfix.oqmgr new/apparmor-profiles-2.0/enabled/usr.lib.postfix.oqmgr
--- old/apparmor-profiles-2.0/enabled/usr.lib.postfix.oqmgr 1970-01-01 01:00:00.000000000 +0100
+++ new/apparmor-profiles-2.0/enabled/usr.lib.postfix.oqmgr 2006-05-02 03:26:14.000000000 +0200
@@ -0,0 +1,19 @@
+# $Id: usr.lib.postfix.tlsmgr 12 2006-04-12 21:35:41Z steve-beattie $
+# ------------------------------------------------------------------
+#
+# Copyright (C) 2002-2005 Novell/SUSE
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of version 2 of the GNU General Public
+# License published by the Free Software Foundation.
+#
+# ------------------------------------------------------------------
+# vim:syntax=apparmor
+
+#include <tunables/global>
+
+/usr/lib/postfix/oqmgr flags=(complain) {
+ #include <abstractions/base>
+ #include <abstractions/nameservice>
+ #include <program-chunks/postfix-common>
+}
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/apparmor-profiles-2.0/enabled/usr.lib.postfix.pickup new/apparmor-profiles-2.0/enabled/usr.lib.postfix.pickup
--- old/apparmor-profiles-2.0/enabled/usr.lib.postfix.pickup 2006-04-29 03:12:08.000000000 +0200
+++ new/apparmor-profiles-2.0/enabled/usr.lib.postfix.pickup 2006-05-02 03:26:14.000000000 +0200
@@ -1,4 +1,4 @@
-# $Id: usr.lib.postfix.pickup 12 2006-04-12 21:35:41Z steve-beattie $
+# $Id: usr.lib.postfix.pickup 35 2006-05-02 01:25:47Z seth_arnold $
# ------------------------------------------------------------------
#
# Copyright (C) 2002-2006 Novell/SUSE
@@ -19,14 +19,10 @@
/usr/lib/postfix/pickup rix,
- /maildrop r,
- /maildrop/* rwl,
- /public/cleanup w,
- /public/pickup r,
/proc/sys/kernel/ngroups_max r,
- /var/spool/postfix/public/pickup r,
- /var/spool/postfix/maildrop r,
- /var/spool/postfix/maildrop/* rwl,
- /var/spool/postfix/public/cleanup w,
+ /{var/spool/postfix/,}public/cleanup w,
+ /{var/spool/postfix/,}public/pickup r,
+ /{var/spool/postfix/,}maildrop r,
+ /{var/spool/postfix/,}maildrop/* rwl,
}
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/apparmor-profiles-2.0/enabled/usr.lib.postfix.qmqpd new/apparmor-profiles-2.0/enabled/usr.lib.postfix.qmqpd
--- old/apparmor-profiles-2.0/enabled/usr.lib.postfix.qmqpd 1970-01-01 01:00:00.000000000 +0100
+++ new/apparmor-profiles-2.0/enabled/usr.lib.postfix.qmqpd 2006-05-02 03:26:14.000000000 +0200
@@ -0,0 +1,19 @@
+# $Id: usr.lib.postfix.bounce 12 2006-04-12 21:35:41Z steve-beattie $
+# ------------------------------------------------------------------
+#
+# Copyright (C) 2002-2006 Novell/SUSE
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of version 2 of the GNU General Public
+# License published by the Free Software Foundation.
+#
+# ------------------------------------------------------------------
+
+#include <tunables/global>
+
+/usr/lib/postfix/qmqpd flags=(complain) {
+ #include <abstractions/base>
+ #include <abstractions/nameservice>
+ #include <abstractions/kerberosclient>
+ #include <program-chunks/postfix-common>
+}
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/apparmor-profiles-2.0/enabled/usr.lib.postfix.showq new/apparmor-profiles-2.0/enabled/usr.lib.postfix.showq
--- old/apparmor-profiles-2.0/enabled/usr.lib.postfix.showq 2006-04-29 03:12:08.000000000 +0200
+++ new/apparmor-profiles-2.0/enabled/usr.lib.postfix.showq 2006-05-02 03:26:14.000000000 +0200
@@ -1,4 +1,4 @@
-# $Id: usr.lib.postfix.showq 12 2006-04-12 21:35:41Z steve-beattie $
+# $Id: usr.lib.postfix.showq 35 2006-05-02 01:25:47Z seth_arnold $
# ------------------------------------------------------------------
#
# Copyright (C) 2002-2006 Novell/SUSE
@@ -51,7 +51,7 @@
/{var/spool/postfix/,}incoming/[0-0A-F]* r,
/{var/spool/postfix/,}maildrop r,
/{var/spool/postfix/,}maildrop/[0-9A-F]* r,
- /proc/sys/kernel/ngroups_max r,
- /var/spool/postfix/pid/unix.showq rw,
+ /{var/spool/postfix/,}pid/unix.showq rw,
+ /proc/sys/kernel/ngroups_max r,
}
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/apparmor-profiles-2.0/enabled/usr.lib.postfix.smtp new/apparmor-profiles-2.0/enabled/usr.lib.postfix.smtp
--- old/apparmor-profiles-2.0/enabled/usr.lib.postfix.smtp 2006-04-29 03:12:08.000000000 +0200
+++ new/apparmor-profiles-2.0/enabled/usr.lib.postfix.smtp 2006-05-02 03:26:14.000000000 +0200
@@ -1,4 +1,4 @@
-# $Id: usr.lib.postfix.smtp 12 2006-04-12 21:35:41Z steve-beattie $
+# $Id: usr.lib.postfix.smtp 35 2006-05-02 01:25:47Z seth_arnold $
# ------------------------------------------------------------------
#
# Copyright (C) 2002-2006 Novell/SUSE
@@ -26,19 +26,20 @@
/{var/spool/postfix/,}active/[0-9A-F]/[0-9A-F]/* rwl,
/{var/spool/postfix/,}active/[0-9A-F]/[0-9A-F]* rwl,
/{var/spool/postfix/,}active/[0-9A-F]* rwl,
+ /{var/spool/postfix/,}private/anvil w,
/{var/spool/postfix/,}private/bounce w,
/{var/spool/postfix/,}private/defer w,
/{var/spool/postfix/,}private/scache w,
/{var/spool/postfix/,}private/tlsmgr w,
/{var/spool/postfix/,}private/trace w,
/{var/spool/postfix/,}public/flush w,
+ /{var/spool/postfix/,}pid/unix.smtp rw,
+ /{var/spool/postfix/,}pid/unix.relay rw,
/etc/postfix/{ssl/,}*.pem r,
/etc/postfix/prng_exch rw,
/proc/sys/kernel/ngroups_max r,
/usr/share/ssl/certs/ca-bundle.crt r,
/usr/share/ssl/openssl.cnf r,
- /var/spool/postfix/pid/unix.smtp rw,
- /var/spool/postfix/pid/unix.relay rw,
/etc/postfix/virtual.db r,
/etc/postfix/sasl_passwd.db r,
/etc/mtab r,
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/apparmor-profiles-2.0/enabled/usr.lib.postfix.spawn new/apparmor-profiles-2.0/enabled/usr.lib.postfix.spawn
--- old/apparmor-profiles-2.0/enabled/usr.lib.postfix.spawn 1970-01-01 01:00:00.000000000 +0100
+++ new/apparmor-profiles-2.0/enabled/usr.lib.postfix.spawn 2006-05-02 03:26:14.000000000 +0200
@@ -0,0 +1,19 @@
+# $Id: usr.lib.postfix.bounce 12 2006-04-12 21:35:41Z steve-beattie $
+# ------------------------------------------------------------------
+#
+# Copyright (C) 2002-2006 Novell/SUSE
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of version 2 of the GNU General Public
+# License published by the Free Software Foundation.
+#
+# ------------------------------------------------------------------
+
+#include <tunables/global>
+
+/usr/lib/postfix/spawn flags=(complain) {
+ #include <abstractions/base>
+ #include <abstractions/nameservice>
+ #include <abstractions/kerberosclient>
+ #include <program-chunks/postfix-common>
+}
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/apparmor-profiles-2.0/enabled/usr.lib.postfix.tlsmgr new/apparmor-profiles-2.0/enabled/usr.lib.postfix.tlsmgr
--- old/apparmor-profiles-2.0/enabled/usr.lib.postfix.tlsmgr 2006-04-29 03:12:08.000000000 +0200
+++ new/apparmor-profiles-2.0/enabled/usr.lib.postfix.tlsmgr 2006-05-02 03:26:14.000000000 +0200
@@ -1,4 +1,4 @@
-# $Id: usr.lib.postfix.tlsmgr 12 2006-04-12 21:35:41Z steve-beattie $
+# $Id: usr.lib.postfix.tlsmgr 35 2006-05-02 01:25:47Z seth_arnold $
# ------------------------------------------------------------------
#
# Copyright (C) 2002-2005 Novell/SUSE
@@ -20,5 +20,5 @@
/etc/postfix/prng_exch rw,
/proc/sys/kernel/ngroups_max r,
/usr/lib/postfix/tlsmgr r,
- /var/spool/postfix/private/tlsmgr r,
+ /{var/spool/postfix/,}private/tlsmgr r,
}
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/apparmor-profiles-2.0/enabled/usr.lib.postfix.verify new/apparmor-profiles-2.0/enabled/usr.lib.postfix.verify
--- old/apparmor-profiles-2.0/enabled/usr.lib.postfix.verify 1970-01-01 01:00:00.000000000 +0100
+++ new/apparmor-profiles-2.0/enabled/usr.lib.postfix.verify 2006-05-02 03:26:14.000000000 +0200
@@ -0,0 +1,19 @@
+# $Id: usr.lib.postfix.bounce 12 2006-04-12 21:35:41Z steve-beattie $
+# ------------------------------------------------------------------
+#
+# Copyright (C) 2002-2006 Novell/SUSE
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of version 2 of the GNU General Public
+# License published by the Free Software Foundation.
+#
+# ------------------------------------------------------------------
+
+#include <tunables/global>
+
+/usr/lib/postfix/verify flags=(complain) {
+ #include <abstractions/base>
+ #include <abstractions/nameservice>
+ #include <abstractions/kerberosclient>
+ #include <program-chunks/postfix-common>
+}
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/apparmor-profiles-2.0/enabled/usr.lib.postfix.virtual new/apparmor-profiles-2.0/enabled/usr.lib.postfix.virtual
--- old/apparmor-profiles-2.0/enabled/usr.lib.postfix.virtual 1970-01-01 01:00:00.000000000 +0100
+++ new/apparmor-profiles-2.0/enabled/usr.lib.postfix.virtual 2006-05-02 03:26:14.000000000 +0200
@@ -0,0 +1,19 @@
+# $Id: usr.lib.postfix.bounce 12 2006-04-12 21:35:41Z steve-beattie $
+# ------------------------------------------------------------------
+#
+# Copyright (C) 2002-2006 Novell/SUSE
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of version 2 of the GNU General Public
+# License published by the Free Software Foundation.
+#
+# ------------------------------------------------------------------
+
+#include <tunables/global>
+
+/usr/lib/postfix/virtual flags=(complain) {
+ #include <abstractions/base>
+ #include <abstractions/nameservice>
+ #include <abstractions/kerberosclient>
+ #include <program-chunks/postfix-common>
+}
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/apparmor-profiles-2.0/enabled/usr.sbin.named new/apparmor-profiles-2.0/enabled/usr.sbin.named
--- old/apparmor-profiles-2.0/enabled/usr.sbin.named 2006-04-29 03:12:08.000000000 +0200
+++ new/apparmor-profiles-2.0/enabled/usr.sbin.named 2006-05-02 03:26:14.000000000 +0200
@@ -1,4 +1,4 @@
-# $Id: usr.sbin.named 12 2006-04-12 21:35:41Z steve-beattie $
+# $Id: usr.sbin.named 33 2006-05-01 18:32:36Z seth_arnold $
#
# ------------------------------------------------------------------
#
@@ -34,4 +34,5 @@
/var/run/named.pid wl,
/var/run/named/named.pid wl,
/var/run/ndc wl,
+ /slave/tmp-* rw,
}
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/apparmor-profiles-2.0/extras/usr.bin.mlmmj-bounce new/apparmor-profiles-2.0/extras/usr.bin.mlmmj-bounce
--- old/apparmor-profiles-2.0/extras/usr.bin.mlmmj-bounce 1970-01-01 01:00:00.000000000 +0100
+++ new/apparmor-profiles-2.0/extras/usr.bin.mlmmj-bounce 2006-05-02 03:26:14.000000000 +0200
@@ -0,0 +1,23 @@
+# $Id: usr.lib.postfix.tlsmgr 12 2006-04-12 21:35:41Z steve-beattie $
+# ------------------------------------------------------------------
+#
+# Copyright (C) 2002-2005 Novell/SUSE
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of version 2 of the GNU General Public
+# License published by the Free Software Foundation.
+#
+# ------------------------------------------------------------------
+# vim:syntax=apparmor
+
+#include <tunables/global>
+
+/usr/bin/mlmmj-bounce {
+ #include <abstractions/base>
+
+ /usr/bin/mlmmj-bounce r,
+ /usr/bin/mlmmj-send px,
+ /var/spool/mlmmj/*/subconf/* rwl,
+ /var/spool/mlmmj/*/queue/* rwl,
+
+}
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/apparmor-profiles-2.0/extras/usr.bin.mlmmj-maintd new/apparmor-profiles-2.0/extras/usr.bin.mlmmj-maintd
--- old/apparmor-profiles-2.0/extras/usr.bin.mlmmj-maintd 1970-01-01 01:00:00.000000000 +0100
+++ new/apparmor-profiles-2.0/extras/usr.bin.mlmmj-maintd 2006-05-02 03:26:14.000000000 +0200
@@ -0,0 +1,37 @@
+# $Id: usr.lib.postfix.tlsmgr 12 2006-04-12 21:35:41Z steve-beattie $
+# ------------------------------------------------------------------
+#
+# Copyright (C) 2002-2005 Novell/SUSE
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of version 2 of the GNU General Public
+# License published by the Free Software Foundation.
+#
+# ------------------------------------------------------------------
+# vim:syntax=apparmor
+
+#include <tunables/global>
+
+/usr/bin/mlmmj-maintd {
+ #include <abstractions/base>
+
+ capability setuid,
+
+ /usr/bin/mlmmj-maintd r,
+ /usr/bin/mlmmj-send px,
+
+ /var/spool/mlmmj r,
+ /var/spool/mlmmj/*/bounce r,
+ /var/spool/mlmmj/*/index r,
+ /var/spool/mlmmj/*/lastdigest rw,
+ /var/spool/mlmmj/*/maintdlog-* lrw,
+ /var/spool/mlmmj/*/mlmmj-maintd.lastrun.log w,
+ /var/spool/mlmmj/*/moderation r,
+ /var/spool/mlmmj/*/archive/* r,
+ /var/spool/mlmmj/*/control/* r,
+ /var/spool/mlmmj/*/queue r,
+ /var/spool/mlmmj/*/queue/* rwl,
+ /var/spool/mlmmj/*/requeue r,
+ /var/spool/mlmmj/*/subconf r,
+ /var/spool/mlmmj/*/unsubconf r,
+}
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/apparmor-profiles-2.0/extras/usr.bin.mlmmj-make-ml.sh new/apparmor-profiles-2.0/extras/usr.bin.mlmmj-make-ml.sh
--- old/apparmor-profiles-2.0/extras/usr.bin.mlmmj-make-ml.sh 1970-01-01 01:00:00.000000000 +0100
+++ new/apparmor-profiles-2.0/extras/usr.bin.mlmmj-make-ml.sh 2006-05-02 03:26:14.000000000 +0200
@@ -0,0 +1,45 @@
+# $Id: usr.lib.postfix.tlsmgr 12 2006-04-12 21:35:41Z steve-beattie $
+# ------------------------------------------------------------------
+#
+# Copyright (C) 2002-2005 Novell/SUSE
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of version 2 of the GNU General Public
+# License published by the Free Software Foundation.
+#
+# ------------------------------------------------------------------
+# vim:syntax=apparmor
+
+#include <tunables/global>
+
+/usr/bin/mlmmj-make-ml.sh {
+ #include <abstractions/base>
+ #include <abstractions/bash>
+ #include <abstractions/consoles>
+ #include <abstractions/nameservice>
+
+ capability sys_admin,
+
+ /usr/bin/mlmmj-make-ml.sh r,
+
+ # some shell tools are needed
+ /bin/domainname ix,
+ /bin/hostname ix,
+ /bin/bash ix,
+ /bin/cp ixr,
+ /bin/mkdir ixr,
+ /bin/touch ixr,
+ /usr/bin/which ixr,
+ # if mkdir cant read the current work directory it jumps into /
+ # allow reading that dir.
+ / r,
+
+ # skeleton data
+ /usr/share/mlmmj/text.skel r,
+ /usr/share/mlmmj/text.skel/** r,
+
+ # spool dirs
+ /var/spool r,
+ /var/spool/mlmmj rw,
+ /var/spool/mlmmj/** w,
+}
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/apparmor-profiles-2.0/extras/usr.bin.mlmmj-process new/apparmor-profiles-2.0/extras/usr.bin.mlmmj-process
--- old/apparmor-profiles-2.0/extras/usr.bin.mlmmj-process 1970-01-01 01:00:00.000000000 +0100
+++ new/apparmor-profiles-2.0/extras/usr.bin.mlmmj-process 2006-05-02 03:26:14.000000000 +0200
@@ -0,0 +1,30 @@
+# $Id: usr.lib.postfix.tlsmgr 12 2006-04-12 21:35:41Z steve-beattie $
+# ------------------------------------------------------------------
+#
+# Copyright (C) 2002-2005 Novell/SUSE
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of version 2 of the GNU General Public
+# License published by the Free Software Foundation.
+#
+# ------------------------------------------------------------------
+# vim:syntax=apparmor
+
+#include <tunables/global>
+
+/usr/bin/mlmmj-process {
+ #include <abstractions/base>
+
+ /usr/bin/mlmmj-process r,
+ /usr/bin/mlmmj-send px,
+ /usr/bin/mlmmj-sub px,
+ /usr/bin/mlmmj-unsub px,
+ /usr/bin/mlmmj-bounce px,
+ /var/spool/mlmmj/*/control/* r,
+ /var/spool/mlmmj/*/text/* r,
+ /var/spool/mlmmj/*/incoming/* rwl,
+ /var/spool/mlmmj/*/queue/* rwl,
+ /var/spool/mlmmj/*/subconf/* rwl,
+ /var/spool/mlmmj/*/unsubconf/* rwl,
+ /var/spool/mlmmj/*/mlmmj.operation.log rw,
+}
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/apparmor-profiles-2.0/extras/usr.bin.mlmmj-recieve new/apparmor-profiles-2.0/extras/usr.bin.mlmmj-recieve
--- old/apparmor-profiles-2.0/extras/usr.bin.mlmmj-recieve 1970-01-01 01:00:00.000000000 +0100
+++ new/apparmor-profiles-2.0/extras/usr.bin.mlmmj-recieve 2006-05-02 03:26:14.000000000 +0200
@@ -0,0 +1,21 @@
+# $Id: usr.lib.postfix.tlsmgr 12 2006-04-12 21:35:41Z steve-beattie $
+# ------------------------------------------------------------------
+#
+# Copyright (C) 2002-2005 Novell/SUSE
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of version 2 of the GNU General Public
+# License published by the Free Software Foundation.
+#
+# ------------------------------------------------------------------
+# vim:syntax=apparmor
+
+#include <tunables/global>
+
+/usr/bin/mlmmj-recieve {
+ #include <abstractions/base>
+
+ /usr/bin/mlmmj-process px,
+ /usr/bin/mlmmj-recieve r,
+ /var/spool/mlmmj/*/incoming/* w,
+}
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/apparmor-profiles-2.0/extras/usr.bin.mlmmj-send new/apparmor-profiles-2.0/extras/usr.bin.mlmmj-send
--- old/apparmor-profiles-2.0/extras/usr.bin.mlmmj-send 1970-01-01 01:00:00.000000000 +0100
+++ new/apparmor-profiles-2.0/extras/usr.bin.mlmmj-send 2006-05-02 03:26:14.000000000 +0200
@@ -0,0 +1,26 @@
+# $Id: usr.lib.postfix.tlsmgr 12 2006-04-12 21:35:41Z steve-beattie $
+# ------------------------------------------------------------------
+#
+# Copyright (C) 2002-2005 Novell/SUSE
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of version 2 of the GNU General Public
+# License published by the Free Software Foundation.
+#
+# ------------------------------------------------------------------
+# vim:syntax=apparmor
+
+#include <tunables/global>
+
+/usr/bin/mlmmj-send {
+ #include <abstractions/base>
+ #include <abstractions/nameservice>
+
+ /usr/bin/mlmmj-send r,
+ /var/spool/mlmmj/*/archive/* w,
+ /var/spool/mlmmj/*/control/* r,
+ /var/spool/mlmmj/*/index rw,
+ /var/spool/mlmmj/*/queue/* lrw,
+ /var/spool/mlmmj/*/subscribers.d r,
+ /var/spool/mlmmj/*/subscribers.d/* r,
+}
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/apparmor-profiles-2.0/extras/usr.bin.mlmmj-sub new/apparmor-profiles-2.0/extras/usr.bin.mlmmj-sub
--- old/apparmor-profiles-2.0/extras/usr.bin.mlmmj-sub 1970-01-01 01:00:00.000000000 +0100
+++ new/apparmor-profiles-2.0/extras/usr.bin.mlmmj-sub 2006-05-02 03:26:14.000000000 +0200
@@ -0,0 +1,29 @@
+# $Id: usr.lib.postfix.tlsmgr 12 2006-04-12 21:35:41Z steve-beattie $
+# ------------------------------------------------------------------
+#
+# Copyright (C) 2002-2005 Novell/SUSE
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of version 2 of the GNU General Public
+# License published by the Free Software Foundation.
+#
+# ------------------------------------------------------------------
+# vim:syntax=apparmor
+
+#include <tunables/global>
+
+/usr/bin/mlmmj-sub {
+ #include <abstractions/base>
+
+ capability setuid,
+
+ /usr/bin/mlmmj-send px,
+ /usr/bin/mlmmj-sub r,
+ /var/spool/mlmmj/*/control/* r,
+ /var/spool/mlmmj/*/queue/* w,
+ /var/spool/mlmmj/*/subconf/* w,
+ /var/spool/mlmmj/*/subscribers.d rw,
+ /var/spool/mlmmj/*/subscribers.d/* rw,
+ /var/spool/mlmmj/*/subscribers.d/.d.lock lw,
+ /var/spool/mlmmj/*/text/* r,
+}
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/apparmor-profiles-2.0/extras/usr.bin.mlmmj-unsub new/apparmor-profiles-2.0/extras/usr.bin.mlmmj-unsub
--- old/apparmor-profiles-2.0/extras/usr.bin.mlmmj-unsub 1970-01-01 01:00:00.000000000 +0100
+++ new/apparmor-profiles-2.0/extras/usr.bin.mlmmj-unsub 2006-05-02 03:26:14.000000000 +0200
@@ -0,0 +1,28 @@
+# $Id: usr.lib.postfix.tlsmgr 12 2006-04-12 21:35:41Z steve-beattie $
+# ------------------------------------------------------------------
+#
+# Copyright (C) 2002-2005 Novell/SUSE
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of version 2 of the GNU General Public
+# License published by the Free Software Foundation.
+#
+# ------------------------------------------------------------------
+# vim:syntax=apparmor
+
+#include <tunables/global>
+
+/usr/bin/mlmmj-unsub {
+ #include <abstractions/base>
+
+ /usr/bin/mlmmj-unsub r,
+ /usr/bin/mlmmj-send px,
+ /var/spool/mlmmj/*/control/* r,
+ /var/spool/mlmmj/*/text/* r,
+ /var/spool/mlmmj/*/subscribers.d r,
+ /var/spool/mlmmj/*/subscribers.d/* r,
+
+ /var/spool/mlmmj/*/queue/* rwl,
+ /var/spool/mlmmj/*/unsubconf/* rwl,
+ /var/spool/mlmmj/*/subscribers.d/* rwl,
+}
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/apparmor-profiles-2.0/extras/usr.sbin.lighttpd new/apparmor-profiles-2.0/extras/usr.sbin.lighttpd
--- old/apparmor-profiles-2.0/extras/usr.sbin.lighttpd 1970-01-01 01:00:00.000000000 +0100
+++ new/apparmor-profiles-2.0/extras/usr.sbin.lighttpd 2006-05-02 03:26:14.000000000 +0200
@@ -0,0 +1,59 @@
+# $Id: usr.lib.postfix.tlsmgr 12 2006-04-12 21:35:41Z steve-beattie $
+# ------------------------------------------------------------------
+#
+# Copyright (C) 2002-2005 Novell/SUSE
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of version 2 of the GNU General Public
+# License published by the Free Software Foundation.
+#
+# ------------------------------------------------------------------
+# vim:syntax=apparmor
+
+#include <tunables/global>
+
+/usr/sbin/lighttpd {
+ #include <abstractions/base>
+ #include <abstractions/nameservice>
+ #include <abstractions/web-data>
+
+ # needed to change max file descriptors
+ capability sys_resource,
+
+ # network service ;)
+ capability net_bind_service,
+
+ # changing the uid/gid on startup
+ capability setgid,
+ capability setuid,
+
+ /proc/sys/kernel/ngroups_max r,
+
+ /etc/lighttpd r,
+ /etc/lighttpd/*.conf r,
+ /etc/lighttpd/conf.d/*.conf r,
+ /etc/lighttpd/auth.d/* r,
+ /etc/lighttpd/vhosts.d r,
+ /etc/lighttpd/vhosts.d/* r,
+ /usr/sbin/lighttpd ix,
+
+ /usr/lib/lighttpd/*.so r,
+ /usr/lib64/lighttpd/*.so r,
+
+ /etc/ssl/private/*.pem r,
+ # home dir. e.g. used for sockets.
+ /var/lib/lighttpd/ r,
+ /var/lib/lighttpd/** rwl,
+ # mod_compress cache
+ /var/cache/lighttpd/ r,
+ /var/cache/lighttpd/** rwl,
+ # pid
+ /var/run/lighttpd.pid rwl,
+ # log files
+ /var/log/lighttpd/*.log rw,
+ # include_shell
+ /bin/bash ix,
+ /bin/zsh ix,
+ /bin/cat ix,
+}
+
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/apparmor-profiles-2.0/extras/usr.sbin.oidentd new/apparmor-profiles-2.0/extras/usr.sbin.oidentd
--- old/apparmor-profiles-2.0/extras/usr.sbin.oidentd 1970-01-01 01:00:00.000000000 +0100
+++ new/apparmor-profiles-2.0/extras/usr.sbin.oidentd 2006-05-02 03:26:14.000000000 +0200
@@ -0,0 +1,31 @@
+# $Id: usr.lib.postfix.tlsmgr 12 2006-04-12 21:35:41Z steve-beattie $
+# ------------------------------------------------------------------
+#
+# Copyright (C) 2002-2005 Novell/SUSE
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of version 2 of the GNU General Public
+# License published by the Free Software Foundation.
+#
+# ------------------------------------------------------------------
+# vim:syntax=apparmor
+
+#include <tunables/global>
+
+/usr/sbin/oidentd {
+ #include <abstractions/base>
+ #include <abstractions/nameservice>
+
+ capability net_bind_service,
+ capability dac_override,
+ capability dac_read_search,
+
+ /etc/oidentd.conf r,
+ /etc/oidentd_masq.conf r,
+ /proc/net/tcp r,
+ /proc/net/tcp6 r,
+
+ # spoofing feature of oidentd
+ @{HOME}/.ispoof r,
+ @{HOME}/.oidentd.conf r,
+}
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
1
0
Hello community,
here is the log from the commit of package sax2
checked in at Tue May 2 11:37:16 CEST 2006.
--------
--- sax2/sax2.changes 2006-04-27 11:09:29.000000000 +0200
+++ STABLE/sax2/sax2.changes 2006-05-02 08:29:34.000000000 +0200
@@ -1,0 +2,5 @@
+Tue May 2 08:25:26 CEST 2006 - ms(a)suse.de
+
+- added support for Radeon XPRESS 200M (1002:5955) (#171118)
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ sax2.spec ++++++
--- /var/tmp/diff_new_pack.tplBbc/_old 2006-05-02 11:36:34.000000000 +0200
+++ /var/tmp/diff_new_pack.tplBbc/_new 2006-05-02 11:36:34.000000000 +0200
@@ -27,7 +27,7 @@
%endif
Summary: SuSE advanced X Window System-configuration
Version: 7.1
-Release: 120
+Release: 123
Group: System/X11/Utilities
License: Other License(s), see package, GPL
Source: sax2.tar.bz2
@@ -53,7 +53,7 @@
%package -n sax2-tools
Version: 2.7
-Release: 120
+Release: 123
Summary: X Window System tools for SaX2
Group: System/X11/Utilities
Requires: coreutils
@@ -84,7 +84,7 @@
%package -n sax2-ident
Version: 1.7
-Release: 120
+Release: 123
Summary: SaX2 identity and profile information
Group: System/X11/Utilities
Requires: sax2-libsax-perl
@@ -107,7 +107,7 @@
%package -n sax2-gui
Version: 1.7
-Release: 120
+Release: 123
Requires: netpbm sax2-tools qt3 fvwm2 sax2
Summary: SuSE advanced X Window System-configuration GUI
Group: System/X11/Utilities
@@ -124,7 +124,7 @@
%package -n sax2-libsax
Version: 7.1
-Release: 120
+Release: 123
Requires: sax2-tools qt3 fvwm2 sax2
%ifarch %ix86 x86_64
Requires: 855resolution
@@ -144,7 +144,7 @@
%package -n sax2-libsax-devel
Version: 7.1
-Release: 120
+Release: 123
Requires: sax2-libsax
Summary: SaX management library header files for X Window System-configuration development
Group: Development/Libraries/X11
@@ -161,7 +161,7 @@
%package -n sax2-libsax-perl
Version: 7.1
-Release: 120
+Release: 123
Requires: sax2-libsax
Summary: Language binding to use libsax with perl
Group: Development/Libraries/X11
@@ -178,7 +178,7 @@
%package -n sax2-libsax-python
Version: 7.1
-Release: 120
+Release: 123
Requires: sax2-libsax
%{py_requires}
Summary: Language binding to use libsax with python
@@ -198,7 +198,7 @@
%ifnarch ppc64 s390x
%package -n sax2-libsax-java
Version: 7.1
-Release: 120
+Release: 123
Requires: sax2-libsax jre1.2.x
Summary: Language binding to use libsax with java
Group: Development/Libraries/X11
@@ -217,7 +217,7 @@
%endif
%package -n sax2-libsax-csharp
Version: 7.1
-Release: 116
+Release: 119
Requires: sax2-libsax mono
Summary: Language binding to use libsax with C#
Group: Development/Libraries/X11
@@ -498,6 +498,8 @@
/usr/%{_lib}/libSaX.so
%changelog -n sax2
+* Tue May 02 2006 - ms(a)suse.de
+- added support for Radeon XPRESS 200M (1002:5955) (#171118)
* Thu Apr 27 2006 - ms(a)suse.de
- update Identity maps for all archs supporting new
NVidia CPUs (#166065, #159731, #168618, #167367)
++++++ sax2.tar.bz2 ++++++
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/sax/sysp/maps/Identity.map new/sax/sysp/maps/Identity.map
--- old/sax/sysp/maps/Identity.map 2006-04-27 10:42:01.000000000 +0200
+++ new/sax/sysp/maps/Identity.map 2006-05-02 08:27:22.000000000 +0200
@@ -334,8 +334,8 @@
NAME=ATI§DEVICE=RV350 NR§VID=0x1002§DID=0x4e52§SERVER=radeon§EXT=§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=DEFAULT
NAME=ATI§DEVICE=RV350 NR§VID=0x1002§DID=0x4e52§SERVER=fglrx§EXT=dri§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=3D
NAME=ATI§DEVICE=RV350 NS§VID=0x1002§DID=0x4e53§SERVER=radeon§EXT=§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=DEFAULT
-NAME=ATI§DEVICE=RV350 NT§VID=0x1002§DID=0x4e54§SERVER=radeon§EXT=§OPT=§RAW=Option "DynamicClocks" "on" §PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=DEFAULT
-NAME=ATI§DEVICE=RV350 NT§VID=0x1002§DID=0x4e54§SERVER=fglrx§EXT=dri§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=3D
+NAME=ATI§DEVICE=FireGL Mobility T2§VID=0x1002§DID=0x4e54§SERVER=radeon§EXT=§OPT=§RAW=Option "DynamicClocks" "on" §PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=DEFAULT
+NAME=ATI§DEVICE=FireGL Mobility T2§VID=0x1002§DID=0x4e54§SERVER=fglrx§EXT=dri§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=3D
NAME=ATI§DEVICE=RV350 NV§VID=0x1002§DID=0x4e56§SERVER=radeon§EXT=§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=DEFAULT
NAME=ATI§DEVICE=RV350 NV§VID=0x1002§DID=0x4e56§SERVER=fglrx§EXT=dri§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=3D
NAME=ATI§DEVICE=FireGL 8700§VID=0x1002§DID=0x5148§SERVER=radeon§EXT=§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=DEFAULT§SUBVENDOR=0x1002§SUBDEVICE=0x0172
@@ -417,6 +417,8 @@
NAME=ATI§DEVICE=Radeon XPRESS 200M 5A62 (PCIE)§VID=0x1002§DID=0x5A62§SERVER=fglrx§EXT=dri§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=3D
NAME=ATI§DEVICE=Radeon XPRESS 200 5954 (PCIE)§VID=0x1002§DID=0x5954§SERVER=radeon§EXT=§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=DEFAULT
NAME=ATI§DEVICE=Radeon XPRESS 200 5954 (PCIE)§VID=0x1002§DID=0x5954§SERVER=fglrx§EXT=dri§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=3D
+NAME=ATI§DEVICE=Radeon XPRESS 200M 5955 (PCIE)§VID=0x1002§DID=0x5955§SERVER=radeon§EXT=§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=DEFAULT
+NAME=ATI§DEVICE=Radeon XPRESS 200M 5955 (PCIE)§VID=0x1002§DID=0x5955§SERVER=fglrx§EXT=dri§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=3D
NAME=ATI§DEVICE=Radeon XPRESS 200 5974 (PCIE)§VID=0x1002§DID=0x5974§SERVER=radeon§EXT=§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=DEFAULT
NAME=ATI§DEVICE=Radeon XPRESS 200 5974 (PCIE)§VID=0x1002§DID=0x5974§SERVER=fglrx§EXT=dri§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=3D
NAME=ATI§DEVICE=Radeon XPRESS 200M 5975 (PCIE)§VID=0x1002§DID=0x5975§SERVER=radeon§EXT=§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=DEFAULT
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/sax/sysp/maps/arch/Identity.map.i386 new/sax/sysp/maps/arch/Identity.map.i386
--- old/sax/sysp/maps/arch/Identity.map.i386 2006-04-27 10:42:06.000000000 +0200
+++ new/sax/sysp/maps/arch/Identity.map.i386 2006-05-02 08:27:22.000000000 +0200
@@ -334,8 +334,8 @@
NAME=ATI§DEVICE=RV350 NR§VID=0x1002§DID=0x4e52§SERVER=radeon§EXT=§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=DEFAULT
NAME=ATI§DEVICE=RV350 NR§VID=0x1002§DID=0x4e52§SERVER=fglrx§EXT=dri§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=3D
NAME=ATI§DEVICE=RV350 NS§VID=0x1002§DID=0x4e53§SERVER=radeon§EXT=§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=DEFAULT
-NAME=ATI§DEVICE=RV350 NT§VID=0x1002§DID=0x4e54§SERVER=radeon§EXT=§OPT=§RAW=Option "DynamicClocks" "on" §PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=DEFAULT
-NAME=ATI§DEVICE=RV350 NT§VID=0x1002§DID=0x4e54§SERVER=fglrx§EXT=dri§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=3D
+NAME=ATI§DEVICE=FireGL Mobility T2§VID=0x1002§DID=0x4e54§SERVER=radeon§EXT=§OPT=§RAW=Option "DynamicClocks" "on" §PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=DEFAULT
+NAME=ATI§DEVICE=FireGL Mobility T2§VID=0x1002§DID=0x4e54§SERVER=fglrx§EXT=dri§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=3D
NAME=ATI§DEVICE=RV350 NV§VID=0x1002§DID=0x4e56§SERVER=radeon§EXT=§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=DEFAULT
NAME=ATI§DEVICE=RV350 NV§VID=0x1002§DID=0x4e56§SERVER=fglrx§EXT=dri§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=3D
NAME=ATI§DEVICE=FireGL 8700§VID=0x1002§DID=0x5148§SERVER=radeon§EXT=§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=DEFAULT§SUBVENDOR=0x1002§SUBDEVICE=0x0172
@@ -417,6 +417,8 @@
NAME=ATI§DEVICE=Radeon XPRESS 200M 5A62 (PCIE)§VID=0x1002§DID=0x5A62§SERVER=fglrx§EXT=dri§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=3D
NAME=ATI§DEVICE=Radeon XPRESS 200 5954 (PCIE)§VID=0x1002§DID=0x5954§SERVER=radeon§EXT=§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=DEFAULT
NAME=ATI§DEVICE=Radeon XPRESS 200 5954 (PCIE)§VID=0x1002§DID=0x5954§SERVER=fglrx§EXT=dri§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=3D
+NAME=ATI§DEVICE=Radeon XPRESS 200M 5955 (PCIE)§VID=0x1002§DID=0x5955§SERVER=radeon§EXT=§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=DEFAULT
+NAME=ATI§DEVICE=Radeon XPRESS 200M 5955 (PCIE)§VID=0x1002§DID=0x5955§SERVER=fglrx§EXT=dri§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=3D
NAME=ATI§DEVICE=Radeon XPRESS 200 5974 (PCIE)§VID=0x1002§DID=0x5974§SERVER=radeon§EXT=§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=DEFAULT
NAME=ATI§DEVICE=Radeon XPRESS 200 5974 (PCIE)§VID=0x1002§DID=0x5974§SERVER=fglrx§EXT=dri§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=3D
NAME=ATI§DEVICE=Radeon XPRESS 200M 5975 (PCIE)§VID=0x1002§DID=0x5975§SERVER=radeon§EXT=§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=DEFAULT
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/sax/sysp/maps/arch/Identity.map.ia64 new/sax/sysp/maps/arch/Identity.map.ia64
--- old/sax/sysp/maps/arch/Identity.map.ia64 2006-04-27 10:42:06.000000000 +0200
+++ new/sax/sysp/maps/arch/Identity.map.ia64 2006-05-02 08:27:22.000000000 +0200
@@ -227,7 +227,7 @@
NAME=ATI§DEVICE=RV350 NQ§VID=0x1002§DID=0x4e51§SERVER=radeon§EXT=§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=DEFAULT
NAME=ATI§DEVICE=RV350 NR§VID=0x1002§DID=0x4e52§SERVER=radeon§EXT=§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=DEFAULT
NAME=ATI§DEVICE=RV350 NS§VID=0x1002§DID=0x4e53§SERVER=radeon§EXT=§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=DEFAULT
-NAME=ATI§DEVICE=RV350 NT§VID=0x1002§DID=0x4e54§SERVER=radeon§EXT=§OPT=§RAW=Option "DynamicClocks" "on" §PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=DEFAULT
+NAME=ATI§DEVICE=FireGL Mobility T2§VID=0x1002§DID=0x4e54§SERVER=radeon§EXT=§OPT=§RAW=Option "DynamicClocks" "on" §PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=DEFAULT
NAME=ATI§DEVICE=RV350 NV§VID=0x1002§DID=0x4e56§SERVER=radeon§EXT=§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=DEFAULT
NAME=ATI§DEVICE=FireGL 8700§VID=0x1002§DID=0x5148§SERVER=radeon§EXT=§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=DEFAULT§SUBVENDOR=0x1002§SUBDEVICE=0x0172
NAME=ATI§DEVICE=FireGL X1§VID=0x1002§DID=0x4e47§SERVER=radeon§EXT=§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=DEFAULT§SUBVENDOR=0x1002§SUBDEVICE=0x0172
@@ -271,6 +271,7 @@
NAME=ATI§DEVICE=Radeon XPRESS 200 5A61 (PCIE)§VID=0x1002§DID=0x5A61§SERVER=radeon§EXT=§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=DEFAULT
NAME=ATI§DEVICE=Radeon XPRESS 200M 5A62 (PCIE)§VID=0x1002§DID=0x5A62§SERVER=radeon§EXT=§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=DEFAULT
NAME=ATI§DEVICE=Radeon XPRESS 200 5954 (PCIE)§VID=0x1002§DID=0x5954§SERVER=radeon§EXT=§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=DEFAULT
+NAME=ATI§DEVICE=Radeon XPRESS 200M 5955 (PCIE)§VID=0x1002§DID=0x5955§SERVER=radeon§EXT=§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=DEFAULT
NAME=ATI§DEVICE=Radeon XPRESS 200 5974 (PCIE)§VID=0x1002§DID=0x5974§SERVER=radeon§EXT=§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=DEFAULT
NAME=ATI§DEVICE=Radeon XPRESS 200M 5975 (PCIE)§VID=0x1002§DID=0x5975§SERVER=radeon§EXT=§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=DEFAULT
NAME=ATI§DEVICE=FireGL V5000 (RV410) (PCIE)§VID=0x1002§DID=0x5E48§SERVER=radeon§EXT=§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=DEFAULT
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/sax/sysp/maps/arch/Identity.map.ppc new/sax/sysp/maps/arch/Identity.map.ppc
--- old/sax/sysp/maps/arch/Identity.map.ppc 2006-04-27 10:42:04.000000000 +0200
+++ new/sax/sysp/maps/arch/Identity.map.ppc 2006-05-02 08:27:22.000000000 +0200
@@ -227,7 +227,7 @@
NAME=ATI§DEVICE=RV350 NQ§VID=0x1002§DID=0x4e51§SERVER=radeon§EXT=§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=DEFAULT
NAME=ATI§DEVICE=RV350 NR§VID=0x1002§DID=0x4e52§SERVER=radeon§EXT=§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=DEFAULT
NAME=ATI§DEVICE=RV350 NS§VID=0x1002§DID=0x4e53§SERVER=radeon§EXT=§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=DEFAULT
-NAME=ATI§DEVICE=RV350 NT§VID=0x1002§DID=0x4e54§SERVER=radeon§EXT=§OPT=§RAW=Option "DynamicClocks" "on" §PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=DEFAULT
+NAME=ATI§DEVICE=FireGL Mobility T2§VID=0x1002§DID=0x4e54§SERVER=radeon§EXT=§OPT=§RAW=Option "DynamicClocks" "on" §PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=DEFAULT
NAME=ATI§DEVICE=RV350 NV§VID=0x1002§DID=0x4e56§SERVER=radeon§EXT=§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=DEFAULT
NAME=ATI§DEVICE=FireGL 8700§VID=0x1002§DID=0x5148§SERVER=radeon§EXT=§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=DEFAULT§SUBVENDOR=0x1002§SUBDEVICE=0x0172
NAME=ATI§DEVICE=FireGL X1§VID=0x1002§DID=0x4e47§SERVER=radeon§EXT=§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=DEFAULT§SUBVENDOR=0x1002§SUBDEVICE=0x0172
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/sax/sysp/maps/arch/Identity.map.x86_64 new/sax/sysp/maps/arch/Identity.map.x86_64
--- old/sax/sysp/maps/arch/Identity.map.x86_64 2006-04-27 10:42:01.000000000 +0200
+++ new/sax/sysp/maps/arch/Identity.map.x86_64 2006-05-02 08:27:22.000000000 +0200
@@ -334,8 +334,8 @@
NAME=ATI§DEVICE=RV350 NR§VID=0x1002§DID=0x4e52§SERVER=radeon§EXT=§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=DEFAULT
NAME=ATI§DEVICE=RV350 NR§VID=0x1002§DID=0x4e52§SERVER=fglrx§EXT=dri§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=3D
NAME=ATI§DEVICE=RV350 NS§VID=0x1002§DID=0x4e53§SERVER=radeon§EXT=§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=DEFAULT
-NAME=ATI§DEVICE=RV350 NT§VID=0x1002§DID=0x4e54§SERVER=radeon§EXT=§OPT=§RAW=Option "DynamicClocks" "on" §PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=DEFAULT
-NAME=ATI§DEVICE=RV350 NT§VID=0x1002§DID=0x4e54§SERVER=fglrx§EXT=dri§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=3D
+NAME=ATI§DEVICE=FireGL Mobility T2§VID=0x1002§DID=0x4e54§SERVER=radeon§EXT=§OPT=§RAW=Option "DynamicClocks" "on" §PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=DEFAULT
+NAME=ATI§DEVICE=FireGL Mobility T2§VID=0x1002§DID=0x4e54§SERVER=fglrx§EXT=dri§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=3D
NAME=ATI§DEVICE=RV350 NV§VID=0x1002§DID=0x4e56§SERVER=radeon§EXT=§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=DEFAULT
NAME=ATI§DEVICE=RV350 NV§VID=0x1002§DID=0x4e56§SERVER=fglrx§EXT=dri§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=3D
NAME=ATI§DEVICE=FireGL 8700§VID=0x1002§DID=0x5148§SERVER=radeon§EXT=§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=DEFAULT§SUBVENDOR=0x1002§SUBDEVICE=0x0172
@@ -417,6 +417,8 @@
NAME=ATI§DEVICE=Radeon XPRESS 200M 5A62 (PCIE)§VID=0x1002§DID=0x5A62§SERVER=fglrx§EXT=dri§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=3D
NAME=ATI§DEVICE=Radeon XPRESS 200 5954 (PCIE)§VID=0x1002§DID=0x5954§SERVER=radeon§EXT=§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=DEFAULT
NAME=ATI§DEVICE=Radeon XPRESS 200 5954 (PCIE)§VID=0x1002§DID=0x5954§SERVER=fglrx§EXT=dri§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=3D
+NAME=ATI§DEVICE=Radeon XPRESS 200M 5955 (PCIE)§VID=0x1002§DID=0x5955§SERVER=radeon§EXT=§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=DEFAULT
+NAME=ATI§DEVICE=Radeon XPRESS 200M 5955 (PCIE)§VID=0x1002§DID=0x5955§SERVER=fglrx§EXT=dri§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=3D
NAME=ATI§DEVICE=Radeon XPRESS 200 5974 (PCIE)§VID=0x1002§DID=0x5974§SERVER=radeon§EXT=§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=DEFAULT
NAME=ATI§DEVICE=Radeon XPRESS 200 5974 (PCIE)§VID=0x1002§DID=0x5974§SERVER=fglrx§EXT=dri§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=3D
NAME=ATI§DEVICE=Radeon XPRESS 200M 5975 (PCIE)§VID=0x1002§DID=0x5975§SERVER=radeon§EXT=§OPT=§RAW=§PROFILE=§SCRIPT3D=§PACKAGE3D=§FLAG=DEFAULT
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
1
0
Hello community,
here is the log from the commit of package powertweak
checked in at Tue May 2 11:36:20 CEST 2006.
--------
--- powertweak/powertweak.changes 2006-02-20 14:09:17.000000000 +0100
+++ STABLE/powertweak/powertweak.changes 2006-05-02 09:25:31.000000000 +0200
@@ -1,0 +2,6 @@
+Tue May 2 09:22:50 CEST 2006 - mmarek(a)suse.cz
+
+- fix build (missing #include <stdlib.h>)
+- fix last change (forgot to apply the patch)
+
+-------------------------------------------------------------------
New:
----
powertweak-0.99.5-stdlib.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ powertweak.spec ++++++
--- /var/tmp/diff_new_pack.D2Bmqv/_old 2006-05-02 11:35:37.000000000 +0200
+++ /var/tmp/diff_new_pack.D2Bmqv/_new 2006-05-02 11:35:37.000000000 +0200
@@ -13,7 +13,7 @@
Name: powertweak
BuildRequires: gcc-c++ gtk-devel libxml2-devel update-desktop-files
Version: 0.99.5
-Release: 43
+Release: 53
License: GPL
Group: System/Base
URL: http://powertweak.sourceforge.net/
@@ -33,6 +33,7 @@
Patch8: netdev-xml.patch
Patch9: powertweak-atacmds.patch
Patch10: %{name}-%{version}-segfault.patch
+Patch11: %{name}-%{version}-stdlib.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
PreReq: %insserv_prereq %fillup_prereq
@@ -134,6 +135,8 @@
%patch7
%patch8
%patch9
+%patch10
+%patch11
%build
%{?suse_update_config:%{suse_update_config}}
@@ -225,6 +228,9 @@
%{_prefix}/share/powertweak/CPU
%changelog -n powertweak
+* Tue May 02 2006 - mmarek(a)suse.cz
+- fix build (missing #include <stdlib.h>)
+- fix last change (forgot to apply the patch)
* Mon Feb 20 2006 - mmarek(a)suse.cz
- fix segfault in DMI plugin
[#151134] (segfault.patch)
++++++ powertweak-0.99.5-stdlib.patch ++++++
--- src/backends/core/PCILIB/plugin.c
+++ src/backends/core/PCILIB/plugin.c
@@ -6,6 +6,8 @@
* Licensed under the terms of the GNU GPL License version 2.
*/
+#include <stdlib.h>
+
#include <powertweak.h>
#include <pci.h>
#include <pciutils.h>
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
1
0
Hello community,
here is the log from the commit of package nfs-utils
checked in at Tue May 2 11:35:31 CEST 2006.
--------
--- nfs-utils/nfs-utils.changes 2006-04-24 14:58:50.000000000 +0200
+++ STABLE/nfs-utils/nfs-utils.changes 2006-05-02 09:40:22.000000000 +0200
@@ -1,0 +2,5 @@
+Tue May 2 09:39:42 CEST 2006 - okir(a)suse.de
+
+- gracefully handle repeated "rcidmapd stop" calls (#169087)
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ nfs-utils.spec ++++++
--- /var/tmp/diff_new_pack.szSAT1/_old 2006-05-02 11:34:16.000000000 +0200
+++ /var/tmp/diff_new_pack.szSAT1/_new 2006-05-02 11:34:16.000000000 +0200
@@ -15,7 +15,7 @@
URL: http://nfs.sourceforge.net
Summary: Support Utilities for Kernel nfsd
Version: 1.0.7
-Release: 30
+Release: 34
Group: Productivity/Networking/NFS
Obsoletes: knfsd linuxnfs nfsutils
Provides: knfsd linuxnfs nfsutils
@@ -204,6 +204,8 @@
%{_mandir}/man8/rpc.svcgssd.8.gz
%changelog -n nfs-utils
+* Tue May 02 2006 - okir(a)suse.de
+- gracefully handle repeated "rcidmapd stop" calls (#169087)
* Mon Apr 24 2006 - ro(a)suse.de
- nfs-server rc-script: make force-reload do as reload does
(#167152)
++++++ idmapd.init ++++++
--- nfs-utils/idmapd.init 2006-03-23 12:06:26.000000000 +0100
+++ STABLE/nfs-utils/idmapd.init 2006-04-25 13:55:52.000000000 +0200
@@ -62,6 +62,14 @@
mount -t rpc_pipefs rpc_pipefs /var/lib/nfs/rpc_pipefs
}
+function umount_rpc_pipefs {
+
+ case `stat -c "%t" -f /var/lib/nfs/rpc_pipefs` in
+ *67596969*)
+ umount /var/lib/nfs/rpc_pipefs;;
+ esac
+}
+
case "$1" in
start)
echo -n "Starting NFSv4 ID mapping daemon"
@@ -77,7 +85,8 @@
if [ "$NFS4_SUPPORT" = "yes" ]; then
echo -n "Shutting down NFSv4 ID mapping daemon"
killproc -TERM /usr/sbin/rpc.idmapd
- umount /var/lib/nfs/rpc_pipefs
+ rc_status
+ umount_rpc_pipefs
rc_status -v
fi
;;
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
1
0
Hello community,
here is the log from the commit of package gnome-utils
checked in at Tue May 2 11:32:27 CEST 2006.
--------
--- GNOME/gnome-utils/gnome-utils.changes 2006-03-31 22:20:09.000000000 +0200
+++ STABLE/gnome-utils/gnome-utils.changes 2006-05-01 21:21:46.000000000 +0200
@@ -1,0 +2,5 @@
+Mon May 1 21:21:05 CEST 2006 - jpr(a)suse.de
+
+- Fix off-by-one error (#168760)
+
+-------------------------------------------------------------------
New:
----
gnome-utils-dict-read.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ gnome-utils.spec ++++++
--- /var/tmp/diff_new_pack.QiGNmj/_old 2006-05-02 11:31:57.000000000 +0200
+++ /var/tmp/diff_new_pack.QiGNmj/_new 2006-05-02 11:31:57.000000000 +0200
@@ -20,7 +20,7 @@
Obsoletes: gnome-utils2
Autoreqprov: on
Version: 2.12.2
-Release: 22
+Release: 30
Summary: Basic Utilities for the GNOME 2.x Desktop
Source: ftp://ftp.gnome.org/pub/gnome/sources/gnome-utils/2.11/%{name}-%{version}.t…
Source1: gnome-screenshot.desktop
@@ -29,6 +29,7 @@
Patch21: gnome-utils-strict-aliasing.patch
Patch22: gnome-utils-logview-findbar-return.patch
Patch23: gnome-utils-screenshot-abspath.patch
+Patch24: gnome-utils-dict-read.patch
URL: http://www.gnome.org
BuildRoot: %{_tmppath}/%{name}-%{version}-build
PreReq: filesystem gconf2 /usr/bin/touch
@@ -121,6 +122,7 @@
%patch21
%patch22
%patch23
+%patch24
gnome-patch-translation-update
%build
@@ -202,6 +204,8 @@
%{prefix}/share/pixmaps
%changelog -n gnome-utils
+* Mon May 01 2006 - jpr(a)suse.de
+- Fix off-by-one error (#168760)
* Fri Mar 31 2006 - danw(a)suse.de
- DTRT if the user types an absolute path into the filename entry.
[#162460]
++++++ gnome-utils-dict-read.patch ++++++
--- gdictsrc/dict.c
+++ gdictsrc/dict.c
@@ -149,7 +149,10 @@
if (context->write_ptr > context->read_ptr)
memmove (context->read_buf, context->read_ptr,
context->write_ptr - context->read_ptr);
- context->write_ptr -= context->read_ptr - context->read_buf;
+ if (context->read_ptr > context->write_ptr)
+ context->write_ptr = context->read_buf;
+ else
+ context->write_ptr -= context->read_ptr - context->read_buf;
context->read_ptr = context->read_buf;
res = g_io_channel_read (context->channel, context->write_ptr,
@@ -188,7 +191,10 @@
if (!context->channel) return NULL;
while (1) {
- end_ptr = strchr (context->read_ptr, '\r');
+ end_ptr = NULL;
+
+ if (context->read_ptr <= context->write_ptr)
+ end_ptr = strchr (context->read_ptr, '\r');
if (end_ptr == NULL || end_ptr > context->write_ptr) {
if (cycle_buffer (context)) return NULL;
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
1
0
Hello community,
here is the log from the commit of package gnome-system-monitor
checked in at Tue May 2 11:31:52 CEST 2006.
--------
--- GNOME/gnome-system-monitor/gnome-system-monitor.changes 2006-03-29 18:16:31.000000000 +0200
+++ STABLE/gnome-system-monitor/gnome-system-monitor.changes 2006-05-01 14:56:21.000000000 +0200
@@ -1,0 +2,5 @@
+Mon May 1 14:54:38 CEST 2006 - jpr(a)suse.de
+
+- Remember the devices page if its the last used (#171137
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ gnome-system-monitor.spec ++++++
--- /var/tmp/diff_new_pack.B9JC09/_old 2006-05-02 11:31:35.000000000 +0200
+++ /var/tmp/diff_new_pack.B9JC09/_new 2006-05-02 11:31:35.000000000 +0200
@@ -16,7 +16,7 @@
Group: System/GUI/GNOME
Autoreqprov: on
Version: 2.12.2
-Release: 19
+Release: 27
Source0: ftp://ftp.gnome.org/pub/GNOME/sources/gnome-system-monitor/2.0/%{name}-%{ve…
Source1: n-side.png
URL: http://www.gnome.org
@@ -103,6 +103,8 @@
%{sysconfdir}/gconf/schemas/gnome-system-monitor.schemas
%changelog -n gnome-system-monitor
+* Mon May 01 2006 - jpr(a)suse.de
+- Remember the devices page if its the last used (#171137
* Wed Mar 29 2006 - jpr(a)suse.de
- Fix page numbers to reflect prepended page (fixes #161815, #157490)
* Tue Mar 28 2006 - joeshaw(a)suse.de
++++++ gnome-system-monitor-sysinfo.patch ++++++
--- /var/tmp/diff_new_pack.B9JC09/_old 2006-05-02 11:31:35.000000000 +0200
+++ /var/tmp/diff_new_pack.B9JC09/_new 2006-05-02 11:31:35.000000000 +0200
@@ -461,3 +461,34 @@
vbox1 = create_proc_view (procdata);
gtk_widget_show (vbox1);
tab_label1 = gtk_label_new (_("Processes"));
+--- src/procdialogs.c
++++ src/procdialogs.c
+@@ -799,7 +799,7 @@
+ g_signal_connect (G_OBJECT (dialog), "response",
+ G_CALLBACK (prefs_dialog_button_pressed), procdata);
+
+- if (procdata->config.current_tab == 0)
++ if (procdata->config.current_tab <= 1)
+ gtk_notebook_set_current_page (GTK_NOTEBOOK (notebook), 0);
+ else
+ gtk_notebook_set_current_page (GTK_NOTEBOOK (notebook), 1);
+--- src/procman.c
++++ src/procman.c
+@@ -73,7 +73,7 @@
+ GConfValue *value = gconf_entry_get_value (entry);
+
+ procdata->config.whose_process = gconf_value_get_int (value);
+- procdata->config.whose_process = CLAMP (procdata->config.whose_process, 0, 2);
++ procdata->config.whose_process = CLAMP (procdata->config.whose_process, 0, 3);
+ proctable_clear_tree (procdata);
+ proctable_update_all (procdata);
+
+@@ -385,7 +385,7 @@
+ pd->config.graph_update_interval = MAX (pd->config.graph_update_interval, 250);
+ pd->config.disks_update_interval = MAX (pd->config.disks_update_interval, 1000);
+ pd->config.whose_process = CLAMP (pd->config.whose_process, 0, 2);
+- pd->config.current_tab = CLAMP (pd->config.current_tab, 0, 2);
++ pd->config.current_tab = CLAMP (pd->config.current_tab, 0, 3);
+
+ /* Determinie number of cpus since libgtop doesn't really tell you*/
+ pd->config.num_cpus = 0;
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
1
0
Hello community,
here is the log from the commit of package compiz
checked in at Tue May 2 11:31:29 CEST 2006.
--------
--- compiz/compiz.changes 2006-04-30 15:42:27.000000000 +0200
+++ STABLE/compiz/compiz.changes 2006-05-01 22:40:27.000000000 +0200
@@ -1,0 +2,6 @@
+Mon May 1 22:39:56 CEST 2006 - danw(a)suse.de
+
+- Update xgl-settings tarball to latest version, for compiz 0.10
+ and xgl-hardware-list 060501
+
+-------------------------------------------------------------------
Old:
----
xgl-settings-0.2.tar.bz2
xgl-settings-scale.patch
New:
----
xgl-settings-0.3.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ compiz.spec ++++++
--- /var/tmp/diff_new_pack.i3Zaeo/_old 2006-05-02 11:31:16.000000000 +0200
+++ /var/tmp/diff_new_pack.i3Zaeo/_new 2006-05-02 11:31:16.000000000 +0200
@@ -18,19 +18,18 @@
Requires: libpng libdrm gconf2 gtk2 gnome-desktop control-center2 libsvg libsvg-cairo libwnck
Autoreqprov: on
Version: cvs_060430
-Release: 1
+Release: 4
Summary: OpenGL window and compositing manager.
BuildRoot: %{_tmppath}/%{name}-%{version}-build
ExclusiveArch: %ix86 x86_64 ppc ppc64 ia64
### /bin/ls *.tar.{gz,bz2} 2>/dev/null|perl -ne 'print "Source$n: ".$_; $n++;'
Source: Mesa-CVS-20060413.tar.bz2
Source1: compiz-0.0.10.tar.bz2
-Source2: xgl-settings-0.2.tar.bz2
+Source2: xgl-settings-0.3.tar.gz
### /bin/ls *.{diff,patch} | perl -ne 'print "Patch$n: ".$_; $n++;'
Patch: Mesa-6.4.1-x86_64-fixes-1.patch
Patch1: Mesa-configs.diff
Patch2: mesa-tfp-defines-1.patch
-Patch3: xgl-settings-scale.patch
%description
Compiz is an OpenGL compositing manager that use
@@ -52,7 +51,6 @@
patch -d Mesa -p0 < $RPM_SOURCE_DIR/Mesa-6.4.1-x86_64-fixes-1.patch
patch -d Mesa -p0 < $RPM_SOURCE_DIR/Mesa-configs.diff
patch -d Mesa -p0 < $RPM_SOURCE_DIR/mesa-tfp-defines-1.patch
-patch -d xgl-* -p0 < $RPM_SOURCE_DIR/xgl-settings-scale.patch
%build
PREFIX=/usr
@@ -137,6 +135,9 @@
/etc/opt/gnome/gconf/schemas/compiz.schemas
%changelog -n compiz
+* Mon May 01 2006 - danw(a)suse.de
+- Update xgl-settings tarball to latest version, for compiz 0.10
+ and xgl-hardware-list 060501
* Sun Apr 30 2006 - dreveman(a)suse.de
- Remove compiz-gconf.patch and compiz-schema.patch as they are
no longer needed.
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
1
0
Hello community,
here is the log from the commit of package checkmedia
checked in at Tue May 2 11:31:10 CEST 2006.
--------
--- checkmedia/checkmedia.changes 2006-03-14 11:22:50.000000000 +0100
+++ STABLE/checkmedia/checkmedia.changes 2006-05-02 11:26:41.000000000 +0200
@@ -1,0 +2,5 @@
+Tue May 2 11:22:50 CEST 2006 - snwint(a)suse.de
+
+- perl's getopt is more picky now (#170322)
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ checkmedia.spec ++++++
--- /var/tmp/diff_new_pack.xPwqAr/_old 2006-05-02 11:30:59.000000000 +0200
+++ /var/tmp/diff_new_pack.xPwqAr/_new 2006-05-02 11:30:59.000000000 +0200
@@ -16,7 +16,7 @@
Autoreqprov: on
Summary: Check Installation Media
Version: 2.1
-Release: 6
+Release: 14
Source: %{name}-%{version}.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
@@ -50,6 +50,8 @@
%doc COPYING
%changelog -n checkmedia
+* Tue May 02 2006 - snwint(a)suse.de
+- perl's getopt is more picky now (#170322)
* Tue Mar 14 2006 - snwint(a)suse.de
- align md5sum buffers (#157711)
* Wed Jan 25 2006 - mls(a)suse.de
++++++ checkmedia-2.1.tar.bz2 ++++++
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/checkmedia-2.1/tagmedia new/checkmedia-2.1/tagmedia
--- old/checkmedia-2.1/tagmedia 2005-12-16 12:18:27.000000000 +0100
+++ new/checkmedia-2.1/tagmedia 2006-05-02 11:20:26.000000000 +0200
@@ -20,7 +20,6 @@
@opt_remove_tag;
GetOptions(
- 'help' => undef,
'show' => \$opt_show,
'md5|md5sum' => \$opt_md5,
'check' => \$opt_check,
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
1
0
Hello community,
here is the log from the commit of package udev
checked in at Tue May 2 00:08:53 CEST 2006.
--------
--- udev/udev.changes 2006-04-27 23:24:49.000000000 +0200
+++ STABLE/udev/udev.changes 2006-05-01 20:23:24.000000000 +0200
@@ -1,0 +2,5 @@
+Mon May 1 20:22:51 CEST 2006 - kay.sievers(a)suse.de
+
+- fix offsetof build failure with new glibc
+
+-------------------------------------------------------------------
New:
----
udev-offsetof-01.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ udev.spec ++++++
--- /var/tmp/diff_new_pack.PHMtSU/_old 2006-05-02 00:08:47.000000000 +0200
+++ /var/tmp/diff_new_pack.PHMtSU/_new 2006-05-02 00:08:47.000000000 +0200
@@ -13,7 +13,7 @@
Name: udev
URL: ftp://ftp.kernel.org/pub/linux/utils/kernel/hotplug/
Version: 085
-Release: 26
+Release: 27
License: GPL
Group: System/Kernel
Summary: A rule based device node and kernel event manager
@@ -30,6 +30,7 @@
Patch6: udevtrigger-fix-order-01.patch
Patch7: udev-initial-seqnum-01.patch
Patch8: udev-mkdir-udev-dir-01.patch
+Patch9: udev-offsetof-01.patch
#
Source1: path_id
#
@@ -78,6 +79,7 @@
%patch6 -p1
%patch7 -p1
%patch8 -p1
+%patch9 -p1
%build
make V=1 EXTRAS=%{extras} STRIPCMD= OPTFLAGS="${RPM_OPT_FLAGS}" all
@@ -230,6 +232,8 @@
%attr(600,root,root) %dev(c,10,200) /lib/udev/devices/fwmonitor
%changelog -n udev
+* Mon May 01 2006 - kay.sievers(a)suse.de
+- fix offsetof build failure with new glibc
* Thu Apr 27 2006 - kay.sievers(a)suse.de
- don't use startproc, we need to wait for udevd to be initialized
create /dev/.udev directory from udevd for seqnum export (#169103)
++++++ udev-offsetof-01.patch ++++++
diff --git a/udevcontrol.c b/udevcontrol.c
index 6d91adc..8add09e 100644
--- a/udevcontrol.c
+++ b/udevcontrol.c
@@ -18,10 +18,6 @@
*
*/
-#include <sys/types.h>
-#include <sys/socket.h>
-#include <sys/wait.h>
-#include <sys/un.h>
#include <time.h>
#include <errno.h>
#include <stdio.h>
@@ -29,7 +25,10 @@
#include <stddef.h>
#include <string.h>
#include <unistd.h>
-#include <linux/stddef.h>
+#include <sys/types.h>
+#include <sys/socket.h>
+#include <sys/wait.h>
+#include <sys/un.h>
#include "udev.h"
#include "udevd.h"
diff --git a/udevmonitor.c b/udevmonitor.c
index 80c4975..fb1f42c 100644
--- a/udevmonitor.c
+++ b/udevmonitor.c
@@ -21,6 +21,7 @@
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
+#include <stddef.h>
#include <string.h>
#include <fcntl.h>
#include <errno.h>
diff --git a/udevsend.c b/udevsend.c
index 1b9860b..9f5059a 100644
--- a/udevsend.c
+++ b/udevsend.c
@@ -30,7 +30,6 @@
#include <sys/socket.h>
#include <sys/wait.h>
#include <sys/un.h>
-#include <linux/stddef.h>
#include "udev.h"
#include "udevd.h"
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
1
0