All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Yann E. MORIN" <yann.morin.1998@free.fr>
To: Quentin Schulz <quentin.schulz@theobroma-systems.com>
Cc: Nicolas Tran <nicolas.tran@smile.fr>, buildroot@buildroot.org
Subject: Re: [Buildroot] [PATCH 1/1] new package: package/dust
Date: Tue, 26 Jul 2022 17:43:21 +0200	[thread overview]
Message-ID: <20220726154321.GL3168@scaer> (raw)
In-Reply-To: <2a53c4f3-b7a2-f66e-e4c7-992e2f8d9de4@theobroma-systems.com>

Quentin, All,

On 2022-07-26 17:13 +0200, Quentin Schulz spake thusly:
> On 7/26/22 16:56, Nicolas Tran wrote:
> >dust is an alternative of the command du from the Linux kernel,
> >written in Rust. It aims to be more intuitive and visual in order
> >to give the user a better view of his system's storage capacity.
> >
> >---
> 
> I think git am will not like this separator and have the commit log stop
> here instead of including the rest til the next separator (with your SoB).
> Maybe -- would be enough, or move this after the other separator before the
> list of modified files?

No, that is OK. I asked for that in the past.

Test results are very interesting, but they do not belong to the commit
log (except if a test fails and that has to be explained, of course).

Regards,
Yann E. MORIN.

> >The package has been checked with correct formatting and
> >without typos:
> >$ ./utils/check-package package/dust/*
> >
> >Tests have been run using test-pkg:
> >$ ./utils/test-pkg -c dust.config -p dust
> >
> >test-pkg config:
> >To run the test, the file dust.config contains the following line
> >BR2_PACKAGE_DUST=y
> >
> >Results:
> >      bootlin-armv5-uclibc [1/6]: SKIPPED
> >       bootlin-armv7-glibc [2/6]: OK
> >     bootlin-armv7m-uclibc [3/6]: SKIPPED
> >       bootlin-x86-64-musl [4/6]: OK
> >        br-arm-full-static [5/6]: SKIPPED
> >              sourcery-arm [6/6]: OK
> >
> >Signed-off-by: Nicolas Tran <nicolas.tran@smile.fr>
> >---
> >  DEVELOPERS             |  1 +
> >  package/Config.in      |  1 +
> >  package/dust/Config.in | 12 ++++++++++++
> >  package/dust/dust.hash |  3 +++
> >  package/dust/dust.mk   | 12 ++++++++++++
> >  5 files changed, 29 insertions(+)
> >  create mode 100644 package/dust/Config.in
> >  create mode 100644 package/dust/dust.hash
> >  create mode 100644 package/dust/dust.mk
> >
> >diff --git a/DEVELOPERS b/DEVELOPERS
> >index 1dede4b83b..7a0fa47595 100644
> >--- a/DEVELOPERS
> >+++ b/DEVELOPERS
> >@@ -2180,6 +2180,7 @@ F:	package/ofono/
> >  N:	Nicolas Tran <nicolas.tran@smile.fr>
> >  F:	package/hyperfine/
> >+F:  package/dust/
> >  N:	Niklas Cassel <niklas.cassel@wdc.com>
> >  F:	configs/qemu_riscv64_nommu_virt_defconfig
> >diff --git a/package/Config.in b/package/Config.in
> >index d264449b30..a283fadc41 100644
> >--- a/package/Config.in
> >+++ b/package/Config.in
> >@@ -210,6 +210,7 @@ menu "Filesystem and flash utilities"
> >  	source "package/curlftpfs/Config.in"
> >  	source "package/davfs2/Config.in"
> >  	source "package/dosfstools/Config.in"
> >+	source "package/dust/Config.in"
> >  	source "package/e2fsprogs/Config.in"
> >  	source "package/e2tools/Config.in"
> >  	source "package/ecryptfs-utils/Config.in"
> >diff --git a/package/dust/Config.in b/package/dust/Config.in
> >new file mode 100644
> >index 0000000000..c02cf1aa83
> >--- /dev/null
> >+++ b/package/dust/Config.in
> >@@ -0,0 +1,12 @@
> >+config BR2_PACKAGE_DUST
> >+	bool "dust"
> >+	depends on BR2_PACKAGE_HOST_RUSTC_TARGET_ARCH_SUPPORTS
> >+	depends on BR2_INSTALL_LIBSTDCPP # host-rustc
> >+	select BR2_PACKAGE_HOST_RUSTC
> >+	help
> >+	  dust is an alternative written in Rust of the command "du"
> >+	  from the Linux kernel. It aims to be more intuitive and visual
> >+	  in order to give the user a better view of his system's
> >+	  current storage capacity.
> >+
> >+	  https://urldefense.proofpoint.com/v2/url?u=https-3A__github.com_bootandy_dust.git&d=DwICAg&c=_sEr5x9kUWhuk4_nFwjJtA&r=LYjLexDn7rXIzVmkNPvw5ymA1XTSqHGq8yBP6m6qZZ4njZguQhZhkI_-172IIy1t&m=qKkjyC6yAxeKvJmYdNlsDzDhFdDO0vSahgOTnZgBDNPKmYuAGOdkwdWdM3O_CAAt&s=gH07_ilQO9wqi8bv07RYANita8mpsOhdq7k__dVsOqg&e=
> >diff --git a/package/dust/dust.hash b/package/dust/dust.hash
> >new file mode 100644
> >index 0000000000..82043b497d
> >--- /dev/null
> >+++ b/package/dust/dust.hash
> >@@ -0,0 +1,3 @@
> >+# Locally computed
> >+sha256  8231d045a0cca286355e89a41758b05f43238d52721bfc78e0b9bc19789bebde  dust-0.8.1.tar.gz
> >+sha256  c71d239df91726fc519c6eb72d318ec65820627232b2f796219e87dcf35d0ab4  LICENSE
> >diff --git a/package/dust/dust.mk b/package/dust/dust.mk
> >new file mode 100644
> >index 0000000000..a889d64f56
> >--- /dev/null
> >+++ b/package/dust/dust.mk
> >@@ -0,0 +1,12 @@
> >+################################################################################
> >+#
> >+# dust
> >+#
> >+################################################################################
> >+
> >+DUST_VERSION = 0.8.1
> >+DUST_SITE = $(call github,bootandy,dust,v$(DUST_VERSION)-alpha.2)
> 
> There's a v0.8.1 released about two weeks ago, better use it instead of
> alpha.2?
> 
> Cheers,
> Quentin
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 561 099 427 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

  reply	other threads:[~2022-07-26 15:43 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-07-26 14:56 [Buildroot] [PATCH 1/1] new package: package/dust Nicolas Tran
2022-07-26 15:13 ` Quentin Schulz
2022-07-26 15:43   ` Yann E. MORIN [this message]
2022-07-26 15:47   ` Nicolas TRAN
  -- strict thread matches above, loose matches on Subject: below --
2022-07-26 15:29 Nicolas Tran

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220726154321.GL3168@scaer \
    --to=yann.morin.1998@free.fr \
    --cc=buildroot@buildroot.org \
    --cc=nicolas.tran@smile.fr \
    --cc=quentin.schulz@theobroma-systems.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.