All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 0/7] Add a gitlab macro
@ 2021-03-28 19:13 Thomas Petazzoni
  2021-03-28 19:13 ` [Buildroot] [PATCH 1/7] docs/manual: improve details about the Github macro Thomas Petazzoni
                   ` (7 more replies)
  0 siblings, 8 replies; 16+ messages in thread
From: Thomas Petazzoni @ 2021-03-28 19:13 UTC (permalink / raw)
  To: buildroot

Hello,

Here is a small patch series that adds a gitlab macro, similar to the
github macro. What prompted me to add this is a pending patch for a
package, which uses gitlab, but does a git clone instead of relying on
gitlab tarballs.

Hopefully, having a gitlab macro will make it more obvious how we
prefer to handle things.

This series also has a preparation patch improving some details about
the github macro.

Thanks,

Thomas

Thomas Petazzoni (7):
  docs/manual: improve details about the Github macro
  package/pkg-download.mk: add gitlab macro
  docs/manual: add documentation for the gitlab macro
  package/eigen: use gitlab macro
  package/frotz: use gitlab macro
  package/ipcalc: use gitlab macro
  package/libsoundtouch: use gitlab macro

 docs/manual/adding-packages-tips.txt   | 40 ++++++++++++++++++++++++--
 package/eigen/eigen.mk                 |  2 +-
 package/frotz/frotz.mk                 |  2 +-
 package/ipcalc/ipcalc.mk               |  2 +-
 package/libsoundtouch/libsoundtouch.mk |  2 +-
 package/pkg-download.mk                |  3 ++
 6 files changed, 45 insertions(+), 6 deletions(-)

-- 
2.30.2

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

* [Buildroot] [PATCH 1/7] docs/manual: improve details about the Github macro
  2021-03-28 19:13 [Buildroot] [PATCH 0/7] Add a gitlab macro Thomas Petazzoni
@ 2021-03-28 19:13 ` Thomas Petazzoni
  2021-04-03  7:46   ` Peter Korsgaard
  2021-03-28 19:13 ` [Buildroot] [PATCH 2/7] package/pkg-download.mk: add gitlab macro Thomas Petazzoni
                   ` (6 subsequent siblings)
  7 siblings, 1 reply; 16+ messages in thread
From: Thomas Petazzoni @ 2021-03-28 19:13 UTC (permalink / raw)
  To: buildroot

The Github macro example shows something that is now considered
incorrect: using v1.0 as the VERSION. This is not longer recommended
as it prevents from matching with release-monitoring.org details.

Let's update the example, and add a note to explain this in more
details.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
---
 docs/manual/adding-packages-tips.txt | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/docs/manual/adding-packages-tips.txt b/docs/manual/adding-packages-tips.txt
index 95a1d599ef..6e4241d570 100644
--- a/docs/manual/adding-packages-tips.txt
+++ b/docs/manual/adding-packages-tips.txt
@@ -174,8 +174,8 @@ past, the 'github' helper function should be used as shown below.
 
 ------------------------
 # Use a tag or a full commit ID
-FOO_VERSION = v1.0
-FOO_SITE = $(call github,<user>,<package>,$(FOO_VERSION))
+FOO_VERSION = 1.0
+FOO_SITE = $(call github,<user>,<package>,v$(FOO_VERSION))
 ------------------------
 
 .Notes
@@ -184,6 +184,12 @@ FOO_SITE = $(call github,<user>,<package>,$(FOO_VERSION))
   Buildroot (e.g.: +foo-f6fb6654af62045239caed5950bc6c7971965e60.tar.gz+),
   so it is not necessary to specify it in the +.mk+ file.
 - When using a commit ID as version, you should use the full 40 hex characters.
+- When the tag contains a prefix such as +v+ in +v1.0+, then the
+  +VERSION+ variable should contain just +1.0+, and the +v+ should be
+  added directly in the +SITE+ variable, as illustrated above. This
+  ensures that the +VERSION+ variable value can be used to match
+  against http://www.release-monitoring.org/[release-monitoring.org]
+  results.
 
 If the package you wish to add does have a release section on GitHub, the
 maintainer may have uploaded a release tarball, or the release may just point
