[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/09: gnu: toot: Update to 0.30.1.
From: |
guix-commits |
Subject: |
06/09: gnu: toot: Update to 0.30.1. |
Date: |
Tue, 6 Dec 2022 04:42:28 -0500 (EST) |
efraim pushed a commit to branch master
in repository guix.
commit f34ccd506e6594ad253f3f8d1c03171e7520a4b9
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Tue Dec 6 10:58:08 2022 +0200
gnu: toot: Update to 0.30.1.
* gnu/packages/mastodon.scm (toot): Update to 0.30.1.
[arguments]: Add a phase to remove integration tests.
---
gnu/packages/mastodon.scm | 11 ++++++++---
1 file changed, 8 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/mastodon.scm b/gnu/packages/mastodon.scm
index d6fd1db2b6..e8c31fb168 100644
--- a/gnu/packages/mastodon.scm
+++ b/gnu/packages/mastodon.scm
@@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2019, 2020, 2021 Efraim Flashner <efraim@flashner.co.il>
+;;; Copyright © 2019-2022 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2019 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2021 Taiju HIGASHI <higashi@taiju.info>
;;;
@@ -42,17 +42,22 @@
(define-public toot
(package
(name "toot")
- (version "0.28.0")
+ (version "0.30.1")
(source
(origin
(method url-fetch)
(uri (pypi-uri "toot" version))
(sha256
- (base32 "1wsj4160z3m1nvswgkl08n9ymihxhxdvxvrsycn9d3y5fplm00k9"))))
+ (base32 "0r9f2frlwfxkcv6c9lh36maph90v2yp6s7phynbrb3m7v35xzaxz"))))
(build-system python-build-system)
(arguments
'(#:phases
(modify-phases %standard-phases
+ (add-before 'check 'adjust-test-suite
+ (lambda _
+ ;; This test contains integration tests meant to run against a
test
+ ;; Mastodon instance.
+ (delete-file "tests/test_integration.py")))
(replace 'check
(lambda* (#:key tests? inputs outputs #:allow-other-keys)
(when tests?
- branch master updated (c3e4163aaf -> 3d2c9608ab), guix-commits, 2022/12/06
- 02/09: gnu: Add perl-getopt-argvfile., guix-commits, 2022/12/06
- 01/09: gnu: parallel: Update to 20221122., guix-commits, 2022/12/06
- 05/09: gnu: terminology: Update to 1.13.0., guix-commits, 2022/12/06
- 07/09: gnu: Add python-aiostream., guix-commits, 2022/12/06
- 09/09: gnu: vdirsyncer: Don't propagate python packages., guix-commits, 2022/12/06
- 03/09: gnu: Add pod2pdf., guix-commits, 2022/12/06
- 08/09: gnu: vdirsyncer: Update to 0.19.0., guix-commits, 2022/12/06
- 04/09: gnu: parallel: Generate most PDFs from source., guix-commits, 2022/12/06
- 06/09: gnu: toot: Update to 0.30.1.,
guix-commits <=