New version 1.8.3-1
Fix bumpver Makefile target (Jiri Konecny) Add tests for UIScreen wide disabling of concurrency check (Jiri Konecny) Related: rhbz#2134889 Abstract registering signal handler in the InputHandler constructor (Jiri Konecny) Related: rhbz#2134889 Allow to disable concurrency check for all UIScreen inputs (Jiri Konecny) Resolves: rhbz#2134889 Add Makefile target for local container tests (Jiri Konecny) Use localization from rhel-9 weblate translation component (Jiri Konecny) Remove changelog from the upstream spec file (Jiri Konecny) Fix spec file archive link (Jiri Konecny) Include also documentation to the tarball (Jiri Konecny) Rename doc directory to docs (Jiri Konecny) Add explanations of what is included in the MANIFEST.in file (Jiri Konecny) Update packit config to reflect new tag naming (Jiri Konecny) Change tag name to just version (Jiri Konecny) Fix GitHub workflow checkout (Jiri Konecny) Switch to packit new fedora-latest alias (Jiri Konecny) Disable duplicate-code in pylint test (Jiri Konecny) Remove duplicate of code between event loops (Jiri Konecny)
This commit is contained in:
parent
fbaef2be95
commit
0805be93d3
1
.gitignore
vendored
1
.gitignore
vendored
@ -15,3 +15,4 @@
|
|||||||
/simpleline-1.6.tar.gz
|
/simpleline-1.6.tar.gz
|
||||||
/simpleline-1.7.tar.gz
|
/simpleline-1.7.tar.gz
|
||||||
/simpleline-1.8.tar.gz
|
/simpleline-1.8.tar.gz
|
||||||
|
/simpleline-1.8.3.tar.gz
|
||||||
|
46
.packit.yaml
46
.packit.yaml
@ -1,46 +0,0 @@
|
|||||||
specfile_path: python-simpleline.spec
|
|
||||||
upstream_package_name: simpleline
|
|
||||||
upstream_tag_template: simpleline-{version}
|
|
||||||
actions:
|
|
||||||
create-archive:
|
|
||||||
- "make BUILD_ARGS=sdist archive"
|
|
||||||
- 'bash -c "cp dist/*.tar.gz ."'
|
|
||||||
- 'bash -c "ls *.tar.gz"'
|
|
||||||
jobs:
|
|
||||||
- job: propose_downstream
|
|
||||||
trigger: release
|
|
||||||
metadata:
|
|
||||||
dist_git_branches: fedora-development
|
|
||||||
|
|
||||||
- job: tests
|
|
||||||
trigger: pull_request
|
|
||||||
metadata:
|
|
||||||
targets:
|
|
||||||
- fedora-all
|
|
||||||
|
|
||||||
- job: copr_build
|
|
||||||
trigger: pull_request
|
|
||||||
metadata:
|
|
||||||
targets:
|
|
||||||
- fedora-eln
|
|
||||||
|
|
||||||
- job: copr_build
|
|
||||||
trigger: commit
|
|
||||||
metadata:
|
|
||||||
targets:
|
|
||||||
- fedora-rawhide
|
|
||||||
- fedora-eln
|
|
||||||
branch: master
|
|
||||||
owner: "@rhinstaller"
|
|
||||||
project: Anaconda
|
|
||||||
preserve_project: True
|
|
||||||
|
|
||||||
- job: copr_build
|
|
||||||
trigger: commit
|
|
||||||
metadata:
|
|
||||||
targets:
|
|
||||||
- fedora-34
|
|
||||||
branch: master
|
|
||||||
owner: "@rhinstaller"
|
|
||||||
project: Anaconda-devel
|
|
||||||
preserve_project: True
|
|
@ -1,3 +0,0 @@
|
|||||||
This repository is maintained by packit.
|
|
||||||
https://packit.dev/
|
|
||||||
The file was generated using packit 0.25.1.dev19+g10321f0.
|
|
@ -3,12 +3,12 @@
|
|||||||
Name: python-%{srcname}
|
Name: python-%{srcname}
|
||||||
Summary: A Python library for creating text UI
|
Summary: A Python library for creating text UI
|
||||||
Url: https://github.com/rhinstaller/python-%{srcname}
|
Url: https://github.com/rhinstaller/python-%{srcname}
|
||||||
Version: 1.8
|
Version: 1.8.3
|
||||||
Release: 3%{?dist}
|
Release: 1%{?dist}
|
||||||
# This tarball was created from upstream git:
|
# This tarball was created from upstream git:
|
||||||
# git clone https://github.com/rhinstaller/python-simpleline
|
# git clone https://github.com/rhinstaller/python-simpleline
|
||||||
# cd python-simpleline && make archive
|
# cd python-simpleline && make archive
|
||||||
Source0: https://github.com/rhinstaller/python-%{srcname}/releases/download/%{srcname}-%{version}/%{srcname}-%{version}.tar.gz
|
Source0: https://github.com/rhinstaller/python-%{srcname}/releases/download/%{version}/%{srcname}-%{version}.tar.gz
|
||||||
|
|
||||||
License: LGPLv3+
|
License: LGPLv3+
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
@ -60,6 +60,28 @@ make test
|
|||||||
%{python3_sitelib}/*
|
%{python3_sitelib}/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Nov 04 2022 Jiri Konecny <jkonecny@redhat.com> - 1.8.3-1
|
||||||
|
- Fix bumpver Makefile target (Jiri Konecny)
|
||||||
|
- Add tests for UIScreen wide disabling of concurrency check (Jiri Konecny)
|
||||||
|
Related: rhbz#2134889
|
||||||
|
- Abstract registering signal handler in the InputHandler constructor (Jiri Konecny)
|
||||||
|
Related: rhbz#2134889
|
||||||
|
- Allow to disable concurrency check for all UIScreen inputs (Jiri Konecny)
|
||||||
|
Resolves: rhbz#2134889
|
||||||
|
- Add Makefile target for local container tests (Jiri Konecny)
|
||||||
|
- Use localization from rhel-9 weblate translation component (Jiri Konecny)
|
||||||
|
- Remove changelog from the upstream spec file (Jiri Konecny)
|
||||||
|
- Fix spec file archive link (Jiri Konecny)
|
||||||
|
- Include also documentation to the tarball (Jiri Konecny)
|
||||||
|
- Rename doc directory to docs (Jiri Konecny)
|
||||||
|
- Add explanations of what is included in the MANIFEST.in file (Jiri Konecny)
|
||||||
|
- Update packit config to reflect new tag naming (Jiri Konecny)
|
||||||
|
- Change tag name to just version (Jiri Konecny)
|
||||||
|
- Fix GitHub workflow checkout (Jiri Konecny)
|
||||||
|
- Switch to packit new fedora-latest alias (Jiri Konecny)
|
||||||
|
- Disable duplicate-code in pylint test (Jiri Konecny)
|
||||||
|
- Remove duplicate of code between event loops (Jiri Konecny)
|
||||||
|
|
||||||
* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 1.8-3
|
* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 1.8-3
|
||||||
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
||||||
Related: rhbz#1991688
|
Related: rhbz#1991688
|
||||||
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
SHA512 (simpleline-1.8.tar.gz) = ef306d2d41ee11573ab0f024682406f44578d751715ad1f2f2ada88b1063afaffbe449b8c34752e16359c286898c3b3cf8920f51c3dc478ffa8e958011ac804f
|
SHA512 (simpleline-1.8.3.tar.gz) = 887b2be266e5c841cf86d93eb33a5a0a9f91e8ef686470ce81abe0ceddcc985e540d2b73f65850dd96bd3b4aefe9752aa1829e2072c7afed94e3d59e3de400a8
|
||||||
|
Loading…
Reference in New Issue
Block a user