From 28ebf8c53b71f4f42b87a697874e4470377392dd Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: May 31 2016 09:06:21 +0000 Subject: [PATCH 1/2] fix display of Fedora example, add example for EL7 to cover new ppc64le architecture and different tag naming --- diff --git a/docs/source/sop_adding_side_build_targets.rst b/docs/source/sop_adding_side_build_targets.rst index 6c1bb16..613300a 100644 --- a/docs/source/sop_adding_side_build_targets.rst +++ b/docs/source/sop_adding_side_build_targets.rst @@ -45,7 +45,7 @@ commands are used. Options: -h, --help show this help message and exit -For example if we wanted to create the EPEL tags to build XFCE , we would do +For example if we wanted to create the EPEL tags for EL6 to build XFCE , we would do the following: :: @@ -53,9 +53,17 @@ the following: koji add-tag epel6-xfce48 --parent=dist-6E-epel-build --arches=i686,x86_64,ppc64 koji add-target epel6-xfce48 epel6-xfce48 +For EL7 we would do the following: + +:: + + koji add-tag epel7-xfce48 --parent=epel7 --arches=i686,x86_64,ppc64,ppc64le + koji add-target epel7-xfce48 epel7-xfce48 + A Fedora example would be: :: + koji add-tag f23-gnutls --parent=f23-build --arches=armv7hl,i686,x86_64 koji add-target f23-gnutls f23-gnutls From 6e129634e761dc1aed4968a793efcaf6d2ad0611 Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: May 31 2016 09:17:14 +0000 Subject: [PATCH 2/2] update release numbers, minor cleanups --- diff --git a/docs/source/sop_pushing_updates.rst b/docs/source/sop_pushing_updates.rst index 6c80f96..454bc85 100644 --- a/docs/source/sop_pushing_updates.rst +++ b/docs/source/sop_pushing_updates.rst @@ -47,14 +47,14 @@ Get a list of packages to push :: $ cd /var/cache/sigul - $ sudo -u apache bodhi-push --releases '23 22 21 5 6 7' --username + $ sudo -u apache bodhi-push --releases '24 23 22 5 6 7' --username You can say 'n' to the push at this point if you wish to sign packages (see below). Or you can keep this request open in a window while you sign the packages, then come back and say y. -List the releases above you wish to push from: 23 22 21 5 6 7, etc +List the releases above you wish to push from: 24 23 22 5 6 7, etc You can also specify ``--request=testing`` to limit pushes. Valid types are ``testing`` or ``stable``. @@ -68,7 +68,7 @@ frozen): :: $ cd /var/cache/sigul - $ sudo -u apache bodhi-push --releases 23 --request=testing \ + $ sudo -u apache bodhi-push --releases 24 --request=testing \ --username Then @@ -76,7 +76,7 @@ Then :: $ cd /var/cache/sigul - $ sudo -u apache bodhi-push --releases '22 21 5 6 7' --username + $ sudo -u apache bodhi-push --releases '23 22 5 6 7' --username Pushing Stable updates during freeze ------------------------------------ @@ -108,17 +108,17 @@ Here is another example, inside a loop: :: - for i in 23 22 21; + for i in 24 23 22; do NSS_HASH_ALG_SUPPORT=+MD5 ~/releng/scripts/sigulsign_unsigned.py \ fedora-$i -v --write-all \ --sigul-batch-size=25 $(cat /var/cache/sigul/{Stable,Testing}-F${i}); done - for i in 7 6 5; + for i in 7 6 5; do NSS_HASH_ALG_SUPPORT=+MD5 ~/releng/scripts/sigulsign_unsigned.py \ - epel-$i -v --write-all \ + epel-$i -v --write-all \ --sigul-batch-size=25 $(cat /var/cache/sigul/{Stable,Testing}-*EL-${i}); done