OpenPKG CVS Repository
http://cvs.openpkg.org/
____________________________________________________________________________
Server: cvs.openpkg.org Name: Ralf S. Engelschall
Root: /e/openpkg/cvs Email: [EMAIL PROTECTED]
Module: openpkg-src openpkg-web openpkg$ Date: 17-Jan-2004 21:05:12
Branch: HEAD Handle: 2004011720050902
Modified files:
openpkg-re/vcheck vc.coreutils
openpkg-src/coreutils coreutils.patch coreutils.spec
openpkg-web news.txt
Log:
upgrading package: coreutils 5.0.91 -> 5.1.1
Summary:
Revision Changes Path
1.16 +1 -1 openpkg-re/vcheck/vc.coreutils
1.6 +0 -61 openpkg-src/coreutils/coreutils.patch
1.31 +2 -2 openpkg-src/coreutils/coreutils.spec
1.8124 +1 -0 openpkg-web/news.txt
____________________________________________________________________________
patch -p0 <<'@@ .'
Index: openpkg-re/vcheck/vc.coreutils
============================================================================
$ cvs diff -u -r1.15 -r1.16 vc.coreutils
--- openpkg-re/vcheck/vc.coreutils 12 Sep 2003 11:26:05 -0000 1.15
+++ openpkg-re/vcheck/vc.coreutils 17 Jan 2004 20:05:09 -0000 1.16
@@ -2,7 +2,7 @@
}
prog coreutils:alpha = {
- version = 5.0.91
+ version = 5.1.1
url = ftp://alpha.gnu.org/gnu/coreutils/
regex = coreutils-(__VER__)\.tar\.(gz|bz2)
}
@@ .
patch -p0 <<'@@ .'
Index: openpkg-src/coreutils/coreutils.patch
============================================================================
$ cvs diff -u -r1.5 -r1.6 coreutils.patch
--- openpkg-src/coreutils/coreutils.patch 23 Oct 2003 12:50:24 -0000 1.5
+++ openpkg-src/coreutils/coreutils.patch 17 Jan 2004 20:05:11 -0000 1.6
@@ -65,64 +65,3 @@
#include "system.h"
-http://www.guninski.com/binls.html
-Workaround to defeat resource starvation using "ls -W hugenumber"
-taken from Conectiva Updates <[EMAIL PROTECTED]>, CLA-2003:768
-Index: src/ls.c
---- src/ls.c.orig 2003-07-27 08:33:36.000000000 +0200
-+++ src/ls.c 2003-10-23 13:45:46.000000000 +0200
-@@ -180,6 +180,8 @@
- #define ID_LENGTH_MAX \
- MAX (LOGIN_NAME_MAX - 1, LONGEST_HUMAN_READABLE)
-
-+#define COLUMNS_MAX 1024
-+
- enum filetype
- {
- unknown DT_INIT (DT_UNKNOWN),
-@@ -1316,7 +1318,7 @@
- {
- long int tmp_long;
- if (xstrtol (p, NULL, 0, &tmp_long, NULL) == LONGINT_OK
-- && 0 < tmp_long && tmp_long <= INT_MAX)
-+ && 0 < tmp_long && tmp_long <= COLUMNS_MAX)
- {
- line_length = (int) tmp_long;
- }
-@@ -1334,7 +1336,7 @@
- struct winsize ws;
-
- if (ioctl (STDOUT_FILENO, TIOCGWINSZ, &ws) != -1 && ws.ws_col != 0)
-- line_length = ws.ws_col;
-+ line_length = MIN(ws.ws_col, COLUMNS_MAX);
- }
- #endif
-
-@@ -1347,7 +1349,7 @@
- {
- long int tmp_long;
- if (xstrtol (p, NULL, 0, &tmp_long, NULL) == LONGINT_OK
-- && 0 <= tmp_long && tmp_long <= INT_MAX)
-+ && 0 <= tmp_long && tmp_long <= COLUMNS_MAX)
- {
- tabsize = (int) tmp_long;
- }
-@@ -1470,7 +1472,7 @@
- {
- long int tmp_long;
- if (xstrtol (optarg, NULL, 0, &tmp_long, NULL) != LONGINT_OK
-- || tmp_long <= 0 || tmp_long > INT_MAX)
-+ || tmp_long <= 0 || tmp_long > COLUMNS_MAX)
- error (EXIT_FAILURE, 0, _("invalid line width: %s"),
- quotearg (optarg));
- line_length = (int) tmp_long;
-@@ -1544,7 +1546,7 @@
- {
- long int tmp_long;
- if (xstrtol (optarg, NULL, 0, &tmp_long, NULL) != LONGINT_OK
-- || tmp_long < 0 || tmp_long > INT_MAX)
-+ || tmp_long < 0 || tmp_long > COLUMNS_MAX)
- error (EXIT_FAILURE, 0, _("invalid tab size: %s"),
- quotearg (optarg));
- tabsize = (int) tmp_long;
-
@@ .
patch -p0 <<'@@ .'
Index: openpkg-src/coreutils/coreutils.spec
============================================================================
$ cvs diff -u -r1.30 -r1.31 coreutils.spec
--- openpkg-src/coreutils/coreutils.spec 23 Oct 2003 12:50:24 -0000 1.30
+++ openpkg-src/coreutils/coreutils.spec 17 Jan 2004 20:05:11 -0000 1.31
@@ -32,8 +32,8 @@
Distribution: OpenPKG [BASE]
Group: Utility
License: GPL
-Version: 5.0.91
-Release: 20031023
+Version: 5.1.1
+Release: 20040117
# package options
%option with_legacy no
@@ .
patch -p0 <<'@@ .'
Index: openpkg-web/news.txt
============================================================================
$ cvs diff -u -r1.8123 -r1.8124 news.txt
--- openpkg-web/news.txt 17 Jan 2004 20:04:57 -0000 1.8123
+++ openpkg-web/news.txt 17 Jan 2004 20:05:09 -0000 1.8124
@@ -1,3 +1,4 @@
+17-Jan-2004: Upgraded package: P<coreutils-5.1.1-20040117>
17-Jan-2004: Upgraded package: P<perl-gd-20040117-20040117>
17-Jan-2004: Upgraded package: P<glpk-4.4-20040117>
17-Jan-2004: Upgraded package: P<pdnsd-1.1.9-20040117>
@@ .
______________________________________________________________________
The OpenPKG Project www.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]