summaryrefslogtreecommitdiffstats
path: root/snap
AgeCommit message (Collapse)Author
9 daysversion 4.0.7v4.0.7masternicolargo
10 daysversion 4.0.6v4.0.6nicolargo
2024-05-18version 4.0.5nicolargo
2024-05-15version 4.0.4v4.0.4support/v4.0.xBharath Vignesh J K
2024-05-15version 4.0.3v4.0.3Bharath Vignesh J K
2024-05-14version 4.0.2v4.0.2Bharath Vignesh J K
2024-05-12version 4.0.1v4.0.1nicolargo
2024-05-12Update docs and APInicolargo
2024-05-12On the road of Glances 4.1.0nicolargo
2024-05-12Glances version 4.0.0nicolargo
2024-05-06Change SNAP version to 4.0.0RC02nicolargo
2024-04-29Get nack toSnapCraft Core22 because Snap is ...nicolargo
2024-04-29Upgrade SnapCraft to Core24nicolargo
2024-03-24Try a simple Snapcraft.yaml file, add versionnicolargo
2024-03-24Try a simple Snapcraft.yaml filenicolargo
2024-03-23Another try for the fucking Snapcraft packagenicolargo
2024-02-03Update Snapcraftnicolargo
2023-11-26First step of the migrationnicolargo
2023-11-26Rename any reference to Bottle in doc and dep file. Ready to refactor the ↵nicolargo
main glances_restful_api.py file.
2023-05-19Get back to Core20 because Snap is PISA againnicolargo
2023-05-19Get back to Core20 because Snap is PISAnicolargo
2023-05-19SNAP is PITAnicolargo
2023-05-19Snap is a pain in the assnicolargo
2023-05-19Try to migrate SnapCraft Core 20 to 22 (following guide: ↵nicolargo
https://forum.snapcraft.io/t/micro-howto-migrate-from-core20-to-core22/30188)
2023-05-19No module named 'influxdb' on the snap version of glances #1738nicolargo
2022-10-22Another try for snap - Related to #1801nicolargo
2022-10-22Another try for snap - Related to #1801nicolargo
2022-10-03Fix typosKian-Meng Ang
Found via `codespell -S ./venv,./glances/outputs,*.svg -L hart,bu,te,statics`
2021-04-23Another unsuccess try for SNAPnicolargo
2021-03-13Correct launch issue in Snapcraft another try again...nicolargo
2021-03-13Correct launch issue in Snapcraft another try...nicolargo
2021-03-13Correct launch issue in Snapcraftnicolargo
2021-03-13Add debug message for snap packaging againnicolargo
2021-03-13One more try for snapcraftnicolargo
2021-03-13Add debug message for snap packagingnicolargo
2021-01-24Resolve SNAP conflictnicolargo
2021-01-24Force Ubuntu 20.01 for SNAPnicolargo
2020-03-10Glances 3.1.4 ready to be releasedv3.1.4nicolargo
2019-04-12snap: Incorporate selective-checkout to ensure a revision for stable channel ↵林博仁(Buo-ren Lin)
is always available Refer-to: Selective-checkout: Check out the tagged release revision if it isn't promoted to the stable channel - doc - snapcraft.io <https://forum.snapcraft.io/t/selective-checkout-check-out-the-tagged-release-revision-if-it-isnt-promoted-to-the-stable-channel/10617> Refer-to: Releasing your app - Documentation for snaps: Universal Linux packages <https://docs.snapcraft.io/releasing-your-app/6795> Signed-off-by: 林博仁(Buo-ren Lin) <Buo.Ren.Lin@gmail.com>
2019-04-12snap: Unify sequence indentation style林博仁(Buo-ren Lin)
Signed-off-by: 林博仁(Buo-ren Lin) <Buo.Ren.Lin@gmail.com>
2019-04-12snap: Migrate to `core` base林博仁(Buo-ren Lin)
This patch allows the snap to use the latest Snapcraft features. Signed-off-by: 林博仁(Buo-ren Lin) <Buo.Ren.Lin@gmail.com>
2019-04-11Merge pull request #1464 from ↵Nicolas Hennion
Lin-Buo-Ren/patch/snap/support-canonical-config-paths snap: Support canonical config paths, fixes #1403
2019-04-10snap: Support canonical config paths, fixes #1403林博仁(Buo-ren Lin)
This patch supports canonical config paths by the help of the `personal-files` and the `system-files` security confinement interfaces. Signed-off-by: 林博仁(Buo-ren Lin) <Buo.Ren.Lin@gmail.com>
2019-04-05snap: Fix broken --webserver due to missing network-bind plug林博仁
Signed-off-by: 林博仁 <Buo.Ren.Lin@gmail.com>
2019-01-26Merge pull request #1410 from Lin-Buo-Ren/patch/fix-snap-versionNicolas Hennion
Improve snap version generation and introducing metadata sharing with setuptools
2019-01-26Minimize history fetch depth to cut down pull time林博仁(Buo-ren Lin)
Signed-off-by: 林博仁(Buo-ren Lin) <Buo.Ren.Lin@gmail.com>
2019-01-26Pin release of the runtime dependencies in snap林博仁(Buo-ren Lin)
This patch specifies the exact release of the dependencies to pull in, this avoids regressions and incompatibilities from the new upstream changes. The maintainer should check and bump the dependency version once in a while and check for breakage. Signed-off-by: 林博仁(Buo-ren Lin) <Buo.Ren.Lin@gmail.com>
2019-01-26Use new metadata extracting feature in snaps林博仁(Buo-ren Lin)
This patch replaces the deprecated `version-script` key with new Snapcraft metadata extracting features based on the `adopt-info` and `parse-info` keys and the `snapcraftctl set-version` command. This allows metadata sharing with Setuptools setup.py file. Refernce: Extracting information from sources in snapcraft parts - doc - snapcraft.io https://forum.snapcraft.io/t/extracting-information-from-sources-in-snapcraft-parts/4642 Signed-off-by: 林博仁(Buo-ren Lin) <Buo.Ren.Lin@gmail.com>
2019-01-26Implement custom snap version string generation林博仁(Buo-ren Lin)
The snap version string generated by the `git` value of the `version` key isn't mimicing the previous versioning style due to the prefixing `v` in the git tag, this patch replace it with a custom implementation based on the `version-script` key. Note the `version` key is still required to exist due to schema requirements, but has no effect when the `version-script` key is defined. Reference: Snapcraft version scripts - snapcraft - snapcraft.io https://forum.snapcraft.io/t/snapcraft-version-scripts/106 Signed-off-by: 林博仁(Buo-ren Lin) <Buo.Ren.Lin@gmail.com>
2019-01-26ReReRevert Permission denied: '/etc/glances/glances.conf' #1403林博仁(Buo-ren Lin)
The snapd version that supports the interface hasn't released to the stable channel yet, and the Snap Store autoconnection isn't granted, hold back the patch until both conditions are met. This reverts commit c904a8a and (parts of) 108dc7b.