Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 27 Apr 2026 14:20:26 +0000
From:      Kenneth Raplee <kenrap@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Cc:        Alexander Vereeken <Alexander88207@protonmail.com>
Subject:   git: 96ee20de32e6 - main - games/nile: Unofficial Amazon Games client
Message-ID:  <69ef70aa.361fa.6c4b0022@gitrepo.freebsd.org>

index | next in thread | raw e-mail

The branch main has been updated by kenrap:

URL: https://cgit.FreeBSD.org/ports/commit/?id=96ee20de32e6582faf236a47dbb83409fa1c211d

commit 96ee20de32e6582faf236a47dbb83409fa1c211d
Author:     Alexander Vereeken <Alexander88207@protonmail.com>
AuthorDate: 2025-04-30 17:36:44 +0000
Commit:     Kenneth Raplee <kenrap@FreeBSD.org>
CommitDate: 2026-04-27 14:16:41 +0000

    games/nile: Unofficial Amazon Games client
    
    Nile aims to be CLI and GUI tool for managing and playing games from Amazon.
    
    At the moment, Nile is a command line application.
    
    PR:             286478
    Co-authored-by: Kenneth Raplee <kenrap@FreeBSD.org>
    Approved by:    arrowd (co-mentor)
---
 games/Makefile                        |  1 +
 games/nile/Makefile                   | 30 ++++++++++++++++++++++++++++++
 games/nile/distinfo                   |  3 +++
 games/nile/files/patch-pyproject.toml | 12 ++++++++++++
 games/nile/pkg-descr                  |  3 +++
 5 files changed, 49 insertions(+)

diff --git a/games/Makefile b/games/Makefile
index 963274b9958b..c35f85defd36 100644
--- a/games/Makefile
+++ b/games/Makefile
@@ -674,6 +674,7 @@
     SUBDIR += nextgo
     SUBDIR += nexuiz
     SUBDIR += nighthawk
+    SUBDIR += nile
     SUBDIR += nimuh
     SUBDIR += ninix-aya
     SUBDIR += njam
diff --git a/games/nile/Makefile b/games/nile/Makefile
new file mode 100644
index 000000000000..bc94bdd271b3
--- /dev/null
+++ b/games/nile/Makefile
@@ -0,0 +1,30 @@
+PORTNAME=	nile
+DISTVERSIONPREFIX=	v
+DISTVERSION=	1.2.0
+CATEGORIES=	games
+
+MAINTAINER=	Alexander88207@protonmail.com
+COMMENT=	Unofficial Amazon Games client
+WWW=		https://github.com/imLinguin/nile
+
+LICENSE=	GPLv3
+LICENSE_FILE=	${WRKSRC}/LICENSE.md
+
+BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}setuptools>0:devel/py-setuptools@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}wheel>0:devel/py-wheel@${PY_FLAVOR}
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}json5>0:devel/py-json5@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}platformdirs>0:devel/py-platformdirs@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}protobuf>0:devel/py-protobuf@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}pycryptodome>0:security/py-pycryptodome@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}requests>0:www/py-requests@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}zstandard>0:archivers/py-zstandard@${PY_FLAVOR}
+
+USES=		python
+USE_GITHUB=	yes
+GH_ACCOUNT=	imLinguin
+USE_PYTHON=	autoplist noflavors pep517
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>
diff --git a/games/nile/distinfo b/games/nile/distinfo
new file mode 100644
index 000000000000..af12857e95a0
--- /dev/null
+++ b/games/nile/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1777297030
+SHA256 (imLinguin-nile-v1.2.0_GH0.tar.gz) = a06dd595248f0b4bf8fccf2b14a534391c94b810f725b6bbeaca92bc3ac2673d
+SIZE (imLinguin-nile-v1.2.0_GH0.tar.gz) = 48348
diff --git a/games/nile/files/patch-pyproject.toml b/games/nile/files/patch-pyproject.toml
new file mode 100644
index 000000000000..80378a5e9db6
--- /dev/null
+++ b/games/nile/files/patch-pyproject.toml
@@ -0,0 +1,12 @@
+--- pyproject.toml.orig	2024-09-10 15:12:57 UTC
++++ pyproject.toml
+@@ -2,6 +2,9 @@ build-backend = "setuptools.build_meta"
+ requires = ["setuptools"]
+ build-backend = "setuptools.build_meta"
+ 
++[tool.setuptools.packages.find]
++where = ["."]
++
+ [project]
+ name = "nile"
+ description = "Unofficial Amazon Games client"
diff --git a/games/nile/pkg-descr b/games/nile/pkg-descr
new file mode 100644
index 000000000000..7a2647e8a111
--- /dev/null
+++ b/games/nile/pkg-descr
@@ -0,0 +1,3 @@
+Nile aims to be CLI and GUI tool for managing and playing games from Amazon.
+
+At the moment, Nile is a command line application.


home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?69ef70aa.361fa.6c4b0022>