-
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #141 from serpent-os/gweather
Gweather
- Loading branch information
Showing
12 changed files
with
372 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
/** Human readable report. This is not consumed by boulder */ | ||
{ | ||
"manifest-version": "0.2", | ||
"packages": { | ||
"libgweather": { | ||
"build-depends": [ | ||
"binary(g-ir-scanner)", | ||
"pkgconfig(geocode-glib-2.0)", | ||
"pkgconfig(gobject-introspection-1.0)", | ||
"pkgconfig(json-glib-1.0)", | ||
"pkgconfig(libsoup-3.0)", | ||
"pkgconfig(libxml-2.0)", | ||
"python-pygobject-devel" | ||
], | ||
"depends": [ | ||
"soname(libc.so.6(x86_64))", | ||
"soname(libgeocode-glib-2.so.0(x86_64))", | ||
"soname(libgio-2.0.so.0(x86_64))", | ||
"soname(libglib-2.0.so.0(x86_64))", | ||
"soname(libgobject-2.0.so.0(x86_64))", | ||
"soname(libjson-glib-1.0.so.0(x86_64))", | ||
"soname(libm.so.6(x86_64))", | ||
"soname(libsoup-3.0.so.0(x86_64))", | ||
"soname(libxml2.so.2(x86_64))" | ||
], | ||
"files": [ | ||
"/usr/lib/libgweather-4.so.0", | ||
"/usr/lib/libgweather-4.so.0.400.0", | ||
"/usr/lib/libgweather-4/Locations.bin", | ||
"/usr/share/glib-2.0/schemas/org.gnome.GWeather4.enums.xml", | ||
"/usr/share/glib-2.0/schemas/org.gnome.GWeather4.gschema.xml", | ||
"/usr/share/libgweather-4/Locations.xml", | ||
"/usr/share/libgweather-4/locations.dtd" | ||
], | ||
"name": "libgweather", | ||
"provides": [ | ||
"soname(libgweather-4.so.0(x86_64))" | ||
] | ||
}, | ||
"libgweather-devel": { | ||
"build-depends": [ | ||
"binary(g-ir-scanner)", | ||
"pkgconfig(geocode-glib-2.0)", | ||
"pkgconfig(gobject-introspection-1.0)", | ||
"pkgconfig(json-glib-1.0)", | ||
"pkgconfig(libsoup-3.0)", | ||
"pkgconfig(libxml-2.0)", | ||
"python-pygobject-devel" | ||
], | ||
"depends": [ | ||
"pkgconfig(geocode-glib-2.0)", | ||
"pkgconfig(gio-2.0)", | ||
"pkgconfig(json-glib-1.0)", | ||
"pkgconfig(libsoup-3.0)", | ||
"pkgconfig(libxml-2.0)" | ||
], | ||
"files": [ | ||
"/usr/include/libgweather-4.0/libgweather/gweather-enum-types.h", | ||
"/usr/include/libgweather-4.0/libgweather/gweather-enums.h", | ||
"/usr/include/libgweather-4.0/libgweather/gweather-info.h", | ||
"/usr/include/libgweather-4.0/libgweather/gweather-location.h", | ||
"/usr/include/libgweather-4.0/libgweather/gweather-version.h", | ||
"/usr/include/libgweather-4.0/libgweather/gweather.h", | ||
"/usr/lib/libgweather-4.so", | ||
"/usr/lib/pkgconfig/gweather4.pc" | ||
], | ||
"name": "libgweather-devel", | ||
"provides": [ | ||
"pkgconfig(gweather4)" | ||
] | ||
} | ||
}, | ||
"source-name": "libgweather", | ||
"source-release": "1", | ||
"source-version": "4.4.0" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
releases: | ||
id: 13147 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# | ||
# SPDX-FileCopyrightText: © 2020-2024 Serpent OS Developers | ||
# | ||
# SPDX-License-Identifier: MPL-2.0 | ||
# | ||
name : libgweather | ||
version : 4.4.0 | ||
release : 1 | ||
homepage : https://wiki.gnome.org/Projects/LibGWeather | ||
upstreams : | ||
- https://download.gnome.org/sources/libgweather/4.4/libgweather-4.4.0.tar.xz : 366e866ff2a708b894cfea9475b8e8ff54cb3e2b477ea72a8ade0dabee5f48a4 | ||
summary : Location and time zone database, and weather-lookup library | ||
description : | | ||
libgweather is a library to access weather information from online services for numerous locations. | ||
license : | ||
- GPL-2.0-or-later | ||
builddeps : | ||
- binary(g-ir-scanner) | ||
- pkgconfig(geocode-glib-2.0) | ||
- pkgconfig(gobject-introspection-1.0) | ||
- pkgconfig(json-glib-1.0) | ||
- pkgconfig(libsoup-3.0) | ||
- pkgconfig(libxml-2.0) | ||
- python-pygobject-devel | ||
setup : | | ||
%meson -Dintrospection=false | ||
build : | | ||
%meson_build | ||
install : | | ||
%meson_install |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
/** Human readable report. This is not consumed by boulder */ | ||
{ | ||
"manifest-version": "0.2", | ||
"packages": { | ||
"pycairo": { | ||
"build-depends": [ | ||
"pkgconfig(cairo)", | ||
"pkgconfig(python3)" | ||
], | ||
"depends": [ | ||
"soname(libc.so.6(x86_64))", | ||
"soname(libcairo.so.2(x86_64))" | ||
], | ||
"files": [ | ||
"/usr/lib/python3.11/site-packages/cairo/__init__.py", | ||
"/usr/lib/python3.11/site-packages/cairo/__init__.pyi", | ||
"/usr/lib/python3.11/site-packages/cairo/__pycache__/__init__.cpython-311.pyc", | ||
"/usr/lib/python3.11/site-packages/cairo/_cairo.cpython-311-x86_64-linux-gnu.so", | ||
"/usr/lib/python3.11/site-packages/cairo/include/py3cairo.h", | ||
"/usr/lib/python3.11/site-packages/cairo/py.typed", | ||
"/usr/lib/python3.11/site-packages/pycairo-1.25.1.egg-info" | ||
], | ||
"name": "pycairo", | ||
"provides": [ | ||
"soname(_cairo.cpython-311-x86_64-linux-gnu.so(x86_64))" | ||
] | ||
}, | ||
"pycairo-devel": { | ||
"build-depends": [ | ||
"pkgconfig(cairo)", | ||
"pkgconfig(python3)" | ||
], | ||
"depends": [ | ||
"pkgconfig(cairo)" | ||
], | ||
"files": [ | ||
"/usr/include/pycairo/py3cairo.h", | ||
"/usr/lib/pkgconfig/py3cairo.pc" | ||
], | ||
"name": "pycairo-devel", | ||
"provides": [ | ||
"pkgconfig(py3cairo)" | ||
] | ||
} | ||
}, | ||
"source-name": "pycairo", | ||
"source-release": "1", | ||
"source-version": "1.25.1" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
releases: | ||
id: 13166 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# | ||
# SPDX-FileCopyrightText: © 2020-2024 Serpent OS Developers | ||
# | ||
# SPDX-License-Identifier: MPL-2.0 | ||
# | ||
name : pycairo | ||
version : 1.25.1 | ||
release : 1 | ||
homepage : http://cairographics.org/pycairo/ | ||
upstreams : | ||
- https://github.com/pygobject/pycairo/releases/download/v1.25.1/pycairo-1.25.1.tar.gz : 7e2be4fbc3b4536f16db7a11982cbf713e75069a4d73d44fe5a49b68423f5c0c | ||
summary : Python bindings for the cairo graphics library. | ||
description : | | ||
Pycairo is a set of Python 2 & 3 bindings for the cairo graphics library. | ||
license : | ||
- LGPL-2.1-or-later | ||
- MPL-1.1 | ||
builddeps : | ||
- pkgconfig(cairo) | ||
- pkgconfig(python3) | ||
setup : | | ||
%meson | ||
build : | | ||
%meson_build | ||
install : | | ||
%meson_install |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,151 @@ | ||
/** Human readable report. This is not consumed by boulder */ | ||
{ | ||
"manifest-version": "0.2", | ||
"packages": { | ||
"python-pygobject": { | ||
"build-depends": [ | ||
"pkgconfig(cairo)", | ||
"pkgconfig(gio-2.0)", | ||
"pkgconfig(glib-2.0)", | ||
"pkgconfig(gmodule-2.0)", | ||
"pkgconfig(gobject-2.0)", | ||
"pkgconfig(gobject-introspection-1.0)", | ||
"pkgconfig(libffi)", | ||
"pkgconfig(py3cairo)", | ||
"pkgconfig(python3)", | ||
"python-build", | ||
"python-installer", | ||
"python-packaging", | ||
"python-wheel" | ||
], | ||
"depends": [ | ||
"soname(libc.so.6(x86_64))", | ||
"soname(libcairo-gobject.so.2(x86_64))", | ||
"soname(libcairo.so.2(x86_64))", | ||
"soname(libffi.so.8(x86_64))", | ||
"soname(libgirepository-1.0.so.1(x86_64))", | ||
"soname(libglib-2.0.so.0(x86_64))", | ||
"soname(libgobject-2.0.so.0(x86_64))" | ||
], | ||
"files": [ | ||
"/usr/lib/python3.11/site-packages/PyGObject-3.46.0.dist-info/COPYING", | ||
"/usr/lib/python3.11/site-packages/PyGObject-3.46.0.dist-info/METADATA", | ||
"/usr/lib/python3.11/site-packages/PyGObject-3.46.0.dist-info/RECORD", | ||
"/usr/lib/python3.11/site-packages/PyGObject-3.46.0.dist-info/WHEEL", | ||
"/usr/lib/python3.11/site-packages/PyGObject-3.46.0.dist-info/top_level.txt", | ||
"/usr/lib/python3.11/site-packages/gi/__init__.py", | ||
"/usr/lib/python3.11/site-packages/gi/__pycache__/__init__.cpython-311.opt-1.pyc", | ||
"/usr/lib/python3.11/site-packages/gi/__pycache__/__init__.cpython-311.pyc", | ||
"/usr/lib/python3.11/site-packages/gi/__pycache__/_constants.cpython-311.opt-1.pyc", | ||
"/usr/lib/python3.11/site-packages/gi/__pycache__/_constants.cpython-311.pyc", | ||
"/usr/lib/python3.11/site-packages/gi/__pycache__/_error.cpython-311.opt-1.pyc", | ||
"/usr/lib/python3.11/site-packages/gi/__pycache__/_error.cpython-311.pyc", | ||
"/usr/lib/python3.11/site-packages/gi/__pycache__/_gtktemplate.cpython-311.opt-1.pyc", | ||
"/usr/lib/python3.11/site-packages/gi/__pycache__/_gtktemplate.cpython-311.pyc", | ||
"/usr/lib/python3.11/site-packages/gi/__pycache__/_option.cpython-311.opt-1.pyc", | ||
"/usr/lib/python3.11/site-packages/gi/__pycache__/_option.cpython-311.pyc", | ||
"/usr/lib/python3.11/site-packages/gi/__pycache__/_ossighelper.cpython-311.opt-1.pyc", | ||
"/usr/lib/python3.11/site-packages/gi/__pycache__/_ossighelper.cpython-311.pyc", | ||
"/usr/lib/python3.11/site-packages/gi/__pycache__/_propertyhelper.cpython-311.opt-1.pyc", | ||
"/usr/lib/python3.11/site-packages/gi/__pycache__/_propertyhelper.cpython-311.pyc", | ||
"/usr/lib/python3.11/site-packages/gi/__pycache__/_signalhelper.cpython-311.opt-1.pyc", | ||
"/usr/lib/python3.11/site-packages/gi/__pycache__/_signalhelper.cpython-311.pyc", | ||
"/usr/lib/python3.11/site-packages/gi/__pycache__/docstring.cpython-311.opt-1.pyc", | ||
"/usr/lib/python3.11/site-packages/gi/__pycache__/docstring.cpython-311.pyc", | ||
"/usr/lib/python3.11/site-packages/gi/__pycache__/importer.cpython-311.opt-1.pyc", | ||
"/usr/lib/python3.11/site-packages/gi/__pycache__/importer.cpython-311.pyc", | ||
"/usr/lib/python3.11/site-packages/gi/__pycache__/module.cpython-311.opt-1.pyc", | ||
"/usr/lib/python3.11/site-packages/gi/__pycache__/module.cpython-311.pyc", | ||
"/usr/lib/python3.11/site-packages/gi/__pycache__/pygtkcompat.cpython-311.opt-1.pyc", | ||
"/usr/lib/python3.11/site-packages/gi/__pycache__/pygtkcompat.cpython-311.pyc", | ||
"/usr/lib/python3.11/site-packages/gi/__pycache__/types.cpython-311.opt-1.pyc", | ||
"/usr/lib/python3.11/site-packages/gi/__pycache__/types.cpython-311.pyc", | ||
"/usr/lib/python3.11/site-packages/gi/_constants.py", | ||
"/usr/lib/python3.11/site-packages/gi/_error.py", | ||
"/usr/lib/python3.11/site-packages/gi/_gi.cpython-311-x86_64-linux-gnu.so", | ||
"/usr/lib/python3.11/site-packages/gi/_gi_cairo.cpython-311-x86_64-linux-gnu.so", | ||
"/usr/lib/python3.11/site-packages/gi/_gtktemplate.py", | ||
"/usr/lib/python3.11/site-packages/gi/_option.py", | ||
"/usr/lib/python3.11/site-packages/gi/_ossighelper.py", | ||
"/usr/lib/python3.11/site-packages/gi/_propertyhelper.py", | ||
"/usr/lib/python3.11/site-packages/gi/_signalhelper.py", | ||
"/usr/lib/python3.11/site-packages/gi/docstring.py", | ||
"/usr/lib/python3.11/site-packages/gi/importer.py", | ||
"/usr/lib/python3.11/site-packages/gi/module.py", | ||
"/usr/lib/python3.11/site-packages/gi/overrides/GIMarshallingTests.py", | ||
"/usr/lib/python3.11/site-packages/gi/overrides/GLib.py", | ||
"/usr/lib/python3.11/site-packages/gi/overrides/GObject.py", | ||
"/usr/lib/python3.11/site-packages/gi/overrides/Gdk.py", | ||
"/usr/lib/python3.11/site-packages/gi/overrides/GdkPixbuf.py", | ||
"/usr/lib/python3.11/site-packages/gi/overrides/Gio.py", | ||
"/usr/lib/python3.11/site-packages/gi/overrides/Gtk.py", | ||
"/usr/lib/python3.11/site-packages/gi/overrides/Pango.py", | ||
"/usr/lib/python3.11/site-packages/gi/overrides/__init__.py", | ||
"/usr/lib/python3.11/site-packages/gi/overrides/__pycache__/GIMarshallingTests.cpython-311.opt-1.pyc", | ||
"/usr/lib/python3.11/site-packages/gi/overrides/__pycache__/GIMarshallingTests.cpython-311.pyc", | ||
"/usr/lib/python3.11/site-packages/gi/overrides/__pycache__/GLib.cpython-311.opt-1.pyc", | ||
"/usr/lib/python3.11/site-packages/gi/overrides/__pycache__/GLib.cpython-311.pyc", | ||
"/usr/lib/python3.11/site-packages/gi/overrides/__pycache__/GObject.cpython-311.opt-1.pyc", | ||
"/usr/lib/python3.11/site-packages/gi/overrides/__pycache__/GObject.cpython-311.pyc", | ||
"/usr/lib/python3.11/site-packages/gi/overrides/__pycache__/Gdk.cpython-311.opt-1.pyc", | ||
"/usr/lib/python3.11/site-packages/gi/overrides/__pycache__/Gdk.cpython-311.pyc", | ||
"/usr/lib/python3.11/site-packages/gi/overrides/__pycache__/GdkPixbuf.cpython-311.opt-1.pyc", | ||
"/usr/lib/python3.11/site-packages/gi/overrides/__pycache__/GdkPixbuf.cpython-311.pyc", | ||
"/usr/lib/python3.11/site-packages/gi/overrides/__pycache__/Gio.cpython-311.opt-1.pyc", | ||
"/usr/lib/python3.11/site-packages/gi/overrides/__pycache__/Gio.cpython-311.pyc", | ||
"/usr/lib/python3.11/site-packages/gi/overrides/__pycache__/Gtk.cpython-311.opt-1.pyc", | ||
"/usr/lib/python3.11/site-packages/gi/overrides/__pycache__/Gtk.cpython-311.pyc", | ||
"/usr/lib/python3.11/site-packages/gi/overrides/__pycache__/Pango.cpython-311.opt-1.pyc", | ||
"/usr/lib/python3.11/site-packages/gi/overrides/__pycache__/Pango.cpython-311.pyc", | ||
"/usr/lib/python3.11/site-packages/gi/overrides/__pycache__/__init__.cpython-311.opt-1.pyc", | ||
"/usr/lib/python3.11/site-packages/gi/overrides/__pycache__/__init__.cpython-311.pyc", | ||
"/usr/lib/python3.11/site-packages/gi/overrides/__pycache__/keysyms.cpython-311.opt-1.pyc", | ||
"/usr/lib/python3.11/site-packages/gi/overrides/__pycache__/keysyms.cpython-311.pyc", | ||
"/usr/lib/python3.11/site-packages/gi/overrides/keysyms.py", | ||
"/usr/lib/python3.11/site-packages/gi/pygtkcompat.py", | ||
"/usr/lib/python3.11/site-packages/gi/repository/__init__.py", | ||
"/usr/lib/python3.11/site-packages/gi/repository/__pycache__/__init__.cpython-311.opt-1.pyc", | ||
"/usr/lib/python3.11/site-packages/gi/repository/__pycache__/__init__.cpython-311.pyc", | ||
"/usr/lib/python3.11/site-packages/gi/types.py", | ||
"/usr/lib/python3.11/site-packages/pygtkcompat/__init__.py", | ||
"/usr/lib/python3.11/site-packages/pygtkcompat/__pycache__/__init__.cpython-311.opt-1.pyc", | ||
"/usr/lib/python3.11/site-packages/pygtkcompat/__pycache__/__init__.cpython-311.pyc", | ||
"/usr/lib/python3.11/site-packages/pygtkcompat/__pycache__/generictreemodel.cpython-311.opt-1.pyc", | ||
"/usr/lib/python3.11/site-packages/pygtkcompat/__pycache__/generictreemodel.cpython-311.pyc", | ||
"/usr/lib/python3.11/site-packages/pygtkcompat/__pycache__/pygtkcompat.cpython-311.opt-1.pyc", | ||
"/usr/lib/python3.11/site-packages/pygtkcompat/__pycache__/pygtkcompat.cpython-311.pyc", | ||
"/usr/lib/python3.11/site-packages/pygtkcompat/generictreemodel.py", | ||
"/usr/lib/python3.11/site-packages/pygtkcompat/pygtkcompat.py" | ||
], | ||
"name": "python-pygobject", | ||
"provides": [ | ||
"soname(_gi.cpython-311-x86_64-linux-gnu.so(x86_64))", | ||
"soname(_gi_cairo.cpython-311-x86_64-linux-gnu.so(x86_64))" | ||
] | ||
}, | ||
"python-pygobject-devel": { | ||
"build-depends": [ | ||
"pkgconfig(cairo)", | ||
"pkgconfig(gio-2.0)", | ||
"pkgconfig(glib-2.0)", | ||
"pkgconfig(gmodule-2.0)", | ||
"pkgconfig(gobject-2.0)", | ||
"pkgconfig(gobject-introspection-1.0)", | ||
"pkgconfig(libffi)", | ||
"pkgconfig(py3cairo)", | ||
"pkgconfig(python3)", | ||
"python-build", | ||
"python-installer", | ||
"python-packaging", | ||
"python-wheel" | ||
], | ||
"files": [ | ||
"/usr/include/pygobject-3.0/pygobject.h" | ||
], | ||
"name": "python-pygobject-devel" | ||
} | ||
}, | ||
"source-name": "python-pygobject", | ||
"source-release": "1", | ||
"source-version": "3.46.0" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
releases: | ||
id: 13158 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# | ||
# SPDX-FileCopyrightText: © 2020-2024 Serpent OS Developers | ||
# | ||
# SPDX-License-Identifier: MPL-2.0 | ||
# | ||
name : python-pygobject | ||
version : 3.46.0 | ||
release : 1 | ||
homepage : https://wiki.gnome.org/Projects/PyGObject | ||
upstreams : | ||
- https://download.gnome.org/sources/pygobject/3.46/pygobject-3.46.0.tar.xz : 426008b2dad548c9af1c7b03b59df0440fde5c33f38fb5406b103a43d653cafc | ||
summary : PyGObject is a Python package which provides bindings for GObject based libraries | ||
description : | | ||
PyGObject is a Python package which provides bindings for GObject based libraries such as GTK, GStreamer, WebKitGTK, GLib, GIO and many more. | ||
license : | ||
- LGPL-2.1-or-later | ||
builddeps : | ||
- pkgconfig(cairo) | ||
- pkgconfig(gio-2.0) | ||
- pkgconfig(glib-2.0) | ||
- pkgconfig(gmodule-2.0) | ||
- pkgconfig(gobject-2.0) | ||
- pkgconfig(gobject-introspection-1.0) | ||
- pkgconfig(libffi) | ||
- pkgconfig(py3cairo) | ||
- pkgconfig(python3) | ||
- python-build | ||
- python-installer | ||
- python-packaging | ||
- python-wheel | ||
build : | | ||
%pyproject_build | ||
install : | | ||
%pyproject_install |