summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* | Merge "Add more documentation"Jenkins2013-07-223-124/+188
|\ \ | |/
| * Add more documentationMonty Taylor2013-07-213-124/+188
| | | | | | | | | | | | | | | | Moved a good portion of README into the sphinx docs. Also started fleshing out descriptions of how to use things. Also, fix the sphinx config. Change-Id: If53dcdaea0a48ef613e3097ab55d34f056160188
* | Merge "We force installs via pip, we should declare it"Jenkins2013-07-221-0/+1
|\ \
| * | We force installs via pip, we should declare itMonty Taylor2013-07-211-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | pbr contains code that very explicitly uses pip, which means that pip is a requirement. Note to packagers: it is possible to skip uses of pip, meaning that you can totally use pbr-based things without needing to have them pip install things. Change-Id: Ifa472f344489295a5b8a1910bff2672087653547
* | | Merge "Ignore project creator while generating AUTHORS"Jenkins2013-07-221-2/+2
|\ \ \
| * | | Ignore project creator while generating AUTHORSSergey Lukjanov2013-07-181-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | New projects created by OpenStack Project Creator <openstack-infra@lists.openstack.org>, so it'll be better to remove it from the AUTHORS file. Change-Id: I32975bd430635a38c7e737e70f381f7b07c6ed0c
* | | | Merge "Do not assume the tests run as jenkins"Jenkins2013-07-221-2/+2
|\ \ \ \
| * | | | Do not assume the tests run as jenkinsDoug Hellmann2013-07-211-2/+2
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | Use $HOME instead of "/home/jenkins" in the generated configuration files to let the script be run as a user other than jenkins. Change-Id: I9413591bb4a7d821382eae6dc3edd1df0c41a5e6
* | | | Merge "Replace entry_points console_scripts"Jenkins2013-07-227-1/+157
|\ \ \ \ | | |/ / | |/| |
| * | | Replace entry_points console_scriptsMonty Taylor2013-07-217-1/+157
| | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | The console scripts generated by entry_points are too complex for our needs and make things run slowly in service of a multi-version install that we don't use. Instead, install a simple script which just does a direct import. Change-Id: I1ec46837cea07db514f2fb6338c7bced34a83c4a
* | | Merge "Remove the need to specify the pbr hook"Jenkins2013-07-223-4/+8
|\ \ \ | |/ /
| * | Remove the need to specify the pbr hookMonty Taylor2013-07-213-4/+8
| | | | | | | | | | | | | | | | | | | | | | | | If you're running pbr codepaths, you want the hook. There is no need to say "pbr=True" in setup.py and then to list the hook in setup.cfg now that d2to1 is in the tree. Change-Id: Ie33d3e08d5a4133f5caf2613859919ce4f02c4a0
* | | Merge "Move d2to1 more into the source tree"Jenkins2013-07-2226-117/+92
|\ \ \ | |/ /
| * | Move d2to1 more into the source treeMonty Taylor2013-07-2126-117/+92
| | | | | | | | | | | | | | | | | | | | | When we merged in d2to1, we kept it separate, but I don't think there is a great benefit to doing that. Change-Id: I3972b3132619e8e2dd7e362ca5fe9d1e3add43b8
* | | Merge "Fix python 3.3 tests"Jenkins2013-07-222-15/+1
|\ \ \
| * | | Fix python 3.3 testsDoug Hellmann2013-07-212-15/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We can go back to using the official release of testrepository for testing under python 3, so do. Make python 3.3 part of the default environment set for anyone running all of the tests. Change-Id: I0c56f9cde643ef8580ab305080bc62b87809bf7e
* | | | Merge "Set defaults directly in option processing"Jenkins2013-07-212-1/+4
|\ \ \ \ | |/ / / |/| / / | |/ /
| * | Set defaults directly in option processingMonty Taylor2013-07-212-1/+4
| |/ | | | | | | Change-Id: Iaa327862fc9e43aade2dd1ed66aa27f335f12ac7
* | Fix integer_types type under python 3Doug Hellmann2013-07-211-1/+1
| | | | | | | | | | | | | | | | Set the integer_types variable to the same kind of object under python 3 and 2 so that when we go to manipulate it later it works. Change-Id: I8f9db1d76931ef834645095952f71415d98f0b5c
* | Add libffi-devMonty Taylor2013-07-201-1/+1
|/ | | | Change-Id: I4dc822eba0e1597e9eec1ec057d37871d930eb84
* Merge "Add Python 3.3 checking"0.5.19Jenkins2013-07-162-0/+14
|\
| * Add Python 3.3 checkingJulien Danjou2013-07-152-0/+14
| | | | | | | | | | | | This adds support for a working py33 tox target. Change-Id: Icfe1ed7dd256568f33487d03ba9c9be9a454c84a
* | Merge feature/merged2to1 into masterMonty Taylor2013-07-1233-30/+1637
|\ \ | |/ |/| | | | | | | | | Upstream d2to1 has been rather unresponsive, and doing what we need in this case is really easier without the extra complexity. Change-Id: Ibd16944e76ad8398b57b6ddcbcd150cd462add3e
| * Fix some issues in setup.py testMonty Taylor2013-07-121-4/+6
| | | | | | | | | | | | | | | | | | | | | | | | While tracking down a troveclient issue, found several issues in the new python setup.py test command: * check the right source files when we're trying to decide whether to re-run egg_info * fix bogus dependency links args when installing test requires * fix bogus .egg_info dir name when a project name includes a hyphen Change-Id: I0a1964902a87f72eb67f43b10f90dfee8c7d7875
| * Merge "Put AUTHORS.in at the top of AUTHORS." into feature/merged2to1Jenkins2013-07-121-4/+4
| |\
| | * Put AUTHORS.in at the top of AUTHORS.Monty Taylor2013-07-111-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | swift has an AUTHORS file that puts a header at the top of the file with some extra information, then lists the contributors. If we put AUTHORS.in at the top of the generated file, then we can put their boilerplate into AUTHORS.in and the resulting file should look the same. Change-Id: I2caa4e606dd1199f49c925dccc64d492848ac580
| * | Merge "Support version override with PBR prefix." into feature/merged2to1Jenkins2013-07-121-1/+3
| |\ \
| | * | Support version override with PBR prefix.Monty Taylor2013-07-111-1/+3
| | |/ | | | | | | | | | | | | | | | | | | For non-OpenStack consumption of PBR, OSLO_PACKAGING_ is a weird version override env var. Change-Id: I8e80bcc5bc56e7950ed5cf0d24657957570134cf
| * | Allow pip installation to be skipped.Monty Taylor2013-07-111-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Distro packagers don't really need for us to attempt to pip install things for them. They're usually managing that dependency tree in the distro packaging. Add an env var they can set in their spec or rules files to skip any pretense of doing anything with install requirements. Change-Id: Ia6387eab3267fa3c4019c4a9d90e4780319c2397
| * | Don't run pip needlesslyMonty Taylor2013-07-111-7/+9
| |/ | | | | | | | | | | | | | | We can detect if the env we are a part of has our requirements met already. If this is the case, don't re-run pip at all, so that we don't waste time. Change-Id: If49cd7bd558f98d8e6f51b0fe0192978bee9c77e
| * Clean up hacking and path issues with d2to1Monty Taylor2013-07-1126-1253/+555
| | | | | | | | | | | | | | We imported in another code base. It takes a little bit of path adjusting to get things right. Change-Id: Ifb96652c822d5d243a6bedb77bc34e919be2d3a8
| * Merge d2to1 into the tree, complete with history.Monty Taylor2013-07-0627-0/+2311
| |\
| | * Add support for namespace packages.Monty Taylor2013-07-061-0/+2
| | | | | | | | | | | | | | | Without this, packages with namespace packages do not properly create .egg-info/namespace_packages.txt
| | * Make parse errors meaningful.Monty Taylor2013-05-131-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This makes the error displays on a bad setup.cfg value go from: error in setup command: Error parsing setup.cfg: IOError: 2 to error in setup command: Error parsing setup.cfg: IOError: No such file or directory: 'README' Which makes debugging eversomuch better.
| | * Added some additional zest.releaser hooks to deal with some perpetual ↵Erik M. Bray2013-04-101-0/+87
| | | | | | | | | | | | | | | | | | annoyances of doing releases. git-svn-id: https://svn.stsci.edu/svn/ssb/stsci_python/d2to1/trunk@24209 fe389314-cf27-0410-b35b-8c050e845b92
| | * When catching exceptions from a setup-hook don't throw a traceback up for ↵Erik M. Bray2013-04-091-0/+2
| | | | | | | | | | | | | | | | | | sys.exit() git-svn-id: https://svn.stsci.edu/svn/ssb/stsci_python/d2to1/trunk@24204 fe389314-cf27-0410-b35b-8c050e845b92
| | * Remove extra complexity of six.u wrapper.Monty Taylor2013-03-131-1/+1
| | |
| | * Move setup_requires to setup_requires_dist.Monty Taylor2013-03-121-1/+1
| | | | | | | | | | | | In anticipation of pep-426
| | * Add a few more backwards compatibility options.Monty Taylor2013-03-111-1/+6
| | |
| | * Fix exception handling error.Monty Taylor2013-03-111-1/+1
| | | | | | | | | | | | | | | The exception handler was passing an exception object to the unicode function, which was not causing it to stringify.
| | * Fix two minor style things.Monty Taylor2013-03-101-3/+3
| | | | | | | | | | | | | | | There is a pep8 indentation issue and an unused import. Fix them here so I can verify that my later patches don't regress and become unhappy.
| | * Fixes #20. Make sure the manifest_maker monkeypatch only occurs once and ↵Erik M. Bray2013-03-061-5/+7
| | | | | | | | | | | | | | | | | | that it gets all its required locals encapsulated. This is why I hate any sort of monkey-patching, but it appears to be the only way to get this feature working. git-svn-id: https://svn.stsci.edu/svn/ssb/stsci_python/d2to1/trunk@23570 fe389314-cf27-0410-b35b-8c050e845b92
| | * Merge pull request #16 from iguananaut/sixErik Bray2013-03-059-21/+420
| | |\ | | | | | | | | | | | | | | | | | | | | Six git-svn-id: https://svn.stsci.edu/svn/ssb/stsci_python/d2to1/trunk@23561 fe389314-cf27-0410-b35b-8c050e845b92
| | | * Yet another Python 2.5 fix; I really ought to just set up my own 2.5 ↵Erik M. Bray2013-03-051-0/+2
| | | | | | | | | | | | | | | | installation
| | | * multiprocessing doesn't exist in Python 2.5Erik M. Bray2013-03-051-1/+4
| | | |
| | | * Adds six.py and makes the necessary tweaks to improve support for using ↵Erik M. Bray2013-03-058-20/+414
| | | | | | | | | | | | | | | | d2to1 natively across Python versions
| | | * Fix 'except as' statements that were breaking things in Python 2.5Erik M. Bray2013-03-051-2/+2
| | | |
| | | * Somehow neglected to include extra-file.txt used in the test for #15. Also ↵Erik M. Bray2013-03-053-4/+5
| | | | | | | | | | | | | | | | moved the info log message that was causing othere tests to fail to only appear when commands are run that actually affect the manifest generation
| | * | Fix 'except as' statements that were breaking things in Python 2.5Erik Bray2013-03-051-2/+2
| | | | | | | | | | | | | | | | git-svn-id: https://svn.stsci.edu/svn/ssb/stsci_python/d2to1/trunk@23560 fe389314-cf27-0410-b35b-8c050e845b92
| | * | Somehow neglected to include extra-file.txt used in the test for #15. Also ↵Erik Bray2013-03-053-4/+5
| | |/ | | | | | | | | | | | | | | | moved the info log message that was causing othere tests to fail to only appear when commands are run that actually affect the manifest generation git-svn-id: https://svn.stsci.edu/svn/ssb/stsci_python/d2to1/trunk@23558 fe389314-cf27-0410-b35b-8c050e845b92