[pkg-d-commits] [dub] branch master updated (279cea1 -> 8fc582e)

Matthias Klumpp mak at moszumanska.debian.org
Sun Dec 17 16:43:29 UTC 2017


This is an automated email from the git hooks/post-receive script.

mak pushed a change to branch master
in repository dub.

      from  279cea1   Finalize changelog for 1.2.0-1
       new  53ee328   New upstream version 1.6.0
       new  8fd18d9   Update upstream source from tag 'upstream/1.6.0'
       new  8eade28   Bump standards version
       new  2d6b337   Depend on d-compiler
       new  b521263   Bump standards version again
       new  d4b91ba   Don't make build unnecessarily verbose
       new  8fc582e   Finalize changelog for 1.6.0-1

The 7 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:
 .codecov.yml                                       |  14 ++
 .github/issue_template.md                          |  17 ++
 .gitignore                                         |   1 +
 .travis.yml                                        |  52 ++--
 CHANGELOG.md                                       | 111 +++++++++
 Jenkinsfile                                        |   3 +
 README.md                                          |   2 +-
 appveyor.yml                                       | 124 ++++++++++
 build.sh                                           |  56 +++--
 debian/build_dub.sh                                |   2 +-
 debian/changelog                                   |   7 +
 debian/control                                     |   4 +-
 dub.sdl                                            |   4 +-
 dub.selections.json                                |  14 +-
 scripts/win-installer/EnvVarUpdate.nsh             |   2 +-
 source/dub/commandline.d                           |  38 ++-
 source/dub/compilers/buildsettings.d               |  85 +++++--
 source/dub/compilers/compiler.d                    |   8 +-
 source/dub/compilers/dmd.d                         |  12 +-
 source/dub/compilers/gdc.d                         |   9 +-
 source/dub/compilers/ldc.d                         |   4 +-
 source/dub/compilers/utils.d                       |  90 +------
 source/dub/dependency.d                            |  25 +-
 source/dub/description.d                           |   2 +-
 source/dub/dub.d                                   |  93 +++++--
 source/dub/generators/build.d                      |  76 ++++--
 source/dub/generators/cmake.d                      |  38 +--
 source/dub/generators/generator.d                  |  15 +-
 source/dub/generators/sublimetext.d                |   4 +-
 source/dub/generators/visuald.d                    |   3 +-
 source/dub/init.d                                  |  26 +-
 source/dub/internal/libInputVisitor.d              |  26 +-
 source/dub/internal/sdlang/ast.d                   | 268 ++++++++++-----------
 source/dub/internal/sdlang/lexer.d                 | 246 +++++++++----------
 source/dub/internal/sdlang/package.d               |  12 +-
 source/dub/internal/sdlang/parser.d                |  44 ++--
 source/dub/internal/sdlang/symbol.d                |   2 +-
 source/dub/internal/sdlang/util.d                  |   8 +-
 source/dub/internal/utils.d                        | 196 +++++++++------
 source/dub/internal/vibecompat/core/file.d         |  31 ++-
 source/dub/internal/vibecompat/core/log.d          |   8 +-
 source/dub/internal/vibecompat/data/json.d         |  10 +-
 .../dub/internal/vibecompat/data/serialization.d   |  20 +-
 source/dub/internal/vibecompat/data/utils.d        |   8 +-
 source/dub/internal/vibecompat/inet/path.d         |   4 +-
 source/dub/internal/vibecompat/inet/url.d          |  10 +-
 source/dub/package_.d                              |   4 +-
 source/dub/packagemanager.d                        |  33 ++-
 source/dub/packagesupplier.d                       |  87 ++++++-
 source/dub/platform.d                              | 119 +++++----
 source/dub/project.d                               |  53 ++--
 source/dub/recipe/io.d                             |   7 +-
 source/dub/recipe/packagerecipe.d                  |  31 ++-
 source/dub/recipe/sdl.d                            |   4 +-
 source/dub/semver.d                                |   7 +-
 source/dub/version_.d                              |   2 +-
 test/0-init-fail-json.sh                           |  11 +-
 test/0-init-fail.sh                                |  10 +-
 test/0-init-interactive.sh                         |  12 +-
 test/0-init-multi-json.sh                          |  14 +-
 test/0-init-multi.sh                               |  15 +-
 test/0-init-simple-json.sh                         |   8 +-
 test/0-init-simple.sh                              |   7 +-
 test/1-dynLib-simple/.no_build                     |   1 -
 .../.no_build => 1-dynLib-simple/.no_build_gdc}    |   0
 .../.no_build => 1-dynLib-simple/.no_build_ldc2}   |   0
 .../.no_run                                        |   0
 .../.no_build_gdc}                                 |   0
 .../.no_build_ldc2}                                |   0
 .../.no_run                                        |   0
 .../dub.json                                       |   4 +-
 .../source/dynlib/app.d                            |   8 +
 test/4-describe-data-1-list.sh                     |   8 +-
 test/4-describe-data-2-dmd.sh                      |   4 +-
 test/4-describe-data-3-zero-delim.sh               |   4 +-
 test/4-describe-import-paths.sh                    |   4 +-
 test/4-describe-json.sh                            |   4 +-
 test/4-describe-string-import-paths.sh             |   4 +-
 test/5-convert-stdout.sh                           |  13 +-
 test/5-convert.sh                                  |  22 +-
 test/common.sh                                     |  16 ++
 test/ddox.sh                                       |  10 +-
 test/ddox.sh.min_frontend                          |   2 +-
 test/describe-dependency-1/otherdir/dummy.d        |   2 +-
 test/describe-dependency-1/source/dummy.d          |   2 +-
 .../some-extra-string-import-path/dummy.d          |   2 +-
 test/describe-dependency-2/some-path/dummy.d       |   2 +-
 test/describe-dependency-3/dep3-source/dummy.d     |   2 +-
 .../dep3-string-import-path/dummy.d                |   2 +-
 test/describe-project/src/dummy.d                  |   2 +-
 test/describe-project/views/dummy.d                |   2 +-
 test/feat663-search.sh                             |  15 +-
 test/interactive-remove.sh                         |  21 +-
 test/issue1004-override-config.sh                  |   5 +-
 test/issue1005-configuration-resolution.sh         |   5 +-
 test/issue1024-selective-upgrade.sh                |  11 +-
 test/issue103-single-file-package.sh               |  13 +-
 test/issue1091-bogus-rebuild.sh                    |   8 +
 test/issue346-redundant-flags.sh                   |   5 +-
 test/issue361-optional-deps.sh                     |  11 +-
 test/issue564-invalid-upgrade-dependency.sh        |   5 +-
 test/issue586-subpack-dep.sh                       |   7 +-
 test/issue613-dynlib-pic.sh                        |   6 +-
 test/issue613-dynlib-pic/source/app.d              |   2 +-
 test/issue616-describe-vs-generate-commands.sh     |   4 +-
 .../src/dummy.d                                    |   2 +-
 test/issue616-subpack/src/dummy.d                  |   2 +-
 test/issue616-subsubpack/src/dummy.d               |   2 +-
 test/issue672-upgrade-optional.sh                  |   8 +-
 test/issue672-upgrade-optional/dub.selections.json |   2 +-
 test/issue674-concurrent-dub.sh                    |   8 +-
 test/issue686-multiple-march.sh                    |   8 +-
 test/issue782-gtkd-pkg-config.sh                   |  15 +-
 .../fake-gtkd/pkgconfig/fake-gtkd.pc               |   2 +-
 test/issue813-fixed-dependency.sh                  |   5 +-
 test/issue813-fixed-dependency/main/src/app.d      |   2 +-
 test/issue813-pure-sub-dependency.sh               |   5 +-
 test/issue813-pure-sub-dependency/main/src/app.d   |   2 +-
 test/issue820-extra-fields-after-convert.sh        |   9 +-
 test/issue884-init-defer-file-creation.sh          |   7 +-
 test/issue895-local-configuration.sh               |  13 +-
 test/issue923-subpackage-deps.sh                   |   8 +-
 test/issue934-path-dep.sh                          |   5 +-
 test/issue990-download-optional-selected.sh        |   7 +-
 test/run-unittest.sh                               |  31 ++-
 test/single-file-sdl-default-name.d                |  10 +
 test/single-file-sdl-default-name.sh               |  11 +
 test/test-version-opt.sh                           |   3 +-
 travis-ci.sh                                       |  26 +-
 129 files changed, 1698 insertions(+), 991 deletions(-)
 create mode 100644 .codecov.yml
 create mode 100644 .github/issue_template.md
 create mode 100644 Jenkinsfile
 create mode 100644 appveyor.yml
 delete mode 100644 test/1-dynLib-simple/.no_build
 copy test/{1-sourceLib-simple/.no_build => 1-dynLib-simple/.no_build_gdc} (100%)
 copy test/{1-sourceLib-simple/.no_build => 1-dynLib-simple/.no_build_ldc2} (100%)
 copy test/{1-staticLib-simple => 1-dynLib-simple}/.no_run (100%)
 copy test/{1-sourceLib-simple/.no_build => 2-dynLib-with-staticLib-dep/.no_build_gdc} (100%)
 copy test/{1-sourceLib-simple/.no_build => 2-dynLib-with-staticLib-dep/.no_build_ldc2} (100%)
 copy test/{1-staticLib-simple => 2-dynLib-with-staticLib-dep}/.no_run (100%)
 copy test/{2-staticLib-dep => 2-dynLib-with-staticLib-dep}/dub.json (53%)
 create mode 100644 test/2-dynLib-with-staticLib-dep/source/dynlib/app.d
 create mode 100644 test/common.sh
 create mode 100755 test/issue1091-bogus-rebuild.sh
 create mode 100644 test/single-file-sdl-default-name.d
 create mode 100755 test/single-file-sdl-default-name.sh

-- 
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