pkgsrc-WIP-changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
Import go-tiff-20190829 to wip
Module Name: pkgsrc-wip
Committed By: K.I.A.Derouiche <kamel.derouiche%gmail.com@localhost>
Pushed By: jihbed
Date: Thu Jan 7 13:50:45 2021 +0100
Changeset: f9221f525c8c1e21c8c1facf8803963d493ded64
Modified Files:
Makefile
Added Files:
go-tiff/DESCR
go-tiff/Makefile
go-tiff/PLIST
go-tiff/buildlink3.mk
go-tiff/distinfo
Log Message:
Import go-tiff-20190829 to wip
To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=f9221f525c8c1e21c8c1facf8803963d493ded64
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
diffstat:
Makefile | 1 +
go-tiff/DESCR | 2 ++
go-tiff/Makefile | 22 ++++++++++++++++++++++
go-tiff/PLIST | 38 ++++++++++++++++++++++++++++++++++++++
go-tiff/buildlink3.mk | 19 +++++++++++++++++++
go-tiff/distinfo | 6 ++++++
6 files changed, 88 insertions(+)
diffs:
diff --git a/Makefile b/Makefile
index b2f9d2e67b..50d32ab49c 100644
--- a/Makefile
+++ b/Makefile
@@ -1215,6 +1215,7 @@ SUBDIR+= go-rateio
SUBDIR+= go-rest
SUBDIR+= go-resty
SUBDIR+= go-riff
+SUBDIR+= go-tiff
SUBDIR+= go-transcoder
SUBDIR+= go-trie
SUBDIR+= go-upspin
diff --git a/go-tiff/DESCR b/go-tiff/DESCR
new file mode 100644
index 0000000000..82709539f6
--- /dev/null
+++ b/go-tiff/DESCR
@@ -0,0 +1,2 @@
+An improved version of x/image/tiff with full read/write
+support for CCITT, LZW compression and the CMYK color model
diff --git a/go-tiff/Makefile b/go-tiff/Makefile
new file mode 100644
index 0000000000..5715a30c03
--- /dev/null
+++ b/go-tiff/Makefile
@@ -0,0 +1,22 @@
+# $NetBSD$
+
+DISTNAME= tiff-20190829
+PKGNAME= go-${DISTNAME}
+PKGREVISION= 1
+GITHUB_PROJECT= tiff
+GITHUB_TAG= 736cae8d0bc75b2649c1fc625160df41b66b9795
+CATEGORIES= graphics
+MASTER_SITES= ${MASTER_SITE_GITHUB:=hhrutter/}
+
+MAINTAINER= kamelderouiche%yahoo.com@localhost
+HOMEPAGE= https://github.com/hhrutter/tiff
+COMMENT= Extended version of x/image/tiff
+LICENSE= 2-clause-bsd
+
+GO_SRCPATH= github.com/hhrutter/tiff
+GO_DIST_BASE= ${GITHUB_PROJECT}-${GITHUB_TAG}
+
+.include "../../graphics/go-image/buildlink3.mk"
+.include "../../wip/go-lzw/buildlink3.mk"
+.include "../../lang/go/go-package.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/go-tiff/PLIST b/go-tiff/PLIST
new file mode 100644
index 0000000000..74f4163b3d
--- /dev/null
+++ b/go-tiff/PLIST
@@ -0,0 +1,38 @@
+@comment $NetBSD$
+gopkg/pkg/${GO_PLATFORM}/github.com/hhrutter/tiff.a
+gopkg/src/github.com/hhrutter/tiff/LICENSE
+gopkg/src/github.com/hhrutter/tiff/README.md
+gopkg/src/github.com/hhrutter/tiff/buffer.go
+gopkg/src/github.com/hhrutter/tiff/buffer_test.go
+gopkg/src/github.com/hhrutter/tiff/compress.go
+gopkg/src/github.com/hhrutter/tiff/consts.go
+gopkg/src/github.com/hhrutter/tiff/go.mod
+gopkg/src/github.com/hhrutter/tiff/go.sum
+gopkg/src/github.com/hhrutter/tiff/reader.go
+gopkg/src/github.com/hhrutter/tiff/reader_test.go
+gopkg/src/github.com/hhrutter/tiff/testdata/blue-purple-pink.lzwcompressed.tiff
+gopkg/src/github.com/hhrutter/tiff/testdata/blue-purple-pink.png
+gopkg/src/github.com/hhrutter/tiff/testdata/bw-deflate.tiff
+gopkg/src/github.com/hhrutter/tiff/testdata/bw-gopher.png
+gopkg/src/github.com/hhrutter/tiff/testdata/bw-gopher_ccittGroup3.tiff
+gopkg/src/github.com/hhrutter/tiff/testdata/bw-gopher_ccittGroup4.tiff
+gopkg/src/github.com/hhrutter/tiff/testdata/bw-lzw-8bpp.tiff
+gopkg/src/github.com/hhrutter/tiff/testdata/bw-packbits.tiff
+gopkg/src/github.com/hhrutter/tiff/testdata/bw-uncompressed.tiff
+gopkg/src/github.com/hhrutter/tiff/testdata/g4test_1.tiff
+gopkg/src/github.com/hhrutter/tiff/testdata/g4test_2.tiff
+gopkg/src/github.com/hhrutter/tiff/testdata/go-aqua-cmyk.tiff
+gopkg/src/github.com/hhrutter/tiff/testdata/no_compress.tiff
+gopkg/src/github.com/hhrutter/tiff/testdata/no_rps.tiff
+gopkg/src/github.com/hhrutter/tiff/testdata/video-001-16bit.tiff
+gopkg/src/github.com/hhrutter/tiff/testdata/video-001-gray-16bit.tiff
+gopkg/src/github.com/hhrutter/tiff/testdata/video-001-gray.tiff
+gopkg/src/github.com/hhrutter/tiff/testdata/video-001-paletted.tiff
+gopkg/src/github.com/hhrutter/tiff/testdata/video-001-strip-64.tiff
+gopkg/src/github.com/hhrutter/tiff/testdata/video-001-tile-64x64.tiff
+gopkg/src/github.com/hhrutter/tiff/testdata/video-001-uncompressed.tiff
+gopkg/src/github.com/hhrutter/tiff/testdata/video-001.png
+gopkg/src/github.com/hhrutter/tiff/testdata/video-001.tiff
+gopkg/src/github.com/hhrutter/tiff/testdata/zookeeper-cmyk.tiff
+gopkg/src/github.com/hhrutter/tiff/writer.go
+gopkg/src/github.com/hhrutter/tiff/writer_test.go
diff --git a/go-tiff/buildlink3.mk b/go-tiff/buildlink3.mk
new file mode 100644
index 0000000000..65428ff803
--- /dev/null
+++ b/go-tiff/buildlink3.mk
@@ -0,0 +1,19 @@
+# $NetBSD$
+
+BUILDLINK_TREE+= go-tiff
+
+.if !defined(GO_TIFF_BUILDLINK3_MK)
+GO_TIFF_BUILDLINK3_MK:=
+
+BUILDLINK_CONTENTS_FILTER.go-tiff= ${EGREP} gopkg/
+BUILDLINK_DEPMETHOD.go-tiff?= build
+
+BUILDLINK_API_DEPENDS.go-tiff+= go-tiff>=20190829nb1
+BUILDLINK_PKGSRCDIR.go-tiff?= ../../wip/go-tiff
+
+
+.include "../../graphics/go-image/buildlink3.mk"
+.include "../../wip/go-lzw/buildlink3.mk"
+.endif # GO_TIFF_BUILDLINK3_MK
+
+BUILDLINK_TREE+= -go-tiff
diff --git a/go-tiff/distinfo b/go-tiff/distinfo
new file mode 100644
index 0000000000..1e8728dbe7
--- /dev/null
+++ b/go-tiff/distinfo
@@ -0,0 +1,6 @@
+$NetBSD$
+
+SHA1 (tiff-20190829-736cae8d0bc75b2649c1fc625160df41b66b9795.tar.gz) = cfb6f2355b6550c015a5061650f185e46e73fdb9
+RMD160 (tiff-20190829-736cae8d0bc75b2649c1fc625160df41b66b9795.tar.gz) = 91dcbb310009e727574e6c570456a868bdb806e2
+SHA512 (tiff-20190829-736cae8d0bc75b2649c1fc625160df41b66b9795.tar.gz) = da1249857aa51e5faf6387cc2c49028987bc7bb2e74870892478842269e6758e81ea6072440b2f2ff176d65a7a848bc37baad9766ac9efb082dbe0241775e79d
+Size (tiff-20190829-736cae8d0bc75b2649c1fc625160df41b66b9795.tar.gz) = 2633465 bytes
Home |
Main Index |
Thread Index |
Old Index