Hello community,

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

Package is "texlive-filesystem", Maintainer is ""

Changes:
--------
--- /work/SRC/openSUSE:Factory/texlive-filesystem/texlive-filesystem.changes    
2012-09-19 11:57:38.000000000 +0200
+++ 
/work/SRC/openSUSE:Factory/.texlive-filesystem.new/texlive-filesystem.changes   
    2013-02-07 10:49:33.000000000 +0100
@@ -1,0 +2,6 @@
+Tue Feb  5 09:08:31 UTC 2013 - wer...@suse.de
+
+- Work around missing support of %posttrans scriptlets in libzypp
+  due missing rpm option for not to execute those scriptlets (bnc#773575)
+
+-------------------------------------------------------------------

New:
----
  zypplugin.in

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

Other differences:
------------------
++++++ texlive-filesystem.spec ++++++
--- /var/tmp/diff_new_pack.olUVdD/_old  2013-02-07 10:49:36.000000000 +0100
+++ /var/tmp/diff_new_pack.olUVdD/_new  2013-02-07 10:49:36.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package texlive-filesystem
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
 
 %define texlive_version 2012
 %define texlive_release 20120611
-%define texlive_noarch  57
+%define texlive_noarch  61
 %define texlive_source  texlive-20120611-source
 
 %define __perl_requires                %{nil}
@@ -33,6 +33,7 @@
 Group:          Productivity/Publishing/TeX/Base
 Url:            http://www.tug.org/texlive/
 Requires:       cron
+Requires:       python
 Requires(pre):    /usr/bin/getent
 Requires(pre):    /usr/sbin/groupadd
 Requires(post):   %fillup_prereq
@@ -60,6 +61,7 @@
 Source17:       fc-truetype-texlive.conf
 Source30:       texlive-filesystem-rpmlintrc
 Source31:       dot.dvipsrc
+Source42:       zypplugin.in
 # Download at ftp://ftp.ctan.org/pub/tex/systems/texlive/tlnet/archive/
 # from 20120611
 Source1000:     scheme-basic.tar.xz
@@ -10831,6 +10833,8 @@
        %{_fontcache}/tfm/              root:%{texgrp}  1775
        EOF
 
+    sed -r 's@%%\{_texmfmaindir\}@%{_texmfmaindir}@' < %{S:42} > 
%{buildroot}%{_texmfmaindir}/texconfig/zypper.py
+
     # enviroment
     mkdir -p %{buildroot}%{_sysconfdir}/profile.d
     install -m 0644 %{S:13} %{buildroot}%{_sysconfdir}/profile.d/
@@ -10966,6 +10970,7 @@
 %dir %{_texmfmaindir}/xdvi/pixmap
 %dir %{_texmfmaindir}/texconfig
 %attr(0755,root,root) %{_texmfmaindir}/texconfig/update
+%attr(0755,root,root) %{_texmfmaindir}/texconfig/zypper.py
 %dir %{_texmfmaindir}/asymptote
 %dir %{_texmfmaindir}/asymptote/GUI
 %dir %{_texmfdistdir}






























































































++++++ zypplugin.in ++++++
#!/usr/bin/python
#
# $TEXMFMAIN/texconfig/zypper.py
#
# The substitute for the %posttrans  scriptlets used by rpm.
# Make sure that the update script does its work only once after
# an installation/update transaction as zypper executes rpm for
# each single texlive package.
#
# Copyright (c) 2012 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 subprocess  import call

global update, tagdir
update = "%{_texmfmaindir}/texconfig/update"
tagdir = "/var/run/texlive"

if access(update, F_OK|X_OK):
    if path.isdir(tagdir) and listdir(tagdir):
        call("VERBOSE=false " + update + " 2>&1 || :", shell=True)
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to