forked from pool/coreutils
Accepting request 150029 from Base:System
- do not require texinfo for building, texlive is a bit too heavy OBS-URL: https://build.opensuse.org/request/show/150029 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/coreutils?expand=0&rev=86
This commit is contained in:
parent
d326a25e75
commit
295f5fd5f5
@ -1,20 +1,27 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Jan 27 08:16:16 UTC 2013 - coolo@suse.com
|
||||||
|
|
||||||
|
- do not require texinfo for building, texlive is a bit too heavy
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Jan 20 13:18:28 UTC 2013 - mail@bernhard-voelker.de
|
Sun Jan 20 13:18:28 UTC 2013 - mail@bernhard-voelker.de
|
||||||
|
|
||||||
- Avoid segmentation fault in "join -i" with long line input (bnc#798541, VUL-1)
|
- Avoid segmentation fault in "join -i" with long line input
|
||||||
|
(bnc#798541, VUL-1, CVE-2013-0223)
|
||||||
|
|
||||||
* src/join.c: Instead of usig unreliable alloca() stack allocation,
|
* src/join.c: Instead of usig unreliable alloca() stack allocation,
|
||||||
use heap allocation via xmalloc()+free().
|
use heap allocation via xmalloc()+free().
|
||||||
(coreutils-i18n.patch, from Philipp Thomas <pth@suse.de>)
|
(coreutils-i18n.patch, from Philipp Thomas <pth@suse.de>)
|
||||||
|
|
||||||
- Avoid segmentation fault in "sort -d" and "sort -M" with long line input
|
- Avoid segmentation fault in "sort -d" and "sort -M" with long line input
|
||||||
(bnc#798538, VUL-1)
|
(bnc#798538, VUL-1, CVE-2013-0221)
|
||||||
|
|
||||||
* src/sort.c: Instead of usig unreliable alloca() stack allocation,
|
* src/sort.c: Instead of usig unreliable alloca() stack allocation,
|
||||||
use heap allocation via xmalloc()+free().
|
use heap allocation via xmalloc()+free().
|
||||||
(coreutils-i18n.patch, from Philipp Thomas <pth@suse.de>)
|
(coreutils-i18n.patch, from Philipp Thomas <pth@suse.de>)
|
||||||
|
|
||||||
- Avoid segmentation fault in "uniq" with long line input (bnc#796243, VUL-1)
|
- Avoid segmentation fault in "uniq" with long line input
|
||||||
|
(bnc#796243, VUL-1, CVE-2013-0222)
|
||||||
|
|
||||||
* src/cut.c: Instead of usig unreliable alloca() stack allocation,
|
* src/cut.c: Instead of usig unreliable alloca() stack allocation,
|
||||||
use heap allocation via xmalloc()+free().
|
use heap allocation via xmalloc()+free().
|
||||||
|
@ -26,9 +26,9 @@ BuildRequires: help2man
|
|||||||
BuildRequires: libacl-devel
|
BuildRequires: libacl-devel
|
||||||
BuildRequires: libcap-devel
|
BuildRequires: libcap-devel
|
||||||
BuildRequires: libselinux-devel
|
BuildRequires: libselinux-devel
|
||||||
|
BuildRequires: makeinfo
|
||||||
BuildRequires: pam-devel
|
BuildRequires: pam-devel
|
||||||
BuildRequires: perl
|
BuildRequires: perl
|
||||||
BuildRequires: texinfo
|
|
||||||
%if "%{name}" == "coreutils-testsuite"
|
%if "%{name}" == "coreutils-testsuite"
|
||||||
BuildRequires: acl
|
BuildRequires: acl
|
||||||
BuildRequires: gdb
|
BuildRequires: gdb
|
||||||
|
@ -1,20 +1,27 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Jan 27 08:16:16 UTC 2013 - coolo@suse.com
|
||||||
|
|
||||||
|
- do not require texinfo for building, texlive is a bit too heavy
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Jan 20 13:18:28 UTC 2013 - mail@bernhard-voelker.de
|
Sun Jan 20 13:18:28 UTC 2013 - mail@bernhard-voelker.de
|
||||||
|
|
||||||
- Avoid segmentation fault in "join -i" with long line input (bnc#798541, VUL-1)
|
- Avoid segmentation fault in "join -i" with long line input
|
||||||
|
(bnc#798541, VUL-1, CVE-2013-0223)
|
||||||
|
|
||||||
* src/join.c: Instead of usig unreliable alloca() stack allocation,
|
* src/join.c: Instead of usig unreliable alloca() stack allocation,
|
||||||
use heap allocation via xmalloc()+free().
|
use heap allocation via xmalloc()+free().
|
||||||
(coreutils-i18n.patch, from Philipp Thomas <pth@suse.de>)
|
(coreutils-i18n.patch, from Philipp Thomas <pth@suse.de>)
|
||||||
|
|
||||||
- Avoid segmentation fault in "sort -d" and "sort -M" with long line input
|
- Avoid segmentation fault in "sort -d" and "sort -M" with long line input
|
||||||
(bnc#798538, VUL-1)
|
(bnc#798538, VUL-1, CVE-2013-0221)
|
||||||
|
|
||||||
* src/sort.c: Instead of usig unreliable alloca() stack allocation,
|
* src/sort.c: Instead of usig unreliable alloca() stack allocation,
|
||||||
use heap allocation via xmalloc()+free().
|
use heap allocation via xmalloc()+free().
|
||||||
(coreutils-i18n.patch, from Philipp Thomas <pth@suse.de>)
|
(coreutils-i18n.patch, from Philipp Thomas <pth@suse.de>)
|
||||||
|
|
||||||
- Avoid segmentation fault in "uniq" with long line input (bnc#796243, VUL-1)
|
- Avoid segmentation fault in "uniq" with long line input
|
||||||
|
(bnc#796243, VUL-1, CVE-2013-0222)
|
||||||
|
|
||||||
* src/cut.c: Instead of usig unreliable alloca() stack allocation,
|
* src/cut.c: Instead of usig unreliable alloca() stack allocation,
|
||||||
use heap allocation via xmalloc()+free().
|
use heap allocation via xmalloc()+free().
|
||||||
|
@ -26,9 +26,9 @@ BuildRequires: help2man
|
|||||||
BuildRequires: libacl-devel
|
BuildRequires: libacl-devel
|
||||||
BuildRequires: libcap-devel
|
BuildRequires: libcap-devel
|
||||||
BuildRequires: libselinux-devel
|
BuildRequires: libselinux-devel
|
||||||
|
BuildRequires: makeinfo
|
||||||
BuildRequires: pam-devel
|
BuildRequires: pam-devel
|
||||||
BuildRequires: perl
|
BuildRequires: perl
|
||||||
BuildRequires: texinfo
|
|
||||||
%if "%{name}" == "coreutils-testsuite"
|
%if "%{name}" == "coreutils-testsuite"
|
||||||
BuildRequires: acl
|
BuildRequires: acl
|
||||||
BuildRequires: gdb
|
BuildRequires: gdb
|
||||||
|
Loading…
Reference in New Issue
Block a user