OpenPKG CVS Repository
http://cvs.openpkg.org/
____________________________________________________________________________
Server: cvs.openpkg.org Name: Christoph Schug
Root: /v/openpkg/cvs Email: [EMAIL PROTECTED]
Module: openpkg-src Date: 25-May-2007 17:09:27
Branch: HEAD Handle: 2007052516092601
Modified files:
openpkg-src/file file.patch file.spec
Log:
upgrading package: file 4.20 -> 4.21
Summary:
Revision Changes Path
1.6 +0 -26 openpkg-src/file/file.patch
1.68 +2 -2 openpkg-src/file/file.spec
____________________________________________________________________________
patch -p0 <<'@@ .'
Index: openpkg-src/file/file.patch
============================================================================
$ cvs diff -u -r1.5 -r1.6 file.patch
--- openpkg-src/file/file.patch 3 Mar 2007 17:18:02 -0000 1.5
+++ openpkg-src/file/file.patch 25 May 2007 15:09:26 -0000 1.6
@@ -9,29 +9,3 @@
marraycount = 0;
/* print silly verbose header for USG compat. */
-Index: src/softmagic.c
---- src/softmagic.c.orig 2007-01-18 06:45:35 +0100
-+++ src/softmagic.c 2007-03-03 18:16:35 +0100
-@@ -1523,10 +1523,22 @@
- }
- else {
- regmatch_t pmatch[1];
-+#ifdef REG_STARTEND
- pmatch[0].rm_so = 0;
- pmatch[0].rm_eo = ms->search.s_len;
- rc = regexec(&rx, (const char *)ms->search.s,
- 1, pmatch, REG_STARTEND);
-+#else
-+ char *search;
-+ if (ms->search.s[ms->search.s_len] == '\0')
-+ rc = regexec(&rx, (const char *)ms->search.s,
1, pmatch, 0);
-+ else {
-+ search = strdup(ms->search.s);
-+ search[ms->search.s_len] = '\0';
-+ rc = regexec(&rx, (const char *)search, 1,
pmatch, 0);
-+ free(search);
-+ }
-+#endif
- switch (rc) {
- case 0:
- ms->search.s += (int)pmatch[0].rm_so;
@@ .
patch -p0 <<'@@ .'
Index: openpkg-src/file/file.spec
============================================================================
$ cvs diff -u -r1.67 -r1.68 file.spec
--- openpkg-src/file/file.spec 3 Mar 2007 17:18:02 -0000 1.67
+++ openpkg-src/file/file.spec 25 May 2007 15:09:27 -0000 1.68
@@ -23,7 +23,7 @@
##
# package version
-%define V_api_c 4.20
+%define V_api_c 4.21
%define V_api_pl 0.84
# package information
@@ -37,7 +37,7 @@
Group: Filesystem
License: BSD
Version: %{V_api_c}
-Release: 20070303
+Release: 20070525
# package options
%option with_perl no
@@ .
______________________________________________________________________
OpenPKG http://openpkg.org
CVS Repository Commit List [email protected]