git: 917b40928b48 - main - devel/py-imgkit: Remove expired port
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 31 Mar 2025 14:44:39 UTC
The branch main has been updated by rene:
URL: https://cgit.FreeBSD.org/ports/commit/?id=917b40928b48249cf8c0e198dd4d253083176a4d
commit 917b40928b48249cf8c0e198dd4d253083176a4d
Author: Rene Ladan <rene@FreeBSD.org>
AuthorDate: 2025-03-31 14:44:34 +0000
Commit: Rene Ladan <rene@FreeBSD.org>
CommitDate: 2025-03-31 14:44:34 +0000
devel/py-imgkit: Remove expired port
2025-03-31 devel/py-imgkit: Depends on expired converters/wkhtmltopdf
---
MOVED | 1 +
devel/Makefile | 1 -
devel/py-imgkit/Makefile | 22 ----------------------
devel/py-imgkit/distinfo | 3 ---
devel/py-imgkit/pkg-descr | 20 --------------------
5 files changed, 1 insertion(+), 46 deletions(-)
diff --git a/MOVED b/MOVED
index e8012dff684f..04b539075480 100644
--- a/MOVED
+++ b/MOVED
@@ -4253,3 +4253,4 @@ textproc/rubygem-nokogumbo||2025-03-31|Has expired: Upstream has merged into tex
net/libmediawiki||2025-03-31|Has expired: Project abandoned upstream
finance/odoo16||2025-03-31|Has expired: Depends on expired print/py-pypdf2
net/py-tacacs_plus||2025-03-31|Has expired: Depends on expired devel/py-pytest-runner
+devel/py-imgkit||2025-03-31|Has expired: Depends on expired converters/wkhtmltopdf
diff --git a/devel/Makefile b/devel/Makefile
index 825070273e17..cc614ea89abb 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -5020,7 +5020,6 @@
SUBDIR += py-id
SUBDIR += py-identify
SUBDIR += py-ijson
- SUBDIR += py-imgkit
SUBDIR += py-immutabledict
SUBDIR += py-immutables
SUBDIR += py-importlab
diff --git a/devel/py-imgkit/Makefile b/devel/py-imgkit/Makefile
deleted file mode 100644
index 7dbf076ea0b6..000000000000
--- a/devel/py-imgkit/Makefile
+++ /dev/null
@@ -1,22 +0,0 @@
-PORTNAME= imgkit
-PORTVERSION= 1.2.2
-PORTREVISION= 1
-CATEGORIES= devel python
-MASTER_SITES= PYPI
-PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
-
-MAINTAINER= dvl@FreeBSD.org
-COMMENT= Python wrapper to convert html to image
-WWW= https://github.com/jarrekk/imgkit
-
-LICENSE= MIT
-
-DEPRECATED= Depends on expired converters/wkhtmltopdf
-EXPIRATION_DATE=2025-03-31
-
-USES= python
-USE_PYTHON= distutils autoplist
-
-RUN_DEPENDS+= wkhtmltopdf>0:converters/wkhtmltopdf
-
-.include <bsd.port.mk>
diff --git a/devel/py-imgkit/distinfo b/devel/py-imgkit/distinfo
deleted file mode 100644
index 0633a526b007..000000000000
--- a/devel/py-imgkit/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-TIMESTAMP = 1655208385
-SHA256 (imgkit-1.2.2.tar.gz) = 382e7b3c280de4a472d0d786d9cea7bb9d6d8df2c2310ad07d4fe440ad1cb218
-SIZE (imgkit-1.2.2.tar.gz) = 12355
diff --git a/devel/py-imgkit/pkg-descr b/devel/py-imgkit/pkg-descr
deleted file mode 100644
index cadad031247f..000000000000
--- a/devel/py-imgkit/pkg-descr
+++ /dev/null
@@ -1,20 +0,0 @@
-Python 2 and 3 wrapper for wkhtmltoimage utility to convert HTML to IMG
-using Webkit.
-
-Simple example:
-
-import imgkit
-
- imgkit.from_url('http://google.com', 'out.jpg')
- imgkit.from_file('test.html', 'out.jpg')
- imgkit.from_string('Hello!', 'out.jpg')
-
-You can pass a list with multiple URLs or files:
-
- imgkit.from_url(['google.com', 'yandex.ru', 'engadget.com'], 'out.jpg')
- imgkit.from_file(['file1.html', 'file2.html'], 'out.jpg')
-
-Also you can pass an opened file:
-
- with open('file.html') as f:
- imgkit.from_file(f, 'out.jpg')