svn commit: r345675 - in head/sysutils/cbsd: . files

Veniamin Gvozdikov vg at FreeBSD.org
Sat Feb 22 19:45:35 UTC 2014


Author: vg
Date: Sat Feb 22 19:45:34 2014
New Revision: 345675
URL: http://svnweb.freebsd.org/changeset/ports/345675
QAT: https://qat.redports.org/buildarchive/r345675/

Log:
  - Update to 10.0.3
  
  PR:		ports/186864
  Submitted by:	Oleg Ginzburg <olevole at olevole.ru> (maintainer)

Modified:
  head/sysutils/cbsd/Makefile
  head/sysutils/cbsd/distinfo
  head/sysutils/cbsd/files/cbsdd.in
  head/sysutils/cbsd/files/cbsdrsyncd.in

Modified: head/sysutils/cbsd/Makefile
==============================================================================
--- head/sysutils/cbsd/Makefile	Sat Feb 22 19:04:47 2014	(r345674)
+++ head/sysutils/cbsd/Makefile	Sat Feb 22 19:45:34 2014	(r345675)
@@ -1,7 +1,7 @@
 # $FreeBSD$
 
 PORTNAME=	cbsd
-PORTVERSION=	10.0.2
+PORTVERSION=	10.0.3
 CATEGORIES=	sysutils
 MASTER_SITES=	http://www.bsdstore.ru/downloads/ \
 		GH
@@ -19,7 +19,7 @@ LIB_DEPENDS=	libssh2.so:${PORTSDIR}/secu
 USE_GITHUB=	yes
 GH_ACCOUNT=	olevole
 GH_PROJECT=	cbsd
-GH_COMMIT=	6e05bd1
+GH_COMMIT=	2bb261e
 
 USE_RC_SUBR=	cbsdd cbsdrsyncd
 

Modified: head/sysutils/cbsd/distinfo
==============================================================================
--- head/sysutils/cbsd/distinfo	Sat Feb 22 19:04:47 2014	(r345674)
+++ head/sysutils/cbsd/distinfo	Sat Feb 22 19:45:34 2014	(r345675)
@@ -1,2 +1,2 @@
-SHA256 (cbsd-10.0.2.tar.gz) = 3cce46368bcd0e9e5c4f8aec8219059fcc71b0709155d5dfb029d7b9a1ed4547
-SIZE (cbsd-10.0.2.tar.gz) = 325560
+SHA256 (cbsd-10.0.3.tar.gz) = 42c51fcfb2144d6bcebb808024908f2aef9fa5d338bdccbe6e27e83fdd89cb1a
+SIZE (cbsd-10.0.3.tar.gz) = 328334

Modified: head/sysutils/cbsd/files/cbsdd.in
==============================================================================
--- head/sysutils/cbsd/files/cbsdd.in	Sat Feb 22 19:04:47 2014	(r345674)
+++ head/sysutils/cbsd/files/cbsdd.in	Sat Feb 22 19:45:34 2014	(r345675)
@@ -23,16 +23,31 @@ if [ ! -f ${globalconf} ]; then
     exit 1
 fi
 
-. ${globalconf}
-. ${inventory}
-. ${mdtools}
-. ${subr}
+if [ ! -f ${inventory} ]; then
+    echo "cbsd: no such ${inventory}";
+    exit 1
+fi
+
+if [ ! -f ${mdtools} ]; then
+    echo "cbsd: no such ${mdtools}";
+    exit 1
+fi
+
+if [ ! -f ${subr} ]; then
+    echo "cbsd: no such ${subr}";
+    exit 1
+fi
 
 if [ ! -f ${localcbsdconf} ]; then
     echo "cbsd: no such ${localcbsdconf}";
     exit 1
 fi
 
+. ${globalconf}
+. ${inventory}
+. ${mdtools}
+. ${subr}
+
 . ${localcbsdconf}
 
 start_precmd=${name}_prestart

Modified: head/sysutils/cbsd/files/cbsdrsyncd.in
==============================================================================
--- head/sysutils/cbsd/files/cbsdrsyncd.in	Sat Feb 22 19:04:47 2014	(r345674)
+++ head/sysutils/cbsd/files/cbsdrsyncd.in	Sat Feb 22 19:45:34 2014	(r345675)
@@ -10,7 +10,6 @@
 #
 
 . /etc/rc.subr
-. /etc/rc.conf
 
 name="cbsdrsyncd"
 rcvar=cbsdrsyncd_enable


More information about the svn-ports-all mailing list