[fiat] branch master updated (9a95d37 -> 724de9d)
Johannes Ring
johannr-guest at moszumanska.debian.org
Thu Dec 1 11:23:56 UTC 2016
This is an automated email from the git hooks/post-receive script.
johannr-guest pushed a change to branch master
in repository fiat.
from 9a95d37 Remove Christophe Prud'homme from Uploaders
new efd57f9 Revert the change that adds Python 3 support for now. Will re-apply again later.
new 6e3b92f Check pgp signature in d/watch
adds 4ee5364 New upstream version 2016.2.0
new 9654956 Merge tag 'upstream/2016.2.0'
new c536b74 Update version number for new upstream version
new 724de9d Ready for upload
The 5 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
.bzrignore | 9 -
.gitignore | 5 -
AUTHORS | 42 ++
ChangeLog | 22 +
FIAT/P0.py | 51 +-
FIAT/__init__.py | 63 +-
FIAT/argyris.py | 126 ++--
FIAT/asci2vtk2d.py | 73 --
FIAT/asci2vtk3d.py | 73 --
FIAT/brezzi_douglas_fortin_marini.py | 123 ++--
FIAT/brezzi_douglas_marini.py | 83 +--
FIAT/bubble.py | 37 +
FIAT/crouzeix_raviart.py | 34 +-
FIAT/discontinuous.py | 95 +++
FIAT/discontinuous_lagrange.py | 63 +-
FIAT/discontinuous_raviart_thomas.py | 63 +-
FIAT/discontinuous_taylor.py | 69 ++
FIAT/dual_set.py | 46 +-
FIAT/enriched.py | 174 +++++
FIAT/expansions.py | 164 ++---
FIAT/finite_element.py | 261 +++++--
FIAT/functional.py | 263 +++----
FIAT/gauss_legendre.py | 44 ++
FIAT/gauss_lobatto_legendre.py | 45 ++
FIAT/hdiv_trace.py | 285 +++++++
FIAT/hdivcurl.py | 267 +++++++
FIAT/hellan_herrmann_johnson.py | 110 +++
FIAT/hermite.py | 62 +-
FIAT/jacobi.py | 73 +-
FIAT/lagrange.py | 59 +-
FIAT/makelags.py | 60 --
FIAT/morley.py | 49 +-
FIAT/nedelec.py | 314 ++++----
FIAT/nedelec_second_kind.py | 71 +-
FIAT/newdubiner.py | 254 -------
FIAT/nodal_enriched.py | 143 ++++
FIAT/orthopoly.py | 384 ++++++++++
FIAT/polynomial_set.py | 146 ++--
FIAT/quadrature.py | 310 ++++----
FIAT/quadrature_schemes.py | 307 ++++++++
FIAT/raviart_thomas.py | 180 +++--
FIAT/reference_element.py | 942 +++++++++++++++++-------
FIAT/regge.py | 253 ++-----
FIAT/restricted.py | 126 ++++
FIAT/tabarg.py | 51 --
FIAT/tablag.py | 33 -
FIAT/tensor_product.py | 368 +++++++++
FIAT/trace.py | 269 -------
FIAT/transform_hermite.py | 71 --
FIAT/transform_morley.py | 103 ---
MANIFEST | 32 -
README => README.rst | 46 +-
debian/changelog | 9 +-
debian/control | 22 +-
debian/rules | 8 +-
debian/upstream/signing-key.asc | 121 +++
debian/watch | 2 +-
doc/fenicsmanual.cls | 100 ---
doc/sphinx/Makefile | 177 +++++
doc/sphinx/requirements.txt | 2 +
doc/sphinx/source/conf.py | 292 ++++++++
doc/sphinx/source/index.rst | 37 +
doc/sphinx/source/installation.rst | 49 ++
doc/{manual.tex => sphinx/source/manual.rst} | 80 +-
doc/sphinx/source/releases.rst | 13 +
doc/sphinx/source/releases/next.rst | 47 ++
doc/sphinx/source/releases/v1.6.0.rst | 8 +
doc/sphinx/source/releases/v2016.1.0.rst | 7 +
release.conf | 5 -
setup.cfg | 7 +
setup.py | 6 +-
test/README | 6 +
FIAT/factorial.py => test/conftest.py | 16 +-
test/regression/.gitignore | 1 -
test/regression/README.rst | 18 +-
test/regression/conftest.py | 47 ++
test/regression/fiat-reference-data-id | 2 +-
test/regression/scripts/getreferencerepo | 4 +-
test/regression/scripts/parameters | 2 +-
test/regression/{test.py => test_regression.py} | 224 ++----
test/test.py | 48 --
test/unit/test.py | 66 --
test/unit/test_discontinuous_taylor.py | 51 ++
test/unit/test_facet_support_dofs.py | 164 +++++
test/unit/test_fiat.py | 308 ++++++++
test/unit/test_gauss_legendre.py | 49 ++
test/unit/test_gauss_lobatto_legendre.py | 49 ++
test/unit/test_hdivtrace.py | 111 +++
test/unit/test_quadrature.py | 195 +++++
test/unit/test_reference_element.py | 101 +++
test/unit/test_regge_hhj.py | 24 +
test/unit/test_tensor_product.py | 527 +++++++++++++
92 files changed, 7067 insertions(+), 3334 deletions(-)
delete mode 100644 .bzrignore
delete mode 100644 .gitignore
delete mode 100644 FIAT/asci2vtk2d.py
delete mode 100644 FIAT/asci2vtk3d.py
create mode 100644 FIAT/bubble.py
create mode 100644 FIAT/discontinuous.py
create mode 100644 FIAT/discontinuous_taylor.py
create mode 100644 FIAT/enriched.py
create mode 100644 FIAT/gauss_legendre.py
create mode 100644 FIAT/gauss_lobatto_legendre.py
create mode 100644 FIAT/hdiv_trace.py
create mode 100644 FIAT/hdivcurl.py
create mode 100644 FIAT/hellan_herrmann_johnson.py
delete mode 100644 FIAT/makelags.py
delete mode 100644 FIAT/newdubiner.py
create mode 100644 FIAT/nodal_enriched.py
create mode 100644 FIAT/orthopoly.py
create mode 100644 FIAT/quadrature_schemes.py
create mode 100644 FIAT/restricted.py
delete mode 100644 FIAT/tabarg.py
delete mode 100644 FIAT/tablag.py
create mode 100644 FIAT/tensor_product.py
delete mode 100644 FIAT/trace.py
delete mode 100644 FIAT/transform_hermite.py
delete mode 100644 FIAT/transform_morley.py
delete mode 100644 MANIFEST
rename README => README.rst (54%)
create mode 100644 debian/upstream/signing-key.asc
delete mode 100644 doc/fenicsmanual.cls
create mode 100644 doc/sphinx/Makefile
create mode 100644 doc/sphinx/requirements.txt
create mode 100644 doc/sphinx/source/conf.py
create mode 100644 doc/sphinx/source/index.rst
create mode 100644 doc/sphinx/source/installation.rst
rename doc/{manual.tex => sphinx/source/manual.rst} (85%)
create mode 100644 doc/sphinx/source/releases.rst
create mode 100644 doc/sphinx/source/releases/next.rst
create mode 100644 doc/sphinx/source/releases/v1.6.0.rst
create mode 100644 doc/sphinx/source/releases/v2016.1.0.rst
delete mode 100644 release.conf
create mode 100644 setup.cfg
create mode 100644 test/README
rename FIAT/factorial.py => test/conftest.py (65%)
delete mode 100644 test/regression/.gitignore
create mode 100644 test/regression/conftest.py
rename test/regression/{test.py => test_regression.py} (62%)
delete mode 100644 test/test.py
delete mode 100644 test/unit/test.py
create mode 100644 test/unit/test_discontinuous_taylor.py
create mode 100644 test/unit/test_facet_support_dofs.py
create mode 100644 test/unit/test_fiat.py
create mode 100644 test/unit/test_gauss_legendre.py
create mode 100644 test/unit/test_gauss_lobatto_legendre.py
create mode 100644 test/unit/test_hdivtrace.py
create mode 100644 test/unit/test_quadrature.py
create mode 100644 test/unit/test_reference_element.py
create mode 100644 test/unit/test_regge_hhj.py
create mode 100644 test/unit/test_tensor_product.py
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/fenics/fiat.git
More information about the debian-science-commits
mailing list