diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-05-19 08:36:22 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-05-19 11:10:13 +0100 |
| commit | 8c79807f85ae2fe9b91814e84cd66097d69eca80 (patch) | |
| tree | 1103c7f6f128d91822145328484598d098c76b7e | |
| parent | b1280ba1a4cafb30ba2544fd85de5665b72db27b (diff) | |
gnu: silkaj: Update to 0.12.1-0.dabe484.
* gnu/packages/finance.scm (silkaj): Update to
dabe484ba1871030be33a1473ee473004e102763 commit.
Change-Id: Ie5d25c3495d0b331cded979340d716304ef77653
| -rw-r--r-- | gnu/packages/finance.scm | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm index c98d35f773..77a9d0c8d0 100644 --- a/gnu/packages/finance.scm +++ b/gnu/packages/finance.scm @@ -1718,19 +1718,26 @@ main features are: (define-public silkaj (package (name "silkaj") - (version "0.12.1") + ;; 0.12.1 (2025-07-08), all tests passed on the latest commit, revert back + ;; to git tag when released. + (properties '((commit . "dabe484ba1871030be33a1473ee473004e102763") + (revision . "0"))) + (version (git-version "0.12.1" + (assoc-ref properties 'revision) + (assoc-ref properties 'commit))) (source (origin (method git-fetch) (uri (git-reference (url "https://git.duniter.org/clients/python/silkaj") - (commit (string-append "v" version)))) + (commit (assoc-ref properties 'commit)))) (file-name (git-file-name name version)) (sha256 - (base32 "0prglgwvzi676h4lyw9266sqiqbfs2l0mv0bmjvplvdxzzcs63bv")))) + (base32 "08wg4q3y747apj5phq4ghjgg9cdr8mnyzjspjvd8v9qz08v5zg6b")))) (build-system pyproject-build-system) (arguments (list + ;; tests: 224 passed, 4 skipped, 2 deselected #:test-flags ;; They require Poetry in the PATH. #~(list "--ignore=tests/integration/" |
