Disabled lto, thanks for the hint.
Search Criteria
Package Details: gitea-git v1.19.0_dev_286_g477a1cc40e-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/gitea-git.git (read-only, click to copy) |
---|---|
Package Base: | gitea-git |
Description: | Painless self-hosted Git service. Community managed fork of Gogs. |
Upstream URL: | https://gitea.io/ |
Keywords: | git |
Licenses: | MIT |
Conflicts: | gitea |
Provides: | gitea |
Submitter: | francoism90 |
Maintainer: | kageru |
Last Packager: | kageru |
Votes: | 7 |
Popularity: | 0.000000 |
First Submitted: | 2016-11-15 09:57 (UTC) |
Last Updated: | 2023-01-11 19:12 (UTC) |
Dependencies (10)
- git (git-gitAUR, git-glAUR)
- go (go-gitAUR, gcc-go-gitAUR, go-sylixosAUR, gcc-go-snapshotAUR, gcc-go) (make)
- npm (corepackerAUR, python-nodejs-wheelAUR) (make)
- mariadb (mysql55AUR, mysql56AUR, mytop-gitAUR, mysql81AUR, mysql57AUR, mysql80AUR, mysqlAUR, mariadb-lts, percona-server) (optional) – MariaDB support
- memcached (memcached-gitAUR) (optional) – MemCached support
- openssh (openssh-gitAUR, openssh-dotconfigAUR, openssh-dotconfig-binAUR, openssh-selinuxAUR, openssh-hpn-shimAUR, openssh-gssapiAUR) (optional) – GIT over SSH support
- pam (pam-selinuxAUR) (optional) – Authentication via PAM support
- postgresql (postgresql-12AUR, postgresql13AUR, postgresql15-docsAUR, postgresql15AUR, postgresql17-docsAUR, postgresql17AUR, postgresql-gitAUR) (optional) – PostgreSQL support
- redis (redis-testingAUR, redis-gitAUR, keydbAUR, valkey) (optional) – Redis support
- sqlite (sqlite-fossilAUR) (optional) – SQLite support
Required by (3)
- act-runner (requires gitea)
- act_runner (requires gitea) (optional)
- gitea-github-theme (requires gitea)
Sources (5)
kageru commented on 2023-01-11 19:13 (UTC)
HLFH commented on 2023-01-02 12:00 (UTC) (edited on 2023-01-02 12:02 (UTC) by HLFH)
Hi @kageru.
Could you disable LTO in the PKGBUILD as go
does not support it ?
backup=('etc/gitea/app.ini')
options=(!lto)
conflicts=('gitea')
The package breaks when LTO is enabled within /etc/makepkg.conf
.
So, the options=(!lto)
must be added to disable it for the package until go
supports it.
Thaodan commented on 2022-09-01 20:21 (UTC)
Shouldn't the optdepends also be makedepends so they are found during build?
tip commented on 2022-05-08 15:23 (UTC)
First step after install gitea:
cp /etc/gitea/app.example.ini /etc/gitea/app.ini
chown gitea:gitea /etc/gitea/app.ini
systemctl restart gitea
After this steps I am success save configuration in /etc/gitea/app.ini
kageru commented on 2021-10-21 21:03 (UTC)
Both this package and gitea from the repositories include a systemd unit file in /usr/lib/systemd/system/gitea.service
which specifies ProtectSystem=strict
.
You can make changes via systemctl edit gitea
(editing the .service file directly will also work, but it will be overwritten on each package update).
malibu commented on 2021-10-10 20:21 (UTC)
I am trying to install both gogs-git and gitea-git but they are giving the same issue. Upon pressing the install button, the console reports the following error: Failed to save configuration: open /etc/gogs/app.ini: read-only file system
I have been unable to find any solution. There seems to be a comment from someone trying to help in gogs: "Being unable to write to /etc/gogs/app.ini during the installer even though permissions are correct is caused by ProtectSystem=full in gogs.service. Changing this setting to ProtectSystem=true mounts /etc rw fixing this issue." But I have no idea where I need to change that, since there is no gitea or gogs service file on my system. Can anyone help? thanks.
ZFSuss commented on 2021-07-02 02:31 (UTC)
The community package is way out of date, so I decided to make the transition to docker. As this package shares the same paths I hope someone else finds the following helpful if they're migrating away from these packages:
$ find "data/git/repositories/" -name "gitea" -exec sed -i "s/\/usr\/bin\/gitea/\/app\/gitea\/gitea/g" '{}' \;
$ find "data/git/repositories/" -name "gitea" -exec sed -i "s/\/etc\/gitea\/app.ini/\/data\/gitea\/conf\/app.ini/g" '{}' \;
kageru commented on 2020-12-22 15:43 (UTC)
Got it. I reenabled bindata and also changed most other things that have diverged from the repo package. The only meaningful difference now is this package setting GOCACHE for users with read-only home directories.
Thanks again.
Archange commented on 2020-12-22 15:06 (UTC)
Yes indeed, because the parallel compilation implied that at some point it tried to embed (which is the point of bindata) assets that were not yet fully built. So we ended with partially built assets in the binary, and hence an half-working website.
Forcing serial builds avoid this issue, because assets are built before being embedded.
kageru commented on 2020-12-22 13:18 (UTC)
@Archange thanks for pointing that out. I tried to modify my PKGBUILD to match yours as closely as possible, and it appears the fix for make bindata
not working was forcing make -j1
(at least on my system). Can you confirm that parallel compilation is what broke it to begin with (and that it’s safe to reenable with make -j1)?
Pinned Comments