pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/pkgtools/pkg_install/files/lib Recognize "pre" as pre-...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/9e6701f06042
branches:  trunk
changeset: 483326:9e6701f06042
user:      wiz <wiz%pkgsrc.org@localhost>
date:      Wed Nov 10 16:50:39 2004 +0000

description:
Recognize "pre" as pre-release version. Bump version to 20041110.

diffstat:

 pkgtools/pkg_install/files/lib/str.c     |  5 +++--
 pkgtools/pkg_install/files/lib/version.h |  4 ++--
 2 files changed, 5 insertions(+), 4 deletions(-)

diffs (43 lines):

diff -r c12ed0df1bbf -r 9e6701f06042 pkgtools/pkg_install/files/lib/str.c
--- a/pkgtools/pkg_install/files/lib/str.c      Wed Nov 10 16:48:27 2004 +0000
+++ b/pkgtools/pkg_install/files/lib/str.c      Wed Nov 10 16:50:39 2004 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: str.c,v 1.8 2004/11/02 00:44:00 erh Exp $      */
+/*     $NetBSD: str.c,v 1.9 2004/11/10 16:50:39 wiz Exp $      */
 
 #if HAVE_CONFIG_H
 #include "config.h"
@@ -11,7 +11,7 @@
 #if 0
 static const char *rcsid = "Id: str.c,v 1.5 1997/10/08 07:48:21 charnier Exp";
 #else
-__RCSID("$NetBSD: str.c,v 1.8 2004/11/02 00:44:00 erh Exp $");
+__RCSID("$NetBSD: str.c,v 1.9 2004/11/10 16:50:39 wiz Exp $");
 #endif
 #endif
 
@@ -163,6 +163,7 @@
 static const test_t    modifiers[] = {
        {       "alpha",        5,      Alpha   },
        {       "beta",         4,      Beta    },
+       {       "pre",          3,      RC      },
        {       "rc",           2,      RC      },
        {       "pl",           2,      Dot     },
        {       "_",            1,      Dot     },
diff -r c12ed0df1bbf -r 9e6701f06042 pkgtools/pkg_install/files/lib/version.h
--- a/pkgtools/pkg_install/files/lib/version.h  Wed Nov 10 16:48:27 2004 +0000
+++ b/pkgtools/pkg_install/files/lib/version.h  Wed Nov 10 16:50:39 2004 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: version.h,v 1.35 2004/11/02 00:10:15 erh Exp $ */
+/*     $NetBSD: version.h,v 1.36 2004/11/10 16:50:39 wiz Exp $ */
 
 /*
  * Copyright (c) 2001 Thomas Klausner.  All rights reserved.
@@ -33,6 +33,6 @@
 #ifndef _INST_LIB_VERSION_H_
 #define _INST_LIB_VERSION_H_
 
-#define PKGTOOLS_VERSION "20041101"
+#define PKGTOOLS_VERSION "20041110"
 
 #endif /* _INST_LIB_VERSION_H_ */



Home | Main Index | Thread Index | Old Index