Sunday, April 21, 2024
apps@conference.yunohost.org
April
Mon Tue Wed Thu Fri Sat Sun
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
         
             

[02:02:41] <Yunohost Git/Infra notifications> Autoupdater just ran, here are the results:

- 75 pending update PRs
- 9 new apps PRs
- 7 failed apps updates: elasticsearch8, focalboard, owncloud, penpot, sharkey, tvheadend, vikunja

See the full log here: http://paste.yunohost.org/raw/eralupoqoh
[03:11:19] <Yunohost Git/Infra notifications> App vore failed all tests in job [#25811](https://ci-apps.yunohost.org/ci/job/25811) :(
[11:59:34] <Yunohost Git/Infra notifications> [apps] alexAubin approved [pull request #2214](https://github.com/YunoHost/apps/pull/2214#pullrequestreview-2013384586) Format Python code with Black
[11:59:43] <Yunohost Git/Infra notifications> [apps] alexAubin deleted branch actions/black
[11:59:43] <Yunohost Git/Infra notifications> [apps] alexAubin merged [pull request #2214](https://github.com/YunoHost/apps/pull/2214): Format Python code with Black
[11:59:43] <Yunohost Git/Infra notifications> [apps] alexAubin pushed 1 commit to master: Format Python code with Black (#2214) Co-authored-by: ericgaspar <46165813+ericgaspar@users.noreply.github.com> ([9620c788](https://github.com/YunoHost/apps/commit/9620c788649cd91ad1ebe3e4a465f03c7387ae38))
[12:06:16] <Yunohost Git/Infra notifications> [apps] alexAubin deleted branch add-to-wishlist-homepage
[12:06:22] <Yunohost Git/Infra notifications> [apps] alexAubin merged [pull request #2171](https://github.com/YunoHost/apps/pull/2171): Add Homepage to wishlist
[12:06:22] <Yunohost Git/Infra notifications> [apps] alexAubin pushed 1 commit to master: Add Homepage to wishlist (#2171) ([5c99cfad](https://github.com/YunoHost/apps/commit/5c99cfada16a5e4e08947b0d997da47572ff19e9))
[12:14:41] <ChriChri> If I need in the restore script values from /etc/yunohost/apps/$app/settings.yaml - how do I restore them to be available in the script? Is there supposed to be some auto-magic?
[12:23:40] <Aleks (he/him/il/lui)> hmm yes they're supposed to be automatically available like in the other scripts in packaging v2 ?
[12:24:16] <ChriChri> That's what I expected, but I even didn't find them in the tar (just manually added the directory and am testing).
[12:24:42] <ChriChri> This search didn't help much https://github.com/search?q=org%3AYunoHost-Apps+etc%2Fyunohost+path%3Ascripts%2Fbackup+etc%2Fyunohost%2Fapps&type=code
[12:25:03] <Aleks (he/him/il/lui)> they should be on some settings.yml file ?
[12:25:51] <ChriChri> yes, I thought so, but didn't find the file in my tar.
[13:49:45] <ChriChri> https://yunohost.org/de/packaging_apps_helpers#ynh-spawn-app-shell - maybe this might do...
[14:03:35] <orhtej2> > <@chrichri:librem.one> That's what I expected, but I even didn't find them in the tar (just manually added the directory and am testing).

the file is under `apps/$app/settings/settings,yml` in the archive
[14:09:17] <orhtej2> [I assume this line is giving you trouble](https://codeberg.org/ChriChri/flohmarkt_ynh/src/commit/c34ed46550d456fd9f827fa975f7b3e2a02436fd/scripts/restore#L59) and this is because a) the setting is called [$password_couchdb_admin](https://codeberg.org/ChriChri/flohmarkt_ynh/src/commit/c34ed46550d456fd9f827fa975f7b3e2a02436fd/scripts/install#L20) and b) I believe settings of type `password` are not populated into env automatically, you have to read it yourself with [`ynh_app_setting_get`](https://yunohost.org/en/packaging_apps_helpers#ynh-app-setting-get)
[14:09:31] <orhtej2> ChriChri: ^
[14:15:42] <orhtej2> there's something off with translated READMEs, Italian version is not referenced in ALL_README despite README_it being there
[14:21:14] <orhtej2> In unrelated news: [this stanza](https://github.com/YunoHost-Apps/penpot_ynh/blob/026d02193ab5314e0c33345bf211201532d9b74f/manifest.toml#L72C5-L74C26) gave me interesting results, I installed `penpot`, uninstalled `penpot` without removing `$data_dir`, installed `umami`, installed `penpot` and now Penpot's `$data_dir` is owned by `umami` user. Do I need to explicitly specify the user to use?
[14:21:38] <ChriChri> > the file is under `apps/$app/settings/settings,yml` in the archive

I did something like `tar -xf archive.tar | grep settings.yml` and didn't find it. Now I have `ynh_backup --src_path="/etc/yunohost/apps/$app"` …
Meanwhile I found out that the settings probably are restored, but I had an error storing them...
[14:22:49] <orhtej2> > <@chrichri:librem.one> I did something like `tar -xf archive.tar | grep settings.yml` and didn't find it. Now I have `ynh_backup --src_path="/etc/yunohost/apps/$app"` …
> Meanwhile I found out that the settings probably are restored, but I had an error storing them...

backing up settings manually is not required in packaging v2, the results I'm reporting are for `element_ynh`. Perhaps your command is off or smth?
[14:23:14] <orhtej2> I mean I just physically inspected backup of `element_ynh` and the file is there
[14:23:45] <ChriChri> orhtej2thanks, I'll try again without backing them up explicitly. Maybe there's been some error in my install.
[14:29:06] <Yunohost Git/Infra notifications> [nextcloud_ynh] narFnarF [commented](https://github.com/YunoHost-Apps/nextcloud_ynh/issues/624#issuecomment-2068064949) on [issue #624](https://github.com/YunoHost-Apps/nextcloud_ynh/issues/624) YNH Documentation about OnlyOffice could be reordered for clarity: yes
[14:31:33] <ChriChri> > <@chrichri:librem.one> orhtej2thanks, I'll try again without backing them up explicitly. Maybe there's been some error in my install.

yep, there it is :) Don't know what went wrong before, but am happy that it's solved ;-).
[14:34:16] <Yunohost Git/Infra notifications> [nextcloud_ynh] lapineige closed [issue #624](https://github.com/YunoHost-Apps/nextcloud_ynh/issues/624): YNH Documentation about OnlyOffice could be reordered for clarity
[14:35:09] <ChriChri> `34240 SUCCESS Restoration completed` 👍
[15:13:17] <orhtej2> where did the YoloGen bug tracking issue/PR go?
[16:06:18] <tituspijean> > where did the YoloGen bug tracking issue/PR go?

Here https://github.com/YunoHost/apps/pull/1799
then there https://github.com/YunoHost/issues/issues/2370
[16:20:44] <Aleks (he/him/il/lui)> > where did the YoloGen bug tracking issue/PR go?

In reply to @orhtej2:circledsquareroot.ovh
where did the YoloGen bug tracking issue/PR go?

Where did you come from cotton eyed jo~ 🎶
[16:58:24] <lapineige> You could also ping me if necessary to report/investigate an issue, if you prefer
[17:06:01] <orhtej2> I was mostly triggered about inconsistencies in the ui, no big deal
[17:06:47] <orhtej2> > <@Alekswag:matrix.org> In reply to @orhtej2:circledsquareroot.ovh
> where did the YoloGen bug tracking issue/PR go?
> Where did you come from cotton eyed jo~ 🎶

Damn you, it's stuck in my head now
[17:18:52] <Yunohost Git/Infra notifications> [apps] OniriCorpe [commented](https://github.com/YunoHost/apps/pull/2250#issuecomment-2068139601) on [issue #2250](https://github.com/YunoHost/apps/pull/2250) Add QuakeJS to wishlist: nodejs dependancies not updated for (at least) 5 years 😬
[17:19:15] <tituspijean> > <@yunohostinfra:matrix.org> [apps] OniriCorpe [commented](https://github.com/YunoHost/apps/pull/2250#issuecomment-2068139601) on [issue #2250](https://github.com/YunoHost/apps/pull/2250) Add QuakeJS to wishlist: nodejs dependancies not updated for (at least) 5 years 😬

what could go wrong? 🙃
[17:41:57] <Émy - OniriCorpe> > <@titus:pijean.ovh> what could go wrong? 🙃

everything everywhere all at once
[17:43:42] <tituspijean> https://aria.im/_matrix/media/v1/download/pijean.ovh/9fb00bb0b6804d604f159847ade3c946305c005ab39417f22e71e3322007ae08
[17:43:48] <tituspijean> can confirm, node listed in there
[17:44:07] <ChriChri> yeah, it restored **and** seems to work.
[17:57:44] <Yunohost Git/Infra notifications> [apps] OniriCorpe [commented](https://github.com/YunoHost/apps/pull/2250#issuecomment-2068139601) on [issue #2250](https://github.com/YunoHost/apps/pull/2250) Add QuakeJS to wishlist: nodejs dependancies not updated for (at least) 5 years 😬 edit: closing because theres too much possible security issu...
[17:57:45] <Yunohost Git/Infra notifications> [apps] OniriCorpe closed [pull request #2250](https://github.com/YunoHost/apps/pull/2250): Add QuakeJS to wishlist
[17:57:47] <Yunohost Git/Infra notifications> [apps] OniriCorpe deleted branch add-to-wishlist-quakejs
[18:22:37] <Yunohost Git/Infra notifications> [apps] orhtej2 [commented](https://github.com/YunoHost/apps/pull/1799#issuecomment-2068155808) on [issue #1799](https://github.com/YunoHost/apps/pull/1799) Add a Yunohost App Generator (alias Yologen): A handful more: - [ ] Non is not translated - [ ] Lack of autoupdater is curiously labelled Non - [ ] Accordion som...
[18:26:13] <Yunohost Git/Infra notifications> [apps] lapineige [commented](https://github.com/YunoHost/apps/pull/1799#issuecomment-2068156722) on [issue #1799](https://github.com/YunoHost/apps/pull/1799) Add a Yunohost App Generator (alias Yologen): > If you contract accordion form validation will not show which field is incorrectly filled For that particular one, I ...