1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-22 04:17:44 +00:00

Switch to the 2.0 API for locationforecast.

PR:		247644
Submitted by:	Olivier Duchateau <duchateau.olivier@gmail.com>
This commit is contained in:
Guido Falsi 2020-07-03 22:06:52 +00:00
parent 123b995b41
commit 5d30841c28
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=541151
3 changed files with 23 additions and 0 deletions

View File

@ -3,6 +3,7 @@
PORTNAME= xfce4-weather-plugin
PORTVERSION= 0.10.1
PORTREVISION= 1
CATEGORIES= misc xfce geography
MASTER_SITES= XFCE/panel-plugins
DIST_SUBDIR= xfce4

View File

@ -0,0 +1,11 @@
--- panel-plugin/weather.c.orig 2020-02-23 00:39:53 UTC
+++ panel-plugin/weather.c
@@ -656,7 +656,7 @@ update_handler(plugin_data *data)
/* build url */
url = g_strdup_printf("https://api.met.no"
"/weatherapi/locationforecast/%s/"
- "?lat=%s&lon=%s&msl=%d",
+ "classic?lat=%s&lon=%s&altitude=%d",
api_version,
data->lat, data->lon, data->msl);

View File

@ -0,0 +1,11 @@
--- panel-plugin/weather.h.orig 2020-02-23 00:39:53 UTC
+++ panel-plugin/weather.h
@@ -31,7 +31,7 @@
#define MAX_FORECAST_DAYS 10
#define DEFAULT_FORECAST_DAYS 5
#define MAX_SCROLLBOX_LINES 10
-#define FORECAST_API "1.9"
+#define FORECAST_API "2.0"
G_BEGIN_DECLS