* [Buildroot] [PATCH 1/2] libfuse: switch to github
@ 2015-12-29 12:12 Gustavo Zacarias
2015-12-29 12:12 ` [Buildroot] [PATCH 2/2] sshfs: " Gustavo Zacarias
2015-12-29 16:03 ` [Buildroot] [PATCH 1/2] libfuse: " Thomas Petazzoni
0 siblings, 2 replies; 3+ messages in thread
From: Gustavo Zacarias @ 2015-12-29 12:12 UTC (permalink / raw)
To: buildroot
The project moved to github, so point the homepage and download URL
there.
Use direct download link since the helper can't handle the re-uploaded
release files, and add a comment that it might make sense to switch to
it once a new release is made.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
package/libfuse/Config.in | 2 +-
package/libfuse/libfuse.hash | 1 +
package/libfuse/libfuse.mk | 3 ++-
3 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/package/libfuse/Config.in b/package/libfuse/Config.in
index deedb5a..2b0e31a 100644
--- a/package/libfuse/Config.in
+++ b/package/libfuse/Config.in
@@ -7,7 +7,7 @@ config BR2_PACKAGE_LIBFUSE
help
FUSE (Filesystem in UserSpacE)
- http://fuse.sourceforge.net/
+ https://github.com/libfuse/libfuse
comment "libfuse needs a toolchain w/ threads, dynamic library"
depends on BR2_USE_MMU
diff --git a/package/libfuse/libfuse.hash b/package/libfuse/libfuse.hash
index b1bbee3..5351b41 100644
--- a/package/libfuse/libfuse.hash
+++ b/package/libfuse/libfuse.hash
@@ -1,3 +1,4 @@
# From http://sourceforge.net/projects/fuse/files/fuse-2.X/2.9.4/
+# Still valid for non-bumped github copy
md5 ecb712b5ffc6dffd54f4a405c9b372d8 fuse-2.9.4.tar.gz
sha1 c8b25419f33624dc5240af6a5d26f2c04367ca71 fuse-2.9.4.tar.gz
diff --git a/package/libfuse/libfuse.mk b/package/libfuse/libfuse.mk
index 8360c82..12092f1 100644
--- a/package/libfuse/libfuse.mk
+++ b/package/libfuse/libfuse.mk
@@ -6,7 +6,8 @@
LIBFUSE_VERSION = 2.9.4
LIBFUSE_SOURCE = fuse-$(LIBFUSE_VERSION).tar.gz
-LIBFUSE_SITE = http://downloads.sourceforge.net/project/fuse/fuse-2.X/$(LIBFUSE_VERSION)
+# Switch to github helper on bump
+LIBFUSE_SITE = https://github.com/libfuse/libfuse/releases/download/fuse_2_9_4
LIBFUSE_LICENSE = GPLv2, LGPLv2.1
LIBFUSE_LICENSE_FILES = COPYING COPYING.LIB
LIBFUSE_INSTALL_STAGING = YES
--
2.4.10
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH 2/2] sshfs: switch to github
2015-12-29 12:12 [Buildroot] [PATCH 1/2] libfuse: switch to github Gustavo Zacarias
@ 2015-12-29 12:12 ` Gustavo Zacarias
2015-12-29 16:03 ` [Buildroot] [PATCH 1/2] libfuse: " Thomas Petazzoni
1 sibling, 0 replies; 3+ messages in thread
From: Gustavo Zacarias @ 2015-12-29 12:12 UTC (permalink / raw)
To: buildroot
The project moved to github, so point the homepage and download URL
there.
Use direct download link since the helper can't handle the re-uploaded
release files, and add a comment that it might make sense to switch to
it once a new release is made.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
package/sshfs/Config.in | 2 +-
package/sshfs/sshfs.hash | 4 ++--
package/sshfs/sshfs.mk | 3 ++-
3 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/package/sshfs/Config.in b/package/sshfs/Config.in
index 7c821a5..31fef9f 100644
--- a/package/sshfs/Config.in
+++ b/package/sshfs/Config.in
@@ -12,7 +12,7 @@ config BR2_PACKAGE_SSHFS
help
FUSE filesystem client based on the SSH File Transfer Protocol.
- http://fuse.sourceforge.net/sshfs.html
+ https://github.com/libfuse/sshfs
comment "sshfs needs a toolchain w/ wchar, threads, dynamic library"
depends on BR2_USE_MMU
diff --git a/package/sshfs/sshfs.hash b/package/sshfs/sshfs.hash
index c8b0c00..16253e0 100644
--- a/package/sshfs/sshfs.hash
+++ b/package/sshfs/sshfs.hash
@@ -1,2 +1,2 @@
-# Locally computed:
-sha256 e9171452e5d0150b9c6a2158fd2e2dcefb5d5d03ba4d208949e00a3a46c6e63e sshfs-fuse-2.5.tar.gz
+# Locally computed
+sha256 e9171452e5d0150b9c6a2158fd2e2dcefb5d5d03ba4d208949e00a3a46c6e63e sshfs-fuse-2.5.tar.gz
diff --git a/package/sshfs/sshfs.mk b/package/sshfs/sshfs.mk
index 572f44e..e576dc7 100644
--- a/package/sshfs/sshfs.mk
+++ b/package/sshfs/sshfs.mk
@@ -5,7 +5,8 @@
################################################################################
SSHFS_VERSION = 2.5
-SSHFS_SITE = http://downloads.sourceforge.net/project/fuse/sshfs-fuse/$(SSHFS_VERSION)
+# Switch to github helper on bump
+SSHFS_SITE = https://github.com/libfuse/sshfs/releases/download/sshfs_2_5
SSHFS_SOURCE = sshfs-fuse-$(SSHFS_VERSION).tar.gz
SSHFS_LICENSE = GPLv2
SSHFS_LICENSE_FILES = COPYING
--
2.4.10
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH 1/2] libfuse: switch to github
2015-12-29 12:12 [Buildroot] [PATCH 1/2] libfuse: switch to github Gustavo Zacarias
2015-12-29 12:12 ` [Buildroot] [PATCH 2/2] sshfs: " Gustavo Zacarias
@ 2015-12-29 16:03 ` Thomas Petazzoni
1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2015-12-29 16:03 UTC (permalink / raw)
To: buildroot
Gustavo,
On Tue, 29 Dec 2015 09:12:38 -0300, Gustavo Zacarias wrote:
> The project moved to github, so point the homepage and download URL
> there.
> Use direct download link since the helper can't handle the re-uploaded
> release files, and add a comment that it might make sense to switch to
> it once a new release is made.
>
> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
> ---
> package/libfuse/Config.in | 2 +-
> package/libfuse/libfuse.hash | 1 +
> package/libfuse/libfuse.mk | 3 ++-
> 3 files changed, 4 insertions(+), 2 deletions(-)
Both applied. However, I've removed the comment in the .mk file about
switching to the github helper on bump. If they continue to upload
their own release tarballs on github, then we prefer to use these
instead of the github helper, so the comment didn't make much sense in
that respect.
Thanks!
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-12-29 16:03 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-12-29 12:12 [Buildroot] [PATCH 1/2] libfuse: switch to github Gustavo Zacarias
2015-12-29 12:12 ` [Buildroot] [PATCH 2/2] sshfs: " Gustavo Zacarias
2015-12-29 16:03 ` [Buildroot] [PATCH 1/2] libfuse: " Thomas Petazzoni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox