Hello community,

here is the log from the commit of package expect for openSUSE:Factory checked 
in at 2012-04-18 12:34:03
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/expect (Old)
 and      /work/SRC/openSUSE:Factory/.expect.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "expect", Maintainer is "m...@suse.com"

Changes:
--------
--- /work/SRC/openSUSE:Factory/expect/expect.changes    2011-12-27 
18:35:08.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.expect.new/expect.changes       2012-04-18 
12:34:08.000000000 +0200
@@ -1,0 +2,5 @@
+Sat Apr 14 15:33:53 UTC 2012 - sch...@linux-m68k.org
+
+- Remove execute permission from logfiles
+
+-------------------------------------------------------------------

New:
----
  expect-log.patch

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

Other differences:
------------------
++++++ expect.spec ++++++
--- /var/tmp/diff_new_pack.vRI19l/_old  2012-04-18 12:34:10.000000000 +0200
+++ /var/tmp/diff_new_pack.vRI19l/_new  2012-04-18 12:34:10.000000000 +0200
@@ -31,6 +31,7 @@
 Source1:        expect-rpmlintrc
 Patch1:         expect.patch
 Patch2:         expect-fixes.patch
+Patch3:         expect-log.patch
 
 %description
 Expect is a tool primarily for automating interactive applications,
@@ -55,6 +56,7 @@
 %setup -q -n %name%version
 %patch1
 %patch2
+%patch3
 
 %build
 autoreconf

++++++ expect-log.patch ++++++
--- exp_log.c
+++ exp_log.c
@@ -374,7 +374,7 @@ expDiagChannelOpen(interp,filename)
        Tcl_DStringAppend(&tsdPtr->diagFilename,filename,-1);
     }
 
-    tsdPtr->diagChannel = Tcl_OpenFileChannel(interp,newfilename,"a",0777);
+    tsdPtr->diagChannel = Tcl_OpenFileChannel(interp,newfilename,"a",0666);
     if (!tsdPtr->diagChannel) {
        Tcl_DStringFree(&tsdPtr->diagFilename);
        return TCL_ERROR;
@@ -499,7 +499,7 @@ expLogChannelOpen(interp,filename,append
        Tcl_DStringAppend(&tsdPtr->logFilename,filename,-1);
     }
 
-    tsdPtr->logChannel = Tcl_OpenFileChannel(interp,newfilename,mode,0777);
+    tsdPtr->logChannel = Tcl_OpenFileChannel(interp,newfilename,mode,0666);
     if (!tsdPtr->logChannel) {
        Tcl_DStringFree(&tsdPtr->logFilename);
        return TCL_ERROR;
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to