Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 28 Sep 2020 02:34:03 +0000 (UTC)
From:      Kubilay Kocak <koobs@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r550390 - in head/www/py-django-dpaste: . files
Message-ID:  <202009280234.08S2Y3Ut007788@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: koobs
Date: Mon Sep 28 02:34:02 2020
New Revision: 550390
URL: https://svnweb.freebsd.org/changeset/ports/550390

Log:
  www/py-django-dpaste: Fix RUN_DEPENDS regression
  
  ports r549439 caused www/py-django-dpaste to fail to build:
  
    py37-django-dpaste-3.3.1_1 depends on package: py37-jsx-lexer=0.0.7 - not found
  
  This change backports an upstream commit [1] allowing js-lexer
  dependency to >=0.0.7
  
  [1] https://github.com/bartTC/dpaste/commit/02a6812c80a7471cffd0e82b5093ac6e7a783bcd
  
  Reported by:	pkg-fallout
  MFH:		2020Q3 (build fix, no functional change in quarterly)

Added:
  head/www/py-django-dpaste/files/
  head/www/py-django-dpaste/files/patch-setup.cfg   (contents, props changed)
Modified:
  head/www/py-django-dpaste/Makefile

Modified: head/www/py-django-dpaste/Makefile
==============================================================================
--- head/www/py-django-dpaste/Makefile	Mon Sep 28 02:13:53 2020	(r550389)
+++ head/www/py-django-dpaste/Makefile	Mon Sep 28 02:34:02 2020	(r550390)
@@ -19,7 +19,7 @@ RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six
 		${PYTHON_PKGNAMEPREFIX}pygments>=1.6:textproc/py-pygments@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}django-csp>=3.3:www/py-django-csp@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}django-staticinline>=1.0:www/py-django-staticinline@${PY_FLAVOR} \
-		${PYTHON_PKGNAMEPREFIX}jsx-lexer=0.0.7:textproc/py-jsx-lexer@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}jsx-lexer>=0.0.7:textproc/py-jsx-lexer@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}docutils>0:textproc/py-docutils@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}misaka>=2.1.0:textproc/py-misaka@${PY_FLAVOR}
 

Added: head/www/py-django-dpaste/files/patch-setup.cfg
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-django-dpaste/files/patch-setup.cfg	Mon Sep 28 02:34:02 2020	(r550390)
@@ -0,0 +1,16 @@
+From 02a6812c80a7471cffd0e82b5093ac6e7a783bcd Mon Sep 17 00:00:00 2001
+From: Martin Mahner <martin@mahner.org>
+Date: Wed, 8 Jan 2020 13:12:28 +0100
+Subject: [PATCH] Dependency updates and cleanup.
+
+--- setup.cfg.orig	2020-09-28 02:16:26 UTC
++++ setup.cfg
+@@ -35,7 +35,7 @@ install_requires = 
+ 	django-staticinline>=1.0
+ 	django-csp>=3.3
+ 	
+-	jsx-lexer==0.0.7
++	jsx-lexer>=0.0.7
+ 	misaka>=2.1.0
+ 	docutils
+ 	



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202009280234.08S2Y3Ut007788>