-- 
2.30.2

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

* [Buildroot] [PATCH 2/7] package/pkg-download.mk: add gitlab macro
  2021-03-28 19:13 [Buildroot] [PATCH 0/7] Add a gitlab macro Thomas Petazzoni
  2021-03-28 19:13 ` [Buildroot] [PATCH 1/7] docs/manual: improve details about the Github macro Thomas Petazzoni
@ 2021-03-28 19:13 ` Thomas Petazzoni
  2021-04-03  7:48   ` Peter Korsgaard
  2021-03-28 19:13 ` [Buildroot] [PATCH 3/7] docs/manual: add documentation for the " Thomas Petazzoni
                   ` (5 subsequent siblings)
  7 siblings, 1 reply; 16+ messages in thread
From: Thomas Petazzoni @ 2021-03-28 19:13 UTC (permalink / raw)
  To: buildroot

Just like we have a "github" macro to calculate the URL of the tarball
to download source from Github, let's introduce a similar macro for
Gitlab.

This should be used to download the auto-generated tarballs from
Gitlab. If there is a specific release tarball uploaded by the
upstream developers, the <pkg>_SITE variable should not use this new
gitlab macro.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
---
 package/pkg-download.mk | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/package/pkg-download.mk b/package/pkg-download.mk
index 4d97ef9a31..2527ba5c60 100644
--- a/package/pkg-download.mk
+++ b/package/pkg-download.mk
@@ -61,6 +61,9 @@ domainseparator = $(if $(1),$(1),/)
 # github(user,package,version): returns site of GitHub repository
 github = https://github.com/$(1)/$(2)/archive/$(3)
 
+# gitlab(user,package,version): returns site of Gitlab-generated tarball
+gitlab = https://gitlab.com/$(1)/$(2)/-/archive/$(3)
+
 # Expressly do not check hashes for those files
 # Exported variables default to immediately expanded in some versions of
 # make, but we need it to be recursively-epxanded, so explicitly assign it.
-- 
2.30.2

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

* [Buildroot] [PATCH 3/7] docs/manual: add documentation for the gitlab macro
  2021-03-28 19:13 [Buildroot] [PATCH 0/7] Add a gitlab macro Thomas Petazzoni
  2021-03-28 19:13 ` [Buildroot] [PATCH 1/7] docs/manual: improve details about the Github macro Thomas Petazzoni
  2021-03-28 19:13 ` [Buildroot] [PATCH 2/7] package/pkg-download.mk: add gitlab macro Thomas Petazzoni
@ 2021-03-28 19:13 ` Thomas Petazzoni
  2021-04-03  7:48   ` Peter Korsgaard
  2021-03-28 19:13 ` [Buildroot] [PATCH 4/7] package/eigen: use " Thomas Petazzoni
                   ` (4 subsequent siblings)
  7 siblings, 1 reply; 16+ messages in thread
From: Thomas Petazzoni @ 2021-03-28 19:13 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
---
 docs/manual/adding-packages-tips.txt | 30 ++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/docs/manual/adding-packages-tips.txt b/docs/manual/adding-packages-tips.txt
index 6e4241d570..d8c2eceb10 100644
--- a/docs/manual/adding-packages-tips.txt
+++ b/docs/manual/adding-packages-tips.txt
@@ -210,3 +210,33 @@ image::github_hash_mongrel2.png[]
 - On the other hand, if there's is *only* the "Source code" link, then
   it's an automatically generated tarball and you should use the
   'github' helper function.
+
+[[gitlab-download-url]]
+==== How to add a package from Gitlab
+
+In a similar way to the +github+ macro described in
+xref:github-download-url[], Buildroot also provides the +gitlab+ macro
+to download from Gitlab repositories. It can be used to download
+auto-generated tarballs produced by Gitlab, either for specific tags
+or commits:
+
+------------------------
+# Use a tag or a full commit ID
+FOO_VERSION = 1.0
+FOO_SITE = $(call gitlab,<user>,<package>,v$(FOO_VERSION))
+------------------------
+
+By default, it will use a +.tar.gz+ tarball, but Gitlab also provides
++.tar.bz2+ tarballs, so by adding a +<pkg>_SOURCE+ variable, this
++.tar.bz2+ tarball can be used:
+
+------------------------
+# Use a tag or a full commit ID
+FOO_VERSION = 1.0
+FOO_SITE = $(call gitlab,<user>,<package>,v$(FOO_VERSION))
+FOO_SOURCE = foo-$(FOO_VERSION).tar.bz2
+------------------------
+
+If there is a specific tarball uploaded by the upstream developers in
++https://gitlab.com/<project>/releases/+, do not use this macro, but
+rather use directly the link to the tarball.
-- 
2.30.2

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

* [Buildroot] [PATCH 4/7] package/eigen: use gitlab macro
  2021-03-28 19:13 [Buildroot] [PATCH 0/7] Add a gitlab macro Thomas Petazzoni
                   ` (2 preceding siblings ...)
  2021-03-28 19:13 ` [Buildroot] [PATCH 3/7] docs/manual: add documentation for the " Thomas Petazzoni
@ 2021-03-28 19:13 ` Thomas Petazzoni
  2021-04-03  7:48   ` Peter Korsgaard
  2021-03-28 19:13 ` [Buildroot] [PATCH 5/7] package/frotz: " Thomas Petazzoni
                   ` (3 subsequent siblings)
  7 siblings, 1 reply; 16+ messages in thread
From: Thomas Petazzoni @ 2021-03-28 19:13 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
---
 package/eigen/eigen.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/eigen/eigen.mk b/package/eigen/eigen.mk
index 1645489717..c9998da357 100644
--- a/package/eigen/eigen.mk
+++ b/package/eigen/eigen.mk
@@ -6,7 +6,7 @@
 
 EIGEN_VERSION = 3.3.7
 EIGEN_SOURCE = eigen-$(EIGEN_VERSION).tar.bz2
-EIGEN_SITE = https://gitlab.com/libeigen/eigen/-/archive/$(EIGEN_VERSION)
+EIGEN_SITE = $(call gitlab,libeigen,eigen,$(EIGEN_VERSION))
 EIGEN_LICENSE = MPL2, BSD-3-Clause, LGPL-2.1
 EIGEN_LICENSE_FILES = COPYING.MPL2 COPYING.BSD COPYING.LGPL COPYING.README
 EIGEN_INSTALL_STAGING = YES
-- 
2.30.2

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

* [Buildroot] [PATCH 5/7] package/frotz: use gitlab macro
  2021-03-28 19:13 [Buildroot] [PATCH 0/7] Add a gitlab macro Thomas Petazzoni
                   ` (3 preceding siblings ...)
  2021-03-28 19:13 ` [Buildroot] [PATCH 4/7] package/eigen: use " Thomas Petazzoni
@ 2021-03-28 19:13 ` Thomas Petazzoni
  2021-04-03  7:48   ` Peter Korsgaard
  2021-03-28 19:13 ` [Buildroot] [PATCH 6/7] package/ipcalc: " Thomas Petazzoni
                   ` (2 subsequent siblings)
  7 siblings, 1 reply; 16+ messages in thread
From: Thomas Petazzoni @ 2021-03-28 19:13 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
---
 package/frotz/frotz.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/frotz/frotz.mk b/package/frotz/frotz.mk
index cc0421358c..c1362b2ac6 100644
--- a/package/frotz/frotz.mk
+++ b/package/frotz/frotz.mk
@@ -6,7 +6,7 @@
 
 FROTZ_VERSION = 2.53
 FROTZ_SOURCE = frotz-$(FROTZ_VERSION).tar.bz2
-FROTZ_SITE = https://gitlab.com/DavidGriffith/frotz/-/archive/$(FROTZ_VERSION)
+FROTZ_SITE = $(call gitlab,DavidGriffith,frotz,$(FROTZ_VERSION))
 FROTZ_DEPENDENCIES = host-pkgconf ncurses
 FROTZ_LICENSE = GPL-2.0+
 FROTZ_LICENSE_FILES = COPYING
-- 
2.30.2

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

* [Buildroot] [PATCH 6/7] package/ipcalc: use gitlab macro
  2021-03-28 19:13 [Buildroot] [PATCH 0/7] Add a gitlab macro Thomas Petazzoni
                   ` (4 preceding siblings ...)
  2021-03-28 19:13 ` [Buildroot] [PATCH 5/7] package/frotz: " Thomas Petazzoni
@ 2021-03-28 19:13 ` Thomas Petazzoni
  2021-04-03  7:48   ` Peter Korsgaard
  2021-03-28 19:13 ` [Buildroot] [PATCH 7/7] package/libsoundtouch: " Thomas Petazzoni
  2021-03-28 20:48 ` [Buildroot] [PATCH 0/7] Add a " Yann E. MORIN
  7 siblings, 1 reply; 16+ messages in thread
From: Thomas Petazzoni @ 2021-03-28 19:13 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
---
 package/ipcalc/ipcalc.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/ipcalc/ipcalc.mk b/package/ipcalc/ipcalc.mk
index c4ce8b9ceb..ff9d643389 100644
--- a/package/ipcalc/ipcalc.mk
+++ b/package/ipcalc/ipcalc.mk
@@ -5,7 +5,7 @@
 ################################################################################
 
 IPCALC_VERSION = 1.0.0
-IPCALC_SITE = https://gitlab.com/ipcalc/ipcalc/-/archive/$(IPCALC_VERSION)
+IPCALC_SITE = $(call gitlab,ipcalc,ipcalc,$(IPCALC_VERSION))
 IPCALC_SOURCE = ipcalc-$(IPCALC_VERSION).tar.bz2
 IPCALC_LICENSE = GPL-2.0+
 IPCALC_LICENSE_FILES = COPYING
-- 
2.30.2

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

* [Buildroot] [PATCH 7/7] package/libsoundtouch: use gitlab macro
  2021-03-28 19:13 [Buildroot] [PATCH 0/7] Add a gitlab macro Thomas Petazzoni
                   ` (5 preceding siblings ...)
  2021-03-28 19:13 ` [Buildroot] [PATCH 6/7] package/ipcalc: " Thomas Petazzoni
@ 2021-03-28 19:13 ` Thomas Petazzoni
  2021-04-03  7:49   ` Peter Korsgaard
  2021-03-28 20:48 ` [Buildroot] [PATCH 0/7] Add a " Yann E. MORIN
  7 siblings, 1 reply; 16+ messages in thread
