(catfish is already done) |
(More corrections to the recipe) |
||
(266 intermediate revisions by 9 users not shown) | |||
Line 1: | Line 1: | ||
{{admon/warning|F19 has branched|Fedora 19 has now branched from rawhide (March 12, 2013). Packages that de-vendorized from this point forward will need to be built for both F19 and rawhide. Note that this cycle, rawhide does not inherit from F-19. So builds do need to be done in both, and a Bodhi update done for the F19 build.}} | |||
https://fedorahosted.org/fesco/ticket/1077 | https://fedorahosted.org/fesco/ticket/1077 | ||
On F19+ (and not on earlier fedoras), desktop files need to be changed to '''not''' be installed with a vendor prefix. | |||
On rawhide: <code>repoquery --whatprovides \*/fedora-\*.desktop --qf '%{name}'| sort| uniq| wc -l</code> shows 619 binary packages with problems. | On rawhide: <code>repoquery --whatprovides \*/fedora-\*.desktop --qf '%{name}'| sort| uniq| wc -l</code> shows 619 binary packages with problems. | ||
February 18: Down to 358 binary packages. Way to go!<br/> | |||
February 22: Down to 328 binary packages<br/> | |||
February 24: Down to 282 binary packages. Over half way done!<br/> | |||
February 25: Down to 239 binary packages<br/> | |||
February 28: Down to 217 binary packages<br /> | |||
March 6: Down to 213 binary packages<br /> | |||
March 10: 173 binary packages. We've broken 200!<br /> | |||
== Porting notes == | == Porting notes == | ||
Some maintainers like to use the same spec file for all releases. | {{admon/warning|Caution when dealing with spec files used on multiple branches|Some maintainers like to use the same spec file for all releases. To accommodate that you can use conditionals to make the spec use <code>--vendor fedora</code> on earlier releases and remove the vendor tag for F19 and later.}} | ||
Because there are several places at which it needs to be distinguished if the desktop file has a vendor tag or not, it's not a bad idea to make the decision at the top of the spec file and use symbolic names throughout the rest. The simplest form looks something like this: | |||
<pre> | <pre> | ||
%if (0%{?fedora} && 0%{?fedora} < 19) | |||
%if 0%{?fedora} < 19 | %global with_desktop_vendor_tag 1 | ||
%endif | %endif | ||
</pre> | </pre> | ||
If there are existing EPEL (or RHEL) builds that use a vendor tag, this needs to factored in. That looks like this: | |||
<pre> | <pre> | ||
%if (0%{?fedora} && 0%{?fedora} < 19) || (0%{?rhel} && 0%{?rhel} < 7) | |||
%global with_desktop_vendor_tag 1 | |||
%if 0%{?fedora} && 0%{?fedora} < 19 | %else | ||
%global with_desktop_vendor_tag 0 | |||
%endif | %endif | ||
</pre> | |||
Then you can use <code>%{with desktop_vendor_tag}</code> to run <code>desktop-file-install</code>: | |||
<pre> | |||
desktop-file-install \ | desktop-file-install \ | ||
%if | %if 0%{?with_desktop_vendor_tag} | ||
--vendor fedora \ | --vendor fedora \ | ||
%endif | %endif | ||
Line 33: | Line 47: | ||
</pre> | </pre> | ||
In addition to modifying the <code>desktop-file-install</code> line, you probably also have to modify the %files section to handle desktop files with or without the fedora- prefix. Some examples: | In addition to modifying the <code>desktop-file-install</code> line, you probably also have to modify the <code>%files</code> section to handle desktop files with or without the <code>fedora-</code> prefix. Some examples: | ||
* Use a conditional | |||
<pre> | <pre> | ||
%files | %files | ||
... | |||
+ %if 0%{?with_desktop_vendor_tag} | |||
+ %if 0%{? | |||
%{_datadir}/applications/fedora-%{name}.desktop | %{_datadir}/applications/fedora-%{name}.desktop | ||
+ %else | + %else | ||
+ %{_datadir}/applications/%{name}.desktop | + %{_datadir}/applications/%{name}.desktop | ||
+ %endif | + %endif | ||
... | |||
</pre> | |||
* Use a wildcard | |||
<pre> | |||
%files | |||
... | |||
- %{_datadir}/applications/fedora-%{name}.desktop | |||
+ %{_datadir}/applications/*%{name}.desktop | |||
... | |||
</pre> | </pre> | ||
Line 74: | Line 96: | ||
* <strike> angrydd </strike> : Jon Ciesla | * <strike> angrydd </strike> : Jon Ciesla | ||
* <strike> ants </strike> : Rahul Sundaram | * <strike> ants </strike> : Rahul Sundaram | ||
* apcupsd - | * <strike> apcupsd </strike> : Toshio Kuratomi It was in the -gui subpackage | ||
* <strike> apricots </strike> : Jon Ciesla | * <strike> apricots </strike> : Jon Ciesla | ||
* <strike> ardour </strike> : Rahul Sundaram | * <strike> ardour </strike> : Rahul Sundaram | ||
Line 81: | Line 103: | ||
* <strike> arrows </strike> : Rahul Sundaram | * <strike> arrows </strike> : Rahul Sundaram | ||
* <strike> asc </strike> : Rahul Sundaram | * <strike> asc </strike> : Rahul Sundaram | ||
* astromenace | * <strike> astromenace </strike> : Jon Ciesla | ||
* <strike> asunder </strike> : Rahul Sundaram | * <strike> asunder </strike> : Rahul Sundaram | ||
* <strike> asylum </strike> : Rahul Sundaram | * <strike> asylum </strike> : Rahul Sundaram | ||
Line 96: | Line 118: | ||
* <strike> bacula </strike> : Rahul Sundaram | * <strike> bacula </strike> : Rahul Sundaram | ||
* <strike> ballbuster </strike> : Rahul Sundaram | * <strike> ballbuster </strike> : Rahul Sundaram | ||
* <strike> balsa </strike> : Rahul Sundaram - FTBFS | * <strike> balsa </strike> : Rahul Sundaram - FTBFS fixed by toshio, now rebuilt. | ||
* <strike> beldi </strike> : Rahul Sundaram | * <strike> beldi </strike> : Rahul Sundaram | ||
* <strike> beneath-a-steel-sky </strike> : Rahul Sundaram | * <strike> beneath-a-steel-sky </strike> : Rahul Sundaram | ||
* <strike> beneath-a-steel-sky-cd </strike> : Rahul Sundaram | * <strike> beneath-a-steel-sky-cd </strike> : Rahul Sundaram | ||
* berusky | * <strike> berusky </strike> : Rahul Sundaram | ||
* bibus | * <strike> bibus </strike> : Rahul Sundaram | ||
* <strike> bitmap </strike> : Rahul Sundaram | |||
* <strike> bless </strike> : Rahul Sundaram | |||
* <strike> berusky </strike> : Rahul Sundaram | |||
* <strike> blobby </strike> : Rahul Sundaram | |||
* <strike> BlockOutII </strike> : Rahul Sundaram | |||
* <strike> boinc-client </strike> : Rahul Sundaram | |||
* <strike> bolzplatz2006 </strike> : Rahul Sundaram | |||
* <strike> boswars </strike> : Rahul Sundaram | |||
* <strike> bouml </strike> : Rahul Sundaram | |||
* <strike> biloba </strike> : Jon Ciesla | * <strike> biloba </strike> : Jon Ciesla | ||
* <strike> bombardier </strike> : Jon Ciesla | * <strike> bombardier </strike> : Jon Ciesla | ||
* | * <strike> bygfoot </strike> : Rahul Sundaram | ||
* <strike> cairo-clock </strike> : Rahul Sundaram | |||
* <strike> catfish </strike> : Mamoru Tasaka; patch modified by Toshio to fix build | |||
* <strike> cave9 </strike> : Rahul Sundaram | |||
* | * <strike> cbrpager </strike> : already done | ||
* <strike> cdcollect </strike> : Rahul Sundaram | |||
* catfish : | * <strike> cdogs-sdl</strike> : Rahul Sundaram | ||
* cave9 | * <strike> celestia </strike> : Rahul Sundaram | ||
* cbrpager | |||
* cdcollect | |||
* cdogs-sdl | |||
* celestia | |||
* <strike> cellwriter </strike>: Parag Nemade | * <strike> cellwriter </strike>: Parag Nemade | ||
* centerim | * <strike> centerim </strike> : Rahul Sundaram, FTBFS, patched by Toshio | ||
* <strike> cfdg-fe </strike> : Jon Ciesla | * <strike> cfdg-fe </strike> : Jon Ciesla | ||
* chemtool | * <strike> chemtool </strike>: Rahul Sundaram | ||
* childsplay | * <strike> childsplay </strike>: Rahul Sundaram | ||
* <strike> chkrootkit </strike> : Jon Ciesla | * <strike> chkrootkit </strike> : Jon Ciesla | ||
* chmsee | * <strike> chmsee </strike>: Rahul Sundaram | ||
* cinepaint | * <strike> cinepaint </strike>: Rahul Sundaram | ||
* clanbomber | * <strike> clanbomber </strike>: Rahul Sundaram | ||
* clips | * <strike> clips </strike>: Rahul Sundaram | ||
* clonekeen | * <strike> clonekeen </strike>: Rahul Sundaram | ||
* clusterssh | * <strike> clusterssh </strike>: Rahul Sundaram | ||
* <strike> coco-coq </strike> : Jon Ciesla | * <strike> coco-coq </strike> : Jon Ciesla | ||
* codeblocks | * <strike> codeblocks </strike> : Rahul Sundaram | ||
* comix | * <strike> comix </strike> : Rahul Sundaram | ||
* conduit | * <strike> conduit </strike> : Rahul Sundaram | ||
* conglomerate | * <strike> conglomerate </strike> : Rahul Sundaram | ||
* coq | * <strike> coq </strike> : Toshio Kuratomi | ||
* coriander | * <strike> coriander </strike> : Rahul Sundaram | ||
* corrida | * <strike> corrida </strike> : Rahul Sundaram | ||
* crack-attack | * <strike> crack-attack </strike> : Rahul Sundaram | ||
* CriticalMass | * <strike> CriticalMass </strike> : Rahul Sundaram | ||
* <strike> crossfire-client </strike> : Jon Ciesla | * <strike> crossfire-client </strike> : Jon Ciesla | ||
* crystal-stacker | * <strike> crystal-stacker </strike> : Rahul Sundaram | ||
* cssed | * <strike> cssed </strike> : Rahul Sundaram | ||
* cwiid | * <strike> cwiid </strike> : Rahul Sundaram | ||
* <strike> cycle </strike> : Jon Ciesla | * <strike> cycle </strike> : Jon Ciesla | ||
* <strike> cylindrix </strike> : Jon Ciesla | * <strike> cylindrix </strike> : Jon Ciesla | ||
* dayplanner | * <strike> dayplanner </strike> : Toshio Kuratomi | ||
* dd2 | * <strike> dd2 </strike> : Toshio Kuratomi | ||
* <strike> ddd </strike> : Jon Ciesla | * <strike> ddd </strike> : Jon Ciesla | ||
* deluge | * <strike> deluge </strike> : Toshio Kuratomi | ||
* <strike> dgae </strike> : Jon Ciesla | * <strike> dgae </strike> : Jon Ciesla | ||
* dia | * <strike> dia </strike>: Christoph Wickert | ||
* dillo | * <strike> dillo </strike> : Rahul Sundaram | ||
* diveintopython | * <strike> diveintopython </strike>: Rahul Sundaram | ||
* djview4 | * <strike> djview4 </strike> : Rahul Sundaram | ||
* dogtail | * <strike> dogtail </strike> : Rahul Sundaram | ||
* <strike> dosbox </strike> : Jon Ciesla | * <strike> dosbox </strike> : Jon Ciesla | ||
* drgeo | * <strike> drgeo </strike> | ||
* driconf | * <strike> driconf </strike> : Rahul Sundaram | ||
* duel3 | * <strike> duel3 </strike> : Rahul Sundaram | ||
* dvdisaster | * <strike> dvdisaster </strike> : Rahul Sundaram | ||
* dx | * <strike> dx </strike> : Rahul Sundaram | ||
* dxcc | * <strike> dxcc </strike> : Rahul Sundaram | ||
* e16-keyedit | * <strike> e16-keyedit </strike> | ||
* ebview | * <strike> ebview </strike> | ||
* ed2k_hash | * <strike> ed2k_hash </strike> | ||
* edsadmin | * <strike> edsadmin </strike> | ||
* eiciel | * <strike> eiciel </strike> | ||
* em8300 | * <strike> em8300 </strike> | ||
* ember | * <strike> ember </strike> : Bruno Wolff | ||
* emelfm2 | * <strike> emelfm2 </strike> | ||
* empathy | * <strike> empathy </strike> : Brian Pepple | ||
* enigma | * <strike> enigma </strike> | ||
* epdfview | * <strike> epdfview </strike> : Jon Ciesla -- FTBFS, notified maintainer, being retired. | ||
* escape | * <strike> escape </strike> : Jon Ciesla | ||
* eterm | * <strike> eterm </strike> : Jon Ciesla | ||
* <strike> etherape </strike> : Jon Ciesla | * <strike> etherape </strike> : Jon Ciesla | ||
* <strike> ettercap </strike> : Jon Ciesla | * <strike> ettercap </strike> : Jon Ciesla | ||
* exaile | * <strike> exaile </strike> : Jon Ciesla | ||
* expendable | * <strike> expendable </strike> : Jon Ciesla | ||
* extrema | * <strike> extrema </strike> : Jon Ciesla | ||
* extremetuxracer | * <strike> extremetuxracer </strike> : Jon Ciesla | ||
* fantasdic | * <strike> fantasdic </strike> : Already fixed by Mamoru Tasaka | ||
* fbg | * <strike> fbg </strike> : Jon Ciesla | ||
* fbreader | * <strike> fbreader </strike> : Jon Ciesla | ||
* fedora-accessibility-guide-en-US | * <strike> fedora-accessibility-guide-en-US </strike> : Jon Ciesla dead.package, not retired, emailed maintainer | ||
* fedora-arm-installer | * <strike> fedora-arm-installer </strike> : Jon Ciesla false positive | ||
* fedora-release-notes | * <strike> fedora-release-notes </strike> : Jon Ciesla false positive | ||
* fedora-review | * <strike> fedora-review </strike> : Jon Ciesla false positive | ||
* <strike> filezilla </strike> : Jon Ciesla | * <strike> filezilla </strike> : Jon Ciesla | ||
* firstaidkit | * <strike> firstaidkit </strike> : Jon Ciesla | ||
* FlightGear | * <strike> FlightGear </strike> : Jon Ciesla | ||
* flight-of-the-amazon-queen | * <strike> flight-of-the-amazon-queen </strike> : Jon Ciesla | ||
* flight-of-the-amazon-queen-cd | * <strike> flight-of-the-amazon-queen-cd </strike> : Jon Ciesla | ||
* flobopuyo | * <strike> flobopuyo </strike> : Jon Ciesla | ||
* flpsed | * <strike> flpsed </strike> : Jon Ciesla | ||
* flumotion | * <strike> flumotion </strike> : Jon Ciesla | ||
* <strike>fontforge</strike> : Paul Flo Williams | * <strike> fontforge</strike> : Paul Flo Williams | ||
* <strike> fontmatrix </strike> : Parag Nemade | * <strike> fontmatrix </strike> : Parag Nemade | ||
* <strike> foobillard </strike> : Jon Ciesla | * <strike> foobillard </strike> : Jon Ciesla | ||
* fpm2 | * <strike> fpm2 </strike> : Jon Ciesla | ||
* fprint_demo | * <strike> fprint_demo </strike> : Jon Ciesla | ||
* <strike> freeciv </strike> : Jon Ciesla | * <strike> freeciv </strike> : Jon Ciesla | ||
* freecol | * <strike> freecol </strike> : Jon Ciesla | ||
* <strike> freedroid </strike> : Jon Ciesla | * <strike> freedroid </strike> : Jon Ciesla | ||
* <strike> freedroidrpg </strike> : Jon Ciesla | * <strike> freedroidrpg </strike> : Jon Ciesla | ||
* freetennis | * <strike> freetennis </strike> : Bruno Wolff | ||
* fslint | * <strike> fslint </strike> : Jon Ciesla | ||
* fwbackups | * <strike> fwbackups </strike> : Jon Ciesla | ||
* fwbuilder | * <strike> fwbuilder </strike> : Jon Ciesla | ||
* fwfstab | * <strike> fwfstab </strike> : Jon Ciesla | ||
* g3data | * <strike> g3data </strike> : Jon Ciesla | ||
* gabedit | * <strike> gabedit </strike> : Jon Ciesla | ||
* gajim | * <strike> gajim </strike> : Jon Ciesla | ||
* galternatives | * <strike> galternatives </strike> : Jon Ciesla | ||
* gamazons | * <strike> gamazons </strike> : Jon Ciesla | ||
* gambas2 | * <strike> gambas2 </strike> : RETIRED Jon Ciesla | ||
* gambas3 | * <strike> gambas3 </strike> : Jon Ciesla | ||
* gazpacho | * <strike> gazpacho </strike> : Jon Ciesla | ||
* gbrainy | * <strike> gbrainy </strike> : Jon Ciesla | ||
* gcin | * <strike> gcin </strike> : Jon Ciesla | ||
* gcompris | * <strike> gcompris </strike> : Jon Ciesla | ||
* gcstar | * <strike> gcstar </strike> : Jon Ciesla | ||
* gcx | * <strike> gcx </strike> : Jon Ciesla | ||
* gdesklets | * <strike> gdesklets </strike> : Michael Schwendt | ||
* gdmap | * <strike> gdmap </strike> : Jon Ciesla | ||
* geany | * <strike> geany </strike> : Jon Ciesla | ||
* gemdropx | * <strike> gemdropx </strike> : Jon Ciesla | ||
* <strike> genchemlab </strike> : Jon Ciesla | * <strike> genchemlab </strike> : Jon Ciesla | ||
* genius | * <strike> genius </strike> : Jon Ciesla | ||
* ggobi | * <strike> ggobi </strike> : Jon Ciesla | ||
* ggz-gtk-client | * <strike> ggz-gtk-client </strike> : Bruno Wolff | ||
* ghasher | * <strike> ghasher </strike> : Jon Ciesla | ||
* ghost-diagrams | * <strike> ghost-diagrams </strike> : Jon Ciesla | ||
* <strike> giggle </strike> : Jon Ciesla | * <strike> giggle </strike> : Jon Ciesla | ||
* gimmix | * <strike> gimmix </strike> : Jon Ciesla | ||
* git | * <strike> git </strike> : Jon Ciesla | ||
* gjots2 | * <strike> gjots2 </strike> : Jon Ciesla | ||
* gl-117 | * <strike> gl-117 </strike> : Jon Ciesla | ||
* glabels | * <strike> glabels </strike> : Jon Ciesla | ||
* glade3 | * <strike> glade3 </strike> : Kalev Lember | ||
* glaxium | * <strike> glaxium </strike> : Jon Ciesla | ||
* GLC_Player | * <strike> GLC_Player </strike> : Jon Ciesla | ||
* glglobe | * <strike> glglobe </strike> : Jon Ciesla | ||
* gliv | * <strike> gliv </strike> : Jon Ciesla | ||
* glob2 | * <strike> glob2 </strike> : Bruno Wolff | ||
* gmpc | * <strike> gmpc </strike> : Adrian Reber | ||
* gnomad2 | * <strike> gnomad2 </strike> : Jon Ciesla | ||
* gnomebaker | * <strike> gnomebaker </strike> : Jon Ciesla | ||
* gnome-chemistry-utils | * <strike> gnome-chemistry-utils </strike> : Jon Ciesla | ||
* gnomeradio | * <strike> gnomeradio </strike> : Jon Ciesla | ||
* gnome-subtitles | * <strike> gnome-subtitles </strike> : Julian Sikorski | ||
* gnome-translate | * <strike> gnome-translate </strike> : Jon Ciesla | ||
* <strike> gnubg </strike> : Jon Ciesla | * <strike> gnubg </strike> : Jon Ciesla | ||
* gnumeric | * <strike> gnumeric </strike> : Christoph Wickert | ||
* gobby | * <strike> gobby </strike> : Jon Ciesla Fixed in f19 but FTBFS in rawhide, BZ filed. | ||
* <strike> gonvert </strike> : Jon Ciesla | * <strike> gonvert </strike> : Jon Ciesla | ||
* gourmet | * <strike> gourmet </strike> : Jon Ciesla | ||
* gparted | * <strike> gparted </strike> : Deji Akingunola | ||
* gphpedit | * <strike> gphpedit </strike> : Jon Ciesla | ||
* gpicview | * <strike> gpicview </strike> : Jon Ciesla | ||
* <strike> gpodder </strike> : Jon Ciesla | * <strike> gpodder </strike> : Jon Ciesla | ||
* gpredict | * <strike> gpredict </strike> : Jon Ciesla | ||
* gpsd | * <strike> gpsd </strike> : Miroslav Lichvar | ||
* gq | * <strike> gq </strike> : Jon Ciesla | ||
* grace | * <strike> grace </strike> : Jon Ciesla | ||
* <strike> gramps </strike> : Jon Ciesla | * <strike> gramps </strike> : Jon Ciesla | ||
* grass | * <strike> grass </strike> : Jon Ciesla | ||
* grc | * <strike> grc </strike> : Retired by Toshio | ||
* greadelf | * <strike> greadelf </strike> : Jon Ciesla | ||
* gresistor | * <strike> gresistor </strike> : Jon Ciesla | ||
* gresolver | * <strike> gresolver </strike> : Jon Ciesla | ||
* GREYCstoration | * <strike> GREYCstoration </strike> : Jon Ciesla | ||
* greyhounds | * <strike> greyhounds </strike> : Bruno Wolff | ||
* grhino | * <strike> grhino </strike> : Jon Ciesla | ||
* grig | * <strike> grig </strike> : Jon Ciesla FTBFS, BZ already exists. | ||
* grip | * <strike> grip </strike> : Jon Ciesla | ||
* grisbi | * <strike> grisbi </strike> : Jon Ciesla FTBFS, BZ already exists. | ||
* gscan2pdf | * <strike> gscan2pdf </strike> : Jon Ciesla | ||
* gtk-gnutella | * <strike> gtk-gnutella </strike> : Jon Ciesla | ||
* gtkperf | * <strike> gtkperf </strike> : Jon Ciesla | ||
* <strike> gtkpod </strike> : Jon Ciesla | * <strike> gtkpod </strike> : Jon Ciesla | ||
* gtk-recordmydesktop | * <strike> gtk-recordmydesktop </strike> : Jon Ciesla | ||
* gtkterm | * <strike> gtkterm </strike> : Jon Ciesla | ||
* gtorrentviewer | * <strike> gtorrentviewer </strike> : Paul Howarth | ||
* gv | * <strike> gv </strike> : Orion Poplawski | ||
* <strike> gweled </strike> : Jon Ciesla | * <strike> gweled </strike> : Jon Ciesla | ||
* gwget | * <strike> gwget </strike> : Jon Ciesla | ||
* gwibber | * <strike> gwibber </strike> : Jon Ciesla | ||
* gxine | * <strike> gxine </strike> : Jon Ciesla | ||
* gyachi | * <strike> gyachi </strike> : Jon Ciesla | ||
* hardinfo | * <strike> hardinfo </strike> : Jon Ciesla | ||
* hatari | * <strike> hatari </strike> : Jon Ciesla | ||
* hedgewars | * <strike> hedgewars </strike> : Bruno Wolff | ||
* HippoDraw | * <strike> HippoDraw </strike> : Jon Ciesla, retired. | ||
* homebank | * <strike> homebank </strike> : Jon Ciesla | ||
* html2ps | * <strike> html2ps </strike> : Jon Ciesla | ||
* htmldoc | * <strike> htmldoc </strike> : Jon Ciesla | ||
* httrack | * <strike> httrack </strike> : Jon Ciesla | ||
* <strike> hydrogen </strike> : Jon Ciesla | * <strike> hydrogen </strike> : Jon Ciesla | ||
* im-chooser | * <strike> im-chooser </strike> : Toshio Kuratomi | ||
* <strike> immix </strike> : Jon Ciesla | * <strike> immix </strike> : Jon Ciesla | ||
* inetvis | * <strike> inetvis </strike> : Toshio Kuratomi | ||
* international-time | * <strike> international-time </strike> : Toshio Kuratomi | ||
* <strike> iok </strike> : Parag Nemade | * <strike> iok </strike> : Parag Nemade | ||
* ipe | * <strike> ipe </strike> : Toshio Kuratomi | ||
* isomaster | * <strike> isomaster </strike> : Toshio Kuratomi | ||
* jabbim | * <strike> jabbim </strike> : Package retired | ||
* jack-rack | * <strike> jack-rack </strike> : Toshio Kuratomi | ||
* jd | * <strike> jd </strike> : Already fixed by Mamoru Tasaka | ||
* jigdo | * <strike> jigdo </strike> : Toshio Kuratomi | ||
* jmol | * <strike> jmol </strike> : Toshio Kuratomi | ||
* justmoon | * <strike> justmoon </strike> : Toshio Kuratomi | ||
* kazehakase | * <strike> kazehakase </strike> : Already fixed by Mamoru Tasaka | ||
* kbilliards | * <strike> kbilliards </strike> : Toshio Kuratomi | ||
* kdesvn | * <strike> kdesvn </strike> : Toshio Kuratomi | ||
* kdirstat | * <strike> kdirstat </strike> : Toshio Kuratomi | ||
* <strike> keepassx </strike> : Jon Ciesla | * <strike> keepassx </strike> : Jon Ciesla | ||
* kid3 | * <strike> kid3 </strike> : already fixed by Ville Skyttä | ||
* kita | * <strike> kita </strike> : already fixed by Mamoru TASAKA | ||
* kitsune | * <strike> kitsune </strike> : Toshio Kuratomi | ||
* klamav | * <strike> klamav </strike> : Toshio Kuratomi | ||
* knetstats | * <strike> knetstats </strike> : Toshio Kuratomi | ||
* <strike> KoboDeluxe </strike> : Jon Ciesla | * <strike> KoboDeluxe </strike> : Jon Ciesla | ||
* kodos | * <strike> kodos </strike> : Toshio Kuratomi | ||
* komparator | * <strike> komparator </strike> : Toshio Kuratomi | ||
* koules | * <strike> koules </strike> : Toshio Kuratomi | ||
* kover | * <strike> kover </strike> : Toshio Kuratomi | ||
* kphotobymail | * <strike> kphotobymail </strike> : Toshio Kuratomi | ||
* kpolynome | * <strike> kpolynome </strike> : Toshio Kuratomi | ||
* kreetingkard | * <strike> kreetingkard </strike> : Already fixed by Mamoru Tasaka | ||
* ksensors | * <strike> ksensors </strike> : Toshio Kuratomi | ||
* kshutdown | * <strike> kshutdown </strike> : Already fixed by Jan Grulich | ||
* LabPlot | * <strike> LabPlot </strike> : Toshio Kuratomi | ||
* lacewing | * <strike> lacewing </strike> : Toshio Kuratomi | ||
* <strike> lash </strike> : oget | * <strike> lash </strike> : oget | ||
* lazarus | * <strike> lazarus </strike> : Jon Ciesla | ||
* lbrickbuster2 | * <strike> lbrickbuster2 </strike> : Jon Ciesla | ||
* leafpad | * <strike> leafpad </strike> : Jon Ciesla | ||
* libhocr | * <strike> libhocr </strike> : Jon Ciesla | ||
* libsvm | * <strike> libsvm </strike> : Jon Ciesla | ||
* licq | * <strike> licq </strike> : Jon Ciesla | ||
* <strike> liferea </strike> : Jon Ciesla | * <strike> liferea </strike> : Jon Ciesla | ||
* lincity-ng | * <strike> lincity-ng </strike> : Jon Ciesla | ||
* linphone | * <strike> linphone </strike> : Jon Ciesla, FTBFS, BZ already exists. | ||
* linpsk | * <strike> linpsk </strike> : Jon Ciesla | ||
* linsmith | * <strike> linsmith </strike> : Jon Ciesla | ||
* <strike> liquidwar </strike> : Jon Ciesla | * <strike> liquidwar </strike> : Jon Ciesla | ||
* listen | * <strike> listen </strike> : Jon Ciesla | ||
* liveusb-creator | * <strike> liveusb-creator </strike> : Jon Ciesla | ||
* logjam | * <strike> logjam </strike> : Jon Ciesla | ||
* londonlaw | * <strike> londonlaw </strike> : Hans de Goede | ||
* lshw | * <strike> lshw </strike> : Jon Ciesla | ||
* lucidlife | * <strike> lucidlife </strike> : Jon Ciesla | ||
* lure | * <strike> lure </strike> : Jon Ciesla | ||
* lxappearance | * <strike> lxappearance </strike> : Jon Ciesla | ||
* lxtask | * <strike> lxtask </strike> : Jon Ciesla | ||
* lxterminal | * <strike> lxterminal </strike> : Jon Ciesla | ||
* lybniz | * <strike> lybniz </strike> : Jon Ciesla | ||
* machineball | * <strike> machineball </strike> : Toshio Kuratomi | ||
* Maelstrom | * <strike> Maelstrom </strike> : Toshio Kuratomi | ||
* magicmaze | * <strike> magicmaze </strike> : Toshio Kuratomi | ||
* magicor | * <strike> magicor </strike> : Toshio Kuratomi | ||
* mail-notification | * <strike> mail-notification </strike> : Toshio Kuratomi | ||
* makehuman | * <strike> makehuman </strike> : Toshio Kuratomi | ||
* manedit | * <strike> manedit </strike> : Toshio Kuratomi | ||
* maniadrive | * <strike> maniadrive </strike> : Toshio Kuratomi | ||
* mapnik | * <strike> mapnik </strike> : Toshio Kuratomi | ||
* mdbtools | * <strike> mdbtools </strike> : Toshio Kuratomi | ||
* <strike> MegaMek </strike> Toshio Kuratomi | * <strike> MegaMek </strike> : Toshio Kuratomi | ||
* <strike> meld </strike> Toshio Kuatomi | * <strike> meld </strike> : Toshio Kuatomi | ||
* <strike> methane </strike> Toshio Kuratomi | * <strike> methane </strike> : Toshio Kuratomi | ||
* <strike> midori </strike> Toshio Kuratomi | * <strike> midori </strike> : Toshio Kuratomi | ||
* <strike> milkytracker </strike> Toshio Kuratomi | * <strike> milkytracker </strike> : Toshio Kuratomi | ||
* <strike> mirage </strike> already fixed by Mamoru Tasaka | * <strike> mirage </strike> : already fixed by Mamoru Tasaka | ||
* mirrormagic | * <strike> mirrormagic </strike> : Toshio Kuratomi | ||
* mldonkey | * <strike> mldonkey </strike> : Toshio Kuratomi | ||
* mono-tools | * <strike> mono-tools </strike> : Toshio Kuratomi | ||
* <strike> monsterz </strike> : Jon Ciesla | * <strike> monsterz </strike> : Jon Ciesla | ||
* mrxvt | * <strike> mrxvt </strike> : Toshio Kuratomi | ||
* mtpaint | * <strike> mtpaint </strike> : Toshio Kuratomi | ||
* mtr | * <strike> mtr </strike> : Toshio Kuratomi | ||
* mypaint | * <strike> mypaint </strike> : Toshio Kuratomi | ||
* MyPasswordSafe | * <strike> MyPasswordSafe </strike> : Toshio Kuratomi | ||
* <strike> naturette </strike> : Jon Ciesla | * <strike> naturette </strike> : Jon Ciesla | ||
* nautilus-actions | * <strike> nautilus-actions </strike> : Jon Ciesla | ||
* nazghul | * <strike> nazghul </strike> : Jon Ciesla | ||
* nedit | * <strike> nedit </strike> : Jon Ciesla | ||
* nemiver | * <strike> nemiver </strike> : Matthias Clasen | ||
* nessus-core | * <strike> nessus-core </strike> : Jon Ciesla | ||
* netgen | * <strike> netgen </strike> : Jon Ciesla | ||
* netgo | * <strike> netgo </strike> : Jon Ciesla | ||
* <strike> nethack </strike> : Jon Ciesla | * <strike> nethack </strike> : Jon Ciesla | ||
* <strike> nethack-vultures </strike> : Jon Ciesla | * <strike> nethack-vultures </strike> : Jon Ciesla | ||
Line 402: | Line 422: | ||
* <strike> neverball </strike> : Jon Ciesla | * <strike> neverball </strike> : Jon Ciesla | ||
* <strike> nexuiz </strike> : Jon Ciesla | * <strike> nexuiz </strike> : Jon Ciesla | ||
* nightfall | * <strike> nightfall </strike> : Jon Ciesla | ||
* nightview | * <strike> nightview </strike> : Jon Ciesla, FTBFS, BZ already exists. | ||
* njam | * <strike> njam </strike> : Jon Ciesla | ||
* nntpgrab | * <strike> nntpgrab </strike> : Jon Ciesla | ||
* nogravity | * <strike> nogravity </strike> : Jon Ciesla | ||
* npush | * <strike> npush </strike> : Jon Ciesla | ||
* <strike> numptyphysics </strike> : Jon Ciesla | * <strike> numptyphysics </strike> : Jon Ciesla | ||
* nvclock | * <strike> nvclock </strike> : Jon Ciesla | ||
* obconf | * <strike> obconf </strike> : Jon Ciesla, FTBFS, filed BZ. | ||
* obmenu | * <strike> obmenu </strike> : Jon Ciesla | ||
* ochusha | * <strike> ochusha </strike> : Mamoru Tasaka | ||
* ocp | * <strike> ocp </strike> : Jon Ciesla | ||
* octave | * <strike> octave </strike> : Orion Poplawski | ||
* oggconvert | * <strike> oggconvert </strike> : Jon Ciesla | ||
* OmegaT | * <strike> OmegaT </strike> : Jon Ciesla | ||
* oneko | * <strike> oneko </strike> : Jon Ciesla | ||
* openalchemist | * <strike> openalchemist </strike> : Jon Ciesla | ||
* openlierox | * <strike> openlierox </strike> : Jon Ciesla | ||
* openmsx | * <strike> openmsx </strike> : Jon Ciesla | ||
* openuniverse | * <strike> openuniverse </strike> : Jon Ciesla | ||
* opticalraytracer | * <strike> opticalraytracer </strike> : Jon Ciesla | ||
* orage | * <strike> orage </strike> : Jon Ciesla | ||
* osmo | * <strike> osmo </strike> : Jon Ciesla | ||
* overgod | * <strike> overgod </strike> : Jon Ciesla | ||
* pachi | * <strike> pachi </strike> : Jon Ciesla | ||
* pan | * <strike> pan </strike> : Jon Ciesla | ||
* paraview | * <strike> paraview </strike> : Jon Ciesla | ||
* parcellite | * <strike> parcellite </strike> : Jon Ciesla | ||
* pari | * <strike> pari </strike> : Jon Ciesla | ||
* pcmanfm | * <strike> pcmanfm </strike> : Jon Ciesla | ||
* pcsc-tools | * <strike> pcsc-tools </strike> : Jon Ciesla | ||
* <strike> penguin-command </strike> : Jon Ciesla | * <strike> penguin-command </strike> : Jon Ciesla | ||
* <strike> pengupop </strike> : Jon Ciesla | * <strike> pengupop </strike> : Jon Ciesla | ||
* perl-Padre | * <strike> perl-Padre </strike> : Toshio Kuratomi [https://bugzilla.redhat.com/show_bug.cgi?id=914310 FTBFS] | ||
* phasex | * <strike> phasex </strike> : Toshio Kuratomi | ||
* picard | * <strike> picard </strike> : Toshio Kuratomi | ||
* picviz | * <strike> picviz </strike>: Toshio Kuratomi | ||
* pikdev | * <strike> pikdev </strike> : Toshio Kuratomi | ||
* piklab | * <strike> piklab </strike> : Toshio Kuratomi | ||
* pikloops | * <strike> pikloops </strike> : Toshio Kuratomi | ||
* <strike> pinball </strike> : Jon Ciesla | * <strike> pinball </strike> : Jon Ciesla | ||
* <strike> pingus </strike> : Jon Ciesla | * <strike> pingus </strike> : Jon Ciesla | ||
* pioneers | * <strike> pioneers </strike> : Toshio Kuratomi | ||
* <strike> pipenightdreams </strike> : Jon Ciesla | * <strike> pipenightdreams </strike> : Jon Ciesla | ||
* pipepanic | * <strike> pipepanic </strike> : Toshio Kuratomi | ||
* <strike> planets </strike> : Jon Ciesla | * <strike> planets </strike> : Jon Ciesla | ||
* player | * <strike> player </strike> : Toshio Kuratomi | ||
* pmpu | * <strike> pmpu </strike> : Toshio Kuratomi | ||
* poedit | * <strike> poedit </strike> : Toshio Kuratomi | ||
* policycoreutils | * <strike> policycoreutils </strike> : Rahul Sundaram | ||
* portecle | * <strike> portecle </strike> : Toshio Kuratomi | ||
* prelude-notify | * <strike> prelude-notify </strike> : Toshio Kuratomi | ||
* <strike> professor-is-missing </strike> : Jon Ciesla | * <strike> professor-is-missing </strike> : Jon Ciesla | ||
* <strike> publican </strike> : Parag Nemade | * <strike> publican </strike> : Parag Nemade | ||
* puzzles | * <strike> puzzles </strike> : Toshio Kuratomi | ||
* pybliographer | * <strike> pybliographer </strike> : Toshio Kuratomi | ||
* pychess | * <strike> pychess </strike> : Bruno Wolff | ||
* <strike> pyrenamer </strike> : Jon Ciesla | * <strike> pyrenamer </strike> : Jon Ciesla | ||
* PySolFC | * <strike> PySolFC </strike> : Toshio Kuratomi | ||
* pyvnc2swf | * <strike> pyvnc2swf </strike> : Toshio Kuratomi | ||
* qalculate-gtk | * <strike> qalculate-gtk </strike> : Toshio Kuratomi | ||
* qalculate-kde | * <strike> qalculate-kde </strike> : Toshio Kuratomi | ||
* <strike> qascade </strike> | * <strike> qascade </strike> | ||
* qcad | * <strike> qcad </strike> : Toshio Kuratomi | ||
* qct | * <strike> qct </strike> : Toshio Kuratomi | ||
* qemu-launcher | * <strike> qemu-launcher </strike> : Toshio Kuratomi | ||
* qfaxreader | * <strike> qfaxreader </strike> : Toshio Kuratomi | ||
* qgis | * <strike> qgis </strike> : Toshio Kutatomi | ||
* qgit | * <strike> qgit </strike> : Toshio Kuratomi | ||
* | * <strike> qjackctl </strike> : oget | ||
* qmmp | * <strike> qmmp </strike> : Toshio Kuratomi | ||
* <strike> qsynth </strike> : oget | * <strike> qsynth </strike> : oget | ||
* qtoctave | * <strike> qtoctave </strike> : Toshio Kuratomi | ||
* qt-recordmydesktop | * <strike> qt-recordmydesktop </strike> : Toshio Kuratomi | ||
* <strike> quake3 </strike> : Jon Ciesla | * <strike> quake3 </strike> : Jon Ciesla | ||
* <strike> quarry </strike> : Jon Ciesla | * <strike> quarry </strike> : Jon Ciesla | ||
* qucs | * <strike> qucs </strike> : Toshio Kuratomi | ||
* quicksynergy | * <strike> quicksynergy </strike> : Toshio Kuratomi | ||
* quodlibet | * <strike> quodlibet </strike> : Toshio Kuratomi & Johannes Lips | ||
* <strike> rafkill </strike> : Jon Ciesla | * <strike> rafkill </strike> : Jon Ciesla | ||
* raidem | * <strike> raidem </strike> : Bruno Wolff | ||
* rapidsvn | * <strike> rapidsvn </strike> : Jon Ciesla | ||
* rawstudio | * <strike> rawstudio </strike> : Jon Ciesla | ||
* rcsslogplayer | * <strike> rcsslogplayer </strike> : Jon Ciesla | ||
* rcssmonitor | * <strike> rcssmonitor </strike> : Jon Ciesla | ||
* rcssserver | * <strike> rcssserver </strike> : Jon Ciesla | ||
* rcssserver3d | * <strike> rcssserver3d </strike> : Jon Ciesla | ||
* redet | * <strike> redet </strike> : Jon Ciesla | ||
* redmode | * <strike> redmode </strike> : Jon Ciesla | ||
* regexxer | * <strike> regexxer </strike> : Jon Ciesla | ||
* rekall | * <strike> rekall </strike> : Jon Ciesla | ||
* remind | * <strike> remind </strike> : Jon Ciesla | ||
* resapplet | * <strike> resapplet </strike> : Jon Ciesla | ||
* revelation | * <strike> revelation </strike> : Jon Ciesla | ||
* revisor | * <strike> revisor </strike> : Jon Ciesla | ||
* Ri-li | * <strike> Ri-li </strike> : Jon Ciesla | ||
* ristretto | * <strike> ristretto </strike> : Jon Ciesla | ||
* rocksndiamonds | * <strike> rocksndiamonds </strike> : Jon Ciesla | ||
* rogue | * <strike> rogue </strike> : Jon Ciesla | ||
* rosegarden4 | * <strike> rosegarden4 </strike> : Already fixed by BrendanJones | ||
* rott | * <strike> rott </strike> : Toshio Kuratomi | ||
* roxterm | * <strike> roxterm </strike> : Toshio Kuratomi | ||
* rxvt | * <strike> rxvt </strike> : Toshio Kuratomi | ||
* rxvt-unicode | * <strike> rxvt-unicode </strike> : Toshio Kuratomi | ||
* saoimage | * <strike> saoimage</strike> : Toshio Kuratomi | ||
* schismtracker | * <strike> schismtracker </strike> : Toshio Kuratomi | ||
* <strike> scorched3d </strike> : Jon Ciesla | * <strike> scorched3d </strike> : Jon Ciesla | ||
* scorchwentbonkers | * <strike> scorchwentbonkers </strike> : Toshio Kuratomi | ||
* screenruler | * <strike> screenruler </strike> : Toshio Kuratomi | ||
* scribus | * <strike> scribus </strike> : Toshio Kuratomi | ||
* scythia | * <strike> scythia </strike> : Toshio Kuratomi | ||
* seahorse-adventures | * <strike> seahorse-adventures </strike> : Toshio Kuratomi | ||
* sear | * <strike> sear </strike> : Bruno Wolff | ||
* seaview | * <strike> seaview </strike> : Toshio Kuratomi | ||
* sectool | * <strike> sectool </strike> : Toshio Kuratomi | ||
* seq24 | * <strike> seq24 </strike> : Brendon Jones | ||
* <strike> sergueis-destiny </strike> : Jon Ciesla | * <strike> sergueis-destiny </strike> : Jon Ciesla | ||
* shippy | * <strike> shippy </strike> : Toshio Kuratomi | ||
* sim | * <strike> sim </strike> : Toshio Kuratomi | ||
* simcoupe | * <strike> simcoupe </strike> : Toshio Kuratomi | ||
* sirius | * <strike> sirius </strike> : Bruno Wolff | ||
* six | * <strike> six </strike> : Bruno Wolff | ||
* sk2py | * <strike> sk2py </strike> : Toshio Kuratomi | ||
* <strike> slingshot </strike> : Jon Ciesla | * <strike> slingshot </strike> : Jon Ciesla | ||
* <strike> solarwolf </strike> : Jon Ciesla | * <strike> solarwolf </strike> : Jon Ciesla | ||
* solfege | * <strike> solfege </strike> : Toshio Kuratomi, FTBFS patched | ||
* sonata | * <strike> sonata </strike> : Toshio Kuratomi | ||
* sooperlooper | * <strike> sooperlooper </strike> : Toshio Kuratomi | ||
* <strike> sopwith </strike> : Jon Ciesla | * <strike> sopwith </strike> : Jon Ciesla | ||
* <strike> soundconverter </strike> : modified in git already | * <strike> soundconverter </strike> : modified in git already | ||
* soundtracker | * <strike> soundtracker </strike> : Toshio Kuratomi | ||
* spacechart | * <strike> spacechart </strike> : Toshio Kuratomi | ||
* Sprog | * <strike> Sprog </strike> : Toshio Kuratomi | ||
* sqliteman | * <strike> sqliteman </strike> : Toshio Kuratomi | ||
* stardict | * <strike> stardict </strike> : Toshio Kuratomi | ||
* starplot | * <strike> starplot </strike> : Toshio Kuratomi | ||
* SteGUI | * <strike> SteGUI </strike> : Toshio Kuratomi | ||
* <strike> stellarium </strike> : Jon Ciesla | * <strike> stellarium </strike> : Jon Ciesla | ||
* stormbaancoureur | * <strike> stormbaancoureur </strike> : Toshio Kuratomi | ||
* subtitleeditor | * <strike> subtitleeditor </strike> : Toshio Kuratomi | ||
* <strike> supertuxkart </strike> : Jon Ciesla | * <strike> supertuxkart </strike> : Jon Ciesla | ||
* sweep | * <strike> sweep </strike> : Toshio Kuratomi | ||
* synaptic | * <strike> synaptic </strike> : Toshio Kuratomi | ||
* synce-kpm | * <strike> synce-kpm </strike> : Toshio Kuratomi | ||
* synce-software-manager | * <strike> synce-software-manager </strike> : Toshio Kuratomi | ||
* synce-trayicon | * <strike> synce-trayicon </strike> : Toshio Kuratomi | ||
* <strike> synfigstudio </strike> : Jon Ciesla | * <strike> synfigstudio </strike> : Jon Ciesla | ||
* system-config-rootpassword | * <strike> system-config-rootpassword </strike> : Toshio Kuratomi | ||
* tagtool | * <strike>tagtool </strike> : Parag Nemade | ||
* taskcoach | * <strike>taskcoach </strike> : Parag Nemade | ||
* taskjuggler | * <strike>taskjuggler </strike> : Parag Nemade | ||
* taxipilot | * <strike>taxipilot </strike> : Parag Nemade | ||
* tecnoballz | * <strike>tecnoballz </strike> : Parag Nemade | ||
* teg | * <strike> teg </strike> : Toshio Kuratomi | ||
* <strike> tennix </strike> : Jon Ciesla | * <strike> tennix </strike> : Jon Ciesla | ||
* TeXmacs | * <strike>TeXmacs </strike> : Parag Nemade | ||
* texmaker | * <strike>texmaker </strike> : Parag Nemade | ||
* tgif | * <strike>tgif </strike> : Mamoru Tasaka | ||
* thewidgetfactory | * <strike> thewidgetfactory </strike> : Toshio Kuratomi | ||
* Thunar | * <strike> Thunar </strike> : Toshio Kuratomi | ||
* thunar-volman | * <strike> thunar-volman </strike> : Toshio Kuratomi | ||
* timidity++ | * <strike>timidity++ </strike> : Parag Nemade | ||
* tkgate | * <strike>tkgate </strike> : Parag Nemade | ||
* tn5250 | * <strike>tn5250 </strike> : Parag Nemade | ||
* tong | * <strike>tong </strike> : Parag Nemade | ||
* torsmo | * <strike>torsmo </strike> : Parag Nemade | ||
* <strike> trackballs </strike> : Jon Ciesla | * <strike> trackballs </strike> : Jon Ciesla | ||
* <strike> translation-filter </strike> : Parag Nemade | * <strike> translation-filter </strike> : Parag Nemade | ||
* tremulous | * <strike>tremulous </strike> : Parag Nemade | ||
* tryton | * <strike>tryton </strike> : Parag Nemade | ||
* tunneler | * <strike> tunneler </strike> : Toshio Kuratomi | ||
* <strike> tuxpaint </strike> : Jon Ciesla | * <strike> tuxpaint </strike> : Jon Ciesla | ||
* <strike> tuxpuck </strike> : Jon Ciesla | * <strike> tuxpuck </strike> : Jon Ciesla | ||
* tuxtype2 | * <strike>tuxtype2 </strike> : Parag Nemade | ||
* twinkle | * <strike>twinkle </strike> : Parag Nemade | ||
* typespeed | * <strike>typespeed </strike> : Parag Nemade | ||
* tzclock | * <strike>tzclock </strike> : Mamoru Tasaka | ||
* <strike> ularn </strike> : Jon Ciesla | * <strike> ularn </strike> : Jon Ciesla | ||
* ultimatestunts | * <strike> ultimatestunts </strike> : Parag Nemade | ||
* unison213 | * <strike> unison213 </strike> : Toshio Kuratomi | ||
* <strike> uqm </strike> : Jon Ciesla | * <strike> uqm </strike> : Jon Ciesla | ||
* <strike> usbview </strike> : Parag Nemade | * <strike> usbview </strike> : Parag Nemade | ||
Line 610: | Line 630: | ||
* <strike> wordwarvi </strike> : Parag Nemade | * <strike> wordwarvi </strike> : Parag Nemade | ||
* <strike> worminator </strike> : Parag Nemade | * <strike> worminator </strike> : Parag Nemade | ||
* <strike> wormux </strike> : Parag Nemade | * <strike> wormux </strike> : Parag Nemade - dead package in Fedora, blocked from F19 | ||
* <strike> WritRecogn </strike> : Parag Nemade | * <strike> WritRecogn </strike> : Parag Nemade | ||
* <strike> wxGlade </strike> : Parag Nemade | * <strike> wxGlade </strike> : Parag Nemade | ||
* <strike> x3270 </strike> : Parag Nemade | * <strike> x3270 </strike> : Parag Nemade | ||
* <strike> xaos </strike> : Parag Nemade. | * <strike> xaos </strike> : Parag Nemade. FTBFS fixed by toshio. Now rebuilt | ||
* <strike> xarchiver </strike> : Parag Nemade | * <strike> xarchiver </strike> : Parag Nemade | ||
* <strike> xarchon </strike> : Parag Nemade | * <strike> xarchon </strike> : Parag Nemade |
Latest revision as of 19:41, 13 May 2013
https://fedorahosted.org/fesco/ticket/1077
On F19+ (and not on earlier fedoras), desktop files need to be changed to not be installed with a vendor prefix.
On rawhide: repoquery --whatprovides \*/fedora-\*.desktop --qf '%{name}'| sort| uniq| wc -l
shows 619 binary packages with problems.
February 18: Down to 358 binary packages. Way to go!
February 22: Down to 328 binary packages
February 24: Down to 282 binary packages. Over half way done!
February 25: Down to 239 binary packages
February 28: Down to 217 binary packages
March 6: Down to 213 binary packages
March 10: 173 binary packages. We've broken 200!
Porting notes
Because there are several places at which it needs to be distinguished if the desktop file has a vendor tag or not, it's not a bad idea to make the decision at the top of the spec file and use symbolic names throughout the rest. The simplest form looks something like this:
%if (0%{?fedora} && 0%{?fedora} < 19) %global with_desktop_vendor_tag 1 %endif
If there are existing EPEL (or RHEL) builds that use a vendor tag, this needs to factored in. That looks like this:
%if (0%{?fedora} && 0%{?fedora} < 19) || (0%{?rhel} && 0%{?rhel} < 7) %global with_desktop_vendor_tag 1 %else %global with_desktop_vendor_tag 0 %endif
Then you can use %{with desktop_vendor_tag}
to run desktop-file-install
:
desktop-file-install \ %if 0%{?with_desktop_vendor_tag} --vendor fedora \ %endif %{name}.desktop
In addition to modifying the desktop-file-install
line, you probably also have to modify the %files
section to handle desktop files with or without the fedora-
prefix. Some examples:
- Use a conditional
%files ... + %if 0%{?with_desktop_vendor_tag} %{_datadir}/applications/fedora-%{name}.desktop + %else + %{_datadir}/applications/%{name}.desktop + %endif ...
- Use a wildcard
%files ... - %{_datadir}/applications/fedora-%{name}.desktop + %{_datadir}/applications/*%{name}.desktop ...
List of affected packages
On rawhide, run: repoquery --whatprovides \*/fedora-\*.desktop --qf '%{sourcerpm}'| sort| uniq
600 source packages need changing:
abe: Rahul Sundaramabiword: Rahul Sundaramagistudio: Rahul Sundaramaiksaurus: Rahul Sundaramairsnort: Rahul Sundaramalex4: Rahul Sundaramalexandria: already fixedalienarena: Rahul Sundaramalienblaster: Rahul Sundaramalleyoop: Rahul Sundaramalltray: Rahul Sundaramalphabet-soup: Rahul Sundaramalsamixergui: Rahul Sundaramalsa-tools- Rahul Sundaram. Filed https://bugzilla.redhat.com/show_bug.cgi?id=909622amoebax: Rahul Sundaramamsn: Rahul Sundaramamtterm: Rahul Sundaramanaconda: Rahul Sundaram. Filed https://bugzilla.redhat.com/show_bug.cgi?id=909592angrydd: Jon Cieslaants: Rahul Sundaramapcupsd: Toshio Kuratomi It was in the -gui subpackageapricots: Jon Cieslaardour: Rahul Sundaramarmacycles-ad: Jon Cieslaarora: Rahul Sundaramarrows: Rahul Sundaramasc: Rahul Sundaramastromenace: Jon Cieslaasunder: Rahul Sundaramasylum: Rahul Sundaramasymptote: Rahul Sundaramaterm: Rahul Sundaramatomix: Rahul Sundaramatomorun: Rahul Sundaramaudacity: Rahul Sundaramaudio-convert-mod: Rahul Sundaramaudit-viewer: Rahul Sundaramauriferous: Rahul Sundaramautobuild-applet: Rahul Sundaramazureus: Rahul Sundarambacula: Rahul Sundaramballbuster: Rahul Sundarambalsa: Rahul Sundaram - FTBFS fixed by toshio, now rebuilt.beldi: Rahul Sundarambeneath-a-steel-sky: Rahul Sundarambeneath-a-steel-sky-cd: Rahul Sundaramberusky: Rahul Sundarambibus: Rahul Sundarambitmap: Rahul Sundarambless: Rahul Sundaramberusky: Rahul Sundaramblobby: Rahul SundaramBlockOutII: Rahul Sundaramboinc-client: Rahul Sundarambolzplatz2006: Rahul Sundaramboswars: Rahul Sundarambouml: Rahul Sundarambiloba: Jon Cieslabombardier: Jon Cieslabygfoot: Rahul Sundaramcairo-clock: Rahul Sundaramcatfish: Mamoru Tasaka; patch modified by Toshio to fix buildcave9: Rahul Sundaramcbrpager: already donecdcollect: Rahul Sundaramcdogs-sdl: Rahul Sundaramcelestia: Rahul Sundaramcellwriter: Parag Nemadecenterim: Rahul Sundaram, FTBFS, patched by Toshiocfdg-fe: Jon Cieslachemtool: Rahul Sundaramchildsplay: Rahul Sundaramchkrootkit: Jon Cieslachmsee: Rahul Sundaramcinepaint: Rahul Sundaramclanbomber: Rahul Sundaramclips: Rahul Sundaramclonekeen: Rahul Sundaramclusterssh: Rahul Sundaramcoco-coq: Jon Cieslacodeblocks: Rahul Sundaramcomix: Rahul Sundaramconduit: Rahul Sundaramconglomerate: Rahul Sundaramcoq: Toshio Kuratomicoriander: Rahul Sundaramcorrida: Rahul Sundaramcrack-attack: Rahul SundaramCriticalMass: Rahul Sundaramcrossfire-client: Jon Cieslacrystal-stacker: Rahul Sundaramcssed: Rahul Sundaramcwiid: Rahul Sundaramcycle: Jon Cieslacylindrix: Jon Ciesladayplanner: Toshio Kuratomidd2: Toshio Kuratomiddd: Jon Ciesladeluge: Toshio Kuratomidgae: Jon Ciesladia: Christoph Wickertdillo: Rahul Sundaramdiveintopython: Rahul Sundaramdjview4: Rahul Sundaramdogtail: Rahul Sundaramdosbox: Jon Ciesladrgeodriconf: Rahul Sundaramduel3: Rahul Sundaramdvdisaster: Rahul Sundaramdx: Rahul Sundaramdxcc: Rahul Sundarame16-keyeditebviewed2k_hashedsadmineicielem8300ember: Bruno Wolffemelfm2empathy: Brian Peppleenigmaepdfview: Jon Ciesla -- FTBFS, notified maintainer, being retired.escape: Jon Cieslaeterm: Jon Cieslaetherape: Jon Cieslaettercap: Jon Cieslaexaile: Jon Cieslaexpendable: Jon Cieslaextrema: Jon Cieslaextremetuxracer: Jon Cieslafantasdic: Already fixed by Mamoru Tasakafbg: Jon Cieslafbreader: Jon Cieslafedora-accessibility-guide-en-US: Jon Ciesla dead.package, not retired, emailed maintainerfedora-arm-installer: Jon Ciesla false positivefedora-release-notes: Jon Ciesla false positivefedora-review: Jon Ciesla false positivefilezilla: Jon Cieslafirstaidkit: Jon CieslaFlightGear: Jon Cieslaflight-of-the-amazon-queen: Jon Cieslaflight-of-the-amazon-queen-cd: Jon Cieslaflobopuyo: Jon Cieslaflpsed: Jon Cieslaflumotion: Jon Cieslafontforge: Paul Flo Williamsfontmatrix: Parag Nemadefoobillard: Jon Cieslafpm2: Jon Cieslafprint_demo: Jon Cieslafreeciv: Jon Cieslafreecol: Jon Cieslafreedroid: Jon Cieslafreedroidrpg: Jon Cieslafreetennis: Bruno Wolfffslint: Jon Cieslafwbackups: Jon Cieslafwbuilder: Jon Cieslafwfstab: Jon Cieslag3data: Jon Cieslagabedit: Jon Cieslagajim: Jon Cieslagalternatives: Jon Cieslagamazons: Jon Cieslagambas2: RETIRED Jon Cieslagambas3: Jon Cieslagazpacho: Jon Cieslagbrainy: Jon Cieslagcin: Jon Cieslagcompris: Jon Cieslagcstar: Jon Cieslagcx: Jon Cieslagdesklets: Michael Schwendtgdmap: Jon Cieslageany: Jon Cieslagemdropx: Jon Cieslagenchemlab: Jon Cieslagenius: Jon Cieslaggobi: Jon Cieslaggz-gtk-client: Bruno Wolffghasher: Jon Cieslaghost-diagrams: Jon Cieslagiggle: Jon Cieslagimmix: Jon Cieslagit: Jon Cieslagjots2: Jon Cieslagl-117: Jon Cieslaglabels: Jon Cieslaglade3: Kalev Lemberglaxium: Jon CieslaGLC_Player: Jon Cieslaglglobe: Jon Cieslagliv: Jon Cieslaglob2: Bruno Wolffgmpc: Adrian Rebergnomad2: Jon Cieslagnomebaker: Jon Cieslagnome-chemistry-utils: Jon Cieslagnomeradio: Jon Cieslagnome-subtitles: Julian Sikorskignome-translate: Jon Cieslagnubg: Jon Cieslagnumeric: Christoph Wickertgobby: Jon Ciesla Fixed in f19 but FTBFS in rawhide, BZ filed.gonvert: Jon Cieslagourmet: Jon Cieslagparted: Deji Akingunolagphpedit: Jon Cieslagpicview: Jon Cieslagpodder: Jon Cieslagpredict: Jon Cieslagpsd: Miroslav Lichvargq: Jon Cieslagrace: Jon Cieslagramps: Jon Cieslagrass: Jon Cieslagrc: Retired by Toshiogreadelf: Jon Cieslagresistor: Jon Cieslagresolver: Jon CieslaGREYCstoration: Jon Cieslagreyhounds: Bruno Wolffgrhino: Jon Cieslagrig: Jon Ciesla FTBFS, BZ already exists.grip: Jon Cieslagrisbi: Jon Ciesla FTBFS, BZ already exists.gscan2pdf: Jon Cieslagtk-gnutella: Jon Cieslagtkperf: Jon Cieslagtkpod: Jon Cieslagtk-recordmydesktop: Jon Cieslagtkterm: Jon Cieslagtorrentviewer: Paul Howarthgv: Orion Poplawskigweled: Jon Cieslagwget: Jon Cieslagwibber: Jon Cieslagxine: Jon Cieslagyachi: Jon Cieslahardinfo: Jon Cieslahatari: Jon Cieslahedgewars: Bruno WolffHippoDraw: Jon Ciesla, retired.homebank: Jon Cieslahtml2ps: Jon Cieslahtmldoc: Jon Cieslahttrack: Jon Cieslahydrogen: Jon Cieslaim-chooser: Toshio Kuratomiimmix: Jon Cieslainetvis: Toshio Kuratomiinternational-time: Toshio Kuratomiiok: Parag Nemadeipe: Toshio Kuratomiisomaster: Toshio Kuratomijabbim: Package retiredjack-rack: Toshio Kuratomijd: Already fixed by Mamoru Tasakajigdo: Toshio Kuratomijmol: Toshio Kuratomijustmoon: Toshio Kuratomikazehakase: Already fixed by Mamoru Tasakakbilliards: Toshio Kuratomikdesvn: Toshio Kuratomikdirstat: Toshio Kuratomikeepassx: Jon Cieslakid3: already fixed by Ville Skyttäkita: already fixed by Mamoru TASAKAkitsune: Toshio Kuratomiklamav: Toshio Kuratomiknetstats: Toshio KuratomiKoboDeluxe: Jon Cieslakodos: Toshio Kuratomikomparator: Toshio Kuratomikoules: Toshio Kuratomikover: Toshio Kuratomikphotobymail: Toshio Kuratomikpolynome: Toshio Kuratomikreetingkard: Already fixed by Mamoru Tasakaksensors: Toshio Kuratomikshutdown: Already fixed by Jan GrulichLabPlot: Toshio Kuratomilacewing: Toshio Kuratomilash: ogetlazarus: Jon Cieslalbrickbuster2: Jon Cieslaleafpad: Jon Cieslalibhocr: Jon Cieslalibsvm: Jon Cieslalicq: Jon Cieslaliferea: Jon Cieslalincity-ng: Jon Cieslalinphone: Jon Ciesla, FTBFS, BZ already exists.linpsk: Jon Cieslalinsmith: Jon Cieslaliquidwar: Jon Cieslalisten: Jon Cieslaliveusb-creator: Jon Cieslalogjam: Jon Cieslalondonlaw: Hans de Goedelshw: Jon Cieslalucidlife: Jon Cieslalure: Jon Cieslalxappearance: Jon Cieslalxtask: Jon Cieslalxterminal: Jon Cieslalybniz: Jon Cieslamachineball: Toshio KuratomiMaelstrom: Toshio Kuratomimagicmaze: Toshio Kuratomimagicor: Toshio Kuratomimail-notification: Toshio Kuratomimakehuman: Toshio Kuratomimanedit: Toshio Kuratomimaniadrive: Toshio Kuratomimapnik: Toshio Kuratomimdbtools: Toshio KuratomiMegaMek: Toshio Kuratomimeld: Toshio Kuatomimethane: Toshio Kuratomimidori: Toshio Kuratomimilkytracker: Toshio Kuratomimirage: already fixed by Mamoru Tasakamirrormagic: Toshio Kuratomimldonkey: Toshio Kuratomimono-tools: Toshio Kuratomimonsterz: Jon Cieslamrxvt: Toshio Kuratomimtpaint: Toshio Kuratomimtr: Toshio Kuratomimypaint: Toshio KuratomiMyPasswordSafe: Toshio Kuratominaturette: Jon Cieslanautilus-actions: Jon Cieslanazghul: Jon Cieslanedit: Jon Cieslanemiver: Matthias Clasennessus-core: Jon Cieslanetgen: Jon Cieslanetgo: Jon Cieslanethack: Jon Cieslanethack-vultures: Jon Cieslanetpanzer: Jon Cieslaneverball: Jon Cieslanexuiz: Jon Cieslanightfall: Jon Cieslanightview: Jon Ciesla, FTBFS, BZ already exists.njam: Jon Cieslanntpgrab: Jon Cieslanogravity: Jon Cieslanpush: Jon Cieslanumptyphysics: Jon Cieslanvclock: Jon Cieslaobconf: Jon Ciesla, FTBFS, filed BZ.obmenu: Jon Cieslaochusha: Mamoru Tasakaocp: Jon Cieslaoctave: Orion Poplawskioggconvert: Jon CieslaOmegaT: Jon Cieslaoneko: Jon Cieslaopenalchemist: Jon Cieslaopenlierox: Jon Cieslaopenmsx: Jon Cieslaopenuniverse: Jon Cieslaopticalraytracer: Jon Cieslaorage: Jon Cieslaosmo: Jon Cieslaovergod: Jon Cieslapachi: Jon Cieslapan: Jon Cieslaparaview: Jon Cieslaparcellite: Jon Cieslapari: Jon Cieslapcmanfm: Jon Cieslapcsc-tools: Jon Cieslapenguin-command: Jon Cieslapengupop: Jon Cieslaperl-Padre: Toshio Kuratomi FTBFSphasex: Toshio Kuratomipicard: Toshio Kuratomipicviz: Toshio Kuratomipikdev: Toshio Kuratomipiklab: Toshio Kuratomipikloops: Toshio Kuratomipinball: Jon Cieslapingus: Jon Cieslapioneers: Toshio Kuratomipipenightdreams: Jon Cieslapipepanic: Toshio Kuratomiplanets: Jon Cieslaplayer: Toshio Kuratomipmpu: Toshio Kuratomipoedit: Toshio Kuratomipolicycoreutils: Rahul Sundaramportecle: Toshio Kuratomiprelude-notify: Toshio Kuratomiprofessor-is-missing: Jon Cieslapublican: Parag Nemadepuzzles: Toshio Kuratomipybliographer: Toshio Kuratomipychess: Bruno Wolffpyrenamer: Jon CieslaPySolFC: Toshio Kuratomipyvnc2swf: Toshio Kuratomiqalculate-gtk: Toshio Kuratomiqalculate-kde: Toshio Kuratomiqascadeqcad: Toshio Kuratomiqct: Toshio Kuratomiqemu-launcher: Toshio Kuratomiqfaxreader: Toshio Kuratomiqgis: Toshio Kutatomiqgit: Toshio Kuratomiqjackctl: ogetqmmp: Toshio Kuratomiqsynth: ogetqtoctave: Toshio Kuratomiqt-recordmydesktop: Toshio Kuratomiquake3: Jon Cieslaquarry: Jon Cieslaqucs: Toshio Kuratomiquicksynergy: Toshio Kuratomiquodlibet: Toshio Kuratomi & Johannes Lipsrafkill: Jon Cieslaraidem: Bruno Wolffrapidsvn: Jon Cieslarawstudio: Jon Cieslarcsslogplayer: Jon Cieslarcssmonitor: Jon Cieslarcssserver: Jon Cieslarcssserver3d: Jon Cieslaredet: Jon Cieslaredmode: Jon Cieslaregexxer: Jon Cieslarekall: Jon Cieslaremind: Jon Cieslaresapplet: Jon Cieslarevelation: Jon Cieslarevisor: Jon CieslaRi-li: Jon Cieslaristretto: Jon Cieslarocksndiamonds: Jon Cieslarogue: Jon Cieslarosegarden4: Already fixed by BrendanJonesrott: Toshio Kuratomiroxterm: Toshio Kuratomirxvt: Toshio Kuratomirxvt-unicode: Toshio Kuratomisaoimage: Toshio Kuratomischismtracker: Toshio Kuratomiscorched3d: Jon Cieslascorchwentbonkers: Toshio Kuratomiscreenruler: Toshio Kuratomiscribus: Toshio Kuratomiscythia: Toshio Kuratomiseahorse-adventures: Toshio Kuratomisear: Bruno Wolffseaview: Toshio Kuratomisectool: Toshio Kuratomiseq24: Brendon Jonessergueis-destiny: Jon Cieslashippy: Toshio Kuratomisim: Toshio Kuratomisimcoupe: Toshio Kuratomisirius: Bruno Wolffsix: Bruno Wolffsk2py: Toshio Kuratomislingshot: Jon Cieslasolarwolf: Jon Cieslasolfege: Toshio Kuratomi, FTBFS patchedsonata: Toshio Kuratomisooperlooper: Toshio Kuratomisopwith: Jon Cieslasoundconverter: modified in git alreadysoundtracker: Toshio Kuratomispacechart: Toshio KuratomiSprog: Toshio Kuratomisqliteman: Toshio Kuratomistardict: Toshio Kuratomistarplot: Toshio KuratomiSteGUI: Toshio Kuratomistellarium: Jon Cieslastormbaancoureur: Toshio Kuratomisubtitleeditor: Toshio Kuratomisupertuxkart: Jon Cieslasweep: Toshio Kuratomisynaptic: Toshio Kuratomisynce-kpm: Toshio Kuratomisynce-software-manager: Toshio Kuratomisynce-trayicon: Toshio Kuratomisynfigstudio: Jon Cieslasystem-config-rootpassword: Toshio Kuratomitagtool: Parag Nemadetaskcoach: Parag Nemadetaskjuggler: Parag Nemadetaxipilot: Parag Nemadetecnoballz: Parag Nemadeteg: Toshio Kuratomitennix: Jon CieslaTeXmacs: Parag Nemadetexmaker: Parag Nemadetgif: Mamoru Tasakathewidgetfactory: Toshio KuratomiThunar: Toshio Kuratomithunar-volman: Toshio Kuratomitimidity++: Parag Nemadetkgate: Parag Nemadetn5250: Parag Nemadetong: Parag Nemadetorsmo: Parag Nemadetrackballs: Jon Cieslatranslation-filter: Parag Nemadetremulous: Parag Nemadetryton: Parag Nemadetunneler: Toshio Kuratomituxpaint: Jon Cieslatuxpuck: Jon Cieslatuxtype2: Parag Nemadetwinkle: Parag Nemadetypespeed: Parag Nemadetzclock: Mamoru Tasakaularn: Jon Cieslaultimatestunts: Parag Nemadeunison213: Toshio Kuratomiuqm: Jon Cieslausbview: Parag Nemadeuudeview: Parag Nemadev4l2ucp: Parag Nemadevalknut: Parag Nemadevavoom: Parag Nemadevdrift: Parag Nemadevegastrike: Parag Nemadeverbiste: Parag Nemadevim: Parag Nemadevkeybd: Parag Nemadevodovod: Parag Nemadevym: Parag Nemadewallpapoz: Mamoru Tasakawarzone2100: Parag Nemadewavbreaker: Parag Nemadewesnoth: Parag Nemadewfut: Parag Nemadewhy: Parag Nemadewhysynth-dssi: Parag Nemadewidelands: Parag Nemadewine: Parag Nemadewings: Parag Nemade. FTBFS https://bugzilla.redhat.com/show_bug.cgi?id=909805winpdb: Parag Nemadewireshark: Parag Nemadewlassistant: Parag Nemadewordwarvi: Parag Nemadeworminator: Parag Nemadewormux: Parag Nemade - dead package in Fedora, blocked from F19WritRecogn: Parag NemadewxGlade: Parag Nemadex3270: Parag Nemadexaos: Parag Nemade. FTBFS fixed by toshio. Now rebuiltxarchiver: Parag Nemadexarchon: Parag Nemadexawtv: Parag Nemadexblast: Parag Nemadexca: Parag Nemadexchat-gnome: Parag Nemadexchm: Parag Nemadexdaliclock: Parag Nemadexdesktopwaves: Parag Nemadexdrawchem: Parag Nemadexfbib: Parag Nemadexfce4-taskmanager: Parag Nemadexfhell: Parag Nemadexfig: Parag Nemadexfmpc: Parag Nemadexgalaxy: Parag Nemadexgrav: Parag Nemadexhotkeys: Parag Nemadexkeycaps: Parag Nemadexlockmore: Parag Nemadexmlcopyeditor: Parag Nemadexmoto: Parag Nemadexournal: Parag Nemadexpad: Parag Nemadexpdf: Parag Nemadexpilot-ng: Parag Nemadexsane: Parag Nemadexsc: Parag Nemadexterm: Parag Nemadextide: Mamoru Tasakaxu4: Parag Nemadexvarstar: Parag Nemadexwrits: Parag Nemadexzgv: Parag Nemadeyadex: Parag Nemadezasx: Parag Nemadezynaddsubfx: Parag Nemade