aboutsummaryrefslogtreecommitdiffhomepage
path: root/org/config_dub.org
blob: 42c5f6f63b8c5e9a3321fc102399a65d77b51462 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
-*- mode: org -*-
#+TITLE:       configuration dub
#+DESCRIPTION: documents - structuring, various output representations & search
#+FILETAGS:    :spine:hub:
#+AUTHOR:      Ralph Amissah
#+EMAIL:       [[mailto:ralph.amissah@gmail.com][ralph.amissah@gmail.com]]
#+COPYRIGHT:   Copyright (C) 2015 - 2024 Ralph Amissah
#+LANGUAGE:    en
#+STARTUP:     content hideblocks hidestars noindent entitiespretty
#+PROPERTY:    header-args  :exports code
#+PROPERTY:    header-args+ :noweb yes
#+PROPERTY:    header-args+ :results no
#+PROPERTY:    header-args+ :cache no
#+PROPERTY:    header-args+ :padline no
#+PROPERTY:    header-args+ :mkdirp yes
#+OPTIONS:     H:3 num:nil toc:t \n:t ::t |:t ^:nil -:t f:t *:t

- [[./doc-reform.org][doc-reform.org]]  [[./][org/]]

** spine project VERSION :version:set:project:

#+NAME: spine_version
#+HEADER: :noweb yes
#+BEGIN_SRC emacs-lisp
<<./sisudoc_spine_version_info_and_doc_header_including_copyright_and_license.org:spine_project_version()>>
#+END_SRC

** dub

- https://github.com/dlang/dub/
- https://code.dlang.org/getting_started
- https://code.dlang.org/docs/commandline

*** dub.json :dub:config:json:
**** dub.json
***** file-system download external dependencies

- d2sqlite3
- dyaml
  - tinyendian
- imageformats

#+HEADER:  :tangle "../dub.json"
#+HEADER: :noweb yes
#+BEGIN_SRC json
{
  "authors": [
                             "Ralph Amissah"
  ],
  "copyright":                 "Copyright © 2002, 2024 Ralph Amissah",
  "name":                      "spine_search",
  "version":                   "<<spine_version>>",
  "description":               "cgi search for spine, a sisu like document parser",
  "homepage":                  "https://sisudoc.org",
  "license":                   "AGPL-3.0+",
  "targetPath":                "./cgi-bin",
  "sourcePaths":               [ "./src" ],
  "stringImportPaths":         [ "./views" ],
  "buildRequirements":         [ "allowWarnings" ],
  "targetType":                "executable",
  "buildTypes": {
    "dmd": {
      "dflags":                [ "-J=views", "-I=src" ],
      "buildOptions":          [ "inline", "verbose" ],
      "buildRequirements":     [ "allowWarnings" ]
    },
    "ldc2": {
      "dflags":                [ "-O2", "-J=views", "-I=src" ],
      "buildOptions":          [ "optimize", "inline", "verbose" ],
      "buildRequirements":     [ "allowWarnings" ]
    },
    "ldmd2": {
      "dflags":                [ "-O2", "-boundscheck=on", "-J=views", "-I=src", "-color=on" ],
      "buildOptions":          [ "optimize", "inline", "verbose" ],
      "buildRequirements":     [ "allowWarnings" ]
    },
    "gdc": {
      "dflags":                [ "-O2", "-J=views", "-I=src" ],
      "buildOptions":          [ "optimize", "inline" ],
      "buildRequirements":     [ "allowWarnings" ]
    },
    "gdmd": {
      "dflags":                [ "-O2", "-J=views", "-I=src" ],
      "buildOptions":          [ "optimize", "inline" ],
      "buildRequirements":     [ "allowWarnings" ]
    }
  },
  "dependencies": {
    "spine_search:arsd.cgi":   "*",
    "spine_search:d2sqlite3":  "*"
  },
  "subPackages": [
    {
      "name":           "d2sqlite3",
      "description":    "A thin wrapper around SQLite 3",
      "homepage":       "https://github.com/dlang-community/d2sqlite3",
      "authors":        [ "Nicolas Sicard", "Other contributors: see Github repo" ],
      "copyright":      "Copyright 2011-18 Nicolas Sicard",
      "license":        "BSL-1.0",
      "sourcePaths":    [ "./src/ext_depends/d2sqlite3/source" ],
      "importPaths":    [ "./src/ext_depends/d2sqlite3/source" ],
      "configurations": [
        {
          "name":                "d2sqlite3",
          "targetType":          "library",
          "systemDependencies":  "SQLite version >= 3.8.7",
          "libs":                [ "sqlite3" ],
          "excludedSourceFiles": [ "source/tests.d" ]
        }
      ]
    },
    {
      "name":           "arsd.cgi",
      "description":    "cgi",
      "homepage":       "https://code.dlang.org/packages/arsd-official",
      "authors":        [ "Adam Ruppee" ],
      "copyright":      "Copyright 2011-18 Adam Ruppee",
      "license":        "BSL-1.0",
      "sourcePaths":    [ "./src/ext_depends/arsd" ],
      "importPaths":    [ "./src/ext_depends/arsd" ],
      "configurations": [
        {
          "name":                "cgi",
          "targetType":          "library",
          "systemDependencies":  "Arsd version >= 0.8.7"
        }
      ]
    }
  ],
  "configurations": [
    {
      "name":                  "default",
      "targetName":            "spine_search"
    },
    {
      "name":                  "ldc2",
      "targetName":            "spine-search-ldc.cgi"
    },
    {
      "name":                  "ldmd2",
      "targetName":            "spine-search-ldc.cgi"
    },
    {
      "name":                  "dmd",
      "targetName":            "spine-search-dmd.cgi"
    },
    {
      "name":                  "gdc",
      "targetName":            "spine-search-gdc.cgi"
    }
  ]
}
#+END_SRC

