All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/libssh2: switch site to https://www.libssh2.org/download
@ 2019-08-19 16:36 Fabrice Fontaine
  2019-08-19 19:46 ` Thomas Petazzoni
  0 siblings, 1 reply; 3+ messages in thread
From: Fabrice Fontaine @ 2019-08-19 16:36 UTC (permalink / raw)
  To: buildroot

It seems that tarball from github and libssh2.org/download are not the
same. Switch site to https://www.libssh2.org/download to get official
release as github tarball as a LIBSSH2_VERSION sets to "1.9.0_DEV"

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 .../0001-drop-custom-buildconf-script.patch   | 28 ++-----------------
 package/libssh2/libssh2.hash                  |  2 +-
 package/libssh2/libssh2.mk                    |  2 +-
 3 files changed, 4 insertions(+), 28 deletions(-)

diff --git a/package/libssh2/0001-drop-custom-buildconf-script.patch b/package/libssh2/0001-drop-custom-buildconf-script.patch
index a9a98e083c..bf187b26a8 100644
--- a/package/libssh2/0001-drop-custom-buildconf-script.patch
+++ b/package/libssh2/0001-drop-custom-buildconf-script.patch
@@ -29,6 +29,8 @@ Update gitignore accordingly, too.
 
 Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
 Cc: Sam Voss <sam.voss@rockwellcollins.com>
+[Fabrice: Remove .gitignore so patch applies on 1.9.0]
+Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
 ---
  .gitignore          |  2 ++
  buildconf           | 24 +++++-------------------
@@ -37,19 +39,6 @@ Cc: Sam Voss <sam.voss@rockwellcollins.com>
  example/Makefile.am |  2 +-
  5 files changed, 9 insertions(+), 23 deletions(-)
 
-diff --git a/.gitignore b/.gitignore
-index 997e51e1..b6d6b5cb 100644
---- a/.gitignore
-+++ b/.gitignore
-@@ -13,6 +13,8 @@ Makefile
- Makefile.in
- aclocal.m4
- autom4te.cache
-+compile
-+test-driver
- config.guess
- config.log
- config.status
 diff --git a/buildconf b/buildconf
 index 558dcb66..728b3397 100755
 --- a/buildconf
@@ -95,19 +84,6 @@ index c6ff7535..6939d0d6 100644
  AM_MAINTAINER_MODE
  m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
  
-diff --git a/example/.gitignore b/example/.gitignore
-index 13448191..cac152b8 100644
---- a/example/.gitignore
-+++ b/example/.gitignore
-@@ -20,8 +20,6 @@ sftp_write_nonblock
- config.h.in
- ssh2_exec
- ssh2_agent
--libssh2_config.h
--libssh2_config.h.in
- stamp-h2
- sftp_append
- sftp_write_sliding
 diff --git a/example/Makefile.am b/example/Makefile.am
 index 5cf5f071..41f65b12 100644
 --- a/example/Makefile.am
diff --git a/package/libssh2/libssh2.hash b/package/libssh2/libssh2.hash
index 58aba4ad71..8e048ff508 100644
--- a/package/libssh2/libssh2.hash
+++ b/package/libssh2/libssh2.hash
@@ -1,3 +1,3 @@
 # Locally calculated
-sha256 db257d41754b16518c3bd0c3b8dd08940ccbee5fc44cef7bfb052d930bcbbda3  libssh2-1.9.0.tar.gz
+sha256 d5fb8bd563305fd1074dda90bd053fb2d29fc4bce048d182f96eaa466dfadafd  libssh2-1.9.0.tar.gz
 sha256 e15ed284a15e80115467d6d7f030f0d89d8fabbecd78fb6e0f861f0cfc128fd9  COPYING
diff --git a/package/libssh2/libssh2.mk b/package/libssh2/libssh2.mk
index 824e208033..bd8517dac4 100644
--- a/package/libssh2/libssh2.mk
+++ b/package/libssh2/libssh2.mk
@@ -5,7 +5,7 @@
 ################################################################################
 
 LIBSSH2_VERSION = 1.9.0
-LIBSSH2_SITE = $(call github,libssh2,libssh2,libssh2-$(LIBSSH2_VERSION))
+LIBSSH2_SITE = https://www.libssh2.org/download
 LIBSSH2_LICENSE = BSD
 LIBSSH2_LICENSE_FILES = COPYING
 LIBSSH2_INSTALL_STAGING = YES
-- 
2.20.1

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

* [Buildroot] [PATCH 1/1] package/libssh2: switch site to https://www.libssh2.org/download
  2019-08-19 16:36 [Buildroot] [PATCH 1/1] package/libssh2: switch site to https://www.libssh2.org/download Fabrice Fontaine
@ 2019-08-19 19:46 ` Thomas Petazzoni
  2019-08-19 20:37   ` Fabrice Fontaine
  0 siblings, 1 reply; 3+ messages in thread
From: Thomas Petazzoni @ 2019-08-19 19:46 UTC (permalink / raw)
  To: buildroot

On Mon, 19 Aug 2019 18:36:48 +0200
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:

> It seems that tarball from github and libssh2.org/download are not the
> same. Switch site to https://www.libssh2.org/download to get official
> release as github tarball as a LIBSSH2_VERSION sets to "1.9.0_DEV"

I don't understand what you mean by "github tarball as a
LIBSSH2_VERSION sets to "1.9.0_DEV"". Could you clarify ?

Is this for master or next ?

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

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

* [Buildroot] [PATCH 1/1] package/libssh2: switch site to https://www.libssh2.org/download
  2019-08-19 19:46 ` Thomas Petazzoni
@ 2019-08-19 20:37   ` Fabrice Fontaine
  0 siblings, 0 replies; 3+ messages in thread
From: Fabrice Fontaine @ 2019-08-19 20:37 UTC (permalink / raw)
  To: buildroot

Le lun. 19 ao?t 2019 ? 21:46, Thomas Petazzoni
<thomas.petazzoni@bootlin.com> a ?crit :
>
> On Mon, 19 Aug 2019 18:36:48 +0200
> Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:
>
> > It seems that tarball from github and libssh2.org/download are not the
> > same. Switch site to https://www.libssh2.org/download to get official
> > release as github tarball as a LIBSSH2_VERSION sets to "1.9.0_DEV"
>
> I don't understand what you mean by "github tarball as a
> LIBSSH2_VERSION sets to "1.9.0_DEV"". Could you clarify ?
I sent a v2 to clarify commit log.
>
> Is this for master or next ?
This is for master.
>
> Thomas
> --
> Thomas Petazzoni, CTO, Bootlin
> Embedded Linux and Kernel engineering
> https://bootlin.com
Best Regards,

Fabrice

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

end of thread, other threads:[~2019-08-19 20:37 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-08-19 16:36 [Buildroot] [PATCH 1/1] package/libssh2: switch site to https://www.libssh2.org/download Fabrice Fontaine
2019-08-19 19:46 ` Thomas Petazzoni
2019-08-19 20:37   ` Fabrice Fontaine

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.