From: Thomas Petazzoni @ 2021-03-28 19:13 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
---
 package/libsoundtouch/libsoundtouch.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/libsoundtouch/libsoundtouch.mk b/package/libsoundtouch/libsoundtouch.mk
index 98b5cc75b3..8a0e807d7a 100644
--- a/package/libsoundtouch/libsoundtouch.mk
+++ b/package/libsoundtouch/libsoundtouch.mk
@@ -5,7 +5,7 @@
 ################################################################################
 
 LIBSOUNDTOUCH_VERSION = 2.2
-LIBSOUNDTOUCH_SITE = https://gitlab.com/soundtouch/soundtouch/-/archive/$(LIBSOUNDTOUCH_VERSION)
+LIBSOUNDTOUCH_SITE = $(call gitlab,soundtouch,soundtouch,$(LIBSOUNDTOUCH_VERSION))
 LIBSOUNDTOUCH_LICENSE = LGPL-2.1+
 LIBSOUNDTOUCH_LICENSE_FILES = COPYING.TXT
 LIBSOUNDTOUCH_AUTORECONF = YES
-- 
2.30.2

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

* [Buildroot] [PATCH 0/7] Add a gitlab macro
  2021-03-28 19:13 [Buildroot] [PATCH 0/7] Add a gitlab macro Thomas Petazzoni
                   ` (6 preceding siblings ...)
  2021-03-28 19:13 ` [Buildroot] [PATCH 7/7] package/libsoundtouch: " Thomas Petazzoni