***** generic :generic:
****** build (sdp) :release:

#+BEGIN_SRC sh
configuration "build" {
  name                 "build"
  targetType           "executable"
  platforms            "posix"
  targetName           "bin/spine"
  dflags               "-J=views" "-I=src/sisudoc"
  buildOptions         "verbose" "releaseMode" "optimize" "inline"
  postGenerateCommands "notify-send -t 0 'D release executable ready' 'spine'"
}
#+END_SRC

** dub :dub:

https://github.com/dlang/dub/
https://code.dlang.org/getting_started
https://code.dlang.org/docs/commandline

*** setup
**** dub json or sdlang

Every DUB package should contain a [[https://code.dlang.org/package-format?lang=json][dub.json]] or [[https://code.dlang.org/package-format?lang=sdl][dub.sdl]]
https://code.dlang.org/package-format?lang=sdl
https://code.dlang.org/packages/sdlang-d
https://github.com/Abscissa/SDLang-D/blob/master/HOWTO.md

https://code.dlang.org/docs/commandline

**** dub dependencies

dub list
dub upgrade
dub fetch taggedalgebraic
dub fetch libinputvisitor
dub fetch unit-threaded ?

sdp ~master: /home/ralph/grotto/repo/git.repo/utils/spine-x/
/home/ralph/.dub/packages/*

*** build
**** debug flags

#+BEGIN_SRC sh
biblio
biblio_sorted
bibliosorted
block
bookindex
bookindexmatch
bookindexraw
check
checkdoc
code
comment
dumpdoc                    write out document contents, with object type and ocn
endnotes
endnotes_build
footnotes
footnotesdone
group
header
header_and_content
header1
headerjson
headermakejson
headermetadatajson
heading
headings
headingsfound
insert
io
munge
node
objectrelated1
objectrelated2
objects
ocnoff
para
parabullet
parabulletindent
paraindent
paraindenthang
parent
poem
quote
raw
source
srclines
structattrib
summary
table
toc
#+END_SRC

** dub REFERENCE
*** SET version

#+NAME: dub_version_set
#+HEADER: :noweb yes
#+BEGIN_SRC nix
<<dub_version_next>>
#+END_SRC

#+NAME: nix_sha_dub
#+HEADER: :noweb yes
#+BEGIN_SRC nix
<<nix_sha_dub_next>>
#+END_SRC

*** SELECT version
**** dub 1.24.0

#+NAME: dub_version_next
#+BEGIN_SRC nix
1.24.0
#+END_SRC

#+NAME: nix_sha_dub_next
#+BEGIN_SRC nix
0wirm6msz8kw2a7v2ax9ab6i48cmfv6qjwpfrl9vrr4k4xdg3vn6
#+END_SRC

**** dub 1.23.0

#+NAME: dub_version_current
#+BEGIN_SRC nix
1.23.0
#+END_SRC

#+NAME: nix_sha_dub_current
#+BEGIN_SRC nix
06a4whsl1m600k096nwif83n7za3vr7pj1xwapncy5fcad1gmady
#+END_SRC