dist-git/dist-git.spec

316 lines
10 KiB
RPMSpec
Raw Normal View History

2015-04-27 12:08:55 +02:00
%global selinux_variants mls targeted
%global modulename dist_git
%global installdir /var/lib/dist-git
2015-04-27 12:08:55 +02:00
2015-04-22 10:10:31 +02:00
Name: dist-git
2020-05-21 11:19:04 +02:00
Version: 1.14
2015-04-22 10:10:31 +02:00
Release: 1%{?dist}
Summary: Package source version control system
2015-03-30 13:07:29 +02:00
# upload.cgi uses GPLv1
License: MIT and GPLv1
2015-04-22 10:10:31 +02:00
URL: https://github.com/release-engineering/dist-git
# Source is created by
# git clone https://github.com/release-engineering/dist-git.git
# cd dist-git
# tito build --tgz
Source0: %{name}-%{version}.tar.gz
2015-03-30 13:07:29 +02:00
BuildArch: noarch
2015-04-10 11:09:11 +02:00
BuildRequires: systemd
2015-04-22 10:10:31 +02:00
Requires: httpd
2015-04-27 09:22:37 +02:00
Requires: perl(Sys::Syslog)
2018-01-13 13:35:17 +01:00
Requires: dist-git-selinux
Requires: git
2015-04-22 10:10:31 +02:00
Requires: git-daemon
2015-04-10 15:17:46 +02:00
Requires: mod_ssl
Requires: crudini
2015-03-31 14:08:34 +02:00
Requires(pre): shadow-utils
2015-03-30 13:07:29 +02:00
2018-02-19 10:54:27 +01:00
%if 0%{?rhel} && 0%{?rhel} < 8
Requires: python-requests
Requires: python-configparser
Requires: python-grokmirror
Requires: fedmsg
2020-05-11 13:47:54 +02:00
BuildRequires: python-nose
BuildRequires: python-nose-parameterized
BuildRequires: python-requests
BuildRequires: python-configparser
# temporary because global Requires doesn't work right now, see the comment below
Requires: moreutils
2018-02-19 10:54:27 +01:00
%else
Requires: python3-requests
2018-08-14 21:27:43 +02:00
Recommends: python3-grokmirror
Recommends: python3-fedmsg
2020-05-11 13:47:54 +02:00
BuildRequires: python3-nose
BuildRequires: python3-parameterized
BuildRequires: python3-requests
# this should be Requires but see https://bugzilla.redhat.com/show_bug.cgi?id=1833810
Recommends: moreutils
2017-05-25 13:20:32 +02:00
%endif
2015-03-30 13:07:29 +02:00
%description
DistGit is a Git repository specifically designed to hold RPM
2015-04-22 10:05:08 +02:00
package sources.
2015-03-30 13:07:29 +02:00
2015-04-27 12:08:55 +02:00
%package selinux
Summary: SELinux support for dist-git
BuildRequires: checkpolicy
BuildRequires: policycoreutils
BuildRequires: selinux-policy-devel
2015-04-29 10:44:32 +02:00
BuildRequires: hardlink
2015-04-27 12:08:55 +02:00
Requires: %name = %version-%release
%if "%{_selinux_policy_version}" != ""
Requires: selinux-policy >= %{_selinux_policy_version}
2015-04-27 12:08:55 +02:00
%endif
Requires(post): /usr/sbin/semodule, /sbin/restorecon
Requires(postun): /usr/sbin/semodule, /sbin/restorecon
%description selinux
Dist Git is a remote Git repository specifically designed to hold RPM
package sources.
This package includes SELinux support.
2015-03-30 13:07:29 +02:00
%prep
2015-03-30 15:19:30 +02:00
%setup -q
2015-03-30 13:07:29 +02:00
%build
2015-04-27 12:08:55 +02:00
# ------------------------------------------------------------------------------
# SELinux
# ------------------------------------------------------------------------------
cd selinux
for selinuxvariant in %{selinux_variants}
do
make NAME=${selinuxvariant} -f /usr/share/selinux/devel/Makefile
mv %{modulename}.pp %{modulename}.pp.${selinuxvariant}
make NAME=${selinuxvariant} -f /usr/share/selinux/devel/Makefile clean
done
cd -
2015-03-30 13:07:29 +02:00
2015-04-10 11:09:11 +02:00
%pre
2015-04-27 12:08:55 +02:00
# ------------------------------------------------------------------------------
# Users and Groups
# ------------------------------------------------------------------------------
2015-04-10 11:09:11 +02:00
getent group packager > /dev/null || \
groupadd -r packager
exit 0
2015-04-10 11:09:11 +02:00
2020-05-11 13:47:54 +02:00
%check
%if 0%{?rhel} && 0%{?rhel} < 8
nosetests .
%else
nosetests-3 .
%endif
2020-05-11 13:47:54 +02:00
2015-03-30 13:07:29 +02:00
%install
2015-03-31 14:08:34 +02:00
# ------------------------------------------------------------------------------
# /usr/share/ ........... scripts
2015-03-31 14:08:34 +02:00
# ------------------------------------------------------------------------------
install -d %{buildroot}%{_datadir}/dist-git/
cp -a scripts/dist-git/* %{buildroot}%{_datadir}/dist-git/
2015-03-30 13:07:29 +02:00
2015-03-31 14:08:34 +02:00
# ------------------------------------------------------------------------------
# /etc/ .......... config files
# ------------------------------------------------------------------------------
install -d %{buildroot}%{_sysconfdir}/dist-git
cp -a configs/dist-git/dist-git.conf %{buildroot}%{_sysconfdir}/dist-git/
2015-03-30 13:07:29 +02:00
install -d %{buildroot}%{_sysconfdir}/httpd/conf.d/dist-git
2015-04-10 11:21:37 +02:00
mkdir -p %{buildroot}%{_unitdir}
2015-03-31 14:08:34 +02:00
cp -a configs/httpd/dist-git.conf %{buildroot}%{_sysconfdir}/httpd/conf.d/
2015-03-30 13:07:29 +02:00
cp -a configs/httpd/dist-git/* %{buildroot}%{_sysconfdir}/httpd/conf.d/dist-git/
2015-04-10 11:09:11 +02:00
cp -a configs/systemd/* %{buildroot}%{_unitdir}/
2015-03-30 13:07:29 +02:00
2015-03-31 14:08:34 +02:00
# ------------------------------------------------------------------------------
# /var/lib/ ...... dynamic persistent files
# ------------------------------------------------------------------------------
install -d %{buildroot}%{installdir}
install -d %{buildroot}%{installdir}/git
install -d %{buildroot}%{installdir}/cache
install -d %{buildroot}%{installdir}/cache/lookaside
install -d %{buildroot}%{installdir}/cache/lookaside/pkgs
install -d %{buildroot}%{installdir}/web
cp -a scripts/httpd/upload.cgi %{buildroot}%{installdir}/web/
%if 0%{?rhel} && 0%{?rhel} < 8
sed -i '1 s|#.*|#!/usr/bin/python2|' %{buildroot}%{installdir}/web/upload.cgi
%endif
# ------------------------------------------------------------------------------
# /usr/bin/ ...... links to executable files
# ------------------------------------------------------------------------------
install -d %{buildroot}%{_bindir}
ln -s %{_datadir}/dist-git/setup_git_package %{buildroot}%{_bindir}/setup_git_package
ln -s %{_datadir}/dist-git/mkbranch %{buildroot}%{_bindir}/mkbranch
ln -s %{_datadir}/dist-git/mkbranch_branching %{buildroot}%{_bindir}/mkbranch_branching
ln -s %{_datadir}/dist-git/remove_unused_sources %{buildroot}%{_bindir}/remove_unused_sources
2015-04-27 12:08:55 +02:00
# ------------------------------------------------------------------------------
# SELinux
# ------------------------------------------------------------------------------
cd selinux
for selinuxvariant in %{selinux_variants}
do
install -d %{buildroot}%{_datadir}/selinux/${selinuxvariant}
install -p -m 644 %{modulename}.pp.${selinuxvariant} \
%{buildroot}%{_datadir}/selinux/${selinuxvariant}/%{modulename}.pp
done
cd -
2015-04-10 11:09:11 +02:00
hardlink -cv %{buildroot}%{_datadir}/selinux
2015-03-30 13:07:29 +02:00
2015-04-27 12:08:55 +02:00
%post selinux
for selinuxvariant in %{selinux_variants}
do
/usr/sbin/semodule -s ${selinuxvariant} -i \
%{_datadir}/selinux/${selinuxvariant}/%{modulename}.pp &> /dev/null || :
done
2017-02-14 16:25:40 +01:00
%{_sbindir}/restorecon -v %{installdir}/cache || :
%{_sbindir}/restorecon -v %{installdir}/cache/lookaside || :
%{_sbindir}/restorecon -v %{installdir}/cache/lookaside/pkgs || :
%{_sbindir}/restorecon -v %{installdir}/git || :
%{_sbindir}/restorecon -Rv %{installdir}/web/ || :
2015-03-31 14:08:34 +02:00
%systemd_post dist-git.socket
%preun
%systemd_preun dist-git.socket
2015-04-27 12:08:55 +02:00
%postun selinux
if [ $1 -eq 0 ] ; then
for selinuxvariant in %{selinux_variants}
do
/usr/sbin/semodule -s ${selinuxvariant} -r %{modulename} &> /dev/null || :
done
fi
%systemd_postun dist-git.socket
2015-04-27 12:08:55 +02:00
%files
# ------------------------------------------------------------------------------
# Docs
# ------------------------------------------------------------------------------
2015-04-23 11:53:09 +02:00
%license LICENSE
%doc README.md
2015-03-31 14:08:34 +02:00
# ------------------------------------------------------------------------------
# /etc/ .......... config files
# ------------------------------------------------------------------------------
2015-04-23 11:53:09 +02:00
%dir %{_sysconfdir}/dist-git
%config(noreplace) %{_sysconfdir}/dist-git/dist-git.conf
2015-04-23 11:53:09 +02:00
%dir %{_sysconfdir}/httpd/conf.d/dist-git
2015-04-22 15:56:04 +02:00
%config(noreplace) %{_sysconfdir}/httpd/conf.d/dist-git/*
%config(noreplace) %{_sysconfdir}/httpd/conf.d/dist-git.conf
2015-04-22 10:10:31 +02:00
%{_unitdir}/dist-git@.service
%{_unitdir}/dist-git.socket
2015-03-31 14:08:34 +02:00
# ------------------------------------------------------------------------------
# /var/lib/ ...... dynamic persistent files
# ------------------------------------------------------------------------------
# non-standard-dir-perm:
# - git repositories and their contents must have w permission for their creators
%dir %{installdir}
2017-04-08 15:15:36 +02:00
%attr (2775, -, packager) %{installdir}/git
%dir %{installdir}/web
%attr (755, apache, apache) %{installdir}/web/upload.cgi
%dir %{installdir}/cache
%dir %{installdir}/cache/lookaside
%attr (2775, apache, apache) %{installdir}/cache/lookaside/pkgs
# ------------------------------------------------------------------------------
# /usr/share ...... executable files
# ------------------------------------------------------------------------------
%dir %{_datadir}/dist-git
%attr (775, -, -) %{_datadir}/dist-git/*
2015-03-31 14:08:34 +02:00
2015-04-27 12:08:55 +02:00
%files selinux
%doc selinux/*
%{_datadir}/selinux/*/%{modulename}.pp
%{_bindir}/*
2015-03-31 14:08:34 +02:00
2015-03-30 13:07:29 +02:00
%changelog
2020-05-21 11:19:04 +02:00
* Thu May 21 2020 clime <clime@fedoraproject.com> - 1.14-1
- disable unit tests temporarily as they do not pass
with network disabled during build
2020-05-21 09:01:16 +02:00
* Thu May 21 2020 clime <clime@fedoraproject.com> - 1.13-1
- fedmsg made an optional (recommnended) dependency
- slight refactoring of upload.cgi script
- tests added and documented
2019-05-28 16:56:11 +02:00
* Tue May 28 2019 Miroslav Suchy <msuchy@redhat.com> - 1.12-1
- remove old changelog entries
- do not specify full path for hardlink [RHBZ#1714637]
- add script for removing unused source tarballs in lookaside cache
* Tue Apr 30 2019 clime <clime@redhat.com> 1.11-1
- remove python3-configparser require
- move scripts to bindir
2019-03-11 22:37:57 +01:00
* Mon Mar 11 2019 clime <clime@redhat.com> 1.10-1
- python3 support
- fix post-receive hook in case post.receive.d is empty
* Fri Nov 23 2018 clime <clime@redhat.com> 1.9-1
- do not create sources file when creating a repo
- set umask 0002 in all available dist-git scripts
- Use REMOTE_USER as fallback for GSS_NAME
- add support for setting mtime for an uploaded file
* Tue Aug 14 2018 clime <clime@redhat.com> 1.8-1
- add disable group check option
- add lookaside_dir option
- deprecate cache_dir
- fix python-grokmirror dep
2018-02-26 14:27:45 +01:00
* Mon Feb 26 2018 clime <clime@redhat.com> 1.7-1
- move 'fedmsgs', 'old_paths', 'nomd5' options to optional upload section
2018-02-19 12:05:41 +01:00
* Mon Feb 19 2018 clime <clime@redhat.com> 1.6-1
- add 'fedmsgs', 'old_paths', and 'default_namespace' config options
- remove domain_read_all_domains_state SELinux rule
- require dist-git-selinux
- give optional map permission to git_system_t on git_user_content_t
- update requires to work for all environments
- make the package completely distribution-agnostic
2017-12-18 05:41:10 +01:00
* Mon Dec 18 2017 clime <clime@redhat.com> 1.5-1
- make selinux policy build on f27+
- add optional map SELinux permission for httpd_t
* Tue Jul 25 2017 clime <clime@redhat.com> 1.4-1
- disable md5 uploading by default
* Mon Jun 26 2017 clime <clime@redhat.com> 1.3-1
- translate '/' to '-' in package name for mailinglist hook
(graybrandon@gmail.com)
* Fri May 26 2017 clime <clime@redhat.com> 1.2-1
- remove mail git hook
- grokmirror support
* Wed May 03 2017 clime <clime@redhat.com> 1.1-1
- fix default config value for email
- fix name/email switch