diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-01 20:21:02 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-02 23:20:53 +0100 |
commit | c8a21da0ff134d8df09e3f77aec2a18ae7a04cf3 (patch) | |
tree | 3abfab213a45fc2819af73e1d33a9945ed3d1639 | |
parent | 14bbe08750ea84b7d0ffd168cfcf6e08a0838ab0 (diff) |
gnu: Add cobib, deprecate python-cobib.
This project is the final tool with unique name, not a
library. This changes reflects it.
* gnu/packages/python-xyz.scm (cobib): New variable.
(python-cobib): Deprecate variable.
Change-Id: I264eef993e4b470f3e3335a3ac5f76495d43d648
-rw-r--r-- | gnu/packages/python-xyz.scm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index d0069b967f..9bc5549dcd 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -1927,9 +1927,9 @@ decorators, including variants of the Python standard library's @code{lru_cache} function decorator.") (license license:expat))) -(define-public python-cobib +(define-public cobib (package - (name "python-cobib") + (name "cobib") (version "5.3.0") (source (origin @@ -2019,6 +2019,9 @@ It uses a plain-text database, a location-independent library, and features git integration, command-line support, and a curses-based TUI.") (license license:expat))) +(define-public python-cobib + (deprecated-package "python-cobib" cobib)) + (define-public python-colorcet (package (name "python-colorcet") |