@ 2021-03-28 20:48 ` Yann E. MORIN
  7 siblings, 0 replies; 16+ messages in thread
From: Yann E. MORIN @ 2021-03-28 20:48 UTC (permalink / raw)
  To: buildroot

Thomas, All,

On 2021-03-28 21:13 +0200, Thomas Petazzoni spake thusly:
> Here is a small patch series that adds a gitlab macro, similar to the
> github macro. What prompted me to add this is a pending patch for a
> package, which uses gitlab, but does a git clone instead of relying on
> gitlab tarballs.

Although tht is my personal preferenc, to use the git download backend
for git-hosted source, rather than use remotely generated tarballs, I've
still applied the entire series as-is, because that makes gitlab on-par
with github, and the consensus among mantainers was not clear-cut.

Still, I'd like to remind everyone that git trees are cached lcoally,
which may make for a slower first-step, but is supposed to gfreatly
increase subsequent downloads and updates. The local git cache has been
quite some work, and not usign it is quite a bit of a waste..

Anyway: entire series applied, thanks!

Regards,
Yann E. MORIN.

> Hopefully, having a gitlab macro will make it more obvious how we
> prefer to handle things.
> 
> This series also has a preparation patch improving some details about
> the github macro.
> 
> Thanks,
> 
> Thomas
> 
> Thomas Petazzoni (7):
>   docs/manual: improve details about the Github macro
>   package/pkg-download.mk: add gitlab macro
>   docs/manual: add documentation for the gitlab macro
>   package/eigen: use gitlab macro
>   package/frotz: use gitlab macro
>   package/ipcalc: use gitlab macro
>   package/libsoundtouch: use gitlab macro
> 
>  docs/manual/adding-packages-tips.txt   | 40 ++++++++++++++++++++++++--
>  package/eigen/eigen.mk                 |  2 +-
>  package/frotz/frotz.mk                 |  2 +-
>  package/ipcalc/ipcalc.mk               |  2 +-
>  package/libsoundtouch/libsoundtouch.mk |  2 +-
>  package/pkg-download.mk                |  3 ++
>  6 files changed, 45 insertions(+), 6 deletions(-)
> 
> -- 
> 2.30.2
> 
> _______________________________________________
> 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] 16+ messages in thread

* [Buildroot] [PATCH 1/7] docs/manual: improve details about the Github macro
  2021-03-28 19:13 ` [Buildroot] [PATCH 1/7] docs/manual: improve details about the Github macro Thomas Petazzoni
