remove deprecated yaml/dyaml.all modules (#93)

remove deprecated yaml/dyaml.all modules
merged-on-behalf-of: BBasile <BBasile@users.noreply.github.com>
This commit is contained in:
Cameron Ross 2018-02-28 20:01:00 -04:00 committed by The Dlang Bot
parent 0784ca63ec
commit 72995df864
3 changed files with 1 additions and 22 deletions

View file

@ -10,7 +10,6 @@ src_dir = include_directories('source/')
pkgc = import('pkgconfig')
dyaml_src = [
'source/dyaml/all.d',
'source/dyaml/anchor.d',
'source/dyaml/composer.d',
'source/dyaml/constructor.d',
@ -51,10 +50,8 @@ dyaml_src = [
'source/dyaml/test/tokens.d',
'source/dyaml/token.d',
'source/dyaml/unused.d',
'source/dyaml/zerostring.d',
'source/yaml.d'
'source/dyaml/zerostring.d'
]
install_headers('source/yaml.d', subdir: 'd/yaml/')
install_subdir('source/dyaml', install_dir: 'include/d/yaml/')
tinyendian_dep = dependency('tinyendian', version: '>=0.1.2', required: false)

View file

@ -1,9 +0,0 @@
// Copyright Ferdinand Majerech 2011.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
deprecated("Import dyaml instead") module dyaml.all;
public import dyaml;

View file

@ -1,9 +0,0 @@
// Copyright Ferdinand Majerech 2011.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
deprecated("Import dyaml instead") module yaml;
public import dyaml;