From owner-svn-ports-all@freebsd.org Sun Feb 21 16:06:31 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 03F3EAAFE17; Sun, 21 Feb 2016 16:06:31 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B62F61F9C; Sun, 21 Feb 2016 16:06:30 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u1LG6TS3091269; Sun, 21 Feb 2016 16:06:29 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u1LG6TBe091265; Sun, 21 Feb 2016 16:06:29 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201602211606.u1LG6TBe091265@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Sun, 21 Feb 2016 16:06:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r409301 - in head/ftp/bareftp: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 Feb 2016 16:06:31 -0000 Author: rakuco Date: Sun Feb 21 16:06:29 2016 New Revision: 409301 URL: https://svnweb.freebsd.org/changeset/ports/409301 Log: Update to 0.3.12. Release notes: http://www.bareftp.org/news/?p=279 Basically, there are only translation updates. While here: - Replace patch-configure and patch-po-LINGUAS (which were basically working around the GNU sed-isms in m4/shamrock/i18n.m4) with an awk call in the configure script. Deleted: head/ftp/bareftp/files/patch-po-LINGUAS head/ftp/bareftp/files/patch-src-bareFTP.Protocol.Ftp-ftp-ListParser.cs Modified: head/ftp/bareftp/Makefile head/ftp/bareftp/distinfo head/ftp/bareftp/files/patch-configure head/ftp/bareftp/pkg-plist Modified: head/ftp/bareftp/Makefile ============================================================================== --- head/ftp/bareftp/Makefile Sun Feb 21 16:02:31 2016 (r409300) +++ head/ftp/bareftp/Makefile Sun Feb 21 16:06:29 2016 (r409301) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= bareftp -PORTVERSION= 0.3.11 -PORTREVISION= 1 +PORTVERSION= 0.3.12 CATEGORIES= ftp MASTER_SITES= http://www.bareftp.org/release/ Modified: head/ftp/bareftp/distinfo ============================================================================== --- head/ftp/bareftp/distinfo Sun Feb 21 16:02:31 2016 (r409300) +++ head/ftp/bareftp/distinfo Sun Feb 21 16:06:29 2016 (r409301) @@ -1,2 +1,2 @@ -SHA256 (bareftp-0.3.11.tar.gz) = cafc6cd6f71ee6e6151cadc517349646977d90b372850e194ad505d89aa6682f -SIZE (bareftp-0.3.11.tar.gz) = 630784 +SHA256 (bareftp-0.3.12.tar.gz) = efb22c6b03a84a74ad734e493d5fa711b2c6cfea75db1bedf68c713a31d62727 +SIZE (bareftp-0.3.12.tar.gz) = 642509 Modified: head/ftp/bareftp/files/patch-configure ============================================================================== --- head/ftp/bareftp/files/patch-configure Sun Feb 21 16:02:31 2016 (r409300) +++ head/ftp/bareftp/files/patch-configure Sun Feb 21 16:06:29 2016 (r409301) @@ -1,11 +1,12 @@ ---- configure.orig 2010-04-26 01:53:28.000000000 -0700 -+++ configure 2010-04-26 01:53:48.000000000 -0700 -@@ -12981,7 +12981,7 @@ +Work around the GNU sed-isms below with an awk script. +--- configure.orig 2016-02-21 15:54:50 UTC ++++ configure +@@ -13947,7 +13947,7 @@ done #IT_PROG_INTLTOOL([0.35.0]) #AC_PROG_INTLTOOL([0.21]) - ALL_LINGUAS=`grep -v '^#' $srcdir/po/LINGUAS | sed -r ':a;N;$!ba;s/\n/ /g; s/[ ]+/ /g'` -+ ALL_LINGUAS=`cat $srcdir/po/LINGUAS` ++ ALL_LINGUAS=`grep -v '^#' $srcdir/po/LINGUAS | awk 'BEGIN {OR=""; ORS=" "} {print NR": "$1 }' po/LINGUAS` GETTEXT_PACKAGE=$PACKAGE Modified: head/ftp/bareftp/pkg-plist ============================================================================== --- head/ftp/bareftp/pkg-plist Sun Feb 21 16:02:31 2016 (r409300) +++ head/ftp/bareftp/pkg-plist Sun Feb 21 16:06:29 2016 (r409301) @@ -24,6 +24,7 @@ share/icons/hicolor/36x36/apps/bareftp.p share/icons/hicolor/48x48/apps/bareftp.png share/icons/hicolor/scalable/apps/bareftp.svg %%NLS%%share/locale/ca/LC_MESSAGES/bareftp.mo +%%NLS%%share/locale/cs/LC_MESSAGES/bareftp.mo %%NLS%%share/locale/de/LC_MESSAGES/bareftp.mo %%NLS%%share/locale/el/LC_MESSAGES/bareftp.mo %%NLS%%share/locale/es/LC_MESSAGES/bareftp.mo