All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] docs: fix $(PKG)_SITE_METHOD names (UPPER CASE => lower case)
@ 2011-02-01 22:22 Bjørn Forsman
  2011-02-01 22:22 ` [Buildroot] [PATCH 2/2] docs: add missing info about Bazaar (bzr) download method Bjørn Forsman
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Bjørn Forsman @ 2011-02-01 22:22 UTC (permalink / raw)
  To: buildroot

Currently, the documentation says $(PKG)_SITE_METHOD should have upper
case names such as SVN or GIT, but the implementation only accepts lower
case svn or git. This fixes the documentation.

Signed-off-by: Bj?rn Forsman <bjorn.forsman@gmail.com>
---
 docs/buildroot.html |   14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/docs/buildroot.html b/docs/buildroot.html
index 36297e0..de6b1d7 100644
--- a/docs/buildroot.html
+++ b/docs/buildroot.html
@@ -1060,17 +1060,17 @@ $(eval $(call GENTARGETS,package,libfoo,host))
 
       <li><code>LIBFOO_SITE_METHOD</code> may contain the method to
       fetch the package source code. It can either
-      be <code>WGET</code> (for normal FTP/HTTP downloads of
-      tarballs), <code>SVN</code> or <code>GIT</code>. When not
+      be <code>wget</code> (for normal FTP/HTTP downloads of
+      tarballs), <code>svn</code> or <code>git</code>. When not
       specified, it is guessed from the URL given
       in <code>LIBFOO_SITE</code>: <code>git://</code>
-      and <code>svn://</code> URLs will use the <code>GIT</code>
-      and <code>SVN</code> methods respectively. All other URL-types
-      will use the <code>WGET</code> method. So for example, in the
+      and <code>svn://</code> URLs will use the <code>git</code>
+      and <code>svn</code> methods respectively. All other URL-types
+      will use the <code>wget</code> method. So for example, in the
       case of a package whose source code is available through
       Subversion repository on HTTP, one <i>must</i>
-      specifiy <code>LIBFOO_SITE_METHOD=SVN</code>. For <code>SVN</code>
-      and <code>GIT</code> methods, what Buildroot does is a
+      specifiy <code>LIBFOO_SITE_METHOD=svn</code>. For <code>svn</code>
+      and <code>git</code> methods, what Buildroot does is a
       checkout/clone of the repository which is then tarballed and
       stored into the download cache. Next builds will not
       checkout/clone again, but will use the tarball
-- 
1.7.1

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

* [Buildroot] [PATCH 2/2] docs: add missing info about Bazaar (bzr) download method
  2011-02-01 22:22 [Buildroot] [PATCH 1/2] docs: fix $(PKG)_SITE_METHOD names (UPPER CASE => lower case) Bjørn Forsman
@ 2011-02-01 22:22 ` Bjørn Forsman
  2011-02-06 16:51   ` Bjørn Forsman
  2011-02-06 18:03   ` Thomas Petazzoni
  2011-02-06 16:49 ` [Buildroot] [PATCH 1/2] docs: fix $(PKG)_SITE_METHOD names (UPPER CASE => lower case) Bjørn Forsman
  2011-02-06 18:03 ` Thomas Petazzoni
  2 siblings, 2 replies; 7+ messages in thread
From: Bjørn Forsman @ 2011-02-01 22:22 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Bj?rn Forsman <bjorn.forsman@gmail.com>
---
 docs/buildroot.html |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/docs/buildroot.html b/docs/buildroot.html
index de6b1d7..67c82a7 100644
--- a/docs/buildroot.html
+++ b/docs/buildroot.html
@@ -1061,12 +1061,12 @@ $(eval $(call GENTARGETS,package,libfoo,host))
       <li><code>LIBFOO_SITE_METHOD</code> may contain the method to
       fetch the package source code. It can either
       be <code>wget</code> (for normal FTP/HTTP downloads of
-      tarballs), <code>svn</code> or <code>git</code>. When not
-      specified, it is guessed from the URL given
-      in <code>LIBFOO_SITE</code>: <code>git://</code>
-      and <code>svn://</code> URLs will use the <code>git</code>
-      and <code>svn</code> methods respectively. All other URL-types
-      will use the <code>wget</code> method. So for example, in the
+      tarballs), <code>svn</code>, <code>git</code> or <code>bzr</code>.
+      When not specified, it is guessed from the URL given
+      in <code>LIBFOO_SITE</code>: <code>svn://</code>, <code>git://</code>
+      and <code>bzr://</code> URLs will use the <code>svn</code>,
+      <code>git</code> and <code>bzr</code> methods respectively. All other
+      URL-types will use the <code>wget</code> method. So for example, in the
       case of a package whose source code is available through
       Subversion repository on HTTP, one <i>must</i>
       specifiy <code>LIBFOO_SITE_METHOD=svn</code>. For <code>svn</code>
-- 
1.7.1

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

