Remove outdated license text. See COPYING and the description at http://liero.be/ for more information. --- a/data/LIEROENG.TXT +++ b/data/LIEROENG.TXT @@ -11,14 +11,6 @@ ----------------------------------------------------------------------------- GENERAL STUFF - - Liero is freeware. What that means is that you don't have to pay - for it and using it has not been restricted in any way. You may - distribute it to anyone and anyhow WITHOUT ANY CHANGES MADE TO IT'S - CONTAINMENTS. - - The source code of this game is not distributed freely (neither - commercially). So if you thought that maybe you could... forget it. Liero is a wormgame with weapons for 2 players. The object of the game is definately what you think it is. Liero is excellent for --- a/data/LIERO.TXT +++ b/data/LIERO.TXT @@ -12,15 +12,6 @@ YLEISTŽ - Liero on freeware, mik„ tarkoittaa ett„ sen k„yt”st„ ei tarvitse - maksaa mit„„n eik„ k„ytt”„ ole rajoitettu mitenk„„n. Lieroa saa - kopioida kelle tahansa ja miten tahansa SISŽLT™Ž MITENKŽŽN - MUUTTAMATTA. - - Todettakoon t„ss„ ett„ Lieron l„hdekoodi ei ole vapaassa (sen - enenp„„ kuin kaupallisessakaan) jakelussa. Joten jos ajattelit - ett„... niin j„t„ ajatukset sikseen. - Liero on kahden pelattava aseellinen matosimulaatiopeli. Pelin p„„m„„r„n„ on ep„ilem„tt„ se mit„ luuletkin. Liero sopii erinomaisen hyvin aggressioiden purkuun ja kaverin rokitt„miseen edacaf4f66465990e7'>diff
path: root/build-aux/cuirass/evaluate.scm
AgeCommit message (Expand)Author
2022-05-26cuirass: Create just as many threads as needed....* build-aux/cuirass/evaluate.scm (command-line): Change second argument to 'n-par-for-each'. Ludovic Courtès
2022-05-26cuirass: Fork inferior processes before creating threads....Works around <https://issues.guix.gnu.org/55441#12>. Start from commit bd86bbd300474204878e927f6cd3f0defa1662a5, 'open-inferior' uses 'primitive-fork' instead of 'open-pipe*'. As a result, child process could potentially hang before calling 'execl' due to undefined behavior when forking a multi-threaded process. * build-aux/cuirass/evaluate.scm <top level>: Call 'open-inferior' before 'n-par-for-each'. Ludovic Courtès
2022-05-20cuirass: Close each inferior upon completion....* build-aux/cuirass/evaluate.scm <top level>: Add 'close-inferior' call. Ludovic Courtès
2021-03-10ci: Remove hydra support....This removes hydra support to use Cuirass as the only continuous integration system. * build-aux/hydra/gnu-system.scm: Remove it. * build-aux/hydra/guix-modular.scm: Ditto. * build-aux/hydra/guix.scm: Ditto. * build-aux/cuirass/hydra-to-cuirass.scm: Ditto. * Makefile.am (EXTRA_DIST): Update it. (hydra-jobs.scm): Remove it. (cuirass-jobs.scm): Update it. * build-aux/hydra/evaluate.scm: Move it to ... * build-aux/cuirass/evaluate.scm: ... here. * build-aux/cuirass/guix-modular.scm: Remove it. * build-aux/cuirass/gnu-system.scm: Ditto. * guix/packages.scm (%hydra-supported-systems): Rename it to ... (%cuirass-supported-systems): ... this variable. * build-aux/check-final-inputs-self-contained: Adapt it. * etc/release-manifest.scm: Ditto. * gnu/ci.scm (package->alist): Remove it. (derivation->job): New procedure. (package-job, package-cross-job, cross-jobs, image-jobs, system-test-jobs, tarball-jobs): Use it. (guix-jobs): New procedure. (hydra-jobs): Rename it to ... (cuirass-jobs): ... this procedure. Mathieu Othacehe