* [PATCH] gnu: dtc: Make home-page field value more useful.
@ 2017-01-25 9:37 Danny Milosavljevic
2017-01-30 22:44 ` Ludovic Courtès
2017-01-30 23:48 ` Tobias Geerinckx-Rice
0 siblings, 2 replies; 6+ messages in thread
From: Danny Milosavljevic @ 2017-01-25 9:37 UTC (permalink / raw)
To: guix-devel
* gnu/packages/u-boot.scm (dtc)[home-page]: Change.
---
gnu/packages/u-boot.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/packages/u-boot.scm b/gnu/packages/u-boot.scm
index cdd52d874..5d34f651e 100644
--- a/gnu/packages/u-boot.scm
+++ b/gnu/packages/u-boot.scm
@@ -53,7 +53,7 @@
#:phases
(modify-phases %standard-phases
(delete 'configure))))
- (home-page "https://www.devicetree.org")
+ (home-page "http://elinux.org/Device_Tree_Usage")
(synopsis "Compiles device tree source files")
(description "@command{dtc} compiles device tree source files to device
tree binary files. These are board description files used by Linux and BSD.")
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH] gnu: dtc: Make home-page field value more useful.
2017-01-25 9:37 [PATCH] gnu: dtc: Make home-page field value more useful Danny Milosavljevic
@ 2017-01-30 22:44 ` Ludovic Courtès
2017-01-30 23:48 ` Tobias Geerinckx-Rice
1 sibling, 0 replies; 6+ messages in thread
From: Ludovic Courtès @ 2017-01-30 22:44 UTC (permalink / raw)
To: Danny Milosavljevic; +Cc: guix-devel
Danny Milosavljevic <dannym@scratchpost.org> skribis:
> * gnu/packages/u-boot.scm (dtc)[home-page]: Change.
Sure, thanks!
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] gnu: dtc: Make home-page field value more useful.
2017-01-25 9:37 [PATCH] gnu: dtc: Make home-page field value more useful Danny Milosavljevic
2017-01-30 22:44 ` Ludovic Courtès
@ 2017-01-30 23:48 ` Tobias Geerinckx-Rice
2017-01-31 8:06 ` [PATCH v2] gnu: dtc: Update description to reference HOWTO Danny Milosavljevic
1 sibling, 1 reply; 6+ messages in thread
From: Tobias Geerinckx-Rice @ 2017-01-30 23:48 UTC (permalink / raw)
To: dannym, guix-devel, ludo
[-- Attachment #1.1: Type: text/plain, Size: 707 bytes --]
Danny,
Ludo',
On 25/01/17 10:37, Danny Milosavljevic wrote:
> - (home-page "https://www.devicetree.org")
> + (home-page "http://elinux.org/Device_Tree_Usage")
That link is a great HOWTO for writing device tree source files, but
it's not the _dtc_ home page.
In fact, it doesn't mention ‘dtc’ or the actual compilation anywhere.
If we really want to point users here, how about:
(description "@command{dtc} compiles
@uref{http://elinux.org/Device_Tree_Usage, device tree source files}
to device tree binary files. These are board description files used
by Linux and BSD.")
dtc does look rather homeless, but that's a different problem.
Kind regards,
T G-R
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 476 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH v2] gnu: dtc: Update description to reference HOWTO.
2017-01-30 23:48 ` Tobias Geerinckx-Rice
@ 2017-01-31 8:06 ` Danny Milosavljevic
2017-01-31 16:34 ` Marius Bakke
0 siblings, 1 reply; 6+ messages in thread
From: Danny Milosavljevic @ 2017-01-31 8:06 UTC (permalink / raw)
To: guix-devel
* gnu/packages/u-boot.scm (dtc)[description]: Modify.
---
gnu/packages/u-boot.scm | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/u-boot.scm b/gnu/packages/u-boot.scm
index cdd52d874..3468fe5a7 100644
--- a/gnu/packages/u-boot.scm
+++ b/gnu/packages/u-boot.scm
@@ -55,8 +55,9 @@
(delete 'configure))))
(home-page "https://www.devicetree.org")
(synopsis "Compiles device tree source files")
- (description "@command{dtc} compiles device tree source files to device
-tree binary files. These are board description files used by Linux and BSD.")
+ (description "@command{dtc} compiles
+@uref{http://elinux.org/Device_Tree_Usage, device tree source files} to device
+tree binary files. These are board description files used by Linux and BSD.")
(license license:gpl2+)))
(define u-boot
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH v2] gnu: dtc: Update description to reference HOWTO.
2017-01-31 8:06 ` [PATCH v2] gnu: dtc: Update description to reference HOWTO Danny Milosavljevic
@ 2017-01-31 16:34 ` Marius Bakke
2017-02-01 12:53 ` Danny Milosavljevic
0 siblings, 1 reply; 6+ messages in thread
From: Marius Bakke @ 2017-01-31 16:34 UTC (permalink / raw)
To: Danny Milosavljevic, guix-devel
[-- Attachment #1: Type: text/plain, Size: 903 bytes --]
Danny Milosavljevic <dannym@scratchpost.org> writes:
> * gnu/packages/u-boot.scm (dtc)[description]: Modify.
> ---
> gnu/packages/u-boot.scm | 5 +++--
> 1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/gnu/packages/u-boot.scm b/gnu/packages/u-boot.scm
> index cdd52d874..3468fe5a7 100644
> --- a/gnu/packages/u-boot.scm
> +++ b/gnu/packages/u-boot.scm
> @@ -55,8 +55,9 @@
> (delete 'configure))))
> (home-page "https://www.devicetree.org")
> (synopsis "Compiles device tree source files")
> - (description "@command{dtc} compiles device tree source files to device
> -tree binary files. These are board description files used by Linux and BSD.")
> + (description "@command{dtc} compiles
> +@uref{http://elinux.org/Device_Tree_Usage, device tree source files} to device
> +tree binary files. These are board description files used by Linux and BSD.")
LGTM.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v2] gnu: dtc: Update description to reference HOWTO.
2017-01-31 16:34 ` Marius Bakke
@ 2017-02-01 12:53 ` Danny Milosavljevic
0 siblings, 0 replies; 6+ messages in thread
From: Danny Milosavljevic @ 2017-02-01 12:53 UTC (permalink / raw)
To: guix-devel
Pushed, commit 4ae2a54df637b40aa3da662e7f812f0b9d1d1183.
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2017-02-01 12:53 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-01-25 9:37 [PATCH] gnu: dtc: Make home-page field value more useful Danny Milosavljevic
2017-01-30 22:44 ` Ludovic Courtès
2017-01-30 23:48 ` Tobias Geerinckx-Rice
2017-01-31 8:06 ` [PATCH v2] gnu: dtc: Update description to reference HOWTO Danny Milosavljevic
2017-01-31 16:34 ` Marius Bakke
2017-02-01 12:53 ` Danny Milosavljevic
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).