* [Buildroot] [PATCH 1/1] sqlcipher: fix download url
@ 2013-11-05 22:59 Romain Naour
2013-11-05 23:21 ` Peter Korsgaard
0 siblings, 1 reply; 4+ messages in thread
From: Romain Naour @ 2013-11-05 22:59 UTC (permalink / raw)
To: buildroot
Signed-off-by: Romain Naour <romain.naour@openwide.fr>
---
package/sqlcipher/sqlcipher.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/sqlcipher/sqlcipher.mk b/package/sqlcipher/sqlcipher.mk
index 3ade403..e93d24d 100644
--- a/package/sqlcipher/sqlcipher.mk
+++ b/package/sqlcipher/sqlcipher.mk
@@ -5,7 +5,7 @@
################################################################################
SQLCIPHER_VERSION = v1.1.9
-SQLCIPHER_SITE = http://github.com/sjlombardo/sqlcipher/tarball/$(SQLCIPHER_VERSION)
+SQLCIPHER_SITE = http://github.com/sqlcipher/sqlcipher/archive/$(SQLCIPHER_VERSION)
SQLCIPHER_DEPENDENCIES = openssl host-tcl
SQLCIPHER_INSTALL_STAGING = YES
--
1.8.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 1/1] sqlcipher: fix download url
2013-11-05 22:59 [Buildroot] [PATCH 1/1] sqlcipher: fix download url Romain Naour
@ 2013-11-05 23:21 ` Peter Korsgaard
2013-11-05 23:31 ` Romain Naour
0 siblings, 1 reply; 4+ messages in thread
From: Peter Korsgaard @ 2013-11-05 23:21 UTC (permalink / raw)
To: buildroot
>>>>> "Romain" == Romain Naour <romain.naour@openwide.fr> writes:
> Signed-off-by: Romain Naour <romain.naour@openwide.fr>
Fix in what way?
wget http://github.com/sqlcipher/sqlcipher/tarball/v1.1.9/sqlcipher-v1.1.9.tar.gz
--2013-11-06 00:17:11-- http://github.com/sqlcipher/sqlcipher/tarball/v1.1.9/sqlcipher-v1.1.9.tar.gz
Resolving github.com (github.com)... 192.30.252.128
Connecting to github.com (github.com)|192.30.252.128|:80... connected.
HTTP request sent, awaiting response... 301 Moved Permanently
Location: https://github.com/sqlcipher/sqlcipher/tarball/v1.1.9/sqlcipher-v1.1.9.tar.gz [following]
--2013-11-06 00:17:11-- https://github.com/sqlcipher/sqlcipher/tarball/v1.1.9/sqlcipher-v1.1.9.tar.gz
Connecting to github.com (github.com)|192.30.252.128|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://codeload.github.com/sqlcipher/sqlcipher/legacy.tar.gz/v1.1.9 [following]
--2013-11-06 00:17:12-- https://codeload.github.com/sqlcipher/sqlcipher/legacy.tar.gz/v1.1.9
Resolving codeload.github.com (codeload.github.com)... 192.30.252.145
Connecting to codeload.github.com (codeload.github.com)|192.30.252.145|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [application/x-gzip]
Saving to: `sqlcipher-v1.1.9.tar.gz'
wget http://github.com/sqlcipher/sqlcipher/archive/v1.1.9/sqlcipher-v1.1.9.tar.gz /tmp
--2013-11-06 00:18:32-- http://github.com/sqlcipher/sqlcipher/archive/v1.1.9/sqlcipher-v1.1.9.tar.gz
Resolving github.com (github.com)... 192.30.252.128
Connecting to github.com (github.com)|192.30.252.128|:80... connected.
HTTP request sent, awaiting response... 301 Moved Permanently
Location: https://github.com/sqlcipher/sqlcipher/archive/v1.1.9/sqlcipher-v1.1.9.tar.gz [following]
--2013-11-06 00:18:32-- https://github.com/sqlcipher/sqlcipher/archive/v1.1.9/sqlcipher-v1.1.9.tar.gz
Connecting to github.com (github.com)|192.30.252.128|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://codeload.github.com/sqlcipher/sqlcipher/tar.gz/v1.1.9 [following]
--2013-11-06 00:18:33-- https://codeload.github.com/sqlcipher/sqlcipher/tar.gz/v1.1.9
Resolving codeload.github.com (codeload.github.com)... 192.30.252.146
Connecting to codeload.github.com (codeload.github.com)|192.30.252.146|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 4032588 (3.8M) [application/x-gzip]
Saving to: `sqlcipher-v1.1.9.tar.gz.1'
So both works. We seem to mainly use the tarball version:
git grep 'github.*tarball' package | wc -l
44
git grep 'github.*archive' package | wc -l
4
> ---
> package/sqlcipher/sqlcipher.mk | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
> diff --git a/package/sqlcipher/sqlcipher.mk b/package/sqlcipher/sqlcipher.mk
> index 3ade403..e93d24d 100644
> --- a/package/sqlcipher/sqlcipher.mk
> +++ b/package/sqlcipher/sqlcipher.mk
> @@ -5,7 +5,7 @@
> ################################################################################
> SQLCIPHER_VERSION = v1.1.9
> -SQLCIPHER_SITE = http://github.com/sjlombardo/sqlcipher/tarball/$(SQLCIPHER_VERSION)
> +SQLCIPHER_SITE = http://github.com/sqlcipher/sqlcipher/archive/$(SQLCIPHER_VERSION)
> SQLCIPHER_DEPENDENCIES = openssl host-tcl
> SQLCIPHER_INSTALL_STAGING = YES
> --
> 1.8.4
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 1/1] sqlcipher: fix download url
2013-11-05 23:21 ` Peter Korsgaard
@ 2013-11-05 23:31 ` Romain Naour
2013-11-05 23:34 ` Peter Korsgaard
0 siblings, 1 reply; 4+ messages in thread
From: Romain Naour @ 2013-11-05 23:31 UTC (permalink / raw)
To: buildroot
Hi,
Le 06/11/2013 00:21, Peter Korsgaard a ?crit :
>>>>>> "Romain" == Romain Naour <romain.naour@openwide.fr> writes:
>
> > Signed-off-by: Romain Naour <romain.naour@openwide.fr>
>
> Fix in what way?
Just update the other part of the url :)
- http://github.com/sjlombardo/
+ http://github.com/sqlcipher/
Best regards
Romain
>
> wget http://github.com/sqlcipher/sqlcipher/tarball/v1.1.9/sqlcipher-v1.1.9.tar.gz
> --2013-11-06 00:17:11-- http://github.com/sqlcipher/sqlcipher/tarball/v1.1.9/sqlcipher-v1.1.9.tar.gz
> Resolving github.com (github.com)... 192.30.252.128
> Connecting to github.com (github.com)|192.30.252.128|:80... connected.
> HTTP request sent, awaiting response... 301 Moved Permanently
> Location: https://github.com/sqlcipher/sqlcipher/tarball/v1.1.9/sqlcipher-v1.1.9.tar.gz [following]
> --2013-11-06 00:17:11-- https://github.com/sqlcipher/sqlcipher/tarball/v1.1.9/sqlcipher-v1.1.9.tar.gz
> Connecting to github.com (github.com)|192.30.252.128|:443... connected.
> HTTP request sent, awaiting response... 302 Found
> Location: https://codeload.github.com/sqlcipher/sqlcipher/legacy.tar.gz/v1.1.9 [following]
> --2013-11-06 00:17:12-- https://codeload.github.com/sqlcipher/sqlcipher/legacy.tar.gz/v1.1.9
> Resolving codeload.github.com (codeload.github.com)... 192.30.252.145
> Connecting to codeload.github.com (codeload.github.com)|192.30.252.145|:443... connected.
> HTTP request sent, awaiting response... 200 OK
> Length: unspecified [application/x-gzip]
> Saving to: `sqlcipher-v1.1.9.tar.gz'
>
> wget http://github.com/sqlcipher/sqlcipher/archive/v1.1.9/sqlcipher-v1.1.9.tar.gz /tmp
> --2013-11-06 00:18:32-- http://github.com/sqlcipher/sqlcipher/archive/v1.1.9/sqlcipher-v1.1.9.tar.gz
> Resolving github.com (github.com)... 192.30.252.128
> Connecting to github.com (github.com)|192.30.252.128|:80... connected.
> HTTP request sent, awaiting response... 301 Moved Permanently
> Location: https://github.com/sqlcipher/sqlcipher/archive/v1.1.9/sqlcipher-v1.1.9.tar.gz [following]
> --2013-11-06 00:18:32-- https://github.com/sqlcipher/sqlcipher/archive/v1.1.9/sqlcipher-v1.1.9.tar.gz
> Connecting to github.com (github.com)|192.30.252.128|:443... connected.
> HTTP request sent, awaiting response... 302 Found
> Location: https://codeload.github.com/sqlcipher/sqlcipher/tar.gz/v1.1.9 [following]
> --2013-11-06 00:18:33-- https://codeload.github.com/sqlcipher/sqlcipher/tar.gz/v1.1.9
> Resolving codeload.github.com (codeload.github.com)... 192.30.252.146
> Connecting to codeload.github.com (codeload.github.com)|192.30.252.146|:443... connected.
> HTTP request sent, awaiting response... 200 OK
> Length: 4032588 (3.8M) [application/x-gzip]
> Saving to: `sqlcipher-v1.1.9.tar.gz.1'
>
> So both works. We seem to mainly use the tarball version:
>
> git grep 'github.*tarball' package | wc -l
> 44
>
> git grep 'github.*archive' package | wc -l
> 4
>
>
> > ---
> > package/sqlcipher/sqlcipher.mk | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
>
> > diff --git a/package/sqlcipher/sqlcipher.mk b/package/sqlcipher/sqlcipher.mk
> > index 3ade403..e93d24d 100644
> > --- a/package/sqlcipher/sqlcipher.mk
> > +++ b/package/sqlcipher/sqlcipher.mk
> > @@ -5,7 +5,7 @@
> > ################################################################################
>
> > SQLCIPHER_VERSION = v1.1.9
> > -SQLCIPHER_SITE = http://github.com/sjlombardo/sqlcipher/tarball/$(SQLCIPHER_VERSION)
> > +SQLCIPHER_SITE = http://github.com/sqlcipher/sqlcipher/archive/$(SQLCIPHER_VERSION)
> > SQLCIPHER_DEPENDENCIES = openssl host-tcl
> > SQLCIPHER_INSTALL_STAGING = YES
>
> > --
> > 1.8.4
>
> > _______________________________________________
> > buildroot mailing list
> > buildroot at busybox.net
> > http://lists.busybox.net/mailman/listinfo/buildroot
>
>
--
Romain Naour
OPEN WIDE Ing?nierie - Paris
23/25, rue Daviel 75013 PARIS
http://ingenierie.openwide.fr
Le blog des technologies libres et embarqu?es :
http://www.linuxembedded.fr
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 1/1] sqlcipher: fix download url
2013-11-05 23:31 ` Romain Naour
@ 2013-11-05 23:34 ` Peter Korsgaard
0 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2013-11-05 23:34 UTC (permalink / raw)
To: buildroot
>>>>> "Romain" == Romain Naour <romain.naour@openwide.fr> writes:
> Hi,
> Le 06/11/2013 00:21, Peter Korsgaard a ?crit :
>>>>>>> "Romain" == Romain Naour <romain.naour@openwide.fr> writes:
>>
>> > Signed-off-by: Romain Naour <romain.naour@openwide.fr>
>>
>> Fix in what way?
> Just update the other part of the url :)
> - http://github.com/sjlombardo/
> + http://github.com/sqlcipher/
Ahh, sorry - It's late here. Committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2013-11-05 23:34 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-11-05 22:59 [Buildroot] [PATCH 1/1] sqlcipher: fix download url Romain Naour
2013-11-05 23:21 ` Peter Korsgaard
2013-11-05 23:31 ` Romain Naour
2013-11-05 23:34 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox