From 683c4126d8abf813130073acaf15c7f4e92f56fe Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Thu, 13 Jun 2019 16:33:14 -0700 Subject: [PATCH] use https: instead of http: --- CHANGELOG.md | 6 +++--- Makefile | 2 +- README.md | 4 ++-- package.json | 2 +- scripts/build_against_node.sh | 2 +- scripts/build_against_node_webkit.sh | 6 +++--- scripts/build_for_node_webkit.cmd | 2 +- 7 files changed, 12 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cdb9ecc16..425afedc7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -143,7 +143,7 @@ - Upgraded node-pre-gyp@0.6.5 - Upgraded nan@1.8.4 - Fixed binaries to work on older linux systems (circa GLIBC_2.2.5 like centos 6) @bnoordhuis - - Updated internal libsqlite3 from 3.8.7.1 -> 3.8.9 (http://www.sqlite.org/news.html) + - Updated internal libsqlite3 from 3.8.7.1 -> 3.8.9 (https://www.sqlite.org/news.html) ## 3.0.5 @@ -202,7 +202,7 @@ Released July 14th, 2014 - Now supporting node v0.11.x (specifically >=0.11.13) - Fix db opening error with absolute path on windows - Updated to node-pre-gyp@0.5.18 - - updated internal libsqlite3 from 3.8.4.3 -> 3.8.5 (http://www.sqlite.org/news.html) + - updated internal libsqlite3 from 3.8.4.3 -> 3.8.5 (https://www.sqlite.org/news.html) ## 2.2.3 @@ -226,7 +226,7 @@ Released July 14th, 2014 Released Jan 13th, 2014 - - updated internal libsqlite3 from 3.7.17 -> 3.8.2 (http://www.sqlite.org/news.html) which includes the next-generation query planner http://www.sqlite.org/queryplanner-ng.html + - updated internal libsqlite3 from 3.7.17 -> 3.8.2 (https://www.sqlite.org/news.html) which includes the next-generation query planner http://www.sqlite.org/queryplanner-ng.html - improved binary deploy system using https://github.com/springmeyer/node-pre-gyp - binary install now supports http proxies - source compile now supports freebsd diff --git a/Makefile b/Makefile index 1cd9b770a..48118eb8b 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -#http://www.gnu.org/prep/standards/html_node/Standard-Targets.html#Standard-Targets +#https://www.gnu.org/prep/standards/html_node/Standard-Targets.html#Standard-Targets all: build diff --git a/README.md b/README.md index 5669dd386..88956d0c3 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -Asynchronous, non-blocking [SQLite3](http://sqlite.org/) bindings for [Node.js](http://nodejs.org/). +Asynchronous, non-blocking [SQLite3](https://sqlite.org/) bindings for [Node.js](http://nodejs.org/). [![NPM](https://nodei.co/npm/sqlite3.png?downloads=true&downloadRank=true)](https://nodei.co/npm/sqlite3/) @@ -207,7 +207,7 @@ Thanks to [Orlando Vazquez](https://github.com/orlandov), [Eric Fredricksen](https://github.com/grumdrig) and [Ryan Dahl](https://github.com/ry) for their SQLite bindings for node, and to mraleph on Freenode's #v8 for answering questions. -Development of this module is sponsored by [MapBox](http://mapbox.org/). +Development of this module is sponsored by [MapBox](https://mapbox.org/). # License diff --git a/package.json b/package.json index f8c38a9e5..6520c9e75 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "sqlite3", "description": "Asynchronous, non-blocking SQLite3 bindings", "version": "4.0.9", - "homepage": "http://github.com/mapbox/node-sqlite3", + "homepage": "https://github.com/mapbox/node-sqlite3", "author": { "name": "MapBox", "url": "https://mapbox.com/" diff --git a/scripts/build_against_node.sh b/scripts/build_against_node.sh index ddb18b7c1..fcd2457d5 100755 --- a/scripts/build_against_node.sh +++ b/scripts/build_against_node.sh @@ -49,7 +49,7 @@ if [[ $(uname -s) == 'Linux' ]]; then # enable 32 bit iojs export PATH=$(pwd)/iojs-${NVER}-${platform}-x86/bin:$(pwd)/iojs-${NVER}-${platform}-ia32/bin:$PATH else - wget http://nodejs.org/dist/${NVER}/node-${NVER}-${platform}-x86.tar.gz + wget https://nodejs.org/dist/${NVER}/node-${NVER}-${platform}-x86.tar.gz tar xf node-${NVER}-${platform}-x86.tar.gz # enable 32 bit node export PATH=$(pwd)/node-${NVER}-${platform}-x86/bin:$(pwd)/node-${NVER}-${platform}-ia32/bin:$PATH diff --git a/scripts/build_against_node_webkit.sh b/scripts/build_against_node_webkit.sh index 94706b4fd..584fc7d82 100755 --- a/scripts/build_against_node_webkit.sh +++ b/scripts/build_against_node_webkit.sh @@ -23,7 +23,7 @@ fi if [[ $(uname -s) == 'Darwin' ]]; then export NW_DOWNLOAD=node-webkit-v${NODE_WEBKIT}-osx-${TARGET_ARCH} - wget http://dl.node-webkit.org/v${NODE_WEBKIT}/${NW_DOWNLOAD}.zip + wget https://dl.node-webkit.org/v${NODE_WEBKIT}/${NW_DOWNLOAD}.zip unzip -q ${NW_DOWNLOAD}.zip export PATH=$(pwd)/node-webkit.app/Contents/MacOS/:${PATH} # v0.10.0-rc1 unzips with extra folder @@ -36,9 +36,9 @@ else # for testing node-webkit, launch a virtual display export DISPLAY=:99.0 # NOTE: travis already has xvfb installed - # http://docs.travis-ci.com/user/gui-and-headless-browsers/#Using-xvfb-to-Run-Tests-That-Require-GUI-%28e.g.-a-Web-browser%29 + # https://docs.travis-ci.com/user/gui-and-headless-browsers/#Using-xvfb-to-Run-Tests-That-Require-GUI-%28e.g.-a-Web-browser%29 sh -e /etc/init.d/xvfb start +extension RANDR - wget http://dl.node-webkit.org/v${NODE_WEBKIT}/${NW_DOWNLOAD}.tar.gz + wget https://dl.node-webkit.org/v${NODE_WEBKIT}/${NW_DOWNLOAD}.tar.gz tar xf ${NW_DOWNLOAD}.tar.gz export PATH=$(pwd)/${NW_DOWNLOAD}:${PATH} if [[ "${TARGET_ARCH}" == 'ia32' ]]; then diff --git a/scripts/build_for_node_webkit.cmd b/scripts/build_for_node_webkit.cmd index 2a0878fc4..ef809be15 100644 --- a/scripts/build_for_node_webkit.cmd +++ b/scripts/build_for_node_webkit.cmd @@ -5,7 +5,7 @@ if not "%1" == "x86" goto end if "%nw_version%" == "" goto end call npm install nw-gyp call cinst wget 7zip.commandline -call wget http://dl.node-webkit.org/v%nw_version%/node-webkit-v%nw_version%-win-ia32.zip +call wget https://dl.node-webkit.org/v%nw_version%/node-webkit-v%nw_version%-win-ia32.zip call 7z e -onw node-webkit-v%nw_version%-win-ia32.zip dir nw set PATH=nw;%PATH%