From owner-svn-ports-all@freebsd.org Thu Jun 25 10:02:26 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 ADA6398D4C7; Thu, 25 Jun 2015 10:02:26 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from svn.freebsd.org (svn.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 921F618B2; Thu, 25 Jun 2015 10:02:26 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t5PA2QN6076596; Thu, 25 Jun 2015 10:02:26 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t5PA2Pd0076592; Thu, 25 Jun 2015 10:02:25 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201506251002.t5PA2Pd0076592@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Thu, 25 Jun 2015 10:02:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r390549 - in head/devel/common_lib: . 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: Thu, 25 Jun 2015 10:02:26 -0000 Author: olgeni Date: Thu Jun 25 10:02:24 2015 New Revision: 390549 URL: https://svnweb.freebsd.org/changeset/ports/390549 Log: Compatibility fix for R18. - Fix portlint warnings - Use DOS2UNIX_GLOB to fix all source files Added: head/devel/common_lib/files/patch-rebar.config (contents, props changed) Modified: head/devel/common_lib/Makefile head/devel/common_lib/files/patch-Makefile head/devel/common_lib/files/patch-app.mk Modified: head/devel/common_lib/Makefile ============================================================================== --- head/devel/common_lib/Makefile Thu Jun 25 10:01:07 2015 (r390548) +++ head/devel/common_lib/Makefile Thu Jun 25 10:02:24 2015 (r390549) @@ -16,9 +16,9 @@ PLIST_SUB= VERSION="${PORTVERSION}" USE_GITHUB= yes GH_ACCOUNT= iamaleksey -DOS2UNIX_FILES= Makefile ALL_TARGET= compile doc USES= dos2unix gmake iconv:build +DOS2UNIX_GLOB= Makefile *.hrl *.erl post-extract: @${REINPLACE_CMD} -e "s@<@<@g" -e "s@>@>@g" ${WRKSRC}/doc/*.ndoc Modified: head/devel/common_lib/files/patch-Makefile ============================================================================== --- head/devel/common_lib/files/patch-Makefile Thu Jun 25 10:01:07 2015 (r390548) +++ head/devel/common_lib/files/patch-Makefile Thu Jun 25 10:02:24 2015 (r390549) @@ -1,4 +1,4 @@ ---- Makefile.orig +--- Makefile.orig 2015-06-25 10:00:03 UTC +++ Makefile @@ -1,3 +1,5 @@ +include app.mk @@ -6,7 +6,7 @@ ###----------------------------------------------------------------------------- ### APPLICATION LAYOUT ###----------------------------------------------------------------------------- -@@ -35,7 +37,10 @@ +@@ -35,7 +37,10 @@ clobber: clean test: ./rebar ct @@ -18,7 +18,7 @@ man: $(MANS) @$(MV) doc/man/$(APPNAME)_overview.3 doc/man/$(APPNAME).1 -@@ -49,14 +54,14 @@ +@@ -49,14 +54,14 @@ pdf: $(PDFS) %.3: %.ndoc @$(CD) doc; $(SED) "s|%MODULES%|`echo $(MODS)`|g" ../$^ | \ $(SED) "s|%VSN%|$(VSN)|g" | $(SED) "s|%APPLICATION%|$(APPNAME)|g" | \ Modified: head/devel/common_lib/files/patch-app.mk ============================================================================== --- head/devel/common_lib/files/patch-app.mk Thu Jun 25 10:01:07 2015 (r390548) +++ head/devel/common_lib/files/patch-app.mk Thu Jun 25 10:02:24 2015 (r390549) @@ -1,6 +1,6 @@ ---- app.mk.orig +--- app.mk.orig 2012-01-11 12:00:24 UTC +++ app.mk -@@ -25,7 +25,7 @@ +@@ -25,7 +25,7 @@ STUB_EFLAGS = -W0 -o stubs CD = cd CP = cp -vf ECHO = echo Added: head/devel/common_lib/files/patch-rebar.config ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/common_lib/files/patch-rebar.config Thu Jun 25 10:02:24 2015 (r390549) @@ -0,0 +1,7 @@ +--- rebar.config.orig 2012-01-11 12:00:24 UTC ++++ rebar.config +@@ -1,3 +1,3 @@ +-{erl_opts, [warnings_as_errors, debug_info]}. ++{erl_opts, [debug_info]}. + + {xref_checks, [undefined_function_calls]}.