pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/ruby-bindata



Module Name:    pkgsrc
Committed By:   minskim
Date:           Mon Oct 16 16:29:24 UTC 2017

Added Files:
        pkgsrc/devel/ruby-bindata: DESCR Makefile PLIST distinfo

Log Message:
devel/ruby-bindata: Import version 2.4.1

BinData provides a declarative way to read and write structured binary
data. This means the programmer specifies what the format of the
binary data is, and BinData works out how to read and write data in
this format. It is an easier (and more readable) alternative to ruby's
#pack and #unpack methods. BinData makes it easy to create new data
types. It supports all the common primitive datatypes that are found
in structured binary data formats. Support for dependent and variable
length fields is built in.


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 pkgsrc/devel/ruby-bindata/DESCR \
    pkgsrc/devel/ruby-bindata/Makefile pkgsrc/devel/ruby-bindata/PLIST \
    pkgsrc/devel/ruby-bindata/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Added files:

Index: pkgsrc/devel/ruby-bindata/DESCR
diff -u /dev/null pkgsrc/devel/ruby-bindata/DESCR:1.1
--- /dev/null   Mon Oct 16 16:29:24 2017
+++ pkgsrc/devel/ruby-bindata/DESCR     Mon Oct 16 16:29:24 2017
@@ -0,0 +1,8 @@
+BinData provides a declarative way to read and write structured binary
+data. This means the programmer specifies what the format of the
+binary data is, and BinData works out how to read and write data in
+this format. It is an easier (and more readable) alternative to ruby's
+#pack and #unpack methods. BinData makes it easy to create new data
+types. It supports all the common primitive datatypes that are found
+in structured binary data formats. Support for dependent and variable
+length fields is built in.
Index: pkgsrc/devel/ruby-bindata/Makefile
diff -u /dev/null pkgsrc/devel/ruby-bindata/Makefile:1.1
--- /dev/null   Mon Oct 16 16:29:24 2017
+++ pkgsrc/devel/ruby-bindata/Makefile  Mon Oct 16 16:29:24 2017
@@ -0,0 +1,12 @@
+# $NetBSD: Makefile,v 1.1 2017/10/16 16:29:24 minskim Exp $
+
+DISTNAME=      bindata-2.4.1
+CATEGORIES=    devel
+
+MAINTAINER=    minskim%NetBSD.org@localhost
+HOMEPAGE=      https://github.com/dmendel/bindata
+COMMENT=       Declarative way to read and write structured binary data
+LICENSE=       2-clause-bsd
+
+.include "../../lang/ruby/gem.mk"
+.include "../../mk/bsd.pkg.mk"
Index: pkgsrc/devel/ruby-bindata/PLIST
diff -u /dev/null pkgsrc/devel/ruby-bindata/PLIST:1.1
--- /dev/null   Mon Oct 16 16:29:24 2017
+++ pkgsrc/devel/ruby-bindata/PLIST     Mon Oct 16 16:29:24 2017
@@ -0,0 +1,79 @@
+@comment $NetBSD: PLIST,v 1.1 2017/10/16 16:29:24 minskim Exp $
+${GEM_HOME}/cache/${GEM_NAME}.gem
+${GEM_LIBDIR}/.gitignore
+${GEM_LIBDIR}/.travis.yml
+${GEM_LIBDIR}/BSDL
+${GEM_LIBDIR}/COPYING
+${GEM_LIBDIR}/ChangeLog.rdoc
+${GEM_LIBDIR}/Gemfile
+${GEM_LIBDIR}/INSTALL
+${GEM_LIBDIR}/NEWS.rdoc
+${GEM_LIBDIR}/README.md
+${GEM_LIBDIR}/Rakefile
+${GEM_LIBDIR}/bindata.gemspec
+${GEM_LIBDIR}/examples/NBT.txt
+${GEM_LIBDIR}/examples/gzip.rb
+${GEM_LIBDIR}/examples/ip_address.rb
+${GEM_LIBDIR}/examples/list.rb
+${GEM_LIBDIR}/examples/nbt.rb
+${GEM_LIBDIR}/examples/tcp_ip.rb
+${GEM_LIBDIR}/lib/bindata.rb
+${GEM_LIBDIR}/lib/bindata/alignment.rb
+${GEM_LIBDIR}/lib/bindata/array.rb
+${GEM_LIBDIR}/lib/bindata/base.rb
+${GEM_LIBDIR}/lib/bindata/base_primitive.rb
+${GEM_LIBDIR}/lib/bindata/bits.rb
+${GEM_LIBDIR}/lib/bindata/buffer.rb
+${GEM_LIBDIR}/lib/bindata/choice.rb
+${GEM_LIBDIR}/lib/bindata/count_bytes_remaining.rb
+${GEM_LIBDIR}/lib/bindata/delayed_io.rb
+${GEM_LIBDIR}/lib/bindata/dsl.rb
+${GEM_LIBDIR}/lib/bindata/float.rb
+${GEM_LIBDIR}/lib/bindata/framework.rb
+${GEM_LIBDIR}/lib/bindata/int.rb
+${GEM_LIBDIR}/lib/bindata/io.rb
+${GEM_LIBDIR}/lib/bindata/lazy.rb
+${GEM_LIBDIR}/lib/bindata/name.rb
+${GEM_LIBDIR}/lib/bindata/offset.rb
+${GEM_LIBDIR}/lib/bindata/params.rb
+${GEM_LIBDIR}/lib/bindata/primitive.rb
+${GEM_LIBDIR}/lib/bindata/record.rb
+${GEM_LIBDIR}/lib/bindata/registry.rb
+${GEM_LIBDIR}/lib/bindata/rest.rb
+${GEM_LIBDIR}/lib/bindata/sanitize.rb
+${GEM_LIBDIR}/lib/bindata/skip.rb
+${GEM_LIBDIR}/lib/bindata/string.rb
+${GEM_LIBDIR}/lib/bindata/stringz.rb
+${GEM_LIBDIR}/lib/bindata/struct.rb
+${GEM_LIBDIR}/lib/bindata/trace.rb
+${GEM_LIBDIR}/lib/bindata/version.rb
+${GEM_LIBDIR}/lib/bindata/virtual.rb
+${GEM_LIBDIR}/lib/bindata/warnings.rb
+${GEM_LIBDIR}/test/alignment_test.rb
+${GEM_LIBDIR}/test/array_test.rb
+${GEM_LIBDIR}/test/base_primitive_test.rb
+${GEM_LIBDIR}/test/base_test.rb
+${GEM_LIBDIR}/test/bits_test.rb
+${GEM_LIBDIR}/test/buffer_test.rb
+${GEM_LIBDIR}/test/choice_test.rb
+${GEM_LIBDIR}/test/count_bytes_remaining_test.rb
+${GEM_LIBDIR}/test/delayed_io_test.rb
+${GEM_LIBDIR}/test/float_test.rb
+${GEM_LIBDIR}/test/int_test.rb
+${GEM_LIBDIR}/test/io_test.rb
+${GEM_LIBDIR}/test/lazy_test.rb
+${GEM_LIBDIR}/test/offset_test.rb
+${GEM_LIBDIR}/test/params_test.rb
+${GEM_LIBDIR}/test/primitive_test.rb
+${GEM_LIBDIR}/test/record_test.rb
+${GEM_LIBDIR}/test/registry_test.rb
+${GEM_LIBDIR}/test/rest_test.rb
+${GEM_LIBDIR}/test/skip_test.rb
+${GEM_LIBDIR}/test/string_test.rb
+${GEM_LIBDIR}/test/stringz_test.rb
+${GEM_LIBDIR}/test/struct_test.rb
+${GEM_LIBDIR}/test/system_test.rb
+${GEM_LIBDIR}/test/test_helper.rb
+${GEM_LIBDIR}/test/virtual_test.rb
+${GEM_LIBDIR}/test/warnings_test.rb
+${GEM_HOME}/specifications/${GEM_NAME}.gemspec
Index: pkgsrc/devel/ruby-bindata/distinfo
diff -u /dev/null pkgsrc/devel/ruby-bindata/distinfo:1.1
--- /dev/null   Mon Oct 16 16:29:24 2017
+++ pkgsrc/devel/ruby-bindata/distinfo  Mon Oct 16 16:29:24 2017
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2017/10/16 16:29:24 minskim Exp $
+
+SHA1 (bindata-2.4.1.gem) = 86aaba86d0ccc224366c4f1a78332ba9c8035f07
+RMD160 (bindata-2.4.1.gem) = fe61c3ee9675842d571f5fddb45fb1e2e74a16db
+SHA512 (bindata-2.4.1.gem) = 5bbbb38f7deb461c234801677baf30bf6d5300dd46f201ebcaef4cc4182354e1ed375fc1c341a13d6b3a1f579e25e4e53d8aeab0dd979a581131e2a984758243
+Size (bindata-2.4.1.gem) = 78848 bytes



Home | Main Index | Thread Index | Old Index