| 
									
										
										
										
											2000-05-13 03:11:40 +00:00
										 |  |  | """distutils.command.bdist_rpm
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Implements the Distutils 'bdist_rpm' command (create RPM source and binary | 
					
						
							| 
									
										
										
										
											2000-05-27 17:27:23 +00:00
										 |  |  | distributions)."""
 | 
					
						
							| 
									
										
										
										
											2000-05-13 03:11:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # created 2000/04/25, by Harry Henry Gebel | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | __revision__ = "$Id$" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
											  
											
												Fairly massive overhaul to support getting RPM inputs (extra meta-data,
prep/build/etc. scripts, doc files, dependency info) from a config file
rather than the dedicated "package_info" file.  (The idea is that
developers will provide RPM-specific info in the "[bdist_rpm]" section of
setup.cfg, but of course it could also be supplied in the other config
files, on the command line, or in the setup script -- or any mix of the
above.)
Major changes:
  * added a boatload of options to 'user_options' and
    'initialize_options()': 'distribution_name', 'group', 'release', ...
  * added 'finalize_package_data()', which takes the place of
    '_get_package_data()' -- except it's called from 'finalize_options()',
    not 'run()', so we have everything figured out before we actually run
    the command
  * added 'ensure_string()', 'ensure_string_list()', 'ensure_filename()';
    these take the place of '_check_string()' and friends.  (These actually
    look like really useful type-checking methods that could come in handy
    all over the Distutils; should consider moving them up to Command and
    using them in other command classes' 'finalize_options()' method for
    error-checking).
  * various cleanup, commentary, and adaptation to the new way of
    storing RPM info in '_make_spec_file()'
											
										 
											2000-06-02 01:49:58 +00:00
										 |  |  | import os, string, re | 
					
						
							| 
									
										
										
										
											2000-05-27 17:27:23 +00:00
										 |  |  | from types import * | 
					
						
							| 
									
										
										
										
											2000-06-02 02:01:51 +00:00
										 |  |  | from distutils.core import Command, DEBUG | 
					
						
							| 
									
										
										
										
											2000-06-01 00:40:25 +00:00
										 |  |  | from distutils.util import get_platform, write_file | 
					
						
							| 
									
										
										
										
											2000-05-13 03:11:40 +00:00
										 |  |  | from distutils.errors import * | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class bdist_rpm (Command): | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     description = "create an RPM distribution" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     user_options = [ | 
					
						
							| 
									
										
										
										
											2000-06-01 00:40:25 +00:00
										 |  |  |         ('bdist-base', None, | 
					
						
							|  |  |  |          "base directory for creating built distributions"), | 
					
						
							| 
									
										
										
										
											2000-05-13 03:11:40 +00:00
										 |  |  |         ('spec-only', None, | 
					
						
							| 
									
										
										
										
											2000-05-31 23:56:45 +00:00
										 |  |  |          "only regenerate spec file"), | 
					
						
							| 
									
										
										
										
											2000-05-13 03:11:40 +00:00
										 |  |  |         ('source-only', None, | 
					
						
							| 
									
										
										
										
											2000-05-31 23:56:45 +00:00
										 |  |  |          "only generate source RPM"), | 
					
						
							| 
									
										
										
										
											2000-05-13 03:11:40 +00:00
										 |  |  |         ('binary-only', None, | 
					
						
							| 
									
										
										
										
											2000-05-31 23:56:45 +00:00
										 |  |  |          "only generate binary RPM"), | 
					
						
							| 
									
										
										
										
											2000-05-13 03:11:40 +00:00
										 |  |  |         ('use-bzip2', None, | 
					
						
							| 
									
										
										
										
											2000-05-31 23:56:45 +00:00
										 |  |  |          "use bzip2 instead of gzip to create source distribution"), | 
					
						
							| 
									
										
											  
											
												Fairly massive overhaul to support getting RPM inputs (extra meta-data,
prep/build/etc. scripts, doc files, dependency info) from a config file
rather than the dedicated "package_info" file.  (The idea is that
developers will provide RPM-specific info in the "[bdist_rpm]" section of
setup.cfg, but of course it could also be supplied in the other config
files, on the command line, or in the setup script -- or any mix of the
above.)
Major changes:
  * added a boatload of options to 'user_options' and
    'initialize_options()': 'distribution_name', 'group', 'release', ...
  * added 'finalize_package_data()', which takes the place of
    '_get_package_data()' -- except it's called from 'finalize_options()',
    not 'run()', so we have everything figured out before we actually run
    the command
  * added 'ensure_string()', 'ensure_string_list()', 'ensure_filename()';
    these take the place of '_check_string()' and friends.  (These actually
    look like really useful type-checking methods that could come in handy
    all over the Distutils; should consider moving them up to Command and
    using them in other command classes' 'finalize_options()' method for
    error-checking).
  * various cleanup, commentary, and adaptation to the new way of
    storing RPM info in '_make_spec_file()'
											
										 
											2000-06-02 01:49:58 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         # More meta-data: too RPM-specific to put in the setup script, | 
					
						
							|  |  |  |         # but needs to go in the .spec file -- so we make these options | 
					
						
							|  |  |  |         # to "bdist_rpm".  The idea is that packagers would put this | 
					
						
							|  |  |  |         # info in setup.cfg, although they are of course free to | 
					
						
							|  |  |  |         # supply it on the command line. | 
					
						
							|  |  |  |         ('distribution-name', None, | 
					
						
							|  |  |  |          "name of the (Linux) distribution name to which this " | 
					
						
							|  |  |  |          "RPM applies (*not* the name of the module distribution!)"), | 
					
						
							|  |  |  |         ('group', None, | 
					
						
							|  |  |  |          "package classification [default: \"Development/Libraries\"]"), | 
					
						
							|  |  |  |         ('release', None, | 
					
						
							|  |  |  |          "RPM release number"), | 
					
						
							|  |  |  |         ('serial', None, | 
					
						
							|  |  |  |          "???"), | 
					
						
							|  |  |  |         ('vendor', None, | 
					
						
							|  |  |  |          "RPM \"vendor\" (eg. \"Joe Blow <joe@example.com>\") " | 
					
						
							|  |  |  |          "[default: maintainer or author from setup script]"), | 
					
						
							|  |  |  |         ('packager', None, | 
					
						
							|  |  |  |          "RPM packager (eg. \"Jane Doe <jane@example.net>\")" | 
					
						
							|  |  |  |          "[default: vendor]"), | 
					
						
							|  |  |  |         ('doc-files', None, | 
					
						
							|  |  |  |          "list of documentation files (space or comma-separated)"), | 
					
						
							|  |  |  |         ('changelog', None, | 
					
						
							|  |  |  |          "RPM changelog"), | 
					
						
							|  |  |  |         ('icon', None, | 
					
						
							|  |  |  |          "name of icon file"), | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         ('prep-cmd', None, | 
					
						
							|  |  |  |          "?? pre-build command(s) ??"), | 
					
						
							|  |  |  |         ('build-cmd', None, | 
					
						
							|  |  |  |          "?? build command(s) ??"), | 
					
						
							|  |  |  |         ('install-cmd', None, | 
					
						
							|  |  |  |          "?? installation command(s) ??"), | 
					
						
							|  |  |  |         ('clean-cmd', None, | 
					
						
							|  |  |  |          "?? clean command(s) ??"), | 
					
						
							|  |  |  |         ('pre-install', None, | 
					
						
							|  |  |  |          "pre-install script (Bourne shell code)"), | 
					
						
							|  |  |  |         ('post-install', None, | 
					
						
							|  |  |  |          "post-install script (Bourne shell code)"), | 
					
						
							|  |  |  |         ('pre-uninstall', None, | 
					
						
							|  |  |  |          "pre-uninstall script (Bourne shell code)"), | 
					
						
							|  |  |  |         ('post-uninstall', None, | 
					
						
							|  |  |  |          "post-uninstall script (Bourne shell code)"), | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         ('provides', None, | 
					
						
							|  |  |  |          "???"), | 
					
						
							|  |  |  |         ('requires', None, | 
					
						
							|  |  |  |          "???"), | 
					
						
							|  |  |  |         ('conflicts', None, | 
					
						
							|  |  |  |          "???"), | 
					
						
							|  |  |  |         ('build-requires', None, | 
					
						
							|  |  |  |          "???"), | 
					
						
							|  |  |  |         ('obsoletes', None, | 
					
						
							|  |  |  |          "???"), | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Actions to take when building RPM | 
					
						
							| 
									
										
										
										
											2000-05-31 23:56:45 +00:00
										 |  |  |         ('clean', None, | 
					
						
							|  |  |  |          "clean up RPM build directory [default]"), | 
					
						
							| 
									
										
										
										
											2000-05-13 03:11:40 +00:00
										 |  |  |         ('no-clean', None, | 
					
						
							| 
									
										
										
										
											2000-05-31 23:56:45 +00:00
										 |  |  |          "don't clean up RPM build directory"), | 
					
						
							|  |  |  |         ('use-rpm-opt-flags', None, | 
					
						
							|  |  |  |          "compile with RPM_OPT_FLAGS when building from source RPM"), | 
					
						
							| 
									
										
										
										
											2000-05-13 03:11:40 +00:00
										 |  |  |         ('no-rpm-opt-flags', None, | 
					
						
							| 
									
										
										
										
											2000-05-31 23:56:45 +00:00
										 |  |  |          "do not pass any RPM CFLAGS to compiler"), | 
					
						
							|  |  |  |        ] | 
					
						
							| 
									
										
										
										
											2000-05-13 03:11:40 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-05-31 23:56:45 +00:00
										 |  |  |     negative_opt = {'no-clean': 'clean', | 
					
						
							|  |  |  |                     'no-rpm-opt-flags': 'use-rpm-opt-flags'} | 
					
						
							| 
									
										
										
										
											2000-05-13 03:11:40 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-05-31 23:56:45 +00:00
										 |  |  |                      | 
					
						
							| 
									
										
										
										
											2000-05-13 03:11:40 +00:00
										 |  |  |     def initialize_options (self): | 
					
						
							| 
									
										
										
										
											2000-06-01 00:40:25 +00:00
										 |  |  |         self.bdist_base = None | 
					
						
							| 
									
										
										
										
											2000-05-13 03:11:40 +00:00
										 |  |  |         self.spec_only = None | 
					
						
							|  |  |  |         self.binary_only = None | 
					
						
							|  |  |  |         self.source_only = None | 
					
						
							|  |  |  |         self.use_bzip2 = None | 
					
						
							| 
									
										
											  
											
												Fairly massive overhaul to support getting RPM inputs (extra meta-data,
prep/build/etc. scripts, doc files, dependency info) from a config file
rather than the dedicated "package_info" file.  (The idea is that
developers will provide RPM-specific info in the "[bdist_rpm]" section of
setup.cfg, but of course it could also be supplied in the other config
files, on the command line, or in the setup script -- or any mix of the
above.)
Major changes:
  * added a boatload of options to 'user_options' and
    'initialize_options()': 'distribution_name', 'group', 'release', ...
  * added 'finalize_package_data()', which takes the place of
    '_get_package_data()' -- except it's called from 'finalize_options()',
    not 'run()', so we have everything figured out before we actually run
    the command
  * added 'ensure_string()', 'ensure_string_list()', 'ensure_filename()';
    these take the place of '_check_string()' and friends.  (These actually
    look like really useful type-checking methods that could come in handy
    all over the Distutils; should consider moving them up to Command and
    using them in other command classes' 'finalize_options()' method for
    error-checking).
  * various cleanup, commentary, and adaptation to the new way of
    storing RPM info in '_make_spec_file()'
											
										 
											2000-06-02 01:49:58 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         self.distribution_name = None | 
					
						
							|  |  |  |         self.group = None | 
					
						
							|  |  |  |         self.release = None | 
					
						
							|  |  |  |         self.serial = None | 
					
						
							|  |  |  |         self.vendor = None | 
					
						
							|  |  |  |         self.packager = None | 
					
						
							|  |  |  |         self.doc_files = None | 
					
						
							|  |  |  |         self.changelog = None | 
					
						
							|  |  |  |         self.icon = None | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         self.prep_cmd = None | 
					
						
							|  |  |  |         self.build_cmd = None | 
					
						
							|  |  |  |         self.install_cmd = None | 
					
						
							|  |  |  |         self.clean_cmd = None | 
					
						
							|  |  |  |         self.pre_install = None | 
					
						
							|  |  |  |         self.post_install = None | 
					
						
							|  |  |  |         self.pre_uninstall = None | 
					
						
							|  |  |  |         self.post_uninstall = None | 
					
						
							|  |  |  |         self.prep = None | 
					
						
							|  |  |  |         self.provides = None | 
					
						
							|  |  |  |         self.requires = None | 
					
						
							|  |  |  |         self.conflicts = None | 
					
						
							|  |  |  |         self.build_requires = None | 
					
						
							|  |  |  |         self.obsoletes = None | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-05-31 23:56:45 +00:00
										 |  |  |         self.clean = 1 | 
					
						
							|  |  |  |         self.use_rpm_opt_flags = 1 | 
					
						
							| 
									
										
										
										
											2000-05-13 03:11:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # initialize_options() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def finalize_options (self): | 
					
						
							| 
									
										
										
										
											2000-06-01 00:40:25 +00:00
										 |  |  |         self.set_undefined_options('bdist', ('bdist_base', 'bdist_base')) | 
					
						
							| 
									
										
										
										
											2000-05-13 03:11:40 +00:00
										 |  |  |         if os.name != 'posix': | 
					
						
							|  |  |  |             raise DistutilsPlatformError, \ | 
					
						
							|  |  |  |                   ("don't know how to create RPM " | 
					
						
							|  |  |  |                    "distributions on platform %s" % os.name) | 
					
						
							|  |  |  |         if self.binary_only and self.source_only: | 
					
						
							|  |  |  |             raise DistutilsOptionsError, \ | 
					
						
							| 
									
										
										
										
											2000-06-01 00:40:25 +00:00
										 |  |  |                   "cannot supply both '--source-only' and '--binary-only'" | 
					
						
							| 
									
										
											  
											
												Fairly massive overhaul to support getting RPM inputs (extra meta-data,
prep/build/etc. scripts, doc files, dependency info) from a config file
rather than the dedicated "package_info" file.  (The idea is that
developers will provide RPM-specific info in the "[bdist_rpm]" section of
setup.cfg, but of course it could also be supplied in the other config
files, on the command line, or in the setup script -- or any mix of the
above.)
Major changes:
  * added a boatload of options to 'user_options' and
    'initialize_options()': 'distribution_name', 'group', 'release', ...
  * added 'finalize_package_data()', which takes the place of
    '_get_package_data()' -- except it's called from 'finalize_options()',
    not 'run()', so we have everything figured out before we actually run
    the command
  * added 'ensure_string()', 'ensure_string_list()', 'ensure_filename()';
    these take the place of '_check_string()' and friends.  (These actually
    look like really useful type-checking methods that could come in handy
    all over the Distutils; should consider moving them up to Command and
    using them in other command classes' 'finalize_options()' method for
    error-checking).
  * various cleanup, commentary, and adaptation to the new way of
    storing RPM info in '_make_spec_file()'
											
										 
											2000-06-02 01:49:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-05-13 03:11:40 +00:00
										 |  |  |         # don't pass CFLAGS to pure python distributions | 
					
						
							|  |  |  |         if not self.distribution.has_ext_modules(): | 
					
						
							| 
									
										
										
										
											2000-05-31 23:56:45 +00:00
										 |  |  |             self.use_rpm_opt_flags = 0 | 
					
						
							| 
									
										
										
										
											2000-05-13 03:11:40 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
											  
											
												Fairly massive overhaul to support getting RPM inputs (extra meta-data,
prep/build/etc. scripts, doc files, dependency info) from a config file
rather than the dedicated "package_info" file.  (The idea is that
developers will provide RPM-specific info in the "[bdist_rpm]" section of
setup.cfg, but of course it could also be supplied in the other config
files, on the command line, or in the setup script -- or any mix of the
above.)
Major changes:
  * added a boatload of options to 'user_options' and
    'initialize_options()': 'distribution_name', 'group', 'release', ...
  * added 'finalize_package_data()', which takes the place of
    '_get_package_data()' -- except it's called from 'finalize_options()',
    not 'run()', so we have everything figured out before we actually run
    the command
  * added 'ensure_string()', 'ensure_string_list()', 'ensure_filename()';
    these take the place of '_check_string()' and friends.  (These actually
    look like really useful type-checking methods that could come in handy
    all over the Distutils; should consider moving them up to Command and
    using them in other command classes' 'finalize_options()' method for
    error-checking).
  * various cleanup, commentary, and adaptation to the new way of
    storing RPM info in '_make_spec_file()'
											
										 
											2000-06-02 01:49:58 +00:00
										 |  |  |         self.finalize_package_data() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-05-13 03:11:40 +00:00
										 |  |  |     # finalize_options() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
											  
											
												Fairly massive overhaul to support getting RPM inputs (extra meta-data,
prep/build/etc. scripts, doc files, dependency info) from a config file
rather than the dedicated "package_info" file.  (The idea is that
developers will provide RPM-specific info in the "[bdist_rpm]" section of
setup.cfg, but of course it could also be supplied in the other config
files, on the command line, or in the setup script -- or any mix of the
above.)
Major changes:
  * added a boatload of options to 'user_options' and
    'initialize_options()': 'distribution_name', 'group', 'release', ...
  * added 'finalize_package_data()', which takes the place of
    '_get_package_data()' -- except it's called from 'finalize_options()',
    not 'run()', so we have everything figured out before we actually run
    the command
  * added 'ensure_string()', 'ensure_string_list()', 'ensure_filename()';
    these take the place of '_check_string()' and friends.  (These actually
    look like really useful type-checking methods that could come in handy
    all over the Distutils; should consider moving them up to Command and
    using them in other command classes' 'finalize_options()' method for
    error-checking).
  * various cleanup, commentary, and adaptation to the new way of
    storing RPM info in '_make_spec_file()'
											
										 
											2000-06-02 01:49:58 +00:00
										 |  |  |     def finalize_package_data (self): | 
					
						
							|  |  |  |         self.ensure_string('group', "Development/Libraries") | 
					
						
							|  |  |  |         self.ensure_string('vendor', | 
					
						
							|  |  |  |                            "%s <%s>" % (self.distribution.get_contact(), | 
					
						
							|  |  |  |                                         self.distribution.get_contact_email())) | 
					
						
							|  |  |  |         self.ensure_string('packager', self.vendor) # or nothing? | 
					
						
							|  |  |  |         self.ensure_string_list('doc_files') | 
					
						
							|  |  |  |         if type(self.doc_files) is ListType: | 
					
						
							|  |  |  |             for readme in ('README', 'README.txt'): | 
					
						
							|  |  |  |                 if os.path.exists(readme) and readme not in self.doc_files: | 
					
						
							|  |  |  |                     self.doc.append(readme) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         self.ensure_string('release', "1")   # should it be an int? | 
					
						
							|  |  |  |         self.ensure_string('serial')   # should it be an int? | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         self.ensure_string('icon') | 
					
						
							|  |  |  |         self.ensure_string('distribution_name') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         self.ensure_string('prep_cmd', "%setup") # string or filename? | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if self.use_rpm_opt_flags: | 
					
						
							|  |  |  |             def_build = 'env CFLAGS="$RPM_OPT_FLAGS" python setup.py build' | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             def_build = 'python setup.py build' | 
					
						
							|  |  |  |         self.ensure_string('build_cmd', def_build) | 
					
						
							|  |  |  |         self.ensure_string('install_cmd', | 
					
						
							|  |  |  |                            "python setup.py install --root=$RPM_BUILD_ROOT " | 
					
						
							|  |  |  |                            "--record=INSTALLED_FILES") | 
					
						
							|  |  |  |         self.ensure_string('clean_cmd', | 
					
						
							|  |  |  |                            "rm -rf $RPM_BUILD_ROOT") | 
					
						
							|  |  |  |         self.ensure_filename('pre_install') | 
					
						
							|  |  |  |         self.ensure_filename('post_install') | 
					
						
							|  |  |  |         self.ensure_filename('pre_uninstall') | 
					
						
							|  |  |  |         self.ensure_filename('post_uninstall') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # XXX don't forget we punted on summaries and descriptions -- they | 
					
						
							|  |  |  |         # should be handled here eventually! | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Now *this* is some meta-data that belongs in the setup script... | 
					
						
							|  |  |  |         self.ensure_string_list('provides') | 
					
						
							|  |  |  |         self.ensure_string_list('requires') | 
					
						
							|  |  |  |         self.ensure_string_list('conflicts') | 
					
						
							|  |  |  |         self.ensure_string_list('build_requires') | 
					
						
							|  |  |  |         self.ensure_string_list('obsoletes') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # finalize_package_data () | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # XXX these look awfully handy: should probably move them | 
					
						
							|  |  |  |     # up to Command and use more widely. | 
					
						
							|  |  |  |     def _ensure_stringlike (self, option, what, default=None): | 
					
						
							|  |  |  |         val = getattr(self, option) | 
					
						
							|  |  |  |         if val is None: | 
					
						
							|  |  |  |             setattr(self, option, default) | 
					
						
							|  |  |  |             return default | 
					
						
							|  |  |  |         elif type(val) is not StringType: | 
					
						
							|  |  |  |             raise DistutilsOptionError, \ | 
					
						
							|  |  |  |                   "'%s' must be a %s (got `%s`)" % (option, what, val) | 
					
						
							|  |  |  |         return val | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def ensure_string (self, option, default=None): | 
					
						
							|  |  |  |         self._ensure_stringlike(option, "string", default) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def ensure_string_list (self, option): | 
					
						
							|  |  |  |         val = getattr(self, option) | 
					
						
							|  |  |  |         if val is None: | 
					
						
							|  |  |  |             return | 
					
						
							|  |  |  |         elif type(val) is StringType: | 
					
						
							|  |  |  |             setattr(self, option, re.split(r',\s*|\s+', val)) | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             if type(val) is ListType: | 
					
						
							|  |  |  |                 types = map(type, val) | 
					
						
							|  |  |  |                 ok = (types == [StringType] * len(val)) | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 ok = 0 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if not ok: | 
					
						
							|  |  |  |                 raise DistutilsOptionError, \ | 
					
						
							|  |  |  |                       "'%s' must be a list of strings (got %s)" % \ | 
					
						
							|  |  |  |                       (option, `val`) | 
					
						
							|  |  |  |          | 
					
						
							|  |  |  |     def ensure_filename (self, option, default=None): | 
					
						
							|  |  |  |         val = self._ensure_stringlike(option, "filename", None) | 
					
						
							|  |  |  |         if val is not None and not os.path.exists(val): | 
					
						
							|  |  |  |             raise DistutilsOptionError, \ | 
					
						
							|  |  |  |                   "error in '%s' option: file '%s' does not exist" % \ | 
					
						
							|  |  |  |                   (option, val) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-05-13 03:11:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def run (self): | 
					
						
							| 
									
										
											  
											
												Fairly massive overhaul to support getting RPM inputs (extra meta-data,
prep/build/etc. scripts, doc files, dependency info) from a config file
rather than the dedicated "package_info" file.  (The idea is that
developers will provide RPM-specific info in the "[bdist_rpm]" section of
setup.cfg, but of course it could also be supplied in the other config
files, on the command line, or in the setup script -- or any mix of the
above.)
Major changes:
  * added a boatload of options to 'user_options' and
    'initialize_options()': 'distribution_name', 'group', 'release', ...
  * added 'finalize_package_data()', which takes the place of
    '_get_package_data()' -- except it's called from 'finalize_options()',
    not 'run()', so we have everything figured out before we actually run
    the command
  * added 'ensure_string()', 'ensure_string_list()', 'ensure_filename()';
    these take the place of '_check_string()' and friends.  (These actually
    look like really useful type-checking methods that could come in handy
    all over the Distutils; should consider moving them up to Command and
    using them in other command classes' 'finalize_options()' method for
    error-checking).
  * various cleanup, commentary, and adaptation to the new way of
    storing RPM info in '_make_spec_file()'
											
										 
											2000-06-02 01:49:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-06-02 02:01:51 +00:00
										 |  |  |         if DEBUG: | 
					
						
							|  |  |  |             print "before _get_package_data():" | 
					
						
							|  |  |  |             print "vendor =", self.vendor | 
					
						
							|  |  |  |             print "packager =", self.packager | 
					
						
							|  |  |  |             print "doc_files =", self.doc_files | 
					
						
							|  |  |  |             print "changelog =", self.changelog | 
					
						
							| 
									
										
										
										
											2000-05-13 03:11:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         # make directories | 
					
						
							|  |  |  |         if self.spec_only: | 
					
						
							| 
									
										
										
										
											2000-06-01 00:40:25 +00:00
										 |  |  |             spec_dir = "dist" | 
					
						
							|  |  |  |             self.mkpath(spec_dir)       # XXX should be configurable | 
					
						
							| 
									
										
										
										
											2000-05-13 03:11:40 +00:00
										 |  |  |         else: | 
					
						
							| 
									
										
										
										
											2000-06-01 00:40:25 +00:00
										 |  |  |             rpm_base = os.path.join(self.bdist_base, "rpm") | 
					
						
							|  |  |  |             rpm_dir = {} | 
					
						
							| 
									
										
										
										
											2000-05-27 17:27:23 +00:00
										 |  |  |             for d in ('SOURCES', 'SPECS', 'BUILD', 'RPMS', 'SRPMS'): | 
					
						
							| 
									
										
										
										
											2000-06-01 00:40:25 +00:00
										 |  |  |                 rpm_dir[d] = os.path.join(rpm_base, d) | 
					
						
							|  |  |  |                 self.mkpath(rpm_dir[d]) | 
					
						
							|  |  |  |             spec_dir = rpm_dir['SPECS'] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Spec file goes into 'dist' directory if '--spec-only specified', | 
					
						
							|  |  |  |         # into build/rpm.<plat> otherwise. | 
					
						
							|  |  |  |         spec_path = os.path.join(spec_dir, | 
					
						
							|  |  |  |                                  "%s.spec" % self.distribution.get_name()) | 
					
						
							| 
									
										
										
										
											2000-05-13 03:11:40 +00:00
										 |  |  |         self.execute(write_file, | 
					
						
							|  |  |  |                      (spec_path, | 
					
						
							|  |  |  |                       self._make_spec_file()), | 
					
						
							| 
									
										
										
										
											2000-06-01 00:40:25 +00:00
										 |  |  |                      "writing '%s'" % spec_path) | 
					
						
							| 
									
										
										
										
											2000-05-13 03:11:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if self.spec_only: # stop if requested | 
					
						
							|  |  |  |             return | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-06-01 00:40:25 +00:00
										 |  |  |         # Make a source distribution and copy to SOURCES directory with | 
					
						
							|  |  |  |         # optional icon. | 
					
						
							|  |  |  |         sdist = self.reinitialize_command ('sdist') | 
					
						
							| 
									
										
										
										
											2000-05-13 03:11:40 +00:00
										 |  |  |         if self.use_bzip2: | 
					
						
							|  |  |  |             sdist.formats = ['bztar'] | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             sdist.formats = ['gztar'] | 
					
						
							| 
									
										
										
										
											2000-05-27 17:27:23 +00:00
										 |  |  |         self.run_command('sdist') | 
					
						
							| 
									
										
										
										
											2000-06-01 00:40:25 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         source = sdist.get_archive_files()[0] | 
					
						
							|  |  |  |         source_dir = rpm_dir['SOURCES'] | 
					
						
							|  |  |  |         self.copy_file(source, source_dir) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-05-13 03:11:40 +00:00
										 |  |  |         if self.icon: | 
					
						
							| 
									
										
										
										
											2000-05-27 17:27:23 +00:00
										 |  |  |             if os.path.exists(self.icon): | 
					
						
							| 
									
										
										
										
											2000-06-01 00:40:25 +00:00
										 |  |  |                 self.copy_file(self.icon, source_dir) | 
					
						
							| 
									
										
										
										
											2000-05-13 03:11:40 +00:00
										 |  |  |             else: | 
					
						
							|  |  |  |                 raise DistutilsFileError, \ | 
					
						
							| 
									
										
										
										
											2000-06-01 00:40:25 +00:00
										 |  |  |                       "icon file '%s' does not exist" % self.icon | 
					
						
							| 
									
										
										
										
											2000-05-13 03:11:40 +00:00
										 |  |  |          | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # build package | 
					
						
							|  |  |  |         self.announce('Building RPMs') | 
					
						
							|  |  |  |         rpm_args = ['rpm',] | 
					
						
							|  |  |  |         if self.source_only: # what kind of RPMs? | 
					
						
							|  |  |  |             rpm_args.append('-bs') | 
					
						
							|  |  |  |         elif self.binary_only: | 
					
						
							|  |  |  |             rpm_args.append('-bb') | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             rpm_args.append('-ba') | 
					
						
							|  |  |  |         topdir = os.getcwd() + 'build/rpm' | 
					
						
							|  |  |  |         rpm_args.extend(['--define', | 
					
						
							|  |  |  |                          '_topdir ' + os.getcwd() + '/build/rpm',]) | 
					
						
							| 
									
										
										
										
											2000-05-31 23:56:45 +00:00
										 |  |  |         if self.clean: | 
					
						
							| 
									
										
										
										
											2000-05-13 03:11:40 +00:00
										 |  |  |             rpm_args.append('--clean') | 
					
						
							|  |  |  |         rpm_args.append(spec_path) | 
					
						
							|  |  |  |         self.spawn(rpm_args) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # run() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def _make_spec_file(self): | 
					
						
							| 
									
										
											  
											
												Fairly massive overhaul to support getting RPM inputs (extra meta-data,
prep/build/etc. scripts, doc files, dependency info) from a config file
rather than the dedicated "package_info" file.  (The idea is that
developers will provide RPM-specific info in the "[bdist_rpm]" section of
setup.cfg, but of course it could also be supplied in the other config
files, on the command line, or in the setup script -- or any mix of the
above.)
Major changes:
  * added a boatload of options to 'user_options' and
    'initialize_options()': 'distribution_name', 'group', 'release', ...
  * added 'finalize_package_data()', which takes the place of
    '_get_package_data()' -- except it's called from 'finalize_options()',
    not 'run()', so we have everything figured out before we actually run
    the command
  * added 'ensure_string()', 'ensure_string_list()', 'ensure_filename()';
    these take the place of '_check_string()' and friends.  (These actually
    look like really useful type-checking methods that could come in handy
    all over the Distutils; should consider moving them up to Command and
    using them in other command classes' 'finalize_options()' method for
    error-checking).
  * various cleanup, commentary, and adaptation to the new way of
    storing RPM info in '_make_spec_file()'
											
										 
											2000-06-02 01:49:58 +00:00
										 |  |  |         """Generate the text of an RPM spec file and return it as a
 | 
					
						
							|  |  |  |         list of strings (one per line). | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         # definitions and headers | 
					
						
							| 
									
										
										
										
											2000-05-13 03:11:40 +00:00
										 |  |  |         spec_file = [ | 
					
						
							|  |  |  |             '%define name ' + self.distribution.get_name(), | 
					
						
							|  |  |  |             '%define version ' + self.distribution.get_version(), | 
					
						
							|  |  |  |             '%define release ' + self.release, | 
					
						
							|  |  |  |             '', | 
					
						
							|  |  |  |             'Summary: ' + self.distribution.get_description(), | 
					
						
							|  |  |  |             ] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # put locale summaries into spec file | 
					
						
							| 
									
										
											  
											
												Fairly massive overhaul to support getting RPM inputs (extra meta-data,
prep/build/etc. scripts, doc files, dependency info) from a config file
rather than the dedicated "package_info" file.  (The idea is that
developers will provide RPM-specific info in the "[bdist_rpm]" section of
setup.cfg, but of course it could also be supplied in the other config
files, on the command line, or in the setup script -- or any mix of the
above.)
Major changes:
  * added a boatload of options to 'user_options' and
    'initialize_options()': 'distribution_name', 'group', 'release', ...
  * added 'finalize_package_data()', which takes the place of
    '_get_package_data()' -- except it's called from 'finalize_options()',
    not 'run()', so we have everything figured out before we actually run
    the command
  * added 'ensure_string()', 'ensure_string_list()', 'ensure_filename()';
    these take the place of '_check_string()' and friends.  (These actually
    look like really useful type-checking methods that could come in handy
    all over the Distutils; should consider moving them up to Command and
    using them in other command classes' 'finalize_options()' method for
    error-checking).
  * various cleanup, commentary, and adaptation to the new way of
    storing RPM info in '_make_spec_file()'
											
										 
											2000-06-02 01:49:58 +00:00
										 |  |  |         # XXX not supported for now (hard to put a dictionary | 
					
						
							|  |  |  |         # in a config file -- arg!) | 
					
						
							|  |  |  |         #for locale in self.summaries.keys(): | 
					
						
							|  |  |  |         #    spec_file.append('Summary(%s): %s' % (locale, | 
					
						
							|  |  |  |         #                                          self.summaries[locale])) | 
					
						
							| 
									
										
										
										
											2000-05-13 03:11:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         spec_file.extend([ | 
					
						
							|  |  |  |             'Name: %{name}', | 
					
						
							|  |  |  |             'Version: %{version}', | 
					
						
							|  |  |  |             'Release: %{release}',]) | 
					
						
							| 
									
										
											  
											
												Fairly massive overhaul to support getting RPM inputs (extra meta-data,
prep/build/etc. scripts, doc files, dependency info) from a config file
rather than the dedicated "package_info" file.  (The idea is that
developers will provide RPM-specific info in the "[bdist_rpm]" section of
setup.cfg, but of course it could also be supplied in the other config
files, on the command line, or in the setup script -- or any mix of the
above.)
Major changes:
  * added a boatload of options to 'user_options' and
    'initialize_options()': 'distribution_name', 'group', 'release', ...
  * added 'finalize_package_data()', which takes the place of
    '_get_package_data()' -- except it's called from 'finalize_options()',
    not 'run()', so we have everything figured out before we actually run
    the command
  * added 'ensure_string()', 'ensure_string_list()', 'ensure_filename()';
    these take the place of '_check_string()' and friends.  (These actually
    look like really useful type-checking methods that could come in handy
    all over the Distutils; should consider moving them up to Command and
    using them in other command classes' 'finalize_options()' method for
    error-checking).
  * various cleanup, commentary, and adaptation to the new way of
    storing RPM info in '_make_spec_file()'
											
										 
											2000-06-02 01:49:58 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         # XXX yuck! this filename is available from the "sdist" command, | 
					
						
							|  |  |  |         # but only after it has run: and we create the spec file before | 
					
						
							|  |  |  |         # running "sdist", in case of --spec-only. | 
					
						
							| 
									
										
										
										
											2000-05-13 03:11:40 +00:00
										 |  |  |         if self.use_bzip2: | 
					
						
							|  |  |  |             spec_file.append('Source0: %{name}-%{version}.tar.bz2') | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             spec_file.append('Source0: %{name}-%{version}.tar.gz') | 
					
						
							| 
									
										
											  
											
												Fairly massive overhaul to support getting RPM inputs (extra meta-data,
prep/build/etc. scripts, doc files, dependency info) from a config file
rather than the dedicated "package_info" file.  (The idea is that
developers will provide RPM-specific info in the "[bdist_rpm]" section of
setup.cfg, but of course it could also be supplied in the other config
files, on the command line, or in the setup script -- or any mix of the
above.)
Major changes:
  * added a boatload of options to 'user_options' and
    'initialize_options()': 'distribution_name', 'group', 'release', ...
  * added 'finalize_package_data()', which takes the place of
    '_get_package_data()' -- except it's called from 'finalize_options()',
    not 'run()', so we have everything figured out before we actually run
    the command
  * added 'ensure_string()', 'ensure_string_list()', 'ensure_filename()';
    these take the place of '_check_string()' and friends.  (These actually
    look like really useful type-checking methods that could come in handy
    all over the Distutils; should consider moving them up to Command and
    using them in other command classes' 'finalize_options()' method for
    error-checking).
  * various cleanup, commentary, and adaptation to the new way of
    storing RPM info in '_make_spec_file()'
											
										 
											2000-06-02 01:49:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-05-13 03:11:40 +00:00
										 |  |  |         spec_file.extend([ | 
					
						
							|  |  |  |             'Copyright: ' + self.distribution.get_licence(), | 
					
						
							|  |  |  |             'Group: ' + self.group, | 
					
						
							|  |  |  |             'BuildRoot: %{_tmppath}/%{name}-buildroot', | 
					
						
							|  |  |  |             'Prefix: %{_prefix}', ]) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # noarch if no extension modules | 
					
						
							|  |  |  |         if not self.distribution.has_ext_modules(): | 
					
						
							|  |  |  |             spec_file.append('BuildArchitectures: noarch') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         for field in ('Vendor', | 
					
						
							|  |  |  |                       'Packager', | 
					
						
							|  |  |  |                       'Provides', | 
					
						
							|  |  |  |                       'Requires', | 
					
						
							|  |  |  |                       'Conflicts', | 
					
						
							|  |  |  |                       'Obsoletes', | 
					
						
							|  |  |  |                       ): | 
					
						
							| 
									
										
											  
											
												Fairly massive overhaul to support getting RPM inputs (extra meta-data,
prep/build/etc. scripts, doc files, dependency info) from a config file
rather than the dedicated "package_info" file.  (The idea is that
developers will provide RPM-specific info in the "[bdist_rpm]" section of
setup.cfg, but of course it could also be supplied in the other config
files, on the command line, or in the setup script -- or any mix of the
above.)
Major changes:
  * added a boatload of options to 'user_options' and
    'initialize_options()': 'distribution_name', 'group', 'release', ...
  * added 'finalize_package_data()', which takes the place of
    '_get_package_data()' -- except it's called from 'finalize_options()',
    not 'run()', so we have everything figured out before we actually run
    the command
  * added 'ensure_string()', 'ensure_string_list()', 'ensure_filename()';
    these take the place of '_check_string()' and friends.  (These actually
    look like really useful type-checking methods that could come in handy
    all over the Distutils; should consider moving them up to Command and
    using them in other command classes' 'finalize_options()' method for
    error-checking).
  * various cleanup, commentary, and adaptation to the new way of
    storing RPM info in '_make_spec_file()'
											
										 
											2000-06-02 01:49:58 +00:00
										 |  |  |             val = getattr(self, string.lower(field)) | 
					
						
							|  |  |  |             if type(val) is ListType: | 
					
						
							|  |  |  |                 spec_file.append('%s: %s' % (field, string.join(val))) | 
					
						
							|  |  |  |             elif val is not None: | 
					
						
							|  |  |  |                 spec_file.append('%s: %s' % (field, val)) | 
					
						
							|  |  |  |                  | 
					
						
							| 
									
										
										
										
											2000-05-13 03:11:40 +00:00
										 |  |  |                        | 
					
						
							|  |  |  |         if self.distribution.get_url() != 'UNKNOWN': | 
					
						
							|  |  |  |             spec_file.append('Url: ' + self.distribution.get_url()) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if self.distribution_name: | 
					
						
							|  |  |  |              spec_file.append('Distribution: ' + self.distribution_name) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if self.build_requires: | 
					
						
							| 
									
										
											  
											
												Fairly massive overhaul to support getting RPM inputs (extra meta-data,
prep/build/etc. scripts, doc files, dependency info) from a config file
rather than the dedicated "package_info" file.  (The idea is that
developers will provide RPM-specific info in the "[bdist_rpm]" section of
setup.cfg, but of course it could also be supplied in the other config
files, on the command line, or in the setup script -- or any mix of the
above.)
Major changes:
  * added a boatload of options to 'user_options' and
    'initialize_options()': 'distribution_name', 'group', 'release', ...
  * added 'finalize_package_data()', which takes the place of
    '_get_package_data()' -- except it's called from 'finalize_options()',
    not 'run()', so we have everything figured out before we actually run
    the command
  * added 'ensure_string()', 'ensure_string_list()', 'ensure_filename()';
    these take the place of '_check_string()' and friends.  (These actually
    look like really useful type-checking methods that could come in handy
    all over the Distutils; should consider moving them up to Command and
    using them in other command classes' 'finalize_options()' method for
    error-checking).
  * various cleanup, commentary, and adaptation to the new way of
    storing RPM info in '_make_spec_file()'
											
										 
											2000-06-02 01:49:58 +00:00
										 |  |  |              spec_file.append('BuildRequires: ' + | 
					
						
							|  |  |  |                               string.join(self.build_requires)) | 
					
						
							| 
									
										
										
										
											2000-05-13 03:11:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if self.icon: | 
					
						
							| 
									
										
										
										
											2000-05-27 17:27:23 +00:00
										 |  |  |             spec_file.append('Icon: ' + os.path.basename(self.icon)) | 
					
						
							| 
									
										
										
										
											2000-05-13 03:11:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         spec_file.extend([ | 
					
						
							|  |  |  |             '', | 
					
						
							|  |  |  |             '%description', | 
					
						
							|  |  |  |             self.distribution.get_long_description() | 
					
						
							|  |  |  |             ]) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # put locale descriptions into spec file | 
					
						
							| 
									
										
											  
											
												Fairly massive overhaul to support getting RPM inputs (extra meta-data,
prep/build/etc. scripts, doc files, dependency info) from a config file
rather than the dedicated "package_info" file.  (The idea is that
developers will provide RPM-specific info in the "[bdist_rpm]" section of
setup.cfg, but of course it could also be supplied in the other config
files, on the command line, or in the setup script -- or any mix of the
above.)
Major changes:
  * added a boatload of options to 'user_options' and
    'initialize_options()': 'distribution_name', 'group', 'release', ...
  * added 'finalize_package_data()', which takes the place of
    '_get_package_data()' -- except it's called from 'finalize_options()',
    not 'run()', so we have everything figured out before we actually run
    the command
  * added 'ensure_string()', 'ensure_string_list()', 'ensure_filename()';
    these take the place of '_check_string()' and friends.  (These actually
    look like really useful type-checking methods that could come in handy
    all over the Distutils; should consider moving them up to Command and
    using them in other command classes' 'finalize_options()' method for
    error-checking).
  * various cleanup, commentary, and adaptation to the new way of
    storing RPM info in '_make_spec_file()'
											
										 
											2000-06-02 01:49:58 +00:00
										 |  |  |         # XXX again, suppressed because config file syntax doesn't | 
					
						
							|  |  |  |         # easily support this ;-( | 
					
						
							|  |  |  |         #for locale in self.descriptions.keys(): | 
					
						
							|  |  |  |         #    spec_file.extend([ | 
					
						
							|  |  |  |         #        '', | 
					
						
							|  |  |  |         #        '%description -l ' + locale, | 
					
						
							|  |  |  |         #        self.descriptions[locale], | 
					
						
							|  |  |  |         #        ]) | 
					
						
							| 
									
										
										
										
											2000-05-13 03:11:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         # rpm scripts | 
					
						
							| 
									
										
											  
											
												Fairly massive overhaul to support getting RPM inputs (extra meta-data,
prep/build/etc. scripts, doc files, dependency info) from a config file
rather than the dedicated "package_info" file.  (The idea is that
developers will provide RPM-specific info in the "[bdist_rpm]" section of
setup.cfg, but of course it could also be supplied in the other config
files, on the command line, or in the setup script -- or any mix of the
above.)
Major changes:
  * added a boatload of options to 'user_options' and
    'initialize_options()': 'distribution_name', 'group', 'release', ...
  * added 'finalize_package_data()', which takes the place of
    '_get_package_data()' -- except it's called from 'finalize_options()',
    not 'run()', so we have everything figured out before we actually run
    the command
  * added 'ensure_string()', 'ensure_string_list()', 'ensure_filename()';
    these take the place of '_check_string()' and friends.  (These actually
    look like really useful type-checking methods that could come in handy
    all over the Distutils; should consider moving them up to Command and
    using them in other command classes' 'finalize_options()' method for
    error-checking).
  * various cleanup, commentary, and adaptation to the new way of
    storing RPM info in '_make_spec_file()'
											
										 
											2000-06-02 01:49:58 +00:00
										 |  |  |         for (rpm_opt, attr) in (('prep', 'prep_cmd'), | 
					
						
							|  |  |  |                                 ('build', 'build_cmd'), | 
					
						
							|  |  |  |                                 ('install', 'install_cmd'), | 
					
						
							|  |  |  |                                 ('clean', 'clean_cmd'), | 
					
						
							|  |  |  |                                 ('pre', 'pre_install'), | 
					
						
							|  |  |  |                                 ('post', 'post_install'), | 
					
						
							|  |  |  |                                 ('preun', 'pre_uninstall'), | 
					
						
							|  |  |  |                                 ('postun', 'post_uninstall')): | 
					
						
							|  |  |  |             # XXX oops, this doesn't distinguish between "raw code" | 
					
						
							|  |  |  |             # options and "script filename" options -- well, we probably | 
					
						
							|  |  |  |             # should settle on one or the other, and not make the | 
					
						
							|  |  |  |             # distinction! | 
					
						
							|  |  |  |             val = getattr(self, attr) | 
					
						
							|  |  |  |             if val: | 
					
						
							| 
									
										
										
										
											2000-05-13 03:11:40 +00:00
										 |  |  |                 spec_file.extend([ | 
					
						
							|  |  |  |                     '', | 
					
						
							| 
									
										
											  
											
												Fairly massive overhaul to support getting RPM inputs (extra meta-data,
prep/build/etc. scripts, doc files, dependency info) from a config file
rather than the dedicated "package_info" file.  (The idea is that
developers will provide RPM-specific info in the "[bdist_rpm]" section of
setup.cfg, but of course it could also be supplied in the other config
files, on the command line, or in the setup script -- or any mix of the
above.)
Major changes:
  * added a boatload of options to 'user_options' and
    'initialize_options()': 'distribution_name', 'group', 'release', ...
  * added 'finalize_package_data()', which takes the place of
    '_get_package_data()' -- except it's called from 'finalize_options()',
    not 'run()', so we have everything figured out before we actually run
    the command
  * added 'ensure_string()', 'ensure_string_list()', 'ensure_filename()';
    these take the place of '_check_string()' and friends.  (These actually
    look like really useful type-checking methods that could come in handy
    all over the Distutils; should consider moving them up to Command and
    using them in other command classes' 'finalize_options()' method for
    error-checking).
  * various cleanup, commentary, and adaptation to the new way of
    storing RPM info in '_make_spec_file()'
											
										 
											2000-06-02 01:49:58 +00:00
										 |  |  |                     '%' + rpm_opt, | 
					
						
							|  |  |  |                     val | 
					
						
							| 
									
										
										
										
											2000-05-13 03:11:40 +00:00
										 |  |  |                     ]) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |          | 
					
						
							|  |  |  |         # files section | 
					
						
							|  |  |  |         spec_file.extend([ | 
					
						
							|  |  |  |             '', | 
					
						
							|  |  |  |             '%files -f INSTALLED_FILES', | 
					
						
							|  |  |  |             '%defattr(-,root,root)', | 
					
						
							|  |  |  |             ]) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
											  
											
												Fairly massive overhaul to support getting RPM inputs (extra meta-data,
prep/build/etc. scripts, doc files, dependency info) from a config file
rather than the dedicated "package_info" file.  (The idea is that
developers will provide RPM-specific info in the "[bdist_rpm]" section of
setup.cfg, but of course it could also be supplied in the other config
files, on the command line, or in the setup script -- or any mix of the
above.)
Major changes:
  * added a boatload of options to 'user_options' and
    'initialize_options()': 'distribution_name', 'group', 'release', ...
  * added 'finalize_package_data()', which takes the place of
    '_get_package_data()' -- except it's called from 'finalize_options()',
    not 'run()', so we have everything figured out before we actually run
    the command
  * added 'ensure_string()', 'ensure_string_list()', 'ensure_filename()';
    these take the place of '_check_string()' and friends.  (These actually
    look like really useful type-checking methods that could come in handy
    all over the Distutils; should consider moving them up to Command and
    using them in other command classes' 'finalize_options()' method for
    error-checking).
  * various cleanup, commentary, and adaptation to the new way of
    storing RPM info in '_make_spec_file()'
											
										 
											2000-06-02 01:49:58 +00:00
										 |  |  |         if self.doc_files: | 
					
						
							|  |  |  |             spec_file.append('%doc ' + string.join(self.doc_files)) | 
					
						
							| 
									
										
										
										
											2000-05-13 03:11:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if self.changelog: | 
					
						
							|  |  |  |             spec_file.extend([ | 
					
						
							|  |  |  |                 '', | 
					
						
							|  |  |  |                 '%changelog', | 
					
						
							|  |  |  |                 self.changelog | 
					
						
							|  |  |  |                 ]) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return spec_file | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-06-02 01:52:04 +00:00
										 |  |  |     # _make_spec_file () | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # class bdist_rpm |