aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey Dokuchaev <danfe@FreeBSD.org>2023-10-24 11:56:30 +0000
committerAlexey Dokuchaev <danfe@FreeBSD.org>2023-10-24 11:56:30 +0000
commitce54739cf818da9393c3bf30d2133fa8886ff46c (patch)
tree8650f8f3e8a4d60fc0f089bce404193ad0f77ccf
parent878d268179e36fa8cf394b0f7d308f82619ba04b (diff)
downloadports-ce54739cf818da9393c3bf30d2133fa8886ff46c.tar.gz
ports-ce54739cf818da9393c3bf30d2133fa8886ff46c.zip
graphics/py-imutils: new port had been added (+)
A series of convenience functions to make basic image processing operations such as translation, rotation, resizing, skeletonization, and displaying Matplotlib images easier with OpenCV and Python. WWW: https://github.com/PyImageSearch/imutils
-rw-r--r--graphics/Makefile1
-rw-r--r--graphics/py-imutils/Makefile16
-rw-r--r--graphics/py-imutils/distinfo3
-rw-r--r--graphics/py-imutils/pkg-descr3
4 files changed, 23 insertions, 0 deletions
diff --git a/graphics/Makefile b/graphics/Makefile
index 2ddaff95df8b..2b8fe6e949c8 100644
--- a/graphics/Makefile
+++ b/graphics/Makefile
@@ -894,6 +894,7 @@
SUBDIR += py-imageio-ffmpeg
SUBDIR += py-imagesize
SUBDIR += py-img2pdf
+ SUBDIR += py-imutils
SUBDIR += py-leather
SUBDIR += py-lerc
SUBDIR += py-mapclassify
diff --git a/graphics/py-imutils/Makefile b/graphics/py-imutils/Makefile
new file mode 100644
index 000000000000..926deb6136b1
--- /dev/null
+++ b/graphics/py-imutils/Makefile
@@ -0,0 +1,16 @@
+PORTNAME= imutils
+PORTVERSION= 0.5.4
+CATEGORIES= graphics python
+MASTER_SITES= PYPI
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= python@FreeBSD.org
+COMMENT= Series of convenience image processing functions
+WWW= https://github.com/PyImageSearch/imutils
+
+RUN_DEPENDS= opencv>0:graphics/opencv ${PYNUMPY}
+
+USES= python
+USE_PYTHON= autoplist distutils
+
+.include <bsd.port.mk>
diff --git a/graphics/py-imutils/distinfo b/graphics/py-imutils/distinfo
new file mode 100644
index 000000000000..07e5a7648068
--- /dev/null
+++ b/graphics/py-imutils/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1681172033
+SHA256 (imutils-0.5.4.tar.gz) = 03827a9fca8b5c540305c0844a62591cf35a0caec199cb0f2f0a4a0fb15d8f24
+SIZE (imutils-0.5.4.tar.gz) = 17240
diff --git a/graphics/py-imutils/pkg-descr b/graphics/py-imutils/pkg-descr
new file mode 100644
index 000000000000..3d7e2c9dd5c3
--- /dev/null
+++ b/graphics/py-imutils/pkg-descr
@@ -0,0 +1,3 @@
+A series of convenience functions to make basic image processing
+operations such as translation, rotation, resizing, skeletonization,
+and displaying Matplotlib images easier with OpenCV and Python.