Package Details: gnome-shell-extension-openweatherrefined 139-1

Git Clone URL: https://aur.archlinux.org/gnome-shell-extension-openweatherrefined.git (read-only, click to copy)
Package Base: gnome-shell-extension-openweatherrefined
Description: Display weather for the current or a specified location in the GNOME shell
Upstream URL: https://github.com/penguin-teal/gnome-openweather
Keywords: extension gnome openweather panel shell taskbar weather
Licenses: GPL-3.0-or-later
Submitter: tealpenguin
Maintainer: tealpenguin
Last Packager: tealpenguin
Votes: 1
Popularity: 0.027238
First Submitted: 2024-03-11 03:06 (UTC)
Last Updated: 2024-09-23 21:17 (UTC)

Latest Comments

tobias.bln commented on 2024-05-20 03:45 (UTC) (edited on 2024-05-20 03:47 (UTC) by tobias.bln)

Tray notification says:

OpenWeather Refined Too Many Requests Provider OpenWeatherMap / WeatherApi.com has too many users. Try switching weather providers in settings.

Switching to other weather provider has no effect.

FredBezies commented on 2024-03-30 10:43 (UTC)

Here is a fixed PKGBUILD for version 132 which is compatible with Gnome 46.

# Maintainer: Teal Penguin <_penguin at tuta dot io>

_pkgname=openweatherrefined
pkgname=gnome-shell-extension-openweatherrefined
pkgver=132
pkgrel=1
pkgdesc="Display weather for the current or a specified location in the GNOME shell"
arch=('any')
url="https://github.com/penguin-teal/gnome-openweather"
license=('GPL-3.0-or-later')
depends=('dconf' 'gnome-shell')

source=("${_pkgname}-v${pkgver}.tar.gz::${url}/archive/refs/tags/v${pkgver}.tar.gz")
sha256sums=('f178142e70e20aa965a0938da5da180263bbea40abc77c769f39f6f64c4e03f9')

build() {
  cd "gnome-openweather-${pkgver}"
  make
}

package() {
  cd "gnome-openweather-${pkgver}"
  make DESTDIR=${pkgdir} install
}