Skip to content

Commit 82664f7

Browse files
committed
Merge branch 'devel'
2 parents 7fa0c92 + f5212fc commit 82664f7

29 files changed

+177
-64
lines changed

docs/mock.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ package and branch can be defined with \fB\-\-scm\-option\fP arguments,
151151
see site\-defaults.cfg for more information.
152152
.TP
153153
\fB\-\-scrub\fR=\fITYPE\fP
154-
Completely remove the specified chroot or cache dir or all of the chroot and cache. \fITYPE\fR is one of all, chroot, cache, root\-cache, c\-cache, or yum\-cache.
154+
Completely remove the specified chroot or cache dir or all of the chroot and cache. \fITYPE\fR is one of all, chroot, cache, root\-cache, c\-cache, yum\-cache or dnf\-cache. In fact, dnf\-cache is just alias for yum\-cache and both removes Dnf and Yum cache.
155155
.TP
156156
\fB\-\-shell\fP [\fICOMMAND [\fIARGS...]\fR]
157157
Run the specified command interactively within the chroot (no 'clean' is performed). If no command specified, /bin/sh is run. Note that COMMAND is shell expanded using shell in chroot.

docs/release-instructions.txt

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ A note on mock versions:
44

55
There are now two main branches to be aware of:
66
- mock-1.0 (pre-F13 and EPEL5)
7-
- mock-1.1+ (F-13+ and EPEL6+)
7+
- master (for releasing F-13+ and EPEL6+)
8+
- devel (for development of future versions)
89
In the upstream git tree, mock-1.0 is tracked on the branch origin/mock-1.0,
910
while mock-1.1+ is in the master branch. Please be careful when
1011
updating the various distro to use the correct branch and version
@@ -57,7 +58,7 @@ In the upstream git tree:
5758
2) create a branch from master (e.g. 'prerelease') and switch to it
5859
$ git checkout -b work master
5960
3) merge any remote updates for specific fixes
60-
$ git merge jkeating/updates-for-clark
61+
$ git merge origin/devel
6162
4) merge any local branch work and reolve any conflicts
6263
$ git merge frooble-changes
6364
5) update configure.ac with new version info (don't commit yet)
@@ -88,6 +89,9 @@ In the upstream git tree:
8889
$ git push origin tag mock-<version>
8990
19) copy tarball to fedorahosted:
9091
$ scp mock-<version>.tar.gz fedorahosted.org:mock
92+
20) merge changes back to devel branch
93+
$ git checkout devel
94+
$ git merge origin/master
9195

9296

9397
In the fedora git (koji) tree

