rpms/report/EL-5 .cvsignore, 1.3, 1.4 report.spec, 1.2, 1.3 sources, 1.3, 1.4

Gavin Romig-Koch gavin at fedoraproject.org
Fri Jan 29 17:01:14 UTC 2010


Author: gavin

Update of /cvs/pkgs/rpms/report/EL-5
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3149

Modified Files:
	.cvsignore report.spec sources 
Log Message:
upgrade to 0.7
correct the Requires: for config-RHEL
improve localcopy plugin



Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/report/EL-5/.cvsignore,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -p -r1.3 -r1.4
--- .cvsignore	4 Jan 2010 16:30:43 -0000	1.3
+++ .cvsignore	29 Jan 2010 17:01:13 -0000	1.4
@@ -1 +1 @@
-report-0.5.tar.gz
+report-0.7.tar.gz


Index: report.spec
===================================================================
RCS file: /cvs/pkgs/rpms/report/EL-5/report.spec,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -p -r1.2 -r1.3
--- report.spec	4 Jan 2010 16:30:43 -0000	1.2
+++ report.spec	29 Jan 2010 17:01:13 -0000	1.3
@@ -1,6 +1,6 @@
 
 Name:           report
-Version:        0.5
+Version:        0.7
 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,17 +42,33 @@ Requires: report = %{version}-%{release}
 %description gtk
 Provides GTK 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
@@ -54,6 +80,17 @@ Config for reporter to bugzilla.redhat.c
 
 
 
+%package config-RHEL
+Summary:        Config for reporter to RHEL
+Group:          System Environment/Libraries
+
+Requires: report-plugin-RHEL = %{version}-%{release}
+
+%description config-RHEL
+Config for reporter to RHEL
+
+
+
 
 
 %prep
@@ -89,7 +126,10 @@ 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,-)
@@ -99,15 +139,40 @@ rm -rf $RPM_BUILD_ROOT
 %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 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/EL-5/sources,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -p -r1.3 -r1.4
--- sources	4 Jan 2010 16:30:43 -0000	1.3
+++ sources	29 Jan 2010 17:01:14 -0000	1.4
@@ -1 +1 @@
-d4e83c0bf9373c79461c48e98930786c  report-0.5.tar.gz
+23e675f301aaaa794b0b36db36712534  report-0.7.tar.gz



More information about the scm-commits mailing list