From nobody Tue Oct 5 09:31:06 2021 X-Original-To: dev-commits-ports-main@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 3D2BA12D759E; Tue, 5 Oct 2021 09:31:07 +0000 (UTC) (envelope-from git@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 "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4HNslb0n3zz4g0Z; Tue, 5 Oct 2021 09:31:07 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (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 did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id EEA33242F; Tue, 5 Oct 2021 09:31:06 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 1959V6DZ000128; Tue, 5 Oct 2021 09:31:06 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 1959V6qV000127; Tue, 5 Oct 2021 09:31:06 GMT (envelope-from git) Date: Tue, 5 Oct 2021 09:31:06 GMT Message-Id: <202110050931.1959V6qV000127@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Mateusz Piotrowski <0mp@FreeBSD.org> Subject: git: 9349b94d98d3 - main - games/py-2048-py: Add a new port List-Id: Commits to the main branch of the FreeBSD ports repository List-Archive: https://lists.freebsd.org/archives/dev-commits-ports-main List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-dev-commits-ports-main@freebsd.org X-BeenThere: dev-commits-ports-main@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: 0mp X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 9349b94d98d3427e521117d0dcb00f5a0b701864 Auto-Submitted: auto-generated X-ThisMailContainsUnwantedMimeParts: N The branch main has been updated by 0mp: URL: https://cgit.FreeBSD.org/ports/commit/?id=9349b94d98d3427e521117d0dcb00f5a0b701864 commit 9349b94d98d3427e521117d0dcb00f5a0b701864 Author: Mateusz Piotrowski <0mp@FreeBSD.org> AuthorDate: 2021-10-05 09:27:28 +0000 Commit: Mateusz Piotrowski <0mp@FreeBSD.org> CommitDate: 2021-10-05 09:27:28 +0000 games/py-2048-py: Add a new port A console version of the 2048 game written in Python. --- games/Makefile | 1 + games/py-2048-py/Makefile | 21 +++++++++++++++++++++ games/py-2048-py/distinfo | 3 +++ games/py-2048-py/pkg-descr | 4 ++++ 4 files changed, 29 insertions(+) diff --git a/games/Makefile b/games/Makefile index d50306610f9d..d99d98d45dca 100644 --- a/games/Makefile +++ b/games/Makefile @@ -774,6 +774,7 @@ SUBDIR += puckman SUBDIR += pushover SUBDIR += pvpgn + SUBDIR += py-2048-py SUBDIR += py-cbeams SUBDIR += py-discord.py SUBDIR += py-fife diff --git a/games/py-2048-py/Makefile b/games/py-2048-py/Makefile new file mode 100644 index 000000000000..9e484e66647e --- /dev/null +++ b/games/py-2048-py/Makefile @@ -0,0 +1,21 @@ +# Created by: Mateusz Piotrowski <0mp@FreeBSD.org> + +PORTNAME= 2048-py +DISTVERSION= 0.1.6 +CATEGORIES= games python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +MASTER_SITES= CHEESESHOP + +MAINTAINER= 0mp@FreeBSD.org +COMMENT= Console version of the 2048 game written in Python + +LICENSE= GPLv3+ + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}termcolor>=1.1.0:devel/py-termcolor@${PY_FLAVOR} + +USES= python:3.8+ +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include diff --git a/games/py-2048-py/distinfo b/games/py-2048-py/distinfo new file mode 100644 index 000000000000..c5b3148e7051 --- /dev/null +++ b/games/py-2048-py/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1633425852 +SHA256 (2048-py-0.1.6.tar.gz) = c99d11fd71ab9439e18b0455c9d4432fa5ccd783b1e47564c195a4ccdee575ff +SIZE (2048-py-0.1.6.tar.gz) = 4995 diff --git a/games/py-2048-py/pkg-descr b/games/py-2048-py/pkg-descr new file mode 100644 index 000000000000..376b53a520ba --- /dev/null +++ b/games/py-2048-py/pkg-descr @@ -0,0 +1,4 @@ +The console version of the 2048 game implemented in Python by the Ladue High +School Computer Science Club. + +WWW: https://github.com/LadueCS/2048