etc/bash_completion.d/mock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ _mock()
7272
;;
7373
--scrub)
7474
COMPREPLY=( $( compgen -W "all chroot cache root-cache c-cache
75-
yum-cache lvm" -- "$cur" ) )
75+
yum-cache dnf-cache lvm" -- "$cur" ) )
7676
return 0
7777
;;
7878
-i|--install|install)

etc/mock/fedora-23-aarch64.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ config_opts['chroot_setup_cmd'] = 'install @buildsys-build'
55
config_opts['dist'] = 'fc23' # only useful for --resultdir variable subst
66
config_opts['extra_chroot_dirs'] = [ '/run/lock', ]
77
config_opts['releasever'] = '23'
8-
config_opts['package_manager'] = 'dnf'
98

109
config_opts['yum.conf'] = """
1110
[main]
@@ -19,6 +18,8 @@ gpgcheck=0
1918
assumeyes=1
2019
syslog_ident=mock
2120
syslog_device=
21+
install_weak_deps=0
22+
metadata_expire=0
2223
2324
# repos
2425

etc/mock/fedora-23-armhfp.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ config_opts['chroot_setup_cmd'] = 'install @buildsys-build'
55
config_opts['dist'] = 'fc23' # only useful for --resultdir variable subst
66
config_opts['extra_chroot_dirs'] = [ '/run/lock', ]
77
config_opts['releasever'] = '23'
8-
config_opts['package_manager'] = 'dnf'
98

109
config_opts['yum.conf'] = """
1110
[main]
@@ -19,6 +18,8 @@ gpgcheck=0
1918
assumeyes=1
2019
syslog_ident=mock
2120
syslog_device=
21+
install_weak_deps=0
22+
metadata_expire=0
2223
2324
# repos
2425

etc/mock/fedora-23-i386.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ config_opts['chroot_setup_cmd'] = 'install @buildsys-build'
55
config_opts['dist'] = 'fc23' # only useful for --resultdir variable subst
66
config_opts['extra_chroot_dirs'] = [ '/run/lock', ]
77
config_opts['releasever'] = '23'
8-
config_opts['package_manager'] = 'dnf'
98

109
config_opts['yum.conf'] = """
1110
[main]
@@ -19,6 +18,8 @@ gpgcheck=0
1918
assumeyes=1
2019
syslog_ident=mock
2120
syslog_device=
21+
install_weak_deps=0
22+
metadata_expire=0
2223
2324
# repos
2425

etc/mock/fedora-23-ppc64.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ config_opts['chroot_setup_cmd'] = 'install @buildsys-build'
55
config_opts['dist'] = 'fc23' # only useful for --resultdir variable subst
66
config_opts['extra_chroot_dirs'] = [ '/run/lock', ]
77
config_opts['releasever'] = '23'
8-
config_opts['package_manager'] = 'dnf'
98

109
config_opts['yum.conf'] = """
1110
[main]
@@ -19,6 +18,8 @@ gpgcheck=0
1918
assumeyes=1
2019
syslog_ident=mock
2120
syslog_device=
21+
install_weak_deps=0
22+
metadata_expire=0
2223
2324
# repos
2425

etc/mock/fedora-23-ppc64le.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ config_opts['chroot_setup_cmd'] = 'install @buildsys-build'
55
config_opts['dist'] = 'fc23' # only useful for --resultdir variable subst
66
config_opts['extra_chroot_dirs'] = [ '/run/lock', ]
77
config_opts['releasever'] = '23'
8-
config_opts['package_manager'] = 'dnf'
98

109
config_opts['yum.conf'] = """
1110
[main]
@@ -19,6 +18,8 @@ gpgcheck=0
1918
assumeyes=1
2019
syslog_ident=mock
2120
syslog_device=
21+
install_weak_deps=0
22+
metadata_expire=0
2223
2324
# repos
2425

etc/mock/fedora-23-s390.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ config_opts['chroot_setup_cmd'] = 'install @buildsys-build'
55
config_opts['dist'] = 'fc23' # only useful for --resultdir variable subst
66
config_opts['extra_chroot_dirs'] = [ '/run/lock', ]
77
config_opts['releasever'] = '23'
8-
config_opts['package_manager'] = 'dnf'
98

109
config_opts['yum.conf'] = """
1110
[main]
@@ -19,6 +18,8 @@ gpgcheck=0
1918
assumeyes=1
2019
syslog_ident=mock
2120
syslog_device=
21+
install_weak_deps=0
22+
metadata_expire=0
2223
2324
# repos
2425

etc/mock/fedora-23-s390x.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ config_opts['chroot_setup_cmd'] = 'install @buildsys-build'
55
config_opts['dist'] = 'fc23' # only useful for --resultdir variable subst
66
config_opts['extra_chroot_dirs'] = [ '/run/lock', ]
77
config_opts['releasever'] = '23'
8-
config_opts['package_manager'] = 'dnf'
98

109
config_opts['yum.conf'] = """
1110
[main]
@@ -19,6 +18,8 @@ gpgcheck=0
1918
assumeyes=1
2019
syslog_ident=mock
2120
syslog_device=
21+
install_weak_deps=0
22+
metadata_expire=0
2223
2324
# repos
2425

0 commit comments

Comments
 (0)