Skip to content

Commit dc7948b

Browse files
authored
Version 1.0.0 release, take 2 (#26)
* Fix latex build and SWIG rendering * Update copyright year
1 parent 516ea55 commit dc7948b

19 files changed

+21
-26
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2019 Oak Ridge National Laboratory, UT-Battelle, LLC.
3+
Copyright (c) 2019--2020 Oak Ridge National Laboratory, UT--Battelle, LLC.
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

doc/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# -- Project information -----------------------------------------------------
2121

2222
project = 'Flibcpp'
23-
copyright = '2019, Oak Ridge National Laboratory, UT-Battelle, LLC'
23+
copyright = '2020, Oak Ridge National Laboratory, UT-Battelle, LLC'
2424
author = 'Seth R Johnson'
2525

2626
# The short X.Y version
@@ -104,7 +104,7 @@
104104
# -- Options for HTMLHelp output ---------------------------------------------
105105

106106
# Output file base name for HTML help builder.
107-
htmlhelp_basename = 'Flibcppdoc'
107+
htmlhelp_basename = 'Flibcpp'
108108

109109

110110
# -- Options for LaTeX output ------------------------------------------------

doc/index.rst

-5
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,6 @@
22
.. File : doc/index.rst
33
.. ############################################################################
44
5-
.. raw:: latex
6-
7-
\frontmatter
8-
95
=======
106
Flibcpp
117
=======
@@ -16,7 +12,6 @@ Flibcpp
1612
1713
.. raw:: latex
1814

19-
\mainmatter
2015
\begin{abstract}
2116

2217
Flibcpp uses SWIG-Fortran to generate native Fortran-2003 interfaces to

include/flc.i

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*!
22
* \file flc.i
33
*
4-
* Copyright (c) 2019 Oak Ridge National Laboratory, UT-Battelle, LLC.
4+
* Copyright (c) 2019-2020 Oak Ridge National Laboratory, UT-Battelle, LLC.
55
* Distributed under an MIT open source license: see LICENSE for details.
66
*/
77

@@ -18,13 +18,13 @@
1818
%define %flc_add_header
1919
%insert("fbegin") %{
2020
! Flibcpp project, https://github.com/swig-fortran/flibcpp
21-
! Copyright (c) 2019 Oak Ridge National Laboratory, UT-Battelle, LLC.
21+
! Copyright (c) 2019-2020 Oak Ridge National Laboratory, UT-Battelle, LLC.
2222
! Distributed under an MIT open source license: see LICENSE for details.
2323
%}
2424
%insert("begin") %{
2525
/*
2626
* Flibcpp project, https://github.com/swig-fortran/flibcpp
27-
* Copyright (c) 2019 Oak Ridge National Laboratory, UT-Battelle, LLC.
27+
* Copyright (c) 2019-2020 Oak Ridge National Laboratory, UT-Battelle, LLC.
2828
* Distributed under an MIT open source license: see LICENSE for details.
2929
*/
3030
%}

include/flc_vector.i

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ namespace std {
8989

9090
%swig_std_vector(std::complex<T>, const std::complex<T>&)
9191
%swig_std_vector_extend_ref(std::complex<T>)
92-
%flc_std_vector_extend_pod(std::complex<T>, SwigComplex_ ## T)
92+
%flc_std_vector_extend_pod(std::complex<T>, SwigComplex_##T)
9393
};
9494
}
9595

src/flc.f90

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
! the SWIG interface file instead.
66

77
! Flibcpp project, https://github.com/swig-fortran/flibcpp
8-
! Copyright (c) 2019 Oak Ridge National Laboratory, UT-Battelle, LLC.
8+
! Copyright (c) 2019-2020 Oak Ridge National Laboratory, UT-Battelle, LLC.
99
! Distributed under an MIT open source license: see LICENSE for details.
1010

1111
module flc

src/flcFORTRAN_wrap.cxx

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
/*
1212
* Flibcpp project, https://github.com/swig-fortran/flibcpp
13-
* Copyright (c) 2019 Oak Ridge National Laboratory, UT-Battelle, LLC.
13+
* Copyright (c) 2019-2020 Oak Ridge National Laboratory, UT-Battelle, LLC.
1414
* Distributed under an MIT open source license: see LICENSE for details.
1515
*/
1616

src/flc_algorithm.f90

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
! the SWIG interface file instead.
66

77
! Flibcpp project, https://github.com/swig-fortran/flibcpp
8-
! Copyright (c) 2019 Oak Ridge National Laboratory, UT-Battelle, LLC.
8+
! Copyright (c) 2019-2020 Oak Ridge National Laboratory, UT-Battelle, LLC.
99
! Distributed under an MIT open source license: see LICENSE for details.
1010

1111
module flc_algorithm

src/flc_algorithmFORTRAN_wrap.cxx

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
/*
1212
* Flibcpp project, https://github.com/swig-fortran/flibcpp
13-
* Copyright (c) 2019 Oak Ridge National Laboratory, UT-Battelle, LLC.
13+
* Copyright (c) 2019-2020 Oak Ridge National Laboratory, UT-Battelle, LLC.
1414
* Distributed under an MIT open source license: see LICENSE for details.
1515
*/
1616

src/flc_map.f90

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
! the SWIG interface file instead.
66

77
! Flibcpp project, https://github.com/swig-fortran/flibcpp
8-
! Copyright (c) 2019 Oak Ridge National Laboratory, UT-Battelle, LLC.
8+
! Copyright (c) 2019-2020 Oak Ridge National Laboratory, UT-Battelle, LLC.
99
! Distributed under an MIT open source license: see LICENSE for details.
1010

1111
module flc_map

src/flc_mapFORTRAN_wrap.cxx

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
/*
1212
* Flibcpp project, https://github.com/swig-fortran/flibcpp
13-
* Copyright (c) 2019 Oak Ridge National Laboratory, UT-Battelle, LLC.
13+
* Copyright (c) 2019-2020 Oak Ridge National Laboratory, UT-Battelle, LLC.
1414
* Distributed under an MIT open source license: see LICENSE for details.
1515
*/
1616

src/flc_random.f90

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
! the SWIG interface file instead.
66

77
! Flibcpp project, https://github.com/swig-fortran/flibcpp
8-
! Copyright (c) 2019 Oak Ridge National Laboratory, UT-Battelle, LLC.
8+
! Copyright (c) 2019-2020 Oak Ridge National Laboratory, UT-Battelle, LLC.
99
! Distributed under an MIT open source license: see LICENSE for details.
1010

1111
module flc_random

src/flc_randomFORTRAN_wrap.cxx

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
/*
1212
* Flibcpp project, https://github.com/swig-fortran/flibcpp
13-
* Copyright (c) 2019 Oak Ridge National Laboratory, UT-Battelle, LLC.
13+
* Copyright (c) 2019-2020 Oak Ridge National Laboratory, UT-Battelle, LLC.
1414
* Distributed under an MIT open source license: see LICENSE for details.
1515
*/
1616

src/flc_set.f90

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
! the SWIG interface file instead.
66

77
! Flibcpp project, https://github.com/swig-fortran/flibcpp
8-
! Copyright (c) 2019 Oak Ridge National Laboratory, UT-Battelle, LLC.
8+
! Copyright (c) 2019-2020 Oak Ridge National Laboratory, UT-Battelle, LLC.
99
! Distributed under an MIT open source license: see LICENSE for details.
1010

1111
module flc_set

src/flc_setFORTRAN_wrap.cxx

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
/*
1212
* Flibcpp project, https://github.com/swig-fortran/flibcpp
13-
* Copyright (c) 2019 Oak Ridge National Laboratory, UT-Battelle, LLC.
13+
* Copyright (c) 2019-2020 Oak Ridge National Laboratory, UT-Battelle, LLC.
1414
* Distributed under an MIT open source license: see LICENSE for details.
1515
*/
1616

src/flc_string.f90

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
! the SWIG interface file instead.
66

77
! Flibcpp project, https://github.com/swig-fortran/flibcpp
8-
! Copyright (c) 2019 Oak Ridge National Laboratory, UT-Battelle, LLC.
8+
! Copyright (c) 2019-2020 Oak Ridge National Laboratory, UT-Battelle, LLC.
99
! Distributed under an MIT open source license: see LICENSE for details.
1010

1111
module flc_string

src/flc_stringFORTRAN_wrap.cxx

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
/*
1212
* Flibcpp project, https://github.com/swig-fortran/flibcpp
13-
* Copyright (c) 2019 Oak Ridge National Laboratory, UT-Battelle, LLC.
13+
* Copyright (c) 2019-2020 Oak Ridge National Laboratory, UT-Battelle, LLC.
1414
* Distributed under an MIT open source license: see LICENSE for details.
1515
*/
1616

src/flc_vector.f90

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
! the SWIG interface file instead.
66

77
! Flibcpp project, https://github.com/swig-fortran/flibcpp
8-
! Copyright (c) 2019 Oak Ridge National Laboratory, UT-Battelle, LLC.
8+
! Copyright (c) 2019-2020 Oak Ridge National Laboratory, UT-Battelle, LLC.
99
! Distributed under an MIT open source license: see LICENSE for details.
1010

1111
module flc_vector

src/flc_vectorFORTRAN_wrap.cxx

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
/*
1212
* Flibcpp project, https://github.com/swig-fortran/flibcpp
13-
* Copyright (c) 2019 Oak Ridge National Laboratory, UT-Battelle, LLC.
13+
* Copyright (c) 2019-2020 Oak Ridge National Laboratory, UT-Battelle, LLC.
1414
* Distributed under an MIT open source license: see LICENSE for details.
1515
*/
1616

0 commit comments

Comments
 (0)