This is an automated email from the ASF dual-hosted git repository.
kszucs pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-site.git
The following commit(s) were added to refs/heads/master by this push:
new bcd7ad1 ARROW-12356: [Website] Update install page instructions to
point to artifactory (#101)
bcd7ad1 is described below
commit bcd7ad10bf9feaf4bf206c3d6d07281187454aa5
Author: Neal Richardson <[email protected]>
AuthorDate: Thu Apr 15 11:42:06 2021 -0700
ARROW-12356: [Website] Update install page instructions to point to
artifactory (#101)
* Update install page instructions to point to artifactory
* Use workable instructions
Co-authored-by: Sutou Kouhei <[email protected]>
---
install.md | 13 ++++++++++++-
1 file changed, 12 insertions(+), 1 deletion(-)
diff --git a/install.md b/install.md
index 9b03ef6..46d0b0f 100644
--- a/install.md
+++ b/install.md
@@ -73,13 +73,24 @@ Apache Arrow GLib (C). Here are supported platforms:
* Red Hat Enterprise Linux 8
* Amazon Linux 2
+Note: We're migrating to Artifactory from Bintray. This instructions
+will be updated once we complete the migration. New instructions will
+have these changes:
+
+* Remove `sed ...`.
+* Rename `apache-arrow-archive-keyring` to `apache-arrow-apt-source`
+ for Debian GNU/Linux and Ubuntu.
+* Change base URL to https://apache.jfrog.io/artifactory/ from
+ https://apache.bintray.com/ .
+
Debian GNU/Linux and Ubuntu:
```shell
sudo apt update
sudo apt install -y -V ca-certificates lsb-release wget
-wget https://apache.bintray.com/arrow/$(lsb_release --id --short | tr 'A-Z'
'a-z')/apache-arrow-archive-keyring-latest-$(lsb_release --codename --short).deb
+wget https://apache.jfrog.io/artifactory/arrow/$(lsb_release --id --short | tr
'A-Z' 'a-z')/apache-arrow-archive-keyring-latest-$(lsb_release --codename
--short).deb
sudo apt install -y -V ./apache-arrow-archive-keyring-latest-$(lsb_release
--codename --short).deb
+sudo sed -i'' -e
's,https://apache.bintray.com/,https://apache.jfrog.io/artifactory/,g'
/etc/apt/sources.list.d/apache-arrow.sources
sudo apt update
sudo apt install -y -V libarrow-dev # For C++
sudo apt install -y -V libarrow-glib-dev # For GLib (C)