From owner-svn-ports-head@freebsd.org Wed Sep 23 14:34:25 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 0CDEC3FB593; Wed, 23 Sep 2020 14:34:25 +0000 (UTC) (envelope-from dvl@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4BxLKX6bZfz4tpb; Wed, 23 Sep 2020 14:34:24 +0000 (UTC) (envelope-from dvl@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 C667C1208E; Wed, 23 Sep 2020 14:34:24 +0000 (UTC) (envelope-from dvl@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 08NEYObA058909; Wed, 23 Sep 2020 14:34:24 GMT (envelope-from dvl@FreeBSD.org) Received: (from dvl@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 08NEYO1j058905; Wed, 23 Sep 2020 14:34:24 GMT (envelope-from dvl@FreeBSD.org) Message-Id: <202009231434.08NEYO1j058905@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dvl set sender to dvl@FreeBSD.org using -f From: Dan Langille Date: Wed, 23 Sep 2020 14:34:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r549730 - in head/www: . py-fqdn X-SVN-Group: ports-head X-SVN-Commit-Author: dvl X-SVN-Commit-Paths: in head/www: . py-fqdn X-SVN-Commit-Revision: 549730 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Sep 2020 14:34:25 -0000 Author: dvl Date: Wed Sep 23 14:34:23 2020 New Revision: 549730 URL: https://svnweb.freebsd.org/changeset/ports/549730 Log: Add www/py-fqdn which validates a fully-qualified domain name (FQDN), in full compliance with RFC 1035 PR: 249436 Submitted by: James Added: head/www/py-fqdn/ head/www/py-fqdn/Makefile (contents, props changed) head/www/py-fqdn/distinfo (contents, props changed) head/www/py-fqdn/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Wed Sep 23 14:15:14 2020 (r549729) +++ head/www/Makefile Wed Sep 23 14:34:23 2020 (r549730) @@ -1588,6 +1588,7 @@ SUBDIR += py-folium SUBDIR += py-forcediphttpsadapter SUBDIR += py-formencode + SUBDIR += py-fqdn SUBDIR += py-freenit SUBDIR += py-frozen-flask SUBDIR += py-gandi.cli Added: head/www/py-fqdn/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-fqdn/Makefile Wed Sep 23 14:34:23 2020 (r549730) @@ -0,0 +1,23 @@ +# Created by: James White +# $FreeBSD$ + +PORTNAME= fqdn +PORTVERSION= 1.4.0 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= whitejv81@gmail.com +COMMENT= RFC-compliant FQDN validation and manipulation for Python + +USES= python +USE_PYTHON= autoplist distutils +NO_ARCH= yes + +.include + +.if ${PYTHON_REL} < 3800 +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cached-property>=1.3.0:devel/py-cached-property@${PY_FLAVOR} +.endif + +.include Added: head/www/py-fqdn/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-fqdn/distinfo Wed Sep 23 14:34:23 2020 (r549730) @@ -0,0 +1,3 @@ +TIMESTAMP = 1600435198 +SHA256 (fqdn-1.4.0.tar.gz) = 30e8f2e685ce87cdace4712fd97c5d09f5e6fa519bbb66e8f188f6a7cb3a5c4e +SIZE (fqdn-1.4.0.tar.gz) = 3028 Added: head/www/py-fqdn/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-fqdn/pkg-descr Wed Sep 23 14:34:23 2020 (r549730) @@ -0,0 +1,4 @@ +Validates a fully-qualified domain name (FQDN), in full compliance with +RFC 1035, and the "preferred form" specified in RFC 3696 section 2. + +WWW: https://github.com/ypcrts/fqdn