5ca9b1e
# If on Fedora 12 or RHEL 5 or earlier, we need to define these:
5ca9b1e
%if ! (0%{?fedora} > 12 || 0%{?rhel} > 5)
Devan Goodwin 4e18180
%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(1))")}
5ca9b1e
%endif
5ca9b1e
5ca9b1e
91992b2
Name: python-rhsm
Devan Goodwin 1a6ddcd
Version: 1.1.3
Devan Goodwin 4e18180
Release: 1%{?dist}
91992b2
91992b2
Summary: A Python library to communicate with a Red Hat Unified Entitlement Platform
91992b2
Group: Development/Libraries
91992b2
License: GPLv2
91992b2
# How to create the source tarball:
91992b2
#
Devan Goodwin 5b01e5b
# git clone git://git.fedorahosted.org/git/python-rhsm.git/
91992b2
# cd client/python-rhsm
Devan Goodwin c8d6dc6
# tito build --tag python-rhsm-$VERSION-$RELEASE --tgz
91992b2
Source0: %{name}-%{version}.tar.gz
91992b2
URL: http://fedorahosted.org/candlepin
91992b2
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
91992b2
91992b2
Requires: m2crypto
91992b2
Requires: python-simplejson
91992b2
Requires: python-iniparse
Devan Goodwin 4e18180
Requires: rpm-python
91992b2
91992b2
BuildRequires: python2-devel
91992b2
BuildRequires: python-setuptools
Devan Goodwin 4e18180
BuildRequires: openssl-devel
Devan Goodwin 4e18180
91992b2
Devan Goodwin 5b01e5b
%description
91992b2
A small library for communicating with the REST interface of a Red Hat Unified
91992b2
Entitlement Platform. This interface is used for the management of system
91992b2
entitlements, certificates, and access to content.
91992b2
91992b2
%prep
91992b2
%setup -q -n python-rhsm-%{version}
91992b2
91992b2
%build
91992b2
%{__python} setup.py build
91992b2
91992b2
%install
91992b2
rm -rf %{buildroot}
91992b2
%{__python} setup.py install -O1 --skip-build --root %{buildroot}
Devan Goodwin b71a2cb
mkdir -p %{buildroot}%{_sysconfdir}/rhsm/ca
Devan Goodwin b71a2cb
install etc-conf/ca/*.pem %{buildroot}%{_sysconfdir}/rhsm/ca
91992b2
91992b2
%clean
91992b2
rm -rf %{buildroot}
91992b2
91992b2
%files
91992b2
%defattr(-,root,root,-)
91992b2
%doc README
91992b2
Devan Goodwin 4e18180
%dir %{python_sitearch}/rhsm
Devan Goodwin b71a2cb
%attr(755,root,root) %dir %{_sysconfdir}/rhsm
Devan Goodwin b71a2cb
%attr(755,root,root) %dir %{_sysconfdir}/rhsm/ca
91992b2
Devan Goodwin 4e18180
%{python_sitearch}/rhsm/*
Devan Goodwin 4e18180
%{python_sitearch}/rhsm-*.egg-info
Devan Goodwin b71a2cb
%attr(640,root,root) %{_sysconfdir}/rhsm/ca/*.pem
91992b2
91992b2
%changelog
Devan Goodwin 1a6ddcd
* Wed Oct 10 2012 Adrian Likins <alikins@redhat.com> 1.1.3-1
Devan Goodwin 1a6ddcd
- 863961: add test case for id cert default version (alikins@redhat.com)
Devan Goodwin 1a6ddcd
- 857426: Do not pass None when body is empty collection (mstead@redhat.com)
Devan Goodwin 1a6ddcd
- 863961: set a default version for id certs (alikins@redhat.com)
Devan Goodwin 1a6ddcd
- 859652: Subscribe with service level being ignored (wpoteat@redhat.com)
Devan Goodwin 1a6ddcd
Devan Goodwin 1a6ddcd
* Tue Sep 25 2012 Adrian Likins <alikins@redhat.com> 1.1.2-1
Devan Goodwin 1a6ddcd
- add 6.4 releaser (alikins@redhat.com)
Devan Goodwin 1a6ddcd
Devan Goodwin 4a99d6d
* Wed Sep 19 2012 Devan Goodwin <dgoodwin@rm-rf.ca> 1.1.1-1
Devan Goodwin 4a99d6d
- Read certv3 detached format (jbowes@redhat.com)
Devan Goodwin 4a99d6d
- Read file content types from certificates (mstead@redhat.com)
Devan Goodwin 4a99d6d
Devan Goodwin 9211833
* Wed Aug 29 2012 Alex Wood <awood@redhat.com> 1.0.7-1
Devan Goodwin 9211833
- 851644: Only use the cert file if it exists (bkearney@redhat.com)
Devan Goodwin 9211833
Devan Goodwin 9211833
* Tue Aug 28 2012 Alex Wood <awood@redhat.com> 1.0.6-1
Devan Goodwin 9211833
- 848742: support arbitrary bit length serial numbers (jbowes@redhat.com)
Devan Goodwin 9211833
- Stop doing F15 Fedora builds, add EL5 public builds. (dgoodwin@redhat.com)
Devan Goodwin 9211833
Devan Goodwin 4e18180
* Thu Aug 09 2012 Alex Wood <awood@redhat.com> 1.0.5-1
Devan Goodwin 4e18180
- add versionlint, requires pyqver (alikins@redhat.com)
Devan Goodwin 4e18180
- Adding subject back to new certs (mstead@redhat.com)
Devan Goodwin 4e18180
- 842885: add __str__ to NetworkException, ala  #830767 (alikins@redhat.com)
Devan Goodwin 4e18180
- 830767: Add __str__ method to RemoteServerException. (awood@redhat.com)
Devan Goodwin 4e18180
- Fix None product architectures. (dgoodwin@redhat.com)
Devan Goodwin 4e18180
- Remove deprecated use of DateRange.has[Date|Now] (jbowes@redhat.com)
Devan Goodwin 4e18180
- mark hasDate as deprecated as well (alikins@redhat.com)
Devan Goodwin 4e18180
Devan Goodwin 4e18180
* Wed Jul 25 2012 Alex Wood <awood@redhat.com> 1.0.4-1
Devan Goodwin 4e18180
- Remove unused stub method. (dgoodwin@redhat.com)
Devan Goodwin 4e18180
- Cleanup entitlement cert keys on delete. (dgoodwin@redhat.com)
Devan Goodwin 4e18180
- Drop unused quantity and flex quantity from Content. (dgoodwin@redhat.com)
Devan Goodwin 4e18180
- Make CertFactory and Extensions2 classes private. (dgoodwin@redhat.com)
Devan Goodwin 4e18180
- RHEL5 syntax fixes. (dgoodwin@redhat.com)
Devan Goodwin 4e18180
- Handle empty pem strings when creating certs. (dgoodwin@redhat.com)
Devan Goodwin 4e18180
- Remove Base64 decoding. (dgoodwin@redhat.com)
Devan Goodwin 4e18180
- Fix failing subjectAltName nosetest (jbowes@redhat.com)
Devan Goodwin 4e18180
- Fix up remaining compiler warnings (jbowes@redhat.com)
Devan Goodwin 4e18180
- Fix up memory leaks (jbowes@redhat.com)
Devan Goodwin 4e18180
- clean up some C module compiler warnings (jbowes@redhat.com)
Devan Goodwin 4e18180
- Fix get_all_extensions (jbowes@redhat.com)
Devan Goodwin 4e18180
- C module formatting fixups (jbowes@redhat.com)
Devan Goodwin 4e18180
- Add as_pem method to C module (jbowes@redhat.com)
Devan Goodwin 4e18180
- Revert Extensions object to old state, add new sub-class.
Devan Goodwin 4e18180
  (dgoodwin@redhat.com)
Devan Goodwin 4e18180
- Spec file changes for C module (jbowes@redhat.com)
Devan Goodwin 4e18180
- Get nosetests running (jbowes@redhat.com)
Devan Goodwin 4e18180
- tell setup.py to use nose (jbowes@redhat.com)
Devan Goodwin 4e18180
- get certv2 tests passing (jbowes@redhat.com)
Devan Goodwin 4e18180
- Move methods onto X509 class in C cert reader (jbowes@redhat.com)
Devan Goodwin 4e18180
- Add method to get all extensions in a dict (jbowes@redhat.com)
Devan Goodwin 4e18180
- Add POC C based cert reader (jbowes@redhat.com)
Devan Goodwin 4e18180
- Remove use of str.format for RHEL5. (dgoodwin@redhat.com)
Devan Goodwin 4e18180
- Remove some python2.6'ism (trailing if's) (alikins@redhat.com)
Devan Goodwin 4e18180
- add "version_check" target that runs pyqver (alikins@redhat.com)
Devan Goodwin 4e18180
- Fix error reporting on bad certs. (dgoodwin@redhat.com)
Devan Goodwin 4e18180
- Remove number from order/account fields. (dgoodwin@redhat.com)
Devan Goodwin 4e18180
- Style fixes. (dgoodwin@redhat.com)
Devan Goodwin 4e18180
- Certv2 cleanup. (dgoodwin@redhat.com)
Devan Goodwin 4e18180
- Cleanup bad padding/header cert testing. (dgoodwin@redhat.com)
Devan Goodwin 4e18180
- New method of parsing X509 extensions. (dgoodwin@redhat.com)
Devan Goodwin 4e18180
- Better cert type detection. (dgoodwin@redhat.com)
Devan Goodwin 4e18180
- Deprecate the old certificate module classes. (dgoodwin@redhat.com)
Devan Goodwin 4e18180
- Rename order support level to service level. (dgoodwin@redhat.com)
Devan Goodwin 4e18180
- Convert product arch to multi-valued. (dgoodwin@redhat.com)
Devan Goodwin 4e18180
- Add factory methods to certificate module. (dgoodwin@redhat.com)
Devan Goodwin 4e18180
- Parse V2 entitlement certificates. (dgoodwin@redhat.com)
Devan Goodwin 4e18180
- Add missing os import. (dgoodwin@redhat.com)
Devan Goodwin 4e18180
- Improve certificate2 error handling. (dgoodwin@redhat.com)
Devan Goodwin 4e18180
- Remove V1 named classes. (dgoodwin@redhat.com)
Devan Goodwin 4e18180
- Add cert is_expired method. (dgoodwin@redhat.com)
Devan Goodwin 4e18180
- Fix cert path issue. (dgoodwin@redhat.com)
Devan Goodwin 4e18180
- Major/minor attributes not available in 5.4 (mstead@redhat.com)
Devan Goodwin 4e18180
- 834108: Set the default connection timeout to 1 min. (jbowes@redhat.com)
Devan Goodwin 4e18180
- Add default values to certificate2 Order class. (dgoodwin@redhat.com)
Devan Goodwin 4e18180
- Define identity certificates explicitly. (dgoodwin@redhat.com)
Devan Goodwin 4e18180
- Add identity cert support to certificate2 module. (dgoodwin@redhat.com)
Devan Goodwin 4e18180
- Add file writing/deleting for new certificates. (dgoodwin@redhat.com)
Devan Goodwin 4e18180
- Add product info to certificate2 module. (dgoodwin@redhat.com)
Devan Goodwin 4e18180
- Add content info to certificate2 module. (dgoodwin@redhat.com)
Devan Goodwin 4e18180
- Add order info to certificate2 module. (dgoodwin@redhat.com)
Devan Goodwin 4e18180
- Port basic certificate data into new module. (dgoodwin@redhat.com)
Devan Goodwin 4e18180
- Add certificate2 module and cert creation factory. (dgoodwin@redhat.com)
c76084c
Devan Goodwin c8d6dc6
* Thu Jun 28 2012 Alex Wood <awood@redhat.com> 1.0.3-1
Devan Goodwin c8d6dc6
- Update copyright dates (jbowes@redhat.com)
Devan Goodwin c8d6dc6
- 825952: Error after deleting consumer at server (wpoteat@redhat.com)
Devan Goodwin c8d6dc6
Devan Goodwin de3ac6a
* Thu Jun 07 2012 Alex Wood <awood@redhat.com> 1.0.2-1
Devan Goodwin de3ac6a
- add upstream server var to version obj (cduryee@redhat.com)
Devan Goodwin de3ac6a
- 822057: wrap ContentConnection port in safe_int (cduryee@redhat.com)
Devan Goodwin de3ac6a
- 822965: subscription-manager release does not work with proxies
Devan Goodwin de3ac6a
  (cduryee@redhat.com)
Devan Goodwin de3ac6a
- 806958: BadCertificateException not displaying properly. (awood@redhat.com)
Devan Goodwin de3ac6a
- 822965: release verb does not work with proxies (cduryee@redhat.com)
Devan Goodwin de3ac6a
- Add config for "checkcommits" (alikins@redhat.com)
Devan Goodwin de3ac6a
- Include various Makefile improvements from subscription-manager
Devan Goodwin de3ac6a
  (alikins@redhat.com)
Devan Goodwin de3ac6a
- Upload el6 yum packages to another dir for compatability.
Devan Goodwin de3ac6a
  (dgoodwin@redhat.com)
Devan Goodwin de3ac6a
Devan Goodwin 53d28dd
* Wed May 16 2012 Devan Goodwin <dgoodwin@rm-rf.ca> 1.0.1-1
Devan Goodwin 53d28dd
- Add default constants for RHN connections. (dgoodwin@redhat.com)
Devan Goodwin 53d28dd
- 813296: Remove check for candlepin_version (jbowes@redhat.com)
Devan Goodwin 53d28dd
- Remove module scope eval of config properties (alikins@redhat.com)
Devan Goodwin 53d28dd
- Add call to get Candlepin status. (awood@redhat.com)
Devan Goodwin 53d28dd
- Added access to python-rhsm/sub-man versions. (mstead@redhat.com)
Devan Goodwin 53d28dd
Devan Goodwin 53d28dd
* Thu Apr 26 2012 Michael Stead <mstead@redhat.com> 1.0.0-1
Devan Goodwin 53d28dd
- Updated version due to 6.3 branching. (mstead@redhat.com)
Devan Goodwin 53d28dd
Devan Goodwin 2c45d5e
* Wed Apr 04 2012 Michael Stead <mstead@redhat.com> 0.99.8-1
Devan Goodwin 2c45d5e
- 807721: Setting missing default values (mstead@redhat.com)
Devan Goodwin 2c45d5e
Devan Goodwin 2c45d5e
* Fri Mar 23 2012 Michael Stead <mstead@redhat.com> 0.99.7-1
Devan Goodwin 2c45d5e
- 803773: quote international characters in activation keys before sending to
Devan Goodwin 2c45d5e
  server (cduryee@redhat.com)
Devan Goodwin 2c45d5e
- PEP8 fixes. (mstead@redhat.com)
Devan Goodwin 2c45d5e
Devan Goodwin 6201844
* Wed Mar 14 2012 Michael Stead <mstead@redhat.com> 0.99.6-1
Devan Goodwin 6201844
- Add ContentConnection to support rhsm "release" command (alikins@redhat.com)
Devan Goodwin 6201844
- Allow unsetting the consumer service level. (dgoodwin@redhat.com)
Devan Goodwin 6201844
Devan Goodwin 6201844
* Tue Mar 06 2012 Michael Stead <mstead@redhat.com> 0.99.5-1
Devan Goodwin 6201844
- 744654: Any bad value from the config file, when converting to an int, causes
Devan Goodwin 6201844
  a traceback. (bkearney@redhat.com)
Devan Goodwin 6201844
- Add support for dry-run autobind requests. (dgoodwin@redhat.com)
Devan Goodwin 6201844
- Build for Fedora 17. (dgoodwin@redhat.com)
Devan Goodwin 6201844
Devan Goodwin 3e0fc99
* Wed Feb 22 2012 Devan Goodwin <dgoodwin@rm-rf.ca> 0.99.4-1
Devan Goodwin 3e0fc99
- Add support for updating consumer service level. (dgoodwin@redhat.com)
Devan Goodwin 3e0fc99
- Add call to list service levels for an org. (dgoodwin@redhat.com)
Devan Goodwin 3e0fc99
- Add GoneException for deleted consumers (jbowes@redhat.com)
Devan Goodwin 3e0fc99
Devan Goodwin 05ebb80
* Fri Jan 27 2012 Michael Stead <mstead@redhat.com> 0.99.3-1
Devan Goodwin 05ebb80
- 785247: Update releasers.conf for RHEL6.3 (mstead@redhat.com)
Devan Goodwin 05ebb80
- Stop building for F14. (dgoodwin@redhat.com)
Devan Goodwin 05ebb80
Devan Goodwin 5b01e5b
* Thu Jan 12 2012 Devan Goodwin <dgoodwin@rm-rf.ca> 0.99.2-1
Devan Goodwin 5b01e5b
- 768983: When consuming a future subsciption, the repos --list should be empty
Devan Goodwin 5b01e5b
  (wpoteat@redhat.com)
Devan Goodwin 5b01e5b
- 720360: Write *-key.pem files out with 0600 permissions. (awood@redhat.com)
Devan Goodwin 5b01e5b
- 754425: Remove grace period logic (cduryee@redhat.com)
Devan Goodwin 5b01e5b
Devan Goodwin 5b01e5b
* Mon Dec 12 2011 William Poteat <wpoteat@redhat.com> 0.98.7-1
Devan Goodwin 5b01e5b
- 766895: Added hypervisorCheckIn call to allow sending a mapping of host/guest ids for
Devan Goodwin 5b01e5b
  creation/update. (mstead@redhat.com)
Devan Goodwin 5b01e5b
Devan Goodwin 5b01e5b
* Tue Dec 06 2011 William Poteat <wpoteat@redhat.com> 0.98.5-1
Devan Goodwin 5b01e5b
- 754366: workaround a bug in httpslib.ProxyHttpsConnection
Devan Goodwin 5b01e5b
  (alikins@redhat.com)
9de4337
Devan Goodwin b71a2cb
* Thu Nov 17 2011 William Poteat <wpoteat@redhat.com> 0.98.3-1
Devan Goodwin b71a2cb
- 752854: Fixing error in iniparser around unpacking of a dictionary for
Devan Goodwin b71a2cb
  default values. (awood@redhat.com)
Devan Goodwin b71a2cb
- 708362: remove entitlement keys on delete as well (alikins@redhat.com)
Devan Goodwin b71a2cb
- 734114: registering with --org="foo bar" throws a NetworkException instead of
Devan Goodwin b71a2cb
  a RestlibException (awood@redhat.com)
Devan Goodwin b71a2cb
Devan Goodwin b71a2cb
* Fri Oct 28 2011 William Poteat <wpoteat@redhat.com> 0.98.2-1
Devan Goodwin b71a2cb
- 749853: backport new python-rhsm API calls present in 6.2 for 5.8
Devan Goodwin b71a2cb
  (cduryee@redhat.com)
Devan Goodwin b71a2cb
- rev python-rhsm version to match sub-mgr (cduryee@redhat.com)
Devan Goodwin b71a2cb
- point master to rhel5 builder (cduryee@redhat.com)
Devan Goodwin b71a2cb
- fix python syntax for older versions (jbowes@redhat.com)
Devan Goodwin b71a2cb
- Fix yum repo location for EL6. (dgoodwin@redhat.com)
Devan Goodwin b71a2cb
Devan Goodwin b71a2cb
* Mon Oct 17 2011 Devan Goodwin <dgoodwin@rm-rf.ca> 0.97.1-1
Devan Goodwin b71a2cb
- 746241: UEPConnection.updateConsumer now passes empty list in POST request
Devan Goodwin b71a2cb
  (mstead@redhat.com)
Devan Goodwin b71a2cb
- 737935: overcome 255 char limit in uuid list (cduryee@redhat.com)
Devan Goodwin b71a2cb
* Tue Sep 13 2011 Devan Goodwin <dgoodwin@rm-rf.ca> 0.96.12-1
Devan Goodwin b71a2cb
- Add makefile and targets for coverage and "stylish" checks
Devan Goodwin b71a2cb
  (alikins@redhat.com)
Devan Goodwin b71a2cb
- Add tests for config parsing (cduryee@redhat.com)
Devan Goodwin b71a2cb
- 736166: move certs from subscription-manager to python-rhsm
Devan Goodwin b71a2cb
  (cduryee@redhat.com)
Devan Goodwin b71a2cb
Devan Goodwin b71a2cb
* Wed Sep 07 2011 James Bowes <jbowes@redhat.com> 0.96.11-1
Devan Goodwin b71a2cb
- add future date bind (jesusr@redhat.com)
Devan Goodwin b71a2cb
- 735226: allow Keys to validate themselves (bkearney@redhat.com)
Devan Goodwin b71a2cb
- Add getVirtOnly() (cduryee@redhat.com)
Devan Goodwin b71a2cb
Devan Goodwin dbb02d2
* Wed Aug 24 2011 Devan Goodwin <dgoodwin@rm-rf.ca> 0.96.10-1
Devan Goodwin dbb02d2
- Submit a Content-Length when body of request is empty. (dgoodwin@redhat.com)
Devan Goodwin dbb02d2
- Support installed products when registering. (dgoodwin@redhat.com)
Devan Goodwin dbb02d2
- Add ability to update a consumer's installed products list.
Devan Goodwin dbb02d2
  (dgoodwin@redhat.com)
Devan Goodwin dbb02d2
- Support for new bind method (cduryee@redhat.com)
Devan Goodwin dbb02d2
Devan Goodwin dbb02d2
* Wed Aug 17 2011 James Bowes <jbowes@redhat.com> 0.96.9-1
Devan Goodwin dbb02d2
- self.sanitize, and add support for quote_plus. (cduryee@redhat.com)
Devan Goodwin dbb02d2
- Enhance the insecure mode to not do peer checks. (bkearney@redhat.com)
Devan Goodwin dbb02d2
- Wrap urllib.quote in a helper method to cast int to str as needed.
Devan Goodwin dbb02d2
  (cduryee@redhat.com)
Devan Goodwin dbb02d2
- 728266: Unsubscribe from subscription manager GUI is broken
Devan Goodwin dbb02d2
  (cduryee@redhat.com)
Devan Goodwin dbb02d2
- Remove quantity for bind by product. (dgoodwin@redhat.com)
Devan Goodwin 60014ca
* Wed Aug 03 2011 Devan Goodwin <dgoodwin@rm-rf.ca> 0.96.8-1
Devan Goodwin 60014ca
- 719378: Encode whitespace in urls (bkearney@redhat.com)
Devan Goodwin 60014ca
- Change package profile upload url. (dgoodwin@redhat.com)
Devan Goodwin 60014ca
Devan Goodwin 7195beb
* Wed Jul 13 2011 Devan Goodwin <dgoodwin@rm-rf.ca> 0.96.7-1
Devan Goodwin 7195beb
- Logging cleanup. (dgoodwin@redhat.com)
Devan Goodwin 7195beb
- Remove unused add_ssl_certs method. (dgoodwin@redhat.com)
Devan Goodwin 7195beb
- Load supported resources when UEPConnection is instantiated.
Devan Goodwin 7195beb
  (dgoodwin@redhat.com)
Devan Goodwin 7195beb
- Send package profile. (dgoodwin@redhat.com)
Devan Goodwin 7195beb
- Allow testing if package profiles equal one another. (dgoodwin@redhat.com)
Devan Goodwin 7195beb
- Support creating package profile from a file descriptor.
Devan Goodwin 7195beb
  (dgoodwin@redhat.com)
Devan Goodwin 7195beb
- Allow the attributes to be None for username and password in consumer
Devan Goodwin 7195beb
  selction. (bkearney@redhat.com)
Devan Goodwin 7195beb
- Add a Package object. (dgoodwin@redhat.com)
Devan Goodwin 7195beb
Devan Goodwin 7195beb
* Wed Jul 06 2011 Devan Goodwin <dgoodwin@rm-rf.ca> 0.96.6-1
Devan Goodwin 7195beb
- Add support for new Katello error responses. (dgoodwin@redhat.com)
Devan Goodwin 7195beb
- Log the response when there's an issue parsing error JSON.
Devan Goodwin 7195beb
  (dgoodwin@redhat.com)
Devan Goodwin 7195beb
- Add support for registration to Katello environments. (dgoodwin@redhat.com)
Devan Goodwin 7195beb
- Don't send an http body if we don't have one. (jbowes@redhat.com)
Devan Goodwin 7195beb
- Add call to list environments. (dgoodwin@redhat.com)
Devan Goodwin 7195beb
- Do not load CA certs if in insecure mode. (dgoodwin@redhat.com)
Devan Goodwin 7195beb
- Cache supported resources after establishing connection.
Devan Goodwin 7195beb
  (dgoodwin@redhat.com)
Devan Goodwin 7195beb
4bc58cc
* Fri Jun 24 2011 Devan Goodwin <dgoodwin@redhat.com> 0.96.5-1
4bc58cc
- Fix backward compatability with old use of getPoolsList.
4bc58cc
  (dgoodwin@redhat.com)
4bc58cc
- Remove one built in type issue. (bkearney@redhat.com)
4bc58cc
- Removed unused Bundle class (alikins@redhat.com)
4bc58cc
- quantity for subscription (wottop@dhcp231-152.rdu.redhat.com)
4bc58cc
- Add the activation key call, and remove subscription tokens
4bc58cc
  (bkearney@redhat.com)
4bc58cc
- Improve the doco, referencing the candlepin site. (bkearney@redhat.com)
4bc58cc
- Improve the defualt values for the config (bkearney@redhat.com)
4bc58cc
- Fix bug with owner specification during registration. (dgoodwin@redhat.com)
4bc58cc
4bc58cc
* Wed Jun 08 2011 Bryan Kearney <bkearney@redhat.com> 0.96.4-1
4bc58cc
- Adding profile module and updating spec (pkilambi@redhat.com)
4bc58cc
- Added stacking Id to the certificate (wottop@dhcp231-152.rdu.redhat.com)
4bc58cc
- Changed call to CP for owner list (wottop@dhcp231-152.rdu.redhat.com)
4bc58cc
- added getOwners function for use with 'list --owners'
4bc58cc
  (wottop@dhcp231-152.rdu.redhat.com)
4bc58cc
- change (wottop@dhcp231-152.rdu.redhat.com)
4bc58cc
- Added the owner entered in the cli to the post for register
4bc58cc
  (wottop@dhcp231-152.rdu.redhat.com)
4bc58cc
- altered pool query to use both owner and consumer
4bc58cc
  (wottop@dhcp231-152.rdu.redhat.com)
4bc58cc
- Added getOwner(consumerid) function (wottop@dhcp231-152.rdu.redhat.com)
4bc58cc
141344c
* Wed May 11 2011 Devan Goodwin <dgoodwin@rm-rf.ca> 0.96.3-1
141344c
- 700601: Don't set the Accept-Language if we don't have a valid locale
141344c
  (alikins@redhat.com)
141344c
- 692210: remove a non critical warning message that is spamming the logs
141344c
  (alikins@redhat.com)
141344c
- 691788: Fix bad check for missing order info. (dgoodwin@redhat.com)
141344c
- Add a version of get_datetime from M2Crypto since it isnt avail on RHEL 5.7
141344c
  (alikins@redhat.com)
141344c
- Use older strptime call format (cduryee@redhat.com)
141344c
- 683550: fix parsing empty cert extensions (jbowes@redhat.com)
141344c
- Add support for content tagging. (dgoodwin@redhat.com)
141344c
- Use tlsv1 instead of sslv3, for fips compliance (cduryee@redhat.com)
141344c
8ad10a2
* Mon Feb 14 2011 Devan Goodwin <dgoodwin@rm-rf.ca> 0.96.2-1
8ad10a2
- Setup configuration for Fedora git builds. (dgoodwin@rm-rf.ca)
8ad10a2
2065900
* Fri Feb 04 2011 Devan Goodwin <dgoodwin@redhat.com> 0.96.1-1
2065900
- 674078: send a full iso 8601 timestamp for activeOn pools query
2065900
  (jbowes@repl.ca)
5d54bf9
2065900
* Tue Feb 01 2011 Devan Goodwin <dgoodwin@redhat.com> 0.95.2-1
2065900
- Add content metadata expire to certificate class. (dgoodwin@redhat.com)
2065900
2065900
* Fri Jan 28 2011 Chris Duryee (beav) <cduryee@redhat.com>
2065900
- Add new extensions to order (jbowes@redhat.com)
edd5714
- remove shebang from certificate.py for rpmlint (jbowes@redhat.com)
2065900
- Adding activateMachine to connection api. (jharris@redhat.com)
edd5714
- 668814: break out 404 and 500s into a different error (cduryee@redhat.com)
edd5714
- Initialized to use tito. (jbowes@redhat.com)
2065900
- bump version (jbowes@redhat.com)
edd5714
edd5714
* Wed Jan 12 2011 jesus m. rodriguez <jesusr@redhat.com> 0.94.13-1
edd5714
- 667829: handle proxy config options being absent from rhsm.conf (alikins@redhat.com)
edd5714
28a629e
* Fri Jan 07 2011 Devan Goodwin <dgoodwin@redhat.com> 0.94.12-1
28a629e
- Related: #668006
28a629e
- Remove a missed translation. (dgoodwin@redhat.com)
28a629e
- Fix logger warning messages. (dgoodwin@redhat.com)
28a629e
28a629e
5ca9b1e
* Tue Dec 21 2010 Devan Goodwin <dgoodwin@redhat.com> 0.94.10-1
5ca9b1e
- Related: #661863
5ca9b1e
- Add certificate parsing library. (dgoodwin@redhat.com)
5ca9b1e
- Fix build on F12/RHEL5 and earlier. (dgoodwin@redhat.com)
5ca9b1e
91992b2
* Fri Dec 17 2010 jesus m. rodriguez <jesusr@redhat.com> 0.94.9-1
91992b2
- add comment on how to generate source tarball (jesusr@redhat.com)
91992b2
91992b2
* Fri Dec 17 2010 Devan Goodwin <dgoodwin@redhat.com> 0.94.8-1
91992b2
- Adding GPLv2 license file. (dgoodwin@redhat.com)
91992b2
91992b2
* Fri Dec 17 2010 Devan Goodwin <dgoodwin@redhat.com> 0.94.7-1
91992b2
- Related: #661863
91992b2
- Add buildrequires for python-setuptools.
91992b2
91992b2
* Thu Dec 16 2010 Devan Goodwin <dgoodwin@redhat.com> 0.94.4-1
91992b2
- Add python-rhsm tito.props. (dgoodwin@redhat.com)
91992b2
91992b2
* Thu Dec 16 2010 Devan Goodwin <dgoodwin@redhat.com> 0.94.3-1
91992b2
- Refactor logging. (dgoodwin@redhat.com)
91992b2
- Add a small README. (dgoodwin@redhat.com)
91992b2
91992b2
* Tue Dec 14 2010 Devan Goodwin <dgoodwin@redhat.com> 0.94.2-1
91992b2
- Remove I18N code. (dgoodwin@redhat.com)
91992b2
- Spec cleanup. (dgoodwin@redhat.com)
91992b2
- Cleaning out unused log parsing functions (jharris@redhat.com)
91992b2
- More tolerant with no rhsm.conf in place. (dgoodwin@redhat.com)
91992b2
- Switch to python-iniparse. (alikins@redhat.com)
91992b2
91992b2
* Fri Dec 10 2010 Devan Goodwin <dgoodwin@redhat.com> 0.94.1-1
91992b2
- Initial package tagging.
91992b2