Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/3] docs/website: move Git repository to Gitlab
@ 2023-09-30  8:25 Thomas Petazzoni via buildroot
  2023-09-30  8:25 ` [Buildroot] [PATCH 2/3] docs/website: remove mention of snapshot tarballs Thomas Petazzoni via buildroot
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Thomas Petazzoni via buildroot @ 2023-09-30  8:25 UTC (permalink / raw)
  To: buildroot; +Cc: Thomas Petazzoni

We're now using Gitlab as our official Git repository, so let's update
the website accordingly. Gitlab only provides https:// access, so drop
the explanation about the Git native protocol being more efficient
than HTTP (also because that's no longer true).

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
---
 docs/website/download.html | 26 +++-----------------------
 1 file changed, 3 insertions(+), 23 deletions(-)

diff --git a/docs/website/download.html b/docs/website/download.html
index c1fd38998c..7d7b405a61 100644
--- a/docs/website/download.html
+++ b/docs/website/download.html
@@ -124,14 +124,14 @@
 	  <div class="panel panel-success">
 	    <div class="panel-heading">Repository</div>
 	    <div class="panel-body">
-	      <P>The buildroot repository can be browsed online through cgit at
-		<a href="http://git.buildroot.net/buildroot/">http://git.buildroot.net/buildroot</a>.
+	      <P>The buildroot repository can be browsed online at
+		<a href="https://gitlab.com/buildroot.org/buildroot/">https://gitlab.com/buildroot.org/buildroot/</a>.
 		To grab a copy of the repository use</p>
 
 
 	      <div class="input-group" style="width: 100%;">
 		<input class="form-control" style="width: 85%;" id="giturl"
-		       value="git clone git://git.buildroot.net/buildroot" type="text" readonly></input>
+		       value="git clone https://gitlab.com/buildroot.org/buildroot.git" type="text" readonly></input>
 		<span class="input-group-button">
 		  <button class="btn pull-right" type="button" data-clipboard-target="#giturl"
 			  data-toggle="tooltip" data-placement="bottom" data-trigger="manual" title="Copied!">
@@ -140,26 +140,6 @@
 		</span>
 	      </div><br>
 
-	      <p>
-		Or if you're behind a firewall blocking git:
-	      </p>
-
-	      <div class="input-group" style="width: 100%;">
-		<input class="form-control" style="width: 85%;" id="giturlhttps"
-		       value="git clone https://git.buildroot.net/buildroot" type="text" readonly></input>
-		<span class="input-group-button">
-		  <button class="btn pull-right" type="button" data-clipboard-target="#giturlhttps"
-			  data-toggle="tooltip" data-placement="bottom" data-trigger="click" title="Copied!">
-		    <img class="clippy" src="images/clippy.svg" alt="Copy to clipboard" width="13">
-		  </button>
-		</span>
-	      </div><br>
-
-	      <p>
-
-		Please use the native git protocol if at all possible, as it's a lot
-		more efficient than HTTP.
-
 	      <p>
 
 		If you are not already familiar with using Git, we recommend you visit <a
-- 
2.41.0

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* [Buildroot] [PATCH 2/3] docs/website: remove mention of snapshot tarballs
  2023-09-30  8:25 [Buildroot] [PATCH 1/3] docs/website: move Git repository to Gitlab Thomas Petazzoni via buildroot
@ 2023-09-30  8:25 ` Thomas Petazzoni via buildroot
  2023-09-30  8:25 ` [Buildroot] [PATCH 3/3] docs/website: simplify section on Git repo Thomas Petazzoni via buildroot
  2023-09-30 13:58 ` [Buildroot] [PATCH 1/3] docs/website: move Git repository to Gitlab Yann E. MORIN
  2 siblings, 0 replies; 4+ messages in thread
From: Thomas Petazzoni via buildroot @ 2023-09-30  8:25 UTC (permalink / raw)
  To: buildroot; +Cc: Thomas Petazzoni

In a Git era, those snapshot tarballs are no longer relevant, so drop
it.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
---
 docs/website/download.html | 24 ------------------------
 1 file changed, 24 deletions(-)

diff --git a/docs/website/download.html b/docs/website/download.html
index 7d7b405a61..91ad4c7547 100644
--- a/docs/website/download.html
+++ b/docs/website/download.html
@@ -162,30 +162,6 @@ git pull
 	  </div>
 	</div>
 
-	<div class="col-sm-5">
-	  <div class="panel panel-default	">
-	    <div class="panel-heading">Tarballs</div>
-	    <div class="panel-body">
-	      You can also obtain daily snapshots of the latest Buildroot source tree if you
-	      want to follow development, but cannot or do not wish to use Git.
-
-	      <ul>
-		<li>You can download the
-		  <a href="downloads/snapshots/buildroot-snapshot.tar.bz2">latest snapshot
-		  </a> or view recent <a href="downloads/snapshots/">daily snapshots</a>.
-		</li>
-
-		<li>You can also <a href="http://git.buildroot.net/buildroot">browse the
-		    source tree online</a>.
-		</li>
-	      </ul>
-
-	      <p>
-		Older versions can be downloaded from <a href="/downloads/">the release archive</a>.
-	      </p>
-	    </div>
-	  </div>
-	</div>
       </div>
     </div>
   </div>
