From owner-svn-ports-all@freebsd.org Sun Jul 26 09:04:42 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id D9FBB3A20AE; Sun, 26 Jul 2020 09:04:42 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4BDxpL5RSVz4JSZ; Sun, 26 Jul 2020 09:04:42 +0000 (UTC) (envelope-from tcberner@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9E02AA724; Sun, 26 Jul 2020 09:04:42 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 06Q94gl1088025; Sun, 26 Jul 2020 09:04:42 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 06Q94fj5088020; Sun, 26 Jul 2020 09:04:41 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <202007260904.06Q94fj5088020@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Sun, 26 Jul 2020 09:04:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r543457 - in head/games: . black-hole-solver X-SVN-Group: ports-head X-SVN-Commit-Author: tcberner X-SVN-Commit-Paths: in head/games: . black-hole-solver X-SVN-Commit-Revision: 543457 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.33 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: Sun, 26 Jul 2020 09:04:42 -0000 Author: tcberner Date: Sun Jul 26 09:04:41 2020 New Revision: 543457 URL: https://svnweb.freebsd.org/changeset/ports/543457 Log: New port: games/black-hole-solver Black Hole Solitaire Solver This is a solver, written in C, to solve Golf solitaire, the Solitaire variant called “Black Hole” and the one called “All in a Row”. It provides a portable C library, and a command line application that after being fed with a layout will emit the cards to move. https://www.shlomifish.org/open-source/projects/black-hole-solitaire-solver/ This is an upcoming dependency in games/kpat Added: head/games/black-hole-solver/ head/games/black-hole-solver/Makefile (contents, props changed) head/games/black-hole-solver/distinfo (contents, props changed) head/games/black-hole-solver/pkg-descr (contents, props changed) head/games/black-hole-solver/pkg-plist (contents, props changed) Modified: head/games/Makefile Modified: head/games/Makefile ============================================================================== --- head/games/Makefile Sun Jul 26 09:03:11 2020 (r543456) +++ head/games/Makefile Sun Jul 26 09:04:41 2020 (r543457) @@ -86,6 +86,7 @@ SUBDIR += biorythm SUBDIR += bitefusion SUBDIR += black-box + SUBDIR += black-hole-solver SUBDIR += blackjackclient SUBDIR += blackshadeselite SUBDIR += blinken Added: head/games/black-hole-solver/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/black-hole-solver/Makefile Sun Jul 26 09:04:41 2020 (r543457) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= black-hole-solver +DISTVERSION= 1.8.0 +CATEGORIES= games +MASTER_SITES= https://fc-solve.shlomifish.org/downloads/fc-solve/ + +MAINTAINER= tcberner@FreeBSD.org +COMMENT= Black Hole Solitaire Solver + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/COPYING + +BUILD_DEPENDS= rinutils>0:devel/rinutils \ + p5-Path-Tiny>=0:devel/p5-Path-Tiny + +USES= cmake tar:xz +USE_PERL5= build + +.include Added: head/games/black-hole-solver/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/black-hole-solver/distinfo Sun Jul 26 09:04:41 2020 (r543457) @@ -0,0 +1,3 @@ +TIMESTAMP = 1595751723 +SHA256 (black-hole-solver-1.8.0.tar.xz) = f73c14272545baa4cba717b61646ec0c610b124e1721288b0a9bff680bb9982c +SIZE (black-hole-solver-1.8.0.tar.xz) = 76264 Added: head/games/black-hole-solver/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/black-hole-solver/pkg-descr Sun Jul 26 09:04:41 2020 (r543457) @@ -0,0 +1,6 @@ +This is a solver, written in C, to solve Golf solitaire, the Solitaire variant +called "Black Hole" and the one called "All in a Row". It provides a portable C +library, and a command line application that after being fed with a layout will +emit the cards to move. + +WWW: https://www.shlomifish.org/open-source/projects/black-hole-solitaire-solver Added: head/games/black-hole-solver/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/black-hole-solver/pkg-plist Sun Jul 26 09:04:41 2020 (r543457) @@ -0,0 +1,9 @@ +bin/black-hole-solve +include/black-hole-solver/black_hole_solver.h +include/black-hole-solver/bool.h +include/black-hole-solver/fcs_dllexport.h +lib/libblack_hole_solver.so +lib/libblack_hole_solver.so.1 +lib/libblack_hole_solver.so.1.0.0 +libdata/pkgconfig/libblack-hole-solver.pc +share/man/man6/black-hole-solve.6.gz