From ace5e2182d1bb792f96127bd6a4d8f285041fddd7a86818abf50ced2296617f7 Mon Sep 17 00:00:00 2001 From: Matej Cepl Date: Mon, 5 Dec 2022 17:18:56 +0000 Subject: [PATCH 1/2] Accepting request 1039697 from home:yarunachalam:branches:devel:languages:python - Update to version 1.4.16 * Fix #46 - utf8 support - Update to version 1.4.15 * Add option to truncate existing tables before inserting data - Update to version 1.4.14 * Fix safe_identifier_length - Update to version 1.4.13 * Add option to update duplicate records OBS-URL: https://build.opensuse.org/request/show/1039697 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-sqlite3-to-mysql?expand=0&rev=6 --- python-sqlite3-to-mysql.changes | 15 +++++++++++++++ python-sqlite3-to-mysql.spec | 4 ++-- sqlite3-to-mysql-1.4.1.tar.gz | 3 --- sqlite3-to-mysql-1.4.16.tar.gz | 3 +++ 4 files changed, 20 insertions(+), 5 deletions(-) delete mode 100644 sqlite3-to-mysql-1.4.1.tar.gz create mode 100644 sqlite3-to-mysql-1.4.16.tar.gz diff --git a/python-sqlite3-to-mysql.changes b/python-sqlite3-to-mysql.changes index f334b56..5a2a153 100644 --- a/python-sqlite3-to-mysql.changes +++ b/python-sqlite3-to-mysql.changes @@ -1,3 +1,18 @@ +------------------------------------------------------------------- +Sat Dec 3 01:01:44 UTC 2022 - Yogalakshmi Arunachalam + +- Update to version 1.4.16 + * Fix #46 - utf8 support + +- Update to version 1.4.15 + * Add option to truncate existing tables before inserting data + +- Update to version 1.4.14 + * Fix safe_identifier_length + +- Update to version 1.4.13 + * Add option to update duplicate records + ------------------------------------------------------------------- Mon Jun 21 10:13:44 UTC 2021 - Jan Engelhardt diff --git a/python-sqlite3-to-mysql.spec b/python-sqlite3-to-mysql.spec index b6fa8f1..fa5f72f 100644 --- a/python-sqlite3-to-mysql.spec +++ b/python-sqlite3-to-mysql.spec @@ -1,7 +1,7 @@ # # spec file for package python-sqlite3-to-mysql # -# Copyright (c) 2021 SUSE LLC +# Copyright (c) 2022 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -18,7 +18,7 @@ %define skip_python2 1 Name: python-sqlite3-to-mysql -Version: 1.4.1 +Version: 1.4.16 Release: 0 Summary: A Python tool to transfer data from SQLite 3 to MySQL License: MIT diff --git a/sqlite3-to-mysql-1.4.1.tar.gz b/sqlite3-to-mysql-1.4.1.tar.gz deleted file mode 100644 index 6931be3..0000000 --- a/sqlite3-to-mysql-1.4.1.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ccb48c1c584eac5c1126119eebfa4b1daa6b936f3806d89f398fcc4c1d700c04 -size 29334 diff --git a/sqlite3-to-mysql-1.4.16.tar.gz b/sqlite3-to-mysql-1.4.16.tar.gz new file mode 100644 index 0000000..380f14e --- /dev/null +++ b/sqlite3-to-mysql-1.4.16.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62f72df2b3fa0f01482958c5641391bede57009941fc1f15d508db943495ff80 +size 33300 From 43d46acfc93fd00144756f029ef53648b308a6cdf1b536c5e34a5caabf4940c8 Mon Sep 17 00:00:00 2001 From: Matej Cepl Date: Mon, 5 Dec 2022 17:23:26 +0000 Subject: [PATCH 2/2] Clean up SPEC file OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-sqlite3-to-mysql?expand=0&rev=7 --- python-sqlite3-to-mysql.spec | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/python-sqlite3-to-mysql.spec b/python-sqlite3-to-mysql.spec index fa5f72f..7c23732 100644 --- a/python-sqlite3-to-mysql.spec +++ b/python-sqlite3-to-mysql.spec @@ -26,15 +26,25 @@ URL: https://github.com/techouse/sqlite3-to-mysql Source: https://files.pythonhosted.org/packages/source/s/sqlite3-to-mysql/sqlite3-to-mysql-%{version}.tar.gz BuildRequires: %{python_module setuptools} BuildRequires: docker +BuildRequires: fdupes BuildRequires: python-rpm-macros BuildRequires: python3-SQLAlchemy BuildRequires: python3-SQLAlchemy-Utils BuildRequires: python3-docker BuildRequires: python3-factory_boy BuildRequires: python3-pytest-timeout +Requires: python-click >= 7.0 +Requires: python-mysql-connector-python >= 8.0.18 +Requires: python-packaging >= 20.3 +Requires: python-pytimeparse >= 1.1.8 +Requires: python-simplejson >= 3.16.0 +Requires: python-six >= 1.12.0 +Requires: python-tabulate +Requires: python-tqdm >= 4.35.0 +BuildArch: noarch # SECTION test requirements -BuildRequires: %{python_module click >= 7.0} BuildRequires: %{python_module Sphinx} +BuildRequires: %{python_module click >= 7.0} BuildRequires: %{python_module coverage} BuildRequires: %{python_module ddt} BuildRequires: %{python_module flake8} @@ -48,16 +58,6 @@ BuildRequires: %{python_module sphinxcontrib-programoutput} BuildRequires: %{python_module tabulate} BuildRequires: %{python_module tqdm >= 4.35.0} # /SECTION -BuildRequires: fdupes -Requires: python-click >= 7.0 -Requires: python-mysql-connector-python >= 8.0.18 -Requires: python-packaging >= 20.3 -Requires: python-pytimeparse >= 1.1.8 -Requires: python-simplejson >= 3.16.0 -Requires: python-six >= 1.12.0 -Requires: python-tabulate -Requires: python-tqdm >= 4.35.0 -BuildArch: noarch %python_subpackages %description @@ -84,6 +84,7 @@ A Python tool to transfer data from SQLite 3 to MySQL %doc README.md %license LICENSE %python_alternative %{_bindir}/sqlite3mysql -%{python_sitelib}/* +%{python_sitelib}/sqlite3_to_mysql-%{version}*-info +%{python_sitelib}/sqlite3_to_mysql %changelog