Hello community,

here is the log from the commit of package aaa_base for openSUSE:Factory 
checked in at 2014-09-15 17:39:45
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
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        2014-09-09 
18:59:12.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.aaa_base.new/aaa_base.changes   2014-09-15 
17:39:46.000000000 +0200
@@ -1,0 +2,12 @@
+Thu Sep 11 09:47:25 UTC 2014 - [email protected]
+
+- adding more info to chkconfig list mode output for systemd (bnc#863781)
+
+-------------------------------------------------------------------
+Thu Sep 11 09:39:15 UTC 2014 - [email protected]
+
+- remove no longer supported sysconfig settings (bnc#721682)
+- remove /etc/mailcap (bnc#856725, bnc#842938)
+- add Makefile target to update mimetypes
+
+-------------------------------------------------------------------

Old:
----
  aaa_base-13.2+git20140908.1b4153e.tar.xz

New:
----
  aaa_base-13.2+git20140911.61c1681.tar.xz

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

Other differences:
------------------
++++++ aaa_base.spec ++++++
--- /var/tmp/diff_new_pack.rKrjuq/_old  2014-09-15 17:39:48.000000000 +0200
+++ /var/tmp/diff_new_pack.rKrjuq/_new  2014-09-15 17:39:48.000000000 +0200
@@ -14,10 +14,11 @@
 
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
+# icecream 0
 
 
 Name:           aaa_base
-Version:        13.2+git20140908.1b4153e
+Version:        13.2+git20140911.61c1681
 Release:        0
 Url:            https://github.com/openSUSE/aaa_base
 Provides:       aaa_skel = %{version}-%{release}
@@ -141,7 +142,6 @@
 %config /etc/csh.cshrc
 %config /etc/csh.login
 %config /etc/inputrc
-%config /etc/mailcap
 %config /etc/mime.types
 %config /etc/profile
 %config /etc/profile.d/alljava.csh

++++++ aaa_base-13.2+git20140908.1b4153e.tar.xz -> 
aaa_base-13.2+git20140911.61c1681.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/aaa_base-13.2+git20140908.1b4153e/Makefile 
new/aaa_base-13.2+git20140911.61c1681/Makefile
--- old/aaa_base-13.2+git20140908.1b4153e/Makefile      2014-09-08 
10:28:41.000000000 +0200
+++ new/aaa_base-13.2+git20140911.61c1681/Makefile      2014-09-11 
11:42:48.000000000 +0200
@@ -16,4 +16,10 @@
 package:
        obs/mkpackage
 
-.PHONY: all install clean package
+mimetypes:
+       if test -d Apache/apache2; then (cd Apache/apache2 && osc up); else osc 
co Apache/apache2; fi
+       tar --wildcards -Oxjf Apache/apache2/httpd-*.tar.bz2 
'*/docs/conf/mime.types' > mime.types.apache
+       ./mimetypemerge files/etc/mime.types mime.types.apache > mime.types
+       mv mime.types files/etc/mime.types
+
+.PHONY: all install clean package mimetypes
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/aaa_base-13.2+git20140908.1b4153e/aaa_base.post 
new/aaa_base-13.2+git20140911.61c1681/aaa_base.post
--- old/aaa_base-13.2+git20140908.1b4153e/aaa_base.post 2014-09-08 
10:28:41.000000000 +0200
+++ new/aaa_base-13.2+git20140911.61c1681/aaa_base.post 2014-09-11 
11:42:48.000000000 +0200
@@ -8,6 +8,7 @@
 #
 # Run this script in C-Locale, or some tools will fail.
 export LC_ALL=C
+test -n "$FIRST_ARG" || FIRST_ARG=$1
 #
 # to make sure, /var/lib/YaST/bin/bootsetup runs fine, delete
 # /usr/lib/YaST/.configured2
@@ -29,6 +30,33 @@
 %{remove_and_set -n suseconfig CHECK_INITTAB}
 %{remove_and_set -n suseconfig HALT_SOUND}
 
+if [ "$FIRST_ARG" -gt 1 ]; then
+       old_cron_vars="MAX_DAYS_IN_TMP MAX_DAYS_IN_LONG_TMP TMP_DIRS_TO_CLEAR 
LONG_TMP_DIRS_TO_CLEAR OWNER_TO_KEEP_IN_TMP CLEAR_TMP_DIRS_AT_BOOTUP"
+       %{remove_and_set -n cron $old_cron_vars}
+       if [ "$MAX_DAYS_IN_TMP" != '0' -a "$MAX_DAYS_IN_TMP" != 'no' -o \
+            "$MAX_DAYS_IN_LONG_TMP" != '0' -a "$MAX_DAYS_IN_LONG_TMP" != 'no' 
-o \
+            "$CLEAR_TMP_DIRS_AT_BOOTUP" != 'no' ]; then
+               mkdir -p '/var/adm/update-messages'
+               
msgfile='/var/adm/update-messages/%name-%version-%release-tmpdirs'
+               for i in $old_cron_vars; do
+                       eval v=\$$i
+                       [ -n "$v" -a "$v" != 'no' ] || continue
+                       if [ ! -e "$msgfile" ]; then
+                               cat > "$msgfile" <<-EOF
+                               sysconfig settings for cleaning up temporary 
directories are no longer
+                               supported. Some of the features are provided by 
systemd's tmpfile
+                               mechanism instead. Please refer to 'man 
tmpfiles.d' for more
+                               information.
+
+                               Here are the old settings for reference:
+
+                               EOF
+                       fi
+                       echo "$i=$v" >> "$msgfile"
+               done
+       fi
+fi
+
 if ! [ -d /etc/sysconfig ] ; then
   mkdir -p /etc/sysconfig
 fi
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/aaa_base-13.2+git20140908.1b4153e/files/etc/mailcap 
new/aaa_base-13.2+git20140911.61c1681/files/etc/mailcap
--- old/aaa_base-13.2+git20140908.1b4153e/files/etc/mailcap     2014-09-08 
10:28:41.000000000 +0200
+++ new/aaa_base-13.2+git20140911.61c1681/files/etc/mailcap     1970-01-01 
01:00:00.000000000 +0100
@@ -1,109 +0,0 @@
-# Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)
-# 
-# Permission to use, copy, modify, and distribute this material 
-# for any purpose and without fee is hereby granted, provided 
-# that the above copyright notice and this permission notice 
-# appear in all copies, and that the name of Bellcore not be 
-# used in advertising or publicity pertaining to this 
-# material without the specific, prior written permission 
-# of an authorized representative of Bellcore.  BELLCORE 
-# MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY 
-# OF THIS MATERIAL FOR ANY PURPOSE.  IT IS PROVIDED "AS IS", 
-# WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.
-#
-# Prototype Mailcap file
-# Note that support for text & multipart are "built in" to metamail,
-# as are rudimentary support for message, and application.
-# However, any of these may be overridden in mailcap.
-#
-# Note that users may override or extend this with a .mailcap
-# file in their own directory.  However, there is NO NEED
-# for them to copy entries from this file, as metamail will
-# pick up entries from both the system and personal mailcap files.
-#
-
-# NOTE:  This file has been heavily modified for use as an example
-#        configuration file for Lynx
-
-# In the samples given   test=test -n "$DISPLAY"   is used to
-# determine if the current session is X capible by checking
-# for the existance of a DISPLAY environment variable.
-#
-# any system (VMS included) without the DISPLAY environment variable
-# will be assumed to be Non-X
-
-# The following line is for sites where xv understands jpeg but xloadimage 
-# is preferred.
-#
-# the test line specifies that this viewer should only be used if
-# the display variable is set.
-image/jpeg; display %s;  test=test -n "$DISPLAY"
-
-# The following sends all other image subtypes to xloadimage
-#image/*; xloadimage %s; ;  test=test -n "$DISPLAY"
-
-# The following sends all other image subtypes to xv
-image/*; display %s; ;  test=test -n "$DISPLAY"
-
-
-# If you have an interactive Postscript interpreter, you should think 
carefully 
-# before replacing lpr with it in the following line, because PostScript
-# can be an enormous security hole.  It is RELATIVELY harmless
-# when sent to the printer...
-
-# This one is for NON-X
-#application/postscript ; lpr %s \; echo SENT FILE TO PRINTER; ;test=test -z 
"$DISPLAY"
-
-# This one is for X
-#application/postscript ; ghostview %s; ;  test=test -n "$DISPLAY"
-
-# The following should be commented out if you do NOT have safe-tcl
-# and should be uncommented if you DO have safe-tcl
-#application/safe-tcl; swish -safe -messaging -f %s
-
-# A common problem with the mailcap mechanism is getting differential 
-# behavior from different programs.  This problem is compounded by the fact 
-# that some programs, notably Mosaic, do not implement the "test" clause in 
-# mailcap files.  If you are using Lynx and X Mosaic together you should
-# place all X-centric entries before non-X entries.  X Mosaic will use
-# whichever entry is defined first so further entries will be ignored.
-#
-# Lynx exports the environment variable LYNX_VERSION, so if you wish
-# to test if Lynx is running or not you can use 'test -n "LYNX_VERSION"'
-#
-# HTML
-#text/html; lynx -dump %s; copiousoutput; nametemplate=%s.html
-text/html; w3m -I %{charset} -T text/html -dump %s; copiousoutput
-# Compressed
-application/x-gunzip; gunzip -c %s; copiousoutput
-application/x-gzip; gunzip -c %s; copiousoutput
-application/x-bunzip2; bunzip2 -c %s; copiousoutput
-application/x-bzip2; bunzip2 -c %s; copiousoutput
-# Archive directory
-application/x-tar-gz; gunzip -c %s | tar -tf -; copiousoutput
-# Using gs to display postscript is dangerous as postscript may
-# contain statements which are not safe to execute in your
-# ps interpreter gs
-#application/postscript; gv %s
-# Real audio player
-video/*; xine %s
-#video/mpeg; xmpeg %s
-# PGP decoding in case your MUA is not clever enough by itself.
-# Commented out, as you might use a clever mailer or want to use gpg instead.
-#application/pgp; pgp -f < %s | metamail; needsterminal; test=test 
%{encapsulation}=entity
-#application/pgp; pgp %s; needsterminal
-#
-#application/x-uudecode; uudecode -o- %s; copiousoutput
-audio/x-pn-realaudio;/usr/bin/realplay "%u"
-audio/vnd.rn-realaudio;/usr/bin/realplay "%u"
-application/smil;/usr/bin/realplay "%u"
-text/vnd.rn-realtext;/usr/bin/realplay "%u"
-video/vnd.rn-realvideo;/usr/bin/realplay "%u"
-image/vnd.rn-realflash;/usr/bin/realplay "%u"
-application/x-shockwave-flash2-preview;/usr/bin/realplay "%u"
-application/sdp;/usr/bin/realplay "%u"
-application/x-sdp;/usr/bin/realplay "%u"
-application/vnd.rn-realmedia;/usr/bin/realplay "%u"
-image/vnd.rn-realpix;/usr/bin/realplay "%u"
-#
-application/x-java-jnlp-file;/usr/bin/javaws "%s"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/aaa_base-13.2+git20140908.1b4153e/files/usr/bin/chkconfig 
new/aaa_base-13.2+git20140911.61c1681/files/usr/bin/chkconfig
--- old/aaa_base-13.2+git20140908.1b4153e/files/usr/bin/chkconfig       
2014-09-08 10:28:41.000000000 +0200
+++ new/aaa_base-13.2+git20140911.61c1681/files/usr/bin/chkconfig       
2014-09-11 11:42:48.000000000 +0200
@@ -797,6 +797,10 @@
 systemd services. SysV configuration data might be overridden by native
 systemd configuration.
 
+If you want to list systemd services use 'systemctl list-unit-files'.
+To see services enabled on particular target use
+'systemctl list-dependencies [target]'.
+
 EOF
   }
   for $s (@services) {

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to