diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-05-12 20:27:20 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-05-18 14:37:09 +0100 |
| commit | 06f0b8b45aa011a388dc9cd1f5edaf30d45a8912 (patch) | |
| tree | 1c34946a9ccd0986991639fbc43e414fec4805fd | |
| parent | 4b1b0fcd371dd091f7f0acf4deee1425401bd5da (diff) | |
gnu: debops: Update to 3.3.0.
* gnu/packages/admin.scm (debops): Update to 3.3.0.
[inputs]: Remove ansible for now, build fails with error
"ModuleNotFoundError: No module named 'setuptools'" when present.
[phases]{wrap-script}: Unwrap "/bin/ansible" for now.
Change-Id: I0e481cf4ca37f6a3576ff75b7348e9e3eaeb3868
| -rw-r--r-- | gnu/packages/admin.scm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index b3318fbbf2..4f45269b99 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -3423,7 +3423,7 @@ modules and plugins that extend Ansible.") (define-public debops (package (name "debops") - (version "3.2.5") + (version "3.3.0") (source (origin (method git-fetch) @@ -3432,13 +3432,13 @@ modules and plugins that extend Ansible.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "15wfhha2b315i15l40j3sylyvs3mdrfw5awzq4cix51l5jppx8z5")) + (base32 "0z6wck5kax5h2bjv1vw8pbd7fdcdhx87bj9fakh3h0rar9d2qksj")) (patches (search-patches "debops-setup-py-avoid-git.patch")))) (build-system pyproject-build-system) (native-inputs (list python-setuptools)) (inputs - (list ansible + (list ;; ansible ;XXX; build fails with Ansible in scope bash-minimal encfs fuse @@ -3454,8 +3454,8 @@ modules and plugins that extend Ansible.") python-future python-gitpython python-jinja2 - python-pyyaml python-pyxdg + python-pyyaml python-toml)) (arguments (list @@ -3470,7 +3470,7 @@ modules and plugins that extend Ansible.") `("PATH" ":" prefix ,(map dirname (map (cut search-input-file inputs <>) - (list "bin/ansible" + (list ;; "bin/ansible" ;see above "bin/gpg" "bin/git" "bin/git-crypt" |
