summaryrefslogtreecommitdiff
path: root/archivers/liblz4 (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Use USES=pathfix where applicable.Mathieu Arnold2016-10-211-5/+4
| | | | | | | | | | | PR: 213195 Submitted by: mat Exp-run by: antoine Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D8093 Notes: svn path=/head/; revision=424427
* - Fix trailing whitespace in pkg-descrs, categories [a-f]*Dmitry Marakasov2016-05-191-2/+2
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=415498
* Pass maintainership to submitterThomas Zander2016-05-151-1/+1
| | | | | | | | PR: 209516 Submitted by: martin@waschbuesch.de Notes: svn path=/head/; revision=415228
* Cleanup GH_* and variables order.Mathieu Arnold2015-12-291-1/+0
| | | | | | | Sponsored by: Absolight Notes: svn path=/head/; revision=404743
* - Silence patchingDmitry Marakasov2015-10-062-4/+4
| | | | | | | - Fix WWW: Notes: svn path=/head/; revision=398721
* Reassign some of my ports to the Collective.Adam Weinberger2015-10-051-1/+1
| | | | Notes: svn path=/head/; revision=398654
* Update to r131.Adam Weinberger2015-07-072-4/+4
| | | | Notes: svn path=/head/; revision=391523
* Update to r130, which incorporates the patches that riggs committed inAdam Weinberger2015-06-295-97/+3
| | | | | | | r387288. Notes: svn path=/head/; revision=390875
* Fix decompression in a pipeline: import fix from dev branch inThomas Zander2015-05-244-0/+94
| | | | | | | | | | | https://github.com/Cyan4973/lz4/commit/58b5aadb1fc5d937e81c8f33e0e8290f2097c6bb PR: 200422 Submitted by: eborisch+FreeBSD@gmail.com Approved by: adamw (maintainer, implicit) Notes: svn path=/head/; revision=387288
* Update to r129. Changes at https://github.com/Cyan4973/lz4/releases/tag/r129.Adam Weinberger2015-05-192-7/+5
| | | | | | | Remove the CONFLICTS on archivers/lz4 which was removed from the ports tree. Notes: svn path=/head/; revision=386791
* USE_GITHUB: For the new support, fix DISTNAME to be more consistent.Bryan Drewery2015-04-281-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | When using GH_TAGNAME the DISTNAME would have GH_PROJECT and GH_ACCOUNT in it. When not using GH_TAGNAME it would not have this. Now both cases will add in the GH_PROJECT and GH_ACCOUNT. Add special care to ensure that the DISTVERSION is not added in twice. If a port does GH_TAGNAME=v${PORTVERSION} it will be added in twice though. For that case DISTVERSIONPREFIX=v should be set and no GH_TAGNAME should be used. empty() is used rather than (!defined || !${}) to support fmake. The purpose of setting DISTNAME at all in these cases is to make it more clear that the distfile is from *GITHUB* and to avoid collisions if a project were to be renamed or moved. Without adding in GH_PROJECT and GH_ACCOUNT then there are real risks that collisions on filenames would happen on renamed or moved projects, which is fairly common. A GITHUB-generated file may not match a custom-rolled or git-archive-rolled distfile. PR: 199069 With hat: portmgr Testing done: All USE_GITHUB ports without GH_COMMIT were checksum/fetch/extract/WRKSRC tested. Notes: svn path=/head/; revision=384932
* Update to r128.Adam Weinberger2015-04-194-7/+9
| | | | | | | | | Changes are listed on https://github.com/Cyan4973/lz4/releases Also, use the new USE_GITHUB syntax, and update WWW. Notes: svn path=/head/; revision=384319
* Re-add back ALL_TARGET=default. For reasons that I still don't understand,Adam Weinberger2015-03-251-0/+1
| | | | | | | | | it breaks the build for some people. This time, add a comment so I don't try to remove it again in the future. Notes: svn path=/head/; revision=382192
* Update to r127. Fix tons of hardcoded paths in the Makefile to enableAdam Weinberger2015-03-243-25/+19
| | | | | | | 'make install' to work properly. Notes: svn path=/head/; revision=382152
* I was never able to replicate this, but a number of people have reported thatAdam Weinberger2014-12-061-1/+1
| | | | | | | | | | liblz4 fails to build on amd64, and they all agree that this patch fixes it. PR: 194609 Submitted by: Roland Smith Notes: svn path=/head/; revision=374141
* Add archivers/liblz4. There is already archivers/lz4, which it looksAdam Weinberger2014-10-264-0/+77
like might be an old version of this, but it only installs a binary. This installs binaries and libraries/headers. LZ4 is a very fast lossless compression algorithm, providing compression speed at 400 MB/s per core, scalable with multi-cores CPU. It also features an extremely fast decoder, with speed in multiple GB/s per core, typically reaching RAM speed limits on multi-core systems. A high compression derivative, called LZ4_HC, is also provided. It trades CPU time for compression ratio. The libraries are BSD licensed, and the binaries are GPLv2. WWW: https://code.google.com/p/lz4/ Notes: svn path=/head/; revision=371493