Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[libnoise] Build failure on x64-linux #40740

Closed
richard523 opened this issue Aug 31, 2024 · 9 comments
Closed

[libnoise] Build failure on x64-linux #40740

richard523 opened this issue Aug 31, 2024 · 9 comments
Assignees
Labels
category:question This issue is a question Stale

Comments

@richard523
Copy link

Package: libnoise:x64-linux -> 1.0.0#3

Host Environment

  • Host: x64-linux
  • Compiler: GNU 11.4.0
  • vcpkg-tool version: 2023-11-16-4c1df40a3c5c5e18de299a99e9accb03c2a82e1e
    vcpkg-scripts version: bb58898 2023-11-29 (9 months ago)

To Reproduce

vcpkg install
Failure logs

-- Downloading https://github.com/RobertHue/libnoise/archive/d7e68784a2b24c632868506780eba336ede74ecd.tar.gz -> RobertHue-libnoise-d7e68784a2b24c632868506780eba336ede74ecd.tar.gz...
[DEBUG] To include the environment variables in debug output, pass --debug-env
[DEBUG] Disabling metrics because vcpkg.disable-metrics exists
[DEBUG] Trying to load bundleconfig from /home/chard_unix/CarbonCopies/BrainGenix/BrainGenix-NES/ThirdParty/vcpkg/vcpkg-bundle.json
[DEBUG] Failed to open: /home/chard_unix/CarbonCopies/BrainGenix/BrainGenix-NES/ThirdParty/vcpkg/vcpkg-bundle.json
[DEBUG] Bundle config: readonly=false, usegitregistry=false, embeddedsha=nullopt, deployment=Git, vsversion=nullopt
[DEBUG] Feature flag 'binarycaching' unset
[DEBUG] Feature flag 'compilertracking' unset
[DEBUG] Feature flag 'registries' unset
[DEBUG] Feature flag 'versions' unset
[DEBUG] Feature flag 'dependencygraph' unset
[DEBUG] 1000: execute_process(curl --fail -L https://github.com/RobertHue/libnoise/archive/d7e68784a2b24c632868506780eba336ede74ecd.tar.gz --create-dirs --output /home/chard_unix/CarbonCopies/BrainGenix/BrainGenix-NES/ThirdParty/vcpkg/downloads/RobertHue-libnoise-d7e68784a2b24c632868506780eba336ede74ecd.tar.gz.1321.part)
[DEBUG] 1000: cmd_execute_and_stream_data() returned 22 after   361730 us
error: Failed to download from mirror set
error: https://github.com/RobertHue/libnoise/archive/d7e68784a2b24c632868506780eba336ede74ecd.tar.gz: curl failed to download with exit code 22
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed

curl: (22) The requested URL returned error: 404

[DEBUG] /mnt/vss/_work/1/s/src/vcpkg/base/downloads.cpp(1048): 
[DEBUG] Time in subprocesses: 361730us
[DEBUG] Time in parsing JSON: 4us
[DEBUG] Time in JSON reader: 0us
[DEBUG] Time in filesystem: 15us
[DEBUG] Time in loading ports: 0us
[DEBUG] Exiting after 362 ms (362060us)

CMake Error at scripts/cmake/vcpkg_download_distfile.cmake:32 (message):
      
      Failed to download file with error: 1
      If you are using a proxy, please check your proxy setting. Possible causes are:
      
      1. You are actually using an HTTP proxy, but setting HTTPS_PROXY variable
         to `https://address:port`. This is not correct, because `https://` prefix
         claims the proxy is an HTTPS proxy, while your proxy (v2ray, shadowsocksr
         , etc..) is an HTTP proxy. Try setting `http://address:port` to both
         HTTP_PROXY and HTTPS_PROXY instead.
      
      2. If you are using Windows, vcpkg will automatically use your Windows IE Proxy Settings
         set by your proxy software. See https://github.com/microsoft/vcpkg-tool/pull/77
         The value set by your proxy might be wrong, or have same `https://` prefix issue.
      
      3. Your proxy's remote server is out of service.
      
      If you've tried directly download the link, and believe this is not a temporary
      download server failure, please submit an issue at https://github.com/Microsoft/vcpkg/issues
      to report this upstream download server failure.
      

Call Stack (most recent call first):
  scripts/cmake/vcpkg_download_distfile.cmake:270 (z_vcpkg_download_distfile_show_proxy_and_fail)
  scripts/cmake/vcpkg_from_github.cmake:106 (vcpkg_download_distfile)
  ports/libnoise/portfile.cmake:4 (vcpkg_from_github)
  scripts/ports.cmake:170 (include)



Additional context

vcpkg.json
{
  "name": "braingenix-nes",
  "version-string": "0.2.0",
  "license": "AGPL-3.0-or-later",
  "dependencies": [
    "bg-common-logger",
    "yaml-cpp",
    "glm",
    "gtest",
    "nlohmann-json",
    "rpclib",
    "vsg",
    "cpp-base64",
    "stb",
    "libnoise",
    {
      "name": "stduuid",
      "features": [
        "system-gen"
      ]
    }
  ]
}

@dg0yt
Copy link
Contributor

dg0yt commented Aug 31, 2024

@RobertHue did you remove the repo?

@RobertHue
Copy link
Contributor

@RobertHue did you remove the repo?

Yes I deleted it and forgot that it points to that repository, but I forked it again from https://github.com/qknight/libnoise

I'm sorry for the inconveniece.

@dg0yt
Copy link
Contributor

dg0yt commented Aug 31, 2024

Thanks. The download works again now.

But IMO it may need some follow-up action.

@RobertHue
Copy link
Contributor

@qknight Since the contributors on your project seem to be visible. And you have more forks and reach. What do you think?

Can we make your libnoise project the official one?

@qknight
Copy link

qknight commented Aug 31, 2024

@RobertHue sure we can. If you want to help with development, i'll add you to the repo.

@RobertHue
Copy link
Contributor

@qknight ok I will try to attach the commits again into the git tree.

@qknight
Copy link

qknight commented Sep 1, 2024

@RobertHue added you to libnix on my GH, so you can also merge stuff there

@RobertHue
Copy link
Contributor

@qknight Thank you :D

@Cheney-W Cheney-W added the category:question This issue is a question label Sep 2, 2024
Copy link

github-actions bot commented Oct 1, 2024

This is an automated message. Per our repo policy, stale issues get closed if there has been no activity in the past 28 days. The issue will be automatically closed in 14 days. If you wish to keep this issue open, please add a new comment.

@github-actions github-actions bot added the Stale label Oct 1, 2024
@github-actions github-actions bot closed this as not planned Won't fix, can't repro, duplicate, stale Oct 16, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
category:question This issue is a question Stale
Projects
None yet
Development

Successfully merging a pull request may close this issue.

5 participants