Skip to content

Instantly share code, notes, and snippets.

This file has been truncated, but you can view the full file.
starting phase `set-SOURCE-DATE-EPOCH'
phase `set-SOURCE-DATE-EPOCH' succeeded after 0.0 seconds
starting phase `set-paths'
environment variable `PATH' set to `/gnu/store/j65q3aw414010gdfvmsynwpzfb2jyyd3-cmake-minimal-3.21.4/bin:/gnu/store/8h5viwhsa23inp1jdcs78x6bacxgcgzs-qtbase-6.3.1/bin:/gnu/store/i69wl6dqwrw2kwzcggkv9kskibqjvbfk-ninja-1.10.2/bin:/gnu/store/m0hqyvj8di41xlraz087kmpr38zaw90r-xvfb-run-1.20.11-1/bin:/gnu/store/g2ajyl8xk9aarxrgjbng2hkj3qm2v0z2-tar-1.34/bin:/gnu/store/iixwcv3k49ks1rf34pjgfzmzyhhgwng3-gzip-1.10/bin:/gnu/store/s3hl12jxz9ybs7nsy7kq7ybzz7qnzmsg-bzip2-1.0.8/bin:/gnu/store/c8isj4jq6knv0icfgr43di6q3nvdzkx7-xz-5.2.5/bin:/gnu/store/4ic6244i3ca4b4rxc2wnrgllsidyishv-file-5.39/bin:/gnu/store/ahmmvw21p11ik80lg1f953y7fd8bqkjm-diffutils-3.8/bin:/gnu/store/z39hnrwds1dgcbpfgj8dnv2cngjb2xbl-patch-2.7.6/bin:/gnu/store/39rsx3nl4c31952jybbjb8d6idr5hx7r-findutils-4.8.0/bin:/gnu/store/690qz3fg334dpwn3pn6k59n4wc943p2b-gawk-5.1.0/bin:/gnu/store/wxgv6i8g0p24q5gcyzd0yr07s8kn9680-sed-4.8/bin:/gnu/store/xjwp
starting phase `configure'
source directory: "/tmp/guix-build-cling-0.9-1.d78d1a0.drv-0/source" (relative from build: "../source")
build directory: "/tmp/guix-build-cling-0.9-1.d78d1a0.drv-0/build"
running 'cmake' with arguments ("../source" "-DCMAKE_BUILD_TYPE=Release" "-DCMAKE_INSTALL_PREFIX=/gnu/store/s41l6b7prjby369gyczxpji2x48gakss-cling-0.9-1.d78d1a0" "-DCMAKE_INSTALL_LIBDIR=lib" "-DCMAKE_INSTALL_RPATH_USE_LINK_PATH=TRUE" "-DCMAKE_INSTALL_RPATH=/gnu/store/s41l6b7prjby369gyczxpji2x48gakss-cling-0.9-1.d78d1a0/lib" "-DCMAKE_VERBOSE_MAKEFILE=ON" "-DCLING_CXX_PATH=/gnu/store/rn75fm7adgx3pw5j8pg3bczfqq1y17lk-gcc-7.5.0/bin/g++" "-DLLVM_PARALLEL_LINK_JOBS=1" "-DLLVM_TARGETS_TO_BUILD=host;NVPTX" "-DLLVM_ENABLE_EH=ON" "-DLLVM_ENABLE_RTTI=ON" "-DLLVM_BUILD_LLVM_DYLIB=OFF" "-DLLVM_LINK_LLVM_DYLIB=Off" "-DLLVM_ENABLE_PLUGINS=ON")
-- The C compiler identification is GNU 7.5.0
-- The CXX compiler identification is GNU 7.5.0
-- Check for working C compiler: /gnu/store/rn75fm7adgx3pw5j8pg3bczfqq1y17lk-gcc-7.5.0/bin/gcc
@Apteryks
Apteryks / dwphw1is0mlphmwaspacl26f0krzqv-weasyprint-52.1.drv
Last active November 28, 2020 08:20
Weasyprint test suite failures on GNU Guix
dependencies: font-dejavu@2.37 fontconfig@2.13.1 gdk-pixbuf@2.40.0 glib@2.62.6 pango@1.44.7
+ python-cairocffi@1.2.0 python-cairosvg@2.5.0 python-cffi@1.14.0 python-cssselect2@0.4.1
+ python-html5lib@1.1 python-pyphen@0.10.0 python-pytest-cov@2.8.1 python-pytest-runner@5.2
+ python-tinycss2@1.1.0
substitute:
substitute: updating substitutes from 'https://ci.guix.gnu.org'... 0.0%
substitute: updating substitutes from 'https://ci.guix.gnu.org'... 100.0%
@ build-started /gnu/store/jidwphw1is0mlphmwaspacl26f0krzqv-weasyprint-52.1.drv - x86_64-linux /var/log/guix/drvs/ji//dwphw1is0mlphmwaspacl26f0krzqv-weasyprint-52.1.drv.bz2 14317
starting phase `set-SOURCE-DATE-EPOCH'
@Apteryks
Apteryks / buganizer-to-rst.el
Last active May 29, 2016 21:54
Preview of buganizer-to-rst.el
(require 'cl-lib)
(require 'rst)
(require 'csv) ; Depends on Ulf Jasper's csv.el module.
(defun parse-csv-file (file)
"Parse a csv file using the `csv-parse-buffer' method of `csv.el'."
(interactive (list (read-file-name "CSV file: ")))
(with-temp-buffer
(insert-file-contents file)
(csv-parse-buffer t (current-buffer))))