From e6b3b8299522992252f86ef8cdfcc35513964b30 Mon Sep 17 00:00:00 2001 From: Wil Wade Date: Tue, 27 Apr 2021 14:56:30 -0400 Subject: [PATCH] Update license, package.json, and add basic notice to the Readme --- LICENSE => LICENSE.md | 4 +++- README.md | 38 +++++++------------------------------- package.json | 7 +++---- 3 files changed, 13 insertions(+), 36 deletions(-) rename LICENSE => LICENSE.md (79%) diff --git a/LICENSE b/LICENSE.md similarity index 79% rename from LICENSE rename to LICENSE.md index a6ee7c23..81013701 100644 --- a/LICENSE +++ b/LICENSE.md @@ -1,4 +1,6 @@ -Copyright (c) 2017 ironSource Ltd. +Copyright for portions of the project are (c) 2017 ironSource Ltd. https://github.com/ironSource/parquetjs +Copyright for portions of the project are https://github.com/ZJONSSON/parquetjs +Copyright for portions of the project are https://github.com/LibertyDSNP/parquetjs Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the diff --git a/README.md b/README.md index bc950b66..13432fa3 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,8 @@ fully asynchronous, pure node.js implementation of the Parquet file format -[![Build Status](https://travis-ci.org/ZJONSSON/parquetjs.png?branch=master)](http://travis-ci.org/ZJONSSON/parquetjs) [![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT) -[![npm version](https://badge.fury.io/js/parquetjs-lite.svg)](https://badge.fury.io/js/parquetjs-lite) +[![npm version](https://badge.fury.io/js/%40unfinishedlabs%2Fparquet-js.svg)](https://badge.fury.io/js/%40unfinishedlabs%2Fparquet-js) This package contains a fully asynchronous, pure JavaScript implementation of the [Parquet](https://parquet.apache.org/) file format. The implementation conforms with the @@ -15,6 +14,11 @@ for compatibility with Apache's Java [reference implementation](https://github.c write a large amount of structured data to a file, compress it and then read parts of it back out efficiently. The Parquet format is based on [Google's Dremel paper](https://www.google.co.nz/url?sa=t&rct=j&q=&esrc=s&source=web&cd=2&cad=rja&uact=8&ved=0ahUKEwj_tJelpv3UAhUCm5QKHfJODhUQFggsMAE&url=http%3A%2F%2Fwww.vldb.org%2Fpvldb%2Fvldb2010%2Fpapers%2FR29.pdf&usg=AFQjCNGyMk3_JltVZjMahP6LPmqMzYdCkw). +Forked Notice +------------- +This is a forked repository with code from various sources: +- Primary source [ironSource](https://github.com/ironSource/parquetjs) [npm: parquetjs](https://www.npmjs.com/package/parquetjs) +- Secondary source [ZJONSSON](https://github.com/ZJONSSON/parquetjs) [npm: parquetjs-lite](https://www.npmjs.com/package/parquetjs-lite) Installation ------------ @@ -22,7 +26,7 @@ Installation To use parquet.js with node.js, install it using npm: ``` - $ npm install parquetjs-lite + $ npm install @unfinishedlabs/parquetjs ``` _parquet.js requires node.js >= 7.6.0_ @@ -345,31 +349,3 @@ Notes Currently parquet-cpp doesn't fully support DATA_PAGE_V2. You can work around this by setting the useDataPageV2 option to false. - -Contributions -------------- -Please make sure you sign the [contributor license agreement](https://github.com/ironSource/cla) in order for us to be able to accept your contribution. We thank you very much! - - -License -------- - -Copyright (c) 2017 ironSource Ltd. - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in the -Software without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the -Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, -INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A -PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT -HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - diff --git a/package.json b/package.json index 6a75eb14..e194b4c1 100644 --- a/package.json +++ b/package.json @@ -2,9 +2,8 @@ "name": "parquetjs", "description": "fully asynchronous, pure JavaScript implementation of the Parquet file format", "main": "parquet.js", - "version": "0.8.0", - "homepage": "https://github.com/ironSource/parquetjs", - "author": "ironSource ", + "version": "0.0.0", + "homepage": "https://github.com/LibertyDSNP/parquetjs", "license": "MIT", "keywords": [ "dremel", @@ -12,7 +11,7 @@ ], "repository": { "type": "git", - "url": "git://github.com/ironSource/parquetjs.git" + "url": "git://github.com/LibertyDSNP/parquetjs.git" }, "dependencies": { "brotli": "^1.3.0",