forked from pool/doxygen
		
	- updated to 1.8.3:
Changes
    * Expanding the tree in an index page of the HTML output, will 
      now expand only one level instead of the whole sub-tree.
    * A blockquote in Markdown does no longer require a whitespace 
      after the last '>' if the '>' is followed by a newline.
    * id 682718: Included patch to add version info to all 
      generated template files (headers, footers, stylesheets, 
      layout files, etc). 
    New features
    * Added support for using external tools to index and search 
      through the HTML documentation. An example index tool is 
      provided (doxyindexer) and an example search engine 
      (doxysearch.cgi). To configure the external search engine 
      the following new options are added to the configuration 
      file: EXTERNAL_SEARCH (to enable the feature), 
      SEARCHENGINE_URL (to specify the URL of the search engine), 
      SEARCHDATA_FILE (to specify the name of the raw search 
      data to index), EXTRA_SEARCH_MAPPINGS (for search through 
      multiple projects). See the manual for details.
    * Added USE_MDFILE_AS_MAINPAGE config option to select a 
      markdown page to be used as the main page.
    * id 630645: This patch (contributed by Albert) adds support 
      for simple logic expressions for \cond, \if, and friends, 
      i.e. you can do \if (SOME_SECTION_NAME && 
      (!THIS_ALTERNATIVE || THAT_ALTERNATIVE))
    * id 684152: Patch (contributed by Albert) adds a new 
      configuration option MATHJAX_FORMAT to select the MathJax 
      output format. Options are HTML-CSS, NativeMML, or SVG. 
    Bug Fixes
OBS-URL: https://build.opensuse.org/package/show/devel:tools/doxygen?expand=0&rev=58
			
			
This commit is contained in:
		@@ -3,20 +3,24 @@
 | 
			
		||||
 configure   |    1 +
 | 
			
		||||
 2 files changed, 1 insertion(+), 2 deletions(-)
 | 
			
		||||
 | 
			
		||||
Index: Makefile.in
 | 
			
		||||
===================================================================
 | 
			
		||||
--- Makefile.in.orig
 | 
			
		||||
+++ Makefile.in
 | 
			
		||||
@@ -44,8 +44,6 @@ distclean: clean
 | 
			
		||||
@@ -53,8 +53,6 @@ distclean: clean
 | 
			
		||||
 
 | 
			
		||||
 DATE=$(shell date "+%B %Y")
 | 
			
		||||
 
 | 
			
		||||
-MAN1DIR = man/man1
 | 
			
		||||
-
 | 
			
		||||
 install: doxywizard_install 
 | 
			
		||||
 install: doxywizard_install doxysearch_install
 | 
			
		||||
 	$(INSTTOOL) -d $(DESTDIR)/$(INSTALL)/bin
 | 
			
		||||
 	$(INSTTOOL) -m 755 bin/doxygen    $(DESTDIR)/$(INSTALL)/bin
 | 
			
		||||
 	$(INSTTOOL) -m 755 bin/doxygen        $(DESTDIR)/$(INSTALL)/bin
 | 
			
		||||
Index: configure
 | 
			
		||||
===================================================================
 | 
			
		||||
--- configure.orig
 | 
			
		||||
+++ configure
 | 
			
		||||
@@ -485,6 +485,7 @@ INSTTOOL  = $f_insttool
 | 
			
		||||
@@ -514,6 +514,7 @@ INSTTOOL  = $f_insttool
 | 
			
		||||
 DOXYDOCS  = ..
 | 
			
		||||
 DOCDIR    = $f_docdir
 | 
			
		||||
 QTDIR     = $QTDIR
 | 
			
		||||
 
 | 
			
		||||
@@ -1,3 +0,0 @@
 | 
			
		||||
version https://git-lfs.github.com/spec/v1
 | 
			
		||||
oid sha256:cc8728bdf9f7a2050d1f84346af1017ff6de2893ac519f6ea42427526c300671
 | 
			
		||||
size 643092
 | 
			
		||||
@@ -1,3 +0,0 @@
 | 
			
		||||
version https://git-lfs.github.com/spec/v1
 | 
			
		||||
oid sha256:f058f39425fe51e513ba929b6bddd9836f2bf4624a723d0cf07db7ec9f81f252
 | 
			
		||||
size 5318488
 | 
			
		||||
							
								
								
									
										3
									
								
								doxygen-1.8.3-html.tar.bz2
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								doxygen-1.8.3-html.tar.bz2
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,3 @@
 | 
			
		||||
version https://git-lfs.github.com/spec/v1
 | 
			
		||||
oid sha256:bd6e0f6cc3ed4dbff9f05f44c383c6f4cefbacee70b7d1a076c812edd23d94ea
 | 
			
		||||
size 672379
 | 
			
		||||
							
								
								
									
										3
									
								
								doxygen-1.8.3.src.tar.bz2
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								doxygen-1.8.3.src.tar.bz2
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,3 @@
 | 
			
		||||
