From owner-svn-ports-all@freebsd.org Wed Sep 30 02:19:16 2015 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 46D4AA0C731; Wed, 30 Sep 2015 02:19:16 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 271721E00; Wed, 30 Sep 2015 02:19:16 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t8U2JGG7008662; Wed, 30 Sep 2015 02:19:16 GMT (envelope-from vanilla@FreeBSD.org) Received: (from vanilla@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t8U2JEsp008657; Wed, 30 Sep 2015 02:19:14 GMT (envelope-from vanilla@FreeBSD.org) Message-Id: <201509300219.t8U2JEsp008657@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: vanilla set sender to vanilla@FreeBSD.org using -f From: "Vanilla I. Shu" Date: Wed, 30 Sep 2015 02:19:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398195 - in head: . textproc textproc/ctemplate textproc/google-ctemplate 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: Wed, 30 Sep 2015 02:19:16 -0000 Author: vanilla Date: Wed Sep 30 02:19:14 2015 New Revision: 398195 URL: https://svnweb.freebsd.org/changeset/ports/398195 Log: 1: Rename google-ctemplate to ctemplate. 2: Upgrade to 2.3. 3: move to github. Added: head/textproc/ctemplate/ - copied from r398194, head/textproc/google-ctemplate/ Deleted: head/textproc/google-ctemplate/ Modified: head/MOVED head/textproc/Makefile head/textproc/ctemplate/Makefile head/textproc/ctemplate/distinfo head/textproc/ctemplate/pkg-plist Modified: head/MOVED ============================================================================== --- head/MOVED Wed Sep 30 01:06:59 2015 (r398194) +++ head/MOVED Wed Sep 30 02:19:14 2015 (r398195) @@ -7888,3 +7888,4 @@ chinese/joe|editors/joe|2015-09-26|Regul net/linc||2015-09-27|Has expired: Last release in 2003, not used by anything anymore. net/linc-reference||2015-09-27|Has expired: Last release in 2003, not used by anything anymore. x11/xlogout||2015-09-27|Has expired: Useless cruft from 1989 +textproc/google-ctemplate|textproc/ctemplate|2015-09-29|Renamed Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Wed Sep 30 01:06:59 2015 (r398194) +++ head/textproc/Makefile Wed Sep 30 02:19:14 2015 (r398195) @@ -96,6 +96,7 @@ SUBDIR += csb-aspell SUBDIR += csv2latex SUBDIR += csvdiff + SUBDIR += ctemplate SUBDIR += ctpl SUBDIR += ctpp2 SUBDIR += cwtext @@ -215,7 +216,6 @@ SUBDIR += go-text SUBDIR += go.text SUBDIR += goldendict - SUBDIR += google-ctemplate SUBDIR += google-translate-cli SUBDIR += gpp SUBDIR += grap Modified: head/textproc/ctemplate/Makefile ============================================================================== --- head/textproc/google-ctemplate/Makefile Wed Sep 30 01:06:59 2015 (r398194) +++ head/textproc/ctemplate/Makefile Wed Sep 30 02:19:14 2015 (r398195) @@ -1,24 +1,28 @@ # Created by: ijliao # $FreeBSD$ -PORTNAME= google-ctemplate -PORTVERSION= 2.2 -PORTREVISION= 3 +PORTNAME= ctemplate +PORTVERSION= 2.3 CATEGORIES= textproc -MASTER_SITES= GOOGLE_CODE -PROJECTHOST= ctemplate -DISTNAME= ctemplate-${PORTVERSION} MAINTAINER= vanilla@FreeBSD.org COMMENT= Simple but powerful template language for C++ +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/COPYING + OPTIONS_DEFINE= DOCS -USES= libtool pathfix pkgconfig shebangfix +USES= libtool pathfix pkgconfig python shebangfix GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-silent-rules -SHEBANG_FILES= src/template-converter +SHEBANG_FILES= src/template-converter src/htmlparser/generate_fsm.py src/htmlparser/fsm_config.py USE_LDCONFIG= yes +USE_GITHUB= yes +GH_ACCOUNT= OlafvdSpek +GH_TAGNAME= 359a9f0 +python_OLD_CMD= /usr/bin/env python +INSTALL_target= install-strip post-patch: @${REINPLACE_CMD} -e \ @@ -33,6 +37,10 @@ post-patch-DOCS-off: '/install-data-am/ s|install-dist_docDATA||' \ ${WRKSRC}/Makefile.in +post-install: + @${STRIP_CMD} ${STAGEDIR}${LOCALBASE}/lib/libctemplate.so.3.0.0 + @${STRIP_CMD} ${STAGEDIR}${LOCALBASE}/lib/libctemplate_nothreads.so.3.0.0 + regression-test: build @${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} ${MAKEFILE} \ ${MAKE_ARGS} check -C ${WRKSRC} Modified: head/textproc/ctemplate/distinfo ============================================================================== --- head/textproc/google-ctemplate/distinfo Wed Sep 30 01:06:59 2015 (r398194) +++ head/textproc/ctemplate/distinfo Wed Sep 30 02:19:14 2015 (r398195) @@ -1,2 +1,2 @@ -SHA256 (ctemplate-2.2.tar.gz) = 04f3cbc0f7ff36adedc904bce776a0817cc6b704b3c4a04b4df5de66fd7e686f -SIZE (ctemplate-2.2.tar.gz) = 889458 +SHA256 (OlafvdSpek-ctemplate-2.3-359a9f0_GH0.tar.gz) = a93983b5cd68eac296303f5557a6b075ca36be46d1b4dff17e48ca640db39b92 +SIZE (OlafvdSpek-ctemplate-2.3-359a9f0_GH0.tar.gz) = 720754 Modified: head/textproc/ctemplate/pkg-plist ============================================================================== --- head/textproc/google-ctemplate/pkg-plist Wed Sep 30 01:06:59 2015 (r398194) +++ head/textproc/ctemplate/pkg-plist Wed Sep 30 02:19:14 2015 (r398195) @@ -16,12 +16,12 @@ include/ctemplate/template_pathops.h include/ctemplate/template_string.h lib/libctemplate.a lib/libctemplate.so -lib/libctemplate.so.2 -lib/libctemplate.so.2.0.1 +lib/libctemplate.so.3 +lib/libctemplate.so.3.0.0 lib/libctemplate_nothreads.a lib/libctemplate_nothreads.so -lib/libctemplate_nothreads.so.2 -lib/libctemplate_nothreads.so.2.0.1 +lib/libctemplate_nothreads.so.3 +lib/libctemplate_nothreads.so.3.0.0 libdata/pkgconfig/libctemplate.pc libdata/pkgconfig/libctemplate_nothreads.pc %%PORTDOCS%%%%DOCSDIR%%/AUTHORS