aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/command/bdist_rpm.py
Commit message (Collapse)AuthorAgeFilesLines
* Fixed PEP 8 compliancy of the setuptools.command packageAlex Grönholm2014-06-181-1/+2
|
* Correct indentation and clarify meaning by using namespacingJason R. Coombs2014-04-301-4/+4
| | | | | --HG-- extra : amend_source : 20ab7547c8478eb084767fe701e627bdd462ba16
* Replace outdated deprecating comments with a proper doc string.Jason R. Coombs2014-03-301-4/+9
|
* The no_egg option is no longer present.Jason R. Coombs2014-03-301-4/+0
|
* Adjust to match modern style conventions.Jason R. Coombs2014-03-301-5/+9
|
* Remove legacy compatibility in bdist_rpmJason R. Coombs2014-03-301-15/+1
| | | | | --HG-- extra : amend_source : 829ebde0696d12adfb54aca74ea6b1b510177ff4
* Remove excess whitespace; Normalize imports.Jason R. Coombs2014-03-301-34/+3
| | | | | --HG-- extra : amend_source : 62f689b409b4645eda5f81b2604c50a84713ee52
* Fix missing backport of import fix for bdist_rpm building non-sourcePJ Eby2007-01-091-1/+1
| | | | | | | | rpms. --HG-- branch : setuptools-0.6 extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/branches/setuptools-0.6%4053325
* Bump version to 0.6c5, and backport bdist_rpm and cygwin dll fixesPJ Eby2007-01-091-1/+1
| | | | | | --HG-- branch : setuptools-0.6 extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/branches/setuptools-0.6%4053317
* Fix import problem for bdist_rpm w/Python<2.5PJ Eby2006-12-291-1/+1
| | | | | | --HG-- branch : setuptools-0.6 extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/branches/setuptools-0.6%4053182
* Fix ``upload`` not uploading files built by ``bdist_rpm`` on Python 2.3 andPJ Eby2006-09-211-12/+26
| | | | | | | | 2.4. (Backport from trunk) --HG-- branch : setuptools-0.6 extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/branches/setuptools-0.6%4051961
* Added a ``--single-version-externally-managed`` option to the ``install``PJ Eby2005-12-141-18/+4
| | | | | | | | | | | | | | | command so that you can more easily wrap a "flat" egg in a system package. Enhanced ``bdist_rpm`` so that it installs single-version eggs that don't rely on a ``.pth`` file. The ``--no-egg`` option has been removed, since all RPMs are now built in a more backwards-compatible format. Some work is now needed for easy_install to recognize bdist_wininst .exe's that wrap these new flat eggs, as currently the .egg-info will not be recognized. --HG-- branch : setuptools extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041673
* Kludges to make building packages with '-' in their version work withPJ Eby2005-11-191-0/+49
| | | | | | | | | | bdist_rpm. This still doesn't address the issue of building RPMs that don't effectively install as multi-version eggs, but at least now building RPMs for development eggs is possible. --HG-- branch : setuptools extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041482
* Added support for old-style RPMs (i.e. non-egg RPMs)PJ Eby2005-09-031-1/+23
| | | | | | --HG-- branch : setuptools extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041238
* Fix problem w/bdist_rpm and setuptools, reported by Walter Doerwald. IPJ Eby2005-08-211-0/+11
was trying to have setuptools fix distutils' broken filename handling that assumes people haven't put punctuation in their distribution names, including '-' (which prevents unambiguous parsing of distribution names). However, bdist_rpm's attempt to guess a source distribution's filename isn't compatible with this fix, without making other changes. I decided therefore to drop the fixes for the sake of backward compatibility, but monkeypatch bdist_rpm so that it runs "egg_info" first, to ensure that any --tag-svn-revision or other tagging options take effect. --HG-- branch : setuptools extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041215