From c1d773128a21fd8e8bd144f6e11017dc39c4007c Mon Sep 17 00:00:00 2001 From: Denis Roussel Date: Wed, 26 Oct 2022 14:56:33 +0200 Subject: [PATCH] [REM] stock_package_type_button_box: Make it uninstallable as in core Since https://github.com/odoo/odoo/commit/de87a78e0988cd7a1aa05f10ef7bc9170d9dad14, this is not necesarry anymore --- .pre-commit-config.yaml | 1 + .../odoo/addons/stock_package_type_button_box | 1 - setup/stock_package_type_button_box/setup.py | 6 ------ stock_package_type_button_box/__manifest__.py | 3 ++- 4 files changed, 3 insertions(+), 8 deletions(-) delete mode 120000 setup/stock_package_type_button_box/odoo/addons/stock_package_type_button_box delete mode 100644 setup/stock_package_type_button_box/setup.py diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 2d2ee8222..06dcaa6a2 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,6 +1,7 @@ exclude: | (?x) # NOT INSTALLABLE ADDONS + ^stock_package_type_button_box/| # END NOT INSTALLABLE ADDONS # Files and folders generated by bots, to avoid loops ^setup/|/static/description/index\.html$| diff --git a/setup/stock_package_type_button_box/odoo/addons/stock_package_type_button_box b/setup/stock_package_type_button_box/odoo/addons/stock_package_type_button_box deleted file mode 120000 index 6c5e2167a..000000000 --- a/setup/stock_package_type_button_box/odoo/addons/stock_package_type_button_box +++ /dev/null @@ -1 +0,0 @@ -../../../../stock_package_type_button_box \ No newline at end of file diff --git a/setup/stock_package_type_button_box/setup.py b/setup/stock_package_type_button_box/setup.py deleted file mode 100644 index 28c57bb64..000000000 --- a/setup/stock_package_type_button_box/setup.py +++ /dev/null @@ -1,6 +0,0 @@ -import setuptools - -setuptools.setup( - setup_requires=['setuptools-odoo'], - odoo_addon=True, -) diff --git a/stock_package_type_button_box/__manifest__.py b/stock_package_type_button_box/__manifest__.py index 935b628d6..ccdc7bc58 100644 --- a/stock_package_type_button_box/__manifest__.py +++ b/stock_package_type_button_box/__manifest__.py @@ -4,7 +4,7 @@ { "name": "Stock Package Type Button Box", "summary": """ - This module is a technical module that allows to fill in a button box + DEPRECATED - This module is a technical module that allows to fill in a button box for Stock Package Type form view""", "version": "16.0.1.0.0", "license": "AGPL-3", @@ -12,6 +12,7 @@ "maintainers": ["rousseldenis"], "website": "https://github.com/OCA/stock-logistics-warehouse", "depends": ["stock"], + "installable": False, "data": [ "views/stock_package_type.xml", ],