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 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347
|
# External Developers #
You can use the [`deken` command line
tool](https://raw.githubusercontent.com/pure-data/deken/main/developer/deken)
to create packaged zipfiles with the correct searchable architectures in the
filename, for example `freeverb~-v0.1-(Linux-amd64-64)-externals.zip`.
If you don't want to use the `deken` packaging tool you can zip and upload the
files yourself. See the "Filename format" section below.
## Get started ##
### Prebuilt Binaries
If you don't want to install Python3, bash (MSYS),... as described below, you can also download
self-contained binaries from our Continuous Integration setup:
- [Windows 64bit](https://git.iem.at/pd/deken/-/jobs/artifacts/main/download?job=windows)
- [macOS 64bit](https://git.iem.at/pd/deken/-/jobs/artifacts/main/download?job=osx)
If they don't work for you, you might want to check the [releases page](https://github.com/pure-data/deken/releases)
for downloads that have been tested by humans.
These builds are snapshots of the latest development branch of `deken`.
On *Debian* and derivatives (like *Ubuntu*), `deken` is also readily available via `apt`:
~~~sh
apt-get install deken
~~~
### Docker containers
[docker](https://hub.docker.com/) is all the rage these days, so naturally there is a docker image for `deken` as well.
Get the latest and greatest release:
~~~sh
docker pull registry.git.iem.at/pd/deken
~~~
(For the more daring, you can also grab the lastest development snapshot under the `main` tag).
To use it to create your packages:
~~~sh
$ ls -d deken-test*
deken-test/
$ docker run --rm -ti \
--user $(id -u) --volume $(pwd):/deken \
registry.git.iem.at/pd/deken \
deken package --version 1.2.3 deken-test
$ ls -d deken-test*
deken-test/
'deken-test[v1.2.3].dek'
'deken-test[v1.2.3].dek.sha256'
$
~~~
And to upload packages:
~~~sh
docker run --rm -ti \
--user $(id -u) --volume $(pwd):/deken \
--env DEKEN_USERNAME=mydekuser \
registry.git.iem.at/pd/deken \
deken upload *.dek
~~~
#### GPG-signing with Docker
Within the container, `deken` will not attempt to GPG-sign your packages by default.
If your container has access to your GPG keys, you can enable signing by passing the `--sign-gpg` flag to `package` (resp. `upload`).
The following assumes that you have a properly configured GPG setup in your `~/.gnupg`, and `gpg-agent` is running on your host machine:
```sh
docker run --rm -ti \
--user $(id -u) --volume $(pwd):/deken \
--volume ${HOME}/.gnupg/:/.gnupg/:ro --volume /run/user/$(id -u)/:/run/user/$(id -u)/:ro \
registry.git.iem.at/pd/deken \
deken package --sign-gpg --version 1.2.3 deken-test
```
### Manual bootstrap
~~~sh
$ mkdir -p ~/bin/
$ curl https://raw.githubusercontent.com/pure-data/deken/main/developer/deken > ~/bin/deken
$ chmod 755 ~/bin/deken
$ deken
This is your first time running deken on this machine.
I'm going to install myself and my dependencies into ~/.deken now.
Feel free to ctrl-C now if you don't want to do this.
...
~~~
See [config.md](./config.md) for deken's configuration file format.
If you get an error like
> -bash: deken: command not found
then make sure that [`~/bin` is in your `PATH`](https://apple.stackexchange.com/a/99838).
#### Prerequisites
`deken` requires Python3 to be installed on your computer (and available from
the cmdline). You can test whether python3 is installed, by opening a terminal
and running `python3 --version`.
For installing (and updating) `deken`, you will also need `curl` (or `wget`)
for downloading from the cmdline.
##### macOS
On macOS, you can install missing dependencies with [brew](https://brew.sh/).
Once you have installed `brew`, run the following in your terminal:
~~~sh
brew install python3
~~~
##### Windows
On Windows you might need to install [MSYS2/MinGW64](https://www.msys2.org/),
which comes with `pacman` as a package manager to install missing dependencies.
Once you have installed `pacman`, run the following in your terminal:
~~~sh
pacman -Suy python3
~~~
## Show help ##
~~~sh
$ deken -h
~~~
## Upgrade ##
To run a self-upgrade (not supported on all platforms), simply do:
~~~sh
$ deken upgrade
~~~
## Create and Upload a package ##
You have a directory containing your compiled externals object files called
`my_external`.
This command will create a file like `my_external[v0.1](Linux-amd64-64).dek`
and upload it to your account on <https://puredata.info/> where the search plugin
can find it:
~~~sh
$ deken package -v 0.1 my_external
$ deken upload "my_external[v0.1](Linux-amd64-64).dek"
~~~
You can also just call the 'upload' directly and it will call the package
command for you in one step:
~~~sh
$ deken upload -v 0.1 my_external
~~~
The upload step will also generate a .sha256 checksum file and upload it along
with the dek file.
If possible, also a GPG signature file (with the .asc extension) will be created
and uploaded (but you must have [GPG](https://www.gnupg.org/) installed and you
need to have a GPG key for signing. The GPG signature mostly makes sense, if
your GPG key is cross-signed by (many) other people).
### Creating/Uploading packages on a different machine
`deken` inspects the files in the directory to determine the target platform
(rather than just checking on which system you are currently running).
Therefore, if it is not feasible to install `deken` on the machine used for
building your Pd library, you can run `deken` on another machine,
Example: You build the "my_external" library on OSX-10.5, but (due to OSX-10.5
not being supported by Apple anymore) you haven't installed `deken` there.
So you simply transfer the "my_external" directory to your Linux machine, where
you run `deken package my_external` and it will magically create the
`my_external[v3.14](Darwin-i386-32)(Darwin-amd64-32)-externals.tgz` file for
you, ready to be uploaded.
## Filename format ##
The `deken` tool names a zipfile of externals binaries with a specific format to
be optimally searchable on [puredata.info](http://puredata.info/);
LIBNAME[vVERSION]{(ARCH)}.dek
* LIBNAME is the name of the externals package ("zexy", "cyclone", "freeverb~").
* VERSION contains the version information for the end use
(this information is optional though *strongly* encouraged)
* ARCH is the architecture specifier, and can be given multiple times
(once for each type of architecture the externals are compiled for within
this archive).
It is either "Sources" (see [below](#sourceful-uploads) or `OS-MARCH-BIT`,
with:
- OS being the Operating System. Typical values are:
- `Linux`
- `Darwin`
- `Windows`
- MARCH is the machine architecture, e.g.:
- `i386` (32bit Intel/AMD-compatible CPUs)
- `amd64` (64bit Intel/AMD-compatible CPUs; synonymous for `x86_64`, though `amd64` is the preferred form)
- `ppc` (the `PowerPC` architecture popular in old Apple computers)
- `armv7l` (little-endian 32bit ARM CPUs as found in the *Raspberry Pi 3*)
- BIT is the size of Pd's numbers in bits (usually `32`; for double-precision it will be `64`)
Note that the archive should contain a single directory at the top level with
NAME the same as the externals package itself. For example a freeverb~ externals
package would contain a directory "freeverb~" at the top level of the zipfile in
which the externals live.
The version string must be enclosed by square brackets (`[]`) and start with a `v`.
The version string itself must not contain any brackets or parentheses.
Strictly speaking, the version (with the enclosing brackets) is optional, however
it is highly suggested that you provide it.
The curly braces around the "(ARCH)" specifiers are only to indicate that this section
can occur multiple times (or not at all).
However, the round parentheses "()" enclosing the architectures string must be included to
separate the architectures visibly from each other.
In plain English this means:
> the library-name, followed by an optional version string (starting with `[v`
> and ending with `]`), followed by zero or more architecture specifications
> (each surrounded by `(`parentheses`)`), and terminated by `.dek`.
Here is the actual regular expression used:
(.*/)?([^\[\]\(\)]+)(\[v[^\[\]\(\)]+\])?((\([^\[\]\(\)]+\))*)\.(dek)
with the following matching groups:
- ~~`#0` anything before the path (always empty and *ignored*)~~
- ~~`#1` = path to filename (*ignored*)~~
- `#2` = library name
- `#3` = options (including the version)
- `#4` = archs
- ~~`#5` = last arch in archs (*ignored*)~~
- `#6` = extension ('dek')
Some examples:
adaptive[v0.0.extended](Linux-i386-32)(Linux-amd64-32).dek
adaptive[v0.0.extended](Sources).dek
freeverb~(Darwin-i386-32)(Darwin-x86_64-32)(Sources).dek
list-abs[v0.1].dek
## Sourceful uploads
`deken` is very much about *sharing*.
To make sharing a more lasting experience, `deken` encourages the upload of
"source-packages" besides (pre-compiled) binary packages.
This is especially important if you are uploading a library that has been
released under a license that requires you to share sources along with binaries
(e.g. software licensed under the Gnu GPL), where it is your obligation to
provide the source code to the end users.
In other situations, having Source packages might be less important (e.g. it is
fine to use `deken` with closed source libraries), however we would like to
encourage sharing of sources.
The way `deken` implements all this is by using a special pseudo architecture
"Sources", which contains the sources of a library.
`deken package` tries to automatically detect whether a package contains Sources
by looking for common source code files (*.c, *.cpp, ...).
When uploading a package, `deken` will ensure that you are *also* uploading a
Source package of any library.
If a Source package is missing, `deken` will abort operation.
You can override this (e.g. because you have already uploaded a Source package;
or because you simply do not want to upload any sources) by using the
`--no-source-error` flag.
For uploading a Source package along with binary packages, you can upload one
package file with multiple archs (including a "Sources" arch) or multiple package
files (one for the "Sources" arch).
~~~sh
$ deken upload frobnozzel(Windows-i386-32)(Sources).dek
$ deken upload foobar[v0.1](Linux-x86_64-32).dek foobar[v0.1](Sources).dek
~~~
## objectlists
Sometimes the user only knows the object they need, not the library.
Therefore, a search initiated via the `deken-plugin` (Pd's package manager) also
searches for *objects*.
For this to work, the infrastructure must know which objects are contained in a
library; this is done via an objectlist file.
The objectlist file consists of exactly one line per object, with the object-name at the beginning,
followed by a TAB (`\t`) and a short (single-line) description of the object.
~~~
frobnofy frobfurcate a bugle of numbers
frobnofy~ signal frobfurcation
~~~
The objectlist file has the same name as the package with a `.txt` appended.
E.g. if your library is called `frobnozzel(Windows-i386-32)(Sources).dek`, the
objectlist file would have the name `frobnozzel(Windows-i386-32)(Sources).dek.txt`
This file must be uploaded to the same directory as the `.dek` file.
`deken` will try to automatically generate an objectlist file for a package.
It looks for all "*-help.pd" files in the library directory, and creates an
entry in the objectlists for each. The short description is taken from the
`DESCRIPTION` comment in the `[pd META]` subpatch within the help-patch.
If no DESCRIPTION comment can be found, a generic description is used.
You can provide your own (manually maintained) objectlist file via the
`--objects` flag:
~~~sh
$ deken package --objects mylist.txt my_external
~~~
To prevent the creation/use of an objectlist file, pass an empty string
~~~sh
$ deken package --objects "" my_external
~~~
In general, it is preferable if the description of the object in the META
subpatch is included in the object's help file (and let deken generate the
objectlist from it), as this allows others (humans, Pd, plugins, ...) to
access the same information as well.
## Troubleshooting
see [DEVELOPMENT.md](DEVELOPMENT.md) for some troubleshooting advice.
|