make depends boost invalid download url link #407
Labels
No labels
area: devops
area: discovery
area: docs
area: livestream
area: proposal
consider soon
Epic
good first issue
hacktoberfest
hard fork
help wanted
icebox
Invalid
level: 0
level: 1
level: 2
level: 3
level: 4
needs: exploration
needs: grooming
needs: priority
needs: repro
needs: tech design
on hold
priority: blocker
priority: high
priority: low
priority: medium
resilience
soft fork
Tom's Wishlist
type: bug
type: discussion
type: improvement
type: new feature
type: refactor
type: task
type: testing
unplanned
work in progress
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: LBRYCommunity/lbrycrd#407
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Im working on some build helper scripts not only predefined rules for lbrycrd "leveldb" and also "sqlite" version.
Issue comes with predefined depends build, getting error:
to reproduce, run followed command in lbrycrd directory:
Using official https://github.com/lbryio/lbrycrd.git same issue with tag "v0.17.3.3" also "v0.17.4.6"
Using Debian based OS.
For more details about scripts please read follow link. Feel free to share your ideas and feedback.
Thank you.
https://github.com/nnmfnwl7/cc.setup.helper.debian
I'm a little confused by this, as that bitcoincore link is not what's in the file for any of the primary branches:
73893d2f6b/depends/packages/boost.mk (L3)
It looks like you must be hitting the FALLBACK_DOWNLOAD_PATH in the depends/Makefile. I'm not sure what causes that. If you go into the depends folder (via
cd
) and run something likemake -j8 NO_QT=1
, does it use the right URL in that situation?I was hoping to start contributing to LBRY, but this issue is preventing me from building. I guess I'll start by looking into this issue.
Running
./packaging/build_linux_64bit.sh' from the root directory or
make NO_QT=1` from the depends folder both end in failure.I get 403 on the link today as well. Notice that bitcoin changed their server six months ago: https://github.com/bitcoin/bitcoin/blame/master/depends/packages/boost.mk . This should not hold you up on compilation, though. Change the link in depends/packages/boost.mk . Or use a local installation of boost. Any serious work on lbrycrd would probably be done with local dependencies rather than using "depends", perhaps in a Docker environment.
You should coordinate any work on lbrycrd with LBRY through chat. Get in the Slack or Discord groups and discuss plans.
Changing the download path in
boost.mk
tohttps://boostorg.jfrog.io/artifactory/main/release/1.69.0/source/
does allow the build script to continue to completion. Not sure if that solves the original issue since nnmfnwl7 didn't report a 403 error, but I don't think it's a coincidence.I faced the same issue with building with Docker so I changed the download path in
boost.mk
to the link above you wrote and it seems to work now. I also see on Travis that the latest on master gives the same output as I get (see output below): https://travis-ci.org/github/lbryio/lbrycrd/jobs/769376859I'll fix this on master soon. Thanks for your patience while I've been working on my PhD and the corresponding lbcd implementation.
@BrannonKing I made a PR to fix it so you don't have to, if the link is 100% valid that is. https://github.com/lbryio/lbrycrd/pull/410