forked from pool/doxygen
This commit is contained in:
parent
272ac2badd
commit
f95afaa64c
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:98226519c6a2eff0881d83d8c97206963ee9e9db9ea18eb160644baf0a34735f
|
|
||||||
size 463084
|
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:631152b68bdff9fa730ae1e88edce991ed0ee1a8dc67cdf0497ed8f5d6e348f6
|
|
||||||
size 2961839
|
|
3
doxygen-1.5.4-html.tar.bz2
Normal file
3
doxygen-1.5.4-html.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:1ea417d44f58eac25bdabab58faecaa73680f70206665e70b01484f6eef71fa9
|
||||||
|
size 463339
|
3
doxygen-1.5.4.src.tar.bz2
Normal file
3
doxygen-1.5.4.src.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:58d9fd133bd9fd999194fa72a4b0e0a9375a98f29c55053153ce6346968779ff
|
||||||
|
size 3053630
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 30 11:56:25 CET 2007 - anosek@suse.cz
|
||||||
|
|
||||||
|
- updated to version 1.5.4
|
||||||
|
Changes:
|
||||||
|
* When setting SOURCE_BROWSER to YES, all undocumented classes
|
||||||
|
also ended up in the documentation. Now this will only happen
|
||||||
|
if EXTRACT_ALL is also enabled.
|
||||||
|
* Upgraded included third party libs libpng and zlib to version
|
||||||
|
1.2.21 and 1.2.3 respectively.
|
||||||
|
New features:
|
||||||
|
* Included support for parsing Fortran 90
|
||||||
|
* Added config option SIP_SUPPORT to support handling SIP sources
|
||||||
|
(used for Python to C++ bindings).
|
||||||
|
* Added support for CLI/C++ style indexed properties.
|
||||||
|
* Added config option TYPEDEF_HIDES_STRUCT which when enabled
|
||||||
|
treats a typedef of a struct as a struct with the name of the
|
||||||
|
typedef. This behavious was coupled to OPTIMIZE_OUTPUT_FOR_C
|
||||||
|
in the previous version and is now an independent option.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jul 27 12:53:46 CEST 2007 - anosek@suse.cz
|
Fri Jul 27 12:53:46 CEST 2007 - anosek@suse.cz
|
||||||
|
|
||||||
|
26
doxygen.spec
26
doxygen.spec
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package doxygen (Version 1.5.3)
|
# spec file for package doxygen (Version 1.5.4)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
# This file and all modifications and additions to the pristine
|
# This file and all modifications and additions to the pristine
|
||||||
@ -12,13 +12,13 @@
|
|||||||
|
|
||||||
Name: doxygen
|
Name: doxygen
|
||||||
BuildRequires: bison flex gcc-c++ libpng-devel
|
BuildRequires: bison flex gcc-c++ libpng-devel
|
||||||
Version: 1.5.3
|
Version: 1.5.4
|
||||||
Release: 1
|
Release: 1
|
||||||
Autoreqprov: on
|
AutoReqProv: on
|
||||||
License: GPL v2 or later
|
License: GPL v2 or later
|
||||||
Group: Development/Tools/Doc Generators
|
Group: Development/Tools/Doc Generators
|
||||||
Summary: Automated C, C++, and Java Documentation Generator
|
Summary: Automated C, C++, and Java Documentation Generator
|
||||||
URL: http://www.stack.nl/~dimitri/doxygen/
|
Url: http://www.stack.nl/~dimitri/doxygen/
|
||||||
Source: %{name}-%{version}.src.tar.bz2
|
Source: %{name}-%{version}.src.tar.bz2
|
||||||
# script to get %%source2
|
# script to get %%source2
|
||||||
Source1: doxygen-html.sh
|
Source1: doxygen-html.sh
|
||||||
@ -81,8 +81,24 @@ rm -rf %{buildroot}
|
|||||||
%attr(444,root,root) %doc %{_mandir}/man1/doxygen.1.gz
|
%attr(444,root,root) %doc %{_mandir}/man1/doxygen.1.gz
|
||||||
%attr(444,root,root) %doc %{_mandir}/man1/doxytag.1.gz
|
%attr(444,root,root) %doc %{_mandir}/man1/doxytag.1.gz
|
||||||
%attr(755,root,root) /usr/bin/*
|
%attr(755,root,root) /usr/bin/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Oct 30 2007 - anosek@suse.cz
|
||||||
|
- updated to version 1.5.4
|
||||||
|
Changes:
|
||||||
|
* When setting SOURCE_BROWSER to YES, all undocumented classes
|
||||||
|
also ended up in the documentation. Now this will only happen
|
||||||
|
if EXTRACT_ALL is also enabled.
|
||||||
|
* Upgraded included third party libs libpng and zlib to version
|
||||||
|
1.2.21 and 1.2.3 respectively.
|
||||||
|
New features:
|
||||||
|
* Included support for parsing Fortran 90
|
||||||
|
* Added config option SIP_SUPPORT to support handling SIP sources
|
||||||
|
(used for Python to C++ bindings).
|
||||||
|
* Added support for CLI/C++ style indexed properties.
|
||||||
|
* Added config option TYPEDEF_HIDES_STRUCT which when enabled
|
||||||
|
treats a typedef of a struct as a struct with the name of the
|
||||||
|
typedef. This behavious was coupled to OPTIMIZE_OUTPUT_FOR_C
|
||||||
|
in the previous version and is now an independent option.
|
||||||
* Fri Jul 27 2007 - anosek@suse.cz
|
* Fri Jul 27 2007 - anosek@suse.cz
|
||||||
- updated to version 1.5.3
|
- updated to version 1.5.3
|
||||||
Changes:
|
Changes:
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:d4c49c39054556558fac36475eba535809a95e1379b5bf16056fed39618731e1
|
|
||||||
size 560192
|
|
3
doxygen_manual-1.5.4.pdf.bz2
Normal file
3
doxygen_manual-1.5.4.pdf.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:f052b3387322c1e5c3344dbb67ce39021f2affe2249ad943f0a1767518c39999
|
||||||
|
size 563873
|
@ -3,9 +3,9 @@
|
|||||||
@@ -20,11 +20,11 @@
|
@@ -20,11 +20,11 @@
|
||||||
CC = cc
|
CC = cc
|
||||||
CXX = c++
|
CXX = c++
|
||||||
CFLAGS = -pipe -Wall -W -g
|
CFLAGS = -pipe -Wall -W -g -DNODEBUG
|
||||||
-CXXFLAGS= -pipe -D__FreeBSD__=6 -Wall -W -g
|
-CXXFLAGS= -pipe -D__FreeBSD__=6 -Wall -W -g -DNODEBUG
|
||||||
+CXXFLAGS= -pipe -Wall -W -g
|
+CXXFLAGS= -pipe -Wall -W -g -DNODEBUG
|
||||||
INCPATH = -I../../src -I$(QTDIR)/include
|
INCPATH = -I../../src -I$(QTDIR)/include
|
||||||
LINK = c++
|
LINK = c++
|
||||||
-LFLAGS = -Wl,-search_paths_first
|
-LFLAGS = -Wl,-search_paths_first
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 30 11:58:52 CET 2007 - anosek@suse.cz
|
||||||
|
|
||||||
|
- updated to version 1.5.4
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jul 27 12:58:08 CEST 2007 - anosek@suse.cz
|
Fri Jul 27 12:58:08 CEST 2007 - anosek@suse.cz
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package doxywizard (Version 1.5.3)
|
# spec file for package doxywizard (Version 1.5.4)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
# This file and all modifications and additions to the pristine
|
# This file and all modifications and additions to the pristine
|
||||||
@ -12,14 +12,14 @@
|
|||||||
|
|
||||||
Name: doxywizard
|
Name: doxywizard
|
||||||
BuildRequires: bison flex libdrm-devel libjpeg-devel qt3-devel update-desktop-files
|
BuildRequires: bison flex libdrm-devel libjpeg-devel qt3-devel update-desktop-files
|
||||||
Version: 1.5.3
|
Version: 1.5.4
|
||||||
Release: 1
|
Release: 1
|
||||||
Autoreqprov: on
|
AutoReqProv: on
|
||||||
Requires: doxygen = %{version}
|
Requires: doxygen = %{version}
|
||||||
License: GPL v2 or later
|
License: GPL v2 or later
|
||||||
Group: Development/Tools/Doc Generators
|
Group: Development/Tools/Doc Generators
|
||||||
Summary: Graphical User Interface for Doxygen
|
Summary: Graphical User Interface for Doxygen
|
||||||
URL: http://www.stack.nl/~dimitri/doxygen/
|
Url: http://www.stack.nl/~dimitri/doxygen/
|
||||||
Source: doxygen-%{version}.src.tar.bz2
|
Source: doxygen-%{version}.src.tar.bz2
|
||||||
Source1: doxywizard.desktop
|
Source1: doxywizard.desktop
|
||||||
Patch: doxygen-64archs.diff
|
Patch: doxygen-64archs.diff
|
||||||
@ -78,8 +78,9 @@ rm -rf %{buildroot}
|
|||||||
%attr(755,root,root) /usr/bin/doxywizard
|
%attr(755,root,root) /usr/bin/doxywizard
|
||||||
/usr/share/applications/doxywizard.desktop
|
/usr/share/applications/doxywizard.desktop
|
||||||
%attr(444,root,root) %doc %{_mandir}/man1/doxywizard.1.gz
|
%attr(444,root,root) %doc %{_mandir}/man1/doxywizard.1.gz
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Oct 30 2007 - anosek@suse.cz
|
||||||
|
- updated to version 1.5.4
|
||||||
* Fri Jul 27 2007 - anosek@suse.cz
|
* Fri Jul 27 2007 - anosek@suse.cz
|
||||||
- updated to version 1.5.3
|
- updated to version 1.5.3
|
||||||
* Tue Apr 10 2007 - anosek@suse.cz
|
* Tue Apr 10 2007 - anosek@suse.cz
|
||||||
|
Loading…
Reference in New Issue
Block a user