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

When the frontend version is at least 2.097, which deprecated the `body` keyword, require a newer `dscanner` version. Fixes #2241.

`pkg1/dub.sdl`: ``` name "pkg1" targetType "library" dependency "openssl" version=">=3.1.0" ``` `pkg2/dub.sdl`: ``` name "pkg2" targetType "executable" dependency "pkg1" path="../pkg1" ``` `pkg2/dub.selections.json`: ``` { "fileVersion": 1, "versions": { "openssl": {"repository":"git+https://github.com/kinke/openssl.git","version":"9e56c4bd28d01bcd3644df940101f156b48d9fca"}, "pkg1":...

### System information - **dub version**: 1.29.0 - **OS Platform and distribution**: Windows 10 - **compiler version** N/A ### Bug Description DUB doesn't infer default compiler ### How to reproduce?...

enhancement

### System information - **dub version**: 1.19.0-1build2 - **OS Platform and distribution**: Windows 10 but within WSL Ubuntu - **compiler version:** ldc 1.20.1 ### Bug Description Can't run dub on...

### System information - **dub version**: 1.28.0 - **OS Platform and distribution**: all - **compiler version** dmd32 v2.099.0-dirty ### Bug Description at https://github.com/dlang/dub/blob/master/source/dub/dub.d#L802, the version specifier for dscanner is set...

### System information - **dub version**: HEAD - **OS Platform and distribution**: Windows 10 - **compiler version** v2.098.0 ### Bug Description Since https://github.com/dlang/dub/pull/2217/commits/cb290e18465101bb1bb4cbeb190559bfb99c72d4 in #2217 `$PACKAGE_DIR` inside `preBuildCommands` of a...

bug
regression

For the sake of [reproducible builds](https://reproducible-builds.org/), add a command-line flag, say `--add-path=DIR`, that does what `dub add-path DIR` does but without side-effects for other (subsequent or concurrent) dub invocations. The...

It would be a good addition to add support for skipping the registry unless an explicit call to upgrade or if dub.selections.json becomes out of sync from the package descriptor....

### System information - **dub version**: dub 1.28.0 - **OS Platform and distribution**: Windows 10(x64) - **compiler version** : dmd.2.099.1 ### Bug Description I use the command "dub generate visuald...

It seems to create confusion. - if I create a parent package that depends on all subpackages, then people think it's a good idea and depend on everything. Remember that...