version https://git-lfs.github.com/spec/v1
 | 
			
		||||
oid sha256:17ecdae996727259964fc7be020c1574ce2d45b39b7c541c9820687419eaee46
 | 
			
		||||
size 5366800
 | 
			
		||||
@@ -1,3 +1,38 @@
 | 
			
		||||
-------------------------------------------------------------------
 | 
			
		||||
Mon Dec 31 08:38:17 UTC 2012 - pgajdos@suse.com
 | 
			
		||||
 | 
			
		||||
- updated to 1.8.3:
 | 
			
		||||
    Changes
 | 
			
		||||
    * Expanding the tree in an index page of the HTML output, will 
 | 
			
		||||
      now expand only one level instead of the whole sub-tree.
 | 
			
		||||
    * A blockquote in Markdown does no longer require a whitespace 
 | 
			
		||||
      after the last '>' if the '>' is followed by a newline.
 | 
			
		||||
    * id 682718: Included patch to add version info to all 
 | 
			
		||||
      generated template files (headers, footers, stylesheets, 
 | 
			
		||||
      layout files, etc). 
 | 
			
		||||
    New features
 | 
			
		||||
    * Added support for using external tools to index and search 
 | 
			
		||||
      through the HTML documentation. An example index tool is 
 | 
			
		||||
      provided (doxyindexer) and an example search engine 
 | 
			
		||||
      (doxysearch.cgi). To configure the external search engine 
 | 
			
		||||
      the following new options are added to the configuration 
 | 
			
		||||
      file: EXTERNAL_SEARCH (to enable the feature), 
 | 
			
		||||
      SEARCHENGINE_URL (to specify the URL of the search engine), 
 | 
			
		||||
      SEARCHDATA_FILE (to specify the name of the raw search 
 | 
			
		||||
      data to index), EXTRA_SEARCH_MAPPINGS (for search through 
 | 
			
		||||
      multiple projects). See the manual for details.
 | 
			
		||||
    * Added USE_MDFILE_AS_MAINPAGE config option to select a 
 | 
			
		||||
      markdown page to be used as the main page.
 | 
			
		||||
    * id 630645: This patch (contributed by Albert) adds support 
 | 
			
		||||
      for simple logic expressions for \cond, \if, and friends, 
 | 
			
		||||
      i.e. you can do \if (SOME_SECTION_NAME && 
 | 
			
		||||
      (!THIS_ALTERNATIVE || THAT_ALTERNATIVE))
 | 
			
		||||
    * id 684152: Patch (contributed by Albert) adds a new 
 | 
			
		||||
      configuration option MATHJAX_FORMAT to select the MathJax 
 | 
			
		||||
      output format. Options are HTML-CSS, NativeMML, or SVG. 
 | 
			
		||||
    Bug Fixes
 | 
			
		||||
      * see http://www.stack.nl/~dimitri/doxygen/changelog.html
 | 
			
		||||
 | 
			
		||||
-------------------------------------------------------------------
 | 
			
		||||
Mon Aug 20 07:12:42 UTC 2012 - pgajdos@suse.com
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -21,7 +21,7 @@ BuildRequires:  bison
 | 
			
		||||
BuildRequires:  flex
 | 
			
		||||
BuildRequires:  gcc-c++
 | 
			
		||||
BuildRequires:  libpng-devel
 | 
			
		||||
Version:        1.8.2
 | 
			
		||||
Version:        1.8.3
 | 
			
		||||
Release:        0
 | 
			
		||||
Summary:        Automated C, C++, and Java Documentation Generator
 | 
			
		||||
License:        GPL-2.0+
 | 
			
		||||
 
 | 
			
		||||
@@ -1,3 +0,0 @@
 | 
			
		||||
version https://git-lfs.github.com/spec/v1
 | 
			
		||||
oid sha256:2eda4e56a57a5654080b4c9f9b79b6d233b15bb1d1489e413fc94d02baf3871e
 | 
			
		||||
size 705249
 | 
			
		||||
							
								
								
									
										3
									
								
								doxygen_manual-1.8.3.pdf.bz2
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								doxygen_manual-1.8.3.pdf.bz2
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,3 @@
 | 
			
		||||
version https://git-lfs.github.com/spec/v1
 | 
			
		||||
oid sha256:ef8add864f338e8ddcb5c959b7fca18d45b61022138a32b663471fe9225d967a
 | 
			
		||||
size 738825
 | 
			
		||||
@@ -21,7 +21,7 @@ BuildRequires:  bison
 | 
			
		||||
BuildRequires:  flex
 | 
			
		||||
BuildRequires:  gcc-c++
 | 
			
		||||
BuildRequires:  libjpeg-devel
 | 
			
		||||
Version:        1.8.2
 | 
			
		||||
Version:        1.8.3
 | 
			
		||||
Release:        0
 | 
			
		||||
Requires:       doxygen = %{version}
 | 
			
		||||
Summary:        Graphical User Interface for Doxygen
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user