git: 4bd23649a0ba - main - devel/py-pathable: Add py-pathable 0.4.0

From: Po-Chuan Hsieh <sunpoet_at_FreeBSD.org>
Date: Tue, 26 Apr 2022 15:04:08 UTC
The branch main has been updated by sunpoet:

URL: https://cgit.FreeBSD.org/ports/commit/?id=4bd23649a0ba627768dd9a368963d9f99cf84a74

commit 4bd23649a0ba627768dd9a368963d9f99cf84a74
Author:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
AuthorDate: 2022-04-26 14:46:01 +0000
Commit:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
CommitDate: 2022-04-26 15:01:10 +0000

    devel/py-pathable: Add py-pathable 0.4.0
    
    pathable provides object-oriented paths.
    
    Key features:
    - Traverse resources like paths
    - Access resources on demand with separate accessor layer
    
    WWW: https://github.com/p1c2u/pathable
---
 devel/Makefile              |  1 +
 devel/py-pathable/Makefile  | 20 ++++++++++++++++++++
 devel/py-pathable/distinfo  |  3 +++
 devel/py-pathable/pkg-descr |  7 +++++++
 4 files changed, 31 insertions(+)

diff --git a/devel/Makefile b/devel/Makefile
index ee2789807577..44a0d725f343 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -4900,6 +4900,7 @@
     SUBDIR += py-patch-ng
     SUBDIR += py-path
     SUBDIR += py-path.py
+    SUBDIR += py-pathable
     SUBDIR += py-pathlib2
     SUBDIR += py-pathspec
     SUBDIR += py-pathtools
diff --git a/devel/py-pathable/Makefile b/devel/py-pathable/Makefile
new file mode 100644
index 000000000000..488a86669145
--- /dev/null
+++ b/devel/py-pathable/Makefile
@@ -0,0 +1,20 @@
+# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
+
+PORTNAME=	pathable
+PORTVERSION=	0.4.0
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	sunpoet@FreeBSD.org
+COMMENT=	Object-oriented paths
+
+LICENSE=	APACHE20
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USES=		python:3.7+
+USE_PYTHON=	autoplist concurrent distutils
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>
diff --git a/devel/py-pathable/distinfo b/devel/py-pathable/distinfo
new file mode 100644
index 000000000000..b22e33e21f1a
--- /dev/null
+++ b/devel/py-pathable/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1650970027
+SHA256 (pathable-0.4.0.tar.gz) = da4eb6a827355c2a5792b26d59ab801fcd25ef10f6ed60098ec248eb780052e3
+SIZE (pathable-0.4.0.tar.gz) = 7723
diff --git a/devel/py-pathable/pkg-descr b/devel/py-pathable/pkg-descr
new file mode 100644
index 000000000000..1823ab1846ef
--- /dev/null
+++ b/devel/py-pathable/pkg-descr
@@ -0,0 +1,7 @@
+pathable provides object-oriented paths.
+
+Key features:
+- Traverse resources like paths
+- Access resources on demand with separate accessor layer
+
+WWW: https://github.com/p1c2u/pathable