aboutsummaryrefslogtreecommitdiffhomepage
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
parentbuild related (diff)
std.zip, drop external zip archive
-rw-r--r--dub.sdl1
-rw-r--r--dub.selections.json1
-rw-r--r--meson.build2
-rw-r--r--org/dr_build_scaffold.org20
-rw-r--r--subprojects/README8
5 files changed, 0 insertions, 32 deletions
diff --git a/dub.sdl b/dub.sdl
index 475bd14..1a0f067 100644
--- a/dub.sdl
+++ b/dub.sdl
@@ -10,7 +10,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
diff --git a/dub.selections.json b/dub.selections.json
index 22b6951..64508bf 100644
--- a/dub.selections.json
+++ b/dub.selections.json
@@ -1,7 +1,6 @@
{
"fileVersion": 1,
"versions": {
- "archive": "0.6.0",
"d2sqlite3": "0.18.3",
"dyaml": "0.8.0",
"imageformats": "7.0.1",
diff --git a/meson.build b/meson.build
index 1d54829..46ff731 100644
--- a/meson.build
+++ b/meson.build
@@ -44,7 +44,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'])
@@ -54,7 +53,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
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
diff --git a/subprojects/README b/subprojects/README
index 6f163be..cf3a335 100644
--- a/subprojects/README
+++ b/subprojects/README
@@ -1,11 +1,3 @@
-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