| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
| |
Fix path to default.chlog template file in mgarepo.conf. Use the
/usr/share/mgarepo directory instead of /usr/share/repsys.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Remove use of "each" methods on hashes in template files. With ruby 1.8,
the order in which the hash is enumerated is random. When using the each
method to scan all hash keys and elements in template files, puppet will
do unnecessary changes in files installed on the server, making it more
difficult to see the real changes. In order to avoid this, we stop using
the "each" method on hashes and instead use the "keys" method to get an
array of all keys and sort it alphabetically.
With ruby 1.9 the hashes enumerate their values in the order that the
corresponding keys were inserted, but we are still using ruby 1.8 with
Mageia 2.
|
|
|
|
| |
Use settings from buildsystem::var::distros to create mgarep.conf.
|
|
|
|
|
|
|
| |
Remove %mgaversion macro definition, as it doesn't seem to be used by
packages during srpm generation. Also the value defined by mgarepo.conf
is incorrect as it doesn't correspond to the value defined by
rpm-mageia-setup-build package.
|
|
|
|
|
|
| |
The %mageia_branch macro does not seem to be used, according to a search
on "site:mageia.org %mageia_branch" on google. So remove it from
mgarepo.conf to simplify the configuration.
|
|
|
|
|
| |
The mgarepo.conf template is now using settings from
buildsystem::var::mgarepo.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|