[pkg-d-commits] [dub] branch upstream updated (ebf695b -> 9fe84b0)
Matthias Klumpp
mak at moszumanska.debian.org
Thu Dec 22 18:23:23 UTC 2016
This is an automated email from the git hooks/post-receive script.
mak pushed a change to branch upstream
in repository dub.
from ebf695b Imported Upstream version 1.0.0
new 9fe84b0 New upstream version 1.1.1
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
.travis.yml | 20 +-
CHANGELOG.md | 91 +++++++--
README.md | 4 +-
dub.json | 44 -----
dub.sdl | 34 ++++
dub.selections.json | 4 +-
source/dub/commandline.d | 56 +++++-
source/dub/compilers/buildsettings.d | 1 +
source/dub/compilers/compiler.d | 28 +++
source/dub/compilers/dmd.d | 28 +--
source/dub/compilers/gdc.d | 31 +---
source/dub/compilers/ldc.d | 29 +--
source/dub/compilers/utils.d | 8 +-
source/dub/dependency.d | 4 +-
source/dub/dependencyresolver.d | 10 +-
source/dub/dub.d | 204 ++++++++++++++-------
source/dub/generators/build.d | 49 ++---
source/dub/generators/sublimetext.d | 10 +-
source/dub/init.d | 36 ++--
source/dub/internal/sdlang/lexer.d | 3 +-
source/dub/internal/sdlang/util.d | 18 ++
source/dub/internal/vibecompat/core/file.d | 34 ++--
source/dub/internal/vibecompat/core/log.d | 14 +-
source/dub/internal/vibecompat/data/json.d | 30 ++-
.../dub/internal/vibecompat/data/serialization.d | 8 +-
source/dub/package_.d | 19 ++
source/dub/packagemanager.d | 30 +--
source/dub/packagesupplier.d | 2 +-
source/dub/project.d | 21 ++-
source/dub/recipe/json.d | 26 +--
source/dub/recipe/packagerecipe.d | 33 ++++
source/dub/recipe/sdl.d | 10 +-
source/dub/version_.d | 2 +-
test/5-convert-stdout.sh | 25 +++
test/ddox.sh.min_frontend | 2 +-
test/interactive-remove.sh | 36 ++++
test/issue103-single-file-package-json.d | 2 +-
test/issue103-single-file-package-w-dep.d | 2 +-
test/issue103-single-file-package.d | 2 +-
test/issue103-single-file-package.sh | 18 +-
test/issue672-upgrade-optional.sh | 11 ++
.../.no_build | 0
test/issue672-upgrade-optional/dub.sdl | 2 +
.../dub.selections.json | 2 +-
test/issue820-extra-fields-after-convert.sh | 18 ++
test/issue884-init-defer-file-creation.sh | 25 +++
test/issue895-local-configuration.sh | 25 +++
test/issue923-subpackage-deps.sh | 14 ++
.../.no_build | 0
test/issue923-subpackage-deps/a/dub.sdl | 13 ++
.../b/dub.sdl | 0
.../b/source/b.d | 2 +-
test/issue923-subpackage-deps/main/dub.sdl | 2 +
.../main}/source/app.d | 2 +-
test/issue934-path-dep.sh | 9 +
test/{5-convert => issue934-path-dep}/.no_build | 0
test/issue934-path-dep/a/dub.sdl | 1 +
test/issue934-path-dep/b/dub.sdl | 2 +
.../b/source/b.d | 2 +-
test/issue934-path-dep/main/dub.sdl | 3 +
.../main}/source/app.d | 2 +-
test/issue959-path-based-subpack-dep/dub.sdl | 6 +
test/issue959-path-based-subpack-dep/foo/dub.sdl | 8 +
test/issue959-path-based-subpack-dep/main.d | 1 +
test/issue990-download-optional-selected.sh | 6 +
.../.no_build | 0
test/issue990-download-optional-selected/dub.sdl | 2 +
.../dub.selections.json | 2 +-
.../source/app.d | 6 +
travis-ci.sh | 2 +-
70 files changed, 839 insertions(+), 357 deletions(-)
delete mode 100644 dub.json
create mode 100644 dub.sdl
create mode 100755 test/5-convert-stdout.sh
create mode 100755 test/interactive-remove.sh
create mode 100755 test/issue672-upgrade-optional.sh
copy test/{1-sourceLib-simple => issue672-upgrade-optional}/.no_build (100%)
create mode 100644 test/issue672-upgrade-optional/dub.sdl
copy test/{issue361-optional-deps/main2 => issue672-upgrade-optional}/dub.selections.json (70%)
create mode 100755 test/issue820-extra-fields-after-convert.sh
create mode 100755 test/issue884-init-defer-file-creation.sh
create mode 100755 test/issue895-local-configuration.sh
create mode 100755 test/issue923-subpackage-deps.sh
copy test/{5-convert => issue923-subpackage-deps}/.no_build (100%)
create mode 100644 test/issue923-subpackage-deps/a/dub.sdl
copy test/{issue361-optional-deps => issue923-subpackage-deps}/b/dub.sdl (100%)
copy test/{issue686-multiple-march => issue923-subpackage-deps}/b/source/b.d (55%)
create mode 100644 test/issue923-subpackage-deps/main/dub.sdl
copy test/{issue754-path-selection-fail => issue923-subpackage-deps/main}/source/app.d (72%)
create mode 100755 test/issue934-path-dep.sh
copy test/{5-convert => issue934-path-dep}/.no_build (100%)
create mode 100644 test/issue934-path-dep/a/dub.sdl
create mode 100644 test/issue934-path-dep/b/dub.sdl
copy test/{issue686-multiple-march => issue934-path-dep}/b/source/b.d (55%)
create mode 100644 test/issue934-path-dep/main/dub.sdl
copy test/{issue754-path-selection-fail => issue934-path-dep/main}/source/app.d (72%)
create mode 100644 test/issue959-path-based-subpack-dep/dub.sdl
create mode 100644 test/issue959-path-based-subpack-dep/foo/dub.sdl
create mode 100644 test/issue959-path-based-subpack-dep/main.d
create mode 100755 test/issue990-download-optional-selected.sh
copy test/{1-sourceLib-simple => issue990-download-optional-selected}/.no_build (100%)
create mode 100644 test/issue990-download-optional-selected/dub.sdl
copy test/{issue754-path-selection-fail => issue990-download-optional-selected}/dub.selections.json (52%)
create mode 100644 test/issue990-download-optional-selected/source/app.d
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-d/dub.git
More information about the pkg-d-commits
mailing list