* [Buildroot] [PATCH 1/2] docs: fix $(PKG)_SITE_METHOD names (UPPER CASE => lower case)
  2011-02-01 22:22 [Buildroot] [PATCH 1/2] docs: fix $(PKG)_SITE_METHOD names (UPPER CASE => lower case) Bjørn Forsman
  2011-02-01 22:22 ` [Buildroot] [PATCH 2/2] docs: add missing info about Bazaar (bzr) download method Bjørn Forsman
@ 2011-02-06 16:49 ` Bjørn Forsman
  2011-02-06 18:03 ` Thomas Petazzoni
  2 siblings, 0 replies; 7+ messages in thread
From: Bjørn Forsman @ 2011-02-06 16:49 UTC (permalink / raw)
  To: buildroot

2011/2/1 Bj?rn Forsman <bjorn.forsman@gmail.com>:
> Currently, the documentation says $(PKG)_SITE_METHOD should have upper
> case names such as SVN or GIT, but the implementation only accepts lower
> case svn or git. This fixes the documentation.

Ping?

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

* [Buildroot] [PATCH 2/2] docs: add missing info about Bazaar (bzr) download method
  2011-02-01 22:22 ` [Buildroot] [PATCH 2/2] docs: add missing info about Bazaar (bzr) download method Bjørn Forsman
@ 2011-02-06 16:51   ` Bjørn Forsman
  2011-02-06 18:03   ` Thomas Petazzoni
  1 sibling, 0 replies; 7+ messages in thread
From: Bjørn Forsman @ 2011-02-06 16:51 UTC (permalink / raw)
  To: buildroot

2011/2/1 Bj?rn Forsman <bjorn.forsman@gmail.com>:
> Signed-off-by: Bj?rn Forsman <bjorn.forsman@gmail.com>
> ---
> ?docs/buildroot.html | ? 12 ++++++------
> ?1 files changed, 6 insertions(+), 6 deletions(-)

[snip]

Ping?

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

* [Buildroot] [PATCH 1/2] docs: fix $(PKG)_SITE_METHOD names (UPPER CASE => lower case)
  2011-02-01 22:22 [Buildroot] [PATCH 1/2] docs: fix $(PKG)_SITE_METHOD names (UPPER CASE => lower case) Bjørn Forsman
  2011-02-01 22:22 ` [Buildroot] [PATCH 2/2] docs: add missing info about Bazaar (bzr) download method Bjørn Forsman
  2011-02-06 16:49 ` [Buildroot] [PATCH 1/2] docs: fix $(PKG)_SITE_METHOD names (UPPER CASE => lower case) Bjørn Forsman
@ 2011-02-06 18:03 ` Thomas Petazzoni
  2 siblings, 0 replies; 7+ messages in thread
From: Thomas Petazzoni @ 2011-02-06 18:03 UTC (permalink / raw)
  To: buildroot

On Tue,  1 Feb 2011 23:22:39 +0100
Bj?rn Forsman <bjorn.forsman@gmail.com> wrote:

> Currently, the documentation says $(PKG)_SITE_METHOD should have upper
> case names such as SVN or GIT, but the implementation only accepts
> lower case svn or git. This fixes the documentation.
> 
> Signed-off-by: Bj?rn Forsman <bjorn.forsman@gmail.com>

Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>

Thanks,

Thomas
-- 
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

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

* [Buildroot] [PATCH 2/2] docs: add missing info about Bazaar (bzr) download method
  2011-02-01 22:22 ` [Buildroot] [PATCH 2/2] docs: add missing info about Bazaar (bzr) download method Bjørn Forsman
  2011-02-06 16:51   ` Bjørn Forsman
@ 2011-02-06 18:03   ` Thomas Petazzoni
  2011-02-06 18:42     ` Daniel Nyström
  1 sibling, 1 reply; 7+ messages in thread
From: Thomas Petazzoni @ 2011-02-06 18:03 UTC (permalink / raw)
  To: buildroot

On Tue,  1 Feb 2011 23:22:40 +0100
Bj?rn Forsman <bjorn.forsman@gmail.com> wrote:

> Signed-off-by: Bj?rn Forsman <bjorn.forsman@gmail.com>

Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>

Thanks,

Thomas
-- 
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

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

* [Buildroot] [PATCH 2/2] docs: add missing info about Bazaar (bzr) download method
  2011-02-06 18:03   ` Thomas Petazzoni
@ 2011-02-06 18:42     ` Daniel Nyström
  0 siblings, 0 replies; 7+ messages in thread
From: Daniel Nyström @ 2011-02-06 18:42 UTC (permalink / raw)
  To: buildroot

2011/2/6 Thomas Petazzoni <thomas.petazzoni@free-electrons.com>:
> On Tue, ?1 Feb 2011 23:22:40 +0100
> Bj?rn Forsman <bjorn.forsman@gmail.com> wrote:
>
>> Signed-off-by: Bj?rn Forsman <bjorn.forsman@gmail.com>
>
> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>

Signed-off-by: Daniel Nystr?m <daniel.nystrom@timeterminal.se>

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

end of thread, other threads:[~2011-02-06 18:42 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-02-01 22:22 [Buildroot] [PATCH 1/2] docs: fix $(PKG)_SITE_METHOD names (UPPER CASE => lower case) Bjørn Forsman
2011-02-01 22:22 ` [Buildroot] [PATCH 2/2] docs: add missing info about Bazaar (bzr) download method Bjørn Forsman
2011-02-06 16:51   ` Bjørn Forsman
2011-02-06 18:03   ` Thomas Petazzoni
2011-02-06 18:42     ` Daniel Nyström
2011-02-06 16:49 ` [Buildroot] [PATCH 1/2] docs: fix $(PKG)_SITE_METHOD names (UPPER CASE => lower case) Bjørn Forsman
2011-02-06 18:03 ` Thomas Petazzoni

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.