Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 01/19] package/flickcurl: bump version to 1.26
@ 2015-04-19 14:29 Bernd Kuhls
  2015-04-19 14:29 ` [Buildroot] [PATCH 02/19] package/fmtools: bump version to 2.0.7 Bernd Kuhls
                   ` (17 more replies)
  0 siblings, 18 replies; 23+ messages in thread
From: Bernd Kuhls @ 2015-04-19 14:29 UTC (permalink / raw)
  To: buildroot

removed patches applied upstream:
https://github.com/dajobe/flickcurl/commit/1f5e208a4709a3030258024ea63834aab41bca3c
https://github.com/dajobe/flickcurl/commit/3e65bbfc1c556ac8bd1d30db66d6e63957066b75

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 ...ttps-for-all-service-endpoints.-HTTP-EOL-.patch |   40 --------------------
 ...auth-services-are-on-https-www.flickr.com.patch |   30 ---------------
 package/flickcurl/flickcurl.mk                     |    2 +-
 3 files changed, 1 insertion(+), 71 deletions(-)
 delete mode 100644 package/flickcurl/0001-Switch-to-https-for-all-service-endpoints.-HTTP-EOL-.patch
 delete mode 100644 package/flickcurl/0002-Oauth-services-are-on-https-www.flickr.com.patch

diff --git a/package/flickcurl/0001-Switch-to-https-for-all-service-endpoints.-HTTP-EOL-.patch b/package/flickcurl/0001-Switch-to-https-for-all-service-endpoints.-HTTP-EOL-.patch
deleted file mode 100644
index 576b611..0000000
--- a/package/flickcurl/0001-Switch-to-https-for-all-service-endpoints.-HTTP-EOL-.patch
+++ /dev/null
@@ -1,40 +0,0 @@
-From 1f5e208a4709a3030258024ea63834aab41bca3c Mon Sep 17 00:00:00 2001
-From: Dave Beckett <dave@dajobe.org>
-Date: Sat, 31 May 2014 12:10:35 -0700
-Subject: [PATCH] Switch to https for all service endpoints. HTTP EOL
- 2014-06-27
-
-2014-04-30 Flickr announced that it would be HTTPS only from 2014-06-27
-http://code.flickr.net/2014/04/30/flickr-api-going-ssl-only-on-june-27th-2014/
-
-Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
----
- src/common.c | 12 ++++++------
- 1 file changed, 6 insertions(+), 6 deletions(-)
-
-diff --git a/src/common.c b/src/common.c
-index ef05e08..245db18 100644
---- a/src/common.c
-+++ b/src/common.c
-@@ -73,12 +73,12 @@ const char* const flickcurl_home_url_string = "http://librdf.org/flickcurl/";
- const char* const flickcurl_version_string = VERSION;
- 
- 
--const char* const flickcurl_flickr_service_uri =  "http://www.flickr.com/services/rest/";
--const char* const flickcurl_flickr_upload_service_uri =  "http://api.flickr.com/services/upload/";
--const char* const flickcurl_flickr_replace_service_uri =  "http://api.flickr.com/services/replace/";
--const char* const flickcurl_flickr_oauth_request_token_uri =  "http://www.flickr.com/services/oauth/request_token";
--const char* const flickcurl_flickr_oauth_authorize_uri =  "http://www.flickr.com/services/oauth/authorize";
--const char* const flickcurl_flickr_oauth_access_token_uri =  "http://www.flickr.com/services/oauth/access_token";
-+const char* const flickcurl_flickr_service_uri =  "https://api.flickr.com/services/rest/";
-+const char* const flickcurl_flickr_upload_service_uri =  "https://up.flickr.com/services/upload/";
-+const char* const flickcurl_flickr_replace_service_uri =  "https://up.flickr.com/services/replace/";
-+const char* const flickcurl_flickr_oauth_request_token_uri =  "https://api.flickr.com/services/oauth/request_token";
-+const char* const flickcurl_flickr_oauth_authorize_uri =  "https://api.flickr.com/services/oauth/authorize";
-+const char* const flickcurl_flickr_oauth_access_token_uri =  "https://api.flickr.com/services/oauth/access_token";
- 
- 
- static void
--- 
-2.0.0
-
diff --git a/package/flickcurl/0002-Oauth-services-are-on-https-www.flickr.com.patch b/package/flickcurl/0002-Oauth-services-are-on-https-www.flickr.com.patch
deleted file mode 100644
index 1ed9af2..0000000
--- a/package/flickcurl/0002-Oauth-services-are-on-https-www.flickr.com.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From 3e65bbfc1c556ac8bd1d30db66d6e63957066b75 Mon Sep 17 00:00:00 2001
-From: Dave Beckett <dave@dajobe.org>
-Date: Sat, 31 May 2014 12:56:22 -0700
-Subject: [PATCH] Oauth services are on https www.flickr.com
-
-Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
----
- src/common.c | 6 +++---
- 1 file changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/src/common.c b/src/common.c
-index 245db18..c697a7d 100644
---- a/src/common.c
-+++ b/src/common.c
-@@ -76,9 +76,9 @@ const char* const flickcurl_version_string = VERSION;
- const char* const flickcurl_flickr_service_uri =  "https://api.flickr.com/services/rest/";
- const char* const flickcurl_flickr_upload_service_uri =  "https://up.flickr.com/services/upload/";
- const char* const flickcurl_flickr_replace_service_uri =  "https://up.flickr.com/services/replace/";
--const char* const flickcurl_flickr_oauth_request_token_uri =  "https://api.flickr.com/services/oauth/request_token";
--const char* const flickcurl_flickr_oauth_authorize_uri =  "https://api.flickr.com/services/oauth/authorize";
--const char* const flickcurl_flickr_oauth_access_token_uri =  "https://api.flickr.com/services/oauth/access_token";
-+const char* const flickcurl_flickr_oauth_request_token_uri =  "https://www.flickr.com/services/oauth/request_token";
-+const char* const flickcurl_flickr_oauth_authorize_uri =  "https://www.flickr.com/services/oauth/authorize";
-+const char* const flickcurl_flickr_oauth_access_token_uri =  "https://www.flickr.com/services/oauth/access_token";
- 
- 
- static void
--- 
-2.0.0
-
diff --git a/package/flickcurl/flickcurl.mk b/package/flickcurl/flickcurl.mk
index 2b5ea5b..ce836f7 100644
--- a/package/flickcurl/flickcurl.mk
+++ b/package/flickcurl/flickcurl.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-FLICKCURL_VERSION = 1.25
+FLICKCURL_VERSION = 1.26
 FLICKCURL_SITE = http://download.dajobe.org/flickcurl
 FLICKCURL_LICENSE = LGPLv2.1+ or GPLv2+ or Apache 2.0+
 FLICKCURL_LICENSE_FILES = COPYING COPYING.LIB LICENSE-2.0.txt LICENSE.html
