diff --git a/engine/ibus-engine-table.in b/engine/ibus-engine-table.in index e79d62a6cad4..675007204abd 100644 --- a/engine/ibus-engine-table.in +++ b/engine/ibus-engine-table.in @@ -24,8 +24,6 @@ prefix=@prefix@ exec_prefix=@prefix@ datarootdir=@datarootdir@ datadir=@datadir@ -export IBUS_TABLE_LOCATION=@datarootdir@/ibus-table -export IBUS_TABLE_LIB_LOCATION=@libexecdir@ # Set this variable to something > 0 to get more debug output. # (Debug output may show up in the log file and/or in the lookup table): diff --git a/engine/ibus-table-createdb.in b/engine/ibus-table-createdb.in index 91eb28b7cbe5..187dddf2c952 100644 --- a/engine/ibus-table-createdb.in +++ b/engine/ibus-table-createdb.in @@ -24,6 +24,4 @@ exec_prefix=@exec_prefix@ bindir=@bindir@ datarootdir=@datarootdir@ datadir=@datadir@ -export IBUS_TABLE_DATA_DIR=@datarootdir@ -export IBUS_TABLE_BIN_PATH=@bindir@ exec @PYTHON@ @datarootdir@/ibus-table/engine/tabcreatedb.py $@ diff --git a/setup/ibus-setup-table.in b/setup/ibus-setup-table.in index 7f7405c37296..ae6f96921c56 100644 --- a/setup/ibus-setup-table.in +++ b/setup/ibus-setup-table.in @@ -22,9 +22,6 @@ prefix=@prefix@ exec_prefix=@exec_prefix@ datarootdir=@datarootdir@ -export IBUS_PREFIX=@prefix@ -export IBUS_DATAROOTDIR=@datarootdir@ -export IBUS_LOCALEDIR=@localedir@ cd @prefix@/share/ibus-table/setup/ exec @PYTHON@ main.py $@ d4fb3899c115377'>commitdiff
path: root/tests/guix-pack.sh
AgeCommit message (Expand)Author
2022-05-25tests: Fix wrong target triplets....* tests/gexp.scm (ungexp + ungexp-native, input list + ungexp-native, input list splicing + ungexp-native-splicing, gexp list splicinng + ungexp-splicing, gexp->derivation, cross-compilation, gexp->derivation, ungexp-native, gexp->derivation, ungexp + ungexp-native, gexp->derivation, ungexp-native + composed gexps): Change mips64el-linux to mips64el-linux-gnu. * tests/guix-pack.sh: Change arm-unknown-linux-gnueabihf to arm-linux-gnueabihf. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org> Josselin Poiret
2022-02-18profiles: 'profile-derivation' rejects unsupported packages....Previously user-facing commands would happily start building packages even if they do not support that system. With this change, all the user-facing commands reject unsupported packages without going further. * guix/profiles.scm (profile-derivation): Add #:allow-unsupported-packages?. Define 'check-supported-packages' and honor #:allow-unsupported-packages?. * tests/guix-pack.sh, tests/guix-package.sh, tests/guix-shell.sh: Ensure that unsupported packages are rejected. * tests/guix-system.sh: Pass "--system=armhf-linux" when attempting to build gnu/system/examples/asus-c201.tmpl. Ludovic Courtès
2020-09-28tests: Simplify shell exit status negation;...* tests/guix-archive.sh, tests/guix-build-branch.sh, tests/guix-build.sh, tests/guix-daemon.sh, tests/guix-download.sh, tests/guix-environment.sh, tests/guix-gc.sh, tests/guix-git-authenticate.sh, tests/guix-graph.sh, tests/guix-hash.sh, tests/guix-lint.sh, tests/guix-pack-relocatable.sh, tests/guix-pack.sh, tests/guix-package-aliases.sh, tests/guix-package-net.sh, tests/guix-package.sh: Use the shell '!' keyword to negate command exit status in place of 'if ...; then false; else true; fi' Eric Bavier
2020-05-14store: 'mapm/accumulate-builds' preserves '%current-target-system'....Fixes <https://bugs.gnu.org/41182>. * guix/store.scm (mapm/accumulate-builds): Pass #:system and #:target to 'run-with-store'. * tests/store.scm ("mapm/accumulate-builds, %current-target-system"): New test. * tests/guix-pack.sh: Add 'guix pack -d --target' test. Ludovic Courtès
2020-03-31pack: Adjust test to '--dry-run' changes....This is a followup to 131f50cdc9dbb7183023f4dae759876a9e700bef. * tests/guix-pack.sh: Use '--no-grafts' in conjunction with '-n' and '-d'. Ludovic Courtès