- Update to 1.9.1

PR:		196723
Submitted by:	sascha@root-login.org
Approved by:	michael@ranner.eu(maintainer)
This commit is contained in:
Wen Heping
2015-04-30 08:58:56 +00:00
parent 359138f1a6
commit cf53c396d9
3 changed files with 18 additions and 11 deletions

View File

@@ -2,9 +2,9 @@
# $FreeBSD$
PORTNAME= duply
PORTVERSION= 1.7.4
PORTVERSION= 1.9.1
CATEGORIES= sysutils
MASTER_SITES= SF/ftplicity/${PORTNAME}%20%28simple%20duplicity%29/1.7.x/
MASTER_SITES= SF/ftplicity/${PORTNAME}%20%28simple%20duplicity%29/1.9.x/
DISTNAME= ${PORTNAME}_${PORTVERSION}
EXTRACT_SUFX= .tgz
@@ -17,6 +17,8 @@ LICENSE_FILE= ${WRKSRC}/gpl-2.0.txt
RUN_DEPENDS= duplicity:${PORTSDIR}/sysutils/duplicity \
bash:${PORTSDIR}/shells/bash
USES= python
NO_BUILD= yes
PORTDOCS= INSTALL.txt gpl-2.0.txt
@@ -27,6 +29,7 @@ SUB_FILES= pkg-message periodic_duply
post-patch:
${REINPLACE_CMD} -e "s,/etc/duply,${ETCDIR},g" ${WRKSRC}/duply
${REINPLACE_CMD} -e "s,(python,(${PYTHON_CMD},g" ${WRKSRC}/duply
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/duply ${STAGEDIR}${PREFIX}/bin/duply

View File

@@ -1,2 +1,2 @@
SHA256 (duply_1.7.4.tgz) = 2bbcd6e55fcaa7ae2c416a6ce2d3ae0bc219dd05049d8708ff0e79a3349599e7
SIZE (duply_1.7.4.tgz) = 34887
SHA256 (duply_1.9.1.tgz) = e5f11c5a31a55de24cc5101a6429ea3eac14c0d3f0d6dec344b687089845efc5
SIZE (duply_1.9.1.tgz) = 35883

View File

@@ -44,13 +44,17 @@ case "$backup_duply_enable" in
eval sleep $(jot -r 1 0 ${backup_duply_random})
echo
echo "Duply Backup:"
eval duply ${backup_duply_profile} ${backup_duply_command} ${backup_duply_opt}
if [ $? -gt 0 ]
then
echo "Errors were reported during backup."
rc=3
fi
;;
for duply_profile in ${backup_duply_profile}
do
eval duply ${duply_profile} ${backup_duply_command} ${backup_duply_opt}
if [ $? -gt 0 ]
then
echo "Errors were reported during backup."
rc=3
break
fi
done
;;
esac
exit $rc