dub icon indicating copy to clipboard operation
dub copied to clipboard

Package and build management system for D

Results 262 dub issues
Sort by recently updated
recently updated
newest added
trafficstars

Hi. Create, please, program for take template from "~/.config/dub/template/" and put into new project. Example: ``` .config/ dub/ template/ source main.d dub.json ``` on dub init: `cp .config/dub/template/* .` then...

Hey Dub team. I'm looking into integrating Dub into FreeBSD Ports framework to allow creating ports for D software. FreeBSD Ports require all distribution files making up a build to...

Adding the following reference to my dub.sdl ``` dependency "numem" repository="git+https://github.com/Inochi2D/numem.git" version="~i2d08" ``` causes the operation to fail with ``` fatal: '--detach' cannot be used with '-b/-B/--orphan' ``` Additionally while...

This makes dub recognize `dub.yaml` as a configuration file format. The code is very similar to the JSON one, as Dub has been using the YAML parser for multiple years....

Automating efficient builds of Dub packages at scale is a little challenging right now: - We need to discover all dependencies, and be able to download them ahead of time....

This has got to be a recent regression, now showing up with the `installer` smoke tests (the DMD nightlies were broken since March 6th...): https://github.com/dlang/installer/actions/runs/15116939053/job/42490961516?pr=719#step:4:95 ``` $ /d/a/installer/installer/installer/test/release/generated/dmd2/windows/bin/dub.exe run -n...

regression

``` This implement a package 'index' similar to that found for Homebrew, Nix, Cargo, etc... It allows us to remove a SPOF in our critical infrastructure, as a Github outage...

`.\dub.json`: ```json { "name": "mypkg", "targetType": "none", "subPackages": [ "sub" ], "dependencies": { "mypkg:sub": "*" } } ``` `.\sub\dub.json`: ```json { "name": "sub", "targetType": "executable", "configurations": [ { "name": "special",...