-- 
2.41.0

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* [Buildroot] [PATCH 3/3] docs/website: simplify section on Git repo
  2023-09-30  8:25 [Buildroot] [PATCH 1/3] docs/website: move Git repository to Gitlab Thomas Petazzoni via buildroot
  2023-09-30  8:25 ` [Buildroot] [PATCH 2/3] docs/website: remove mention of snapshot tarballs Thomas Petazzoni via buildroot
@ 2023-09-30  8:25 ` Thomas Petazzoni via buildroot
  2023-09-30 13:58 ` [Buildroot] [PATCH 1/3] docs/website: move Git repository to Gitlab Yann E. MORIN
  2 siblings, 0 replies; 4+ messages in thread
From: Thomas Petazzoni via buildroot @ 2023-09-30  8:25 UTC (permalink / raw)
  To: buildroot; +Cc: Thomas Petazzoni

Now that the snapshot tarball section is gone, the "Source code" block
has only one sub-block "Repository" which makes it look odd. So bring
the sub-block content into the parent block, and rename this parent
block "Git repository".

As this requires re-indenting the whole HTML soup, take advantage of
this to use <p>...</p> in a more correct manner.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
---
 docs/website/download.html | 78 +++++++++++++++++---------------------
 1 file changed, 34 insertions(+), 44 deletions(-)

diff --git a/docs/website/download.html b/docs/website/download.html
index 91ad4c7547..f1c187bc90 100644
--- a/docs/website/download.html
+++ b/docs/website/download.html
@@ -116,53 +116,43 @@
   </div>
 
   <div class="panel panel-primary">
-    <div class="panel-heading">Source code</div>
+    <div class="panel-heading">Git repository</div>
     <div class="panel-body">
 
-      <div class="row">
-	<div class="col-sm-7">
-	  <div class="panel panel-success">
-	    <div class="panel-heading">Repository</div>
-	    <div class="panel-body">
-	      <P>The buildroot repository can be browsed online at
-		<a href="https://gitlab.com/buildroot.org/buildroot/">https://gitlab.com/buildroot.org/buildroot/</a>.
-		To grab a copy of the repository use</p>
-
-
-	      <div class="input-group" style="width: 100%;">
-		<input class="form-control" style="width: 85%;" id="giturl"
-		       value="git clone https://gitlab.com/buildroot.org/buildroot.git" type="text" readonly></input>
-		<span class="input-group-button">
-		  <button class="btn pull-right" type="button" data-clipboard-target="#giturl"
-			  data-toggle="tooltip" data-placement="bottom" data-trigger="manual" title="Copied!">
-		    <img class="clippy" src="images/clippy.svg" alt="Copy to clipboard" width="13">
-		  </button>
-		</span>
-	      </div><br>
-
-	      <p>
-
-		If you are not already familiar with using Git, we recommend you visit <a
-											  href="http://git-scm.org">the Git website</a>.
-
-	      <p>
-
-		Once you've checked out a copy of the source tree, you can update your source
-		tree at any time so it is in sync with the latest and greatest by entering your
-		buildroot directory and running the command:
-
-<pre>
-git pull
-</pre>
-
-		Because you've only been granted anonymous access to the tree, you won't be
-		able to push your changes to the repo. Changes can instead be submitted for
-		inclusion by posting them to the buildroot mailing list.
-	    </div>
-	  </div>
-	</div>
+      <p>The buildroot repository can be browsed online at
+	<a href="https://gitlab.com/buildroot.org/buildroot/">https://gitlab.com/buildroot.org/buildroot/</a>.</p>
+
+      <p>To grab a copy of the repository use</p>
+
+      <div class="input-group" style="width: 100%;">
+	<input class="form-control" style="width: 85%;" id="giturl"
+	       value="git clone https://gitlab.com/buildroot.org/buildroot.git" type="text" readonly></input>
+	<span class="input-group-button">
+	  <button class="btn pull-right" type="button" data-clipboard-target="#giturl"
+		  data-toggle="tooltip" data-placement="bottom" data-trigger="manual" title="Copied!">
+	    <img class="clippy" src="images/clippy.svg" alt="Copy to clipboard" width="13">
+	  </button>
+	</span>
+      </div><br>
+
+      <p>If you are not already familiar with using Git, we recommend
+	you visit <a href="http://git-scm.org">the Git
+	website</a>.</p>
+
+      <p>Once you've checked out a copy of the source tree, you can
+	update your source tree at any time so it is in sync with the
+	latest and greatest by entering your buildroot directory and
+	running the command:</p>
+
+      <pre>
+	git pull
+      </pre>
+
+      <p>Because you've only been granted anonymous access to the
+	tree, you won't be able to push your changes to the
+	repo. Changes can instead be submitted for inclusion by
+	posting them to the buildroot mailing list.</p>
 
-      </div>
     </div>
   </div>
 
-- 
2.41.0

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/3] docs/website: move Git repository to Gitlab
  2023-09-30  8:25 [Buildroot] [PATCH 1/3] docs/website: move Git repository to Gitlab Thomas Petazzoni via buildroot
  2023-09-30  8:25 ` [Buildroot] [PATCH 2/3] docs/website: remove mention of snapshot tarballs Thomas Petazzoni via buildroot
  2023-09-30  8:25 ` [Buildroot] [PATCH 3/3] docs/website: simplify section on Git repo Thomas Petazzoni via buildroot
@ 2023-09-30 13:58 ` Yann E. MORIN
  2 siblings, 0 replies; 4+ messages in thread
