Hello community,

here is the log from the commit of package texlive-filesystem for 
openSUSE:Factory checked in at 2014-06-18 07:49:17
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/texlive-filesystem (Old)
 and      /work/SRC/openSUSE:Factory/.texlive-filesystem.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "texlive-filesystem"

Changes:
--------
--- /work/SRC/openSUSE:Factory/texlive-filesystem/texlive-filesystem.changes    
2014-02-15 17:21:57.000000000 +0100
+++ 
/work/SRC/openSUSE:Factory/.texlive-filesystem.new/texlive-filesystem.changes   
    2014-06-18 07:49:19.000000000 +0200
@@ -1,0 +2,5 @@
+Tue May 20 09:23:47 UTC 2014 - sch...@suse.de
+
+- Make sure that texconfig/update is run only once per transaction
+
+-------------------------------------------------------------------

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

Other differences:
------------------



++++++ zypplugin.in ++++++
--- /var/tmp/diff_new_pack.KovLA6/_old  2014-06-18 07:49:21.000000000 +0200
+++ /var/tmp/diff_new_pack.KovLA6/_new  2014-06-18 07:49:21.000000000 +0200
@@ -7,19 +7,19 @@
 # an installation/update transaction as zypper executes rpm for
 # each single texlive package.
 #
-# Copyright (c) 2012 SuSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 # 
 # Author: Werner Fink, 2012
 #
-from os          import listdir, path, access, F_OK,R_OK,X_OK
+from os          import path, remove, access, F_OK,R_OK,X_OK
 from subprocess  import call
 
-global update, tagdir
+global update, tagfile
 update = "%{_texmfdistdir}/texconfig/update"
-tagdir = "/var/run/texlive"
+tagfile = "/var/run/texlive/run-update"
 
-if access(update, F_OK|X_OK):
-    if path.isdir(tagdir) and listdir(tagdir):
-       call("VERBOSE=false " + update + " 2>&1 || :", shell=True)
+if access(update, F_OK|X_OK) and path.exists(tagfile):
+    call("VERBOSE=false " + update + " 2>&1 || :", shell=True)
+    remove(tagfile)

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

Reply via email to