Merged update from upstream sources
This is an automated DistroBaker update from upstream sources. If you do not know what this is about or would like to opt out, contact the OSCI team. Source: https://src.fedoraproject.org/rpms/bash.git#99cafb7674b157f1649e1ee44f83ebfb8487970f
This commit is contained in:
parent
33fc6cffab
commit
c6c1337fe2
1
.fmf/version
Normal file
1
.fmf/version
Normal file
@ -0,0 +1 @@
|
||||
1
|
@ -6,7 +6,7 @@
|
||||
Version: %{baseversion}%{patchleveltag}
|
||||
Name: bash
|
||||
Summary: The GNU Bourne Again shell
|
||||
Release: 2%{?dist}
|
||||
Release: 3%{?dist}
|
||||
License: GPLv3+
|
||||
Url: https://www.gnu.org/software/bash
|
||||
Source0: https://ftp.gnu.org/gnu/bash/bash-%{baseversion}.tar.gz
|
||||
@ -308,6 +308,10 @@ end
|
||||
%{_libdir}/pkgconfig/%{name}.pc
|
||||
|
||||
%changelog
|
||||
* Fri Dec 4 14:44:06 CET 2020 Siteshwar Vashisht <svashisht@redhat.com> - 5.0.17-3
|
||||
- Enable sourcing files from ~/.bashrc.d
|
||||
Resolves: #1726397
|
||||
|
||||
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 5.0.17-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
|
@ -16,3 +16,12 @@ export PATH
|
||||
# export SYSTEMD_PAGER=
|
||||
|
||||
# User specific aliases and functions
|
||||
if [ -d ~/.bashrc.d ]; then
|
||||
for rc in ~/.bashrc.d/*; do
|
||||
if [ -f "$rc" ]; then
|
||||
. "$rc"
|
||||
fi
|
||||
done
|
||||
fi
|
||||
|
||||
unset rc
|
||||
|
11
plans/shell.fmf
Normal file
11
plans/shell.fmf
Normal file
@ -0,0 +1,11 @@
|
||||
summary:
|
||||
Run relevant tests from the shell tests repository
|
||||
discover:
|
||||
how: fmf
|
||||
url: https://src.fedoraproject.org/tests/shell
|
||||
filter: component:bash
|
||||
execute:
|
||||
how: tmt
|
||||
environment:
|
||||
PACKAGES: bash
|
||||
SH_BIN: bash
|
@ -1,29 +0,0 @@
|
||||
---
|
||||
|
||||
# Tests that run in classic context
|
||||
- hosts: localhost
|
||||
roles:
|
||||
- role: standard-test-beakerlib
|
||||
tags:
|
||||
- classic
|
||||
repositories:
|
||||
- repo: "https://src.fedoraproject.org/tests/shell.git"
|
||||
dest: "shell"
|
||||
fmf_filter: "tier: 1, 2 & tags: classic"
|
||||
required_packages:
|
||||
- expect # login requires expect
|
||||
- which # smoke requires which
|
||||
|
||||
# Tests that run in container and atomic contexts
|
||||
- hosts: localhost
|
||||
roles:
|
||||
- role: standard-test-beakerlib
|
||||
tags:
|
||||
- container
|
||||
- atomic
|
||||
repositories:
|
||||
- repo: "https://src.fedoraproject.org/tests/shell.git"
|
||||
dest: "shell"
|
||||
fmf_filter: "tier: 1, 2 & tags: container, atomic"
|
||||
required_packages:
|
||||
- which # smoke requires which
|
Loading…
Reference in New Issue
Block a user