Received: by mail.netbsd.org (Postfix, from userid 605) id 2FB7084D16; Thu, 8 Apr 2021 19:51:46 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6B86884D11 for ; Thu, 8 Apr 2021 19:51:45 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id OO3GhQ2hx2IZ for ; Thu, 8 Apr 2021 19:51:44 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id A0B1984CE0 for ; Thu, 8 Apr 2021 19:51:44 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 9A419FA95; Thu, 8 Apr 2021 19:51:44 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_161791150419730" MIME-Version: 1.0 Date: Thu, 8 Apr 2021 19:51:44 +0000 From: "Mark Davies" Subject: CVS commit: pkgsrc/games/black-hole-solver To: pkgsrc-changes@NetBSD.org Reply-To: markd@netbsd.org X-Mailer: log_accum Message-Id: <20210408195144.9A419FA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_161791150419730 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: markd Date: Thu Apr 8 19:51:44 UTC 2021 Added Files: pkgsrc/games/black-hole-solver: DESCR Makefile PLIST buildlink3.mk distinfo Log Message: black-hole-solver: add version 1.10.1 This is a solver for the Solitaire/Patience card games "Golf" (3 variants), "Black Hole", and "All in a Row" - implemented in C as a command line application. For more information about these games, see: * https://en.wikipedia.org/wiki/Golf_%28patience%29 * http://en.wikipedia.org/wiki/Black_Hole_%28solitaire%29 * http://en.wikipedia.org/wiki/All_in_a_Row_%28Solitaire%29 To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 pkgsrc/games/black-hole-solver/DESCR \ pkgsrc/games/black-hole-solver/Makefile \ pkgsrc/games/black-hole-solver/PLIST \ pkgsrc/games/black-hole-solver/buildlink3.mk \ pkgsrc/games/black-hole-solver/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_161791150419730 Content-Disposition: inline Content-Length: 3820 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/games/black-hole-solver/DESCR diff -u /dev/null pkgsrc/games/black-hole-solver/DESCR:1.1 --- /dev/null Thu Apr 8 19:51:44 2021 +++ pkgsrc/games/black-hole-solver/DESCR Thu Apr 8 19:51:44 2021 @@ -0,0 +1,7 @@ +This is a solver for the Solitaire/Patience card games "Golf" (3 variants), +"Black Hole", and "All in a Row" - implemented in C as a command line +application. For more information about these games, see: + +* https://en.wikipedia.org/wiki/Golf_%28patience%29 +* http://en.wikipedia.org/wiki/Black_Hole_%28solitaire%29 +* http://en.wikipedia.org/wiki/All_in_a_Row_%28Solitaire%29 Index: pkgsrc/games/black-hole-solver/Makefile diff -u /dev/null pkgsrc/games/black-hole-solver/Makefile:1.1 --- /dev/null Thu Apr 8 19:51:44 2021 +++ pkgsrc/games/black-hole-solver/Makefile Thu Apr 8 19:51:44 2021 @@ -0,0 +1,34 @@ +# $NetBSD: Makefile,v 1.1 2021/04/08 19:51:44 markd Exp $ + +DISTNAME= black-hole-solver-1.10.1 +CATEGORIES= games +MASTER_SITES= https://fc-solve.shlomifish.org/downloads/fc-solve/ +EXTRACT_SUFX= .tar.xz + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= https://www.shlomifish.org/open-source/projects/black-hole-solitaire-solver/ +COMMENT= Solvers and statistics for various solitaire and related card patience games +LICENSE= mit + +USE_TOOLS+= gmake perl +USE_CMAKE= yes +USE_LANGUAGES= c c++ + +CMAKE_ARGS+= -DBUILD_STATIC_LIBRARY=OFF + +PYTHON_FOR_BUILD_ONLY= tool +PYTHON_VERSIONS_INCOMPATIBLE= 27 + +BUILD_DEPENDS+= p5-Path-Tiny-[0-9]*:../../filesystems/p5-Path-Tiny + +PKGCONFIG_OVERRIDE+= libblack-hole-solver.pc.in + +SUBST_CLASSES+= man +SUBST_STAGE.man= pre-configure +SUBST_MESSAGE.man= Fix man dir. +SUBST_FILES.man= cmake/Shlomif_Common.cmake +SUBST_SED.man= -e 's:share/man:man:' + +.include "../../devel/rinutils/buildlink3.mk" +.include "../../lang/python/tool.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/games/black-hole-solver/PLIST diff -u /dev/null pkgsrc/games/black-hole-solver/PLIST:1.1 --- /dev/null Thu Apr 8 19:51:44 2021 +++ pkgsrc/games/black-hole-solver/PLIST Thu Apr 8 19:51:44 2021 @@ -0,0 +1,10 @@ +@comment $NetBSD: PLIST,v 1.1 2021/04/08 19:51:44 markd Exp $ +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.1 +lib/pkgconfig/libblack-hole-solver.pc +man/man6/black-hole-solve.6 Index: pkgsrc/games/black-hole-solver/buildlink3.mk diff -u /dev/null pkgsrc/games/black-hole-solver/buildlink3.mk:1.1 --- /dev/null Thu Apr 8 19:51:44 2021 +++ pkgsrc/games/black-hole-solver/buildlink3.mk Thu Apr 8 19:51:44 2021 @@ -0,0 +1,13 @@ +# $NetBSD: buildlink3.mk,v 1.1 2021/04/08 19:51:44 markd Exp $ + +BUILDLINK_TREE+= black-hole-solver + +.if !defined(BLACK_HOLE_SOLVER_BUILDLINK3_MK) +BLACK_HOLE_SOLVER_BUILDLINK3_MK:= + +BUILDLINK_API_DEPENDS.black-hole-solver+= black-hole-solver>=1.10.1 +BUILDLINK_PKGSRCDIR.black-hole-solver?= ../../games/black-hole-solver + +.endif # BLACK_HOLE_SOLVER_BUILDLINK3_MK + +BUILDLINK_TREE+= -black-hole-solver Index: pkgsrc/games/black-hole-solver/distinfo diff -u /dev/null pkgsrc/games/black-hole-solver/distinfo:1.1 --- /dev/null Thu Apr 8 19:51:44 2021 +++ pkgsrc/games/black-hole-solver/distinfo Thu Apr 8 19:51:44 2021 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2021/04/08 19:51:44 markd Exp $ + +SHA1 (black-hole-solver-1.10.1.tar.xz) = 92ae013bd296097095a0a5ec3918a98d3c555acf +RMD160 (black-hole-solver-1.10.1.tar.xz) = 8445a0dfc9dc00a1c165b73a58c334e3bbffa991 +SHA512 (black-hole-solver-1.10.1.tar.xz) = 65e69a699922c92332da70b35303f50fbbe3f7b324e70428d24e75910ab6472db22936fbabe716fdd2ef9a88aaac3d8765b8007ceeb03d50ec865b183a5c8f69 +Size (black-hole-solver-1.10.1.tar.xz) = 78848 bytes --_----------=_161791150419730--