summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2025-07-30 08:47:04 +0300
committerEfraim Flashner <efraim@flashner.co.il>2025-07-30 12:07:42 +0300
commit0bfa32fcd2f7f89e5995b3caefb060691a62f983 (patch)
tree28af338f08b70e3106f0ec8a2b3a7af18d0664c3 /gnu
parentb5ff51a918b3d2e52b9912007b630857df2cf38f (diff)
gnu: dev86: Update to 1.0.1.
* gnu/packages/assembly.scm (dev86): Update to 1.0.1. [source]: Download using git-fetch. [arguments]: Add make-flag to override the version string. Remove the 'mkdir phase. Remove the #:system config. [home-page]: Update to point to the current git repo. [supported-systems]: Remove field. Change-Id: I1ac5de05e34b2ebce7d2ac19f4a4c611893c3b36
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/assembly.scm27
1 files changed, 11 insertions, 16 deletions
diff --git a/gnu/packages/assembly.scm b/gnu/packages/assembly.scm
index 572ad705d55..8423befab82 100644
--- a/gnu/packages/assembly.scm
+++ b/gnu/packages/assembly.scm
@@ -2,7 +2,7 @@
;;; Copyright © 2016 Jan Nieuwenhuizen <janneke@gnu.org>
;;; Copyright © 2013, 2015 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
-;;; Copyright © 2016, 2020, 2021 Efraim Flashner <efraim@flashner.co.il>
+;;; Copyright © 2016, 2020, 2021, 2025 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2017–2022 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2019 Guy Fleury Iteriteka <hoonandon@gmail.com>
;;; Copyright © 2019, 2022, 2024 Andy Tai <atai@atai.org>
@@ -374,38 +374,33 @@ It has macro abilities and focuses on operating system portability.")
(define-public dev86
(package
(name "dev86")
- (version "0.16.21")
+ (version "1.0.1")
(source (origin
- (method url-fetch)
- (uri (string-append "http://v3.sk/~lkundrak/dev86/Dev86src-"
- version ".tar.gz"))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://codeberg.org/jbruchon/dev86.git")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
(base32
- "154dyr2ph4n0kwi8yx0n78j128kw29rk9r9f7s2gddzrdl712jr3"))))
+ "1g2zsa1cj6h7n33hjpr9xbvsxihkhya3aa92b1cv8prl4w8svqy5"))))
(build-system gnu-build-system)
(arguments
`(#:parallel-build? #f ; They use submakes wrong
#:make-flags (list ,(string-append "CC=" (cc-for-target))
+ ,(string-append "VERSION=" version)
(string-append "PREFIX="
(assoc-ref %outputs "out")))
- #:system "i686-linux" ; Standalone ld86 had problems otherwise
#:tests? #f ; No tests exist
#:phases
(modify-phases %standard-phases
- (delete 'configure)
- (add-before 'install 'mkdir
- (lambda* (#:key outputs #:allow-other-keys)
- (let ((out (assoc-ref outputs "out")))
- (mkdir-p (string-append out "/bin"))
- (mkdir-p (string-append out "/man/man1"))
- #t))))))
+ (delete 'configure))))
(synopsis "Intel 8086 (primarily 16-bit) assembler, C compiler and
linker")
(description "This package provides a Intel 8086 (primarily 16-bit)
assembler, a C compiler and a linker. The assembler uses Intel syntax
(also Intel order of operands).")
- (home-page "https://github.com/jbruchon/dev86")
- (supported-systems '("i686-linux" "x86_64-linux"))
+ (home-page "https://codeberg.org/jbruchon/dev86")
(license license:gpl2+)))
(define-public libjit