From owner-svn-ports-head@freebsd.org Wed Mar 1 18:57:33 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 328F6CF39D3; Wed, 1 Mar 2017 18:57:33 +0000 (UTC) (envelope-from matthew@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 mx1.freebsd.org (Postfix) with ESMTPS id D931DF45; Wed, 1 Mar 2017 18:57:32 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v21IvV0f063649; Wed, 1 Mar 2017 18:57:31 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v21IvVIp063645; Wed, 1 Mar 2017 18:57:31 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201703011857.v21IvVIp063645@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Wed, 1 Mar 2017 18:57:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r435193 - in head/textproc: . py-python-slugify X-SVN-Group: ports-head 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.23 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, 01 Mar 2017 18:57:33 -0000 Author: matthew Date: Wed Mar 1 18:57:31 2017 New Revision: 435193 URL: https://svnweb.freebsd.org/changeset/ports/435193 Log: A Python slugify application that handles unicode WWW: https://github.com/un33k/python-slugify Added: head/textproc/py-python-slugify/ head/textproc/py-python-slugify/Makefile (contents, props changed) head/textproc/py-python-slugify/distinfo (contents, props changed) head/textproc/py-python-slugify/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Wed Mar 1 18:49:56 2017 (r435192) +++ head/textproc/Makefile Wed Mar 1 18:57:31 2017 (r435193) @@ -1301,6 +1301,7 @@ SUBDIR += py-python-augeas SUBDIR += py-python-docx SUBDIR += py-python-gettext + SUBDIR += py-python-slugify SUBDIR += py-pytidylib SUBDIR += py-pyx12 SUBDIR += py-qrcode Added: head/textproc/py-python-slugify/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-python-slugify/Makefile Wed Mar 1 18:57:31 2017 (r435193) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= python-slugify +PORTVERSION= 1.2.1 +CATEGORIES= textproc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= matthew@FreeBSD.org +COMMENT= Slugify application that handles unicode + +LICENSE= MIT + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}unidecode>=0.04.16:converters/py-unidecode + +USES= python +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +.include Added: head/textproc/py-python-slugify/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-python-slugify/distinfo Wed Mar 1 18:57:31 2017 (r435193) @@ -0,0 +1,3 @@ +TIMESTAMP = 1488355541 +SHA256 (python-slugify-1.2.1.tar.gz) = 501182ec738cc8b743ae5c76c183f4427187ef016257f062b3fa594f60916e34 +SIZE (python-slugify-1.2.1.tar.gz) = 5327 Added: head/textproc/py-python-slugify/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-python-slugify/pkg-descr Wed Mar 1 18:57:31 2017 (r435193) @@ -0,0 +1,3 @@ +A Python slugify application that handles unicode + +WWW: https://github.com/un33k/python-slugify