All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/3] minicom: switch to the official site
@ 2015-10-21  9:30 Vicente Olivert Riera
  2015-10-21  9:30 ` [Buildroot] [PATCH 2/3] minicom: wrap text to 72 characters Vicente Olivert Riera
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Vicente Olivert Riera @ 2015-10-21  9:30 UTC (permalink / raw)
  To: buildroot

We switched to our mirror because because the official site started to
fail, but now it works again.

Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
---
 package/minicom/minicom.mk |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/package/minicom/minicom.mk b/package/minicom/minicom.mk
index dd05741..26e9cef 100644
--- a/package/minicom/minicom.mk
+++ b/package/minicom/minicom.mk
@@ -5,7 +5,7 @@
 ################################################################################
 
 MINICOM_VERSION = 2.7
-MINICOM_SITE = http://sources.buildroot.net
+MINICOM_SITE = https://alioth.debian.org/frs/download.php/file/3977
 MINICOM_LICENSE = GPLv2+
 MINICOM_LICENSE_FILES = COPYING
 
-- 
1.7.1

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

* [Buildroot] [PATCH 2/3] minicom: wrap text to 72 characters
  2015-10-21  9:30 [Buildroot] [PATCH 1/3] minicom: switch to the official site Vicente Olivert Riera
@ 2015-10-21  9:30 ` Vicente Olivert Riera
  2015-10-21  9:30 ` [Buildroot] [PATCH 3/3] minicom: add a hash file Vicente Olivert Riera
  2015-10-21 20:10 ` [Buildroot] [PATCH 1/3] minicom: switch to the official site Thomas Petazzoni
  2 siblings, 0 replies; 4+ messages in thread
From: Vicente Olivert Riera @ 2015-10-21  9:30 UTC (permalink / raw)
  To: buildroot

And also add a trailing slash to the URL.

Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
---
The wrapping has been done taking into account a tab displayed as 8
spaces.

 package/minicom/Config.in  |    8 ++++----
 package/minicom/minicom.mk |    6 +++---
 2 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/package/minicom/Config.in b/package/minicom/Config.in
index 07dbeba..c41c188 100644
--- a/package/minicom/Config.in
+++ b/package/minicom/Config.in
@@ -5,11 +5,11 @@ config BR2_PACKAGE_MINICOM
 	select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
 	select BR2_PACKAGE_NCURSES
 	help
-	  Minicom is a menu driven communications program.
-	  It emulates ANSI and VT102 terminals. It has a
-	  dialing directory and auto zmodem download.
+	  Minicom is a menu driven communications program. It emulates
+	  ANSI and VT102 terminals. It has a dialing directory and auto
+	  zmodem download.
 
-	  http://alioth.debian.org/projects/minicom
+	  http://alioth.debian.org/projects/minicom/
 
 comment "minicom needs a toolchain w/ wchar"
 	depends on BR2_USE_MMU
diff --git a/package/minicom/minicom.mk b/package/minicom/minicom.mk
index 26e9cef..94a4628 100644
--- a/package/minicom/minicom.mk
+++ b/package/minicom/minicom.mk
@@ -10,9 +10,9 @@ MINICOM_LICENSE = GPLv2+
 MINICOM_LICENSE_FILES = COPYING
 
 # pkg-config is only used to check for liblockdev, which we don't have
-# in BR, so instead of adding host-pkgconf as a dependency, simply
-# make sure the host version isn't used so we don't end up with problems
-# if people have liblockdev1-dev installed
+# in BR, so instead of adding host-pkgconf as a dependency, simply make
+# sure the host version isn't used so we don't end up with problems if
+# people have liblockdev1-dev installed
 MINICOM_CONF_ENV = PKG_CONFIG=/bin/false
 
 MINICOM_DEPENDENCIES = ncurses $(if $(BR2_ENABLE_LOCALE),,libiconv)
-- 
1.7.1

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

* [Buildroot] [PATCH 3/3] minicom: add a hash file
  2015-10-21  9:30 [Buildroot] [PATCH 1/3] minicom: switch to the official site Vicente Olivert Riera
  2015-10-21  9:30 ` [Buildroot] [PATCH 2/3] minicom: wrap text to 72 characters Vicente Olivert Riera
@ 2015-10-21  9:30 ` Vicente Olivert Riera
  2015-10-21 20:10 ` [Buildroot] [PATCH 1/3] minicom: switch to the official site Thomas Petazzoni
  2 siblings, 0 replies; 4+ messages in thread
From: Vicente Olivert Riera @ 2015-10-21  9:30 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
---
 package/minicom/minicom.hash |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)
 create mode 100644 package/minicom/minicom.hash

diff --git a/package/minicom/minicom.hash b/package/minicom/minicom.hash
new file mode 100644
index 0000000..33ba4ef
--- /dev/null
+++ b/package/minicom/minicom.hash
@@ -0,0 +1,2 @@
+# Locally calculated
+sha256 9ac3a663b82f4f5df64114b4792b9926b536c85f59de0f2d2b321c7626a904f4  minicom-2.7.tar.gz
-- 
1.7.1

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

* [Buildroot] [PATCH 1/3] minicom: switch to the official site
  2015-10-21  9:30 [Buildroot] [PATCH 1/3] minicom: switch to the official site Vicente Olivert Riera
  2015-10-21  9:30 ` [Buildroot] [PATCH 2/3] minicom: wrap text to 72 characters Vicente Olivert Riera
  2015-10-21  9:30 ` [Buildroot] [PATCH 3/3] minicom: add a hash file Vicente Olivert Riera
@ 2015-10-21 20:10 ` Thomas Petazzoni
  2 siblings, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2015-10-21 20:10 UTC (permalink / raw)
  To: buildroot

Dear Vicente Olivert Riera,

On Wed, 21 Oct 2015 10:30:13 +0100, Vicente Olivert Riera wrote:
> We switched to our mirror because because the official site started to
> fail, but now it works again.
> 
> Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
> ---
>  package/minicom/minicom.mk |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)

All three patches applied, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

end of thread, other threads:[~2015-10-21 20:10 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-10-21  9:30 [Buildroot] [PATCH 1/3] minicom: switch to the official site Vicente Olivert Riera
2015-10-21  9:30 ` [Buildroot] [PATCH 2/3] minicom: wrap text to 72 characters Vicente Olivert Riera
2015-10-21  9:30 ` [Buildroot] [PATCH 3/3] minicom: add a hash file Vicente Olivert Riera
2015-10-21 20:10 ` [Buildroot] [PATCH 1/3] minicom: switch to the official site 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.