From Fedora Project Wiki

(New SOP woo!)
 
m (fix wiki syntax)
 
(14 intermediate revisions by 5 users not shown)
Line 1: Line 1:
== Description ==
{{admon/important|This page is deprecated|Please see [https://docs.pagure.org/releng/sop_package_blocking.html The Package Blocking Standard Operating Procedure] in the new [https://docs.pagure.org/releng/ Fedora Release Engineering Documentation] for the current documentation}}
<!-- Put a description of the task here.
-->
Packages are often retired or renamed from Fedora.  When this happens, release engineering needs to "block" the package from being published and inherited in various koji tags.
 
== Action ==
<!-- Describe the action and provide examples
-->
=== Find Block requests ===
Block requests are usually reported in the rel-eng trac instance at Fedorahosted in the component koji. You can use a trac query to list all [https://fedorahosted.org/rel-eng/query?status=new&status=assigned&status=reopened&component=koji&owner=rel-eng%40lists.fedoraproject.org&order=priority unassigned Koji tickets]. This query also includes requests, that are not a block request, because there is no automated way to distinguish them. The results of the query are also available as an RSS feed, the link is in the footer of the page.
 
=== Perform the blocking ===
First assign the ticket to yourself to show, that you are handling the request.
 
==== Discover proper place to block ====
The ticket should tell you which Fedora releases to block the package in.  Typically it'll say "Fedora 13" or "F14".  This means we need to block it at that Fedora level and all future tags.  However we do not generally block packages in a Fedora release that has gone public unless it is a package rename.
 
The appropriate place to block a package is at the "dist-f??" tag level.  This way the setting of block or not is inherited into future tags.
 
To block a package for a tag, use the <code>block-pkg</code> method of Koji.
<pre>
$ koji block-pkg --help
Usage: koji block-pkg [options] tag package [package2 ...]
(Specify the --help global option for a list of other help options)
 
Options:
  -h, --help  show this help message and exit
</pre>
 
For example, if we were asked to block python-psyco available in F14 we would issue:
<pre>
$ koji block-pkg dist-f14 python-psyco
</pre>
 
Now the ticket can be closed.
 
 
== Verification ==
<!-- Provide a method to verify the action was successful
-->
To verify that the package was successfully blocked use the <code>list-pkgs</code> koji command:
 
<pre>
$ koji list-pkgs --package python-psyco --show-blocked
</pre>
 
We should see the package listed as blocked:
 
<pre>
Package                Tag                    Extra Arches    Owner         
----------------------- ----------------------- ---------------- ---------------
python-psyco            dist-f14                                konradm        [BLOCKED]
</pre>
 
We should not see it listed in any later Fedora tags.
 
== Consider Before Running ==
<!-- Create a list of things to keep in mind when performing action.
-->
* Don't block packages in a released Fedora unless it is a rename.  We cannot remove the package from the release repository
* Watch the next day's rawhide/branched/whatever report for a slew of broken deps related to the package.  We may have to unblock the package in order to fix the deps.
 
 
[[Category:Release Engineering SOPs]]
[[Category:Release Engineering SOPs]]

Latest revision as of 21:53, 10 August 2018

Important.png
This page is deprecated
Please see The Package Blocking Standard Operating Procedure in the new Fedora Release Engineering Documentation for the current documentation