Skip to content

Commit

Permalink
Merge pull request #30 from andyquinterom/T28
Browse files Browse the repository at this point in the history
Version 0.15
  • Loading branch information
pierina-ixpantia authored Oct 17, 2024
2 parents b0ba571 + 9089d41 commit c1a6660
Show file tree
Hide file tree
Showing 11 changed files with 129 additions and 400 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: orbweaver
Title: Fast and Efficient Graph Data Structures
Version: 0.14.0
Version: 0.15.0
Authors@R:
c(person(given = "ixpantia, SRL",
role = "cph",
Expand Down
230 changes: 3 additions & 227 deletions LICENSE.note
Original file line number Diff line number Diff line change
Expand Up @@ -15,231 +15,7 @@ the licenses are the same as listed here.

===============================

Name: adler
Files: vendor/adler/*
Authors: Jonas Schievink
License: 0BSD OR MIT OR Apache-2.0

------------------------------

Name: ahash
Files: vendor/ahash/*
Authors: Tom Kaitchuck
License: MIT OR Apache-2.0

------------------------------

Name: byteorder
Files: vendor/byteorder/*
Authors: Andrew Gallant
License: Unlicense OR MIT

------------------------------

Name: cfg-if
Files: vendor/cfg-if/*
Authors: Alex Crichton
License: MIT/Apache-2.0

------------------------------

Name: crc32fast
Files: vendor/crc32fast/*
Authors: Sam Rijs, Alex Crichton
License: MIT OR Apache-2.0

------------------------------

Name: crossbeam-deque
Files: vendor/crossbeam-deque/*
Authors:
License: MIT OR Apache-2.0

------------------------------

Name: crossbeam-epoch
Files: vendor/crossbeam-epoch/*
Name:
Files: vendor//*
Authors:
License: MIT OR Apache-2.0

------------------------------

Name: crossbeam-utils
Files: vendor/crossbeam-utils/*
Authors:
License: MIT OR Apache-2.0

------------------------------

Name: either
Files: vendor/either/*
Authors: bluss
License: MIT OR Apache-2.0

------------------------------

Name: extendr-api
Files: vendor/extendr-api/*
Authors: andy-thomason, Thomas Down, Mossa Merhi Reimert, Claus O. Wilke, Hiroaki Yutani, Ilia A. Kosenkov, Michael Milton
License: MIT

------------------------------

Name: extendr-macros
Files: vendor/extendr-macros/*
Authors: andy-thomason, Thomas Down, Mossa Merhi Reimert, Claus O. Wilke, Hiroaki Yutani, Ilia A. Kosenkov
License: MIT

------------------------------

Name: flate2
Files: vendor/flate2/*
Authors: Alex Crichton, Josh Triplett
License: MIT OR Apache-2.0

------------------------------

Name: fxhash
Files: vendor/fxhash/*
Authors: cbreeden
License: Apache-2.0/MIT

------------------------------

Name: half
Files: vendor/half/*
Authors: Kathryn Long
License: MIT OR Apache-2.0

------------------------------

Name: hashbrown
Files: vendor/hashbrown/*
Authors: Amanieu d'Antras
License: MIT OR Apache-2.0

------------------------------

Name: libR-sys
Files: vendor/libR-sys/*
Authors: andy-thomason, Thomas Down, Mossa Merhi Reimert, Claus O. Wilke, Ilia A. Kosenkov, Hiroaki Yutani
License: MIT

------------------------------

Name: miniz_oxide
Files: vendor/miniz_oxide/*
Authors: Frommi, oyvindln
License: MIT OR Zlib OR Apache-2.0

------------------------------

Name: once_cell
Files: vendor/once_cell/*
Authors: Aleksey Kladov
License: MIT OR Apache-2.0

------------------------------

Name: orbweaver
Files: vendor/orbweaver/*
Authors: ixpantia, Andrés F. Quintero
License: MIT

------------------------------

Name: paste
Files: vendor/paste/*
Authors: David Tolnay
License: MIT OR Apache-2.0

------------------------------

Name: proc-macro2
Files: vendor/proc-macro2/*
Authors: David Tolnay, Alex Crichton
License: MIT OR Apache-2.0

------------------------------

Name: quote
Files: vendor/quote/*
Authors: David Tolnay
License: MIT OR Apache-2.0

------------------------------

Name: rayon-core
Files: vendor/rayon-core/*
Authors: Niko Matsakis, Josh Stone
License: MIT OR Apache-2.0

------------------------------

Name: rayon
Files: vendor/rayon/*
Authors: Niko Matsakis, Josh Stone
License: MIT OR Apache-2.0

------------------------------

Name: serde_cbor
Files: vendor/serde_cbor/*
Authors: Pyfisch, Steven Fackler
License: MIT/Apache-2.0

------------------------------

Name: serde_derive
Files: vendor/serde_derive/*
Authors: Erick Tryzelaar, David Tolnay
License: MIT OR Apache-2.0

------------------------------

Name: serde
Files: vendor/serde/*
Authors: Erick Tryzelaar, David Tolnay
License: MIT OR Apache-2.0

------------------------------

Name: string-interner
Files: vendor/string-interner/*
Authors: Robbepop
License: MIT/Apache-2.0

------------------------------

Name: syn
Files: vendor/syn/*
Authors: David Tolnay
License: MIT OR Apache-2.0

------------------------------

Name: unicode-ident
Files: vendor/unicode-ident/*
Authors: David Tolnay
License: (MIT OR Apache-2.0) AND Unicode-DFS-2016

------------------------------

Name: version_check
Files: vendor/version_check/*
Authors: Sergio Benitez
License: MIT/Apache-2.0

------------------------------

Name: zerocopy-derive
Files: vendor/zerocopy-derive/*
Authors: Joshua Liebow-Feeser
License: BSD-2-Clause OR Apache-2.0 OR MIT

------------------------------

Name: zerocopy
Files: vendor/zerocopy/*
Authors: Joshua Liebow-Feeser
License: BSD-2-Clause OR Apache-2.0 OR MIT
License:
21 changes: 2 additions & 19 deletions configure
Original file line number Diff line number Diff line change
@@ -1,20 +1,3 @@
#!/usr/bin/env sh

# https://github.com/eitsupi/prqlr/blob/main/configure
export PATH="$PATH:$HOME/.cargo/bin"

if [ ! "$(command -v cargo)" ]; then
echo "----------------------- [RUST NOT FOUND]---------------------------"
echo "The 'cargo' command was not found on the PATH. Please install rustc"
echo "from: https://www.rust-lang.org/tools/install"
echo ""
echo "Alternatively, you may install cargo from your OS package manager:"
echo " - Debian/Ubuntu: apt-get install cargo"
echo " - Fedora/CentOS: dnf install cargo"
echo " - macOS: brew install rustc"
echo "-------------------------------------------------------------------"
echo ""
exit 1
fi

exit 0
: "${R_HOME=`R RHOME`}"
"${R_HOME}/bin/Rscript" tools/msrv.R
17 changes: 2 additions & 15 deletions configure.win
Original file line number Diff line number Diff line change
@@ -1,15 +1,2 @@
#!/bin/sh

# https://github.com/eitsupi/prqlr/blob/main/configure.win
export PATH="$PATH:$HOME/.cargo/bin"

if [ ! "$(command -v cargo)" ]; then
echo "----------------------- [RUST NOT FOUND]---------------------------"
echo "The 'cargo' command was not found on the PATH. Please install rustc"
echo "from: https://www.rust-lang.org/tools/install"
echo "-------------------------------------------------------------------"
echo ""
exit 1
fi

exit 0
#!/usr/bin/env sh
"${R_HOME}/bin${R_ARCH_BIN}/Rscript.exe" tools/msrv.R
Loading

0 comments on commit c1a6660

Please sign in to comment.