svn commit: r312763 - in head/sysutils/cfengine-devel: . files
Glen Barber
gjb at FreeBSD.org
Fri Feb 22 13:10:13 UTC 2013
Author: gjb
Date: Fri Feb 22 13:10:11 2013
New Revision: 312763
URL: http://svnweb.freebsd.org/changeset/ports/312763
Log:
- Update to 3.5.0a1
Approved by: cy (maintainer, implicit)
Added:
head/sysutils/cfengine-devel/files/patch-doc-build-stdlib.c (contents, props changed)
Deleted:
head/sysutils/cfengine-devel/files/patch-src-files_select.c
Modified:
head/sysutils/cfengine-devel/Makefile
head/sysutils/cfengine-devel/distinfo
Modified: head/sysutils/cfengine-devel/Makefile
==============================================================================
--- head/sysutils/cfengine-devel/Makefile Fri Feb 22 11:44:20 2013 (r312762)
+++ head/sysutils/cfengine-devel/Makefile Fri Feb 22 13:10:11 2013 (r312763)
@@ -2,8 +2,8 @@
# $FreeBSD$
PORTNAME= cfengine
-PORTVERSION= 3.4.0b2
-PORTREVISION= 2
+PORTVERSION= 3.5.0a1
+PORTREVISION=
PORTEPOCH= 1
CATEGORIES= sysutils
PKGNAMESUFFIX= -devel
@@ -16,8 +16,6 @@ COMMENT= A systems administration tool f
LATEST_LINK= cfengine-devel
FETCH_BEFORE_ARGS= -o ${DISTDIR}/${DISTFILES}
-IGNORE= Development version not branched from cfengine34
-
CONFLICTS= cfengine-[23]*
USE_RC_SUBR= cf-execd cf-serverd
Modified: head/sysutils/cfengine-devel/distinfo
==============================================================================
--- head/sysutils/cfengine-devel/distinfo Fri Feb 22 11:44:20 2013 (r312762)
+++ head/sysutils/cfengine-devel/distinfo Fri Feb 22 13:10:11 2013 (r312763)
@@ -1,2 +1,2 @@
-SHA256 (cfengine-3.4.0b2.tar.gz) = 5150125b56f1235e90b29fbe351a0d09b2148cdcf9ad2c78840d2ce08ff20999
-SIZE (cfengine-3.4.0b2.tar.gz) = 4671105
+SHA256 (cfengine-3.5.0a1.tar.gz) = 47d3eff2321360e0c5287e7a4d2c6d57acb90b279fb28fbc5571307716f0d225
+SIZE (cfengine-3.5.0a1.tar.gz) = 4773963
Added: head/sysutils/cfengine-devel/files/patch-doc-build-stdlib.c
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/sysutils/cfengine-devel/files/patch-doc-build-stdlib.c Fri Feb 22 13:10:11 2013 (r312763)
@@ -0,0 +1,56 @@
+--- docs/tools/build-stdlib.c.orig 2013-02-22 07:56:59.781081590 -0500
++++ docs/tools/build-stdlib.c 2013-02-22 07:56:21.000000000 -0500
+@@ -9,7 +9,7 @@
+ #define true 1
+
+ #include <stdio.h>
+-#include <malloc.h>
++#include <stdlib.h>
+ #include <string.h>
+
+ struct Item
+@@ -25,7 +25,7 @@
+ struct Item *SortItemListNames(struct Item *list);
+ int IncludeManualFile(FILE *fout,char *file);
+
+-
++int
+ main(int argc, char *argv[])
+
+ { FILE *fin,*fout = NULL;
+@@ -35,7 +35,7 @@
+ if ((fin = fopen(argv[1],"r")) == NULL)
+ {
+ printf("Could not open the %s file\n", argv[1]);
+- return;
++ return 1;
+ }
+
+
+@@ -67,7 +67,7 @@
+ if ((fout = fopen(name,"w")) == NULL)
+ {
+ printf("Could not open output file %s\n",name);
+- return;
++ return 1;
+ }
+
+ fprintf(fout,"%s",buffer);
+@@ -92,7 +92,7 @@
+ if ((fout = fopen("CfengineStdLibrary.texinfo","w")) == NULL)
+ {
+ printf("Could not open the CfengineStdLibrary.texinfo file\n");
+- return;
++ return 1;
+ }
+
+ IncludeManualFile(fout,"preamble.texinfo");
+@@ -131,7 +131,7 @@
+ if ((fp = fopen(file,"r")) == NULL)
+ {
+ printf("Could not read %s\n",file);
+- return;
++ return 1;
+ }
+
+ while(!feof(fp))
More information about the svn-ports-head
mailing list