git: 2793f7a2da68 - main - devel/pycomposefile: New port
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 02 Oct 2023 01:02:22 UTC
The branch main has been updated by dbaio:
URL: https://cgit.FreeBSD.org/ports/commit/?id=2793f7a2da6894ac5193bbb95263a7801835ccb2
commit 2793f7a2da6894ac5193bbb95263a7801835ccb2
Author: Danilo G. Baio <dbaio@FreeBSD.org>
AuthorDate: 2023-10-01 23:58:56 +0000
Commit: Danilo G. Baio <dbaio@FreeBSD.org>
CommitDate: 2023-10-01 23:58:56 +0000
devel/pycomposefile: New port
Structured deserialization of Docker Compose files.
A Python library mainly used for the azure-cli application.
https://pypi.org/project/pycomposefile/
---
devel/Makefile | 1 +
devel/pycomposefile/Makefile | 23 +++++++++++++++++++++++
devel/pycomposefile/distinfo | 3 +++
devel/pycomposefile/pkg-descr | 3 +++
4 files changed, 30 insertions(+)
diff --git a/devel/Makefile b/devel/Makefile
index 8260ffb245b0..d74422db3763 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -5877,6 +5877,7 @@
SUBDIR += pycanberra
SUBDIR += pycharm-ce
SUBDIR += pycharm-pro
+ SUBDIR += pycomposefile
SUBDIR += pycos
SUBDIR += pycount
SUBDIR += pydbus-common
diff --git a/devel/pycomposefile/Makefile b/devel/pycomposefile/Makefile
new file mode 100644
index 000000000000..09dc61e30552
--- /dev/null
+++ b/devel/pycomposefile/Makefile
@@ -0,0 +1,23 @@
+PORTNAME= pycomposefile
+DISTVERSION= 0.0.30
+CATEGORIES= devel python
+MASTER_SITES= PYPI
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= dbaio@FreeBSD.org
+COMMENT= Structured deserialization of Docker Compose files for Python
+WWW= https://pypi.org/project/pycomposefile/
+
+LICENSE= MIT
+
+RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}yaml>=6.0:devel/py-yaml@${PY_FLAVOR}
+
+USES= python
+USE_PYTHON= autoplist concurrent distutils
+
+NO_ARCH= yes
+
+post-patch:
+ @${RM} -r ${WRKSRC}/tests/
+
+.include <bsd.port.mk>
diff --git a/devel/pycomposefile/distinfo b/devel/pycomposefile/distinfo
new file mode 100644
index 000000000000..9f037503ebe2
--- /dev/null
+++ b/devel/pycomposefile/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1696204074
+SHA256 (pycomposefile-0.0.30.tar.gz) = 190a2920ef05f86e620f3e0d1761931c2a57a38baa2877472337df69c8a1ca53
+SIZE (pycomposefile-0.0.30.tar.gz) = 15893
diff --git a/devel/pycomposefile/pkg-descr b/devel/pycomposefile/pkg-descr
new file mode 100644
index 000000000000..5dd2ccb50d2d
--- /dev/null
+++ b/devel/pycomposefile/pkg-descr
@@ -0,0 +1,3 @@
+Structured deserialization of Docker Compose files.
+
+A Python library mainly used for the azure-cli application.