* [Buildroot] [PATCH v4 2/2] package/python-simplelogging: new package
@ 2019-09-16 16:23 Joris Offouga
2019-09-17 13:52 ` Yegor Yefremov
2019-09-19 21:26 ` Thomas Petazzoni
0 siblings, 2 replies; 4+ messages in thread
From: Joris Offouga @ 2019-09-16 16:23 UTC (permalink / raw)
To: buildroot
Simplelogging is easier implementation of logging.
Signed-off-by: Joris Offouga <offougajoris@gmail.com>
Reviewed-by: Yegor Yefremov <yegorslists@googlemail.com>
---
Changes v3 -> v4
Fix correct LICENSE type
Add Reviewed-by
DEVELOPERS | 1 +
package/Config.in | 1 +
package/python-simplelogging/Config.in | 7 +++++++
.../python-simplelogging/python-simplelogging.hash | 5 +++++
.../python-simplelogging/python-simplelogging.mk | 14 ++++++++++++++
5 files changed, 28 insertions(+)
create mode 100644 package/python-simplelogging/Config.in
create mode 100644 package/python-simplelogging/python-simplelogging.hash
create mode 100644 package/python-simplelogging/python-simplelogging.mk
diff --git a/DEVELOPERS b/DEVELOPERS
index 9283fa3af1..e5c3d0d39a 100644
--- a/DEVELOPERS
+++ b/DEVELOPERS
@@ -1227,6 +1227,7 @@ F: package/supervisor/
N: Joris Offouga <offougajoris@gmail.com>
F: package/python-colorlog
+F: package/python-simplelogging
N: J?rg Krause <joerg.krause@embedded.rocks>
F: board/lemaker/bananapro/
diff --git a/package/Config.in b/package/Config.in
index 84de744420..32f8572985 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -1070,6 +1070,7 @@ menu "External python modules"
source "package/python-simpleaudio/Config.in"
source "package/python-simplegeneric/Config.in"
source "package/python-simplejson/Config.in"
+ source "package/python-simplelogging/Config.in"
source "package/python-simplesqlite/Config.in"
source "package/python-singledispatch/Config.in"
source "package/python-sip/Config.in"
diff --git a/package/python-simplelogging/Config.in b/package/python-simplelogging/Config.in
new file mode 100644
index 0000000000..db95efa25f
--- /dev/null
+++ b/package/python-simplelogging/Config.in
@@ -0,0 +1,7 @@
+config BR2_PACKAGE_PYTHON_SIMPLELOGGING
+ bool "python-simplelogging"
+ select BR2_PACKAGE_PYTHON_COLORLOG # runtime
+ help
+ Logging made simple, no excuse for any debug print call.
+
+ https://github.com/vpoulailleau/simplelogging
diff --git a/package/python-simplelogging/python-simplelogging.hash b/package/python-simplelogging/python-simplelogging.hash
new file mode 100644
index 0000000000..86698fe88c
--- /dev/null
+++ b/package/python-simplelogging/python-simplelogging.hash
@@ -0,0 +1,5 @@
+# md5, sha256 from https://pypi.org/pypi/simplelogging/json
+md5 e3f9da393098d8fd8ebd8349a00692f2 simplelogging-0.10.0.tar.gz
+sha256 c070e0d82b68eff6918076a0edbf0a48b2c9a263854bd35f48a12c6adbbe9d80 simplelogging-0.10.0.tar.gz
+# Locally computed sha256 checksums
+sha256 bd2a0fe3b3bab7092ffa7f58d46bb05d98f12f107b3a6be947c098f7c2ad1d1a LICENSE
diff --git a/package/python-simplelogging/python-simplelogging.mk b/package/python-simplelogging/python-simplelogging.mk
new file mode 100644
index 0000000000..28acc5c952
--- /dev/null
+++ b/package/python-simplelogging/python-simplelogging.mk
@@ -0,0 +1,14 @@
+################################################################################
+#
+# python-simplelogging
+#
+################################################################################
+
+PYTHON_SIMPLELOGGING_VERSION = 0.10.0
+PYTHON_SIMPLELOGGING_SOURCE = simplelogging-$(PYTHON_SIMPLELOGGING_VERSION).tar.gz
+PYTHON_SIMPLELOGGING_SITE = https://files.pythonhosted.org/packages/17/85/3d2431f971e703916c7254e4560ed15451faedf2461eb484da9e1ebc5da6
+PYTHON_SIMPLELOGGING_SETUP_TYPE = setuptools
+PYTHON_SIMPLELOGGING_LICENSE = BSD-3-Clause
+PYTHON_SIMPLELOGGING_LICENSE_FILES = LICENSE
+
+$(eval $(python-package))
--
2.20.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH v4 2/2] package/python-simplelogging: new package
2019-09-16 16:23 [Buildroot] [PATCH v4 2/2] package/python-simplelogging: new package Joris Offouga
@ 2019-09-17 13:52 ` Yegor Yefremov
2019-09-17 18:29 ` Joris Offouga
2019-09-19 21:26 ` Thomas Petazzoni
1 sibling, 1 reply; 4+ messages in thread
From: Yegor Yefremov @ 2019-09-17 13:52 UTC (permalink / raw)
To: buildroot
Hi Joris,
On Mon, Sep 16, 2019 at 6:23 PM Joris Offouga <offougajoris@gmail.com> wrote:
>
> Simplelogging is easier implementation of logging.
>
> Signed-off-by: Joris Offouga <offougajoris@gmail.com>
> Reviewed-by: Yegor Yefremov <yegorslists@googlemail.com>
> ---
> Changes v3 -> v4
> Fix correct LICENSE type
> Add Reviewed-by
>
> DEVELOPERS | 1 +
> package/Config.in | 1 +
> package/python-simplelogging/Config.in | 7 +++++++
> .../python-simplelogging/python-simplelogging.hash | 5 +++++
> .../python-simplelogging/python-simplelogging.mk | 14 ++++++++++++++
> 5 files changed, 28 insertions(+)
> create mode 100644 package/python-simplelogging/Config.in
> create mode 100644 package/python-simplelogging/python-simplelogging.hash
> create mode 100644 package/python-simplelogging/python-simplelogging.mk
>
> diff --git a/DEVELOPERS b/DEVELOPERS
> index 9283fa3af1..e5c3d0d39a 100644
> --- a/DEVELOPERS
> +++ b/DEVELOPERS
> @@ -1227,6 +1227,7 @@ F: package/supervisor/
>
> N: Joris Offouga <offougajoris@gmail.com>
> F: package/python-colorlog
> +F: package/python-simplelogging
>
> N: J?rg Krause <joerg.krause@embedded.rocks>
> F: board/lemaker/bananapro/
> diff --git a/package/Config.in b/package/Config.in
> index 84de744420..32f8572985 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -1070,6 +1070,7 @@ menu "External python modules"
> source "package/python-simpleaudio/Config.in"
> source "package/python-simplegeneric/Config.in"
> source "package/python-simplejson/Config.in"
> + source "package/python-simplelogging/Config.in"
> source "package/python-simplesqlite/Config.in"
> source "package/python-singledispatch/Config.in"
> source "package/python-sip/Config.in"
> diff --git a/package/python-simplelogging/Config.in b/package/python-simplelogging/Config.in
> new file mode 100644
> index 0000000000..db95efa25f
> --- /dev/null
> +++ b/package/python-simplelogging/Config.in
> @@ -0,0 +1,7 @@
> +config BR2_PACKAGE_PYTHON_SIMPLELOGGING
> + bool "python-simplelogging"
> + select BR2_PACKAGE_PYTHON_COLORLOG # runtime
> + help
> + Logging made simple, no excuse for any debug print call.
> +
> + https://github.com/vpoulailleau/simplelogging
> diff --git a/package/python-simplelogging/python-simplelogging.hash b/package/python-simplelogging/python-simplelogging.hash
> new file mode 100644
> index 0000000000..86698fe88c
> --- /dev/null
> +++ b/package/python-simplelogging/python-simplelogging.hash
> @@ -0,0 +1,5 @@
> +# md5, sha256 from https://pypi.org/pypi/simplelogging/json
> +md5 e3f9da393098d8fd8ebd8349a00692f2 simplelogging-0.10.0.tar.gz
> +sha256 c070e0d82b68eff6918076a0edbf0a48b2c9a263854bd35f48a12c6adbbe9d80 simplelogging-0.10.0.tar.gz
> +# Locally computed sha256 checksums
> +sha256 bd2a0fe3b3bab7092ffa7f58d46bb05d98f12f107b3a6be947c098f7c2ad1d1a LICENSE
> diff --git a/package/python-simplelogging/python-simplelogging.mk b/package/python-simplelogging/python-simplelogging.mk
> new file mode 100644
> index 0000000000..28acc5c952
> --- /dev/null
> +++ b/package/python-simplelogging/python-simplelogging.mk
> @@ -0,0 +1,14 @@
> +################################################################################
> +#
> +# python-simplelogging
> +#
> +################################################################################
> +
> +PYTHON_SIMPLELOGGING_VERSION = 0.10.0
> +PYTHON_SIMPLELOGGING_SOURCE = simplelogging-$(PYTHON_SIMPLELOGGING_VERSION).tar.gz
> +PYTHON_SIMPLELOGGING_SITE = https://files.pythonhosted.org/packages/17/85/3d2431f971e703916c7254e4560ed15451faedf2461eb484da9e1ebc5da6
> +PYTHON_SIMPLELOGGING_SETUP_TYPE = setuptools
> +PYTHON_SIMPLELOGGING_LICENSE = BSD-3-Clause
> +PYTHON_SIMPLELOGGING_LICENSE_FILES = LICENSE
> +
> +$(eval $(python-package))
> --
> 2.20.1
Could you mark the obsolete patch versiones as "Superceded" [1]. Thanks.
[1] https://patchwork.ozlabs.org/project/buildroot/list/?submitter=75646
Yegor
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH v4 2/2] package/python-simplelogging: new package
2019-09-17 13:52 ` Yegor Yefremov
@ 2019-09-17 18:29 ` Joris Offouga
0 siblings, 0 replies; 4+ messages in thread
From: Joris Offouga @ 2019-09-17 18:29 UTC (permalink / raw)
To: buildroot
Hi Yegor,
Le 17/09/2019 ? 15:52, Yegor Yefremov a ?crit?:
> Hi Joris,
>
> On Mon, Sep 16, 2019 at 6:23 PM Joris Offouga <offougajoris@gmail.com> wrote:
>> Simplelogging is easier implementation of logging.
>>
>> Signed-off-by: Joris Offouga <offougajoris@gmail.com>
>> Reviewed-by: Yegor Yefremov <yegorslists@googlemail.com>
>> ---
>> Changes v3 -> v4
>> Fix correct LICENSE type
>> Add Reviewed-by
>>
>> DEVELOPERS | 1 +
>> package/Config.in | 1 +
>> package/python-simplelogging/Config.in | 7 +++++++
>> .../python-simplelogging/python-simplelogging.hash | 5 +++++
>> .../python-simplelogging/python-simplelogging.mk | 14 ++++++++++++++
>> 5 files changed, 28 insertions(+)
>> create mode 100644 package/python-simplelogging/Config.in
>> create mode 100644 package/python-simplelogging/python-simplelogging.hash
>> create mode 100644 package/python-simplelogging/python-simplelogging.mk
>>
>> diff --git a/DEVELOPERS b/DEVELOPERS
>> index 9283fa3af1..e5c3d0d39a 100644
>> --- a/DEVELOPERS
>> +++ b/DEVELOPERS
>> @@ -1227,6 +1227,7 @@ F: package/supervisor/
>>
>> N: Joris Offouga <offougajoris@gmail.com>
>> F: package/python-colorlog
>> +F: package/python-simplelogging
>>
>> N: J?rg Krause <joerg.krause@embedded.rocks>
>> F: board/lemaker/bananapro/
>> diff --git a/package/Config.in b/package/Config.in
>> index 84de744420..32f8572985 100644
>> --- a/package/Config.in
>> +++ b/package/Config.in
>> @@ -1070,6 +1070,7 @@ menu "External python modules"
>> source "package/python-simpleaudio/Config.in"
>> source "package/python-simplegeneric/Config.in"
>> source "package/python-simplejson/Config.in"
>> + source "package/python-simplelogging/Config.in"
>> source "package/python-simplesqlite/Config.in"
>> source "package/python-singledispatch/Config.in"
>> source "package/python-sip/Config.in"
>> diff --git a/package/python-simplelogging/Config.in b/package/python-simplelogging/Config.in
>> new file mode 100644
>> index 0000000000..db95efa25f
>> --- /dev/null
>> +++ b/package/python-simplelogging/Config.in
>> @@ -0,0 +1,7 @@
>> +config BR2_PACKAGE_PYTHON_SIMPLELOGGING
>> + bool "python-simplelogging"
>> + select BR2_PACKAGE_PYTHON_COLORLOG # runtime
>> + help
>> + Logging made simple, no excuse for any debug print call.
>> +
>> + https://github.com/vpoulailleau/simplelogging
>> diff --git a/package/python-simplelogging/python-simplelogging.hash b/package/python-simplelogging/python-simplelogging.hash
>> new file mode 100644
>> index 0000000000..86698fe88c
>> --- /dev/null
>> +++ b/package/python-simplelogging/python-simplelogging.hash
>> @@ -0,0 +1,5 @@
>> +# md5, sha256 from https://pypi.org/pypi/simplelogging/json
>> +md5 e3f9da393098d8fd8ebd8349a00692f2 simplelogging-0.10.0.tar.gz
>> +sha256 c070e0d82b68eff6918076a0edbf0a48b2c9a263854bd35f48a12c6adbbe9d80 simplelogging-0.10.0.tar.gz
>> +# Locally computed sha256 checksums
>> +sha256 bd2a0fe3b3bab7092ffa7f58d46bb05d98f12f107b3a6be947c098f7c2ad1d1a LICENSE
>> diff --git a/package/python-simplelogging/python-simplelogging.mk b/package/python-simplelogging/python-simplelogging.mk
>> new file mode 100644
>> index 0000000000..28acc5c952
>> --- /dev/null
>> +++ b/package/python-simplelogging/python-simplelogging.mk
>> @@ -0,0 +1,14 @@
>> +################################################################################
>> +#
>> +# python-simplelogging
>> +#
>> +################################################################################
>> +
>> +PYTHON_SIMPLELOGGING_VERSION = 0.10.0
>> +PYTHON_SIMPLELOGGING_SOURCE = simplelogging-$(PYTHON_SIMPLELOGGING_VERSION).tar.gz
>> +PYTHON_SIMPLELOGGING_SITE = https://files.pythonhosted.org/packages/17/85/3d2431f971e703916c7254e4560ed15451faedf2461eb484da9e1ebc5da6
>> +PYTHON_SIMPLELOGGING_SETUP_TYPE = setuptools
>> +PYTHON_SIMPLELOGGING_LICENSE = BSD-3-Clause
>> +PYTHON_SIMPLELOGGING_LICENSE_FILES = LICENSE
>> +
>> +$(eval $(python-package))
>> --
>> 2.20.1
> Could you mark the obsolete patch versiones as "Superceded" [1]. Thanks.
>
> [1] https://patchwork.ozlabs.org/project/buildroot/list/?submitter=75646
It's done
Joris
>
> Yegor
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH v4 2/2] package/python-simplelogging: new package
2019-09-16 16:23 [Buildroot] [PATCH v4 2/2] package/python-simplelogging: new package Joris Offouga
2019-09-17 13:52 ` Yegor Yefremov
@ 2019-09-19 21:26 ` Thomas Petazzoni
1 sibling, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2019-09-19 21:26 UTC (permalink / raw)
To: buildroot
On Mon, 16 Sep 2019 18:23:03 +0200
Joris Offouga <offougajoris@gmail.com> wrote:
> Simplelogging is easier implementation of logging.
>
> Signed-off-by: Joris Offouga <offougajoris@gmail.com>
> Reviewed-by: Yegor Yefremov <yegorslists@googlemail.com>
> ---
> Changes v3 -> v4
> Fix correct LICENSE type
> Add Reviewed-by
>
> DEVELOPERS | 1 +
> package/Config.in | 1 +
> package/python-simplelogging/Config.in | 7 +++++++
> .../python-simplelogging/python-simplelogging.hash | 5 +++++
> .../python-simplelogging/python-simplelogging.mk | 14 ++++++++++++++
> 5 files changed, 28 insertions(+)
> create mode 100644 package/python-simplelogging/Config.in
> create mode 100644 package/python-simplelogging/python-simplelogging.hash
> create mode 100644 package/python-simplelogging/python-simplelogging.mk
Applied to master, thanks.
Thomas
--
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2019-09-19 21:26 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-09-16 16:23 [Buildroot] [PATCH v4 2/2] package/python-simplelogging: new package Joris Offouga
2019-09-17 13:52 ` Yegor Yefremov
2019-09-17 18:29 ` Joris Offouga
2019-09-19 21:26 ` Thomas Petazzoni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox