All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] package/linux-serial-test: new package
@ 2019-11-05 11:56 yegorslists at googlemail.com
  2019-11-05 19:54 ` Yann E. MORIN
  0 siblings, 1 reply; 3+ messages in thread
From: yegorslists at googlemail.com @ 2019-11-05 11:56 UTC (permalink / raw)
  To: buildroot

From: Yegor Yefremov <yegorslists@googlemail.com>

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
---
 DEVELOPERS                                       |  1 +
 package/Config.in                                |  1 +
 package/linux-serial-test/Config.in              |  6 ++++++
 package/linux-serial-test/linux-serial-test.hash |  2 ++
 package/linux-serial-test/linux-serial-test.mk   | 12 ++++++++++++
 5 files changed, 22 insertions(+)
 create mode 100644 package/linux-serial-test/Config.in
 create mode 100644 package/linux-serial-test/linux-serial-test.hash
 create mode 100644 package/linux-serial-test/linux-serial-test.mk

diff --git a/DEVELOPERS b/DEVELOPERS
index 24c57b25f7..33273ce6c8 100644
--- a/DEVELOPERS
+++ b/DEVELOPERS
@@ -2504,6 +2504,7 @@ F:	package/libsocketcan/
 F:	package/libubox/
 F:	package/libuci/
 F:	package/linux-firmware/
+F:	package/linux-serial-test/
 F:	package/modem-manager/
 F:	package/nftables/
 F:	package/nuttcp/
diff --git a/package/Config.in b/package/Config.in
index 1ad1d49a8a..f72c77b416 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -470,6 +470,7 @@ endmenu
 	source "package/libubootenv/Config.in"
 	source "package/libuio/Config.in"
 	source "package/linux-backports/Config.in"
+	source "package/linux-serial-test/Config.in"
 	source "package/linuxconsoletools/Config.in"
 	source "package/lirc-tools/Config.in"
 	source "package/lm-sensors/Config.in"
diff --git a/package/linux-serial-test/Config.in b/package/linux-serial-test/Config.in
new file mode 100644
index 0000000000..9ba4badc92
--- /dev/null
+++ b/package/linux-serial-test/Config.in
@@ -0,0 +1,6 @@
+config BR2_PACKAGE_LINUX_SERIAL_TEST
+	bool "linux-serial-test"
+	help
+	  Serial port test utility.
+
+	  https://github.com/cbrake/linux-serial-test
diff --git a/package/linux-serial-test/linux-serial-test.hash b/package/linux-serial-test/linux-serial-test.hash
new file mode 100644
index 0000000000..4f94bff436
--- /dev/null
+++ b/package/linux-serial-test/linux-serial-test.hash
@@ -0,0 +1,2 @@
+# Locally computed
+sha256  d04f4420abfeda5ee62662e790ea6ae5ddc2e758870e04ab76fa35d6de9cdce0  linux-serial-test-9965dad53ba63eea0eea05a0f9d5cb851425fcba.tar.gz
diff --git a/package/linux-serial-test/linux-serial-test.mk b/package/linux-serial-test/linux-serial-test.mk
new file mode 100644
index 0000000000..e10a45ce90
--- /dev/null
+++ b/package/linux-serial-test/linux-serial-test.mk
@@ -0,0 +1,12 @@
+################################################################################
+#
+# linux-serial-test
+#
+################################################################################
+
+LINUX_SERIAL_TEST_VERSION = 9965dad53ba63eea0eea05a0f9d5cb851425fcba
+LINUX_SERIAL_TEST_SITE = $(call github,cbrake,linux-serial-test,$(LINUX_SERIAL_TEST_VERSION))
+LINUX_SERIAL_TEST_LICENSE = MIT
+LINUX_SERIAL_TEST_LICENSE_FILES = LICENSES/MIT
+
+$(eval $(cmake-package))
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH] package/linux-serial-test: new package
  2019-11-05 11:56 [Buildroot] [PATCH] package/linux-serial-test: new package yegorslists at googlemail.com
@ 2019-11-05 19:54 ` Yann E. MORIN
  2019-11-06 13:54   ` Yegor Yefremov
  0 siblings, 1 reply; 3+ messages in thread
From: Yann E. MORIN @ 2019-11-05 19:54 UTC (permalink / raw)
  To: buildroot

Yegor, All,

On 2019-11-05 12:56 +0100, yegorslists at googlemail.com spake thusly:
> From: Yegor Yefremov <yegorslists@googlemail.com>
> 
> Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
[--SNIP--]
> diff --git a/package/linux-serial-test/linux-serial-test.hash b/package/linux-serial-test/linux-serial-test.hash
> new file mode 100644
> index 0000000000..4f94bff436
> --- /dev/null
> +++ b/package/linux-serial-test/linux-serial-test.hash
> @@ -0,0 +1,2 @@
> +# Locally computed
> +sha256  d04f4420abfeda5ee62662e790ea6ae5ddc2e758870e04ab76fa35d6de9cdce0  linux-serial-test-9965dad53ba63eea0eea05a0f9d5cb851425fcba.tar.gz

I've added a hash for the license file, and pushed to master now.

Thanks!

Regards,
Yann E. MORIN.

> diff --git a/package/linux-serial-test/linux-serial-test.mk b/package/linux-serial-test/linux-serial-test.mk
> new file mode 100644
> index 0000000000..e10a45ce90
> --- /dev/null
> +++ b/package/linux-serial-test/linux-serial-test.mk
> @@ -0,0 +1,12 @@
> +################################################################################
> +#
> +# linux-serial-test
> +#
> +################################################################################
> +
> +LINUX_SERIAL_TEST_VERSION = 9965dad53ba63eea0eea05a0f9d5cb851425fcba
> +LINUX_SERIAL_TEST_SITE = $(call github,cbrake,linux-serial-test,$(LINUX_SERIAL_TEST_VERSION))
> +LINUX_SERIAL_TEST_LICENSE = MIT
> +LINUX_SERIAL_TEST_LICENSE_FILES = LICENSES/MIT
> +
> +$(eval $(cmake-package))
> -- 
> 2.17.1
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/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.  |
'------------------------------^-------^------------------^--------------------'

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH] package/linux-serial-test: new package
  2019-11-05 19:54 ` Yann E. MORIN
