new release
Version: 1.2.2-1
This commit is contained in:
parent
6b38a00867
commit
394d873a5d
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
|||||||
/argparse-manpage-1.1.tar.gz
|
/argparse-manpage-*.tar.gz
|
||||||
|
@ -29,14 +29,14 @@ There is a limited support for (deprecated) optparse objects, too.
|
|||||||
|
|
||||||
|
|
||||||
Name: argparse-manpage
|
Name: argparse-manpage
|
||||||
Version: 1.1
|
Version: 1.2.2
|
||||||
Release: 6%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: %{sum Python}
|
Summary: %{sum Python}
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
|
||||||
License: ASL 2.0
|
License: ASL 2.0
|
||||||
URL: https://github.com/praiskup/%{name}
|
URL: https://github.com/praiskup/%{name}
|
||||||
Source0: https://github.com/praiskup/%{name}/archive/v%{version}/%{name}-%{version}.tar.gz
|
Source0: %pypi_source
|
||||||
|
|
||||||
%if %{with python2}
|
%if %{with python2}
|
||||||
BuildRequires: python2-setuptools python2-devel
|
BuildRequires: python2-setuptools python2-devel
|
||||||
@ -142,6 +142,9 @@ PYTHONPATH=%buildroot%python3_sitearch %__python3 -m pytest
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* 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
|
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 1.1-6
|
||||||
- Rebuilt for Python 3.8
|
- Rebuilt for Python 3.8
|
||||||
|
|
||||||
|
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 f29 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
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
SHA512 (argparse-manpage-1.1.tar.gz) = 2479d06558390439835f0ca8a8af3c48e5d905b51274add7d4a4047911ad3a01259e1342b540d002e33263a19e590326d62a9167bbf1df6ccb5183fb7825edcc
|
SHA512 (argparse-manpage-1.2.2.tar.gz) = 20e3018b3c2b63f90017ad089abf5caae958954322d9d6a90f0a78fa72b2f9a02f2a0e9460d3c61f33fa34a24c440b4fb3ca9ebc6bd8024d1e3272520495a102
|
||||||
|
Loading…
Reference in New Issue
Block a user