Package Details: gnome-shell-extension-openweather-git 1:r1268.9117377-1

Git Clone URL: https://aur.archlinux.org/gnome-shell-extension-openweather-git.git (read-only, click to copy)
Package Base: gnome-shell-extension-openweather-git
Description: Gnome shell extension for displaying weather information
Upstream URL: https://github.com/toppk/gnome-shell-extension-openweather
Licenses: GPL3
Conflicts: gnome-shell-extension-weather-git
Provides: gnome-shell-extension-weather-git
Submitter: jtts
Maintainer: FredBezies
Last Packager: FredBezies
Votes: 41
Popularity: 0.057815
First Submitted: 2014-04-30 22:47 (UTC)
Last Updated: 2023-12-17 12:46 (UTC)

Latest Comments

1 2 3 4 Next › Last »

FredBezies commented on 2024-03-24 08:33 (UTC)

This PKGBUILD is not compatible with Gnome 46. There is no activity for 5 months. Stinks like a dead project.

mschu commented on 2023-12-15 21:30 (UTC)

I'm orphaning this because I'm no longer using it

mcrose commented on 2023-12-15 11:55 (UTC)

did the same as @tobias.bln but I got this

==> Starting build()... /var/tmp/pamac-build-mcrose/gnome-shell-extension-openweather-git/PKGBUILD: line 26: cd: /var/tmp/pamac-build-mcrose/gnome-shell-extension-openweather-git/src/openweather: No such file or directory ==> ERROR: A failure occurred in build(). Aborting...

tobias.bln commented on 2023-11-21 04:25 (UTC)

Commenting out the pkgver()-function worked for me:


# Maintainer: Michael Schubert <mschu.dev at gmail> github.com/mschubert/PKGBUILDs
# Contributor: Taijian <taijian@posteo.de>
# Contributor: jtts
# Contributor: Christian METZLER <neroth@xeked.com>
pkgname=gnome-shell-extension-openweather-git
# _pkgbase=openweather
_pkgbase=gnome-shell-extension-openweather
pkgver=121.r11.g22859b4
pkgrel=1
pkgdesc="Gnome shell extension for displaying weather information"
arch=(any)
# url="https://github.com/toppk/gnome-shell-extension-openweather"
url="https://github.com/toppk/gnome-shell-extension-openweather"
license=(GPL3)
depends=('dconf' 'gnome-shell')
makedepends=('git')
provides=(gnome-shell-extension-weather-git)
conflicts=(gnome-shell-extension-weather-git)
# source=(git+$url.git)
source=("$_pkgbase::git+$url.git")
sha256sums=('SKIP')

# pkgver() {
#  cd "$_pkgbase"
#  git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
# }

build() {
  cd "$srcdir/$_pkgbase"
  make mergepo
}

zeners commented on 2023-11-18 07:08 (UTC) (edited on 2023-11-18 07:09 (UTC) by zeners)

it doesn't work:

  • it has no tags, so git describe exit with error, this works for me:

echo v121.r$(git rev-list --count HEAD)-$(git rev-parse --short HEAD) | sed 's/^v//;s/([^-]*-g)/r\1/;s/-/./g'

  • dir $_pkgbase not exists, you may change it to $srcdir or change

source=("$_pkgbase::git+$url.git")

mschu commented on 2023-11-17 14:30 (UTC)

There is no note of moving in the upstream repository, but I changed the git URL to the fork for gnome45 compatibility

sxyzy1016 commented on 2023-11-17 13:34 (UTC)

Upstream project has been moved to "https://github.com/toppk/gnome-shell-extension-openweather". Please update the url in PKDBUILD.

hashworks commented on 2022-07-15 07:57 (UTC)

Build is currently failing:

po/it.po:52: a format specification for argument 1 doesn't exist in 'msgstr'
po/it.po:319: a format specification for argument 1 doesn't exist in 'msgstr'
po/it.po:945: 'msgstr' is not a valid JavaScript format string, unlike 'msgid'. Reason: The character that terminates the directive number 1 is not a valid conversion specifier.
msgfmt: found 3 fatal errors
make: *** [Makefile:61: po/it.mo] Error 1
make: *** Waiting for unfinished jobs....

logion commented on 2022-05-01 07:59 (UTC) (edited on 2022-05-01 07:59 (UTC) by logion)

FYI upstream removed the autogen.sh script:

diff --git a/PKGBUILD b/PKGBUILD
index ffa209d..5908d19 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -25,7 +25,6 @@ pkgver() {

 build() {
   cd "$srcdir/$_pkgbase"
-  ./autogen.sh --prefix=/usr
   make
 }

mschu commented on 2022-04-14 09:15 (UTC) (edited on 2022-04-14 09:15 (UTC) by mschu)

Changed the upstream URL to pull the skrewball fork now.