Revision: 145244 https://trac.macports.org/changeset/145244 Author: raimue@macports.org Date: 2016-01-29 07:56:27 -0800 (Fri, 29 Jan 2016) Log Message: ----------- archivers/brotli, python/py-brotli: New ports, for the Brotli compression format as standalone tool and python library Added Paths: ----------- trunk/dports/archivers/brotli/ trunk/dports/archivers/brotli/Portfile trunk/dports/python/py-brotli/ trunk/dports/python/py-brotli/Portfile Added: trunk/dports/archivers/brotli/Portfile =================================================================== --- trunk/dports/archivers/brotli/Portfile (rev 0) +++ trunk/dports/archivers/brotli/Portfile 2016-01-29 15:56:27 UTC (rev 145244) @@ -0,0 +1,35 @@ +# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 +# $Id$ + +PortSystem 1.0 +PortGroup github 1.0 + +# keep this in sync with port py-brotli +github.setup google brotli 0.3.0 v +categories archivers +platforms darwin +maintainers raimue \ + openmaintainer +license MIT + +description Brotli compression format + +long_description \ + Brotli is a generic-purpose lossless compression algorithm that is similar \ + in speed with deflate but offers more dense compression. This port installs \ + the bro tool, see also port py-brotli for python modules. + +checksums rmd160 567107e47181fed44653cf3586455a1af913d726 \ + sha256 bf848b80f716dbf72422b6d4f3648d0be5786908a4ec8958ef8071e2e9e34564 + +use_configure no + +build.dir ${worksrcpath}/tools +build.args CC=${configure.cc} \ + CXX=${configure.cxx} \ + CFLAGS="${configure.cflags} [get_canonical_archflags cc]" \ + CXXFLAGS="${configure.cxxflags} [get_canonical_archflags cxx]" + +destroot { + xinstall -m 755 ${worksrcpath}/tools/bro ${destroot}${prefix}/bin +} Property changes on: trunk/dports/archivers/brotli/Portfile ___________________________________________________________________ Added: svn:keywords + Id Added: svn:eol-style + native Added: trunk/dports/python/py-brotli/Portfile =================================================================== --- trunk/dports/python/py-brotli/Portfile (rev 0) +++ trunk/dports/python/py-brotli/Portfile 2016-01-29 15:56:27 UTC (rev 145244) @@ -0,0 +1,27 @@ +# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 +# $Id$ + +PortSystem 1.0 +PortGroup github 1.0 +PortGroup python 1.0 + +# keep this in sync with port brotli +github.setup google brotli 0.3.0 v +name py-brotli +categories python archivers +platforms darwin +maintainers raimue \ + openmaintainer +license MIT + +description Python module for brotli compression format + +long_description \ + Brotli is a generic-purpose lossless compression algorithm that is similar \ + in speed with deflate but offers more dense compression. This port installs \ + python modules, see also port brotli for the bro tool. + +checksums rmd160 567107e47181fed44653cf3586455a1af913d726 \ + sha256 bf848b80f716dbf72422b6d4f3648d0be5786908a4ec8958ef8071e2e9e34564 + +python.versions 27 33 34 35 Property changes on: trunk/dports/python/py-brotli/Portfile ___________________________________________________________________ Added: svn:keywords + Id Added: svn:eol-style + native
participants (1)
-
raimue@macports.org