RHEL 9.0.0 Alpha bootstrap
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/argparse-manpage#419615f221b0fdefa587b7cbd25d80c5dc77b9d2
This commit is contained in:
parent
c22ed3e8cc
commit
5d64de8212
1
.gitignore
vendored
1
.gitignore
vendored
@ -0,0 +1 @@
|
|||||||
|
/argparse-manpage-*.tar.gz
|
185
argparse-manpage.spec
Normal file
185
argparse-manpage.spec
Normal file
@ -0,0 +1,185 @@
|
|||||||
|
%if 0%{?fedora}
|
||||||
|
%bcond_without python3
|
||||||
|
%if 0%{?fedora} > 29
|
||||||
|
%bcond_with python2
|
||||||
|
%else
|
||||||
|
%bcond_without python2
|
||||||
|
%endif
|
||||||
|
%else
|
||||||
|
%if 0%{?rhel} > 7
|
||||||
|
%bcond_with python2
|
||||||
|
%bcond_without python3
|
||||||
|
%else
|
||||||
|
%bcond_without python2
|
||||||
|
%bcond_with python3
|
||||||
|
%endif
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%bcond_without check
|
||||||
|
|
||||||
|
|
||||||
|
%global sum() Build manual page from %* ArgumentParser object
|
||||||
|
%global desc \
|
||||||
|
Generate manual page an automatic way from ArgumentParser object, so the \
|
||||||
|
manpage 1:1 corresponds to the automatically generated --help output. The \
|
||||||
|
manpage generator needs to known the location of the object, user can \
|
||||||
|
specify that by (a) the module name or corresponding python filename and \
|
||||||
|
(b) the object name or the function name which returns the object. \
|
||||||
|
There is a limited support for (deprecated) optparse objects, too.
|
||||||
|
|
||||||
|
|
||||||
|
Name: argparse-manpage
|
||||||
|
Version: 1.4
|
||||||
|
Release: 4%{?dist}
|
||||||
|
Summary: %{sum Python}
|
||||||
|
BuildArch: noarch
|
||||||
|
|
||||||
|
License: ASL 2.0
|
||||||
|
URL: https://github.com/praiskup/%{name}
|
||||||
|
Source0: %pypi_source
|
||||||
|
|
||||||
|
%if %{with python2}
|
||||||
|
BuildRequires: python2-setuptools python2-devel
|
||||||
|
%if %{with check}
|
||||||
|
%if 0%{?rhel} && 0%{?rhel} == 7
|
||||||
|
BuildRequires: pytest python-six
|
||||||
|
%else
|
||||||
|
BuildRequires: python2-pytest python2-six
|
||||||
|
%endif
|
||||||
|
%endif
|
||||||
|
%endif
|
||||||
|
%if %{with python3}
|
||||||
|
BuildRequires: python3-setuptools python3-devel
|
||||||
|
%if %{with check}
|
||||||
|
BuildRequires: python3-pytest python3-six
|
||||||
|
%endif
|
||||||
|
%endif
|
||||||
|
%if %{with python3}
|
||||||
|
Requires: python3-%name = %version-%release
|
||||||
|
%else
|
||||||
|
Requires: python2-%name = %version-%release
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%description
|
||||||
|
%desc
|
||||||
|
|
||||||
|
|
||||||
|
%package -n python2-%name
|
||||||
|
Summary: %{sum Python 2}
|
||||||
|
|
||||||
|
%description -n python2-%name
|
||||||
|
%{desc}
|
||||||
|
|
||||||
|
|
||||||
|
%package -n python3-%name
|
||||||
|
Summary: %{sum Python 3}
|
||||||
|
|
||||||
|
%description -n python3-%name
|
||||||
|
%{desc}
|
||||||
|
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q
|
||||||
|
|
||||||
|
|
||||||
|
%build
|
||||||
|
%if %{with python2}
|
||||||
|
%py2_build
|
||||||
|
%endif
|
||||||
|
%if %{with python3}
|
||||||
|
%py3_build
|
||||||
|
%endif
|
||||||
|
|
||||||
|
|
||||||
|
%install
|
||||||
|
%if %{with python2}
|
||||||
|
%py2_install
|
||||||
|
%endif
|
||||||
|
%if %{with python3}
|
||||||
|
%py3_install
|
||||||
|
%endif
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
%if %{with check}
|
||||||
|
%check
|
||||||
|
%if %{with python2}
|
||||||
|
PYTHONPATH=%buildroot%python2_sitearch %__python2 -m pytest
|
||||||
|
%endif
|
||||||
|
%if %{with python3}
|
||||||
|
PYTHONPATH=%buildroot%python3_sitearch %__python3 -m pytest
|
||||||
|
%endif
|
||||||
|
%endif
|
||||||
|
|
||||||
|
|
||||||
|
%files
|
||||||
|
%license LICENSE
|
||||||
|
%{_bindir}/argparse-manpage
|
||||||
|
%_mandir/man1/argparse-manpage.1.*
|
||||||
|
%if %{with python3}
|
||||||
|
%python3_sitelib/build_manpages/cli
|
||||||
|
%else
|
||||||
|
%python2_sitelib/build_manpages/cli
|
||||||
|
%endif
|
||||||
|
|
||||||
|
|
||||||
|
%if %{with python2}
|
||||||
|
%files -n python2-%name
|
||||||
|
%license LICENSE
|
||||||
|
%python2_sitelib/build_manpages
|
||||||
|
%python2_sitelib/argparse_manpage-%{version}*.egg-info
|
||||||
|
%exclude %python2_sitelib/build_manpages/cli
|
||||||
|
%endif
|
||||||
|
|
||||||
|
|
||||||
|
%if %{with python3}
|
||||||
|
%files -n python3-%name
|
||||||
|
%license LICENSE
|
||||||
|
%python3_sitelib/build_manpages
|
||||||
|
%python3_sitelib/argparse_manpage-%{version}*.egg-info
|
||||||
|
%exclude %python3_sitelib/build_manpages/cli
|
||||||
|
%endif
|
||||||
|
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.4-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 1.4-3
|
||||||
|
- Rebuilt for Python 3.9
|
||||||
|
|
||||||
|
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.4-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jan 24 2020 Pavel Raiskup <praiskup@redhat.com> - 1.4-1
|
||||||
|
- new release to fix testsuite against Python 3.9
|
||||||
|
|
||||||
|
* Tue Jan 07 2020 Pavel Raiskup <praiskup@redhat.com> - 1.3-1
|
||||||
|
- new release
|
||||||
|
|
||||||
|
* Sat Sep 07 2019 Pavel Raiskup <praiskup@redhat.com> - 1.2.2-1
|
||||||
|
- new release
|
||||||
|
|
||||||
|
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 1.1-6
|
||||||
|
- Rebuilt for Python 3.8
|
||||||
|
|
||||||
|
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.1-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.1-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Oct 02 2018 Pavel Raiskup <praiskup@redhat.com> - 1.1-3
|
||||||
|
- drop python3 on F30+ (rhbz#1634992)
|
||||||
|
|
||||||
|
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jun 25 2018 Pavel Raiskup <praiskup@redhat.com> - 1.1-1
|
||||||
|
- v1.1
|
||||||
|
|
||||||
|
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 1.0.0-2
|
||||||
|
- Rebuilt for Python 3.7
|
||||||
|
|
||||||
|
* Mon Feb 19 2018 Pavel Raiskup <praiskup@redhat.com> - 1.0.0-1
|
||||||
|
- initial RPM packaging
|
36
build-and-update-all-branches
Executable file
36
build-and-update-all-branches
Executable file
@ -0,0 +1,36 @@
|
|||||||
|
#! /bin/sh
|
||||||
|
|
||||||
|
# Prepare master branch, review the list of branches below and then execute this
|
||||||
|
# script.
|
||||||
|
|
||||||
|
branches='master epel7 epel8 f30 f31'
|
||||||
|
|
||||||
|
exit_handler ()
|
||||||
|
{
|
||||||
|
git checkout master
|
||||||
|
}
|
||||||
|
|
||||||
|
trap exit_handler EXIT
|
||||||
|
|
||||||
|
set -e
|
||||||
|
set -x
|
||||||
|
|
||||||
|
koji hello
|
||||||
|
|
||||||
|
tasks=
|
||||||
|
for branch in $branches; do
|
||||||
|
if test $branch != master; then
|
||||||
|
git checkout "$branch"
|
||||||
|
git merge master
|
||||||
|
fi
|
||||||
|
git push
|
||||||
|
tasks="${tasks}`fedpkg build --nowait | grep 'Created task' | cut -d: -f2`"
|
||||||
|
done
|
||||||
|
|
||||||
|
koji watch-task $tasks
|
||||||
|
|
||||||
|
for branch in $branches; do
|
||||||
|
test $branch != master || continue
|
||||||
|
git checkout $branch
|
||||||
|
fedpkg update
|
||||||
|
done
|
Loading…
Reference in New Issue
Block a user