Accepting request 78415 from home:elvigia:branches:Base:System
- Update to version 4.0.0 , important changes * The special files /dev/pid, /dev/ppid, /dev/pgrpid and /dev/user are now completely gone. Use PROCINFO instead. * The POSIX 2008 behavior for `sub' and `gsub' are now the default. * In POSIX mode, string comparisons use strcoll/wcscoll. * Gawk now treats ranges of the form [d-h] as if they were in the C OBS-URL: https://build.opensuse.org/request/show/78415 OBS-URL: https://build.opensuse.org/package/show/Base:System/gawk?expand=0&rev=12
This commit is contained in:
parent
366b65f000
commit
090ef72840
@ -1,6 +1,6 @@
|
|||||||
--- doc/gawk.texi.orig
|
--- doc/gawk.texi.orig
|
||||||
+++ doc/gawk.texi
|
+++ doc/gawk.texi
|
||||||
@@ -1406,7 +1406,7 @@ and
|
@@ -1549,7 +1549,7 @@ and
|
||||||
Chuck Toporek.
|
Chuck Toporek.
|
||||||
|
|
||||||
@cindex Berry, Karl
|
@cindex Berry, Karl
|
||||||
@ -9,16 +9,16 @@
|
|||||||
@c @cindex Texinfo
|
@c @cindex Texinfo
|
||||||
Robert J.@: Chassell provided much valuable advice on
|
Robert J.@: Chassell provided much valuable advice on
|
||||||
the use of Texinfo.
|
the use of Texinfo.
|
||||||
@@ -23713,7 +23713,7 @@ did the initial work to convert @command
|
@@ -27180,7 +27180,7 @@ did the initial work to convert @command
|
||||||
GNU Automake and @code{gettext}.
|
GNU Automake and GNU @code{gettext}.
|
||||||
|
|
||||||
@item
|
@item
|
||||||
-@cindex Broder, Alan J.@:
|
-@cindex Broder, Alan J.@:
|
||||||
+@cindex Broder, Alan J.
|
+@cindex Broder, Alan J.
|
||||||
Alan J.@: Broder
|
Alan J.@: Broder
|
||||||
provided the initial version of the @code{asort} function
|
provided the initial version of the @code{asort()} function
|
||||||
as well as the code for the new optional third argument to the
|
as well as the code for the optional third argument to the
|
||||||
--- builtin.c
|
--- builtin.c.orig
|
||||||
+++ builtin.c
|
+++ builtin.c
|
||||||
@@ -29,7 +29,6 @@
|
@@ -29,7 +29,6 @@
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
@ -28,22 +28,21 @@
|
|||||||
#include "floatmagic.h"
|
#include "floatmagic.h"
|
||||||
|
|
||||||
#ifndef CHAR_BIT
|
#ifndef CHAR_BIT
|
||||||
@@ -55,12 +54,6 @@
|
@@ -60,11 +59,6 @@
|
||||||
#define SIZE_MAX ((size_t) -1)
|
static size_t mbc_byte_count(const char *ptr, size_t numchars);
|
||||||
#endif
|
static size_t mbc_char_count(const char *ptr, size_t numbytes);
|
||||||
|
|
||||||
-/* can declare these, since we always use the random shipped with gawk */
|
-/* Can declare these, since we always use the random shipped with gawk */
|
||||||
-extern char *initstate P((unsigned long seed, char *state, long n));
|
-extern char *initstate(unsigned long seed, char *state, long n);
|
||||||
-extern char *setstate P((char *state));
|
-extern char *setstate(char *state);
|
||||||
-extern long random P((void));
|
-extern long random(void);
|
||||||
-extern void srandom P((unsigned long seed));
|
-extern void srandom(unsigned long seed);
|
||||||
-
|
|
||||||
extern NODE **fields_arr;
|
|
||||||
extern int output_is_tty;
|
|
||||||
|
|
||||||
--- Makefile.am
|
extern NODE **args_array;
|
||||||
|
extern int max_args;
|
||||||
|
--- Makefile.am.orig
|
||||||
+++ Makefile.am
|
+++ Makefile.am
|
||||||
@@ -103,11 +103,7 @@
|
@@ -103,11 +103,7 @@ base_sources = \
|
||||||
msg.c \
|
msg.c \
|
||||||
node.c \
|
node.c \
|
||||||
protos.h \
|
protos.h \
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:3900175021e85e92f879ab1f4432d6c94e3594d6dce676d968dd391d4cd3d0e2
|
|
||||||
size 1984127
|
|
3
gawk-4.0.0.tar.bz2
Normal file
3
gawk-4.0.0.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:60ade732b46c6318acd183cfee843e00167e22d8f119889012f1c77d613e5a6b
|
||||||
|
size 2063647
|
11
gawk.changes
11
gawk.changes
@ -1,3 +1,14 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Aug 10 03:58:24 UTC 2011 - crrodriguez@opensuse.org
|
||||||
|
|
||||||
|
- Update to version 4.0.0 , important changes
|
||||||
|
* The special files /dev/pid, /dev/ppid, /dev/pgrpid and /dev/user are
|
||||||
|
now completely gone. Use PROCINFO instead.
|
||||||
|
* The POSIX 2008 behavior for `sub' and `gsub' are now the default.
|
||||||
|
* In POSIX mode, string comparisons use strcoll/wcscoll.
|
||||||
|
* Gawk now treats ranges of the form [d-h] as if they were in the C
|
||||||
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Apr 19 13:46:32 CEST 2011 - dmueller@suse.de
|
Tue Apr 19 13:46:32 CEST 2011 - dmueller@suse.de
|
||||||
|
|
||||||
|
@ -25,11 +25,11 @@ Provides: awk
|
|||||||
AutoReqProv: on
|
AutoReqProv: on
|
||||||
BuildRequires: update-alternatives
|
BuildRequires: update-alternatives
|
||||||
PreReq: %{install_info_prereq} update-alternatives
|
PreReq: %{install_info_prereq} update-alternatives
|
||||||
Version: 3.1.8
|
Version: 4.0.0
|
||||||
Release: 1
|
Release: 1
|
||||||
Summary: GNU awk
|
Summary: GNU awk
|
||||||
Source: gawk-%{version}.tar.bz2
|
Source: gawk-%{version}.tar.bz2
|
||||||
Patch: gawk-%{version}.diff
|
Patch: gawk-3.1.8.diff
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -58,9 +58,7 @@ rm -f doc/*.info
|
|||||||
|
|
||||||
%build
|
%build
|
||||||
AUTOPOINT=true autoreconf --force --install
|
AUTOPOINT=true autoreconf --force --install
|
||||||
./configure CFLAGS="$RPM_OPT_FLAGS" \
|
%configure --libexecdir=%{_libdir}
|
||||||
--prefix=/usr --libexecdir=%{_libdir} \
|
|
||||||
--mandir=%{_mandir} --infodir=%{_infodir}
|
|
||||||
%if %do_profiling
|
%if %do_profiling
|
||||||
make %{?_smp_mflags} CFLAGS="$RPM_OPT_FLAGS %cflags_profile_generate"
|
make %{?_smp_mflags} CFLAGS="$RPM_OPT_FLAGS %cflags_profile_generate"
|
||||||
make check
|
make check
|
||||||
@ -112,6 +110,7 @@ fi
|
|||||||
%endif
|
%endif
|
||||||
%doc AUTHORS COPYING FUTURES LIMITATIONS NEWS POSIX.STD PROBLEMS README
|
%doc AUTHORS COPYING FUTURES LIMITATIONS NEWS POSIX.STD PROBLEMS README
|
||||||
/bin/gawk
|
/bin/gawk
|
||||||
|
%{_bindir}/dgawk
|
||||||
%{_bindir}/gawk
|
%{_bindir}/gawk
|
||||||
%{_bindir}/igawk
|
%{_bindir}/igawk
|
||||||
%{_bindir}/pgawk
|
%{_bindir}/pgawk
|
||||||
|
Loading…
Reference in New Issue
Block a user