-- 
1.7.10.4

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

end of thread, other threads:[~2015-04-26 12:30 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-04-19 14:29 [Buildroot] [PATCH 01/19] package/flickcurl: bump version to 1.26 Bernd Kuhls
2015-04-19 14:29 ` [Buildroot] [PATCH 02/19] package/fmtools: bump version to 2.0.7 Bernd Kuhls
2015-04-19 14:29 ` [Buildroot] [PATCH 03/19] package/gnuchess: bump version to 6.2.1 Bernd Kuhls
2015-04-19 21:25   ` Thomas Petazzoni
2015-04-26 12:30   ` Thomas Petazzoni
2015-04-19 14:29 ` [Buildroot] [PATCH 04/19] package/hiawatha: bump version to 9.12 Bernd Kuhls
2015-04-19 14:36   ` Gustavo Zacarias
2015-04-22 21:29     ` Bernd Kuhls
2015-04-19 14:29 ` [Buildroot] [PATCH 05/19] package/ftop: add hash Bernd Kuhls
2015-04-19 14:29 ` [Buildroot] [PATCH 06/19] package/gdbm: " Bernd Kuhls
2015-04-19 14:29 ` [Buildroot] [PATCH 07/19] package/ghostscript-fonts: " Bernd Kuhls
2015-04-19 14:29 ` [Buildroot] [PATCH 08/19] package/gtest: " Bernd Kuhls
2015-04-19 14:29 ` [Buildroot] [PATCH 09/19] package/heirloom-mailx: " Bernd Kuhls
2015-04-19 14:29 ` [Buildroot] [PATCH 10/19] package/htop: " Bernd Kuhls
2015-04-19 14:29 ` [Buildroot] [PATCH 11/19] package/hwdata: " Bernd Kuhls
2015-04-19 14:29 ` [Buildroot] [PATCH 12/19] package/iozone: bump to version 3_430 Bernd Kuhls
2015-04-19 14:29 ` [Buildroot] [PATCH 13/19] package/igh-ethercat: add hash Bernd Kuhls
2015-04-19 14:29 ` [Buildroot] [PATCH 14/19] package/input-tools: " Bernd Kuhls
2015-04-19 14:29 ` [Buildroot] [PATCH 15/19] package/intltool: " Bernd Kuhls
2015-04-19 14:29 ` [Buildroot] [PATCH 16/19] package/ipmiutil: " Bernd Kuhls
2015-04-19 14:29 ` [Buildroot] [PATCH 17/19] package/iptraf-ng: " Bernd Kuhls
2015-04-19 14:29 ` [Buildroot] [PATCH 18/19] package/iputils: " Bernd Kuhls
2015-04-19 14:29 ` [Buildroot] [PATCH 19/19] package/jimtcl: " Bernd Kuhls

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