* [bug#54426] [PATCH] gnu: capstone: Update to latest stable release 4.0.2.
@ 2022-03-16 16:19 Olivier Dion via Guix-patches via
2022-03-18 5:50 ` bug#54426: " Maxim Cournoyer
0 siblings, 1 reply; 3+ messages in thread
From: Olivier Dion via Guix-patches via @ 2022-03-16 16:19 UTC (permalink / raw)
To: 54426; +Cc: Olivier Dion
* gnu/packages/engineering.scm (capstone): Bump to 4.0.2.
---
gnu/packages/engineering.scm | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm
index fd66f9ee19..eed6d69af9 100644
--- a/gnu/packages/engineering.scm
+++ b/gnu/packages/engineering.scm
@@ -28,6 +28,7 @@
;;; Copyright © 2021, 2022 Petr Hodina <phodina@protonmail.com>
;;; Copyright © 2021 Foo Chuan Wei <chuanwei.foo@hotmail.com>
;;; Copyright © 2022 Evgeny Pisemsky <evgeny@pisemsky.com>
+;;; Copyright © 2022 Olivier Dion <olivier.dion@polymtl.ca>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -1550,7 +1551,7 @@ (define-public adms
(define-public capstone
(package
(name "capstone")
- (version "3.0.5")
+ (version "4.0.2")
(source (origin
(method git-fetch)
(uri (git-reference
@@ -1559,7 +1560,7 @@ (define-public capstone
(file-name (git-file-name name version))
(sha256
(base32
- "0dgf82kxj4rs45d6s8sr984c38sll1n5scpypjlyh21gh2yl4qfw"))))
+ "0y5g74yjyliciawpn16zhdwya7bd3d7b1cccpcccc2wg8vni1k2w"))))
(build-system gnu-build-system)
(arguments
`(#:tests? #f
--
2.34.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* bug#54426: [PATCH] gnu: capstone: Update to latest stable release 4.0.2.
2022-03-16 16:19 [bug#54426] [PATCH] gnu: capstone: Update to latest stable release 4.0.2 Olivier Dion via Guix-patches via
@ 2022-03-18 5:50 ` Maxim Cournoyer
2022-03-18 14:37 ` [bug#54426] " Olivier Dion via Guix-patches via
0 siblings, 1 reply; 3+ messages in thread
From: Maxim Cournoyer @ 2022-03-18 5:50 UTC (permalink / raw)
To: Olivier Dion; +Cc: 54426-done
Hello!
Olivier Dion <olivier.dion@polymtl.ca> writes:
> * gnu/packages/engineering.scm (capstone): Bump to 4.0.2.
Tip: you can add the yasnippet snippets found under
etc/snippets from your checkout, then at the commit message buffer you
type 'update...' TAB and voila :-). This ensures a very rigid commit
message format, useful to grep it logs, for example.
> gnu/packages/engineering.scm | 5 +++--
> 1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm
> index fd66f9ee19..eed6d69af9 100644
> --- a/gnu/packages/engineering.scm
> +++ b/gnu/packages/engineering.scm
> @@ -28,6 +28,7 @@
> ;;; Copyright © 2021, 2022 Petr Hodina <phodina@protonmail.com>
> ;;; Copyright © 2021 Foo Chuan Wei <chuanwei.foo@hotmail.com>
> ;;; Copyright © 2022 Evgeny Pisemsky <evgeny@pisemsky.com>
> +;;; Copyright © 2022 Olivier Dion <olivier.dion@polymtl.ca>
> ;;;
> ;;; This file is part of GNU Guix.
> ;;;
> @@ -1550,7 +1551,7 @@ (define-public adms
> (define-public capstone
> (package
> (name "capstone")
> - (version "3.0.5")
> + (version "4.0.2")
> (source (origin
> (method git-fetch)
> (uri (git-reference
> @@ -1559,7 +1560,7 @@ (define-public capstone
> (file-name (git-file-name name version))
> (sha256
> (base32
> - "0dgf82kxj4rs45d6s8sr984c38sll1n5scpypjlyh21gh2yl4qfw"))))
> + "0y5g74yjyliciawpn16zhdwya7bd3d7b1cccpcccc2wg8vni1k2w"))))
> (build-system gnu-build-system)
> (arguments
> `(#:tests? #f
I've adjusted the home page and repo URL since 'guix lint' mentioned it
had been permanently redirected, removed the trailing #t at the end of a
phase (these are no longer needed) and pushed as
ba15abc0083eb614d3396e603916790b0c7f236f.
Thank you!
Closing.
Maxim
^ permalink raw reply [flat|nested] 3+ messages in thread
* [bug#54426] [PATCH] gnu: capstone: Update to latest stable release 4.0.2.
2022-03-18 5:50 ` bug#54426: " Maxim Cournoyer
@ 2022-03-18 14:37 ` Olivier Dion via Guix-patches via
0 siblings, 0 replies; 3+ messages in thread
From: Olivier Dion via Guix-patches via @ 2022-03-18 14:37 UTC (permalink / raw)
To: Maxim Cournoyer; +Cc: 54426-done
On Fri, 18 Mar 2022, Maxim Cournoyer <maxim.cournoyer@gmail.com> wrote:
>> * gnu/packages/engineering.scm (capstone): Bump to 4.0.2.
>
> Tip: you can add the yasnippet snippets found under
> etc/snippets from your checkout, then at the commit message buffer you
> type 'update...' TAB and voila :-). This ensures a very rigid commit
> message format, useful to grep it logs, for example.
Thanks for the tip Maxim!
--
Olivier Dion
Polymtl
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2022-03-18 14:38 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-03-16 16:19 [bug#54426] [PATCH] gnu: capstone: Update to latest stable release 4.0.2 Olivier Dion via Guix-patches via
2022-03-18 5:50 ` bug#54426: " Maxim Cournoyer
2022-03-18 14:37 ` [bug#54426] " Olivier Dion via Guix-patches via
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).