aboutsummaryrefslogtreecommitdiff
path: root/etc/guix-publish.conf.in
diff options
context:
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2021-08-17 09:52:22 +0300
committerEfraim Flashner <efraim@flashner.co.il>2022-01-31 09:22:49 +0200
commite217174b7b9046658ac3474d522bde192e9cffb4 (patch)
tree6dc242b722c79074b69ae8aefaa50df55fe08487 /etc/guix-publish.conf.in
parent43dd34c7777a212c99a97da7a2c237158faa9a1b (diff)
downloadguix-e217174b7b9046658ac3474d522bde192e9cffb4.tar.gz
guix-e217174b7b9046658ac3474d522bde192e9cffb4.zip
gnu: texlive-bin: Fix building on riscv64-linux.
* gnu/packages/tex.scm (texlive-bin)[arguments]: Adjust configure-flags for riscv64-linux to skip luajit based binaries. Add phase to skip some tests.
Diffstat (limited to 'etc/guix-publish.conf.in')
0 files changed, 0 insertions, 0 deletions
ANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with GNU Guix. If not, see <http://www.gnu.org/licenses/>. # # Test the 'guix graph' command-line utility. # module_dir="t-guix-graph-$$" mkdir "$module_dir" tmpfile1="$module_dir/t-guix-graph1-$$" tmpfile2="$module_dir/t-guix-graph2-$$" trap 'rm -r "$module_dir"' EXIT cat > "$module_dir/foo.scm"<<EOF (define-module (foo) #:use-module (guix packages) #:use-module (gnu packages base)) (define-public dummy (package (inherit hello) (name "dummy") (version "42") (synopsis "dummy package") (description "dummy package. Only used for testing purposes."))) EOF guix graph --version for package in guile-bootstrap coreutils python do for graph in package bag-emerged bag bag-with-origins do guix graph -t "$graph" "$package" | grep "$package" done done guix build guile-bootstrap guix graph -t references guile-bootstrap | grep guile-bootstrap guix graph -e '(@ (gnu packages bootstrap) %bootstrap-guile)' \ | grep guile-bootstrap guix graph -e + && false # Try passing store file names. guix graph -t references guile-bootstrap > "$tmpfile1" guix graph -t references `guix build guile-bootstrap` > "$tmpfile2" cmp "$tmpfile1" "$tmpfile2" # XXX: Filter the file names in the graph to work around the fact that we get # a mixture of relative and absolute file names. guix graph -t derivation coreutils > "$tmpfile1" guix graph -t derivation `guix build -d coreutils` > "$tmpfile2" cmp "$tmpfile1" "$tmpfile2" # Try package transformation options. guix graph git | grep 'label = "openssl' guix graph git --with-input=openssl=libressl | grep 'label = "libressl' guix graph git --with-input=openssl=libressl | grep 'label = "openssl' && false # Try --load-path guix graph -L $module_dir dummy | grep 'label = "dummy' # Displaying shortest paths (or lack thereof). guix graph --path emacs vim && false path="\ emacs cairo gobject-introspection libffi" test "`guix graph --path emacs libffi | cut -d '@' -f1`" = "$path" # At the derivation level, there's a direct path because libffi is propagated # via gtk+. test "`guix graph --path -t derivation emacs libffi | wc -l`" -ge 2