From 7f84fa2a98fd835c44184c6d7aad8e46d1a5ed46 Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Thu, 30 Aug 2018 08:05:32 +0200 Subject: [PATCH] Initial metafiles --- .gitignore | 59 +++++++++++++++++++++++++++++++++++++++++++++++++ .travis.yml | 38 +++++++++++++++++++++++++++++++ CONTRIBUTING.md | 7 ++++++ README.md | 12 ++++++++++ 4 files changed, 116 insertions(+) create mode 100644 .gitignore create mode 100644 .travis.yml create mode 100644 CONTRIBUTING.md create mode 100644 README.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f7f8a40 --- /dev/null +++ b/.gitignore @@ -0,0 +1,59 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] + +# C extensions +*.so + +# Distribution / packaging +.Python +env/ +bin/ +build/ +develop-eggs/ +dist/ +eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +*.egg-info/ +.installed.cfg +*.egg + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.coverage +.cache +nosetests.xml +coverage.xml + +# Translations +*.mo + +# Pycharm +.idea + +# Mr Developer +.mr.developer.cfg +.project +.pydevproject + +# Rope +.ropeproject + +# Sphinx documentation +docs/_build/ + +# Backup files +*~ +*.swp + +# OSX Files +*.DS_Store diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..20039f7 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,38 @@ +language: python +sudo: false +cache: pip + +python: + - "2.7" + +addons: + apt: + packages: + - expect-dev # provides unbuffer utility + - python-lxml # because pip installation is slow + - python-simplejson + - python-serial + - python-yaml + +env: + global: + - VERSION="8.0" TESTS="0" LINT_CHECK="0" TRANSIFEX="0" + + matrix: + - LINT_CHECK="1" + - TESTS="1" ODOO_REPO="odoo/odoo" + - TESTS="1" ODOO_REPO="OCA/OCB" MAKEPOT="1" + +virtualenv: + system_site_packages: true + +install: + - git clone --depth=1 https://github.com/OCA/maintainer-quality-tools.git ${HOME}/maintainer-quality-tools + - export PATH=${HOME}/maintainer-quality-tools/travis:${PATH} + - travis_install_nightly + +script: + - travis_run_tests + +after_success: + - travis_after_tests_success diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..92d051b --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,7 @@ +# OCA Guidelines + +Please follow the official guide from the [OCA Guidelines page](https://github.com/OCA/maintainer-tools/blob/master/CONTRIBUTING.md). + +## Project Specific Guidelines + +This project does not have specific coding guidelines. diff --git a/README.md b/README.md new file mode 100644 index 0000000..8a9b8f7 --- /dev/null +++ b/README.md @@ -0,0 +1,12 @@ +[![Runbot Status](https://runbot.odoo-community.org/runbot/badge/flat/263/8.0.svg)](https://runbot.odoo-community.org/runbot/repo/github-com-oca-data-protection-263) +[![Build Status](https://travis-ci.org/OCA/data-protection.svg?branch=8.0)](https://travis-ci.org/OCA/data-protection) + +# Data Protection + +Odoo modules for data protection (like GDPR). + +---- + +OCA, or the [Odoo Community Association](http://odoo-community.org/), is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use.