{"id":29150575,"url":"https://github.com/vixalien/gnome-software-plugin-apk2","last_synced_at":"2026-02-03T11:33:45.329Z","repository":{"id":298017736,"uuid":"959542774","full_name":"vixalien/gnome-software-plugin-apk2","owner":"vixalien","description":null,"archived":false,"fork":false,"pushed_at":"2025-10-13T00:06:09.000Z","size":72,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-24T22:47:47.242Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Vala","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vixalien.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-04-03T00:35:08.000Z","updated_at":"2025-10-13T08:56:11.000Z","dependencies_parsed_at":"2025-06-09T00:27:21.455Z","dependency_job_id":"2fb63a24-90ae-4dd3-818e-20e8ba0b6b3c","html_url":"https://github.com/vixalien/gnome-software-plugin-apk2","commit_stats":null,"previous_names":["vixalien/gnome-software-plugin-apk2"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/vixalien/gnome-software-plugin-apk2","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vixalien%2Fgnome-software-plugin-apk2","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vixalien%2Fgnome-software-plugin-apk2/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vixalien%2Fgnome-software-plugin-apk2/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vixalien%2Fgnome-software-plugin-apk2/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vixalien","download_url":"https://codeload.github.com/vixalien/gnome-software-plugin-apk2/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vixalien%2Fgnome-software-plugin-apk2/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29044344,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-03T10:09:22.136Z","status":"ssl_error","status_checked_at":"2026-02-03T10:09:16.814Z","response_time":96,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-06-30T23:30:42.179Z","updated_at":"2026-02-03T11:33:45.325Z","avatar_url":"https://github.com/vixalien.png","language":"Vala","funding_links":[],"categories":[],"sub_categories":[],"readme":"# gnome-software-plugin-apk2\n\n\u003e [!CAUTION]\n\u003e This plugin is incomplete, experimental and unstable. Use at own your risk.\n\nThis is a plugin that allows users to update their systems using GNOME Software.\n\nIt's a rewrite of the unmantained [gnome-software-plugin-apk] in Vala.\n\n## Hacking\n\nBuilding the app is currently fairly complex, partly due to some [Meson issues][meson-issue], and partly due to my skill issues.\n\n### 1. Install Dependencies\n\nUsing my `APKBUILD`s for [GNOME Software v48][gnome-software-apkbuild] and the [latest apk-polkit-rs][apk-polkit-rs-apkbuild] is probably the easiest way.\n\nThen do:\n\n```sh\napk install -t .gs-plugin-apk2 gnome-software-dev gnome-software-dbg apk-polkit-rs-dev apk-polkit-rs-dbg meson ninja\n```\n\nThen make sure the `apk-polkit-server` is running\n\n```sh\nservice apk-polkit-server start\n```\n\n### 2. Build the library\n\n```sh\nmeson setup build\n\ncd build\n# please input these line by line (you only need to do this once)\nninja src/vapi/Gs-49.gir\nninja src/vapi/ApkPolkit2-0.gir\nninja src/vapi/gnome-software.vapi\nninja src/vapi/apk-polkit-client-2.vapi\nninja\n```\n\n### 3. Install the library\n\n```sh\nninja install\n```\n\n\u003e PS: you can later uninstall by doing `ninja uninstall`\n\n### 4. Run GNOME Software with the plugin loaded\n\n```sh\ngnome-software --quit \u0026\u0026 gnome-software\n```\n\n## Resources\n\n- [gnome-software] : https://gitlab.gnome.org/GNOME/gnome-software\n- [apk-polkit-rs] : https://gitlab.alpinelinux.org/Cogitri/apk-polkit-rs\n\n[apk-polkit-rs]: https://gitlab.alpinelinux.org/Cogitri/apk-polkit-rs\n[gnome-software]: https://gitlab.gnome.org/GNOME/gnome-software\n[gnome-software-plugin-apk]: https://github.com/Cogitri/gnome-software-plugin-apk\n[meson-issue]: https://github.com/mesonbuild/meson/issues/12849\n[gnome-software-apkbuild]: https://github.com/vixalien/myports/tree/main/gnome-software\n[apk-polkit-rs-apkbuild]: https://github.com/vixalien/myports/tree/main/apk-polkit-rs\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvixalien%2Fgnome-software-plugin-apk2","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvixalien%2Fgnome-software-plugin-apk2","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvixalien%2Fgnome-software-plugin-apk2/lists"}