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

Should detect when a sub package is erroneously used as a root package #622

Open
aubade opened this issue Jul 10, 2015 · 3 comments
Open

Comments

@aubade
Copy link

aubade commented Jul 10, 2015

Original title: Regression: Dub 0.9.23 and 0.9.24-b2 cannot find subdirectory-based-subpackage dependency for in-file subpackage.

I've got a rather complex project with a subPackage structure like this:

"subPackages":[
    "./Engine/",
    "./Vanilla/",
    "./ICE/",
    {
        "name":"enginetest",
        "targetType":"executable",
        "targetName":"ICE-test",
        "targetPath":"bin",
        "version":"~master",
        "dependencies": {
            "ice:engine":"~master"
        },
        "sourceFiles":["TestApps/testcode2.d"]
    }

]

(The reason for the mixed subpackage structure is that there are several completely independent source files in TestApps/; they're interactive programs for testing things that unit tests really can't)

ice:engine is defined in the subfolder Engine's dub.json file. Dub 0.9.22 was able to resolve this fine, but both 0.9.23 and the latest beta of 0.9.24 error out with the error "Unknown dependency: ice:engine" when building the package.

@s-ludwig s-ludwig added this to the 0.9.24 milestone Jul 12, 2015
s-ludwig added a commit that referenced this issue Jul 12, 2015
s-ludwig added a commit that referenced this issue Jul 12, 2015
s-ludwig added a commit that referenced this issue Jul 12, 2015
@s-ludwig
Copy link
Member

I tried to reproduce this in 90aa0f1, but everything there works. Is there anything else in your project that could influence this? Any chance of extracting all of the involved package description files for a reproduction case? The output of dub --verbose may also give some hints.

BTW, you should just remove all ~master references there. For referencing sub packages, use "*" and the version of all packages will be inferred, so using an explicit "version" field is usually not required.

@aubade
Copy link
Author

aubade commented Jul 13, 2015

Okay! I found the problem! It was expecting it to be called "engine", because of an entry in dub's local-packages file that was either old or mis-entered. Removing the local-packages file made things work fine! Sorry to trouble you.

@s-ludwig
Copy link
Member

Oh okay, I see. Sounds like something that DUB should detect on its own, though. I'll change the title and leave this open.

@s-ludwig s-ludwig changed the title Regression: Dub 0.9.23 and 0.9.24-b2 cannot find subdirectory-based-subpackage dependency for in-file subpackage. Should detect when a sub package is erroneously used as a root package Jul 13, 2015
@s-ludwig s-ludwig removed this from the 0.9.24 milestone Jul 13, 2015
s-ludwig added a commit that referenced this issue Nov 6, 2017
s-ludwig added a commit that referenced this issue Nov 6, 2017
s-ludwig added a commit that referenced this issue Nov 8, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants