*/*: sync with upstream
Taken from: FreeBSD
This commit is contained in:
parent
4cddd655a4
commit
56204243bd
294 changed files with 2249 additions and 1037 deletions
|
|
@ -32,6 +32,7 @@
|
|||
SUBDIR += gcab
|
||||
SUBDIR += gcpio
|
||||
SUBDIR += gnome-autoar
|
||||
SUBDIR += go-compress
|
||||
SUBDIR += grzip
|
||||
SUBDIR += gtar
|
||||
SUBDIR += gzip
|
||||
|
|
|
|||
29
archivers/go-compress/Makefile
Normal file
29
archivers/go-compress/Makefile
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= compress
|
||||
PORTVERSION= 1.2.1
|
||||
DISTVERSIONPREFIX= v
|
||||
CATEGORIES= archivers
|
||||
PKGNAMEPREFIX= go-
|
||||
|
||||
MAINTAINER= guy.tabrar@me.com
|
||||
COMMENT= Go optimised compression packages
|
||||
|
||||
LICENSE= BSD3CLAUSE
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE
|
||||
|
||||
BUILD_DEPENDS= go-cpuid>=0:devel/go-cpuid \
|
||||
go-crc32>=0:devel/go-crc32
|
||||
RUN_DEPENDS:= ${BUILD_DEPENDS}
|
||||
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= klauspost
|
||||
USES= go
|
||||
GO_PKGNAME= github.com/klauspost/compress
|
||||
GO_TARGET= ${GO_PKGNAME}/flate \
|
||||
${GO_PKGNAME}/gzip \
|
||||
${GO_PKGNAME}/snappy \
|
||||
${GO_PKGNAME}/zip \
|
||||
${GO_PKGNAME}/zlib
|
||||
|
||||
.include <bsd.port.mk>
|
||||
3
archivers/go-compress/distinfo
Normal file
3
archivers/go-compress/distinfo
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1487477163
|
||||
SHA256 (klauspost-compress-v1.2.1_GH0.tar.gz) = 5c95b4b8dba515d275c4071675d35415512b0415d103653ba00f7305bb9ecfa9
|
||||
SIZE (klauspost-compress-v1.2.1_GH0.tar.gz) = 2725575
|
||||
7
archivers/go-compress/pkg-descr
Normal file
7
archivers/go-compress/pkg-descr
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
This package is based on an optimized Deflate function, which is used
|
||||
by gzip/zip/zlib packages.
|
||||
|
||||
It offers slightly better compression at lower compression settings, and
|
||||
up to 3x faster encoding at highest compression level.
|
||||
|
||||
WWW: https://github.com/klauspost/compress
|
||||
144
archivers/go-compress/pkg-plist
Normal file
144
archivers/go-compress/pkg-plist
Normal file
|
|
@ -0,0 +1,144 @@
|
|||
%%GO_LIBDIR%%/%%GO_PKGNAME%%/flate.a
|
||||
%%GO_LIBDIR%%/%%GO_PKGNAME%%/gzip.a
|
||||
%%GO_LIBDIR%%/%%GO_PKGNAME%%/snappy.a
|
||||
%%GO_LIBDIR%%/%%GO_PKGNAME%%/zip.a
|
||||
%%GO_LIBDIR%%/%%GO_PKGNAME%%/zlib.a
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/asm_test.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/copy.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/copy_test.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/crc32_amd64.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/crc32_amd64.s
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/crc32_noasm.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/deflate.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/deflate_test.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/dict_decoder.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/dict_decoder_test.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/flate_test.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/gen.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/huffman_bit_writer.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/huffman_bit_writer_test.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/huffman_code.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/inflate.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/inflate_test.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/reader_test.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/reverse_bits.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/snappy.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/testdata/huffman-null-max.dyn.expect
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/testdata/huffman-null-max.dyn.expect-noinput
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/testdata/huffman-null-max.golden
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/testdata/huffman-null-max.in
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/testdata/huffman-null-max.wb.expect
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/testdata/huffman-null-max.wb.expect-noinput
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/testdata/huffman-pi.dyn.expect
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/testdata/huffman-pi.dyn.expect-noinput
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/testdata/huffman-pi.golden
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/testdata/huffman-pi.in
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/testdata/huffman-pi.wb.expect
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/testdata/huffman-pi.wb.expect-noinput
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/testdata/huffman-rand-1k.dyn.expect
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/testdata/huffman-rand-1k.dyn.expect-noinput
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/testdata/huffman-rand-1k.golden
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/testdata/huffman-rand-1k.in
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/testdata/huffman-rand-1k.wb.expect
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/testdata/huffman-rand-1k.wb.expect-noinput
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/testdata/huffman-rand-limit.dyn.expect
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/testdata/huffman-rand-limit.dyn.expect-noinput
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/testdata/huffman-rand-limit.golden
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/testdata/huffman-rand-limit.in
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/testdata/huffman-rand-limit.wb.expect
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/testdata/huffman-rand-limit.wb.expect-noinput
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/testdata/huffman-rand-max.golden
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/testdata/huffman-rand-max.in
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/testdata/huffman-shifts.dyn.expect
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/testdata/huffman-shifts.dyn.expect-noinput
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/testdata/huffman-shifts.golden
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/testdata/huffman-shifts.in
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/testdata/huffman-shifts.wb.expect
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/testdata/huffman-shifts.wb.expect-noinput
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/testdata/huffman-text-shift.dyn.expect
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/testdata/huffman-text-shift.dyn.expect-noinput
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/testdata/huffman-text-shift.golden
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/testdata/huffman-text-shift.in
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/testdata/huffman-text-shift.wb.expect
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/testdata/huffman-text-shift.wb.expect-noinput
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/testdata/huffman-text.dyn.expect
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/testdata/huffman-text.dyn.expect-noinput
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/testdata/huffman-text.golden
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/testdata/huffman-text.in
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/testdata/huffman-text.wb.expect
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/testdata/huffman-text.wb.expect-noinput
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/testdata/huffman-zero.dyn.expect
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/testdata/huffman-zero.dyn.expect-noinput
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/testdata/huffman-zero.golden
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/testdata/huffman-zero.in
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/testdata/huffman-zero.wb.expect
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/testdata/huffman-zero.wb.expect-noinput
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/testdata/null-long-match.dyn.expect-noinput
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/testdata/null-long-match.wb.expect-noinput
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/token.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/flate/writer_test.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/gzip/example_test.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/gzip/gunzip.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/gzip/gunzip_test.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/gzip/gzip.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/gzip/gzip_test.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/gzip/testdata/issue6550.gz
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/gzip/testdata/test.json
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/snappy/AUTHORS
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/snappy/CONTRIBUTORS
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/snappy/LICENSE
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/snappy/README
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/snappy/cmd/snappytool/main.cpp
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/snappy/decode.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/snappy/decode_amd64.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/snappy/decode_amd64.s
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/snappy/decode_other.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/snappy/encode.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/snappy/encode_amd64.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/snappy/encode_amd64.s
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/snappy/encode_other.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/snappy/golden_test.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/snappy/runbench.cmd
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/snappy/snappy.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/snappy/snappy_test.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/snappy/testdata/Mark.Twain-Tom.Sawyer.txt
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/snappy/testdata/Mark.Twain-Tom.Sawyer.txt.rawsnappy
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/snappy/testdata/alice29.txt
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/snappy/testdata/asyoulik.txt
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/snappy/testdata/fireworks.jpeg
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/snappy/testdata/geo.protodata
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/snappy/testdata/html
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/snappy/testdata/html_x_4
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/snappy/testdata/kppkn.gtb
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/snappy/testdata/lcet10.txt
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/snappy/testdata/paper-100k.pdf
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/snappy/testdata/plrabn12.txt
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/snappy/testdata/random
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/snappy/testdata/urls.10K
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/zip/example_test.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/zip/reader.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/zip/reader_test.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/zip/register.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/zip/struct.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/zip/testdata/crc32-not-streamed.zip
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/zip/testdata/dd.zip
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/zip/testdata/go-no-datadesc-sig.zip
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/zip/testdata/go-with-datadesc-sig.zip
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/zip/testdata/gophercolor16x16.png
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/zip/testdata/readme.notzip
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/zip/testdata/readme.zip
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/zip/testdata/symlink.zip
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/zip/testdata/test-trailing-junk.zip
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/zip/testdata/test.zip
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/zip/testdata/unix.zip
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/zip/testdata/winxp.zip
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/zip/testdata/zip64-2.zip
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/zip/testdata/zip64.zip
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/zip/writer.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/zip/writer_test.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/zip/zip_test.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/zlib/example_test.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/zlib/reader.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/zlib/reader_test.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/zlib/writer.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/zlib/writer_test.go
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= Compress-Raw-Bzip2
|
||||
PORTVERSION= 2.072
|
||||
PORTVERSION= 2.074
|
||||
CATEGORIES= archivers perl5
|
||||
MASTER_SITES= CPAN
|
||||
PKGNAMEPREFIX= p5-
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1487007277
|
||||
SHA256 (Compress-Raw-Bzip2-2.072.tar.gz) = e3e9e5967edf34b56265554599e4209b19cbc74b6a8846b9fcccb9ab52652c4b
|
||||
SIZE (Compress-Raw-Bzip2-2.072.tar.gz) = 137444
|
||||
TIMESTAMP = 1487569638
|
||||
SHA256 (Compress-Raw-Bzip2-2.074.tar.gz) = 44a1e55136da21ff5ab028b5e9de696dab2fbc771a75cbd44127ff121ce6b22c
|
||||
SIZE (Compress-Raw-Bzip2-2.074.tar.gz) = 137502
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= Compress-Raw-Lzma
|
||||
PORTVERSION= 2.072
|
||||
PORTVERSION= 2.074
|
||||
CATEGORIES= archivers perl5
|
||||
MASTER_SITES= CPAN
|
||||
PKGNAMEPREFIX= p5-
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1487007284
|
||||
SHA256 (Compress-Raw-Lzma-2.072.tar.gz) = 17650294321d90d9acd3ec5f54173faa01b8fb10073e106f108dcca0198f6e22
|
||||
SIZE (Compress-Raw-Lzma-2.072.tar.gz) = 113635
|
||||
TIMESTAMP = 1487569654
|
||||
SHA256 (Compress-Raw-Lzma-2.074.tar.gz) = d48aae8c79c9178be6e9c887b9e264fa61d7119bfebccdb0c243ab9af392381c
|
||||
SIZE (Compress-Raw-Lzma-2.074.tar.gz) = 113840
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= Compress-Raw-Zlib
|
||||
PORTVERSION= 2.072
|
||||
PORTVERSION= 2.074
|
||||
CATEGORIES= archivers perl5
|
||||
MASTER_SITES= CPAN
|
||||
PKGNAMEPREFIX= p5-
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1487007292
|
||||
SHA256 (Compress-Raw-Zlib-2.072.tar.gz) = 943da5086ebd6d17a9fe650291b5fb5a6f7ab4a1391003144688719d1ed9ddbb
|
||||
SIZE (Compress-Raw-Zlib-2.072.tar.gz) = 239452
|
||||
TIMESTAMP = 1487569668
|
||||
SHA256 (Compress-Raw-Zlib-2.074.tar.gz) = a369de78a36aa0951cdf1cd15c15109f2421e9b6d148d6322916906876ea7721
|
||||
SIZE (Compress-Raw-Zlib-2.074.tar.gz) = 239604
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= IO-Compress-Lzf
|
||||
PORTVERSION= 2.072
|
||||
PORTVERSION= 2.074
|
||||
CATEGORIES= archivers perl5
|
||||
MASTER_SITES= CPAN
|
||||
PKGNAMEPREFIX= p5-
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1487007309
|
||||
SHA256 (IO-Compress-Lzf-2.072.tar.gz) = af6dddf56efd7119b78274c3db9c42b42015fef08dd35256d908f0ea1291342a
|
||||
SIZE (IO-Compress-Lzf-2.072.tar.gz) = 73821
|
||||
TIMESTAMP = 1487569699
|
||||
SHA256 (IO-Compress-Lzf-2.074.tar.gz) = 03a6731cb839f3935b5ad0d63b147a2c423cb92c9bb37b08f6e1719ad5b391da
|
||||
SIZE (IO-Compress-Lzf-2.074.tar.gz) = 73913
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= IO-Compress-Lzma
|
||||
PORTVERSION= 2.072
|
||||
PORTVERSION= 2.074
|
||||
CATEGORIES= archivers perl5
|
||||
MASTER_SITES= CPAN
|
||||
PKGNAMEPREFIX= p5-
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1487007318
|
||||
SHA256 (IO-Compress-Lzma-2.072.tar.gz) = 27a7002bf1f76cc81f3da0d9d3e13219c7e0085bbb15e747ea233a3d8b5bf78b
|
||||
SIZE (IO-Compress-Lzma-2.072.tar.gz) = 89215
|
||||
TIMESTAMP = 1487569713
|
||||
SHA256 (IO-Compress-Lzma-2.074.tar.gz) = 7509743fe4dc7a952bd449c0c0c97c3d6bdc9131d7d6e8d10de1892b95046f96
|
||||
SIZE (IO-Compress-Lzma-2.074.tar.gz) = 89315
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= IO-Compress-Lzop
|
||||
PORTVERSION= 2.072
|
||||
PORTVERSION= 2.074
|
||||
CATEGORIES= archivers perl5
|
||||
MASTER_SITES= CPAN
|
||||
PKGNAMEPREFIX= p5-
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1487007325
|
||||
SHA256 (IO-Compress-Lzop-2.072.tar.gz) = c3f2e85e7ef9ad390a7b89aae3e1a6681c5685e81702edf2079075337a114a83
|
||||
SIZE (IO-Compress-Lzop-2.072.tar.gz) = 78448
|
||||
TIMESTAMP = 1487569730
|
||||
SHA256 (IO-Compress-Lzop-2.074.tar.gz) = c6a3487c12bc4641e8679eb8537660b1e22306dd8cbbef34764ce0f855511565
|
||||
SIZE (IO-Compress-Lzop-2.074.tar.gz) = 78534
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= IO-Compress
|
||||
PORTVERSION= 2.072
|
||||
PORTVERSION= 2.074
|
||||
CATEGORIES= archivers perl5
|
||||
MASTER_SITES= CPAN
|
||||
PKGNAMEPREFIX= p5-
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1487007301
|
||||
SHA256 (IO-Compress-2.072.tar.gz) = 92fffcf5a49fbc4d3adbf2ec3c4dc1beeba12e86ab370ccc32a1c78ff3ba2957
|
||||
SIZE (IO-Compress-2.072.tar.gz) = 243674
|
||||
TIMESTAMP = 1487569686
|
||||
SHA256 (IO-Compress-2.074.tar.gz) = b4bd68ce895a6578e5be96ade36449461becc328cc7ab900ae4e362380f097f2
|
||||
SIZE (IO-Compress-2.074.tar.gz) = 243731
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= POE-Filter-Bzip2
|
||||
PORTVERSION= 1.58
|
||||
PORTVERSION= 1.60
|
||||
CATEGORIES= archivers perl5
|
||||
MASTER_SITES= CPAN
|
||||
PKGNAMEPREFIX= p5-
|
||||
|
|
|
|||
|
|
@ -1,2 +1,3 @@
|
|||
SHA256 (POE-Filter-Bzip2-1.58.tar.gz) = b5b225dc5716513fa20c24374ce0d98c6c94a8ab309c16ffc62bd51e6b9d4cc0
|
||||
SIZE (POE-Filter-Bzip2-1.58.tar.gz) = 20263
|
||||
TIMESTAMP = 1487688100
|
||||
SHA256 (POE-Filter-Bzip2-1.60.tar.gz) = 70ba182ff640fa934530fd394f4d850781b30ed843539cc90586c2ab4a57ea05
|
||||
SIZE (POE-Filter-Bzip2-1.60.tar.gz) = 11754
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= POE-Filter-LZF
|
||||
PORTVERSION= 1.70
|
||||
PORTVERSION= 1.72
|
||||
CATEGORIES= archivers perl5
|
||||
MASTER_SITES= CPAN
|
||||
PKGNAMEPREFIX= p5-
|
||||
|
|
|
|||
|
|
@ -1,2 +1,3 @@
|
|||
SHA256 (POE-Filter-LZF-1.70.tar.gz) = 6226750b6296b4e8af0c8c5f01515384e0c8cf6e1000dde034ba5102bdb16ca1
|
||||
SIZE (POE-Filter-LZF-1.70.tar.gz) = 23698
|
||||
TIMESTAMP = 1487688107
|
||||
SHA256 (POE-Filter-LZF-1.72.tar.gz) = a76d0b56d61dfd1e5d10892a1c34647e27c5111857f57d5458a4fdc1ead7868c
|
||||
SIZE (POE-Filter-LZF-1.72.tar.gz) = 11463
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= lilv
|
||||
PORTVERSION= 0.24.0
|
||||
PORTVERSION= 0.24.2
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= http://download.drobilla.net/
|
||||
|
||||
|
|
@ -19,11 +19,13 @@ USES= pkgconfig python:build tar:bzip2 waf
|
|||
|
||||
USE_LDCONFIG= yes
|
||||
|
||||
PLIST_SUB= VERSION=${PORTVERSION}
|
||||
|
||||
post-install:
|
||||
@${MV} ${STAGEDIR}${PREFIX}/lib/pkgconfig/*.pc ${STAGEDIR}${PREFIX}/libdata/pkgconfig/
|
||||
@${MV} ${STAGEDIR}${PREFIX}/share/man/man1 ${STAGEDIR}${PREFIX}/man/
|
||||
@${RMDIR} ${STAGEDIR}${PREFIX}/share/man
|
||||
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/liblilv-0.so.0.24.0
|
||||
@${RMDIR} ${STAGEDIR}${PREFIX}/share/man ${STAGEDIR}${PREFIX}/lib/pkgconfig
|
||||
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/liblilv-0.so.${PORTVERSION}
|
||||
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/lilv-bench
|
||||
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/lv2apply
|
||||
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/lv2bench
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1483909389
|
||||
SHA256 (lilv-0.24.0.tar.bz2) = fa60de536d3648aa3b1a445261fd77bd80d0246a071eed2e7ca51ea91a27fb9e
|
||||
SIZE (lilv-0.24.0.tar.bz2) = 244079
|
||||
TIMESTAMP = 1484580674
|
||||
SHA256 (lilv-0.24.2.tar.bz2) = f7ec65b1c1f1734ded3a6c051bbaf50f996a0b8b77e814a33a34e42bce50a522
|
||||
SIZE (lilv-0.24.2.tar.bz2) = 244764
|
||||
|
|
|
|||
|
|
@ -8,9 +8,8 @@ include/lilv-0/lilv/lilv.h
|
|||
include/lilv-0/lilv/lilvmm.hpp
|
||||
lib/liblilv-0.so
|
||||
lib/liblilv-0.so.0
|
||||
lib/liblilv-0.so.0.24.0
|
||||
lib/liblilv-0.so.%%VERSION%%
|
||||
libdata/pkgconfig/lilv-0.pc
|
||||
man/man1/lv2apply.1.gz
|
||||
man/man1/lv2info.1.gz
|
||||
man/man1/lv2ls.1.gz
|
||||
@dir lib/pkgconfig
|
||||
|
|
|
|||
|
|
@ -2,9 +2,8 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= gqrx
|
||||
PORTVERSION= 2.6
|
||||
PORTVERSION= 2.6.1
|
||||
DISTVERSIONPREFIX= v
|
||||
PORTREVISION= 3
|
||||
PORTEPOCH= 1
|
||||
CATEGORIES= comms hamradio
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1477433042
|
||||
SHA256 (csete-gqrx-v2.6_GH0.tar.gz) = 53d25db8d987a41ccccaf6fd85262bd7770cdfab5539b5901c4558756483c9db
|
||||
SIZE (csete-gqrx-v2.6_GH0.tar.gz) = 1195638
|
||||
TIMESTAMP = 1487343674
|
||||
SHA256 (csete-gqrx-v2.6.1_GH0.tar.gz) = 2736a963dac4051ca8ae91a440ee6643ef7d26c9de5b9c83a369d5fc9328d453
|
||||
SIZE (csete-gqrx-v2.6.1_GH0.tar.gz) = 1196123
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= db_connection
|
||||
DISTVERSION= 1.1.0
|
||||
DISTVERSION= 1.1.1
|
||||
DISTVERSIONPREFIX= v
|
||||
CATEGORIES= databases
|
||||
PKGNAMEPREFIX= elixir-
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1478776633
|
||||
SHA256 (elixir-ecto-db_connection-v1.1.0_GH0.tar.gz) = 4bd8c245a0d4f0f9819c0b4de88dfc43ae66b88ea04eda40cfde904fce67c5ea
|
||||
SIZE (elixir-ecto-db_connection-v1.1.0_GH0.tar.gz) = 44650
|
||||
TIMESTAMP = 1487625315
|
||||
SHA256 (elixir-ecto-db_connection-v1.1.1_GH0.tar.gz) = 8ead15580f999e4a2969d544375df10e30ea3a0e8c12c192fe47ae032e486d5d
|
||||
SIZE (elixir-ecto-db_connection-v1.1.1_GH0.tar.gz) = 44663
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= Mojo-Pg
|
||||
PORTVERSION= 3.01
|
||||
PORTVERSION= 3.02
|
||||
CATEGORIES= databases www perl5
|
||||
MASTER_SITES= CPAN
|
||||
MASTER_SITE_SUBDIR= CPAN:SRI
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1487007361
|
||||
SHA256 (Mojo-Pg-3.01.tar.gz) = 602f64329f9366f16849a76f4b9038d1ad5120350f0a3d40e4ad7eb21fc8889c
|
||||
SIZE (Mojo-Pg-3.01.tar.gz) = 29165
|
||||
TIMESTAMP = 1487527730
|
||||
SHA256 (Mojo-Pg-3.02.tar.gz) = b871f42616758f4a7c8dbbf489f085f17c6154d14d88e96ccc53101a6345aee8
|
||||
SIZE (Mojo-Pg-3.02.tar.gz) = 29301
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= memcached
|
||||
PORTVERSION= 3.0.2
|
||||
PORTVERSION= 3.0.3
|
||||
CATEGORIES= databases
|
||||
MASTER_SITES= http://pecl.php.net/get/
|
||||
PKGNAMEPREFIX= pecl-
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1487074156
|
||||
SHA256 (PECL/memcached-3.0.2.tgz) = 3e124ce2116e7bb61a47c8ac5848886ae4479202d460ca1ab57ac209fedd88da
|
||||
SIZE (PECL/memcached-3.0.2.tgz) = 77063
|
||||
TIMESTAMP = 1487595197
|
||||
SHA256 (PECL/memcached-3.0.3.tgz) = 5d1c29a1d5e391d6bb7b736a07e063d2f0834800673dd246d64ce1b73e47645d
|
||||
SIZE (PECL/memcached-3.0.3.tgz) = 77310
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
PORTNAME= pgreplay
|
||||
DISTVERSIONPREFIX= ${PORTNAME:tu}_
|
||||
DISTVERSION= 1_2_0
|
||||
DISTVERSION= 1_3_0
|
||||
CATEGORIES= databases
|
||||
|
||||
MAINTAINER= matthew@FreeBSD.org
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1464205286
|
||||
SHA256 (laurenz-pgreplay-PGREPLAY_1_2_0_GH0.tar.gz) = b2443d1ccf0c0c1da2ce9d98035e42c8f6846146b804cb3bf5a8819ca6c4123d
|
||||
SIZE (laurenz-pgreplay-PGREPLAY_1_2_0_GH0.tar.gz) = 118585
|
||||
TIMESTAMP = 1487664678
|
||||
SHA256 (laurenz-pgreplay-PGREPLAY_1_3_0_GH0.tar.gz) = ff1d67d568df5a23c0ba79b74d7870f0f8711683cda8b9e0a1fafd18c2f33409
|
||||
SIZE (laurenz-pgreplay-PGREPLAY_1_3_0_GH0.tar.gz) = 118450
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= sqlite3
|
||||
PORTVERSION= 3.16.2
|
||||
PORTVERSION= 3.17.0
|
||||
CATEGORIES= databases tcl
|
||||
MASTER_SITES= https://www.sqlite.org/2017/ http://www2.sqlite.org/2017/ http://www3.sqlite.org/2017/
|
||||
PKGNAMEPREFIX= tcl-
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1484482086
|
||||
SHA256 (sqlite-autoconf-3160200.tar.gz) = 65cc0c3e9366f50c0679c5ccd31432cea894bc4a3e8947dabab88c8693263615
|
||||
SIZE (sqlite-autoconf-3160200.tar.gz) = 2508179
|
||||
TIMESTAMP = 1487423371
|
||||
SHA256 (sqlite-autoconf-3170000.tar.gz) = a4e485ad3a16e054765baf6371826b5000beed07e626510896069c0bf013874c
|
||||
SIZE (sqlite-autoconf-3170000.tar.gz) = 2515143
|
||||
|
|
|
|||
|
|
@ -1,34 +1,34 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= alarm-clock-applet
|
||||
PORTVERSION= 0.3.4
|
||||
CATEGORIES= deskutils
|
||||
MASTER_SITES= http://launchpad.net/alarm-clock/trunk/0.3.4/+download/
|
||||
PORTNAME= alarm-clock-applet
|
||||
PORTVERSION= 0.3.4
|
||||
CATEGORIES= deskutils
|
||||
MASTER_SITES= http://launchpad.net/alarm-clock/trunk/0.3.4/+download/
|
||||
|
||||
MAINTAINER= iluxa@ex.ua
|
||||
COMMENT= Fully-featured alarm clock
|
||||
MAINTAINER= iluxa@ex.ua
|
||||
COMMENT= Fully-featured alarm clock
|
||||
|
||||
LICENSE= GPLv2
|
||||
LICENSE_FILE= ${WRKSRC}/COPYING
|
||||
LICENSE= GPLv2
|
||||
LICENSE_FILE= ${WRKSRC}/COPYING
|
||||
|
||||
LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \
|
||||
libfreetype.so:print/freetype2 \
|
||||
libnotify.so:devel/libnotify \
|
||||
libunique-1.0.so:x11-toolkits/unique \
|
||||
libgstreamer-1.0.so:multimedia/gstreamer1
|
||||
BUILD_DEPENDS= gnome-icon-theme>0:misc/gnome-icon-theme
|
||||
RUN_DEPENDS= gnome-icon-theme>0:misc/gnome-icon-theme
|
||||
LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \
|
||||
libfreetype.so:print/freetype2 \
|
||||
libnotify.so:devel/libnotify \
|
||||
libunique-1.0.so:x11-toolkits/unique \
|
||||
libgstreamer-1.0.so:multimedia/gstreamer1
|
||||
BUILD_DEPENDS= gnome-icon-theme>0:misc/gnome-icon-theme
|
||||
RUN_DEPENDS= gnome-icon-theme>0:misc/gnome-icon-theme
|
||||
|
||||
GNU_CONFIGURE= yes
|
||||
USES= gmake gettext-tools pkgconfig
|
||||
USE_GNOME= cairo gconf2 gtk20 intltool
|
||||
USE_GSTREAMER1= yes
|
||||
INSTALLS_ICONS= yes
|
||||
GNU_CONFIGURE= yes
|
||||
USES= gmake gettext-tools pkgconfig
|
||||
USE_GNOME= cairo gconf2 gtk20 intltool
|
||||
USE_GSTREAMER1= yes
|
||||
INSTALLS_ICONS= yes
|
||||
|
||||
GCONF_SCHEMAS= alarm-clock.schemas
|
||||
GCONF_SCHEMAS= alarm-clock.schemas
|
||||
|
||||
OPTIONS_DEFINE= NLS
|
||||
NLS_USES= gettext-runtime
|
||||
OPTIONS_DEFINE= NLS
|
||||
NLS_USES= gettext-runtime
|
||||
NLS_CONFIGURE_ENABLE= nls
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
|||
|
|
@ -751,6 +751,8 @@
|
|||
SUBDIR += go-bindata
|
||||
SUBDIR += go-cobra
|
||||
SUBDIR += go-codec
|
||||
SUBDIR += go-cpuid
|
||||
SUBDIR += go-crc32
|
||||
SUBDIR += go-faker
|
||||
SUBDIR += go-form
|
||||
SUBDIR += go-glide
|
||||
|
|
@ -1566,6 +1568,7 @@
|
|||
SUBDIR += lua-posix
|
||||
SUBDIR += lua-pty
|
||||
SUBDIR += lua-sysctl
|
||||
SUBDIR += lua51-libevent
|
||||
SUBDIR += luabind
|
||||
SUBDIR += luafilesystem
|
||||
SUBDIR += luafilesystem-51
|
||||
|
|
@ -1652,6 +1655,7 @@
|
|||
SUBDIR += newtonsoft-json
|
||||
SUBDIR += nexus2-oss
|
||||
SUBDIR += nglogc
|
||||
SUBDIR += nimble
|
||||
SUBDIR += nini
|
||||
SUBDIR += ninja
|
||||
SUBDIR += ninja-ide
|
||||
|
|
@ -4408,6 +4412,7 @@
|
|||
SUBDIR += py-mwlib.rl
|
||||
SUBDIR += py-mx-experimental
|
||||
SUBDIR += py-mygpoclient
|
||||
SUBDIR += py-mypy
|
||||
SUBDIR += py-nagioscheck
|
||||
SUBDIR += py-natsort
|
||||
SUBDIR += py-natural
|
||||
|
|
@ -4905,6 +4910,7 @@
|
|||
SUBDIR += py3-python-magic
|
||||
SUBDIR += py3-pytz
|
||||
SUBDIR += py3-rubymarshal
|
||||
SUBDIR += py3-setproctitle
|
||||
SUBDIR += py3-simplejson
|
||||
SUBDIR += py3-threema-msgapi
|
||||
SUBDIR += py3-vcversioner
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@ PORTDOCS= AUTHORS CONTRIBUTING NEWS README.md TODO conclusion.txt \
|
|||
performance.txt porcelain.txt protocol.txt remote.txt repo.txt tag.txt
|
||||
PORTEXAMPLES= clone.py config.py diff.py latest_change.py
|
||||
|
||||
USES= cpe python:2
|
||||
USES= cpe python
|
||||
CPE_VENDOR= dulwich_project
|
||||
USE_PYTHON= distutils autoplist
|
||||
|
||||
|
|
|
|||
20
devel/go-cpuid/Makefile
Normal file
20
devel/go-cpuid/Makefile
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= cpuid
|
||||
PORTVERSION= 1.0
|
||||
DISTVERSIONPREFIX= v
|
||||
CATEGORIES= devel
|
||||
PKGNAMEPREFIX= go-
|
||||
|
||||
MAINTAINER= guy.tabrar@me.com
|
||||
COMMENT= Cpuid provides information about the CPU running the current program
|
||||
|
||||
LICENSE= MIT
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE
|
||||
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= klauspost
|
||||
USES= go
|
||||
GO_PKGNAME= github.com/klauspost/cpuid
|
||||
|
||||
.include <bsd.port.mk>
|
||||
3
devel/go-cpuid/distinfo
Normal file
3
devel/go-cpuid/distinfo
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1487476724
|
||||
SHA256 (klauspost-cpuid-v1.0_GH0.tar.gz) = 9739cdbf54eb6c26752c37ae567f59d52ceb879bba7b925b161caf920155d43d
|
||||
SIZE (klauspost-cpuid-v1.0_GH0.tar.gz) = 205089
|
||||
12
devel/go-cpuid/pkg-descr
Normal file
12
devel/go-cpuid/pkg-descr
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
The cpuid package provides information about the CPU running the
|
||||
current program.
|
||||
|
||||
CPU features are detected on startup, and kept for fast access
|
||||
through the life of the application. Currently x86 / x64 (AMD64)
|
||||
is supported, and no external C (cgo) code is used, which should
|
||||
make the library very easy to use.
|
||||
|
||||
You can access the CPU information by accessing the shared CPU
|
||||
variable of the cpuid library.
|
||||
|
||||
WWW: https://github.com/klauspost/cpuid
|
||||
21
devel/go-cpuid/pkg-plist
Normal file
21
devel/go-cpuid/pkg-plist
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
%%GO_LIBDIR%%/%%GO_PKGNAME%%.a
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/LICENSE
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/README.md
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/cpuid.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/cpuid_386.s
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/cpuid_amd64.s
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/cpuid_test.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/detect_intel.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/detect_ref.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/generate.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/mockcpu_test.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/private-gen.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/private/README.md
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/private/cpuid.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/private/cpuid_386.s
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/private/cpuid_amd64.s
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/private/cpuid_detect_intel.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/private/cpuid_detect_ref.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/private/cpuid_test.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/testdata/cpuid_data.zip
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/testdata/getall.go
|
||||
20
devel/go-crc32/Makefile
Normal file
20
devel/go-crc32/Makefile
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= crc32
|
||||
PORTVERSION= 1.1
|
||||
DISTVERSIONPREFIX= v
|
||||
CATEGORIES= devel
|
||||
PKGNAMEPREFIX= go-
|
||||
|
||||
MAINTAINER= guy.tabrar@me.com
|
||||
COMMENT= CRC32 hash with x64 optimizations for go
|
||||
|
||||
LICENSE= BSD3CLAUSE
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE
|
||||
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= klauspost
|
||||
USES= go
|
||||
GO_PKGNAME= github.com/klauspost/crc32
|
||||
|
||||
.include <bsd.port.mk>
|
||||
3
devel/go-crc32/distinfo
Normal file
3
devel/go-crc32/distinfo
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1487477094
|
||||
SHA256 (klauspost-crc32-v1.1_GH0.tar.gz) = 4f48f442a3d79e936dc558843d5bcbeb9f1081c4553cb24167d035dc35abd8e4
|
||||
SIZE (klauspost-crc32-v1.1_GH0.tar.gz) = 16086
|
||||
7
devel/go-crc32/pkg-descr
Normal file
7
devel/go-crc32/pkg-descr
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
CRC32 hash with x64 optimizations
|
||||
|
||||
This package is a drop-in replacement for the standard library
|
||||
hash/crc32 package, that features SSE 4.2 optimizations on x64
|
||||
platforms, for a 10x speedup.
|
||||
|
||||
WWW: https://github.com/klauspost/crc32
|
||||
14
devel/go-crc32/pkg-plist
Normal file
14
devel/go-crc32/pkg-plist
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
%%GO_LIBDIR%%/%%GO_PKGNAME%%.a
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/LICENSE
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/README.md
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/crc32.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/crc32_amd64.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/crc32_amd64.s
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/crc32_amd64p32.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/crc32_amd64p32.s
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/crc32_generic.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/crc32_otherarch.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/crc32_s390x.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/crc32_s390x.s
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/crc32_test.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/example_test.go
|
||||
|
|
@ -2,10 +2,11 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= hg-git
|
||||
PORTVERSION= 0.8.5
|
||||
PORTVERSION= 0.8.5.20161206
|
||||
CATEGORIES= devel python
|
||||
MASTER_SITES= CHEESESHOP
|
||||
MASTER_SITES= http://bitbucket.org/durin42/${PORTNAME}/get/
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
DISTNAME= fa23c454c528
|
||||
|
||||
MAINTAINER= marco.broeder@posteo.eu
|
||||
COMMENT= Mercurial extension to pull from or push to a Git repository
|
||||
|
|
@ -17,7 +18,9 @@ RUN_DEPENDS= ${PKGNAMEPREFIX}dulwich>=*:devel/dulwich \
|
|||
|
||||
PORTDOCS= README.md
|
||||
|
||||
USES= python:2
|
||||
NO_ARCH= yes
|
||||
WRKSRC= ${WRKDIR}/durin42-${PORTNAME}-${DISTNAME}
|
||||
USES= python:2.7
|
||||
USE_PYTHON= distutils autoplist
|
||||
|
||||
OPTIONS_DEFINE= DOCS
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1481321913
|
||||
SHA256 (hg-git-0.8.5.tar.gz) = f5cab3cc610926458733a2321ad3df5a7c56870bbf0c6d962dfa742e6ea04782
|
||||
SIZE (hg-git-0.8.5.tar.gz) = 96675
|
||||
TIMESTAMP = 1481296489
|
||||
SHA256 (fa23c454c528.tar.gz) = 51e3827799e96b66f6872ac995f902b79c93c4f79a761608a6a587820f7d52ba
|
||||
SIZE (fa23c454c528.tar.gz) = 102686
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= jenkins
|
||||
PORTVERSION= 2.46
|
||||
PORTVERSION= 2.47
|
||||
CATEGORIES= devel java
|
||||
MASTER_SITES= http://mirrors.jenkins-ci.org/war/${PORTVERSION}/
|
||||
DISTNAME= jenkins
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1487042322
|
||||
SHA256 (jenkins/2.46/jenkins.war) = 7deb88ace238d5eaa676fab74bcb81b5951a6fb8c042af90082c48aee2dd8134
|
||||
SIZE (jenkins/2.46/jenkins.war) = 68663046
|
||||
TIMESTAMP = 1487568234
|
||||
SHA256 (jenkins/2.47/jenkins.war) = df8203812375f9ba6cfc4d5a3ef278836fe00973f5e02a8326b8141ece56cc24
|
||||
SIZE (jenkins/2.47/jenkins.war) = 68676619
|
||||
|
|
|
|||
21
devel/llvm35/files/patch-svn-218295
Normal file
21
devel/llvm35/files/patch-svn-218295
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
$FreeBSD$
|
||||
------------------------------------------------------------------------
|
||||
r218295 | akirtzidis | 2014-09-23 08:06:43 +0200 (Tue, 23 Sep 2014) | 2 lines
|
||||
|
||||
[ADT/IntrusiveRefCntPtr] Give friend access to IntrusiveRefCntPtr<X> so the relevant move constructor can access 'Obj'.
|
||||
|
||||
------------------------------------------------------------------------
|
||||
Index: include/llvm/ADT/IntrusiveRefCntPtr.h
|
||||
===================================================================
|
||||
--- include/llvm/ADT/IntrusiveRefCntPtr.h (revision 218294)
|
||||
+++ include/llvm/ADT/IntrusiveRefCntPtr.h (revision 218295)
|
||||
@@ -197,6 +197,9 @@ public:
|
||||
private:
|
||||
void retain() { if (Obj) IntrusiveRefCntPtrInfo<T>::retain(Obj); }
|
||||
void release() { if (Obj) IntrusiveRefCntPtrInfo<T>::release(Obj); }
|
||||
+
|
||||
+ template <typename X>
|
||||
+ friend class IntrusiveRefCntPtr;
|
||||
};
|
||||
|
||||
template<class T, class U>
|
||||
|
|
@ -279,6 +279,12 @@ PORTDOCS+= lld
|
|||
CXXFLAGS+= -D_GLIBCXX_USE_C99
|
||||
.endif
|
||||
|
||||
.if ${ARCH} == "armv6"
|
||||
BUILD_DEPENDS+= ${LOCALBASE}/bin/ld:devel/binutils
|
||||
CONFIGURE_ENV+= COMPILER_PATH=${LOCALBASE}/bin
|
||||
MAKE_ENV+= COMPILER_PATH=${LOCALBASE}/bin
|
||||
.endif
|
||||
|
||||
.if ${PYTHON_REL} < 3400
|
||||
LLDB_BUILD_DEPENDS+= \
|
||||
${PYTHON_PKGNAMEPREFIX}enum34>0:devel/py-enum34
|
||||
|
|
|
|||
44
devel/lua51-libevent/Makefile
Normal file
44
devel/lua51-libevent/Makefile
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
# Created by: Sir l33tname <sirl33tname@gmail.com>
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= lua51
|
||||
PORTVERSION= 0.4.4
|
||||
DISTVERSIONPREFIX=v
|
||||
CATEGORIES= devel
|
||||
PKGNAMESUFFIX= -libevent
|
||||
|
||||
MAINTAINER= sirl33tname@gmail.com
|
||||
COMMENT= Lua libevent binding
|
||||
|
||||
LICENSE= MIT
|
||||
|
||||
LIB_DEPENDS= libevent.so:devel/libevent
|
||||
RUN_DEPENDS= ${LUA_MODLIBDIR}/socket/core.so:net/luasocket-51
|
||||
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= harningt
|
||||
GH_PROJECT= luaevent
|
||||
|
||||
USES= gmake pkgconfig lua:51
|
||||
|
||||
MAKE_ENV+= INSTALL_DIR_LUA=${LUA_MODSHAREDIR}
|
||||
MAKE_ENV+= INSTALL_DIR_BIN=${LUA_MODLIBDIR}
|
||||
|
||||
CFLAGS+= `pkgconf --cflags lua-${LUA_VER}` \
|
||||
`pkgconf --cflags libevent` \
|
||||
-I${LUA_INCDIR}
|
||||
LDFLAGS+= -shared -L${LOCALBASE}/lib \
|
||||
`pkgconf --libs lua-${LUA_VER}` \
|
||||
`pkgconf --libs libevent`
|
||||
|
||||
PLIST_FILES= ${LUA_MODLIBDIR}/luaevent/core.so \
|
||||
${LUA_MODSHAREDIR}/luaevent.lua
|
||||
|
||||
post-patch:
|
||||
@${REINPLACE_CMD} -e 's/CFLAGS[[:blank:]]*=/CFLAGS\+=/g' ${WRKSRC}/Makefile
|
||||
@${REINPLACE_CMD} -e 's/LDFLAGS[[:blank:]]*=/LDFLAGS\+=/g' ${WRKSRC}/Makefile
|
||||
|
||||
pre-install:
|
||||
${MKDIR} ${STAGEDIR}${LUA_MODLIBDIR}
|
||||
|
||||
.include <bsd.port.mk>
|
||||
3
devel/lua51-libevent/distinfo
Normal file
3
devel/lua51-libevent/distinfo
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1485710369
|
||||
SHA256 (harningt-luaevent-v0.4.4_GH0.tar.gz) = 242c95b9cacd87201aa35ba618eb1cd0b0e2a7d1a8fc6734c0bc06dd742e2455
|
||||
SIZE (harningt-luaevent-v0.4.4_GH0.tar.gz) = 22249
|
||||
5
devel/lua51-libevent/pkg-descr
Normal file
5
devel/lua51-libevent/pkg-descr
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
This is a binding of libevent to Lua. It will serve as a drop-in
|
||||
replacement for copas, and eventually support more features (async DNS,
|
||||
HTTP, RPC...).
|
||||
|
||||
WWW: https://github.com/harningt/luaevent
|
||||
28
devel/nimble/Makefile
Normal file
28
devel/nimble/Makefile
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
# Created by: ports@nicandneal.net
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= nimble
|
||||
PORTVERSION= 0.8.2
|
||||
DISTVERSIONPREFIX= v
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= ports@nicandneal.net
|
||||
COMMENT= Package manager for the Nim programming language
|
||||
|
||||
LICENSE= BSD3CLAUSE
|
||||
|
||||
BUILD_DEPENDS= nim:lang/nim
|
||||
RUN_DEPENDS= nim:lang/nim
|
||||
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= nim-lang
|
||||
|
||||
PLIST_FILES= bin/nimble
|
||||
|
||||
do-build:
|
||||
cd ${WRKSRC} && nim c --parallelBuild=${MAKE_JOBS_NUMBER} --path:${LOCALBASE}/nim src/nimble
|
||||
|
||||
do-install:
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/src/nimble ${STAGEDIR}${PREFIX}/bin
|
||||
|
||||
.include <bsd.port.mk>
|
||||
3
devel/nimble/distinfo
Normal file
3
devel/nimble/distinfo
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1484059070
|
||||
SHA256 (nim-lang-nimble-v0.8.2_GH0.tar.gz) = 5cfdebdeddf5cf7d32c7b1b047a99d660de4e3a29e29ce7a3216020dc4f301cd
|
||||
SIZE (nim-lang-nimble-v0.8.2_GH0.tar.gz) = 60624
|
||||
5
devel/nimble/pkg-descr
Normal file
5
devel/nimble/pkg-descr
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Nimble is Nim's package manager and build system. It's used to
|
||||
install and build libraries that you can use within your own Nim
|
||||
projects
|
||||
|
||||
WWW: https://github.com/nim-lang/nimble
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= CPAN-Perl-Releases
|
||||
PORTVERSION= 3.08
|
||||
PORTVERSION= 3.10
|
||||
CATEGORIES= devel perl5
|
||||
MASTER_SITES= CPAN
|
||||
PKGNAMEPREFIX= p5-
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1484939682
|
||||
SHA256 (CPAN-Perl-Releases-3.08.tar.gz) = 2e89244eb1aedc7fae2a77727a6cb392d82919685f6919aafde8dd13c1c90fec
|
||||
SIZE (CPAN-Perl-Releases-3.08.tar.gz) = 24908
|
||||
TIMESTAMP = 1487688115
|
||||
SHA256 (CPAN-Perl-Releases-3.10.tar.gz) = dae11bcd279bb1c8c2c5574c3fb81d4b24bd040fb28f0e17e0f2e86618efac75
|
||||
SIZE (CPAN-Perl-Releases-3.10.tar.gz) = 24921
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= Log-Dispatch
|
||||
PORTVERSION= 2.62
|
||||
PORTVERSION= 2.63
|
||||
CATEGORIES= devel perl5
|
||||
MASTER_SITES= CPAN
|
||||
PKGNAMEPREFIX= p5-
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1487166401
|
||||
SHA256 (Log-Dispatch-2.62.tar.gz) = c9a28ad4549e2e86b0371a9b7add9818c3a57404a4c4f19b831ab8fe4da6649d
|
||||
SIZE (Log-Dispatch-2.62.tar.gz) = 66676
|
||||
TIMESTAMP = 1487688125
|
||||
SHA256 (Log-Dispatch-2.63.tar.gz) = f6880d82f8ab7296892819db9cd0dfdc7408248630c9effa83eb1314a541da6f
|
||||
SIZE (Log-Dispatch-2.63.tar.gz) = 65522
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= MCE
|
||||
PORTVERSION= 1.813
|
||||
PORTVERSION= 1.814
|
||||
CATEGORIES= devel perl5
|
||||
MASTER_SITES= CPAN
|
||||
MASTER_SITE_SUBDIR= CPAN:MARIOROY
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1487204586
|
||||
SHA256 (MCE-1.813.tar.gz) = cb687254fe5f2dec39ca04b20ddd98bd0f66b39d87366ad04fab4f0f7a3c3097
|
||||
SIZE (MCE-1.813.tar.gz) = 173573
|
||||
TIMESTAMP = 1487688132
|
||||
SHA256 (MCE-1.814.tar.gz) = bfe98c555ead22634158a22768f8c9f37cdab952270495334295830d8f13cef2
|
||||
SIZE (MCE-1.814.tar.gz) = 174090
|
||||
|
|
|
|||
|
|
@ -2,8 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= POE-Component-Pluggable
|
||||
PORTVERSION= 1.26
|
||||
PORTREVISION= 1
|
||||
PORTVERSION= 1.28
|
||||
CATEGORIES= devel perl5
|
||||
MASTER_SITES= CPAN
|
||||
PKGNAMEPREFIX= p5-
|
||||
|
|
@ -11,10 +10,15 @@ PKGNAMEPREFIX= p5-
|
|||
MAINTAINER= perl@FreeBSD.org
|
||||
COMMENT= Base class for creating plugin enabled POE Components
|
||||
|
||||
LICENSE= ART10 GPLv1
|
||||
LICENSE_COMB= dual
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE
|
||||
|
||||
BUILD_DEPENDS= p5-POE>=1.004:devel/p5-POE \
|
||||
p5-Task-Weaken>=0:devel/p5-Task-Weaken
|
||||
RUN_DEPENDS:= ${BUILD_DEPENDS}
|
||||
|
||||
NO_ARCH= yes
|
||||
USES= perl5
|
||||
USE_PERL5= configure
|
||||
|
||||
|
|
|
|||
|
|
@ -1,2 +1,3 @@
|
|||
SHA256 (POE-Component-Pluggable-1.26.tar.gz) = 00cc2d39f76a38cbf3628e147e45e92ac427eb453ac2bdcfbdba81d1459d339d
|
||||
SIZE (POE-Component-Pluggable-1.26.tar.gz) = 37361
|
||||
TIMESTAMP = 1487688139
|
||||
SHA256 (POE-Component-Pluggable-1.28.tar.gz) = fd5c27a7e023dd5ed23bd2c3f5482848079997005c65f8e2661af7149f271bb6
|
||||
SIZE (POE-Component-Pluggable-1.28.tar.gz) = 23460
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
%%PERL5_MAN3%%/POE::Component::Pluggable.3.gz
|
||||
%%PERL5_MAN3%%/POE::Component::Pluggable::Constants.3.gz
|
||||
%%PERL5_MAN3%%/POE::Component::Pluggable::Pipeline.3.gz
|
||||
%%SITE_PERL%%/POE/Component/Pluggable.pm
|
||||
%%SITE_PERL%%/POE/Component/Pluggable/Constants.pm
|
||||
%%SITE_PERL%%/POE/Component/Pluggable/Pipeline.pm
|
||||
%%PERL5_MAN3%%/POE::Component::Pluggable.3.gz
|
||||
%%PERL5_MAN3%%/POE::Component::Pluggable::Constants.3.gz
|
||||
%%PERL5_MAN3%%/POE::Component::Pluggable::Pipeline.3.gz
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= Specio
|
||||
PORTVERSION= 0.35
|
||||
PORTVERSION= 0.36
|
||||
CATEGORIES= devel perl5
|
||||
MASTER_SITES= CPAN
|
||||
MASTER_SITE_SUBDIR= CPAN:DROLSKY
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1487007345
|
||||
SHA256 (Specio-0.35.tar.gz) = 5c75f366594f0d2a5a39ca9cf31b8dfa0e2564c148aa0e2805fd263530ceffa5
|
||||
SIZE (Specio-0.35.tar.gz) = 94969
|
||||
TIMESTAMP = 1487595181
|
||||
SHA256 (Specio-0.36.tar.gz) = 1399113b178dd9a2443f0e05bfd5bc665931442bf9e31b223893c7d2853c4480
|
||||
SIZE (Specio-0.36.tar.gz) = 96413
|
||||
|
|
|
|||
29
devel/py-mypy/Makefile
Normal file
29
devel/py-mypy/Makefile
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
# Created by: Florian Limberger <flo@snakeoilproductions.net>
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= mypy
|
||||
PORTVERSION= 0.471
|
||||
CATEGORIES= devel python
|
||||
MASTER_SITES= CHEESESHOP
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
||||
MAINTAINER= flo@snakeoilproductions.net
|
||||
COMMENT= Optional static typing for Python
|
||||
|
||||
LICENSE= MIT PSFL
|
||||
LICENSE_COMB= multi
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE
|
||||
|
||||
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}typed-ast>=0.6.3:devel/py-typed-ast
|
||||
|
||||
NO_ARCH= yes
|
||||
USES= python:3.3+
|
||||
USE_PYTHON= autoplist distutils
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${PYTHON_VER} < 3.5
|
||||
RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}typing>=3.5.3:devel/py-typing
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
3
devel/py-mypy/distinfo
Normal file
3
devel/py-mypy/distinfo
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1487173104
|
||||
SHA256 (mypy-0.471.tar.gz) = 552821e4ae601e9058797cfc7d251ff6a2789b5b5aeb00df017f76271d726e9f
|
||||
SIZE (mypy-0.471.tar.gz) = 660228
|
||||
11
devel/py-mypy/files/patch-mypy_fastparse.py
Normal file
11
devel/py-mypy/files/patch-mypy_fastparse.py
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
--- mypy/fastparse.py.orig 2017-02-15 15:30:38 UTC
|
||||
+++ mypy/fastparse.py
|
||||
@@ -26,7 +26,7 @@ from mypy import experiments
|
||||
from mypy.errors import Errors
|
||||
|
||||
try:
|
||||
- from typed_ast import ast35
|
||||
+ from typed_ast import ast3 as ast35
|
||||
except ImportError:
|
||||
if sys.version_info.minor > 2:
|
||||
print('You must install the typed_ast package before you can run mypy'
|
||||
11
devel/py-mypy/files/patch-mypy_fastparse2.py
Normal file
11
devel/py-mypy/files/patch-mypy_fastparse2.py
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
--- mypy/fastparse2.py.orig 2017-02-15 15:30:42 UTC
|
||||
+++ mypy/fastparse2.py
|
||||
@@ -43,7 +43,7 @@ from mypy.fastparse import TypeConverter
|
||||
|
||||
try:
|
||||
from typed_ast import ast27
|
||||
- from typed_ast import ast35
|
||||
+ from typed_ast import ast3 as ast35
|
||||
except ImportError:
|
||||
if sys.version_info.minor > 2:
|
||||
print('You must install the typed_ast package before you can run mypy'
|
||||
6
devel/py-mypy/pkg-descr
Normal file
6
devel/py-mypy/pkg-descr
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
Mypy is an optional static type checker for Python. You can add type hints to
|
||||
your Python programs using the standard for type annotations introduced in
|
||||
Python 3.5 (PEP 484), and use mypy to type check them statically. Find bugs in
|
||||
your programs without even running them!
|
||||
|
||||
WWW: http://www.mypy-lang.org
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= pudb
|
||||
PORTVERSION= 2017.1
|
||||
PORTVERSION= 2017.1.1
|
||||
CATEGORIES= devel python
|
||||
MASTER_SITES= CHEESESHOP
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1486254623
|
||||
SHA256 (pudb-2017.1.tar.gz) = 5b20616853c903561fda06b86a35073bd3d243706e4113eb3f3e51cdf32aa074
|
||||
SIZE (pudb-2017.1.tar.gz) = 55392
|
||||
TIMESTAMP = 1487527721
|
||||
SHA256 (pudb-2017.1.1.tar.gz) = 87117640902c5f602c8517d0167eb5c953a5bdede97975ba29ff17e3d570442c
|
||||
SIZE (pudb-2017.1.1.tar.gz) = 55585
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ MASTER_SITES= CHEESESHOP
|
|||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
||||
MAINTAINER= rm@FreeBSD.org
|
||||
COMMENT= Collection of ASN.1 data structures for py-asn1
|
||||
COMMENT= Collection of ASN.1 data structures for py-pyasn1
|
||||
|
||||
LICENSE= BSD2CLAUSE
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
|
||||
|
|
|
|||
|
|
@ -13,15 +13,15 @@ COMMENT= Python module to customize the process title
|
|||
LICENSE= BSD3CLAUSE
|
||||
LICENSE_FILE= ${WRKSRC}/COPYRIGHT
|
||||
|
||||
USES= python
|
||||
USES?= python
|
||||
USE_PYTHON= autoplist distutils
|
||||
|
||||
PORTDOCS= COPYRIGHT HISTORY.rst README.rst
|
||||
PORTDOCS= HISTORY.rst README.rst
|
||||
|
||||
OPTIONS_DEFINE= DOCS
|
||||
|
||||
post-install:
|
||||
${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/setproctitle.so
|
||||
@${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/setproctitle.so
|
||||
|
||||
post-install-DOCS-on:
|
||||
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
||||
|
|
|
|||
|
|
@ -3,4 +3,5 @@ A setproctitle implementation for Python.
|
|||
The library allows a process to change its title (as displayed by system tools
|
||||
such as ps(1) and top(1).
|
||||
|
||||
WWW: https://pypi.python.org/pypi/setproctitle
|
||||
WWW: https://github.com/dvarrazzo/py-setproctitle
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= typed-ast
|
||||
PORTVERSION= 1.0.0
|
||||
PORTVERSION= 1.0.1
|
||||
CATEGORIES= devel python
|
||||
MASTER_SITES= CHEESESHOP
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1487171208
|
||||
SHA256 (typed-ast-1.0.0.tar.gz) = 2a5b738efcfbd0da5bd87ce998a31810c58a66a933f554c074fa96ec5f10a1cc
|
||||
SIZE (typed-ast-1.0.0.tar.gz) = 200383
|
||||
TIMESTAMP = 1487656045
|
||||
SHA256 (typed-ast-1.0.1.tar.gz) = 3a45ebb004b356a03180968c543a62f0c40089c6b235ae6811623ffd4dfdcb13
|
||||
SIZE (typed-ast-1.0.1.tar.gz) = 200616
|
||||
|
|
|
|||
8
devel/py3-setproctitle/Makefile
Normal file
8
devel/py3-setproctitle/Makefile
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
# Created by: Dmitry Marakasov <amdmi3@FreeBSD.org>
|
||||
# $FreeBSD$
|
||||
|
||||
MASTERDIR= ${.CURDIR}/../py-setproctitle
|
||||
|
||||
USES= python:3
|
||||
|
||||
.include "${MASTERDIR}/Makefile"
|
||||
|
|
@ -12,6 +12,8 @@ COMMENT= Ruby/ProgressBar is a text progress bar library for Ruby
|
|||
LICENSE= BSD2CLAUSE RUBY
|
||||
LICENSE_COMB= dual
|
||||
|
||||
PORTSCOUT= limit:^0\.9\.
|
||||
|
||||
NO_ARCH= yes
|
||||
USE_RUBY= yes
|
||||
USES= gem
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= sentry-raven
|
||||
PORTVERSION= 2.3.0
|
||||
PORTVERSION= 2.3.1
|
||||
CATEGORIES= devel rubygems
|
||||
MASTER_SITES= RG
|
||||
|
||||
|
|
@ -10,6 +10,7 @@ MAINTAINER= ruby@FreeBSD.org
|
|||
COMMENT= Client interface for the Sentry error logger
|
||||
|
||||
LICENSE= APACHE20
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE
|
||||
|
||||
RUN_DEPENDS= rubygem-faraday>=0.7.6:www/rubygem-faraday
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1483969583
|
||||
SHA256 (rubygem/sentry-raven-2.3.0.gem) = 879644028fa203f0e087ded6f136406d1d131243e8cc1edbfc44afc651c558fa
|
||||
SIZE (rubygem/sentry-raven-2.3.0.gem) = 33792
|
||||
TIMESTAMP = 1487688160
|
||||
SHA256 (rubygem/sentry-raven-2.3.1.gem) = 869efe0dec61a8c6bf61ce8e4c2c989067201bd44db06516e5a6ebd955b7740a
|
||||
SIZE (rubygem/sentry-raven-2.3.1.gem) = 33792
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= serd
|
||||
PORTVERSION= 0.24.0
|
||||
PORTVERSION= 0.26.0
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= http://download.drobilla.net/
|
||||
|
||||
|
|
@ -15,9 +15,13 @@ LICENSE_FILE= ${WRKSRC}/COPYING
|
|||
USES= pkgconfig tar:bzip2 waf
|
||||
USE_LDCONFIG= yes
|
||||
|
||||
PLIST_SUB= VERSION=${PORTVERSION}
|
||||
|
||||
post-install:
|
||||
${MV} ${STAGEDIR}${PREFIX}/lib/pkgconfig ${STAGEDIR}${PREFIX}/libdata/
|
||||
${MV} ${STAGEDIR}${PREFIX}/share/man/man1 ${STAGEDIR}${PREFIX}/man/
|
||||
${RMDIR} ${STAGEDIR}${PREFIX}/share/man
|
||||
@${MV} ${STAGEDIR}${PREFIX}/lib/pkgconfig ${STAGEDIR}${PREFIX}/libdata/
|
||||
@${MV} ${STAGEDIR}${PREFIX}/share/man/man1 ${STAGEDIR}${PREFIX}/man/
|
||||
@${RMDIR} ${STAGEDIR}${PREFIX}/share/man
|
||||
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/serdi
|
||||
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/*.so
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1475515854
|
||||
SHA256 (serd-0.24.0.tar.bz2) = 8cfb8ade8d9a6f784da6e00ac05a28b7de440df5d2513796cd34aaa2754f6a6c
|
||||
SIZE (serd-0.24.0.tar.bz2) = 346615
|
||||
TIMESTAMP = 1487081768
|
||||
SHA256 (serd-0.26.0.tar.bz2) = e3e44a88f90a9971d55e6cbd59a7b9cfa97cfc17c512fed7166a4252d5209298
|
||||
SIZE (serd-0.26.0.tar.bz2) = 369280
|
||||
|
|
|
|||
|
|
@ -2,6 +2,6 @@ bin/serdi
|
|||
include/serd-0/serd/serd.h
|
||||
lib/libserd-0.so
|
||||
lib/libserd-0.so.0
|
||||
lib/libserd-0.so.0.24.0
|
||||
lib/libserd-0.so.%%VERSION%%
|
||||
libdata/pkgconfig/serd-0.pc
|
||||
man/man1/serdi.1.gz
|
||||
|
|
|
|||
|
|
@ -30,8 +30,8 @@ COMMENT= BIND DNS suite with updated DNSSEC and DNS64
|
|||
LICENSE= MPL
|
||||
|
||||
# ISC releases things like 9.8.0-P1, which our versioning doesn't like
|
||||
ISCVERSION= 9.12.0a.2017.02.09
|
||||
HASH= 1df7a6f
|
||||
ISCVERSION= 9.12.0a.2017.02.14
|
||||
HASH= af2b20e
|
||||
|
||||
USES= cpe libedit
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1486988913
|
||||
SHA256 (bind9-1df7a6f.tar.gz) = ff9607e41d220fe2b45301fb064078d960a96d69e0356512033ab9cdd8905bef
|
||||
SIZE (bind9-1df7a6f.tar.gz) = 11873079
|
||||
TIMESTAMP = 1487604489
|
||||
SHA256 (bind9-af2b20e.tar.gz) = 62df1b0a923698352e35f7fe4f6304e4f50a5a0167a2e2a214b28a0f5af55381
|
||||
SIZE (bind9-af2b20e.tar.gz) = 11872958
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= Net-DNS
|
||||
PORTVERSION= 1.07
|
||||
PORTVERSION= 1.08
|
||||
PORTEPOCH= 1
|
||||
CATEGORIES= dns net perl5 ipv6
|
||||
MASTER_SITES= CPAN
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1483079513
|
||||
SHA256 (Net-DNS-1.07.tar.gz) = 5f91497f1af9f690153fa05a27a7d73ddada08bed40536fe2d0ac759b7af8492
|
||||
SIZE (Net-DNS-1.07.tar.gz) = 256114
|
||||
TIMESTAMP = 1487688148
|
||||
SHA256 (Net-DNS-1.08.tar.gz) = 56113a5604d1d47a2e0b35e01f5ac0a2af9e5275b815549d032a46195637c7a1
|
||||
SIZE (Net-DNS-1.08.tar.gz) = 257625
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= citra
|
||||
PORTVERSION= s20170119
|
||||
PORTVERSION= s20170221
|
||||
PORTREVISION?= 0
|
||||
CATEGORIES= emulators
|
||||
|
||||
|
|
@ -14,7 +14,7 @@ LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/externals/dynarmic/externals/fmt/LICENSE.rst
|
|||
LICENSE_FILE_BSD3CLAUSE=${WRKSRC}/externals/inih/inih/LICENSE.txt
|
||||
LICENSE_FILE_BSL= ${WRKSRC}/externals/catch/LICENSE_1_0.txt
|
||||
LICENSE_FILE_GPLv2+ = ${WRKSRC}/license.txt
|
||||
LICENSE_FILE_LGPL21+ = ${WRKSRC}/externals/qhexedit/license.txt
|
||||
LICENSE_FILE_LGPL21+ = ${_LICENSE_STORE}/LGPL21 # soundtouch
|
||||
LICENSE_NAME_UNLICENSE= The Unlicense
|
||||
LICENSE_TEXT_UNLICENSE= See http://unlicense.org/
|
||||
LICENSE_PERMS_UNLICENSE= ${_LICENSE_PERMS_PD}
|
||||
|
|
@ -28,14 +28,15 @@ ONLY_FOR_ARCHS= amd64
|
|||
ONLY_FOR_ARCHS_REASON= https://github.com/MerryMage/dynarmic/issues/35
|
||||
|
||||
USE_GITHUB= yes
|
||||
GH_TUPLE= citra-emu:${PORTNAME}:ebe01506 \
|
||||
GH_TUPLE= citra-emu:${PORTNAME}:e971f17bb \
|
||||
citra-emu:ext-soundtouch:5274ec4:soundtouch/externals/soundtouch \
|
||||
MerryMage:dynarmic:3608208:dynarmic/externals/dynarmic \
|
||||
MerryMage:dynarmic:358cf7c:dynarmic/externals/dynarmic \
|
||||
fmtlib:fmt:3.0.0-146-g796beaa:fmt/externals/dynarmic/externals/fmt \
|
||||
herumi:xbyak:v5.40:xbyak/externals/xbyak \
|
||||
neobrain:nihstro:26a0a04:nihstro/externals/nihstro \
|
||||
neobrain:nihstro:7e24743:nihstro/externals/nihstro \
|
||||
philsquared:Catch:v1.4.0:catch/externals/catch \
|
||||
svn2github:inih:603729d:inih/externals/inih/inih
|
||||
svn2github:inih:603729d:inih/externals/inih/inih \
|
||||
weidai11:cryptopp:CRYPTOPP_5_6_5-164-g841c37e:cryptopp/externals/cryptopp/cryptopp
|
||||
|
||||
USES= cmake:outsource compiler:c++14-lang iconv localbase:ldflags
|
||||
FAVORITE_COMPILER= ${COMPILER_TYPE} # c++14-lib
|
||||
|
|
|
|||
|
|
@ -1,17 +1,19 @@
|
|||
TIMESTAMP = 1484800259
|
||||
SHA256 (citra-emu-citra-s20170119-ebe01506_GH0.tar.gz) = c244491e17669342f960162905f74699a985384afdb51986c44ba8ac4133d440
|
||||
SIZE (citra-emu-citra-s20170119-ebe01506_GH0.tar.gz) = 2240677
|
||||
TIMESTAMP = 1487713654
|
||||
SHA256 (citra-emu-citra-s20170221-e971f17bb_GH0.tar.gz) = e4fe8be51806412f024ee39a4f7d7f5f6470666de2d3960157e1a6527bc221b5
|
||||
SIZE (citra-emu-citra-s20170221-e971f17bb_GH0.tar.gz) = 2217236
|
||||
SHA256 (citra-emu-ext-soundtouch-5274ec4_GH0.tar.gz) = de5e101818ba38b5ea30d8cde0b2b788b53bc7c0f5d77b380b8968569872c2cb
|
||||
SIZE (citra-emu-ext-soundtouch-5274ec4_GH0.tar.gz) = 34535
|
||||
SHA256 (MerryMage-dynarmic-3608208_GH0.tar.gz) = 1376b8d6f91808f42a4d4a0be85f88c0b99200a704ed64b62814cb1836cb40d1
|
||||
SIZE (MerryMage-dynarmic-3608208_GH0.tar.gz) = 315933
|
||||
SHA256 (MerryMage-dynarmic-358cf7c_GH0.tar.gz) = ba3efc77df14473e20fc1bead08725d0d5a67ff71726cf749e6d3970f7e7ca03
|
||||
SIZE (MerryMage-dynarmic-358cf7c_GH0.tar.gz) = 321864
|
||||
SHA256 (fmtlib-fmt-3.0.0-146-g796beaa_GH0.tar.gz) = e5b0b3055082d9dc2b56509d8a11032fdeb3ab846feb5369591ccf58593446f9
|
||||
SIZE (fmtlib-fmt-3.0.0-146-g796beaa_GH0.tar.gz) = 612701
|
||||
SHA256 (herumi-xbyak-v5.40_GH0.tar.gz) = 106bbe15dc7e5d025ff98d1b5dd62a3f0a26d2569debe77fcde14852d50a66e1
|
||||
SIZE (herumi-xbyak-v5.40_GH0.tar.gz) = 203521
|
||||
SHA256 (neobrain-nihstro-26a0a04_GH0.tar.gz) = 8d94e57f5a9aebf976e4df3c7a0c69d4a0c4a6f2c3d0e4d464a7f09a826b345f
|
||||
SIZE (neobrain-nihstro-26a0a04_GH0.tar.gz) = 110136
|
||||
SHA256 (neobrain-nihstro-7e24743_GH0.tar.gz) = 063728b01f7de99ca91693c46bd5c5a0fb03c0058baf4452d539f630b10f3650
|
||||
SIZE (neobrain-nihstro-7e24743_GH0.tar.gz) = 110273
|
||||
SHA256 (philsquared-Catch-v1.4.0_GH0.tar.gz) = b225e9828291636745db75e42cd604b8d755dcad0c5235fc90d7c725c4b49fb1
|
||||
SIZE (philsquared-Catch-v1.4.0_GH0.tar.gz) = 311263
|
||||
SHA256 (svn2github-inih-603729d_GH0.tar.gz) = b4faa364c3e33261707d4b669e1c669ca3818d7b9515c15fe0befd9df3f1f00a
|
||||
SIZE (svn2github-inih-603729d_GH0.tar.gz) = 8342
|
||||
SHA256 (weidai11-cryptopp-CRYPTOPP_5_6_5-164-g841c37e_GH0.tar.gz) = 70ea37578cc7eebcfa4c621c7f61c2a255c895156064eba1c33053b1d01a95ee
|
||||
SIZE (weidai11-cryptopp-CRYPTOPP_5_6_5-164-g841c37e_GH0.tar.gz) = 6912141
|
||||
|
|
|
|||
|
|
@ -1,23 +0,0 @@
|
|||
#include <smmintrin.h> fails without -msse4.1 on Clang < 3.8
|
||||
|
||||
https://github.com/llvm-mirror/clang/commit/41885d36e85ead75a1d18ef7d2f43663f90ed67e
|
||||
|
||||
--- src/video_core/shader/shader_jit_x64.cpp.orig 2016-12-16 05:41:22 UTC
|
||||
+++ src/video_core/shader/shader_jit_x64.cpp
|
||||
@@ -6,7 +6,6 @@
|
||||
#include <cmath>
|
||||
#include <cstdint>
|
||||
#include <nihstro/shader_bytecode.h>
|
||||
-#include <smmintrin.h>
|
||||
#include <xmmintrin.h>
|
||||
#include "common/assert.h"
|
||||
#include "common/logging/log.h"
|
||||
@@ -499,7 +498,7 @@ void JitShader::Compile_FLR(Instruction
|
||||
Compile_SwizzleSrc(instr, 1, instr.common.src1, SRC1);
|
||||
|
||||
if (Common::GetCPUCaps().sse4_1) {
|
||||
- roundps(SRC1, SRC1, _MM_FROUND_FLOOR);
|
||||
+ roundps(SRC1, SRC1, Gen::FROUND_FLOOR);
|
||||
} else {
|
||||
cvttps2dq(SRC1, SRC1);
|
||||
cvtdq2ps(SRC1, SRC1);
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
https://github.com/llvm-mirror/clang/commit/41885d36e85ead75a1d18ef7d2f43663f90ed67e
|
||||
|
||||
--- src/video_core/shader/shader_jit_x64_compiler.cpp.orig 2017-02-21 21:47:34 UTC
|
||||
+++ src/video_core/shader/shader_jit_x64_compiler.cpp
|
||||
@@ -6,7 +6,12 @@
|
||||
#include <cmath>
|
||||
#include <cstdint>
|
||||
#include <nihstro/shader_bytecode.h>
|
||||
+#if defined(__clang__) && (__clang_major__ == 3 && __clang_minor__ < 8)
|
||||
+// <smmintrin.h> requires -msse4.1 with Clang before 3.8
|
||||
+#define _MM_FROUND_FLOOR 0x01
|
||||
+#else
|
||||
#include <smmintrin.h>
|
||||
+#endif
|
||||
#include <xmmintrin.h>
|
||||
#include "common/assert.h"
|
||||
#include "common/logging/log.h"
|
||||
|
|
@ -128,7 +128,7 @@ pre-everything::
|
|||
.if ${ARCH} == "amd64"
|
||||
.if !exists(/usr/lib32/libc.so)
|
||||
@${ECHO} 'Requires 32-bit libraries installed under /usr/lib32.'
|
||||
@${ECHO} 'Do: cd /usr/src; make build32 install32; ldconfig -v -m -R /usr/lib32'
|
||||
@${ECHO} 'Do: cd /usr/src; make build32 install32; service ldconfig restart'
|
||||
@${FALSE}
|
||||
.endif
|
||||
.endif
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue