rpms/report/F-11 .cvsignore, 1.3, 1.4 report.spec, 1.2, 1.3 sources, 1.3, 1.4

Gavin Romig-Koch gavin at fedoraproject.org
Thu Feb 11 19:20:36 UTC 2010


Author: gavin

Update of /cvs/pkgs/rpms/report/F-11
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1728

Modified Files:
	.cvsignore report.spec sources 
Log Message:
* Thu Feb 11 2010 Gavin Romig-Koch <gavin at redhat.com> 0.8-1
- upgrade to 0.8
- add examples/IOtest.py
- add report/io/NewtIO
- have all GTK dialogs open in the center of the screen
- consistantly return True/False/None from io.functions and report
- add Provides: report-config-default



Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/report/F-11/.cvsignore,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -p -r1.3 -r1.4
--- .cvsignore	4 Jan 2010 16:18:04 -0000	1.3
+++ .cvsignore	11 Feb 2010 19:20:36 -0000	1.4
@@ -1 +1 @@
-report-0.5.tar.gz
+report-0.8.tar.gz


Index: report.spec
===================================================================
RCS file: /cvs/pkgs/rpms/report/F-11/report.spec,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -p -r1.2 -r1.3
--- report.spec	4 Jan 2010 16:18:04 -0000	1.2
+++ report.spec	11 Feb 2010 19:20:36 -0000	1.3
@@ -1,6 +1,6 @@
 
 Name:           report
-Version:        0.5
+Version:        0.8
 Release:        1%{?dist}
 Summary:        Incident reporting library
 
@@ -12,9 +12,17 @@ BuildRoot:      %{_tmppath}/%{name}-%{ve
 
 Provides: python-report = %{version}-%{release} 
 
-BuildArch: noarch
 BuildRequires: python-devel
 
+BuildRequires: openssl-devel
+Requires: openssl
+
+%if 0%{?rhel} && 0%{?rhel} <= 5
+BuildRequires: curl-devel
+%else
+BuildRequires: libcurl-devel
+%endif  
+
 %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
 
 %description
@@ -22,6 +30,8 @@ A generic problem/bug/incident/error rep
 configured to deliver a report to a variety of different ticketing 
 systems.
 
+
+
 %package gtk
 Summary:        GTK IO for reporting library
 Group:          System Environment/Libraries
@@ -32,28 +42,73 @@ Requires: report = %{version}-%{release}
 %description gtk
 Provides GTK IO dialogs for the reporting library
 
+
+
+%package newt
+Summary:        Newt IO for reporting library
+Group:          System Environment/Libraries
+
+Requires: newt-python
+Requires: report = %{version}-%{release}
+
+%description newt
+Provides Newt IO dialogs for the reporting library
+
+
+
 %package plugin-bugzilla
 Summary:        Plugin template reporter to bugzilla
 Group:          System Environment/Libraries
 
 Requires: report = %{version}-%{release}
-Requires: python-bugzilla
 Requires: rpm-python
+Requires: python-bugzilla
 
 %description plugin-bugzilla
 Plugin template reporter to bugzilla
 
+
+
+%package plugin-RHEL
+Summary:        Plugin template reporter to RHEL
+Group:          System Environment/Libraries
+
+Requires: report = %{version}-%{release}
+Requires: rpm-python
+
+%description plugin-RHEL
+Plugin template reporter to RHEL
+
+
+
 %package config-bugzilla-redhat-com
 Summary:        Config for reporter to bugzilla.redhat.com
 Group:          System Environment/Libraries
 
 Requires: report-plugin-bugzilla = %{version}-%{release}
+%if 0%{?fedora}
+Provides: report-config-default = %{version}-%{release}
+%endif
 
 %description config-bugzilla-redhat-com
 Config for reporter to bugzilla.redhat.com
 
 
 
+%package config-RHEL
+Summary:        Config for reporter to RHEL
+Group:          System Environment/Libraries
+
+Requires: report-plugin-RHEL = %{version}-%{release}
+%if 0%{?rhel}
+Provides: report-config-default = %{version}-%{release}
+%endif
+
+%description config-RHEL
+Config for reporter to RHEL
+
+
+
 
 
 %prep
@@ -89,25 +144,65 @@ rm -rf $RPM_BUILD_ROOT
 %{python_sitelib}/report/alternatives/localsave.py*
 %dir %{python_sitelib}/report/templates
 %{python_sitelib}/report/templates/__init__.py*
-%dir /etc/report.d
+%dir %{_sysconfdir}/report.d
+%{_bindir}/report-sendfile
+%{_bindir}/report-sendfile-unload-receipt
+%attr(0644,root,root) %config(noreplace) %{_sysconfdir}/report-sendfile.conf
 
 %files gtk
 %defattr(-,root,root,-)
 %{python_sitelib}/report/io/GTKIO.py*
 
+%files newt
+%defattr(-,root,root,-)
+%{python_sitelib}/report/io/NewtIO.py*
+
 %files plugin-bugzilla
 %defattr(-,root,root,-)
 %{python_sitelib}/report/templates/bugzilla-template
 
+%files plugin-RHEL
+%defattr(-,root,root,-)
+%{python_sitelib}/report/templates/RHEL-template
+
 %files config-bugzilla-redhat-com
 %defattr(-,root,root,-)
-%config(noreplace) /etc/report.d/bugzilla.redhat.com
+%config(noreplace) %{_sysconfdir}/report.d/bugzilla.redhat.com.ini
+
+%files config-RHEL
+%defattr(-,root,root,-)
+%config(noreplace) %{_sysconfdir}/report.d/RHEL.ini
+
+
 
 
 
 
 
 %changelog
+* Thu Feb 11 2010 Gavin Romig-Koch <gavin at redhat.com> 0.8-1
+- upgrade to 0.8
+- add examples/IOtest.py
+- add report/io/NewtIO
+- have all GTK dialogs open in the center of the screen
+- consistantly return True/False/None from io.functions and report
+- add Provides: report-config-default
+
+* Thu Jan 28 2010 Gavin Romig-Koch <gavin at redhat.com> 0.7-1
+- upgrade to 0.7
+- correct the Requires: for config-RHEL
+- improve localcopy plugin
+
+* Mon Jan  4 2010 Gavin Romig-Koch <gavin at redhat.com> 0.6-1
+- Add suffix to files in '/etc/report.d/'
+- Create RHEL-template which doesn't depend on a separate python-bugzilla
+- Correct bugs in report::report template loading which caused the same
+   template to be loaded multiple times, and the wrong templates to be used
+- Correct a open file leak
+- Merge the fastback command into report
+- Rename fastback to report-sendfile
+- Correct button response bugs in GTKIO
+
 * Thu Dec 17 2009 Gavin Romig-Koch <gavin at redhat.com> 0.5-1
 - More cleanups/corrections from Fedora review:
   - added provides for python-report


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/report/F-11/sources,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -p -r1.3 -r1.4
--- sources	4 Jan 2010 16:18:04 -0000	1.3
+++ sources	11 Feb 2010 19:20:36 -0000	1.4
@@ -1 +1 @@
-d4e83c0bf9373c79461c48e98930786c  report-0.5.tar.gz
+09c6e4afa011060a0a2bec8cd1a62bad  report-0.8.tar.gz



More information about the scm-commits mailing list