From owner-dev-commits-ports-all@freebsd.org Wed Jul 28 18:07:50 2021 Return-Path: Delivered-To: dev-commits-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 04F0666230D; Wed, 28 Jul 2021 18:07:50 +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 4GZhTd6LMVz4k65; Wed, 28 Jul 2021 18:07:49 +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 C06EB22B17; Wed, 28 Jul 2021 18:07:49 +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 16SI7nFF003273; Wed, 28 Jul 2021 18:07:49 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 16SI7nHI003272; Wed, 28 Jul 2021 18:07:49 GMT (envelope-from git) Date: Wed, 28 Jul 2021 18:07:49 GMT Message-Id: <202107281807.16SI7nHI003272@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Jan Beich Subject: git: 733b197d59d6 - main - archivers/unrpa: add new port MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: jbeich X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 733b197d59d6961e3a554ef0deef5b1d4ee91433 Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Jul 2021 18:07:50 -0000 The branch main has been updated by jbeich: URL: https://cgit.FreeBSD.org/ports/commit/?id=733b197d59d6961e3a554ef0deef5b1d4ee91433 commit 733b197d59d6961e3a554ef0deef5b1d4ee91433 Author: Jan Beich AuthorDate: 2021-07-28 17:53:11 +0000 Commit: Jan Beich CommitDate: 2021-07-28 18:07:13 +0000 archivers/unrpa: add new port unrpa is a tool to extract files from RPA archive format, created by Ren'Py Visual Novel Engine. It can also be used as a library. https://pypi.org/project/unrpa/ --- archivers/Makefile | 1 + archivers/unrpa/Makefile | 15 +++++++++++++++ archivers/unrpa/distinfo | 3 +++ archivers/unrpa/pkg-descr | 6 ++++++ 4 files changed, 25 insertions(+) diff --git a/archivers/Makefile b/archivers/Makefile index c67f4f6df1f1..8494c1a9dc39 100644 --- a/archivers/Makefile +++ b/archivers/Makefile @@ -236,6 +236,7 @@ SUBDIR += unmass SUBDIR += unrar SUBDIR += unrar-iconv + SUBDIR += unrpa SUBDIR += unshield SUBDIR += unzip SUBDIR += unzoo diff --git a/archivers/unrpa/Makefile b/archivers/unrpa/Makefile new file mode 100644 index 000000000000..0b0a6adcb7a4 --- /dev/null +++ b/archivers/unrpa/Makefile @@ -0,0 +1,15 @@ +PORTNAME= unrpa +PORTVERSION= 2.3.0 +CATEGORIES= archivers +MASTER_SITES= CHEESESHOP + +MAINTAINER= jbeich@FreeBSD.org +COMMENT= Extract RenPy Archives + +LICENSE= GPLv3+ + +USES= python:3.7+ +USE_PYTHON= autoplist distutils +NO_ARCH= yes + +.include diff --git a/archivers/unrpa/distinfo b/archivers/unrpa/distinfo new file mode 100644 index 000000000000..1970782e1536 --- /dev/null +++ b/archivers/unrpa/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1577231999 +SHA256 (unrpa-2.3.0.tar.gz) = 441c5d129c18a5c7583927bc42e3f751e4f171a316a3a42738c1c67179c3847a +SIZE (unrpa-2.3.0.tar.gz) = 13537 diff --git a/archivers/unrpa/pkg-descr b/archivers/unrpa/pkg-descr new file mode 100644 index 000000000000..77fc020cc76a --- /dev/null +++ b/archivers/unrpa/pkg-descr @@ -0,0 +1,6 @@ +unrpa is a tool to extract files from RPA archive format, created by +Ren'Py Visual Novel Engine. + +It can also be used as a library. + +WWW: https://pypi.org/project/unrpa/