{"id":22293920,"url":"https://github.com/rtbo/dub-build-deep","last_synced_at":"2026-01-28T17:02:46.138Z","repository":{"id":71972672,"uuid":"464918723","full_name":"rtbo/dub-build-deep","owner":"rtbo","description":null,"archived":false,"fork":false,"pushed_at":"2022-11-22T20:33:51.000Z","size":11,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-06-04T14:17:41.495Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"D","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rtbo.png","metadata":{"files":{"readme":"ReadMe.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-03-01T14:07:58.000Z","updated_at":"2022-03-01T14:08:11.000Z","dependencies_parsed_at":"2023-03-04T16:45:39.183Z","dependency_job_id":null,"html_url":"https://github.com/rtbo/dub-build-deep","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/rtbo/dub-build-deep","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rtbo%2Fdub-build-deep","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rtbo%2Fdub-build-deep/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rtbo%2Fdub-build-deep/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rtbo%2Fdub-build-deep/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rtbo","download_url":"https://codeload.github.com/rtbo/dub-build-deep/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rtbo%2Fdub-build-deep/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28847055,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-28T15:15:36.453Z","status":"ssl_error","status_checked_at":"2026-01-28T15:15:13.020Z","response_time":57,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-12-03T17:33:22.277Z","updated_at":"2026-01-28T17:02:46.121Z","avatar_url":"https://github.com/rtbo.png","language":"D","funding_links":[],"categories":[],"sub_categories":[],"readme":"# dub-build-deep\n\n`dub-build-deep` is a simple utility that fetches and builds all dependencies\nof a DUB package for a specified compiler, architecture, configuration, etc.\n\nThis program is needed because DUB won't do a recursive build when sub-dependencies\nare static libraries (virtually 100% of Dub library packages).\n\nThis is mainly useful for D projects working with Meson, which expects all the needed\nDUB dependencies and sub-dependencies to be already available during the `meson setup` phase.\n\n## Manual\n\n```txt\n$ dub-build-deep -h\ndub-build-deep v1.0.1 - An utility to build DUB sub-dependencies\n\nUsage:\n    dub-build-deep [options] (package name)[@version]\n\nMost options are the same than expected by DUB describe.\n\n            --config Specify a DUB configuration\n   --override-config Specify a DUB configuration for a sub-dependency\n               --dub Specify a DUB executable\n          --compiler D compiler to be used\n              --arch Architecture to target\n             --build The build type (debug, release, ...)\n-h            --help This help information.\n```\n\n## Usage example\n\n- Build `vibe-d:http@0.9.4` and all sub-dependencies\n- For compiler `dmd`, architecture `x86_64` and build type `release`\n- Dub configuration `notls` is specified for the subpackage `vibe-d:tls`\n\n```txt\n$ dub run dub-build-deep -- --override-config vibe-d:tls/notls --compiler dmd --arch x86_64 --build release vibe-d:http@0.9.4`\n[...]\nrunning \"dub\" describe ^\"vibe-d:http@0.9.4^\" --override-config vibe-d:tls/notls --compiler dmd --arch ^\"x86_64^\" --build release\nWarning: vibe-d:http@0.9.4 does not appear to be present locally. Will try to fetch and repeat...\nrunning \"dub\" fetch ^\"vibe-d:http@0.9.4^\"\nrunning \"dub\" describe ^\"vibe-d:http@0.9.4^\" --override-config vibe-d:tls/notls --compiler dmd --arch ^\"x86_64^\" --build release\nrunning \"dub\" build ^\"vibe-d:http@0.9.4^\" --config library --compiler dmd --arch ^\"x86_64^\" --build release\nrunning \"dub\" build ^\"vibe-d:inet@0.9.4^\" --config library --compiler dmd --arch ^\"x86_64^\" --build release\nrunning \"dub\" build ^\"vibe-d:data@0.9.4^\" --config library --compiler dmd --arch ^\"x86_64^\" --build release\nrunning \"dub\" build ^\"vibe-d:utils@0.9.4^\" --config library --compiler dmd --arch ^\"x86_64^\" --build release\nrunning \"dub\" build ^\"stdx-allocator@2.77.5^\" --config library --compiler dmd --arch ^\"x86_64^\" --build release\nrunning \"dub\" build ^\"vibe-d:textfilter@0.9.4^\" --config library --compiler dmd --arch ^\"x86_64^\" --build release\nrunning \"dub\" build ^\"vibe-core@1.22.0^\" --config winapi --compiler dmd --arch ^\"x86_64^\" --build release\nrunning \"dub\" build ^\"eventcore@0.9.20^\" --config winapi --compiler dmd --arch ^\"x86_64^\" --build release\nrunning \"dub\" build ^\"taggedalgebraic@0.11.22^\" --config library --compiler dmd --arch ^\"x86_64^\" --build release\nrunning \"dub\" build ^\"vibe-d:stream@0.9.4^\" --config library --compiler dmd --arch ^\"x86_64^\" --build release\nrunning \"dub\" build ^\"vibe-d:tls@0.9.4^\" --config notls --compiler dmd --arch ^\"x86_64^\" --build release\nrunning \"dub\" build ^\"vibe-d:crypto@0.9.4^\" --config library --compiler dmd --arch ^\"x86_64^\" --build release\nrunning \"dub\" build ^\"mir-linux-kernel@1.0.1^\" --config library --compiler dmd --arch ^\"x86_64^\" --build release\nrunning \"dub\" build ^\"diet-ng@1.8.0^\" --config library --compiler dmd --arch ^\"x86_64^\" --build release\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frtbo%2Fdub-build-deep","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frtbo%2Fdub-build-deep","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frtbo%2Fdub-build-deep/lists"}