From 44dc0f0f0b1129b944e6b0c3d60f1ab9acdaccf9 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Tue, 12 Apr 2022 15:14:56 -0400 Subject: gnu: Add python-pytest-forked-next. * gnu/packages/check.scm (python-pytest-forked-next): New variable. --- gnu/packages/check.scm | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'gnu') diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index 005a3bde7c..5e0b653983 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -1570,6 +1570,23 @@ can be useful to isolate tests against undesirable global environment side-effects (such as setting environment variables).") (license license:expat))) +(define-public python-pytest-forked-next + (package + (inherit python-pytest-forked) + (name "python-pytest-forked") + (version "1.4.0") + (source + (origin + (method git-fetch) ;for tests + (uri (git-reference + (url "https://github.com/pytest-dev/pytest-forked") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0j9bbjny7h3b4fig6l26f26c697r67mm62fzdd9m9rqyy2bmnqjs")))) + (native-inputs (list python-pytest-bootstrap python-setuptools-scm)))) + (define-public python-scripttest (package (name "python-scripttest") -- cgit v1.2.3 1ec841a205d1d44153235b1b5cc'>treecommitdiff
path: root/gnu/packages/dlang.scm
AgeCommit message (Expand)Author
2022-06-26gnu: ldc: Work towards building on aarch64-linux....* gnu/packages/dlang.scm (ldc)[arguments]: Adjust configure-flags to not dynamically compile. Adjust custom 'fix-compiler-rt-library-discovery phase to add a case for aarch64. Adjust custom'disable-problematic-tests phase to remove some tests for aarch64-linux. Efraim Flashner
2022-06-26gnu: ldc: Update skipped tests on i686-linux....* gnu/packages/dlang.scm (ldc)[arguments]: Adjust custom 'disable-problematic-tests phase to skip fewer tests. Efraim Flashner
2022-06-26gnu: Remove unneeded ldc bootstrap packages....* gnu/packages/dlang.scm (ldc-bootstrap-0.17, ldc-bootstrap-1.12, ldc-bootstrap-1.24): Remove packages. (ldc-bootstrap-1.27): Rename to ldc-bootstrap. Absorb inherited package adjustments. (ldc): Adjust to ldc-bootstrap-1.27 renaming. Efraim Flashner
2022-06-26gnu: ldc-bootstrap-1.27: Build with gdmd....* gnu/packages/dlang.scm (ldc-bootstrap-1.27)[native-inputs]: Replace ldc-bootstrap-1.24 with gdmd. [supported-systems]: Mark all systems supported. Co-authored-by: Efraim Flashner <efraim@flashner.co.il> Esther Flashner
2022-06-26gnu: Add gdmd....* gnu/packages/dlang.scm (gdmd): New variable. Co-authored-by: Efraim Flashner <efraim@flashner.co.il> Esther Flashner
2022-06-26Revert "gnu: ldc-bootstrap-0.17: Add support for aarch64-linux."...This reverts commit 4f6ed3d2f8531ce1b75dc79365ce67587d8cb7e1. While this does allow building ldc on aarch64, it isn't actually helpful. Efraim Flashner
2022-06-19gnu: dub: Use G-expressions....* gnu/packages/dlang.scm (dub)[arguments]: Rewrite as G-expressions. Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr> (
2022-06-19gnu: dub: Update to 1.23.0....This also fixes Dub's build, which was previously failing because of how ancient it was. * gnu/packages/dlang.scm (dub): Update to 1.23.0. [arguments]: Set target CC & LD environment variables. Invoke build.d. Don't explicitly return #t from phases. [native-inputs]: Add d-tools and ld-gold-wrapper. Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr> (
2022-06-19gnu: d-tools: Update to 2.100.0....* gnu/packages/dlang.scm (d-tools): Update to 2.100.0. [arguments]: Adjust accordingly. Reinstate a custom 'check phase. Install the rdmd man page. Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr> (
2022-06-19gnu: d-tools: Don't use unstable tarball....* gnu/packages/dlang.scm (d-tools)[source]: Use GIT-FETCH and GIT-FILE-NAME. Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr> (
2022-06-19gnu: d-tools: Use G-expressions....* gnu/packages/dlang.scm (d-tools)[arguments]: Rewrite as G-expressions. Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr> (
2022-06-19gnu: d-tools: Fix build....* gnu/packages/dlang.scm (d-tools)[arguments]: Set target CC and LD environment variables. [native-inputs]: Add ld-gold-wrapper. Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr> (
2022-06-19gnu: rdmd: Rename to d-tools....* gnu/packages/dlang.scm (rdmd): Rename this… (d-tools): …to this. [home-page, synopsis, description]: Update accordingly. Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr> (
2022-06-23gnu: ldc-bootstrap-0.17: Add support for aarch64-linux....* gnu/packages/dlang.scm (ldc-bootstrap-0.17)[supported-systems]: Add aarch64-linux. [arguments]: When building targeting aarch64-linux build for armhf-linux. Efraim Flashner