]> git.pld-linux.org Git - packages/Zope-zopeedit.git/commitdiff
- fixed postun on upgrade, added Requires(post,postun) auto/ac/Zope-zopeedit-0_7-3
authorJakub Bogusz <qboosh@pld-linux.org>
Sun, 2 Nov 2003 12:34:45 +0000 (12:34 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    Zope-zopeedit.spec -> 1.6

Zope-zopeedit.spec

index 616db013709d11ad9f87488e02c7e737a04c77ae..d4f00ed99c84516f2964137fd73ff8ed204e9685 100644 (file)
@@ -11,6 +11,8 @@ Source0:      http://zope.org/Members/Caseman/ExternalEditor/%{version}/%{zope_subnam
 # Source0-md5: 87fe890a7f7c2506db16142bc4789b38
 URL:           http://zope.org/Members/Caseman/ExternalEditor/
 BuildRequires: python >= 2.2
 # Source0-md5: 87fe890a7f7c2506db16142bc4789b38
 URL:           http://zope.org/Members/Caseman/ExternalEditor/
 BuildRequires: python >= 2.2
+Requires(post,postun): grep
+Requires(postun):      fileutils
 %pyrequires_eq python-modules
 Requires:      python-tkinter
 BuildArch:     noarch
 %pyrequires_eq python-modules
 Requires:      python-tkinter
 BuildArch:     noarch
@@ -49,14 +51,18 @@ EOF
 rm -rf $RPM_BUILD_ROOT
 
 %post
 rm -rf $RPM_BUILD_ROOT
 
 %post
-if ! grep -q zopeedit /etc/mailcap ; then
+if ! grep -qs zopeedit /etc/mailcap ; then
+       umask 022
        echo "application/x-zope-edit; /usr/bin/zopeedit %%s ; test=test -x /usr/bin/zopeedit" >> /etc/mailcap
 fi
 
 %postun
        echo "application/x-zope-edit; /usr/bin/zopeedit %%s ; test=test -x /usr/bin/zopeedit" >> /etc/mailcap
 fi
 
 %postun
-if grep -q zopeedit /etc/mailcap ; then
-       sed -e 's@application/x-zope-edit; /usr/bin/zopeedit %%s ; test=test -x /usr/bin/zopeedit@@g' /etc/mailcap >> /etc/mailcap_new
-       mv -f /etc/mailcap_new /etc/mailcap 
+if [ "$1" = "0" ]; then
+       if grep -qs zopeedit /etc/mailcap ; then
+               umask 022
+               grep -v '^application/x-zope-edit; /usr/bin/zopeedit %%s ; test=test -x /usr/bin/zopeedit$' /etc/mailcap >> /etc/mailcap_new
+               mv -f /etc/mailcap_new /etc/mailcap 
+       fi
 fi
 
 %files
 fi
 
 %files
This page took 0.09402 seconds and 4 git commands to generate.