Hello community,

here is the log from the commit of package aaa_base for openSUSE:Factory 
checked in at 2015-05-02 16:11:23
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/aaa_base (Old)
 and      /work/SRC/openSUSE:Factory/.aaa_base.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "aaa_base"

Changes:
--------
--- /work/SRC/openSUSE:Factory/aaa_base/aaa_base.changes        2015-04-28 
20:41:33.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.aaa_base.new/aaa_base.changes   2015-05-02 
16:11:25.000000000 +0200
@@ -1,0 +2,5 @@
+Tue Apr 28 16:20:16 UTC 2015 - [email protected]
+
+- xdg-environment: reduce list in /opt/* to gnome,kde4,kde3 (bnc#910904)
+
+-------------------------------------------------------------------

Old:
----
  aaa_base-13.2+git20150424.4a32a7a.tar.xz

New:
----
  aaa_base-13.2+git20150428.4b7d6b6.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ aaa_base.spec ++++++
--- /var/tmp/diff_new_pack.xOOHxm/_old  2015-05-02 16:11:25.000000000 +0200
+++ /var/tmp/diff_new_pack.xOOHxm/_new  2015-05-02 16:11:25.000000000 +0200
@@ -18,7 +18,7 @@
 
 
 Name:           aaa_base
-Version:        13.2+git20150424.4a32a7a
+Version:        13.2+git20150428.4b7d6b6
 Release:        0
 Url:            https://github.com/openSUSE/aaa_base
 Provides:       aaa_skel = %{version}-%{release}

++++++ aaa_base-13.2+git20150424.4a32a7a.tar.xz -> 
aaa_base-13.2+git20150428.4b7d6b6.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/aaa_base-13.2+git20150424.4a32a7a/files/etc/profile.d/xdg-environment.csh 
new/aaa_base-13.2+git20150428.4b7d6b6/files/etc/profile.d/xdg-environment.csh
--- 
old/aaa_base-13.2+git20150424.4a32a7a/files/etc/profile.d/xdg-environment.csh   
    2015-04-24 10:28:37.000000000 +0200
+++ 
new/aaa_base-13.2+git20150428.4b7d6b6/files/etc/profile.d/xdg-environment.csh   
    2015-04-28 18:18:52.000000000 +0200
@@ -4,7 +4,7 @@
     set XDG_DATA_DIRS=(${XDG_DATA_DIRS:as/:/ /})
 endif
 set nonomatch
-foreach xdgdir (/usr/local/share /usr/share /etc/opt/*/share /opt/*/share 
/usr/share/gnome/help)
+foreach xdgdir (/usr/local/share /usr/share /etc/opt/gnome/share 
/etc/opt/kde4/share /etc/opt/kde3/share /opt/gnome/share /opt/kde4/share 
/opt/kde3/share /usr/share/gnome)
     if ( -d "$xdgdir" ) then
        set -l XDG_DATA_DIRS=($XDG_DATA_DIRS $xdgdir)
     endif
@@ -22,7 +22,7 @@
     set XDG_CONFIG_DIRS=(${XDG_CONFIG_DIRS:as/:/ /})
 endif
 set nonomatch
-foreach xdgdir (/usr/local/etc/xdg /etc/xdg /etc/opt/*/xdg)
+foreach xdgdir (/usr/local/etc/xdg /etc/xdg /etc/opt/gnome/xdg 
/etc/opt/kde4/xdg /etc/opt/kde3/xdg)
     if ( -d "$xdgdir" ) then
        set -l XDG_CONFIG_DIRS=($XDG_CONFIG_DIRS $xdgdir)
     endif
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/aaa_base-13.2+git20150424.4a32a7a/files/etc/profile.d/xdg-environment.sh 
new/aaa_base-13.2+git20150428.4b7d6b6/files/etc/profile.d/xdg-environment.sh
--- 
old/aaa_base-13.2+git20150424.4a32a7a/files/etc/profile.d/xdg-environment.sh    
    2015-04-24 10:28:37.000000000 +0200
+++ 
new/aaa_base-13.2+git20150428.4b7d6b6/files/etc/profile.d/xdg-environment.sh    
    2015-04-28 18:18:52.000000000 +0200
@@ -25,7 +25,7 @@
   if [ "x$ZSH_VERSION" != "x" ] ; then
     setopt nullglob localoptions
   fi
-  for xdgdir in /usr/local/share /usr/share /etc/opt/*/share /opt/*/share 
/usr/share/gnome ; do
+  for xdgdir in /usr/local/share /usr/share /etc/opt/gnome/share 
/etc/opt/kde4/share /etc/opt/kde3/share /opt/gnome/share /opt/kde4/share 
/opt/kde3/share /usr/share/gnome ; do
      if test -d "$xdgdir" && test -d "$xdgdir/applications"; then
         if test -z "$XDG_DATA_DIRS"; then
            XDG_DATA_DIRS="$xdgdir"
@@ -38,7 +38,7 @@
   XDG_DATA_DIRS=$(uniquefy_search_path "$XDG_DATA_DIRS")
   export XDG_DATA_DIRS
   
-  for xdgdir in /usr/local/etc/xdg /etc/xdg /etc/opt/*/xdg ; do
+  for xdgdir in /usr/local/etc/xdg /etc/xdg /etc/opt/gnome/xdg 
/etc/opt/kde4/xdg /etc/opt/kde3/xdg ; do
      if test -d "$xdgdir"; then
         if test -z "$XDG_CONFIG_DIRS"; then
            XDG_CONFIG_DIRS="$xdgdir"


Reply via email to