Package: tango / 9.3.4+dfsg1-2+deb12u1

Metadata

Package Version Patches format
tango 9.3.4+dfsg1-2+deb12u1 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
0001 debian fix_database_scripts.patch | (download)

cppserver/database/create_db.sql.in | 7 2 + 5 - 0 !
1 file changed, 2 insertions(+), 5 deletions(-)

 debian/fix_database_scripts
MIME-Version: 1.0
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 8bit

update the database creation script to deal with the debian path

Signed-off-by: Picca Frdric-Emmanuel <picca@synchrotron-soleil.fr>

0002 debian my.cnf.in.patch | (download)

configure.ac | 1 1 + 0 - 0 !
cppserver/database/my.cnf.in | 515 515 + 0 - 0 !
2 files changed, 516 insertions(+)

 debian/my.cnf.in
MIME-Version: 1.0
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 8bit

set the right parameters for the mysql configuration file

Signed-off-by: Picca Frdric-Emmanuel <picca@synchrotron-soleil.fr>

0003 doc not install doc with make install.patch | (download)

doc/Makefile.am | 2 1 + 1 - 0 !
1 file changed, 1 insertion(+), 1 deletion(-)

 doc not install doc with make install

this way we can install the doc only during the non-arch part

0001 Fix timestamp columns in Mariadb 10.11 and newer.patch | (download)

cppserver/database/create_db_tables.sql.in | 14 7 + 7 - 0 !
1 file changed, 7 insertions(+), 7 deletions(-)

 [patch] fix timestamp columns in mariadb 10.11 and newer
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

This problem appears in MariaDb 10.11 since default value of
explicit_defaults_for_timestamp changed from OFF to ON, setting it to
OFF (set global explicit_defaults_for_timestamp=OFF;) make the
create_db_tables.sql.in work properly.

Initial patch by Santiago Ruano Rincn with refinements by Graziano
Scalamera.

Upgrade script and tests by the author.