From owner-svn-ports-all@freebsd.org Fri Jul 28 18:58:26 2017 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 37013DCC5C3; Fri, 28 Jul 2017 18:58:26 +0000 (UTC) (envelope-from ultima@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 103866C972; Fri, 28 Jul 2017 18:58:25 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v6SIwPrE018934; Fri, 28 Jul 2017 18:58:25 GMT (envelope-from ultima@FreeBSD.org) Received: (from ultima@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v6SIwOeW018928; Fri, 28 Jul 2017 18:58:24 GMT (envelope-from ultima@FreeBSD.org) Message-Id: <201707281858.v6SIwOeW018928@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ultima set sender to ultima@FreeBSD.org using -f From: Richard Gallamore Date: Fri, 28 Jul 2017 18:58:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r446847 - in head: . devel devel/ffcall devel/libffcall lang/gforth lang/qscheme X-SVN-Group: ports-head X-SVN-Commit-Author: ultima X-SVN-Commit-Paths: in head: . devel devel/ffcall devel/libffcall lang/gforth lang/qscheme X-SVN-Commit-Revision: 446847 X-SVN-Commit-Repository: ports 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.23 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: Fri, 28 Jul 2017 18:58:26 -0000 Author: ultima Date: Fri Jul 28 18:58:24 2017 New Revision: 446847 URL: https://svnweb.freebsd.org/changeset/ports/446847 Log: * Renamed ffcall --> libffcall, renamed upstream PR: 220905 Submitted by: Jov (maintainer) Reviewed by: matthew (mentor) Approved by: matthew (mentor) Differential Revision: https://reviews.freebsd.org/D11763 Added: head/devel/libffcall/ - copied from r446846, head/devel/ffcall/ Deleted: head/devel/ffcall/ Modified: head/MOVED head/devel/Makefile head/devel/libffcall/Makefile head/lang/gforth/Makefile head/lang/qscheme/Makefile Modified: head/MOVED ============================================================================== --- head/MOVED Fri Jul 28 18:41:44 2017 (r446846) +++ head/MOVED Fri Jul 28 18:58:24 2017 (r446847) @@ -9470,3 +9470,4 @@ security/sshguard-pf|security/sshguard|2017-07-20|Merg security/sshguard-null|security/sshguard|2017-07-20|Merged with security/sshguard audio/gstreamer1-plugins-mad|audio/gstreamer1-plugins-mpg123|2017-07-21|The GStreamer 1 mad plugin was removed, the mpg123 plugin supplies the same functionality x11-toolkits/gstreamer1-plugins-gtksink|x11-toolkits/gstreamer1-plugins-gtk|2017-07-21|The GStreamer 1 gtksink plugin was renamed +devel/ffcall|devel/libffcall|2017-07-28|Project was renamed Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Jul 28 18:41:44 2017 (r446846) +++ head/devel/Makefile Fri Jul 28 18:58:24 2017 (r446847) @@ -592,7 +592,6 @@ SUBDIR += fb-adb SUBDIR += fb303 SUBDIR += fc++ - SUBDIR += ffcall SUBDIR += fga SUBDIR += fhist SUBDIR += fib @@ -1333,6 +1332,7 @@ SUBDIR += libfaketime SUBDIR += libfastcommon SUBDIR += libfastjson + SUBDIR += libffcall SUBDIR += libffi SUBDIR += libfirm SUBDIR += libflatarray Modified: head/devel/libffcall/Makefile ============================================================================== --- head/devel/ffcall/Makefile Fri Jul 28 18:41:44 2017 (r446846) +++ head/devel/libffcall/Makefile Fri Jul 28 18:58:24 2017 (r446847) @@ -1,11 +1,10 @@ # Created by: jagapen@home.com # $FreeBSD$ -PORTNAME= ffcall +PORTNAME= libffcall PORTVERSION= 1.13 CATEGORIES= devel -MASTER_SITES= GNU/lib${PORTNAME} -DISTNAME= lib${PORTNAME}-${PORTVERSION} +MASTER_SITES= GNU/${PORTNAME} MAINTAINER= amutu@amutu.com COMMENT= Foreign function call libraries Modified: head/lang/gforth/Makefile ============================================================================== --- head/lang/gforth/Makefile Fri Jul 28 18:41:44 2017 (r446846) +++ head/lang/gforth/Makefile Fri Jul 28 18:58:24 2017 (r446847) @@ -13,7 +13,7 @@ COMMENT= Fast and portable Forth system LIB_DEPENDS= libffi.so.6:devel/libffi \ libltdl.so:devel/libltdl -BUILD_DEPENDS= ${LOCALBASE}/include/avcall.h:devel/ffcall +BUILD_DEPENDS= ${LOCALBASE}/include/avcall.h:devel/libffcall GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include Modified: head/lang/qscheme/Makefile ============================================================================== --- head/lang/qscheme/Makefile Fri Jul 28 18:41:44 2017 (r446846) +++ head/lang/qscheme/Makefile Fri Jul 28 18:58:24 2017 (r446847) @@ -12,7 +12,7 @@ COMMENT= Small and fast Scheme interpreter LICENSE= GPLv2 -LIB_DEPENDS= libavcall.so:devel/ffcall \ +LIB_DEPENDS= libavcall.so:devel/libffcall \ libgmp.so:math/gmp \ libpcre.so:devel/pcre