rpms/python-fedora/devel .cvsignore, 1.8, 1.9 python-fedora.spec, 1.10, 1.11 sources, 1.8, 1.9

Toshio くらとみ (toshio) fedora-extras-commits at redhat.com
Sat Apr 12 03:46:18 UTC 2008


Author: toshio

Update of /cvs/pkgs/rpms/python-fedora/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv11887

Modified Files:
	.cvsignore python-fedora.spec sources 
Log Message:
* Fri Apr 11 2008 Toshio Kuratomi <toshio at fedoraproject.org> - 0.2.99.7-1
- Add a method to accounts.fas2.AccountSystem to speed up retrieval of user
  information.

* Mon Apr 7 2008 Ricky Zhou <ricky at fedoraproject.org> - 0.2.99.6-1
- Add gencert method in fedora.accounts.fas2
- Remove old python-ldap dependency.
- Toshio Kuratomi added:
  * Merge infrastructure subpackage into main package.
  * Remove FAS1 code.
  * Fix JsonVisitManager race condition.
  * Start documentation on BaseClient/Fedora Service Architecture.

* Tue Mar 18 2008 Ricky Zhou <ricky at fedoraproject.org> - 0.2.99.5-1
- Add fas2.py (an interface for apps to fetch data from FAS2 using
  fedora.tg.client)

* Tue Mar 11 2008 Toshio Kuratomi <tkuratom at redhat.com> - 0.2.99.4-1
- Change from Ricky to enable user.human_name.



Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/python-fedora/devel/.cvsignore,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- .cvsignore	11 Mar 2008 18:21:44 -0000	1.8
+++ .cvsignore	12 Apr 2008 03:45:42 -0000	1.9
@@ -1 +1 @@
-python-fedora-0.2.99.3.tar.gz
+python-fedora-0.2.99.7.tar.gz


Index: python-fedora.spec
===================================================================
RCS file: /cvs/pkgs/rpms/python-fedora/devel/python-fedora.spec,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- python-fedora.spec	11 Mar 2008 18:21:44 -0000	1.10
+++ python-fedora.spec	12 Apr 2008 03:45:42 -0000	1.11
@@ -2,40 +2,31 @@
 %{!?pyver: %define pyver %(%{__python} -c "import sys ; print sys.version[:3]")}
 
 Name:           python-fedora
-Version:        0.2.99.3
+Version:        0.2.99.7
 Release:        1%{?dist}
 Summary:        Python modules for talking to Fedora Infrastructure Services
 
 Group:          Development/Languages
 License:        GPLv2
-URL:            http://hosted.fedoraproject.org/projects/python-fedora/
+URL:            https://fedorahosted.org/python-fedora/
 Source0:        http://toshio.fedorapeople.org/fedora/%{name}-%{version}.tar.gz
 BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 
 BuildArch:      noarch
 BuildRequires:  python-devel python-setuptools-devel
 Requires:       python-simplejson
+Requires:       python-bugzilla
+Requires:       python-feedparser
+Requires:       python-sqlalchemy
+Provides:       python-fedora-infrastructure = %{version}-%{release}
+Obsoletes:      python-fedora-infrastructure < %{version}-%{release}
 
 %description
-Python modules that handle communication with Fedora Infrastructure services.
-This set of modules helps with building clients that talk to Fedora
-Infrastructure's  TurboGears based services such as Bodhi, PackageDB,
-MirrorManager, and FAS2.
-
-%package infrastructure
-Summary: Python modules for building Fedora Services
-Group: Development/Languages
-Requires: %{name} = %{version}-%{release}
-Requires: python-psycopg2
-Requires: python-bugzilla
-Requires: python-feedparser
-Requires: python-ldap
-Requires: python-sqlalchemy
-
-%description infrastructure
-Additional python modules that can be used to help create Fedora Services.
-This includes the a JSON-based auth provider for authenticating against FAS2
-over the network.
+Python modules that help with building Fedora Services.  This includes a JSON
+based auth provider for authenticating against FAS2 over the network and a
+client that handles communication with the servers.  The client module can
+be used to build programs that communicate with Fedora Infrastructure's
+TurboGears Applications such as Bodhi, PackageDB, MirrorManager, and FAS2.
 
 %prep
 %setup -q
@@ -57,22 +48,29 @@
 %files
 %defattr(-,root,root,-)
 %doc README COPYING AUTHORS ChangeLog
-%dir %{python_sitelib}/fedora
-%dir %{python_sitelib}/fedora/tg
-%{python_sitelib}/fedora/*.py*
-%{python_sitelib}/fedora/tg/__init__.py*
-%{python_sitelib}/fedora/tg/client.py*
-%{python_sitelib}/python_fedora-%{version}-py%{pyver}.egg-info
-
-%files infrastructure
-%defattr(-,root,root,-)
-%{python_sitelib}/fedora/accounts/
-%{python_sitelib}/fedora/tg/identity/
-%{python_sitelib}/fedora/tg/visit/
-%{python_sitelib}/fedora/tg/widgets.py*
-%{python_sitelib}/fedora/tg/json.py*
+%{python_sitelib}/*
 
 %changelog
+* Fri Apr 11 2008 Toshio Kuratomi <toshio at fedoraproject.org> - 0.2.99.7-1
+- Add a method to accounts.fas2.AccountSystem to speed up retrieval of user
+  information.
+
+* Mon Apr 7 2008 Ricky Zhou <ricky at fedoraproject.org> - 0.2.99.6-1
+- Add gencert method in fedora.accounts.fas2
+- Remove old python-ldap dependency.
+- Toshio Kuratomi added:
+  * Merge infrastructure subpackage into main package.
+  * Remove FAS1 code.
+  * Fix JsonVisitManager race condition.
+  * Start documentation on BaseClient/Fedora Service Architecture.
+
+* Tue Mar 18 2008 Ricky Zhou <ricky at fedoraproject.org> - 0.2.99.5-1
+- Add fas2.py (an interface for apps to fetch data from FAS2 using
+  fedora.tg.client)
+
+* Tue Mar 11 2008 Toshio Kuratomi <tkuratom at redhat.com> - 0.2.99.4-1
+- Change from Ricky to enable user.human_name.
+
 * Tue Mar 11 2008 Toshio Kuratomi <tkuratom at redhat.com> - 0.2.99.3-1
 - Fix a bug in BaseClient.
 


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/python-fedora/devel/sources,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- sources	11 Mar 2008 18:21:44 -0000	1.8
+++ sources	12 Apr 2008 03:45:42 -0000	1.9
@@ -1 +1 @@
-c74683a1ba6f7ccdcacff7d3d5fa732c  python-fedora-0.2.99.3.tar.gz
+fd721856a0a7952a60bcde4693602505  python-fedora-0.2.99.7.tar.gz




More information about the fedora-extras-commits mailing list