pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

syncserver-dependencies: remove, replaced by syncstorage-rs



Module Name:	pkgsrc-wip
Committed By:	Thomas Klausner <wiz%NetBSD.org@localhost>
Pushed By:	wiz
Date:		Sat Jun 8 22:12:21 2024 +0200
Changeset:	e477b72cadd2c959d0ee195dcc8f1f03e915550c

Modified Files:
	Makefile
Removed Files:
	py27-virtualenv/ALTERNATIVES
	py27-virtualenv/DESCR
	py27-virtualenv/Makefile
	py27-virtualenv/PLIST
	py27-virtualenv/distinfo
	syncserver-dependencies/DESCR
	syncserver-dependencies/Makefile
	syncserver-dependencies/options.mk

Log Message:
syncserver-dependencies: remove, replaced by syncstorage-rs

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=e477b72cadd2c959d0ee195dcc8f1f03e915550c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 Makefile                           |  2 --
 py27-virtualenv/ALTERNATIVES       |  1 -
 py27-virtualenv/DESCR              | 22 -------------------
 py27-virtualenv/Makefile           | 44 --------------------------------------
 py27-virtualenv/PLIST              | 19 ----------------
 py27-virtualenv/distinfo           |  5 -----
 syncserver-dependencies/DESCR      |  1 -
 syncserver-dependencies/Makefile   | 24 ---------------------
 syncserver-dependencies/options.mk | 18 ----------------
 9 files changed, 136 deletions(-)

diffs:
diff --git a/Makefile b/Makefile
index c15d57e3b3..5d7802d48b 100644
--- a/Makefile
+++ b/Makefile
@@ -4860,7 +4860,6 @@ SUBDIR+=	py-zict
 SUBDIR+=	py-zlmdb
 SUBDIR+=	py-zmqrpc
 SUBDIR+=	py27-libusb1
-SUBDIR+=	py27-virtualenv
 SUBDIR+=	py34-html-docs
 SUBDIR+=	py35-html-docs
 SUBDIR+=	pydance
@@ -5384,7 +5383,6 @@ SUBDIR+=	sympow
 SUBDIR+=	syn68k
 SUBDIR+=	synce-dynamite
 SUBDIR+=	synce-orange
-SUBDIR+=	syncserver-dependencies
 SUBDIR+=	syncstorage-rs
 SUBDIR+=	syncthing-discosrv
 SUBDIR+=	syncthing-inotify
