From owner-svn-ports-head@freebsd.org Sat Oct 14 14:35:20 2017 Return-Path: Delivered-To: svn-ports-head@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 BA83BE48D1E; Sat, 14 Oct 2017 14:35:20 +0000 (UTC) (envelope-from olgeni@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 948EB721BC; Sat, 14 Oct 2017 14:35:20 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v9EEZJnU046420; Sat, 14 Oct 2017 14:35:19 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v9EEZJ7w046416; Sat, 14 Oct 2017 14:35:19 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201710141435.v9EEZJ7w046416@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Sat, 14 Oct 2017 14:35:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r452068 - in head/lang/lfe: . files X-SVN-Group: ports-head X-SVN-Commit-Author: olgeni X-SVN-Commit-Paths: in head/lang/lfe: . files X-SVN-Commit-Revision: 452068 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Oct 2017 14:35:20 -0000 Author: olgeni Date: Sat Oct 14 14:35:19 2017 New Revision: 452068 URL: https://svnweb.freebsd.org/changeset/ports/452068 Log: Update lang/lfe to version 1.3. PR: 222137 Submitted by: olgeni Approved by: maintainer timeout (> 2 weeks) Added: head/lang/lfe/files/ head/lang/lfe/files/patch-Makefile (contents, props changed) Modified: head/lang/lfe/Makefile head/lang/lfe/distinfo head/lang/lfe/pkg-plist Modified: head/lang/lfe/Makefile ============================================================================== --- head/lang/lfe/Makefile Sat Oct 14 14:34:30 2017 (r452067) +++ head/lang/lfe/Makefile Sat Oct 14 14:35:19 2017 (r452068) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= lfe -PORTVERSION= 1.2.1 +PORTVERSION= 1.3 DISTVERSIONPREFIX= v CATEGORIES= lang @@ -22,14 +22,23 @@ do-build: post-install: @${MKDIR} ${STAGEDIR}${ERL_APP_ROOT}/bin - ${INSTALL_SCRIPT} ${WRKSRC}/bin/lfe ${STAGEDIR}${ERL_APP_ROOT}/bin - ${INSTALL_SCRIPT} ${WRKSRC}/bin/lfec ${STAGEDIR}${ERL_APP_ROOT}/bin - ${INSTALL_SCRIPT} ${WRKSRC}/bin/lfescript ${STAGEDIR}${ERL_APP_ROOT}/bin - ${LN} -sf ${ERL_APP_ROOT:S,^${PREFIX}/,,:S,^,../,}/bin/lfe \ +.for FILE in lfe lfec lfedoc lfescript + ${INSTALL_SCRIPT} ${WRKSRC}/bin/${FILE} ${STAGEDIR}${ERL_APP_ROOT}/bin + ${LN} -sf ${ERL_APP_ROOT:S,^${PREFIX}/,,:S,^,../,}/bin/${FILE} \ ${STAGEDIR}${PREFIX}/bin - ${LN} -sf ${ERL_APP_ROOT:S,^${PREFIX}/,,:S,^,../,}/bin/lfec \ - ${STAGEDIR}${PREFIX}/bin - ${LN} -sf ${ERL_APP_ROOT:S,^${PREFIX}/,,:S,^,../,}/bin/lfescript \ - ${STAGEDIR}${PREFIX}/bin +.endfor +.for FILE in lfe.1 lfescript.1 + ${INSTALL_MAN} ${WRKSRC}/doc/man/${FILE} \ + ${STAGEDIR}${MAN1PREFIX}/man/man1 +.endfor +.for FILE in lfe_lib.3 lfe_doc.3 lfe_clj.3 lfe_cl.3 lfe_gen.3 \ + lfe_io.3 lfe_macro.3 lfe_comp.3 lfe_bits.3 + ${INSTALL_MAN} ${WRKSRC}/doc/man/${FILE} \ + ${STAGEDIR}${MAN1PREFIX}/man/man3 +.endfor +.for FILE in lfe_guide.7 lfe_types.7 + ${INSTALL_MAN} ${WRKSRC}/doc/man/${FILE} \ + ${STAGEDIR}${MAN1PREFIX}/man/man7 +.endfor .include Modified: head/lang/lfe/distinfo ============================================================================== --- head/lang/lfe/distinfo Sat Oct 14 14:34:30 2017 (r452067) +++ head/lang/lfe/distinfo Sat Oct 14 14:35:19 2017 (r452068) @@ -1,3 +1,3 @@ -TIMESTAMP = 1483226722 -SHA256 (rvirding-lfe-v1.2.1_GH0.tar.gz) = 1967c6d3f604ea3ba5013b021426d8a28f45eee47fd208109ef116af2e74ab23 -SIZE (rvirding-lfe-v1.2.1_GH0.tar.gz) = 312444 +TIMESTAMP = 1504794966 +SHA256 (rvirding-lfe-v1.3_GH0.tar.gz) = 1946c0df595ae49ac33fe583f359812dec6349da6acf43c1458534de3267036b +SIZE (rvirding-lfe-v1.3_GH0.tar.gz) = 333045 Added: head/lang/lfe/files/patch-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/lfe/files/patch-Makefile Sat Oct 14 14:35:19 2017 (r452068) @@ -0,0 +1,15 @@ +--- Makefile.orig 2017-09-07 14:59:29 UTC ++++ Makefile +@@ -117,10 +117,9 @@ comp_opts.mk: + + -include comp_opts.mk + +-$(BINDIR)/lfe%: +- $(INSTALL_BIN) $@ $(DESTBINDIR) ++install: compile install-beam install-bin install-man + +-install: compile install-man ++install-beam: + rm -Rf $(DESTEBINDIR) + $(INSTALL_DIR) $(DESTEBINDIR) + $(INSTALL_DATA) $(EBINDIR)/$(APP_DEF) $(DESTEBINDIR) Modified: head/lang/lfe/pkg-plist ============================================================================== --- head/lang/lfe/pkg-plist Sat Oct 14 14:34:30 2017 (r452067) +++ head/lang/lfe/pkg-plist Sat Oct 14 14:35:19 2017 (r452068) @@ -1,8 +1,10 @@ bin/lfe bin/lfec +bin/lfedoc bin/lfescript lib/erlang/lib/lfe-%%VERSION%%/bin/lfe lib/erlang/lib/lfe-%%VERSION%%/bin/lfec +lib/erlang/lib/lfe-%%VERSION%%/bin/lfedoc lib/erlang/lib/lfe-%%VERSION%%/bin/lfescript lib/erlang/lib/lfe-%%VERSION%%/ebin/cl.beam lib/erlang/lib/lfe-%%VERSION%%/ebin/clj.beam @@ -17,6 +19,7 @@ lib/erlang/lib/lfe-%%VERSION%%/ebin/lfe_env.beam lib/erlang/lib/lfe-%%VERSION%%/ebin/lfe_eval.beam lib/erlang/lib/lfe-%%VERSION%%/ebin/lfe_gen.beam lib/erlang/lib/lfe-%%VERSION%%/ebin/lfe_init.beam +lib/erlang/lib/lfe-%%VERSION%%/ebin/lfe_internal.beam lib/erlang/lib/lfe-%%VERSION%%/ebin/lfe_io.beam lib/erlang/lib/lfe-%%VERSION%%/ebin/lfe_io_format.beam lib/erlang/lib/lfe-%%VERSION%%/ebin/lfe_io_pretty.beam @@ -34,6 +37,7 @@ lib/erlang/lib/lfe-%%VERSION%%/ebin/lfe_qlc.beam lib/erlang/lib/lfe-%%VERSION%%/ebin/lfe_scan.beam lib/erlang/lib/lfe-%%VERSION%%/ebin/lfe_shell.beam lib/erlang/lib/lfe-%%VERSION%%/ebin/lfe_trans.beam +lib/erlang/lib/lfe-%%VERSION%%/ebin/lfe_types.beam lib/erlang/lib/lfe-%%VERSION%%/ebin/lfescript.beam lib/erlang/lib/lfe-%%VERSION%%/include/cl.lfe lib/erlang/lib/lfe-%%VERSION%%/include/clj.lfe @@ -56,6 +60,7 @@ lib/erlang/lib/lfe-%%VERSION%%/src/lfe_env.erl lib/erlang/lib/lfe-%%VERSION%%/src/lfe_eval.erl lib/erlang/lib/lfe-%%VERSION%%/src/lfe_gen.erl lib/erlang/lib/lfe-%%VERSION%%/src/lfe_init.erl +lib/erlang/lib/lfe-%%VERSION%%/src/lfe_internal.erl lib/erlang/lib/lfe-%%VERSION%%/src/lfe_io.erl lib/erlang/lib/lfe-%%VERSION%%/src/lfe_io_format.erl lib/erlang/lib/lfe-%%VERSION%%/src/lfe_io_pretty.erl @@ -75,4 +80,18 @@ lib/erlang/lib/lfe-%%VERSION%%/src/lfe_qlc.erl lib/erlang/lib/lfe-%%VERSION%%/src/lfe_scan.xrl lib/erlang/lib/lfe-%%VERSION%%/src/lfe_shell.erl lib/erlang/lib/lfe-%%VERSION%%/src/lfe_trans.erl +lib/erlang/lib/lfe-%%VERSION%%/src/lfe_types.erl lib/erlang/lib/lfe-%%VERSION%%/src/lfescript.erl +man/man1/lfe.1.gz +man/man1/lfescript.1.gz +man/man3/lfe_bits.3.gz +man/man3/lfe_cl.3.gz +man/man3/lfe_clj.3.gz +man/man3/lfe_comp.3.gz +man/man3/lfe_doc.3.gz +man/man3/lfe_gen.3.gz +man/man3/lfe_io.3.gz +man/man3/lfe_lib.3.gz +man/man3/lfe_macro.3.gz +man/man7/lfe_guide.7.gz +man/man7/lfe_types.7.gz