diff --git a/CMakeLists.txt b/CMakeLists.txt index 284d93f6..1fb191f9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.16) # Initialize the CMake project. project(Trexio - VERSION 2.2.2 + VERSION 2.2.3 DESCRIPTION "TREX I/O library" LANGUAGES C Fortran ) diff --git a/Makefile.am b/Makefile.am index c05072dc..97f9010f 100644 --- a/Makefile.am +++ b/Makefile.am @@ -37,7 +37,7 @@ CLEANFILES = trexio.mod if HAVE_FORTRAN BUILT_SOURCES = trexio.mod else -BUILT_SOURCES = +BUILT_SOURCES = endif EXTRA_DIST = .git_hash @@ -182,6 +182,28 @@ $(HTML_TANGLED): $(htmlizer) html-local: $(dist_html_DATA) doc: html-local +# =============== DEBIAN =============== # + +# Include files needed to produce the debian package. +DEB_FILES = \ + helpers-debian/changelog \ + helpers-debian/compat \ + helpers-debian/control \ + helpers-debian/copyright \ + helpers-debian/rules \ + helpers-debian/source \ + helpers-debian/libtrexio0.install \ + helpers-debian/libtrexio-dev.install \ + helpers-debian/source \ + helpers-debian/README.source + +EXTRA_DIST += $(DEB_FILES) + +debian_from_dist: $(DEB_FILES) $(SOURCES) $(trexio_h) + cp ../trexio-$(PACKAGE_VERSION).tar.gz ../libtrexio_$(PACKAGE_VERSION).orig.tar.gz + debuild + + # =============== DEVELOPER MODE =============== # SWIG = @SWIG@ @@ -290,23 +312,6 @@ $(numpy_i): check-numpy: cd tools && ./check_numpy_i.sh -# Include files needed to produce the debian package. -DEB_FILES = \ - helpers-debian/changelog \ - helpers-debian/compat \ - helpers-debian/control \ - helpers-debian/copyright \ - helpers-debian/rules \ - helpers-debian/source \ - helpers-debian/libtrexio0.install \ - helpers-debian/libtrexio-dev.install \ - helpers-debian/source \ - helpers-debian/README.source - -debian_from_dist: $(DEB_FILES) $(SOURCES) $(trexio_h) - cp ../trexio-$(PACKAGE_VERSION).tar.gz ../libtrexio_$(PACKAGE_VERSION).orig.tar.gz - debuild - CLEANFILES += $(pytrexio_c) \ $(pytrexio_py) \ diff --git a/configure.ac b/configure.ac index a130be34..6242ac93 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.69]) -AC_INIT([trexio],[2.2.2],[https://github.com/TREX-CoE/trexio/issues]) +AC_INIT([trexio],[2.2.3],[https://github.com/TREX-CoE/trexio/issues]) AC_CONFIG_SRCDIR([Makefile.in]) AC_CONFIG_HEADERS([include/config.h])