Hello community,

here is the log from the commit of package dash for openSUSE:Factory
checked in at Fri Oct 7 10:29:31 CEST 2011.



--------
--- openSUSE:Factory/dash/dash.changes  2011-09-23 01:54:49.000000000 +0200
+++ /mounts/work_src_done/STABLE/dash/dash.changes      2011-10-07 
00:10:41.000000000 +0200
@@ -1,0 +2,32 @@
+Thu Oct  6 22:04:40 UTC 2011 - g...@opensuse.org
+
+- remove libeditline dependency again as libeditline lives in /usr
+
+-------------------------------------------------------------------
+Thu Oct  6 17:50:16 UTC 2011 - g...@opensuse.org
+
+- update to version 0.5.7
+  - optimize dash -c "command" to avoid a fork
+  - improve LINENO support
+  - dotcmd should exit with zero when doing nothing
+  - replace GPL noclobberopen code with the FreeBSD version
+  - do not split the result of tilde expansion
+  - use exit status 127 when the script to run does not exist
+  - document optional open parenthesis for case patterns
+  - use faccessat if available
+- added dash-0.5.7-do-not-close-stderr.patch in order to prevent
+  stderr from being closed when /dev/tty fails to open (backported
+  from upstream git)
+- added
+  dash-remove-backslash-before-in-double-quotes-in-variable.patch
+  which removes a backslash before } in double-quotes in variable
+  as it prevents the closing brace from terminating the
+  substitution (from FreeBSD/Debian)
+
+-------------------------------------------------------------------
+Sun Sep 18 17:17:12 UTC 2011 - jeng...@medozas.de
+
+- Remove redundant tags/sections from specfile
+  (cf. packaging guidelines)
+
+-------------------------------------------------------------------

calling whatdependson for head-i586


Old:
----
  dash-0.5.6.1.tar.bz2

New:
----
  dash-0.5.7-do-not-close-stderr.patch
  dash-0.5.7.tar.gz
  dash-remove-backslash-before-in-double-quotes-in-variable.patch

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

Other differences:
------------------
++++++ dash.spec ++++++
--- /var/tmp/diff_new_pack.tN5TRx/_old  2011-10-07 10:29:26.000000000 +0200
+++ /var/tmp/diff_new_pack.tN5TRx/_new  2011-10-07 10:29:26.000000000 +0200
@@ -1,8 +1,8 @@
 #
-# spec file for package dash (Version 0.5.6.1)
+# spec file for package dash
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
-# Copyright (c) 2010 Guido Berhoerster.
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 Guido Berhoerster.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,12 +20,15 @@
 
 Name:           dash
 Summary:        POSIX-compliant Implementation of /bin/sh
-Version:        0.5.6.1
+Version:        0.5.7
 Release:        1
 License:        BSD3c
 Group:          System/Shells
-AutoReqProv:    on
-Source:         dash-%{version}.tar.bz2
+Source:         dash-%{version}.tar.gz
+# PATCH-FIX-UPSTREAM dash-0.5.7-do-not-close-stderr.patch g...@opensuse.org -- 
Prevents closing stderr when /dev/tty fails to open (backported from upstream 
git)
+Patch0:         dash-0.5.7-do-not-close-stderr.patch
+# PATCH-FIX-UPSTREAM 
dash-remove-backslash-before-in-double-quotes-in-variable.patch 
g...@opensuse.org -- Remove backslash before } in double-quotes in variable as 
it prevents the closing brace from terminating the substitution (from 
FreeBSD/Debian)
+Patch1:         dash-remove-backslash-before-in-double-quotes-in-variable.patch
 Url:            http://gondor.apana.org.au/~herbert/dash/
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 
@@ -33,16 +36,10 @@
 DASH is a POSIX-compliant implementation of /bin/sh that aims to be as small as
 possible without sacrificing speed where possible.
 
-
-Authors:
---------
-    The Regents of the University of California
-    Christos Zoulas
-    Herbert Xu <herb...@gondor.apana.org.au>
-
-
 %prep
 %setup -q
+%patch0 -p1
+%patch1 -p1
 
 %build
 %configure
@@ -55,9 +52,6 @@
 %__mv $RPM_BUILD_ROOT/usr/bin/dash $RPM_BUILD_ROOT/bin
 %__ln_s ../../bin/dash $RPM_BUILD_ROOT/usr/bin/dash
 
-%clean
-rm -rf $RPM_BUILD_ROOT
-
 %files
 %defattr(-,root,root,-)
 %doc ChangeLog

++++++ dash-0.5.7-do-not-close-stderr.patch ++++++
diff -urNp dash-0.5.7.orig/src/jobs.c dash-0.5.7/src/jobs.c
--- dash-0.5.7.orig/src/jobs.c  2011-03-15 08:45:32.000000000 +0100
+++ dash-0.5.7/src/jobs.c       2011-10-06 18:57:38.000000000 +0200
@@ -198,6 +198,9 @@ setjobctl(int on)
                        while (!isatty(fd))
                                if (--fd < 0)
                                        goto out;
+                       fd = dup(fd);
+                       if (fd < 0)
+                               goto out;
                }
                fd = savefd(fd, ofd);
                do { /* while we are in the background */
++++++ dash-remove-backslash-before-in-double-quotes-in-variable.patch ++++++
>From 1ed728ca0ea91cac348e1baf070399df5d575115 Mon Sep 17 00:00:00 2001
From: Jilles Tjoelker <jil...@stack.nl>
Date: Sun, 21 Nov 2010 14:42:22 +0100
Subject: [PARSER] Remove backslash before } in double-quotes in variable

The backslash prevents the closing brace from terminating the
substitution, therefore it should be removed.

FreeBSD sh test expansion/plus-minus2.0 starts working, no other tests
are affected.

Example:
  printf "%s\n" ${$+\}} ${$+"\}"} "${$+\}}"
should print } three times, without backslashes.

Signed-off-by: Jonathan Nieder <jrnie...@gmail.com>
---
 src/parser.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/src/parser.c b/src/parser.c
index 6de27629..4fa8c6d4 100644
--- a/src/parser.c
+++ b/src/parser.c
@@ -926,6 +926,9 @@ readtoken1(int firstc, char const *syntax, char *eofmark, 
int striptabs)
                                                c != '$' && (
                                                        c != '"' ||
                                                        eofmark != NULL
+                                               ) && (
+                                                       c != '}' ||
+                                                       varnest == 0
                                                )
                                        ) {
                                                USTPUTC('\\', out);
-- 
1.7.6

continue with "q"...



Remember to have fun...

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

Reply via email to