[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
10/10: gnu: avrdude: Update to 7.3.
From: |
guix-commits |
Subject: |
10/10: gnu: avrdude: Update to 7.3. |
Date: |
Fri, 31 May 2024 07:57:48 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 8944fa5c7a1283787fd316f505e83799e92867a9
Author: Artyom V. Poptsov <poptsov.artyom@gmail.com>
AuthorDate: Sat May 25 10:28:07 2024 +0300
gnu: avrdude: Update to 7.3.
* gnu/packages/flashing-tools.scm (avrdude): Update to 7.3.
[source]: Set to "https://github.com/avrdudes/avrdude/" as the project
repository moved to GitHub.
[build-system]: Use "cmake-build-system".
[arguments]: Disable tests as there are none.
[description]: Improve formatting.
Change-Id: I835563a6301d01089a9bfc2b1c3eb5050c4adb8f
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/flashing-tools.scm | 22 +++++++++++++---------
1 file changed, 13 insertions(+), 9 deletions(-)
diff --git a/gnu/packages/flashing-tools.scm b/gnu/packages/flashing-tools.scm
index 2629bafbe4..457f575c92 100644
--- a/gnu/packages/flashing-tools.scm
+++ b/gnu/packages/flashing-tools.scm
@@ -149,15 +149,19 @@ brick your device.")
(define-public avrdude
(package
(name "avrdude")
- (version "6.3")
+ (version "7.3")
(source
(origin
- (method url-fetch)
- (uri (string-append "mirror://savannah/avrdude/avrdude-"
- version ".tar.gz"))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/avrdudes/avrdude/")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
- (base32 "15m1w1qad3dj7r8n5ng1qqcaiyx1gyd6hnc3p2apgjllccdp77qg"))))
- (build-system gnu-build-system)
+ (base32 "0g7c30baaxav43rlfj0cdbl40p2swamp44glz0rgf096wc0bg996"))))
+ (build-system cmake-build-system)
+ (arguments
+ (list #:tests? #f)) ; no tests
(inputs
(list libelf libusb-compat libftdi))
(native-inputs
@@ -165,9 +169,9 @@ brick your device.")
(home-page "https://www.nongnu.org/avrdude/")
(synopsis "AVR downloader and uploader")
(description
- "AVRDUDE is a utility to download/upload/manipulate the ROM and
-EEPROM contents of AVR microcontrollers using the @acronym{ISP, in-system
-programming} technique.")
+ "@code{AVRDUDE} is a utility to download/upload/manipulate the ROM and
EEPROM
+contents of AVR microcontrollers using the @acronym{ISP, in-system programming}
+technique.")
(license license:gpl2+)))
(define-public dfu-programmer
- branch master updated (0c87fe868a -> 8944fa5c7a), guix-commits, 2024/05/31
- 03/10: gnu: slurm: Add patch for a useful fallback shell for ‘salloc’., guix-commits, 2024/05/31
- 07/10: gnu: clementine: Build with libgpod., guix-commits, 2024/05/31
- 06/10: gnu: Add libgpod., guix-commits, 2024/05/31
- 08/10: gnu: Add biboumi., guix-commits, 2024/05/31
- 01/10: gnu: Add python-pybadges., guix-commits, 2024/05/31
- 02/10: gnu: intel-mpi-benchmarks: Update to 2021.7., guix-commits, 2024/05/31
- 10/10: gnu: avrdude: Update to 7.3.,
guix-commits <=
- 04/10: gnu: audacity: Re-add fallback to locate ffmpeg via pkg-config., guix-commits, 2024/05/31
- 09/10: gnu: tla2tools: Add UseParallelGC to Java command in wrapper scripts., guix-commits, 2024/05/31
- 05/10: gnu: Add r7rs-small-texinfo., guix-commits, 2024/05/31