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 ht' method='get' action='/guix/log/tests/guix-build.sh'>
path: root/tests/guix-build.sh
AgeCommit message (Expand)Author
2023-08-17ui: 'load*' accepts /dev/fd/N files pointing to a pipe....This allows users to write Bash commands like: guix time-machine -C <(echo %default-channels) -- ... or: guix build -m <(echo '(specifications->manifest (list "guile"))') Previously, on GNU/Linux, they would fail with: error: failed to load '/dev/fd/63': No such file or directory * guix/ui.scm (try-canonicalize-path): New procedure. (load*): Use it. * tests/guix-build.sh: Test 'guix build -m' with a /dev/fd/N file. Ludovic Courtès
2023-04-28tests: guix-build.sh: Don't use hidden gcc for transformation tests....* tests/guix-build.sh: Do not try to rewrite gcc, it is hidden and so will not be rewritten, as per eee95b5a879b7096dffd533f24107cf8926b621e. Instead, try to build grep with coreutils rewritten to hello. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Josselin Poiret
2023-04-21tests: Fix checks for expected failures....Addresses <https://issues.guix.gnu.org/62406>. With 'set -e', a return status inverted with '!' does not cause the shell to exit immediately. Instead use '&& false' to indicate an expected failure. * tests/guix-archive.sh, tests/guix-build-branch.sh, tests/guix-build.sh, tests/guix-daemon.sh, tests/guix-download.sh, tests/guix-environment-container.sh, tests/guix-environment.sh, tests/guix-gc.sh, tests/guix-git-authenticate.sh, tests/guix-graph.sh, tests/guix-hash.sh, tests/guix-home.sh, tests/guix-pack-relocatable.sh, tests/guix-pack.sh, tests/guix-package-aliases.sh, tests/guix-package-net.sh, tests/guix-package.sh, tests/guix-refresh.sh, tests/guix-shell.sh, tests/guix-style.sh, tests/guix-system.sh: Replace uses of '! ...' with '... && false' or `test ! ...` as appropriate. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Eric Bavier