From owner-svn-ports-all@freebsd.org Fri May 11 16:54:47 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3F758FAAF24; Fri, 11 May 2018 16:54:47 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 533537621B; Fri, 11 May 2018 16:54:45 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 668DB124AA; Fri, 11 May 2018 16:54:45 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w4BGsjWD039764; Fri, 11 May 2018 16:54:45 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w4BGsi9h039761; Fri, 11 May 2018 16:54:44 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201805111654.w4BGsi9h039761@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 11 May 2018 16:54:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r469672 - in head/www: . py-django-ranged-response X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/www: . py-django-ranged-response X-SVN-Commit-Revision: 469672 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 May 2018 16:54:47 -0000 Author: sunpoet Date: Fri May 11 16:54:44 2018 New Revision: 469672 URL: https://svnweb.freebsd.org/changeset/ports/469672 Log: Add py-django-ranged-response 0.2.0 This is a modified FileResponse that returns 'Content-Range' headers with the HTTP response, so browsers (e.g. Safari 9+) that request the file, can stream the response properly. WWW: https://github.com/i3thuan5/django-ranged-response PR: 228132 Submitted by: Kai Added: head/www/py-django-ranged-response/ head/www/py-django-ranged-response/Makefile (contents, props changed) head/www/py-django-ranged-response/distinfo (contents, props changed) head/www/py-django-ranged-response/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Fri May 11 16:54:38 2018 (r469671) +++ head/www/Makefile Fri May 11 16:54:44 2018 (r469672) @@ -1589,6 +1589,7 @@ SUBDIR += py-django-post_office SUBDIR += py-django-profiles SUBDIR += py-django-pyscss + SUBDIR += py-django-ranged-response SUBDIR += py-django-recaptcha SUBDIR += py-django-redis SUBDIR += py-django-registration Added: head/www/py-django-ranged-response/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-django-ranged-response/Makefile Fri May 11 16:54:44 2018 (r469672) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= django-ranged-response +DISTVERSION= 0.2.0 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= freebsd_ports@k-worx.org +COMMENT= Modified Django FileResponse that adds Content-Range headers + +LICENSE= MIT + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django111>=0:www/py-django111@${PY_FLAVOR} + +USES= python +USE_PYTHON= distutils autoplist +NO_ARCH= yes + +.include Added: head/www/py-django-ranged-response/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-django-ranged-response/distinfo Fri May 11 16:54:44 2018 (r469672) @@ -0,0 +1,3 @@ +TIMESTAMP = 1525989759 +SHA256 (django-ranged-response-0.2.0.tar.gz) = f71fff352a37316b9bead717fc76e4ddd6c9b99c4680cdf4783b9755af1cf985 +SIZE (django-ranged-response-0.2.0.tar.gz) = 3021 Added: head/www/py-django-ranged-response/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-django-ranged-response/pkg-descr Fri May 11 16:54:44 2018 (r469672) @@ -0,0 +1,5 @@ +This is a modified FileResponse that returns 'Content-Range' headers with the +HTTP response, so browsers (e.g. Safari 9+) that request the file, can stream +the response properly. + +WWW: https://github.com/i3thuan5/django-ranged-response