@ 2019-11-06 13:54   ` Yegor Yefremov
  0 siblings, 0 replies; 3+ messages in thread
From: Yegor Yefremov @ 2019-11-06 13:54 UTC (permalink / raw)
  To: buildroot

On Tue, Nov 5, 2019 at 8:54 PM Yann E. MORIN <yann.morin.1998@free.fr> wrote:
>
> Yegor, All,
>
> On 2019-11-05 12:56 +0100, yegorslists at googlemail.com spake thusly:
> > From: Yegor Yefremov <yegorslists@googlemail.com>
> >
> > Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
> [--SNIP--]
> > diff --git a/package/linux-serial-test/linux-serial-test.hash b/package/linux-serial-test/linux-serial-test.hash
> > new file mode 100644
> > index 0000000000..4f94bff436
> > --- /dev/null
> > +++ b/package/linux-serial-test/linux-serial-test.hash
> > @@ -0,0 +1,2 @@
> > +# Locally computed
> > +sha256  d04f4420abfeda5ee62662e790ea6ae5ddc2e758870e04ab76fa35d6de9cdce0  linux-serial-test-9965dad53ba63eea0eea05a0f9d5cb851425fcba.tar.gz
>
> I've added a hash for the license file, and pushed to master now.

Thanks.

It would be great to have such a test in utils/check-package. Though
it can be tricky as for now each Class handles its own file type.

Regards,
Yegor

> Thanks!
>
> Regards,
> Yann E. MORIN.
>
> > diff --git a/package/linux-serial-test/linux-serial-test.mk b/package/linux-serial-test/linux-serial-test.mk
> > new file mode 100644
> > index 0000000000..e10a45ce90
> > --- /dev/null
> > +++ b/package/linux-serial-test/linux-serial-test.mk
> > @@ -0,0 +1,12 @@
> > +################################################################################
> > +#
> > +# linux-serial-test
> > +#
> > +################################################################################
> > +
> > +LINUX_SERIAL_TEST_VERSION = 9965dad53ba63eea0eea05a0f9d5cb851425fcba
> > +LINUX_SERIAL_TEST_SITE = $(call github,cbrake,linux-serial-test,$(LINUX_SERIAL_TEST_VERSION))
> > +LINUX_SERIAL_TEST_LICENSE = MIT
> > +LINUX_SERIAL_TEST_LICENSE_FILES = LICENSES/MIT
> > +
> > +$(eval $(cmake-package))
> > --
> > 2.17.1
> >
> > _______________________________________________
> > buildroot mailing list
> > buildroot at busybox.net
> > http://lists.busybox.net/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.  |
> '------------------------------^-------^------------------^--------------------'

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-11-06 13:54 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-11-05 11:56 [Buildroot] [PATCH] package/linux-serial-test: new package yegorslists at googlemail.com
2019-11-05 19:54 ` Yann E. MORIN
2019-11-06 13:54   ` Yegor Yefremov

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.