]> git.pld-linux.org Git - packages/epydoc.git/commitdiff
- gui subpackage
authorwrobell <wrobell@pld-linux.org>
Tue, 26 Aug 2003 04:50:32 +0000 (04:50 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
- rel. 1

Changed files:
    epydoc.spec -> 1.2

epydoc.spec

index b8c96c05e72db6b15f9963735470640f8f04d0d4..55c8d5ae5a45f7aa319f10b4fecd846590844d57 100644 (file)
@@ -3,7 +3,7 @@
 Summary:       Tool for generating API documentation for Python modules
 Name:          epydoc
 Version:       2.0
-Release:       0.1
+Release:       1
 License:       MIT
 Group:         Development/Languages/Python
 Source0:       http://dl.sourceforge.net/%{name}/%{name}-%{version}.tar.gz
@@ -24,6 +24,23 @@ about specific fields, such as parameters and instance variables.  Epydoc
 also understands docstrings written in ReStructuredText, Javadoc and
 plaintext.
 
+%package gui
+Summary:       GUI for Epydoc
+Group:         Development/Languages/Python
+Requires:      %{name} = %{version}
+%pyrequires_eq tkinter
+
+%description gui
+Epydoc is a tool for generating API documentation for Python modules, based
+on their docstrings. For an example of epydoc's output, see the API
+documentation for epydoc itself (html, pdf). A lightweight markup language
+called epytext can be used to format docstrings and to add information
+about specific fields, such as parameters and instance variables.  Epydoc
+also understands docstrings written in ReStructuredText, Javadoc and
+plaintext.
+
+This package contains GUI program for Epydoc.
+
 %prep
 %setup -q
 
@@ -32,17 +49,32 @@ python setup.py build
 
 %install
 rm -rf $RPM_BUILD_ROOT
+install -d $RPM_BUILD_ROOT%{_mandir}/man1
 
 python setup.py install --optimize=2 --root=$RPM_BUILD_ROOT
 
+install man/*.1 $RPM_BUILD_ROOT%{_mandir}/man1
+
 %clean
 rm -rf $RPM_BUILD_ROOT
 
 %files
 %defattr(644,root,root,755)
 %doc doc/*
-%attr(755,root,root) %{_bindir}/*
+%attr(755,root,root) %{_bindir}/epydoc
+
 %dir %{py_sitedir}/epydoc
 %{py_sitedir}/epydoc/*.py[co]
+%exclude %{py_sitedir}/epydoc/gui.py[co]
+
 %dir %{py_sitedir}/epydoc/markup
 %{py_sitedir}/epydoc/markup/*.py[co]
+
+%{_mandir}/man1/epydoc.*
+
+%files gui
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_bindir}/epydocgui
+%{py_sitedir}/epydoc/gui.py[co]
+
+%{_mandir}/man1/epydocgui.*
This page took 0.06085 seconds and 4 git commands to generate.