diff --git a/py27-virtualenv/ALTERNATIVES b/py27-virtualenv/ALTERNATIVES
deleted file mode 100644
index 5076279a84..0000000000
--- a/py27-virtualenv/ALTERNATIVES
+++ /dev/null
@@ -1 +0,0 @@
-bin/virtualenv @PREFIX@/bin/virtualenv-@PYVERSSUFFIX@
diff --git a/py27-virtualenv/DESCR b/py27-virtualenv/DESCR
deleted file mode 100644
index 1bcf917025..0000000000
--- a/py27-virtualenv/DESCR
+++ /dev/null
@@ -1,22 +0,0 @@
-virtualenv is a tool to create isolated Python environments.
-
-The basic problem being addressed is one of dependencies and
-versions, and indirectly permissions. Imagine you have an application
-that needs version 1 of LibFoo, but another application requires
-version 2. How can you use both these applications? If you install
-everything into /usr/lib/python2.7/site-packages (or whatever your
-platform's standard location is), it's easy to end up in a situation
-where you unintentionally upgrade an application that shouldn't be
-upgraded.
-
-Or more generally, what if you want to install an application and
-leave it be? If an application works, any change in its libraries
-or the versions of those libraries can break the application.
-
-Also, what if you can't install packages into the global site-packages
-directory? For instance, on a shared host.
-
-In all these cases, virtualenv can help you. It creates an environment
-that has its own installation directories, that doesn't share
-libraries with other virtualenv environments (and optionally doesn't
-access the globally installed libraries either).
diff --git a/py27-virtualenv/Makefile b/py27-virtualenv/Makefile
deleted file mode 100644
index 0141991f14..0000000000
--- a/py27-virtualenv/Makefile
+++ /dev/null
@@ -1,44 +0,0 @@
-# $NetBSD: Makefile,v 1.54 2022/04/29 23:17:52 wiz Exp $
-
-DISTNAME=	virtualenv-16.7.9
-PKGNAME=	${PYPKGPREFIX}-${DISTNAME}
-PKGREVISION=	2
-CATEGORIES=	devel python
-MASTER_SITES=	${MASTER_SITE_PYPI:=v/virtualenv/}
-
-MAINTAINER=	pkgsrc-users%NetBSD.org@localhost
-HOMEPAGE=	https://virtualenv.pypa.io/
-COMMENT=	Virtual Python Environment builder
-LICENSE=	mit
-
-TEST_DEPENDS+=	${PYPKGPREFIX}-coverage>=4.5.0:../../devel/py-coverage
-TEST_DEPENDS+=	${PYPKGPREFIX}-pypiserver-[0-9]*:../../net/py-pypiserver
-TEST_DEPENDS+=	${PYPKGPREFIX}-six>=1.10.0:../../lang/py-six
-TEST_DEPENDS+=	${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test
-# does not support python 2.7
-#TEST_DEPENDS+=	${PYPKGPREFIX}-test-localserver-[0-9]*:../../devel/py-test-localserver
-TEST_DEPENDS+=	${PYPKGPREFIX}-test-timeout>=1.3.0:../../devel/py-test-timeout
-TEST_DEPENDS+=	${PYPKGPREFIX}-test-xdist-[0-9]*:../../devel/py-test-xdist
-
-PYTHON_VERSIONS_ACCEPTED=	27
-
-TEST_ENV+=	PYTHONPATH=${WRKSRC}/build/lib
-
-.include "../../lang/python/pyversion.mk"
-
-USE_PKG_RESOURCES=	yes
-
-USE_LANGUAGES=	# none
-
-REPLACE_PYTHON=	virtualenv.py
-
-post-install:
-	cd ${DESTDIR}${PREFIX}/bin && \
-	${MV} virtualenv virtualenv-${PYVERSSUFFIX} || ${TRUE}
-
-do-test:
-	cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX}
-
-.include "../../lang/python/application.mk"
-.include "../../lang/python/egg.mk"
-.include "../../mk/bsd.pkg.mk"
diff --git a/py27-virtualenv/PLIST b/py27-virtualenv/PLIST
deleted file mode 100644
index e78ff1c4e8..0000000000
--- a/py27-virtualenv/PLIST
+++ /dev/null
@@ -1,19 +0,0 @@
-@comment $NetBSD: PLIST,v 1.41 2020/01/23 22:59:42 wiz Exp $
-bin/virtualenv-${PYVERSSUFFIX}
-${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
-${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
-${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
-${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
-${PYSITELIB}/${EGG_INFODIR}/requires.txt
-${PYSITELIB}/${EGG_INFODIR}/top_level.txt
-${PYSITELIB}/${EGG_INFODIR}/zip-safe
-${PYSITELIB}/virtualenv.py
-${PYSITELIB}/virtualenv.pyc
-${PYSITELIB}/virtualenv.pyo
-${PYSITELIB}/virtualenv_support/__init__.py
-${PYSITELIB}/virtualenv_support/__init__.pyc
-${PYSITELIB}/virtualenv_support/__init__.pyo
-${PYSITELIB}/virtualenv_support/pip-19.1.1-py2.py3-none-any.whl
-${PYSITELIB}/virtualenv_support/pip-19.3.1-py2.py3-none-any.whl
-${PYSITELIB}/virtualenv_support/setuptools-42.0.2-py2.py3-none-any.whl
-${PYSITELIB}/virtualenv_support/wheel-0.33.6-py2.py3-none-any.whl
diff --git a/py27-virtualenv/distinfo b/py27-virtualenv/distinfo
deleted file mode 100644
index bb82d98104..0000000000
--- a/py27-virtualenv/distinfo
+++ /dev/null
@@ -1,5 +0,0 @@
-$NetBSD: distinfo,v 1.43 2021/10/26 10:19:15 nia Exp $
-
-BLAKE2s (virtualenv-16.7.9.tar.gz) = e1fdf1a842e05d8b8fe381e5bc41c752fbb6041ac43c2f9a0fcdb55014fcd086
-SHA512 (virtualenv-16.7.9.tar.gz) = ba2d08ec3425929806506c4c33e48d250153b02bd454eb340ab959519dd82ede8b12f2d2ab839e2a8711f29695d3956a457a1ca366a3b4fb4fb26c4c8d48c6cd
-Size (virtualenv-16.7.9.tar.gz) = 5121717 bytes
diff --git a/syncserver-dependencies/DESCR b/syncserver-dependencies/DESCR
deleted file mode 100644
index e11c57fae6..0000000000
--- a/syncserver-dependencies/DESCR
+++ /dev/null
@@ -1 +0,0 @@
-Meta package for dependencies needed by the Firefox Sync Server.
diff --git a/syncserver-dependencies/Makefile b/syncserver-dependencies/Makefile
deleted file mode 100644
index cdb7870399..0000000000
--- a/syncserver-dependencies/Makefile
+++ /dev/null
@@ -1,24 +0,0 @@
-# $NetBSD$
-
-DISTNAME=	syncserver-dependencies-1.2
-PKGNAME=	${PYPKGPREFIX}-${DISTNAME}
-CATEGORIES=	misc
-MASTER_SITES=	#
-
-MAINTAINER=	wiz%NetBSD.org@localhost
-HOMEPAGE=	http://docs.services.mozilla.com/howtos/run-sync.html
-COMMENT=	Meta Package for Firefox Sync Server's dependencies
-LICENSE=	public-domain
-
-USE_TOOLS+=	gmake:run
-
-DEPENDS+=	${PYPKGPREFIX}-virtualenv-[0-9]*:../../wip/py27-virtualenv
-DEPENDS+=	sqlite3-[0-9]*:../../databases/sqlite3
-
-META_PACKAGE=	yes
-PYTHON_VERSIONS_ACCEPTED=	27 # only supports 2.7
-
-.include "options.mk"
-
-.include "../../lang/python/application.mk"
-.include "../../mk/bsd.pkg.mk"
diff --git a/syncserver-dependencies/options.mk b/syncserver-dependencies/options.mk
deleted file mode 100644
index cbe97a8638..0000000000
--- a/syncserver-dependencies/options.mk
+++ /dev/null
@@ -1,18 +0,0 @@
-# $NetBSD: options.mk,v 1.2 2015/01/25 20:05:54 thomasklausner Exp $
-
-PKG_OPTIONS_VAR=	PKG_OPTIONS.sync-server-dependencies
-PKG_SUPPORTED_OPTIONS=	apache nginx
-PKG_SUGGESTED_OPTIONS=	nginx
-
-.include "../../mk/bsd.options.mk"
-
-.if !empty(PKG_OPTIONS:Mapache)
-DEPENDS+=	${PYPKGPREFIX}-${APACHE_PKG_PREFIX}-mod_wsgi-[0-9]*:../../www/py-mod_wsgi
-.include "../../mk/apache.mk"
-.endif
-
-.if !empty(PKG_OPTIONS:Mnginx)
-DEPENDS+=	nginx-[0-9]*:../../www/nginx
-# not available for python 2.x in pkgsrc
-#DEPENDS+=	${PYPKGPREFIX}-gunicorn-[0-9]*:../../www/py-gunicorn
-.endif


Home | Main Index | Thread Index | Old Index