This list is closed, nobody may subscribe to it.
2014 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2015 |
Jan
(40) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(14) |
Dec
|
From: <ma...@us...> - 2015-01-16 09:30:49
|
Revision: 696 http://sourceforge.net/p/pywbem/code/696 Author: maiera Date: 2015-01-16 09:30:41 +0000 (Fri, 16 Jan 2015) Log Message: ----------- Rebuilt distribution archive. Added Paths: ----------- pywbem/dist/pywbem-0.8.0/pywbem-0.8.0-dev.r695.zip Removed Paths: ------------- pywbem/dist/pywbem-0.8.0/pywbem-0.8.0-dev.r694.zip Deleted: pywbem/dist/pywbem-0.8.0/pywbem-0.8.0-dev.r694.zip =================================================================== (Binary files differ) Added: pywbem/dist/pywbem-0.8.0/pywbem-0.8.0-dev.r695.zip =================================================================== (Binary files differ) Index: pywbem/dist/pywbem-0.8.0/pywbem-0.8.0-dev.r695.zip =================================================================== --- pywbem/dist/pywbem-0.8.0/pywbem-0.8.0-dev.r695.zip 2015-01-16 09:28:30 UTC (rev 695) +++ pywbem/dist/pywbem-0.8.0/pywbem-0.8.0-dev.r695.zip 2015-01-16 09:30:41 UTC (rev 696) Property changes on: pywbem/dist/pywbem-0.8.0/pywbem-0.8.0-dev.r695.zip ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +application/octet-stream \ No newline at end of property This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ma...@us...> - 2015-01-16 08:45:39
|
Revision: 693 http://sourceforge.net/p/pywbem/code/693 Author: maiera Date: 2015-01-16 08:45:37 +0000 (Fri, 16 Jan 2015) Log Message: ----------- Rebuilt distribution archive. Modified Paths: -------------- pywbem/dist/pywbem-0.8.0/pywbem-0.8.0-dev.zip Modified: pywbem/dist/pywbem-0.8.0/pywbem-0.8.0-dev.zip =================================================================== (Binary files differ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ma...@us...> - 2015-01-16 08:32:12
|
Revision: 692 http://sourceforge.net/p/pywbem/code/692 Author: maiera Date: 2015-01-16 08:32:10 +0000 (Fri, 16 Jan 2015) Log Message: ----------- Changed delimiter character for preliminary versions from tilde to hyphen, to be consistent with semantic versioning. Modified Paths: -------------- pywbem/trunk/makefile pywbem/trunk/pywbem/__init__.py Added Paths: ----------- pywbem/dist/pywbem-0.8.0/pywbem-0.8.0-dev.zip Removed Paths: ------------- pywbem/dist/pywbem-0.8.0/pywbem-0.8.0~dev.zip Added: pywbem/dist/pywbem-0.8.0/pywbem-0.8.0-dev.zip =================================================================== (Binary files differ) Index: pywbem/dist/pywbem-0.8.0/pywbem-0.8.0-dev.zip =================================================================== --- pywbem/dist/pywbem-0.8.0/pywbem-0.8.0-dev.zip 2015-01-15 14:41:37 UTC (rev 691) +++ pywbem/dist/pywbem-0.8.0/pywbem-0.8.0-dev.zip 2015-01-16 08:32:10 UTC (rev 692) Property changes on: pywbem/dist/pywbem-0.8.0/pywbem-0.8.0-dev.zip ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +application/octet-stream \ No newline at end of property Deleted: pywbem/dist/pywbem-0.8.0/pywbem-0.8.0~dev.zip =================================================================== (Binary files differ) Modified: pywbem/trunk/makefile =================================================================== --- pywbem/trunk/makefile 2015-01-15 14:41:37 UTC (rev 691) +++ pywbem/trunk/makefile 2015-01-16 08:32:10 UTC (rev 692) @@ -22,7 +22,7 @@ # Version of this Python package package_version := $(shell python -B setup.py --version) -package_final_version := $(shell sh -c "echo $(package_version) | sed s/~.*//") +package_final_version := $(shell sh -c "echo $(package_version) | sed s/-.*//") # Directory for the generated distribution files dist_dir := ../dist/$(package_name)-$(package_final_version) Modified: pywbem/trunk/pywbem/__init__.py =================================================================== --- pywbem/trunk/pywbem/__init__.py 2015-01-15 14:41:37 UTC (rev 691) +++ pywbem/trunk/pywbem/__init__.py 2015-01-16 08:32:10 UTC (rev 692) @@ -107,16 +107,20 @@ Version ------- -This version of PyWBEM is 0.8.0~dev. +This version of PyWBEM is 0.8.0-dev. -The version number follows these conventions: +The version number follows the conventions of semantic versioning (see +http://semver.org/): -* M.N.U~dev : During development of the future M.N.U version. -* M.N.U~rc1 : For release candidate 1 (etc.) of the future M.N.U version. -* M.N.U : For the final (=released) M.N.U version. +* M.N.U-dev : Preliminary version during development of the future M.N.U + release. +* M.N.U-rc.1 : Preliminary version for release candidate 1 of the future M.N.U + release. +* M.N.U : Final version for the M.N.U release. -The use of the tilde (~) causes RPM to correctly treat the preliminary versions -to be younger than the final version. +When creating correspondingly versioned RPM packages, the hyphen (-) after +the M.N.U version needs to be replaced by a tilde (~) to cause RPM to correctly +treat the preliminary versions to be younger than the final version. Changes ------- @@ -144,7 +148,7 @@ # Version of the pywbem package # !!! Keep in sync with version stated in module docstring, above !!! -__version__ = '0.8.0~dev' +__version__ = '0.8.0-dev' # There are submodules, but clients shouldn't need to know about them. # Importing just this module is enough. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ma...@us...> - 2015-01-15 14:41:39
|
Revision: 691 http://sourceforge.net/p/pywbem/code/691 Author: maiera Date: 2015-01-15 14:41:37 +0000 (Thu, 15 Jan 2015) Log Message: ----------- Described installation of dependent packages (M2Crypto only at this point) Modified Paths: -------------- pywbem/trunk/INSTALL Modified: pywbem/trunk/INSTALL =================================================================== --- pywbem/trunk/INSTALL 2015-01-15 13:57:38 UTC (rev 690) +++ pywbem/trunk/INSTALL 2015-01-15 14:41:37 UTC (rev 691) @@ -35,6 +35,14 @@ copying build/lib/pywbem/cim_xml.py -> /home/tpot/python/lib/pywbem [...] +Install Python packages PyWBEM depends upon: + +* M2Crypto 0.21 or higher, at https://pypi.python.org/pypi/M2Crypto + +using your preferred package installationapproach, e.g.: + + # pip install M2Crypto + To test that PyWBEM is sucessfully installed, start up a Python interpreter and try to import the pywbem module: @@ -45,5 +53,6 @@ >>> import pywbem >>> -If you do not see any text after the import command, PyWBEM has been +If you do not see any error messages after the import command, PyWBEM has been sucessfully installed. + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ma...@us...> - 2014-11-06 22:08:33
|
Revision: 688 http://sourceforge.net/p/pywbem/code/688 Author: maiera Date: 2014-11-06 22:08:25 +0000 (Thu, 06 Nov 2014) Log Message: ----------- Adjusted project URL in setup.py. Modified Paths: -------------- pywbem/dist/pywbem-0.8.0/pywbem-0.8.0~dev.zip pywbem/trunk/setup.py Modified: pywbem/dist/pywbem-0.8.0/pywbem-0.8.0~dev.zip =================================================================== (Binary files differ) Modified: pywbem/trunk/setup.py =================================================================== --- pywbem/trunk/setup.py 2014-11-06 16:34:10 UTC (rev 687) +++ pywbem/trunk/setup.py 2014-11-06 22:08:25 UTC (rev 688) @@ -44,7 +44,7 @@ 'description': 'Python WBEM client library', 'long_description': __doc__, 'platforms': ['any'], - 'url': 'http://pywbem.sf.net/', + 'url': 'http://sourceforge.net/projects/pywbem/', 'version': init_globals['__version__'], 'license': 'LGPLv2', 'packages': ['pywbem'], This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |