pkgsrc-WIP-changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
updated to latest dev version + fixed silly type
Module Name: pkgsrc-wip
Committed By: Nils Ratusznik <nils%NetBSD.org@localhost>
Pushed By: nils
Date: Wed Feb 24 22:13:30 2016 +0100
Changeset: 111f51fceac45d90857d8813e01f47fa301ad508
Modified Files:
logrotate-git/Makefile
logrotate-git/distinfo
Removed Files:
logrotate-git/patches/patch-config.c
Log Message:
updated to latest dev version + fixed silly type
To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=111f51fceac45d90857d8813e01f47fa301ad508
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
diffstat:
logrotate-git/Makefile | 4 +--
logrotate-git/distinfo | 8 +++---
logrotate-git/patches/patch-config.c | 47 ------------------------------------
3 files changed, 6 insertions(+), 53 deletions(-)
diffs:
diff --git a/logrotate-git/Makefile b/logrotate-git/Makefile
index 8601c2e..8455c5d 100644
--- a/logrotate-git/Makefile
+++ b/logrotate-git/Makefile
@@ -1,7 +1,7 @@
# $NetBSD: Makefile,v 1.10 2015/06/29 12:28:55 nils Exp $
DISTNAME= ${GHCOMMIT}
-PKGNAME= logorate-3.9.2
+PKGNAME= logrotate-3.9.2.20160126
CATEGORIES= sysutils
MASTER_SITES= ${MASTER_SITE_GITHUB:=logrotate/logrotate/archive/}
@@ -10,7 +10,7 @@ HOMEPAGE= ${MASTER_SITE_GITHUB:=logrotate/logrotate/}
COMMENT= Daemon to rotate, compress, remove and mail system log files
LICENSE= gnu-gpl-v2
-GHCOMMIT= f6ca8f386d1444ef46b7eaf8b3f8a19f2b548f60
+GHCOMMIT= 73493ec38c5e806fa66d8c3f13259775da6282d9
USE_TOOLS+= gmake gzip:run gunzip:run mail:run automake autoconf
USE_LIBTOOL= yes
GNU_CONFIGURE= yes
diff --git a/logrotate-git/distinfo b/logrotate-git/distinfo
index 01dfa21..dc76ac0 100644
--- a/logrotate-git/distinfo
+++ b/logrotate-git/distinfo
@@ -1,9 +1,9 @@
$NetBSD: distinfo,v 1.10 2015/11/04 01:32:20 agc Exp $
-SHA1 (f6ca8f386d1444ef46b7eaf8b3f8a19f2b548f60.tar.gz) = 888dbb96dc004e029fe8d08356b32ad83a76a61e
-RMD160 (f6ca8f386d1444ef46b7eaf8b3f8a19f2b548f60.tar.gz) = 5933b6bce9475b55fecb55814a7b0943ba219b12
-SHA512 (f6ca8f386d1444ef46b7eaf8b3f8a19f2b548f60.tar.gz) = f2a372dc556504a38b93228ff425f8b812cd951627c0509f42799319b8e1798f24864bd17661d3919afc641c7c640edb32382f7b507c35e8d8d772fd131e5559
-Size (f6ca8f386d1444ef46b7eaf8b3f8a19f2b548f60.tar.gz) = 80878 bytes
+SHA1 (73493ec38c5e806fa66d8c3f13259775da6282d9.tar.gz) = 3f3d87f97fe4f73cd6d14a4db9c8eca8d8ef9803
+RMD160 (73493ec38c5e806fa66d8c3f13259775da6282d9.tar.gz) = d35d5e3d29e05b956fb00cf5ded31fddf403dd0b
+SHA512 (73493ec38c5e806fa66d8c3f13259775da6282d9.tar.gz) = 093f0e285c437ae0d8b49a09ca272ce62fca48e3c398876a79e9b9a95f3c75e4ab4a6cf5942985635c0125fcf37967337c5e70ecbc21e076b6bcc6ea0485842f
+Size (73493ec38c5e806fa66d8c3f13259775da6282d9.tar.gz) = 81099 bytes
SHA1 (patch-config.c) = aa3e8db2d2aec28c1947187fe19e70a292464cd7
SHA1 (patch-examples_logrotate-default) = 57fc602caa5eeaa830f5d2dc0667e11330bcd1e8
SHA1 (patch-examples_logrotate.cron) = 02981cb2b49e3f3f500fcb3db9b5dcb5fe62bddc
diff --git a/logrotate-git/patches/patch-config.c b/logrotate-git/patches/patch-config.c
deleted file mode 100644
index 344fbb2..0000000
--- a/logrotate-git/patches/patch-config.c
+++ /dev/null
@@ -1,47 +0,0 @@
-$NetBSD$
-
-Solves NetBSD compilation errors. Patch submitted upstream (PR #17).
-
---- config.c.orig 2016-01-20 09:47:36.000000000 +0000
-+++ config.c
-@@ -146,11 +146,11 @@ static char *isolateValue(const char *fi
- {
- char *chptr = *startPtr;
-
-- while (chptr - *buf < length && isblank(*chptr))
-+ while (chptr - *buf < length && isblank((unsigned char)*chptr))
- chptr++;
- if (chptr - *buf < length && *chptr == '=') {
- chptr++;
-- while ( chptr - *buf < length && isblank(*chptr))
-+ while ( chptr - *buf < length && isblank((unsigned char)*chptr))
- chptr++;
- }
-
-@@ -167,7 +167,7 @@ static char *isolateValue(const char *fi
- static char *isolateWord(char **strt, char **buf, size_t length) {
- char *endtag, *start;
- start = *strt;
-- while (start - *buf < length && isblank(*start))
-+ while (start - *buf < length && isblank((unsigned char)*start))
- start++;
- endtag = start;
- while (endtag - *buf < length && isalpha((unsigned char)*endtag)) {
-@@ -868,7 +868,7 @@ static int readConfigFile(const char *co
- }
- switch (state) {
- case STATE_DEFAULT:
-- if (isblank(*start))
-+ if (isblank((unsigned char)*start))
- continue;
- /* Skip comment */
- if (*start == '#') {
-@@ -1533,7 +1533,7 @@ static int readConfigFile(const char *co
- break;
- case STATE_DEFINITION_END:
- case STATE_DEFINITION_END | STATE_SKIP_CONFIG:
-- if (isblank(*start))
-+ if (isblank((unsigned char)*start))
- continue;
- if (*start != '\n') {
- message(MESS_ERROR, "%s:%d, unexpected text after }\n",
Home |
Main Index |
Thread Index |
Old Index