[packit] 36.11 upstream release
Upstream tag: anaconda-36.11-1 Upstream commit: 64914131 Signed-off-by: Packit Service <user-cont-team+packit-service@redhat.com>
This commit is contained in:
parent
3839cb87c1
commit
96b4f224ce
1
.gitignore
vendored
1
.gitignore
vendored
@ -305,3 +305,4 @@
|
|||||||
/anaconda-36.8.tar.bz2
|
/anaconda-36.8.tar.bz2
|
||||||
/anaconda-36.9.tar.bz2
|
/anaconda-36.9.tar.bz2
|
||||||
/anaconda-36.10.tar.bz2
|
/anaconda-36.10.tar.bz2
|
||||||
|
/anaconda-36.11.tar.bz2
|
||||||
|
49
.packit.yml
Normal file
49
.packit.yml
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
specfile_path: anaconda.spec
|
||||||
|
upstream_package_name: anaconda
|
||||||
|
upstream_tag_template: anaconda-{version}-1
|
||||||
|
actions:
|
||||||
|
post-upstream-clone:
|
||||||
|
- ./autogen.sh
|
||||||
|
- ./configure
|
||||||
|
create-archive:
|
||||||
|
- "make release"
|
||||||
|
- 'bash -c "ls -1 anaconda-*.tar.bz2"'
|
||||||
|
jobs:
|
||||||
|
- job: propose_downstream
|
||||||
|
trigger: release
|
||||||
|
metadata:
|
||||||
|
dist_git_branches: fedora-development
|
||||||
|
|
||||||
|
- job: tests
|
||||||
|
trigger: pull_request
|
||||||
|
metadata:
|
||||||
|
targets:
|
||||||
|
- fedora-rawhide
|
||||||
|
|
||||||
|
- job: copr_build
|
||||||
|
trigger: pull_request
|
||||||
|
metadata:
|
||||||
|
targets:
|
||||||
|
- fedora-rawhide
|
||||||
|
|
||||||
|
- job: copr_build
|
||||||
|
trigger: commit
|
||||||
|
metadata:
|
||||||
|
targets:
|
||||||
|
- fedora-rawhide
|
||||||
|
branch: master
|
||||||
|
owner: "@rhinstaller"
|
||||||
|
project: Anaconda
|
||||||
|
preserve_project: True
|
||||||
|
|
||||||
|
- job: copr_build
|
||||||
|
trigger: commit
|
||||||
|
metadata:
|
||||||
|
targets:
|
||||||
|
- fedora-latest
|
||||||
|
branch: f35-devel
|
||||||
|
owner: "@rhinstaller"
|
||||||
|
project: Anaconda-devel
|
||||||
|
preserve_project: True
|
||||||
|
additional_repos:
|
||||||
|
- "copr://@storage/blivet-daily"
|
3
README.packit
Normal file
3
README.packit
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
This repository is maintained by packit.
|
||||||
|
https://packit.dev/
|
||||||
|
The file was generated using packit 0.42.1.dev2+gfd5668f.
|
@ -1,6 +1,6 @@
|
|||||||
Summary: Graphical system installer
|
Summary: Graphical system installer
|
||||||
Name: anaconda
|
Name: anaconda
|
||||||
Version: 36.10
|
Version: 36.11
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
License: GPLv2+ and MIT
|
License: GPLv2+ and MIT
|
||||||
URL: http://fedoraproject.org/wiki/Anaconda
|
URL: http://fedoraproject.org/wiki/Anaconda
|
||||||
@ -10,7 +10,7 @@ URL: http://fedoraproject.org/wiki/Anaconda
|
|||||||
# git checkout -b archive-branch anaconda-%%{version}-%%{release}
|
# git checkout -b archive-branch anaconda-%%{version}-%%{release}
|
||||||
# ./autogen.sh
|
# ./autogen.sh
|
||||||
# make dist
|
# make dist
|
||||||
Source0: %{name}-%{version}.tar.bz2
|
Source0: https://github.com/rhinstaller/%{name}/releases/download/%{name}-%{version}-1/%{name}-%{version}.tar.bz2
|
||||||
|
|
||||||
# Versions of required components (done so we make sure the buildrequires
|
# Versions of required components (done so we make sure the buildrequires
|
||||||
# match the requires versions of things).
|
# match the requires versions of things).
|
||||||
@ -411,6 +411,29 @@ desktop-file-install --dir=%{buildroot}%{_datadir}/applications %{buildroot}%{_d
|
|||||||
%{_prefix}/libexec/anaconda/dd_*
|
%{_prefix}/libexec/anaconda/dd_*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Dec 02 2021 Packit Service <user-cont-team+packit-service@redhat.com> - 36.11-1
|
||||||
|
- New version - 36.11 (Martin Kolman)
|
||||||
|
- Handle potential failure of `cd` (Vladimir Slavik)
|
||||||
|
- Printf variables correctly (Vladimir Slavik)
|
||||||
|
- Simplify debug printing (Vladimir Slavik)
|
||||||
|
- Ignore use of local variables (Vladimir Slavik)
|
||||||
|
- Fix wrong comparison operator (Vladimir Slavik)
|
||||||
|
- Remove unused variables (Vladimir Slavik)
|
||||||
|
- Ignore variables used across our dracut hooks (Vladimir Slavik)
|
||||||
|
- Fix arithmetic operation on a variable (Vladimir Slavik)
|
||||||
|
- Fix `read` calls in dracut code (Vladimir Slavik)
|
||||||
|
- Check correctly if glob finds anything (Vladimir Slavik)
|
||||||
|
- Check for substring in POSIX compatible way (Vladimir Slavik)
|
||||||
|
- Remove useless echo calls (Vladimir Slavik)
|
||||||
|
- Split combined local variable creation and assignment (Vladimir Slavik)
|
||||||
|
- Fix "empty" redirections in dracut scripts (Vladimir Slavik)
|
||||||
|
- Fix hashbangs in dracut scripts (Vladimir Slavik)
|
||||||
|
- Split binary logic in dracut shell files (Vladimir Slavik)
|
||||||
|
- Add a ShellCheck config for dracut scripts (Vladimir Slavik)
|
||||||
|
- Add changelog to GH releases (#infra) (Vladimir Slavik)
|
||||||
|
- Enable the pytest assert introspection in the helper functions (Vendula Poncova)
|
||||||
|
- Fix Source0 in spec to point to upstream source URL (Jiri Konecny)
|
||||||
|
|
||||||
* Mon Nov 29 2021 Martin Kolman <mkolman@redhat.com> - 36.10-1
|
* Mon Nov 29 2021 Martin Kolman <mkolman@redhat.com> - 36.10-1
|
||||||
- Add tasks for cleaning up after the live image installation (vponcova)
|
- Add tasks for cleaning up after the live image installation (vponcova)
|
||||||
- Create a task for mounting a live image (vponcova)
|
- Create a task for mounting a live image (vponcova)
|
||||||
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
SHA512 (anaconda-36.10.tar.bz2) = fb02aebe6117fc4720f3365a0ecbf8ddf58c074b59c05310499238700e768fa7cc0f3b090704ab99275a81b7d14dbec88aa16dfee1e21a8855d121b9994980bd
|
SHA512 (anaconda-36.11.tar.bz2) = 3cdc1fb01ac608dcfd42a981552af335725ac0daf4174be266d0a8fc46897efffc5b0f16ac74d65d710c8a3db5ea2a5338be50526617c424e86141ca33e34621
|
||||||
|
Loading…
Reference in New Issue
Block a user