Tuesday, April 16, 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
         
             

[00:40:25] <Yunohost Git/Infra notifications> App halcyon failed all tests in job [#25608](https://ci-apps.yunohost.org/ci/job/25608) :(
[01:46:30] <Yunohost Git/Infra notifications> Autoupdater just ran, here are the results:

- 65 pending update PRs
- 15 new apps PRs
- 7 failed apps updates: elasticsearch8, focalboard, owncloud, tvheadend, vikunja, webmin, woodpecker

See the full log here: http://paste.yunohost.org/raw/kapakunaba
[06:10:39] <Yunohost Git/Infra notifications> [nextcloud_ynh] tituspijean approved [pull request #681](https://github.com/YunoHost-Apps/nextcloud_ynh/pull/681#pullrequestreview-2002657109) Testing: 🥸
[06:11:29] <Yunohost Git/Infra notifications> [nextcloud_ynh] tituspijean [commented](https://github.com/YunoHost-Apps/nextcloud_ynh/pull/681#issuecomment-2058303471) on [issue #681](https://github.com/YunoHost-Apps/nextcloud_ynh/pull/681) Testing: Ah, we need to bump the package version.
[06:56:35] <Yunohost Git/Infra notifications> App weblate goes down from level 7 to 6 in job [#25620](https://ci-apps.yunohost.org/ci/job/25620)
[08:55:01] <Yunohost Git/Infra notifications> [nextcloud_ynh] ericgaspar pushed 1 commit to testing: Update manifest.toml ([0b318410](https://github.com/YunoHost-Apps/nextcloud_ynh/commit/0b318410619f49290b5f0ce868bd5e8f97e25d7c))
[08:55:01] <Yunohost Git/Infra notifications> [nextcloud_ynh] tituspijean edited review [pull request #681](https://github.com/YunoHost-Apps/nextcloud_ynh/pull/681#pullrequestreview-2002657109): Testing
[08:55:01] <Yunohost Git/Infra notifications> [nextcloud_ynh] ericgaspar dismissed review [pull request #681](https://github.com/YunoHost-Apps/nextcloud_ynh/pull/681#pullrequestreview-2002657109): Testing
[08:55:04] <Yunohost Git/Infra notifications> [nextcloud_ynh] yunohost-bot pushed 1 commit to testing: Auto-update READMEs ([a21b2da4](https://github.com/YunoHost-Apps/nextcloud_ynh/commit/a21b2da44e251b9fa43860f31509c3cade628a59))
[08:58:37] <Yunohost Git/Infra notifications> [nextcloud_ynh] ericgaspar merged [pull request #683](https://github.com/YunoHost-Apps/nextcloud_ynh/pull/683): fix nginx config
[08:58:37] <Yunohost Git/Infra notifications> [nextcloud_ynh] ericgaspar pushed 2 commits to testing ([a21b2da44e25...d50606511b08](https://github.com/YunoHost-Apps/nextcloud_ynh/compare/a21b2da44e25...d50606511b08))
[08:58:39] <Yunohost Git/Infra notifications> [nextcloud_ynh] ericgaspar approved [pull request #683](https://github.com/YunoHost-Apps/nextcloud_ynh/pull/683#pullrequestreview-2003051477) fix nginx config
[08:58:43] <Yunohost Git/Infra notifications> [nextcloud_ynh/testing] fix nginx config - Gofannon
[08:58:53] <Yunohost Git/Infra notifications> [nextcloud_ynh] ericgaspar edited [pull request #681](https://github.com/YunoHost-Apps/nextcloud_ynh/pull/681): Testing
[11:18:19] <tituspijean> Wowowow that exploded all over the place: https://ci-apps-dev.yunohost.org/ci/job/15073
[11:18:33] <tituspijean> ah it boils down to node: `Task never defined: build`
[11:37:04] <Mateusz Szymański> > <@titus:pijean.ovh> Wowowow that exploded all over the place: https://ci-apps-dev.yunohost.org/ci/job/15073

that's a terrible idea, this upgrade requires switching to `yarn` 4.x and re-reverse engineering build scripts
[11:37:31] <Mateusz Szymański> perhaps not terrible idea, but it's more involved than changing sources
[11:38:46] <Mateusz Szymański> also I'm not sure if there are migrations involved :/
[11:50:22] <ChriChri> I'm installing a couchdb as a debian package alongside with an app I'm packaging. The user has to provide the db admin password on install. I do not like to save the admin password on the yunohost which is not necessary - except for removing the app: I'd like to delete the apps database and user from couchdb (couchdb is only de-installed if there's no other dependency for it in case that other apps sometimes start using it like couchdb_ynh).

Short: is it possible to ask the user for any information when they decide to remove the app?
[11:54:25] <Aleks (he/him/il/lui)> nope 😬
[11:54:40] <Aleks (he/him/il/lui)> but i'm not sure to understand why you'd need the password when removing the app ?
[11:57:53] <ChriChri> There will be more applications out there using couchdb sometimes and couchdb is not part of yunohost core.
If I use couchdb with my app in a way that I claim it'd be the only app using it I might destroy databases of other apps.
Especially there's already couchdb_ynh and I'd like to be compatible with it: if one of them is removed it shouldn't influence the other.
The easiest way would be to make couchdb a standard for yunohost.
[11:59:10] <ChriChri> Furthermore there might be more than one instance of the app using couchdb installed. Removing one instance should remove its data, but not couchdb.
Saving the admin password on the host unencrypted (without a very good reason) doesn't seem very secure to me.
[12:05:46] <Aleks (he/him/il/lui)> still not clear to me why the password is needed yeah but i don't know anything about couchdb
[12:09:20] <ChriChri> To delete a database in an couchdb server something like this `curl -X DELETE 'http://127.0.0.1:5984/flohmarkt' --user '<admin-user>:<admin-password>'` works. It needs the couchdb admin credentials.
[12:09:35] <Aleks (he/him/il/lui)> ah
[12:10:10] <Aleks (he/him/il/lui)> meh that seems super stupid :| why does it need an http request instead of being able to run some cli as root T_T
[12:10:20] <ChriChri> There might be another way (like file access) to achieve the same, but I do not know nothing about couchdb neither ;-) ...
[14:41:45] <Yunohost Git/Infra notifications> App mautrix_signal failed all tests in job [#25630](https://ci-apps.yunohost.org/ci/job/25630) :(
[14:44:25] <Yunohost Git/Infra notifications> [nextcloud_ynh] tituspijean approved [pull request #681](https://github.com/YunoHost-Apps/nextcloud_ynh/pull/681#pullrequestreview-2003865197) Testing
[14:48:36] <Yunohost Git/Infra notifications> [nextcloud_ynh] ericgaspar pushed 10 commits to master ([005f0a210a08...b05bcf5b4f30](https://github.com/YunoHost-Apps/nextcloud_ynh/compare/005f0a210a08...b05bcf5b4f30))
[14:48:36] <Yunohost Git/Infra notifications> [nextcloud_ynh] ericgaspar merged [pull request #681](https://github.com/YunoHost-Apps/nextcloud_ynh/pull/681): Testing
[14:48:40] <Yunohost Git/Infra notifications> [nextcloud_ynh/master] Auto-update READMEs - yunohost-bot
[14:48:51] <Yunohost Git/Infra notifications> [nextcloud_ynh] ericgaspar pushed 1 commit to testing: Merge pull request #681 from YunoHost-Apps/testing Testing ([b05bcf5b](https://github.com/YunoHost-Apps/nextcloud_ynh/commit/b05bcf5b4f30ca1c9e2e15efee6c2a7056e76fa6))
[14:48:59] <Yunohost Git/Infra notifications> [nextcloud_ynh] ericgaspar pushed 9 commits to v2_PostgreSQL ([6e7edc433147...aa462e904fdf](https://github.com/YunoHost-Apps/nextcloud_ynh/compare/6e7edc433147...aa462e904fdf))
[14:49:04] <Yunohost Git/Infra notifications> [nextcloud_ynh/v2_PostgreSQL] Merge pull request #683 from Gofannon/patch-1 fix nginx config - eric_G
[14:58:59] <Yunohost Git/Infra notifications> App mautrix_whatsapp failed all tests in job [#25631](https://ci-apps.yunohost.org/ci/job/25631) :(
[15:02:35] <Aleks (he/him/il/lui)> `chown: invalid user: ‘matrix-synapse’` :|
[15:22:31] <Yunohost Git/Infra notifications> App mautrix_telegram failed all tests in job [#25634](https://ci-apps.yunohost.org/ci/job/25634) :(
[15:47:41] <Yunohost Git/Infra notifications> App synapse-admin goes down from level 8 to 1 in job [#25635](https://ci-apps.yunohost.org/ci/job/25635)
[15:53:43] <Yunohost Git/Infra notifications> App mautrix_whatsapp failed all tests in job [#25636](https://ci-apps.yunohost.org/ci/job/25636) :(
[16:07:09] <lapineige> It's synapse now ?
[16:08:22] <Yunohost Git/Infra notifications> App mautrix_whatsapp failed all tests in job [#25637](https://ci-apps.yunohost.org/ci/job/25637) :(
[16:08:25] <Aleks (he/him/il/lui)> yeah i guess é_è
[16:15:58] <tituspijean> Mateusz Szymański: FYI I have no expertise in what I'm doing here: https://github.com/YunoHost-Apps/penpot_ynh/pull/11 😇
[16:31:30] <orhtej2> > <@titus:pijean.ovh> Mateusz Szymański: FYI I have no expertise in what I'm doing here: https://github.com/YunoHost-Apps/penpot_ynh/pull/11 😇

Seems to be working?
[16:31:36] <orhtej2> Nice!
[16:43:44] <tituspijean> oooh nice indeed. retro-engineering package.json and gulp files is hell. 😅
[16:55:44] <lapineige> `WARNING - cat: /etc/yunohost/psql: No such file or directory` from https://ci-apps-dev.yunohost.org/ci/job/15075
Can someone remind me what is the issue with that message ? I don't remember.
Postgresql is in apt dependencies
[16:58:08] <Aleks (he/him/il/lui)> https://github.com/bonfire-networks/bonfire-yunohost/blob/use-release/manifest.toml#L119 is it ? @_@
[16:58:20] <Aleks (he/him/il/lui)> it's commented
[16:58:55] <Aleks (he/him/il/lui)> (the linter also complains about it)
[17:32:39] <lapineige> Oh yeah I didn't see it O_O
[18:00:20] <lapineige> CI is drunk ? https://ci-apps-dev.yunohost.org/ci/job/15076 (404 not found https://ci-apps-dev.yunohost.org/ci/logs/15076.log
[18:01:12] <Aleks (he/him/il/lui)> full log aint available before the job finishes yeah
[18:01:22] <Aleks (he/him/il/lui)> and sometimes for some reason the debug dump from yunohost crashes
[18:01:28] <Aleks (he/him/il/lui)> it fails at failing
[18:01:41] <Aleks (he/him/il/lui)> anyway: `Info: This log is now available via https://paste.yunohost.org/raw/dihehasusu`
[18:01:50] <Aleks (he/him/il/lui)> ```
2024-04-16 17:59:05,101: DEBUG - + sudo -u bonfire -s /bin/bash -lc 'WITH_DOCKER=no just cmd /var/www/bonfire/bin/bonfire rpc '\''Bonfire.Me.make_account_and_user("package_checker", "", "**********")'\'''
2024-04-16 17:59:05,138: DEBUG - /bin/bash: line 1: just: command not found
```
[18:05:13] <lapineige> Ok, same as in Debian 12 CI. Thanks !
[19:03:50] <Yunohost Git/Infra notifications> [gitlab_ynh] kay0u pushed 1 commit to testing: 16.10.3 ([04702658](https://github.com/YunoHost-Apps/gitlab_ynh/commit/04702658b46b396609850c3d52f98c80b15e947a))
[19:03:57] <Yunohost Git/Infra notifications> [gitlab_ynh] yunohost-bot pushed 1 commit to testing: Auto-update READMEs ([5510a2e5](https://github.com/YunoHost-Apps/gitlab_ynh/commit/5510a2e5e25989cab39c21f7dc0a4ed0c4d2490b))
[19:04:33] <Yunohost Git/Infra notifications> [gitlab_ynh] kay0u opened [pull request #247](https://github.com/YunoHost-Apps/gitlab_ynh/pull/247): Testing
[19:04:48] <Yunohost Git/Infra notifications> [gitlab_ynh] yunohost-bot [commented](https://github.com/YunoHost-Apps/gitlab_ynh/pull/247#issuecomment-2059750903) on [issue #247](https://github.com/YunoHost-Apps/gitlab_ynh/pull/247) Testing: Living in the future, are we?
[[Test Badge](https://img.shields.io/endpoint?url=https://ci-apps-bookworm-dev.yunohost.o...
[19:04:49] <Yunohost Git/Infra notifications> [gitlab_ynh] yunohost-bot [commented](https://github.com/YunoHost-Apps/gitlab_ynh/pull/247#issuecomment-2059750907) on [issue #247](https://github.com/YunoHost-Apps/gitlab_ynh/pull/247) Testing: :stuck_out_tongue_winking_eye:
[[Test Badge](https://img.shields.io/endpoint?url=https://ci-apps-dev.yunohost.org/ci/ap...
[19:04:57] <Yunohost Git/Infra notifications> [gitlab_ynh] kay0u [commented](https://github.com/YunoHost-Apps/gitlab_ynh/pull/247#issuecomment-2059750841) on [issue #247](https://github.com/YunoHost-Apps/gitlab_ynh/pull/247) Testing: testme
[20:17:41] <Yunohost Git/Infra notifications> [apps] tituspijean [commented](https://github.com/YunoHost/apps/pull/2092#issuecomment-2059855652) on [issue #2092](https://github.com/YunoHost/apps/pull/2092) store: add refresh_store.sh: or systemd .path ?
[20:23:32] <Yunohost Git/Infra notifications> [apps] alexAubin pushed 20 commits to package-not-maintained-rework ([4f8163e2845d...08f1d0b46e48](https://github.com/YunoHost/apps/compare/4f8163e2845d...08f1d0b46e48))
[20:23:37] <Yunohost Git/Infra notifications> [apps/package-not-maintained-rework] Update dex level - OniriCorpe
[21:00:26] <Yunohost Git/Infra notifications> [apps] ericgaspar approved [pull request #2232](https://github.com/YunoHost/apps/pull/2232#pullrequestreview-2004590222) Add Slskd to wishlist
[21:00:28] <Yunohost Git/Infra notifications> [apps] ericgaspar deleted branch add-to-wishlist-slskd
[21:00:29] <Yunohost Git/Infra notifications> [apps] ericgaspar merged [pull request #2232](https://github.com/YunoHost/apps/pull/2232): Add Slskd to wishlist
[21:00:40] <Yunohost Git/Infra notifications> [apps] github-actions[bot] pushed 1 commit to actions/black: :art: Format Python code with Black ([4f3fc579](https://github.com/YunoHost/apps/commit/4f3fc579267d7b3de7859ab94b741c3020ef6dab))
[21:21:19] <Yunohost Git/Infra notifications> App mantis goes down from level 8 to 1 in job [#25647](https://ci-apps.yunohost.org/ci/job/25647)
[21:28:16] <Yunohost Git/Infra notifications> App mautrix_facebook failed all tests in job [#25649](https://ci-apps.yunohost.org/ci/job/25649) :(
[21:32:48] <Yunohost Git/Infra notifications> App mautrix_signal failed all tests in job [#25650](https://ci-apps.yunohost.org/ci/job/25650) :(
[23:20:01] <Yunohost Git/Infra notifications> [gitlab_ynh] kay0u merged [pull request #247](https://github.com/YunoHost-Apps/gitlab_ynh/pull/247): Testing
[23:20:02] <Yunohost Git/Infra notifications> [gitlab_ynh] kay0u pushed 3 commits to master ([df875d57b538...00e70b952df4](https://github.com/YunoHost-Apps/gitlab_ynh/compare/df875d57b538...00e70b952df4))
[23:20:06] <Yunohost Git/Infra notifications> [gitlab_ynh/master] 16.10.3 - Kay0u
[23:47:29] <Yunohost Git/Infra notifications> App mantis goes down from level 8 to 1 in job [#25647](https://ci-apps.yunohost.org/ci/job/25647)