git: 49d1666ff377 - main - cleanup: Remove expired ports:
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 22 Mar 2022 22:18:16 UTC
The branch main has been updated by rene:
URL: https://cgit.FreeBSD.org/ports/commit/?id=49d1666ff377b96612a26faf652cfb05db25d27c
commit 49d1666ff377b96612a26faf652cfb05db25d27c
Author: Rene Ladan <rene@FreeBSD.org>
AuthorDate: 2022-03-22 22:17:43 +0000
Commit: Rene Ladan <rene@FreeBSD.org>
CommitDate: 2022-03-22 22:17:43 +0000
cleanup: Remove expired ports:
2021-12-31 devel/py-decorator4: Legacy version, use devel/py-decorator instead
---
MOVED | 1 +
devel/Makefile | 1 -
devel/py-decorator4/Makefile | 26 --------------------------
devel/py-decorator4/distinfo | 3 ---
devel/py-decorator4/pkg-descr | 14 --------------
5 files changed, 1 insertion(+), 44 deletions(-)
diff --git a/MOVED b/MOVED
index 15f3a495d16d..313fde80decb 100644
--- a/MOVED
+++ b/MOVED
@@ -16966,3 +16966,4 @@ graphics/darktable38|graphics/darktable|2022-03-19|Darktable was upgraded to 3.8
security/1password-client-devel|security/1password-client2|2022-03-19|cli version 2 is now released.
x11-toolkits/pangoxsl||2022-03-20|Has expired: Abandonware and not used by any port
print/lgrind||2022-03-22|Has expired: Abandonware as last release was in 2001
+devel/py-decorator4||2022-03-22|Has expired: Legacy version, use devel/py-decorator instead
diff --git a/devel/Makefile b/devel/Makefile
index cf444dda81cd..a3b792b46248 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -4452,7 +4452,6 @@
SUBDIR += py-debugpy
SUBDIR += py-debugtools
SUBDIR += py-decorator
- SUBDIR += py-decorator4
SUBDIR += py-decoratortools
SUBDIR += py-deepdiff
SUBDIR += py-deepmerge
diff --git a/devel/py-decorator4/Makefile b/devel/py-decorator4/Makefile
deleted file mode 100644
index 072ea6985852..000000000000
--- a/devel/py-decorator4/Makefile
+++ /dev/null
@@ -1,26 +0,0 @@
-PORTNAME= decorator
-PORTVERSION= 4.4.2
-CATEGORIES= devel python
-MASTER_SITES= CHEESESHOP
-PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
-PKGNAMESUFFIX= 4
-
-MAINTAINER= ygy@FreeBSD.org
-COMMENT= Decorators for Humans
-
-LICENSE= MIT
-LICENSE_FILE= ${WRKSRC}/LICENSE.txt
-
-DEPRECATED= Legacy version, use devel/py-decorator instead
-EXPIRATION_DATE=2021-12-31
-
-USES= cpe python:3.6+
-CPE_VENDOR= python
-USE_PYTHON= distutils autoplist
-
-NO_ARCH= yes
-
-do-test:
- @cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test
-
-.include <bsd.port.mk>
diff --git a/devel/py-decorator4/distinfo b/devel/py-decorator4/distinfo
deleted file mode 100644
index d8bcaf90ca31..000000000000
--- a/devel/py-decorator4/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-TIMESTAMP = 1584984981
-SHA256 (decorator-4.4.2.tar.gz) = e3a62f0520172440ca0dcc823749319382e377f37f140a0b99ef45fecb84bfe7
-SIZE (decorator-4.4.2.tar.gz) = 33629
diff --git a/devel/py-decorator4/pkg-descr b/devel/py-decorator4/pkg-descr
deleted file mode 100644
index 17f7c7d3c78c..000000000000
--- a/devel/py-decorator4/pkg-descr
+++ /dev/null
@@ -1,14 +0,0 @@
-As of now, writing custom decorators correctly requires some
-experience and it is not as easy as it could be. For instance, typical
-implementations of decorators involve nested functions, and we all
-know that flat is better than nested. Moreover, typical
-implementations of decorators do not preserve the signature of
-decorated functions, thus confusing both documentation tools and
-developers.
-
-The aim of the decorator module it to simplify the usage of decorators
-for the average programmer, and to popularize decorators usage giving
-examples of useful decorators, such as memoize, tracing,
-redirecting_stdout, locked, etc.
-
-WWW: https://github.com/micheles/decorator