Date: Wed, 4 Jan 2017 12:27:47 +0000 (UTC) From: Alberto Villa <avilla@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r430551 - in head/textproc: . py-scour Message-ID: <201701041227.v04CRlnr076503@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: avilla Date: Wed Jan 4 12:27:46 2017 New Revision: 430551 URL: https://svnweb.freebsd.org/changeset/ports/430551 Log: Scour is a Python tool that takes an SVG file and produces a cleaner and more concise file. It is intended to be used after exporting to SVG with a GUI editor, such as Inkscape or Adobe Illustrator. Scour was originally developed by Jeff "codedread" Schiller and Louis Simard. Development is now maintained by Tobias "oberstet" Oberstein. WWW: https://github.com/scour-project/scour Added: head/textproc/py-scour/ head/textproc/py-scour/Makefile (contents, props changed) head/textproc/py-scour/distinfo (contents, props changed) head/textproc/py-scour/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Wed Jan 4 12:23:08 2017 (r430550) +++ head/textproc/Makefile Wed Jan 4 12:27:46 2017 (r430551) @@ -1300,6 +1300,7 @@ SUBDIR += py-rst2html5 SUBDIR += py-rstyoutube SUBDIR += py-rxp + SUBDIR += py-scour SUBDIR += py-sgrep SUBDIR += py-snowballstemmer SUBDIR += py-sparqlwrapper Added: head/textproc/py-scour/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-scour/Makefile Wed Jan 4 12:27:46 2017 (r430551) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= scour +PORTVERSION= 0.35 +CATEGORIES= textproc python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= avilla@FreeBSD.org +COMMENT= SVG scrubber + +LICENSE= APACHE20 + +USE_GITHUB= yes +GH_ACCOUNT= scour-project +GH_TAGNAME= v${PORTVERSION} + +USES= python +USE_PYTHON= distutils autoplist + +.include <bsd.port.mk> Added: head/textproc/py-scour/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-scour/distinfo Wed Jan 4 12:27:46 2017 (r430551) @@ -0,0 +1,3 @@ +TIMESTAMP = 1483477783 +SHA256 (scour-project-scour-0.35-v0.35_GH0.tar.gz) = 91a7dd0d721a3567b802c1b353ef451621594e628fe723cedb65cd4629fbc96f +SIZE (scour-project-scour-0.35-v0.35_GH0.tar.gz) = 80981 Added: head/textproc/py-scour/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-scour/pkg-descr Wed Jan 4 12:27:46 2017 (r430551) @@ -0,0 +1,8 @@ +Scour is a Python tool that takes an SVG file and produces a cleaner +and more concise file. It is intended to be used after exporting to +SVG with a GUI editor, such as Inkscape or Adobe Illustrator. + +Scour was originally developed by Jeff "codedread" Schiller and Louis +Simard. Development is now maintained by Tobias "oberstet" Oberstein. + +WWW: https://github.com/scour-project/scour
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201701041227.v04CRlnr076503>