Table of Contents
- Not-forking Upstream Source Code Tracker
- Forking regarded as bad
- Overall not-forking configuration
- Upstream definition file
- Modification definition file
- Example Configuration directory
- Not-forking tool
- Fragment-diff tool
Not-forking Upstream Source Code Tracker
Not-forking semi-automatically incorporates software from upstream projects by tracking and merging. Designed for use in build and test systems, Not-forking can combine an arbitary number of upstreams accessible over the internet by any or all of git, fossil and web download. Not-forking was originally developed for the LumoSQL project.
Simple Use Case: A project needs a particular cryptographic or database library, and the library maintainers have irregular releases with many bugfixes inbetween. In order to protect the project from being influenced by the bugfix cycles of the library, the project will often decide to copy the library in-tree, and then periodically hand-port new library versions to suit the project's release cycle. This is effectively a fork. With Not-forking, the project never needs to face this decision.
More Advanced Use Case: An embedded software product requires a single image containing operating system and applications, with a new version twice a year. Embedded software is frequently shipped with wildly out of date versions because this is a hard problem and often not a priority for the product manufacturer. Not-forking reduces the maintenance of pulling many upstreams into the image, while still giving control over how this is done in the build process (eg by adding a product-specific version string to imported code.)
The overall effect is something like Fossil merge --cherry-pick or git-cherry-pick except that it copes with messines:
- human-style software versioning ("0.6-test3" or "-prerelease" or "1.2-17" and so on)
- code that is not maintained in the same git/Fossil repo (perhaps a library from elsewhere that you wish to include and change, but not 'vendor')
- code that is not maintained in git, but is just patches or in some other VCS (surprising examples exist)
- custom processing that needs to run for a specific patch
- code changes that are smarter than
patch, for examplesed-like global string replacement, conditional on some other string in the file. - failing with an error asking for human intervention when there are major differences with upstream
The concept of a fork
Forking is often a social rather than a technical issue. The not-forking tool assists in keeping friction low and helping developers only fork when they absolutely need to. Not-forking helps avoid projects carrying a fork of external code they need, even if the upstream code/library is not maintained in a way that is compatible with the project. Not-forking also pushes back against Git/Github's "Fork by default" development philosophy.
As of 2025, the most commonly used public source code repositories are based on the git SCM, such as GitHub, GitLab, and Codeberg. GitHub puts a prominent "Fork" button on every project and tells newcomers that forking is at the core of social coding at GitHub. By its Octoverse 2025 report, GitHub hosts over 630 million total repositories, having added more than 121 million in 2025 alone. The great majority are not original works but copies produced by GitHub's Fork button, and very many are abandoned. Researchers studying the platform draw the distinction explicitly: the traditional "hard fork" that splits off an independent line of development is now vastly outnumbered by the "social fork" created merely to submit a change back upstream (Zhou, Vasilescu & Kästner, How Has Forking Changed in the Last 20 Years?, ICSE 2020). GitLab and Codeberg follow a similar model.
In contrast, the Fossil SCM discourages forking and encourages regular re-merging of branches. Its "autosync" mode reduces the forking and merging often associated with distributed projects: when two developers commit against the same leaf, Fossil aborts the second commit with a "would fork" warning, so the contributor pulls and merges rather than diverging. Where GitHub's flagship feature is "Fork", the Fossil timeline is central to how Fossil works (shown here with the source code of SQLite, a very busy project). This reflects the broader Fossil development philosophy, which is designed for a small, closely engaged team whose changes are continuously synchronised to a central repository, rather than for many independent contributors maintaining long-lived private branches. Not-forking can of course work with any SCM, and certainly with git and the forges based on it.
Overall not-forking configuration
A not-forking configuration is a directory containing one or more subdirectories each one defining a different project to track.
Each project define what to track, and what changes to apply. Configuration files in the project subdirectory explain what to do. The minimum requirement is an upstream definition file; other files can also be present indicating what modifications to apply (if none are provided, the upstream sources are used unchanged).
The not-forking tool refers to each project using the name of the subdirectory containing it; when handling all projects at once, it lists this directory to see what's there.
Upstream definition file
This file describes the nature of the upstream. What version control system does it use? Where are its repositories? What style of version string does it use?
The file upstream.conf has a "key = value" format with one such key, value pair per line: blank lines and lines whose first nonblank character is a
hash (#) are ignored; long lines can be split into multiple lines by ending a line with a backslash meaning continuation into the next line.
There is a special line format to indicate conditionals, with the general form:
if (condition)
...
[else if (condition)
...]
[else
...]
endif
Note that conditionals cannot be nested. The following conditions are available:
if version =|>|>=|<|<=NUMBER [=|>|>=|<|<=NUMBER ]... which will be true if all the comparisons listed are true when applied to the version requested; for example:if version <= 2 > 1will be true when requesting version 1.5 or 2, but not when requesting 0.5, 1, or 2.5.if osname =|!=NAME [=|!=NAME ]... which will be true if the operating system name compares as required with all the elements; for exampleif osname != netbsd != linuxwill be true on FreeBSD but not on NetBSD, andif osname = linuxwill be true on Linux only (note that the NAMEs are specified in all lower case).if hasfile [!]/path/to/file[[!]/path/to/file]... which will be true if all the files listed are present (or absent if preceded by a "!").
If a key is present more than once, the last value seen wins; therefore, it is possible to define a key inside a conditional block, and then to define it again outside the block to provide a default value.
The only key which must be present is vcs, and there is no default.
It indicates what kind of version control system to use to obtain upstream
sources; the value is the name of a version control module defined by the
not-forking mechanism: fossil, git and download are the only valid modules.
In general, the documentation for the corresponding version control
module defines what else is present in the upstream.conf file; this document
describes briefly the configuration for the above three modules.
Optionally, two other keys can be present: compare and subtree.
The compare key indicates what method to use to compare two different
version numbers; if omitted, it default to version which compares
"normal" software version numbers: sequences of digits compare
numerically, and sequences of letters compare alphabetically, with the
exception that a suffix "-alpha" or "-beta" cause the version to be
considered before the string without such suffix: examples of version
numbers in order are:
0.9a < 0.9z < 0.10 < 1.0 < 1.1-alpha < 1.1-beta < 1.1 < 1.1a
This definition will even cope with the numbering scheme used by TeX and METAFONT which are "Pi" and "e" respectively. The definition can be extended to deal with version numbering schemes used by normal software, however it will never work correctly with the version numbers used by some software such as the CLC-INTERCAL compilers (where for example 0.26 < 1.26 < 0.27).
The subtree key indicates a directory inside the sources to use instead of the top level.
The version_filter key has the same format as if version and means that only project versions which make the condition true will be considered; for example
version_filter = >= 1.0 could indicate that versions of the project before 1.0 did not provide required functionality and will not be used.
Finally a line starting with the word block is special as it introduces multiple upstream definitions related to the same project; the file will be considered
divided into blocks, with the special "block" line separating them; the first block is used as "base" and concatenated with each of the subsequent blocks in
turn; when looking for a particular version of the project, the first block containing it will be used; for example, a simplified version of the "LMDB" project
contains:
vcs = git
block
repos = https://github.com/openldap/openldap
block
repos = https://github.com/LMDB/lmdb
This is equivalent to two separate upstream files, containing:
vcs = git
repos = https://github.com/openldap/openldap
and
vcs = git
repos = https://github.com/LMDB/lmdb
When asked for a particular version of LMDB, the program will look for it first in the OpenLDAP repository, and if not found in the LMDB repository (which contains only older versions up to 0.9.15). As a result, one can obtain any version available without having to know that they come from different places.
Another (fictional) example would be a project which switched from github to Fossil and at the same time did a bit of reorganisation of the sources:
# nothing here, the two parts have nothing in common!
block
vcs = fossil
repos = https://project.org/src/project
block
vcs = git
repos = https://github.com/some/project
subtree = PROJECT
The not-forking tool will then obtain the sources from git for older versions, looking inside the "PROJECT" directory for them; and for later versions use fossil instead, and look at the top of the directory checked out (if a version is available on both, the fossil one will be preferred because it is listed first).
Note that if one knows at which exact version number things changed it's also possible to use conditionals, however the --list-versions option will not
necessarily work correctly when using conditionals, while it works when using multiple blocks. If required, a version_filter can be added to one or more block
to make particular versions come from a particular source.
git
The upstream sources are available via a public git repository; the following keys need to be present:
repos(orrepository) is a valid argument to thegit clonecommand.- optionally,
branchto select a branch within the repository. - optionally,
versionto convert a version string to a tag: the value is either a single string which is prefixed to the version number, or two strings separated by space, the first one is prefixed and the second appended. - optionally,
version_from_branchto expose the tip of the named branch as a synthetic version. Requiresbranchto be set in the same block. The synthetic version name must start with a digit so thatversion_filterand version comparisons behave naturally. At lockfile-generation time the branch tip is resolved to a specific commit, recorded inupstream.lockjust like a tag-derived version, and used reproducibly by subsequent fetches. To pick up newer commits on the branch, regenerate the lockfile (for example withnot-fork --update). Useful for tracking upstream release-candidate or development branches that have not yet been tagged. - optionally,
userandpasswordcan be specified to obtain access to the repository (this is currently not implemented, all repositories must be accessible without authentication).
A software version can be identified by a generic git commit ID, or by a version string similar to the one described for the compare key, if the repository
offers that as an option.
fossil
The upstream sources are available via a public fossil repository; the following keys need to be present:
repos(orrepository) is a valid argument to thefossil clonecommand.- optionally,
versionto convert a version string to a tag: the value is either a single string which is prefixed to the version number, or two strings separated by space, the first one is prefixed and the second appended. - optionally,
userandpasswordcan be specified to obtain access to the repository (this is currently not implemented, all repositories must be accessible without authentication).
A software version can be identified by a generic fossil artifact ID, or by
a version string similar to the one described for the compare key, if the
repository offers that as an option.
download
The upstream sources are released as published versions and downloaded directly; the following keys need to be present:
source-xxxindicates where to obtain the source for a particular version; the value is a generic URL; thexxxneeds to be replaced by a valid version number. If the URL starts withfile:/the program will just use the local file specified, without attempting to access the network.sha###-xxxindicates that the downloaded file for versionxxxis expected to have the given sha-###checksum (###is normally one of 224, 256, 384 or 512); the checksum can be expressed in base64 or in hexadecimal. Older versions of not-forking might ignore this option and just trust the downloaded file to be correct.prefixindicates that a number of directories need to be removed from the unpacked file names, usually this will be 1 as tarballs start with a single directory named after the release and that contains all the files.
Not-forking uses the file command to figure out how to unpack
the sources, and then tar, gunzip, etc as necessary; a future version
may allow to control the process if the program cannot figure out what to
do with a particular download.
A full example for the download method follows:
vcs = download
source-1.3.1 = https://zlib.net/fossils/zlib-1.3.1.tar.gz
sha256-1.3.1 = mpOyt9/ax3zrpaVYpYDnRmfdb+3kWFuR7vtg8Dty3yM=
source-1.3.2 = https://zlib.net/fossils/zlib-1.3.2.tar.gz
prefix = 1
this means that the sources will be downloaded from the given URLs and version 1.3.1 will also be checked against the provided SHA-256 checksum.
Modification definition file
This file contains instructions for modifying files, followed by the data that the instructions can use to make the modifications. The data may be patches or complete file contents, and the instructions are operations such as "patch" or "replace".
There can be zero or more modification definition files in the configuration
directory; each file has a name ending in .mod and they are processed
in lexycographic order according to the "C" locale (rather than the current
locale, to guarantee consistent ordering). Note that only files are
considered; if the configuration directory contains subdirectories, these
are ignored, but files in there can be referenced by the .mod files.
The contents of each modification definition file are an initial part with format similar to the Upstream definition file described above ("key = value" pair, possibly with conditional blocks and conditions on the applicability of the whole file, which have a special format); this initial part ends with a line containing just dashes and the rest of the file, referred to as "final part", is interpreted based on information from the initial part.
The applicability conditions have the exact same format as the if which
introduces a conditional block, without the word if; the overall effect
is to ignore the whole file if the condition is false; refer to the discussion
of conditionals above for the precise syntax and meaning.
One use of the applicability conditions is to indicate that some modifications are only necessary up to a particular version, because for example that modification has been accepted by upstream and is no longer necessary; or that a modification is only necessary on a particular operating system; another use of these conditions is to identify versions in which substantial upstream changes make it difficult to specify a modification which works for every possible version.
If a file is modified by more than one modification definition file, the standard ordering of the files determine the order the modifications are applied; this means that anything which replaces a file with a whole new one (as the "replace" method described below does), this is normally in a file which is very early in the lexycographic order, as it would make no sense to put it at the end where it can undo any previous modifications.
The following key is currently understood:
method; the method used to specify the modification; the subsections of this section describe the possible different values.
Other keys are interpreted depending on the value of method.
the "patch" method
The final part of the modification definition file is in a format suitable for passing as standard input to the "patch" program; the following additional keys are understood in the initial part:
options: options to pass to the "patch" program (default: "-tNsp1")list: extra options to the "patch" program to list what it would do instead of actually doing it (this is used internally to figure out what changes; the default currently assumes the "patch" program provided by most Linux distributions, or the "gpatch" program available as a package for the BSDs).
the "fragment patch" method
The final part of the modification definition file is a series of patches which will be applied to sections of files rather than whole files; this may make it easier to provide a patch working on many versions of upstream sources by replacing the simple context (a few lines before and after the part to be modified) by a potentially more complex processing (for example, finding a particular function, or an easily identifiable block of code).
The fragment-diff tool can generate these starting from an "old" and a "new" version of a file and optionally a set of regular expressions which determine how to split a source into fragments.
Since this method uses the "patch" program on each fragment, it also accepts the same options as the "patch" method described above.
Fragment file grammar
The final part of a fragment_patch modification definition file is
a sequence of file blocks. Each file block names a source file and
contains zero or more fragments targeting it (a block with no
fragments, i.e. a PATH line followed immediately by -----, parses
without error but patches nothing). A fragment specifies a
region of that source file (anchored by regular expression) and a
unified-diff hunk body to apply within that region.
The grammar described here is what the parser in
lib/NotFork/Method/Fragment_patch.pm accepts. It is normally produced
by fragment-diff and edited by hand when necessary. The rules below
matter when hand-editing because the format has a few traps that the
parser cannot diagnose precisely.
Overall layout. Each file block has the shape:
``` PATH <- relative path of file to patch START <- anchor for first fragment, or word "start" END <- anchor for first fragment, or word "end" @@ -a,b +c,d @@ <- unified-diff hunk header context line -removed line +added line context line --- <- ends one fragment within the file START <- next fragment of the same file END @@ -a,b +c,d @@
... body ...
----- <- ends the file block; next line is next PATH ```
Successive file blocks follow one another with no blank line in between.
The final file block, like every other, must be closed by a -----
line; if the last ----- is omitted the parser reaches end-of-file
while expecting the next start anchor and aborts with Missing
start.
The two terminators. A line containing exactly --- ends a
fragment within the current file block. A line containing exactly
----- ends the file block as a whole; the next line, if any, is the
PATH of a new file block.
Anchors. Each fragment begins with two lines specifying the
start and end anchors that delimit the region within PATH. The
permitted form differs between the two, and the parser enforces the
difference:
- The bare word
start(orend) means "the start (or end) of the file". A fragment withstart/endas both lines patches the whole file. - A regex start anchor must have the form
/REGEX/ VALUE— the trailing value is mandatory. It matches the first line of the source where the line matchesREGEXand the first capture group$1equalsVALUE. The value disambiguates among several functions or structures that match the same general pattern, soREGEXmust contain a(...)capture group. A regex start with no value is a parse error (Invalid line (start)). - A regex end anchor must have the form
/REGEX/with no value. It matches the first line, after the start, whose text matchesREGEX. A value on an end anchor is a parse error (Invalid line (end)).
The start-anchor line is part of the patched region (it becomes the
first line of the fragment); the end-anchor line is not — it is
the first line after the region, so hunk context must stop before it.
The example below relies on this: the end anchor }; does not appear
in the hunk, whose last context line is u16 nKeyField;.
Example start anchor:
/(?^:^struct\s+(KeyInfo)\s*\{)/ KeyInfo
The (?^:...) form is what fragment-diff emits (it interpolates a
stringified Perl qr//); a plain /^struct\s+(KeyInfo)\s*\{/ KeyInfo
is also accepted.
Hunk body. Between the END anchor line and the next ---
terminator the body is a unified-diff hunk: a @@ -a,b +c,d @@ header
followed by lines beginning with one of , +, or - for context,
addition, and deletion respectively.
The hunk is applied by not-forking's own in-tree applier (it no longer
shells out to patch(1), so the patch program is not required for
the fragment_patch method). The applier locates a hunk by matching
its old-image -- the context and deletion lines, in order, each
compared by exact byte content including the trailing newline -- inside
the fragment that the anchors selected, then splices in the new-image.
There is no fuzz, no offset search, and no whitespace tolerance: the
result depends only on the fragment bytes and the hunk bytes, and is
the same on every platform.
The line counts a/b/c/d in the @@ header are advisory; the
applier matches by content and uses the header only in diagnostics.
A hunk whose old-image cannot be found in the fragment is reported as
no match for hunk together with the closest near-miss (the nearest
fragment lines and how they differ from what the hunk expected); a
hunk whose old-image is found in more than one place is reported as
ambiguous match with the competing fragment line numbers, and should
be given more context. Both diagnostics name the recipe, file, and
anchors rather than a hunk number. Because matching no longer depends
on patch's fuzz, a hunk that only ever applied because patch was
silently fuzzing over drifted context will now fail loudly here -- this
is intended; the fragment should be regenerated against the current
upstream. Drift outside the fragment is still absorbed, because the
anchors relocate the fragment regardless of how far it has moved.
Multiple fragments per file. A file block may contain any number
of fragments, each with its own pair of anchors and its own hunk body.
The second and later fragments do not repeat the PATH line; only
the START/END/body/--- cycle is repeated. The file block is
closed by a ----- line in place of the next START.
``` src/sqliteInt.h /(?^:^structs+(KeyInfo)s*{)/ KeyInfo /(?^:^};)/ @@ -1,4 +1,9 @@ struct KeyInfo { u32 nRef; u8 enc; +#ifdef LUMO_EXTENSIONS
- /* LumoSQL: bit flags consumed by lumoExtensionAdd/Present. */ +# define LUMO_KI_HASROWID 0x01
- u8 lumoFlags; +#endif u16 nKeyField; --- ----- ```
Whitespace escapes in anchor values. The VALUE after a start
regex is the final whitespace-separated token on the line (the parser
captures it with (\S+)$, taking the regex to be everything up to the
last / that is followed by whitespace and that token); if a value
needs to contain whitespace, it must be encoded as \xNN hex escapes
so that it remains a single token. Whitespace inside the regex itself,
by contrast, is part of the regex and not escaped. The escape
convention is also used in the surrounding upstream/modification file
format generally; see the quote and unquote helpers in
Fragment_patch.pm.
Traps when hand-editing.
- A blank line between a fragment's
---and the file block's closing-----is parsed as a malformedstartanchor and producesInvalid line (start):at that line. Do not leave blank lines between fragments. - The
---that closes a fragment body looks like a removal line at a glance; do not count it as part of the hunk body when computingbfor@@. - An attempt to introduce a comment line inside the body will be read as patch input. The format has no comment syntax in the body.
- The
startandendkeywords are case-sensitive;START/ENDshown above are placeholders for the actual anchor lines.
the "replace" method
This method indicates that one or more files in the upstream must be completely replaced; the final part of the file contains one or more lines with format "old-file = new-file", where both are relative paths, the first relative to the root of the extracted upstream sources; the second path is relative to the configuration directory.
There are no special options in the initial part of the modification specification file.
the "append" method
This method indicates that some extra text needs to be appended to an existing file; the final part is one or more blocks, separated by lines of dashes; the block starts with a file name (relative to the root of the extracted upstream sources) followed by the text to add; if a line containing just dashes needs to be added, prepend a single dash and space, for example to add the line "----" specify it as "- ----".
There are no special options in the initial part of the modification specification file.
the "sed" method
This method uses a sed-like set of replacements, with the final part of the file
containing likes with format "file-glob: regular-expression = replacement".
By default the regular expression runs up to the first space or equal sign;
to include spaces or equal signs in it, wrap the whole regular expression in
single (') or double (") quotes. The replacement is always done on the whole
file at once.
There are no special options in the initial part of the modification specification file.
Example Configuration directory
This set of files obtains SQLite sources and replaces btree.c and btreeInt.h
with the ones from sqlightning, applying a patch to vdbeaux.c and adding
a line at the end of the (original) btree.h
File upstream.conf:
vcs = git
repos = https://github.com/sqlite/sqlite.git
File btree.mod:
method = replace
--
src/btree.c = files/btree.c
src/btreeInt.h = files/btreeInt.h
File vdbeaux.mod:
method = patch
--
--- sqlite-git/src/vdbeaux.c 2020-02-17 19:53:07.030886721 +0100
+++ new/src/vdbeaux.c 2020-03-21 13:52:24.861586555 +0100
@@ -2778,7 +2778,7 @@
for(i=0; i<db->nDb; i++){
Btree *pBt = db->aDb[i].pBt;
if( sqlite3BtreeIsInTrans(pBt) ){
- char const *zFile = sqlite3BtreeGetJournalname(pBt);
+ char const *zFile = BackendGetJournal(pBt);
if( zFile==0 ){
continue; /* Ignore TEMP and :memory: databases */
}
File btree.h.mod:
method = append
--
src/btree.h
#include "lumo-btree-additions.h"
Files files/btree.c and files/btreeInt.h: the entire files with new contents.
A more complete example can be found in the LumoSQL directory "not-fork.d/sqlite" which tracks upstream updates from SQLite.
Not-forking tool
The tool directory contain a script, not-fork which runs the not-forking
mechanism on a directory. Usage is:
not-fork \[OPTIONS\] \[NAME\]...
where the following options are available:
--config FILE(or--config=FILE) specifies a configuration file to load before processing any other options. If specified, this must be the first option, and the file must exist; if not specified, the program looks for a configuration file in a standard location and reads it if found (but does not produce an error if not found).-iINPUT_DIRECTORY (or--input=INPUT_DIRECTORY) is a not-forking configuration directory as specified in this document; default isnot-fork.dwithin the current directory-oOUTPUT_DIRECTORY (or--output=OUTPUT_DIRECTORY) is the place where the modified upstream sources will be stored, and it can be either a directory created by a previous run of this tool, or a new directory (missing or empty directory); default issourceswithin the current directory; note that existing sources in this directory may be overwritten or deleted by the tool-kCACHE_DIRECTORY (or--cache=CACHE\_DIRECTORY) is a place used by the program to keep downloads and working copies; it must be either a new (missing or empty) directory or a directory created by a previous run of the tool; default is.cache/LumoSQL/not-forkinside the user's home directory-vVERSION (or--version=VERSION) will retrieve the specified VERSION of the next NAME (this option must be repeated for each NAME, in the assumption that different projects have different version numbering)-cCOMMIT_ID (or--commit=COMMIT_ID) is similar to-vbut only works for version control modules which support commit identifiers, and will retrieve the corresponding commit for the next NAME, whether or not it has an official version number; this is incompatible with-v-q(or--query) completes all necessary downloads but does not extract the sources and apply modifications, instead it shows some information about what has been downloaded, including a version number if available.--list-versionscompletes all necessary downloads but does not extract the sources and apply modifications, instead it shows all the version numbers known (these can be used as argument to-v/--version).--metadatasimilar to--list-versionsbut also includes extra information: type of source (git,fossil, etc.), source URL, commit ID, commit time (any information which does not apply will be reported as a single-)--version-range=SPEC similar to--list-versionsbut only shows versions within a range; SPEC is either a single version (shows just that version if known) orMIN:MAXwhere either side may be empty to leave that end of the range unbounded (for example1.0:shows all versions from 1.0 onwards,:2.0all versions up to 2.0, and1.0:2.0all versions between the two inclusive)--verbose=LEVEL changes the number of messages produced; higher numbers may be good for debugging, but may provide a confusing amount of information;--quietis an alias for--verbose=0 and disables any messages except fatal errors.--updateasks to connect to network and request updates to any repositories needed to complete the requested operation; this is the default-n(or--no-update) asks to avoid updating repositories which are already cached; if the version requested is newer than the last update, the operation will fail--offlineprohibits any network access; if data required is not available in a local cache, the operation will fail--onlineallows the program to connect to network when data is not available in a local cache; this is the default behaviour unlessofflineis specified in the configuration file--check-version=VERSION checks that the not-fork tool itself is at least the version specified; it exits with status OK if so, otherwise it exits with a failure status and produces its version number on standard output. No other processing happens when this option is specified.--find-version=VERSION[:TO_VERSION] checks that the not-fork tool itself is at least version VERSION and at most TO_VERSION (if specified); if so, it prints the path to its own executable; if not in range, it will attempt to obtain a suitable version from its own sources and prints the path to a command to call that. The output can be composed of multiple lines, these will be the command and arguments to use to call the correct version.--use-version=VERSION[:TO_VERSION] checks that the not-fork tool itself is at least version VERSION and at most TO_VERSION (if specified); if so, it continues as normal; if not, it will attempt to obtain a suitable version from its own sources and runs it with the remaining command-line arguments; some command-line arguments will still be processed, for example to find where to keep these sources.-V(or--my-version) prints the version of the program itself and exits (the--versionoption is already used to select a version of a package to extract)--check-prereqchecks dependencies necessary to download and install the required sources; for example this could check for the presence ofgitorfossilif these are required for the operation; prints the list of anything missing--check-recommendis similar to--check-prereqexcept that it looks for any dependency which could possibly be needed to use the program; for example this could check forfossileven if the current project only needsgit--list-cachelists a summary of what is kept in the cache--remove-cache=NAME removes the named cache entry, which can be provided as the cache hash (first column of the output of--list-cache) or as the URL (second column of the output of--list-cache)--local-mirror=DIRspecifies a directory to search for downloads before contacting the network; it is used directly by thedownloadmethod (which looks for the basename of the source URL inside the directory), and it is also the base directory against which asrcmirrorsetting in the upstream configuration is resolved, which can avoid access to a VCS: if the resulting path is an existing file it will be unpacked (as done by thedownloadmethod) instead of requesting the sources from the VCS, and if it is a directory it will be considered as already unpacked and used directly. The$C,$Vand$$substitutions are a feature of thesrcmirrorvalue, not of this option; see thesrcmirrorkey in the upstream definition file. The option can be repeated to search more than one directory.--use-upstream-lockand--build-upstream-lockare options to "lock" the correspondence between a version and a commit ID in the corresponding version control system; which means that if the tags change the tool will retrieve the same commit; more discussion about this will need to be added in a separate section.--build-json-lock=FILEcreates a list (in json format) of all known version numbers and includes information on how to obtain these, by specifying the vcs and commit ID or the download URL and checksum.--prefer-tarball=URLinstructs `--build-json-lockto prefer a tarball download over a VCS access for the next source listed in the command line (this option, like --version, resets to default after each source); currently, this only applies tofossilrepositories, and is a no-op fordownloadas that already has only tarballs; ifURLis an empty string, constructs one in the "normal" way from the repository URL.--distribution=DIRspecifies a directory in which tarballs generated by--prefer-tarballwill be stored; without this option, these tarballs are generated in memory or a temporary file, and deleted once the checksums have been calculated; with this option, these tarballs are kept, and if they are found already in the directory they are not regenerated. It is also possible to serve (a copy of) the directory to distribute the tarballs, or use it as--local-mirrorin a later run; this option applies to the next source and is cleared after each source.--filehash=ELEMENT:HASHspecifies that the file hash for any generated tarballs be stored in the json lock file as elementELEMENTand calculated as described byHASH: this can be either a program and optional arguments, which will be called as needed with one extra argument, the file to checksum; orHASHcan have the formbuiltin:ALGORITHMto use a pre-defined algorithm (currently one ofsha224,sha256,sha384orsha512). This option applies only to the next source, and is cleared after each source; default is to not generate a file hash. Each source can have only one hash, so if--filehashis specified for a source,--dirhash(described below) cannot be specified for that source.--dirhash=ELEMENT:HASHworks similarly to--filehashbut unpacks the tarball into a temporary directory and calculates a directory hash for it; there are currently no predefined built-in hashes, soHASHmust be a program with optional arguments.
If neither VERSION nor COMMIT_ID is specified, the default is the latest available version, if it can be determined, or else an error message. If more than one NAME is specified, VERSION and COMMIT_ID need to be provided before each NAME: the assumption is that different software projects use different version numbers.
If one or more NAMEs are specified, the tool will obtain the upstream
sources as described in INPUT_DIRECTORY/NAME for each of the NAMEs
specified, and attempt to apply all the required modifications; if that
succeeds, OUTPUT_DIRECTORY/NAME will contain the modified sources ready
to use; if that fails, an error message will explain the problem and if
possible suggest corrective action (for example, if patch determines
that a file has changed too much that it cannot figure out how to apply
a patch supplied, the error message will indicate this and suggest to
obtain a new patch for that version of the sources).
If no NAMEs are specified, the tool, will process all subdirectories of INPUT_DIRECTORY. In this special case, any VERSION or COMMIT_ID specified will apply to all rather than just the name immediately following them.
The program will refuse to overwrite the output directory if it cannot determine that it has been created by a previous run and that files have not been modified since; in this case, delete the output directory completely, or rename it to something else, and run the program again. There is currently no option to override this safety feature.
The tools reads a configuration file if one is provided bu the --config
command-line option, or if none is specified, it will look for one at
$HOME/.config/LumoSQL/not-fork.conf and reads it if it exists; in this
file, any non-comment, non-empty lines are processed before any command-line
options with an implicit -- prepended and with spaces around the first =
removed, if present: so for example a file containing:
cache = /var/cache/LumoSQL/not-fork
would change the default cache from .cache/LumoSQL/not-fork in the user's
home directory to the above directory inside /var/cache; it can still
be overridden by specifying -k/--cache on the command line.
Note that the --config option is handled specially, and it must be the
first option on the command line; in particular, config is not valid
in the configuration file itself (it would be too late to specify a
different file).
To help testing the tool, a special option --test-version=DIRECTORY can
only appear in the configuration file, not the command line, and tells the
tool to run the program and libraries found in that directory instead of
itself: the directory is expected to be a working copy such as obtained
from fossil.
We plan to add logging to the not-forking tool, in which all messages are written to a log file (under control of configuration), while the subset of messages selected by the verbosity setting will go to standard output; this will allow us to increase the amount of information provided and make it available if there is a processing error; however in the current version this is just planned, and not yet implemented.
The tool may need to access the network to obtain sources; this can be stopped in two ways:
adding
offlineto the configuration file, or specifying--offlinein the command line prohibits access to the network; this may result in an operation failing with an error, where the message mentions--offlineto suggest why it stopped; this can be overridden with--onlinein the command line.adding
no-updateto the configuration file, or specifying--no-updatein the command line will use a local cached repository if available; this will normally be sufficient, however asking for a version newer than the last update will fail; the default behaviour can be restored by adding--updateto the command line, which will contact the remote server to see if an update is available and download it if so.
There is a plan to add a time-based default if neither --update nor
--no-update is specified (in the command line or in the configuration
file): instead of always defaulting to --update, the tool would check
the time of the last ypdate, and default to --no-update if that time
is "recent"; this is not yet implemented, and also we need to decide what
"recent" actually means in this context.
Running fully offline
When --offline --no-update is supplied the tool never contacts the
network, but it still needs a cache entry containing the upstream's
repository and a working checkout. If no such entry exists for the
upstream URL the run aborts with Would need to clone <url>. The
cache layout is therefore documented here so the entry can be
constructed from a local copy of the upstream repository.
Cache layout. Under the cache root (the --cache/-k directory,
default $HOME/.cache/LumoSQL/not-fork), each upstream URL is mapped
to a directory whose name is
substr(sha512_hex(URL), 42, 32)
i.e. a 32-character substring of the lowercase-hex SHA-512 of the URL,
starting at offset 42. (The function is cache_hash in
lib/NotFork/Get.pm.) Inside that directory:
index— a single line containing the upstream URL exactly as thereposline inupstream.confgives it. The tool writes a trailing newline when it creates this file but tolerates either form on read; the line's contents must equal the configuredreposURL.db— the cloned VCS database (Fossil only; see below for Git).vcs/— a working checkout opened againstdb(Fossil only).
Fossil constraint. When the upstream uses vcs = fossil,
lib/NotFork/VCS/Fossil.pm additionally checks that the fossil
remote URL recorded inside the checkout equals the configured repos
URL. If it does not, the run aborts with Inconsistent cache: <url> //
<configured>. The remote URL must be set to the repos value before
the entry can be used, regardless of where the repository was actually
cloned from.
Seeding a Fossil entry from a local clone. The shell sequence below produces a usable entry for an upstream that uses Fossil (SQLite is the worked example):
REPOS="https://sqlite.org/src" # must match upstream.conf
HASH=$(perl -MDigest::SHA=sha512_hex \
-e 'print substr(sha512_hex($ARGV[0]), 42, 32)' "$REPOS")
D="$HOME/.cache/LumoSQL/not-fork/$HASH"
mkdir -p "$D/vcs"
printf '%s' "$REPOS" > "$D/index" # newline optional
cp /path/to/local-clone.fossil "$D/db"
( cd "$D/vcs" && fossil open "$D/db" --force && fossil remote "$REPOS" )
After this, not-fork --offline --no-update -v VERSION NAME runs
without contacting the network, provided the requested version is
already known to the repository in db.
Git entries use a different on-disk shape under the same hashed
directory: <entry>/index as above, and <entry>/main_clone/ as a
regular (non-bare) clone of the upstream with its own .git/
subdirectory. The db file and vcs/ directory documented above for
Fossil do not exist. lib/NotFork/VCS/Git.pm enforces the same
remote-URL equality check as Fossil, using git config --get
remote.origin.url against the configured repos; a mismatch aborts
the run with the same Inconsistent cache message. The simplest way
to seed a Git entry is therefore to do an initial online run (which
populates index and clones into main_clone/); subsequent runs can
then proceed --offline --no-update. A by-hand seed is also possible:
create <entry>/index with the URL and place a git clone
--no-checkout REPOS <entry>/main_clone of the upstream alongside it.
Diagnosing offline failures. A failure under --offline reports
the clone URL but not the cache entry it consulted; the entry can be
located by hashing the URL with the formula above. A future release
is expected to widen the diagnostic; see
NOT-FORK-REQUIREMENTS.md for the requirement.
Fragment-diff tool
This command-line tool can help generating files for the "fragment_patch" modification method; the generic usage is:
fragment-diff \[OPTIONS\] OLD NEW NAME \[OLD NEW NAME\]...
where OLD and NEW are the two files to compare, and NAME is the name
which will be written in the fragment patch; so for example:
fragment-diff orig/vdbe.c new/vdbe.c src/vdbe.c orig/pragma.c new/pragma.c src/pragma.c
will compare two files in the orig and new directories, and emit a fragment
patch to convert the orig one into the new one; the patch itself will refer
to the files as though they are found in the src directory (this command is
actually what generated the file vdbe-changes.mod in LumoSQL).
The following options are currently accpted by the program:
-h-?--helpBrief summary of command-line options-oFILE--output=FILEOutput the fragment patch toFILE(default: standard output)-a--appendAppend to the file specified by-orather than overwriting it; specifying-awithout-ois an error (Cannot specify -a without -o)-x LINE--extra=LINEAddLINEto the initial part of the generated fragment patch; this can be used to add extra options to a modification specification file; this is ignored when appending, as the initial part of the file will not be rewritten; this option can be repeated to add more than one line-v--versionShow the program's version-tFILE--template=FILEReads patterns fromFILE: see below for more information-bNAME--builtin-template=NAMEReads patterns from the tool's own library, looking for the one identified byNAME: see below for more information--verboseMention files which do not differ at all; without this option, they are silently ignored
The tool requires patterns to split the files into fragments; by default, if no patterns are provided, this will consider the whole file as a single fragment, and the output will be similar to the one produced by the standard "diff" program.
Patterns can be added by using -b to add all patterns from the program's
own library, or -t to add them from a file; currently, the program's
own library is empty, but there are plans to develop patterns for common
cases like splitting C programs into functions. These two options can
be repeated as many times as they are required.
To add patterns with -t just list regular expressions, one per line,
in the file (comments starting with # and blank lines are ignored);
a fragment starts on each line in the file which matches the pattern;
each pattern must contain a captured sub-pattern which will be used to
identify it if it occurs more than once: for example the pattern:
^((?:static\s+)?(?:void|int)\s+\S+)\b
will match lines like:
static void func1(int a, int b);
int func2(void);
and the captured sub-patterns will be:
static void func1
int func2
respectively: these will identify these two functions even though the pattern is likely to match many more lines in a C program source.
Another tool, fragment-patch, can be used to apply the output of this
tool directly, rather than as part of the extraction of upstream sources;
call it using:
fragment-patch \[OPTIONS\] PATCH_FILE [PATCH_FILE]...
Updates all files mentioned in any of the PATCH_FILEs provided (note
that this overwrites the original files, just like the standard
"patch" program). Options are:
-h-?--helpBrief summary of command-line options-dDIR--dir=DIRLooks for files to patch inDIRrather than the current directory-v--versionShow the program's version