From: Yann E. MORIN @ 2023-09-30 13:58 UTC (permalink / raw)
  To: Thomas Petazzoni; +Cc: buildroot

Thomas, All,

On 2023-09-30 10:25 +0200, Thomas Petazzoni via buildroot spake thusly:
> We're now using Gitlab as our official Git repository, so let's update
> the website accordingly. Gitlab only provides https:// access, so drop
> the explanation about the Git native protocol being more efficient
> than HTTP (also because that's no longer true).
> 
> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>

Whole series applied with a minor fix in the last patch.

Applied to master, thanks.

Regards,
Yann E. MORIN.

> ---
>  docs/website/download.html | 26 +++-----------------------
>  1 file changed, 3 insertions(+), 23 deletions(-)
> 
> diff --git a/docs/website/download.html b/docs/website/download.html
> index c1fd38998c..7d7b405a61 100644
> --- a/docs/website/download.html
> +++ b/docs/website/download.html
> @@ -124,14 +124,14 @@
>  	  <div class="panel panel-success">
>  	    <div class="panel-heading">Repository</div>
>  	    <div class="panel-body">
> -	      <P>The buildroot repository can be browsed online through cgit at
> -		<a href="http://git.buildroot.net/buildroot/">http://git.buildroot.net/buildroot</a>.
> +	      <P>The buildroot repository can be browsed online at
> +		<a href="https://gitlab.com/buildroot.org/buildroot/">https://gitlab.com/buildroot.org/buildroot/</a>.
>  		To grab a copy of the repository use</p>
>  
>  
>  	      <div class="input-group" style="width: 100%;">
>  		<input class="form-control" style="width: 85%;" id="giturl"
> -		       value="git clone git://git.buildroot.net/buildroot" type="text" readonly></input>
> +		       value="git clone https://gitlab.com/buildroot.org/buildroot.git" type="text" readonly></input>
>  		<span class="input-group-button">
>  		  <button class="btn pull-right" type="button" data-clipboard-target="#giturl"
>  			  data-toggle="tooltip" data-placement="bottom" data-trigger="manual" title="Copied!">
> @@ -140,26 +140,6 @@
>  		</span>
>  	      </div><br>
>  
> -	      <p>
> -		Or if you're behind a firewall blocking git:
> -	      </p>
> -
> -	      <div class="input-group" style="width: 100%;">
> -		<input class="form-control" style="width: 85%;" id="giturlhttps"
> -		       value="git clone https://git.buildroot.net/buildroot" type="text" readonly></input>
> -		<span class="input-group-button">
> -		  <button class="btn pull-right" type="button" data-clipboard-target="#giturlhttps"
> -			  data-toggle="tooltip" data-placement="bottom" data-trigger="click" title="Copied!">
> -		    <img class="clippy" src="images/clippy.svg" alt="Copy to clipboard" width="13">
> -		  </button>
> -		</span>
> -	      </div><br>
> -
> -	      <p>
> -
> -		Please use the native git protocol if at all possible, as it's a lot
> -		more efficient than HTTP.
> -
>  	      <p>
>  
>  		If you are not already familiar with using Git, we recommend you visit <a
> -- 
> 2.41.0
> 
> _______________________________________________
> 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

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

end of thread, other threads:[~2023-09-30 13:58 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-30  8:25 [Buildroot] [PATCH 1/3] docs/website: move Git repository to Gitlab Thomas Petazzoni via buildroot
2023-09-30  8:25 ` [Buildroot] [PATCH 2/3] docs/website: remove mention of snapshot tarballs Thomas Petazzoni via buildroot
2023-09-30  8:25 ` [Buildroot] [PATCH 3/3] docs/website: simplify section on Git repo Thomas Petazzoni via buildroot
2023-09-30 13:58 ` [Buildroot] [PATCH 1/3] docs/website: move Git repository to Gitlab Yann E. MORIN

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox