aboutsummaryrefslogtreecommitdiffhomepage
path: root/org
diff options
context:
space:
mode:
authorRalph Amissah <ralph.amissah@gmail.com>2019-09-24 09:14:02 -0400
committerRalph Amissah <ralph.amissah@gmail.com>2019-10-17 19:07:20 -0400
commite3a9c91328a42395fcc8b9931f8efdda96212c87 (patch)
treeaa51ac4efcf59988f3b12cd5a121faf51a14e46e /org
parentbuild related (diff)
std.zip, drop external zip archive
Diffstat (limited to 'org')
-rw-r--r--org/dr_build_scaffold.org20
1 files changed, 0 insertions, 20 deletions
diff --git a/org/dr_build_scaffold.org b/org/dr_build_scaffold.org
index 267594f..d17ed7b 100644
--- a/org/dr_build_scaffold.org
+++ b/org/dr_build_scaffold.org
@@ -851,7 +851,6 @@ stringImportPaths "./views"
buildRequirements "allowWarnings"
targetType "executable"
platforms "posix"
-dependency "archive" version="~>0.6.0" # http://code.dlang.org/packages/archive https://github.com/rcythr/archive
dependency "d2sqlite3" version="~>0.18.3" # https://code.dlang.org/packages/d2sqlite3 http://biozic.github.io/d2sqlite3/d2sqlite3.html
subconfiguration "d2sqlite3" "all-included"
dependency "imageformats" version="~>7.0.1" # https://code.dlang.org/packages/imageformats https://github.com/lgvz/imageformats
@@ -1047,7 +1046,6 @@ doc_reform_sources = [
source_root = meson.source_root()
sources_dir = include_directories('src/')
# Dependencies
-dep_archive = dependency('archive', version: '>= 0.6.0', fallback: ['archived', 'archive_dep'])
dep_d2sqlite3 = dependency('d2sqlite3', version: '>= 0.16.2', fallback: ['d2sqlite3', 'd2sqlite3_dep'])
dep_imageformats = dependency('imageformats-d', version: '>= 7.0.0', fallback: ['imageformats-d', 'imageformats_dep'])
dep_toml = dependency('toml-d', version: '>= 1.0.0', fallback: ['toml-d', 'toml_dep'])
@@ -1057,7 +1055,6 @@ doc_reform_exe = executable('rad',
include_directories : [sources_dir],
d_import_dirs: [include_directories('views')],
dependencies : [
- dep_archive,
dep_d2sqlite3,
dep_imageformats,
dep_toml
@@ -1069,14 +1066,6 @@ doc_reform_exe = executable('rad',
** subprojects
#+BEGIN_SRC sh :tangle ../subprojects/README
-archive
-- dub
- - https://code.dlang.org/packages/archive
-- upstream
- - https://github.com/rcythr/archive
-- mathias
- - https://github.com/ximion/archive.git
-
d2sqlite3
- dub
- https://code.dlang.org/packages/d2sqlite3
@@ -1102,15 +1091,6 @@ toml
- https://github.com/ximion/toml.git
#+END_SRC
-*** archived
-
-#+BEGIN_SRC sh :tangle ../subprojects/archived.wrap
-[wrap-git]
-directory = archived
-url = https://github.com/ximion/archive.git
-revision = head
-#+END_SRC
-
*** d2sqlite3
#+BEGIN_SRC sh :tangle ../subprojects/d2sqlite3.wrap