ginext-gio 0.8.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- ginext_gio-0.8.1/.gitignore +57 -0
- ginext_gio-0.8.1/PKG-INFO +22 -0
- ginext_gio-0.8.1/pyproject.toml +55 -0
- ginext_gio-0.8.1/src/ginext_gio/__init__.py +0 -0
- ginext_gio-0.8.1/src/ginext_gio/_overlays/Gio.py +805 -0
- ginext_gio-0.8.1/src/ginext_gio/_overlays/GioUnix.py +27 -0
- ginext_gio-0.8.1/tests/conftest.py +82 -0
- ginext_gio-0.8.1/tests/gio/__init__.py +16 -0
- ginext_gio-0.8.1/tests/gio/fixtures/gsettings/gschemas.compiled +0 -0
- ginext_gio-0.8.1/tests/gio/fixtures/gsettings/org.ginext.test.gschema.xml +69 -0
- ginext_gio-0.8.1/tests/gio/test_aio_eventloop.py +308 -0
- ginext_gio-0.8.1/tests/gio/test_app_info.py +59 -0
- ginext_gio-0.8.1/tests/gio/test_application.py +471 -0
- ginext_gio-0.8.1/tests/gio/test_async.py +279 -0
- ginext_gio-0.8.1/tests/gio/test_async_callback_userdata.py +105 -0
- ginext_gio-0.8.1/tests/gio/test_cancellable.py +336 -0
- ginext_gio-0.8.1/tests/gio/test_dbus.py +558 -0
- ginext_gio-0.8.1/tests/gio/test_errors.py +367 -0
- ginext_gio-0.8.1/tests/gio/test_file.py +486 -0
- ginext_gio-0.8.1/tests/gio/test_file_interface_compat.py +113 -0
- ginext_gio-0.8.1/tests/gio/test_input_stream.py +30 -0
- ginext_gio-0.8.1/tests/gio/test_list_store.py +217 -0
- ginext_gio-0.8.1/tests/gio/test_menu.py +88 -0
- ginext_gio-0.8.1/tests/gio/test_settings.py +875 -0
- ginext_gio-0.8.1/tests/gio/test_simple_action.py +107 -0
- ginext_gio-0.8.1/tests/gio/test_task.py +48 -0
- ginext_gio-0.8.1/tests/gio/test_volume_monitor.py +28 -0
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
.agents
|
|
2
|
+
.codex
|
|
3
|
+
history
|
|
4
|
+
|
|
5
|
+
# Generated mkdocs API reference (produced by `make api-docs` and in CI) + build.
|
|
6
|
+
/docs/api/
|
|
7
|
+
/site/
|
|
8
|
+
|
|
9
|
+
apps
|
|
10
|
+
.vscode
|
|
11
|
+
.idea/
|
|
12
|
+
build/
|
|
13
|
+
build-*/
|
|
14
|
+
venv*/
|
|
15
|
+
__pycache__
|
|
16
|
+
**/__pycache__
|
|
17
|
+
*.pyc
|
|
18
|
+
*.pyo
|
|
19
|
+
*.so
|
|
20
|
+
*.egg-info/
|
|
21
|
+
dist/
|
|
22
|
+
wheelhouse/
|
|
23
|
+
stubs/
|
|
24
|
+
# Generated stub files — run `make stubs` or `uv run python -m ginext_stubgen install`
|
|
25
|
+
packages/ginext-stubs/ginext-stubs/*.pyi
|
|
26
|
+
packages/ginext-stubs/.stub-generated.stamp
|
|
27
|
+
# mypy incremental cache (per-package dirs; see ci/run-mypy.sh)
|
|
28
|
+
.mypy_cache/
|
|
29
|
+
**/.mypy_cache/
|
|
30
|
+
memory/
|
|
31
|
+
pygobject
|
|
32
|
+
!src/ginext/tests/pygobject/
|
|
33
|
+
!src/ginext/tests/pygobject/**
|
|
34
|
+
src/ginext/tests/pygobject/.ruff_cache/
|
|
35
|
+
src/ginext/tests/pygobject/__pycache__/
|
|
36
|
+
!packages/ginext-gi-compat/tests/pygobject/
|
|
37
|
+
!packages/ginext-gi-compat/tests/pygobject/**
|
|
38
|
+
packages/ginext-gi-compat/tests/pygobject/__pycache__/
|
|
39
|
+
tags
|
|
40
|
+
# Editor / IDE local state
|
|
41
|
+
.obsidian/
|
|
42
|
+
core.*
|
|
43
|
+
src/gitlab-agent-bot/.env
|
|
44
|
+
src/gitlab-agent-bot/.venv/
|
|
45
|
+
src/gitlab-agent-bot/.ruff_cache/
|
|
46
|
+
src/gitlab-agent-bot/work/
|
|
47
|
+
# Third-party apps used as integration smoke tests (Drawing etc.) —
|
|
48
|
+
# checked out locally for `make drawing` / `make showtime`, not vendored.
|
|
49
|
+
# pyedit is our own showcase and IS tracked.
|
|
50
|
+
/apps/drawing/
|
|
51
|
+
/apps/drawing-run/
|
|
52
|
+
/apps/gnome-text-editor/
|
|
53
|
+
/apps/showtime/
|
|
54
|
+
vcpkg_installed/
|
|
55
|
+
|
|
56
|
+
# Windows build/scanner venvs
|
|
57
|
+
.venv*/
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ginext-gio
|
|
3
|
+
Version: 0.8.1
|
|
4
|
+
Summary: Gio namespace overlay for ginext
|
|
5
|
+
Project-URL: Homepage, https://github.com/jdahlin/ginext
|
|
6
|
+
Project-URL: Repository, https://github.com/jdahlin/ginext
|
|
7
|
+
Project-URL: Issues, https://github.com/jdahlin/ginext/issues
|
|
8
|
+
Author-email: Johan Dahlin <jdahlin@gmail.com>
|
|
9
|
+
License-Expression: LGPL-2.1-or-later
|
|
10
|
+
Classifier: Development Status :: 4 - Beta
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
13
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
14
|
+
Requires-Python: >=3.14
|
|
15
|
+
Requires-Dist: ginext-core>=0.8.1
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
|
|
18
|
+
# ginext-gio
|
|
19
|
+
|
|
20
|
+
Gio namespace overlay for ginext
|
|
21
|
+
|
|
22
|
+
Part of [ginext](https://github.com/jdahlin/ginext) — fast, lazy, JIT-compiled GObject-introspection bindings for free-threaded Python.
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "ginext-gio"
|
|
3
|
+
version = "0.8.1"
|
|
4
|
+
description = "Gio namespace overlay for ginext"
|
|
5
|
+
readme = { content-type = "text/markdown", text = """
|
|
6
|
+
# ginext-gio
|
|
7
|
+
|
|
8
|
+
Gio namespace overlay for ginext
|
|
9
|
+
|
|
10
|
+
Part of [ginext](https://github.com/jdahlin/ginext) — fast, lazy, JIT-compiled GObject-introspection bindings for free-threaded Python.
|
|
11
|
+
""" }
|
|
12
|
+
requires-python = ">=3.14"
|
|
13
|
+
license = "LGPL-2.1-or-later"
|
|
14
|
+
authors = [{ name = "Johan Dahlin", email = "jdahlin@gmail.com" }]
|
|
15
|
+
classifiers = [
|
|
16
|
+
"Development Status :: 4 - Beta",
|
|
17
|
+
"Intended Audience :: Developers",
|
|
18
|
+
"Programming Language :: Python :: 3.14",
|
|
19
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
20
|
+
]
|
|
21
|
+
dependencies = ["ginext-core>=0.8.1"]
|
|
22
|
+
|
|
23
|
+
[project.entry-points."ginext.overlays"]
|
|
24
|
+
Gio = "ginext_gio:_overlays.Gio"
|
|
25
|
+
GioUnix = "ginext_gio:_overlays.GioUnix"
|
|
26
|
+
|
|
27
|
+
[project.urls]
|
|
28
|
+
Homepage = "https://github.com/jdahlin/ginext"
|
|
29
|
+
Repository = "https://github.com/jdahlin/ginext"
|
|
30
|
+
Issues = "https://github.com/jdahlin/ginext/issues"
|
|
31
|
+
|
|
32
|
+
[build-system]
|
|
33
|
+
requires = ["hatchling"]
|
|
34
|
+
build-backend = "hatchling.build"
|
|
35
|
+
|
|
36
|
+
[tool.hatch.build.targets.wheel]
|
|
37
|
+
packages = ["src/ginext_gio"]
|
|
38
|
+
|
|
39
|
+
[tool.ruff]
|
|
40
|
+
extend = "../../pyproject.toml"
|
|
41
|
+
|
|
42
|
+
[tool.ruff.lint.per-file-ignores]
|
|
43
|
+
"src/ginext_gio/_overlays/Gio.py" = ["F811"]
|
|
44
|
+
"tests/**/*.py" = ["SLF001", "E402"]
|
|
45
|
+
|
|
46
|
+
[tool.pytest.ini_options]
|
|
47
|
+
addopts = "-p no:benchmark --dist=loadgroup --import-mode=importlib"
|
|
48
|
+
testpaths = ["tests"]
|
|
49
|
+
# Repo root, so conftests can import the shared dbus_fixtures module.
|
|
50
|
+
pythonpath = ["../.."]
|
|
51
|
+
filterwarnings = [
|
|
52
|
+
"ignore:'asyncio\\.get_event_loop_policy' is deprecated and slated for removal in Python 3\\.16:DeprecationWarning",
|
|
53
|
+
"ignore:'asyncio\\.set_event_loop_policy' is deprecated and slated for removal in Python 3\\.16:DeprecationWarning",
|
|
54
|
+
"ignore:.* positional/keyword construction is deprecated:DeprecationWarning",
|
|
55
|
+
]
|
|
File without changes
|