From Fedora Project Wiki
Line 56: Line 56:
* '''MUST''': パッケージを再配置可能であるように設計するなら、パッケージャはレビュー時にその要件、つまりその特別なパッケージの再配置を正当化する理由をはっきりと説明しなければなりません。この説明を行わずに /usr のパスを使用することは blocker と見なされます。<ref>[[Packaging/Guidelines/ja#RelocatablePackages|Packaging Guidelines: 再配置可能なパッケージ]]</ref><BR>
* '''MUST''': パッケージを再配置可能であるように設計するなら、パッケージャはレビュー時にその要件、つまりその特別なパッケージの再配置を正当化する理由をはっきりと説明しなければなりません。この説明を行わずに /usr のパスを使用することは blocker と見なされます。<ref>[[Packaging/Guidelines/ja#RelocatablePackages|Packaging Guidelines: 再配置可能なパッケージ]]</ref><BR>


* '''MUST''': パッケージは作成するディレクトリを全て所有しなければなりません。もしあなたのパッケージが使用するディレクトリを作成しないなら、そのディレクトリを作成するパッケージに依存すべきです。<ref>[[Packaging/Guidelines/ja#FileAndDirectoryOwnership|Packaging Guidelines: ファイルとディレクトリの所有者]]</ref><BR>


* '''MUST''': Fedora パッケージは spec ファイルの %files セクションにリストされているファイルを1回以上リストしてはいけません(有名な例外: 特殊な状況でのライセンステキスト)。<ref>[[Packaging/Guidelines/ja#DuplicateFiles|Packaging Guidelines: 重複ファイル]]</ref><BR>


* '''MUST''': A package must own all directories that it creates. If it does not create a directory that it uses, then it should require a package which does create that directory.  <ref>[[Packaging/Guidelines#FileAndDirectoryOwnership|Packaging Guidelines: File And Directory Ownership]]</ref><BR>
* '''MUST''': ファイルのパーミッションは適切にセットされなければなりません。例えば、実行プログラムは実行権限をセットします。全ての <code>%files</code> セクションは <code>%defattr(...)</code> 行を含めなればなりません。<ref>[[Packaging/Guidelines#FilePermissions|Packaging Guidelines: ファイルパーミッション]]</ref><BR>
* '''MUST''': A Fedora package must not list a file more than once in the spec file's %files listings. (Notable exception: license texts in specific situations)<ref>[[Packaging/Guidelines#DuplicateFiles|Packaging Guidelines: Duplicate Files]]</ref><BR>
 
* '''MUST''': Permissions on files must be set properly. Executables should be set with executable permissions, for example. Every <code>%files</code> section must include a <code>%defattr(...)</code> line. <ref>[[Packaging/Guidelines#FilePermissions|Packaging Guidelines: File Permissions]]</ref><BR>
* '''MUST''': パッケージは一貫性を持ってマクロを使用しなければなりません。<ref>[[Packaging/Guidelines#macros|Packaging Guidelines: マクロ]]</ref><BR>
* '''MUST''': Each package must consistently use macros. <ref>[[Packaging/Guidelines#macros|Packaging Guidelines: Macros]]</ref><BR>
 
* '''MUST''': The package must contain code, or permissable content. <ref>[[Packaging/Guidelines#CodeVsContent|Packaging Guidelines: Code Vs. Content]]</ref><BR>
* '''MUST''': パッケージはコード、又は許容されるコンテンツを含まなければなりません。<ref>[[Packaging/Guidelines#CodeVsContent|Packaging Guidelines: コード Vs. コンテンツ]]</ref><BR>
* '''MUST''': Large documentation files must go in a -doc subpackage. (The definition of large is left up to the packager's best judgement, but is not restricted to size. Large can refer to either size or quantity). <ref name="docs">[[Packaging/Guidelines#PackageDocumentation|Packaging Guidelines: Package Documentation]]</ref><BR>
 
* '''MUST''': If a package includes something as %doc, it must not affect the runtime of the application. To summarize: If it is in %doc, the program must run properly if it is not present. <ref name="docs">[[Packaging/Guidelines#PackageDocumentation|Packaging Guidelines: Package Documentation]]</ref><BR>
* '''MUST''': 大きなドキュメントファイルは -doc サブパッケージに分割されなければなりません(大きいの定義はパッケージャの判断に一任されますが、サイズに対しての制限はありません。大きいはサイズか分量のどちらか一方でも構いません)<ref name="docs">[[Packaging/Guidelines#PackageDocumentation|Packaging Guidelines: ドキュメント]]</ref><BR>
* '''MUST''': Header files must be in a -devel package. <ref name="devel">[[Packaging/Guidelines#DevelPackages|Packaging Guidelines: Devel Packages]]</ref><BR>
 
* '''MUST''': Static libraries must be in a -static package. <ref name="static">[[Packaging/Guidelines#StaticLibraries|Packaging Guidelines: Packaging Static Libraries]]</ref><BR>
* '''MUST''': あるパッケージが %doc にドキュメントを含んでいるなら、アプリケーションの実行に影響を与えてはいけません。要約すると、ドキュメントが %doc にあるなら、そのプログラムはそこにドキュメントがなかったとしても正常に実行されなければなりません。<ref name="docs">[[Packaging/Guidelines#PackageDocumentation|Packaging Guidelines: ドキュメント]]</ref><BR>
* '''MUST''': If a package contains library files with a suffix (e.g. libfoo.so.1.1), then library files that end in .so (without suffix) must go in a -devel package. <ref name="devel">[[Packaging/Guidelines#DevelPackages|Packaging Guidelines: Devel Packages]]</ref><BR>
 
* '''MUST''': In the vast majority of cases, devel packages must require the base package using a fully versioned dependency: <code>Requires: %{name} = %{version}-%{release} </code> <ref name="requirebase">[[Packaging/Guidelines#RequiringBasePackage|Packaging Guidelines: Requiring Base Package]]</ref><BR>
* '''MUST''': ヘッダファイルは -devel パッケージに含めなければなりません。<ref name="devel">[[Packaging/Guidelines#DevelPackages|Packaging Guidelines: Devel パッケージ]]</ref><BR>
* '''MUST''': Packages must NOT contain any .la libtool archives, these must be removed in the spec if they are built.<ref name="static">[[Packaging/Guidelines#StaticLibraries|Packaging Guidelines: Packaging Static Libraries]]</ref><BR>
 
* '''MUST''': Packages containing GUI applications must include a %{name}.desktop file, and that file must be properly installed with desktop-file-install in the %install section. If you feel that your packaged GUI application does not need a .desktop file, you must put a comment in the spec file with your explanation. <ref>[[Packaging/Guidelines#desktop|Packaging Guidelines: Desktop files]]</ref><BR>
* '''MUST''': 静的ライブラリは -static パッケージに含めなければなりません。<ref name="static">[[Packaging/Guidelines#StaticLibraries|Packaging Guidelines: 静的ライブラリのパッケージング]]</ref><BR>
* '''MUST''': Packages must not own files or directories already owned by other packages. The rule of thumb here is that the first package to be installed should own the files or directories that other packages may rely upon. This means, for example, that no package in Fedora should ever share ownership with any of the files or directories owned by the <code>filesystem</code> or <code>man</code> package. If you feel that you have a good reason to own a file or directory that another package owns, then please present that at package review time. <ref>[[Packaging/Guidelines#FileAndDirectoryOwnership|Packaging Guidelines: File And Directory Ownership]]</ref><BR>
 
* '''MUST''': All filenames in rpm packages must be valid UTF-8. <ref>[[Packaging/Guidelines#FilenameEncoding|Packaging Guidelines: Filename Encoding]]</ref><BR>
* '''MUST''': あるパッケージがバージョン指定のある共有ライブラリ(libfoo.so.1.1)を含むなら、.so(バージョン指定がない)のライブラリファイルを -devel パッケージに含めなければなりません。<ref name="devel">[[Packaging/Guidelines#DevelPackages|Packaging Guidelines: Devel パッケージ]]</ref><BR>
 
* '''MUST''': 大半のケースでは -devel パッケージは <code>Requires: %{name} = %{version}-%{release}</code> のようにフルバージョンの依存関係を使用してベースパッケージを要求しなければなりません。<ref name="requirebase">[[Packaging/Guidelines#RequiringBasePackage|Packaging Guidelines: ベースパッケージの要求]]</ref><BR>
 
* '''MUST''': パッケージは libtool のアーカイブ .la ファイルを含めてはいけません。.la ファイルはビルド時に spec ファイルで削除されなければなりません。<ref name="static">[[Packaging/Guidelines#StaticLibraries|Packaging Guidelines: 静的ライブラリのパッケージング]]</ref><BR>
 
* '''MUST''': GUI アプリケーションを含むパッケージは %{name}.desktop ファイルを含めなければなりません。そして %{name}.desktop ファイルは %install セクションの desktop-file-install で適切にインストールされなければなりません。あなたの GUI アプリケーションが .desktop ファイルを必要ないと思うなら、その理由をコメントで spec ファイルに記載しなければなりません。<ref>[[Packaging/Guidelines#desktop|Packaging Guidelines: デスクトップファイル]]</ref><BR>
 
* '''MUST''': パッケージは他のパッケージが既に所有しているファイルを所有してはいけません。基本原則として最初にインストールされるパッケージが、他のパッケージがそのファイルの存在に依存する可能性があるファイルを所有すべきです。例えば、これは <code>filesystem</code> 又は <code>man</code> パッケージによって所有されるファイルであっても所有権を共有するようなパッケージは Fedora にはないということです。もし他のパッケージが所有しているファイルを所有するための適切な理由があるなら、パッケージレビューのときに連絡してください。<ref>[[Packaging/Guidelines#FileAndDirectoryOwnership|Packaging Guidelines: ファイルとディレクトリの所有者]]</ref><BR>
 
* '''MUST''': rpm パッケージの全てのファイル名は UTF-8 でエンコードされなければなりません。<ref>[[Packaging/Guidelines#FilenameEncoding|Packaging Guidelines: ファイル名のエンコーディング]]</ref><BR>


<BR>
<BR>

Revision as of 18:01, 4 August 2010

パッケージレビューガイドライン

これはパッケージレビューのためのガイドラインです。できるだけ包括的に分かり易いようこのレビューガイドラインを作成しようとはしていますが、完璧なチェックリストを作成することは不可能だということに注意してください。レビューアと貢献者(パッケージャ)は、何らかの内容が不明確で疑わしいときは必ずfedora-packaging メーリングリストへ質問して、最も良い判断を行うべきです。

Author: Tom 'spot' Callaway
Revision: 0.30
Initial Draft: Monday Jun 27, 2005
Last Revised: Thursday, Jul 8, 2010

パッケージレビュープロセス

貢献者とレビューアはパッケージレビュープロセスに従います。

レビュー時にチェックすること

レビューにはとってもとっても多くのチェック項目があります。このチェックリストは、新人レビューアが探す範囲のカテゴリを明確にして彼らを支援するために提供されていますが、この内容を満たせば完璧という意味ではありません。レビューアはパッケージのレビュー時に自分たちで優れた判断を行うべきです。チェックリストの各項目は2つのカテゴリ SHOULDMUST に分類されます。

Warning.png
MUST 項目
MUST に該当する項目はパッケージャ(又はレビューア)が 行わなければならない ことです。あるパッケージが MUST 項目を満たしていない場合、それは blocker と見なされます。blocker のパッケージがレビューで承認されることはありません。そういった項目は承認プロセスの前に修正されなければなりません。
  • MUST: 全てのパッケージに rpmlint を実行しなければなりません。そして、その出力をレビューで提示します。[1]
  • MUST: spec ファイルの名前はベースパッケージの %{name} と同じでなければなりません。特別な免除がない限り %{name}.spec のフォーマットになります。[2]
  • MUST: spec ファイルのライセンスフィールドは実際のライセンスと一致しなければなりません。[3]
  • MUST: ソースパッケージ(のみ)が独自のライセンスファイルを持っている場合、そのパッケージのライセンスのテキストファイルを %doc に追加しなければなりません。[4]
  • MUST: spec ファイルはアメリカ英語で書かなければなりません。[5]
  • MUST: パッケージの spec ファイルは読み易いものでなければなりません。[6]
  • MUST: パッケージのビルドに使用するソースは spec ファイルの URL で提供されているアップストリームのソースと同じでなければなりません。レビューアはこの確認作業に md5sum を使用すべきです。もし、このパッケージで指定したアップストリームの URL が存在しないなら、このパッケージをどう扱うかについてソース URL ガイドラインを参照してください。
  • MUST: パッケージは少なくとも1つの主要なアーキテクチャでコンパイルしてビルドに成功しなければなりません。[7]
  • MUST: パッケージをあるアーキテクチャでビルドしようとしてコンパイルに成功しないなら、そういったアーキテクチャは spec ファイルで ExcludeArch に設定すべきです。ExcludeArch に設定された各アーキテクチャは bugzilla に登録されなければなりません。登録したバグ ID は対応する ExcludeArch 行の隣にコメントとして記載すべきです。[8]
  • MUST: パッケージングガイドラインの例外事項に記載されているパッケージを除いて、ビルドをするための全ての依存関係は BuildRequires に定義されなければなりません。例外として記載されている BuildRequires を定義するかどうかは任意です。良識的に考えてください。
  • MUST: spec ファイルはロケールを適切に扱わなければなりません。これは %find_lang マクロを使用するこで行われます。%{_datadir}/locale/* を使用することは厳密に言えば禁止されています。[9]
  • MUST: 動的リンカのデフォルトパスに共有ライブラリ(ただのシンボリックリンクではない)を含む全てのバイナリ RPM パッケージ(又はサブパッケージ)は %post%postun で ldconfig を実行しなければなりません。[10]
  • MUST: パッケージはシステムライブラリのコピーを含めてはいけません。[11]
  • MUST: パッケージを再配置可能であるように設計するなら、パッケージャはレビュー時にその要件、つまりその特別なパッケージの再配置を正当化する理由をはっきりと説明しなければなりません。この説明を行わずに /usr のパスを使用することは blocker と見なされます。[12]
  • MUST: パッケージは作成するディレクトリを全て所有しなければなりません。もしあなたのパッケージが使用するディレクトリを作成しないなら、そのディレクトリを作成するパッケージに依存すべきです。[13]
  • MUST: Fedora パッケージは spec ファイルの %files セクションにリストされているファイルを1回以上リストしてはいけません(有名な例外: 特殊な状況でのライセンステキスト)。[14]
  • MUST: ファイルのパーミッションは適切にセットされなければなりません。例えば、実行プログラムは実行権限をセットします。全ての %files セクションは %defattr(...) 行を含めなればなりません。[15]
  • MUST: パッケージは一貫性を持ってマクロを使用しなければなりません。[16]
  • MUST: パッケージはコード、又は許容されるコンテンツを含まなければなりません。[17]
  • MUST: 大きなドキュメントファイルは -doc サブパッケージに分割されなければなりません(大きいの定義はパッケージャの判断に一任されますが、サイズに対しての制限はありません。大きいはサイズか分量のどちらか一方でも構いません)。[18]
  • MUST: あるパッケージが %doc にドキュメントを含んでいるなら、アプリケーションの実行に影響を与えてはいけません。要約すると、ドキュメントが %doc にあるなら、そのプログラムはそこにドキュメントがなかったとしても正常に実行されなければなりません。[18]
  • MUST: ヘッダファイルは -devel パッケージに含めなければなりません。[19]
  • MUST: 静的ライブラリは -static パッケージに含めなければなりません。[20]
  • MUST: あるパッケージがバージョン指定のある共有ライブラリ(例 libfoo.so.1.1)を含むなら、.so(バージョン指定がない)のライブラリファイルを -devel パッケージに含めなければなりません。[19]
  • MUST: 大半のケースでは -devel パッケージは Requires: %{name} = %{version}-%{release} のようにフルバージョンの依存関係を使用してベースパッケージを要求しなければなりません。[21]
  • MUST: パッケージは libtool のアーカイブ .la ファイルを含めてはいけません。.la ファイルはビルド時に spec ファイルで削除されなければなりません。[20]
  • MUST: GUI アプリケーションを含むパッケージは %{name}.desktop ファイルを含めなければなりません。そして %{name}.desktop ファイルは %install セクションの desktop-file-install で適切にインストールされなければなりません。あなたの GUI アプリケーションが .desktop ファイルを必要ないと思うなら、その理由をコメントで spec ファイルに記載しなければなりません。[22]
  • MUST: パッケージは他のパッケージが既に所有しているファイルを所有してはいけません。基本原則として最初にインストールされるパッケージが、他のパッケージがそのファイルの存在に依存する可能性があるファイルを所有すべきです。例えば、これは filesystem 又は man パッケージによって所有されるファイルであっても所有権を共有するようなパッケージは Fedora にはないということです。もし他のパッケージが所有しているファイルを所有するための適切な理由があるなら、パッケージレビューのときに連絡してください。[23]
  • MUST: rpm パッケージの全てのファイル名は UTF-8 でエンコードされなければなりません。[24]




Important.png
SHOULD Items:
Items marked as SHOULD are things that the package (or reviewer) SHOULD do, but is not required to do.
  • SHOULD: If the source package does not include license text(s) as a separate file from upstream, the packager SHOULD query upstream to include it. [25]
  • SHOULD: The description and summary sections in the package spec file should contain translations for supported Non-English languages, if available. [26]
  • SHOULD: The reviewer should test that the package builds in mock. [27]
  • SHOULD: The package should compile and build into binary rpms on all supported architectures. [28]
  • SHOULD: The reviewer should test that the package functions as described. A package should not segfault instead of running, for example.
  • SHOULD: If scriptlets are used, those scriptlets must be sane. This is vague, and left up to the reviewers judgement to determine sanity. [29]
  • SHOULD: Usually, subpackages other than devel should require the base package using a fully versioned dependency. [21]
  • SHOULD: The placement of pkgconfig(.pc) files depends on their usecase, and this is usually for development purposes, so should be placed in a -devel pkg. A reasonable exception is that the main pkg itself is a devel tool not installed in a user runtime, e.g. gcc or gdb. [30]
  • SHOULD: If the package has file dependencies outside of /etc, /bin, /sbin, /usr/bin, or /usr/sbin consider requiring the package which provides the file instead of the file itself. [31]
  • SHOULD: your package should contain man pages for binaries/scripts. If it doesn't, work with upstream to add them where they make sense.[32]

Fedora パッケージングガイドラインのリファレンス

  1. パッケージングガイドライン: rpmlint の使用
  2. ネーミングガイドライン: spec ファイルの名前付け
  3. ライセンスガイドライン: 無効なライセンス短縮名
  4. ライセンスガイドライン: ライセンステキスト
  5. パッケージングガイドライン: 要約とパッケージ説明
  6. パッケージングガイドライン: spec ファイルの読み易さ
  7. Packaging Guidelines: アーキテクチャサポート
  8. Packaging Guidelines: アーキテクチャの違いによるビルドの失敗
  9. Packaging Guidelines: ロケールファイルを扱う
  10. Packaging Guidelines: 共有ライブラリ
  11. Packaging Guidelines: システムライブラリの重複
  12. Packaging Guidelines: 再配置可能なパッケージ
  13. Packaging Guidelines: ファイルとディレクトリの所有者
  14. Packaging Guidelines: 重複ファイル
  15. Packaging Guidelines: ファイルパーミッション
  16. Packaging Guidelines: マクロ
  17. Packaging Guidelines: コード Vs. コンテンツ
  18. 18.0 18.1 Packaging Guidelines: ドキュメント
  19. 19.0 19.1 Packaging Guidelines: Devel パッケージ
  20. 20.0 20.1 Packaging Guidelines: 静的ライブラリのパッケージング
  21. 21.0 21.1 Packaging Guidelines: ベースパッケージの要求 Cite error: Invalid <ref> tag; name "requirebase" defined multiple times with different content
  22. Packaging Guidelines: デスクトップファイル
  23. Packaging Guidelines: ファイルとディレクトリの所有者
  24. Packaging Guidelines: ファイル名のエンコーディング
  25. Licensing Guidelines: License Text
  26. Packaging Guidelines: Summary and description
  27. Mock Tricks
  28. Packaging Guidelines: Architecture Support
  29. Packaging Guidelines: Scriptlets
  30. Packaging Guidelines: Pkgconfig Files
  31. Packaging Guidelines: File Dependencies
  32. Packaging Guidelines: Man Pages