@ 2021-04-03  7:46   ` Peter Korsgaard
  0 siblings, 0 replies; 16+ messages in thread
From: Peter Korsgaard @ 2021-04-03  7:46 UTC (permalink / raw)
  To: buildroot

>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@bootlin.com> writes:

 > The Github macro example shows something that is now considered
 > incorrect: using v1.0 as the VERSION. This is not longer recommended
 > as it prevents from matching with release-monitoring.org details.

 > Let's update the example, and add a note to explain this in more
 > details.

 > Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>

Committed to 2020.02.x, 2020.11.x and 2021.02.x, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 2/7] package/pkg-download.mk: add gitlab macro
  2021-03-28 19:13 ` [Buildroot] [PATCH 2/7] package/pkg-download.mk: add gitlab macro Thomas Petazzoni
@ 2021-04-03  7:48   ` Peter Korsgaard
  0 siblings, 0 replies; 16+ messages in thread
From: Peter Korsgaard @ 2021-04-03  7:48 UTC (permalink / raw)
  To: buildroot

>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@bootlin.com> writes:

 > Just like we have a "github" macro to calculate the URL of the tarball
 > to download source from Github, let's introduce a similar macro for
 > Gitlab.

 > This should be used to download the auto-generated tarballs from
 > Gitlab. If there is a specific release tarball uploaded by the
 > upstream developers, the <pkg>_SITE variable should not use this new
 > gitlab macro.

 > Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>

Committed to 2021.02.x for easier backporting in the future, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 3/7] docs/manual: add documentation for the gitlab macro
  2021-03-28 19:13 ` [Buildroot] [PATCH 3/7] docs/manual: add documentation for the " Thomas Petazzoni
