diff options
| author | Anderson Torres <anderson.torres.8519@gmail.com> | 2025-11-21 13:38:38 -0300 |
|---|---|---|
| committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2026-04-19 08:24:47 +0200 |
| commit | 8d06dbc72ed45ff57be08e4f8f2e7c8a87396c5d (patch) | |
| tree | 4d623a1159f7ef1924fcf17ec80873cd8c106b57 | |
| parent | ac7bec1187c30e7e2c886275085eadcff3d97b4b (diff) | |
gnu: emacs-2048-game: Use Mercurial instead of MELPA.
* gnu/packages/emacs-xyz.scm (emacs-2048-game): Update to 2023.8.8.1-0.0e7210d.
[source]: Use mercurial respository instead of MELPA tarball.
[#:tests?]: Set as #f.
(emacs-2048-game-superceded-version): New dummy variable.
Change-Id: Id03b28ff6ca3e74dea3fadfb11b5b1b105e7cd2e
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
| -rw-r--r-- | gnu/packages/emacs-xyz.scm | 48 |
1 files changed, 31 insertions, 17 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 4a15fc808a1..c33ec10ea58 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm | |||
| @@ -15253,25 +15253,39 @@ markdown features.") | |||
| 15253 | (license license:gpl3))) | 15253 | (license license:gpl3))) |
| 15254 | 15254 | ||
| 15255 | (define-public emacs-2048-game | 15255 | (define-public emacs-2048-game |
| 15256 | (package | 15256 | ;; No tagged releases. Version comes from 2048-game.el |
| 15257 | (name "emacs-2048-game") | 15257 | (let ((changeset "0e7210d05e6faf53c7bdc8be2381dc0d4c8b19f3") |
| 15258 | (version "20151026.1233") | 15258 | (revision "0")) |
| 15259 | (source | 15259 | (package |
| 15260 | (origin | 15260 | (name "emacs-2048-game") |
| 15261 | (method url-fetch) | 15261 | (version (hg-version "2023.8.8.1" revision changeset)) |
| 15262 | (uri (string-append "https://melpa.org/packages/2048-game-" | 15262 | (source |
| 15263 | version ".el")) | 15263 | (origin |
| 15264 | (sha256 | 15264 | (method hg-fetch) |
| 15265 | (base32 | 15265 | (uri (hg-reference |
| 15266 | "0gy2pvz79whpavp4jmz8h9krzn7brmvv3diixi1d4w51pcdvaldd")))) | 15266 | (url "https://hg.sr.ht/~zck/game-2048") |
| 15267 | (build-system emacs-build-system) | 15267 | (changeset changeset))) |
| 15268 | (home-page "https://hg.sr.ht/~zck/game-2048") | 15268 | (file-name (hg-file-name name version)) |
| 15269 | (synopsis "Implementation of the game 2048 in Emacs Lisp") | 15269 | (sha256 |
| 15270 | (description | 15270 | (base32 |
| 15271 | "This program is an implementation of 2048 for Emacs. | 15271 | "01xzmi2613d4zwnrh9iywipxx8ml76yqik90mx4mpyar19a6ypi8")))) |
| 15272 | (build-system emacs-build-system) | ||
| 15273 | (arguments | ||
| 15274 | (list | ||
| 15275 | #:tests? #f)) ; No tests | ||
| 15276 | (home-page "https://hg.sr.ht/~zck/game-2048") | ||
| 15277 | (synopsis "Implementation of the game 2048 in Emacs Lisp") | ||
| 15278 | (description | ||
| 15279 | "This program is an implementation of 2048 for Emacs. | ||
| 15272 | The goal of this game is to create a tile with value 2048. The size of the | 15280 | The goal of this game is to create a tile with value 2048. The size of the |
| 15273 | board and goal value can be customized.") | 15281 | board and goal value can be customized.") |
| 15274 | (license license:gpl3+))) | 15282 | (license license:gpl3+)))) |
| 15283 | |||
| 15284 | (define-public emacs-2048-game-superseded-version | ||
| 15285 | (package | ||
| 15286 | (inherit emacs-2048-game) | ||
| 15287 | (version "20151026.1233") | ||
| 15288 | (properties (list (cons 'superseded emacs-2048-game))))) | ||
| 15275 | 15289 | ||
| 15276 | (define-public emacs-chess | 15290 | (define-public emacs-chess |
| 15277 | (package | 15291 | (package |
