83 lines
2.2 KiB
RPMSpec
83 lines
2.2 KiB
RPMSpec
|
Name: gitea
|
||
|
Version: 1.21.3
|
||
|
Release: 1mamba
|
||
|
Summary: Painless self-hosted Git service, community managed
|
||
|
Group: System/Servers
|
||
|
Vendor: openmamba
|
||
|
Distribution: openmamba
|
||
|
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
||
|
URL: https://about.gitea.com/
|
||
|
Source: https+git://github.com/go-gitea/gitea.git/v%{version}/gitea-%{version}.tar.bz2
|
||
|
Source1: gitea.service
|
||
|
Source2: gitea.sysusers
|
||
|
Source3: gitea.tmpfiles
|
||
|
License: MIT
|
||
|
## AUTOBUILDREQ-BEGIN
|
||
|
BuildRequires: glibc-devel
|
||
|
BuildRequires: libpam-devel
|
||
|
## AUTOBUILDREQ-END
|
||
|
BuildRequires: go
|
||
|
BuildRequires: nodejs
|
||
|
|
||
|
%description
|
||
|
Painless self-hosted all-in-one software development service, including Git hosting, code review, team collaboration, package registry and CI/CD.
|
||
|
|
||
|
#% debug_package
|
||
|
|
||
|
%prep
|
||
|
%setup -q
|
||
|
#-D -T
|
||
|
#:<< _EOF
|
||
|
make deps
|
||
|
|
||
|
%build
|
||
|
export EXTRA_GOFLAGS="-buildmode=pie -mod=readonly -modcacherw"
|
||
|
export LDFLAGS="-linkmode=external -compressdwarf=false -X \
|
||
|
'code.gitea.io/gitea/modules/setting.AppWorkPath=/var/lib/gitea/' \
|
||
|
-X 'code.gitea.io/gitea/modules/setting.CustomConf=%{_sysconfdir}/gitea/app.ini'"
|
||
|
export TAGS="bindata sqlite sqlite_unlock_notify pam"
|
||
|
|
||
|
%make -j1
|
||
|
|
||
|
%install
|
||
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||
|
#% makeinstall
|
||
|
install -D -m755 gitea %{buildroot}%{_bindir}/gitea
|
||
|
install -D -m644 %{SOURCE1} %{buildroot}%{_unitdir}/gitea.serivce
|
||
|
install -D -m644 %{SOURCE3} %{buildroot}%{_tmpfilesdir}/gitea.conf
|
||
|
install -D -m644 %{SOURCE2} %{buildroot}%{_sysusersdir}/gitea.conf
|
||
|
install -D -m644 custom/conf/app.example.ini %{buildroot}%{_sysconfdir}/gitea/app.ini
|
||
|
|
||
|
%clean
|
||
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||
|
|
||
|
%pre
|
||
|
%sysusers_create_package gitea %{SOURCE2}
|
||
|
%tmpfiles_create_package gitea %{SOURCE3}
|
||
|
:
|
||
|
|
||
|
%post
|
||
|
%systemd_post gitea
|
||
|
:
|
||
|
|
||
|
%preun
|
||
|
%systemd_preun gitea
|
||
|
:
|
||
|
|
||
|
%postun
|
||
|
%systemd_postun gitea
|
||
|
:
|
||
|
|
||
|
%files
|
||
|
%defattr(-,root,root)
|
||
|
%config(noreplace) %{_sysconfdir}/gitea/app.ini
|
||
|
%{_bindir}/gitea
|
||
|
%{_unitdir}/gitea.serivce
|
||
|
%{_sysusersdir}/gitea.conf
|
||
|
%{_tmpfilesdir}/gitea.conf
|
||
|
%doc LICENSE
|
||
|
|
||
|
%changelog
|
||
|
* Wed Dec 27 2023 Silvan Calarco <silvan.calarco@mambasoft.it> 1.21.3-1mamba
|
||
|
- package created using the webbuild interface
|