From owner-svn-ports-all@freebsd.org Wed Nov 4 11:30:35 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 296A8A25369; Wed, 4 Nov 2015 11:30:35 +0000 (UTC) (envelope-from wg@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 CF6401F40; Wed, 4 Nov 2015 11:30:34 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tA4BUXGM070723; Wed, 4 Nov 2015 11:30:33 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tA4BUXkR070718; Wed, 4 Nov 2015 11:30:33 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201511041130.tA4BUXkR070718@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Wed, 4 Nov 2015 11:30:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r400736 - in head/devel: . ds2 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, 04 Nov 2015 11:30:35 -0000 Author: wg Date: Wed Nov 4 11:30:33 2015 New Revision: 400736 URL: https://svnweb.freebsd.org/changeset/ports/400736 Log: devel/ds2: Debug server for lldb ds2 is a debug server designed to be used with LLDB to perform remote debugging of Linux, Android, FreeBSD and Windows targets. WWW: https://github.com/facebook/ds2 Added: head/devel/ds2/ head/devel/ds2/Makefile (contents, props changed) head/devel/ds2/distinfo (contents, props changed) head/devel/ds2/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Nov 4 11:19:30 2015 (r400735) +++ head/devel/Makefile Wed Nov 4 11:30:33 2015 (r400736) @@ -396,6 +396,7 @@ SUBDIR += dragon SUBDIR += dreampie SUBDIR += drpython + SUBDIR += ds2 SUBDIR += dulwich SUBDIR += duplo SUBDIR += dwarfdump Added: head/devel/ds2/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/ds2/Makefile Wed Nov 4 11:30:33 2015 (r400736) @@ -0,0 +1,32 @@ +# $FreeBSD$ + +PORTNAME= ds2 +PORTVERSION= 20151028 +CATEGORIES= devel + +MAINTAINER= wg@FreeBSD.org +COMMENT= Debug server for lldb + +LICENSE= NCSA +LICENSE_NAME= University of Illinois/NCSA Open Source License +LICENSE_FILE= ${WRKSRC}/LICENSE +LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept + +USE_GITHUB= yes +GH_ACCOUNT= facebook +GH_TAGNAME= 52c45f3 + +USES= cmake compiler + +PLIST_FILES= bin/ds2 + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/ds2 ${STAGEDIR}${PREFIX}/bin/ + +.include + +.if ${OSVERSION} < 1002000 || ${COMPILER_TYPE} == "gcc" +IGNORE= builds only on greater than 10.1 and with clang +.endif + +.include Added: head/devel/ds2/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/ds2/distinfo Wed Nov 4 11:30:33 2015 (r400736) @@ -0,0 +1,2 @@ +SHA256 (facebook-ds2-20151028-52c45f3_GH0.tar.gz) = 9f14200a2cedb946429021cec37337442d02158ca25c530cca15f8a42fb6d9fa +SIZE (facebook-ds2-20151028-52c45f3_GH0.tar.gz) = 218024 Added: head/devel/ds2/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/ds2/pkg-descr Wed Nov 4 11:30:33 2015 (r400736) @@ -0,0 +1,4 @@ +ds2 is a debug server designed to be used with LLDB to perform remote debugging +of Linux, Android, FreeBSD and Windows targets. + +WWW: https://github.com/facebook/ds2