@ 2021-04-03  7:48   ` Peter Korsgaard
  0 siblings, 0 replies; 16+ messages in thread
From: Peter Korsgaard @ 2021-04-03  7:48 UTC (permalink / raw)
  To: buildroot

>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@bootlin.com> writes:

 > Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>

Committed to 2021.02.x, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 4/7] package/eigen: use gitlab macro
  2021-03-28 19:13 ` [Buildroot] [PATCH 4/7] package/eigen: use " Thomas Petazzoni
@ 2021-04-03  7:48   ` Peter Korsgaard
  0 siblings, 0 replies; 16+ messages in thread
From: Peter Korsgaard @ 2021-04-03  7:48 UTC (permalink / raw)
  To: buildroot

>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@bootlin.com> writes:

 > Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>

Committed to 2021.02.x, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 5/7] package/frotz: use gitlab macro
  2021-03-28 19:13 ` [Buildroot] [PATCH 5/7] package/frotz: " Thomas Petazzoni
@ 2021-04-03  7:48   ` Peter Korsgaard
  0 siblings, 0 replies; 16+ messages in thread
From: Peter Korsgaard @ 2021-04-03  7:48 UTC (permalink / raw)
  To: buildroot

>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@bootlin.com> writes:

 > Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>

Committed to 2021.02.x, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 6/7] package/ipcalc: use gitlab macro
  2021-03-28 19:13 ` [Buildroot] [PATCH 6/7] package/ipcalc: " Thomas Petazzoni
@ 2021-04-03  7:48   ` Peter Korsgaard
  0 siblings, 0 replies; 16+ messages in thread
From: Peter Korsgaard @ 2021-04-03  7:48 UTC (permalink / raw)
  To: buildroot

>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@bootlin.com> writes:

 > Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>

Committed to 2021.02.x, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 7/7] package/libsoundtouch: use gitlab macro
  2021-03-28 19:13 ` [Buildroot] [PATCH 7/7] package/libsoundtouch: " Thomas Petazzoni
@ 2021-04-03  7:49   ` Peter Korsgaard
  0 siblings, 0 replies; 16+ messages in thread
From: Peter Korsgaard @ 2021-04-03  7:49 UTC (permalink / raw)
  To: buildroot

>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@bootlin.com> writes:

 > Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>

Committed to 2021.02.x, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2021-04-03  7:49 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-28 19:13 [Buildroot] [PATCH 0/7] Add a gitlab macro Thomas Petazzoni
2021-03-28 19:13 ` [Buildroot] [PATCH 1/7] docs/manual: improve details about the Github macro Thomas Petazzoni
2021-04-03  7:46   ` Peter Korsgaard
2021-03-28 19:13 ` [Buildroot] [PATCH 2/7] package/pkg-download.mk: add gitlab macro Thomas Petazzoni
2021-04-03  7:48   ` Peter Korsgaard
2021-03-28 19:13 ` [Buildroot] [PATCH 3/7] docs/manual: add documentation for the " Thomas Petazzoni
2021-04-03  7:48   ` Peter Korsgaard
2021-03-28 19:13 ` [Buildroot] [PATCH 4/7] package/eigen: use " Thomas Petazzoni
2021-04-03  7:48   ` Peter Korsgaard
2021-03-28 19:13 ` [Buildroot] [PATCH 5/7] package/frotz: " Thomas Petazzoni
2021-04-03  7:48   ` Peter Korsgaard
2021-03-28 19:13 ` [Buildroot] [PATCH 6/7] package/ipcalc: " Thomas Petazzoni
2021-04-03  7:48   ` Peter Korsgaard
2021-03-28 19:13 ` [Buildroot] [PATCH 7/7] package/libsoundtouch: " Thomas Petazzoni
2021-04-03  7:49   ` Peter Korsgaard
2021-03-28 20:48 ` [Buildroot] [PATCH 0/7] Add a " Yann E. MORIN

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.