From fc99292c63df22b01f6c65a6098e0bbdc1d7e3e0 Mon Sep 17 00:00:00 2001 From: "Artyom V. Poptsov" Date: Sun, 9 Jan 2022 23:20:35 +0300 Subject: [PATCH] gnu: java-snakeyaml: Fix the source URI * gnu/packages/java.scm (java-snakeyaml): The project seems to be moved from to ; update the URI to match the actual one. --- gnu/packages/java.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index e54d2ed0cb..278fdc9f18 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -18,6 +18,7 @@ ;;; Copyright © 2021 Mike Gerwitz ;;; Copyright © 2021 Pierre Langlois ;;; Copyright © 2021 Guillaume Le Vaillant +;;; Copyright © 2022 Artyom V. Poptsov ;;; ;;; This file is part of GNU Guix. ;;; @@ -9917,7 +9918,7 @@ of deserialization.") (version "1.18") (source (origin (method url-fetch) - (uri (string-append "https://bitbucket.org/asomov/snakeyaml/get/v" + (uri (string-append "https://bitbucket.org/snakeyaml/snakeyaml/get/v" version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz")) (sha256 @@ -9930,7 +9931,7 @@ of deserialization.") ;; Tests require velocity, a cyclic dependency, and ;; java-spring-framework-context which is not packaged. #:tests? #f)) - (home-page "https://bitbucket.org/asomov/snakeyaml") + (home-page "https://bitbucket.org/snakeyaml/snakeyaml/") (synopsis "YAML processor") (description "SnakeYAML is a YAML processor for the Java Virtual Machine.") (license license:asl2.0))); found on wiki.fasterxml.com/JacksonLicensing -- 2.25.1