You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ponymail.apache.org by hu...@apache.org on 2020/08/12 12:36:46 UTC

[incubator-ponymail-foal] branch master created (now 99d0309)

This is an automated email from the ASF dual-hosted git repository.

humbedooh pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-ponymail-foal.git.


      at 99d0309  Start working on a travis test file

This branch includes the following new commits:

     new 9f73aab  Initial readme
     new 622ef3d  Add .gitignore
     new 99d0309  Start working on a travis test file

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[incubator-ponymail-foal] 01/03: Initial readme

Posted by hu...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

humbedooh pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-ponymail-foal.git

commit 9f73aab8c8814ccffc568246f5a4eac6a5f995df
Author: Daniel Gruno <hu...@apache.org>
AuthorDate: Wed Aug 12 14:18:39 2020 +0200

    Initial readme
---
 README.md | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/README.md b/README.md
new file mode 100644
index 0000000..15e9c7d
--- /dev/null
+++ b/README.md
@@ -0,0 +1,5 @@
+# Apache Pony Mail Foal
+_Next generation suite of services and tools for Apache Pony Mail_
+
+This repository aims to contain the next generation of Apache Pony Mail,
+a pure python version of Apache Pony Mail with support for ElasticSearch 7.x and above.


[incubator-ponymail-foal] 03/03: Start working on a travis test file

Posted by hu...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

humbedooh pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-ponymail-foal.git

commit 99d0309366d803f5eb3c33251b46768f5f885b59
Author: Daniel Gruno <hu...@apache.org>
AuthorDate: Wed Aug 12 14:27:42 2020 +0200

    Start working on a travis test file
---
 .travis.yml | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..4e5b2ab
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,14 @@
+language: python
+python:
+  - "3.8"
+  - "3.9-dev"
+  - "nightly"
+before_install:
+  - git clone https://github.com/apache/incubator-ponymail-unit-tests.git tests
+
+install:
+  - pip install -r requirements.txt
+
+script:
+  - cd tests && python3 runall.py --rootdir ../
+


[incubator-ponymail-foal] 02/03: Add .gitignore

Posted by hu...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

humbedooh pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-ponymail-foal.git

commit 622ef3dd4bd3957ea470b2222194edc38e3638a3
Author: Daniel Gruno <hu...@apache.org>
AuthorDate: Wed Aug 12 14:19:08 2020 +0200

    Add .gitignore
---
 .gitignore | 132 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 132 insertions(+)

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..c5be0fa
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,132 @@
+# Byte-compiled / optimized / DLL files
+__pycache__/
+*.py[cod]
+*$py.class
+
+# C extensions
+*.so
+
+# Distribution / packaging
+.Python
+build/
+develop-eggs/
+dist/
+downloads/
+eggs/
+.eggs/
+lib/
+lib64/
+parts/
+sdist/
+var/
+wheels/
+pip-wheel-metadata/
+share/python-wheels/
+*.egg-info/
+.installed.cfg
+*.egg
+MANIFEST
+
+# PyInstaller
+#  Usually these files are written by a python script from a template
+#  before PyInstaller builds the exe, so as to inject date/other infos into it.
+*.manifest
+*.spec
+
+# Installer logs
+pip-log.txt
+pip-delete-this-directory.txt
+
+# Unit test / coverage reports
+htmlcov/
+.tox/
+.nox/
+.coverage
+.coverage.*
+.cache
+nosetests.xml
+coverage.xml
+*.cover
+*.py,cover
+.hypothesis/
+.pytest_cache/
+
+# Translations
+*.mo
+*.pot
+
+# Django stuff:
+*.log
+local_settings.py
+db.sqlite3
+db.sqlite3-journal
+
+# Flask stuff:
+instance/
+.webassets-cache
+
+# Scrapy stuff:
+.scrapy
+
+# Sphinx documentation
+docs/_build/
+
+# PyBuilder
+target/
+
+# Jupyter Notebook
+.ipynb_checkpoints
+
+# IPython
+profile_default/
+ipython_config.py
+
+# pyenv
+.python-version
+
+# pipenv
+#   According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
+#   However, in case of collaboration, if having platform-specific dependencies or dependencies
+#   having no cross-platform support, pipenv may install dependencies that don't work, or not
+#   install all needed dependencies.
+#Pipfile.lock
+
+# PEP 582; used by e.g. github.com/David-OConnor/pyflow
+__pypackages__/
+
+# Celery stuff
+celerybeat-schedule
+celerybeat.pid
+
+# SageMath parsed files
+*.sage.py
+
+# Environments
+.env
+.venv
+env/
+venv/
+ENV/
+env.bak/
+venv.bak/
+
+# Spyder project settings
+.spyderproject
+.spyproject
+
+# Rope project settings
+.ropeproject
+
+# mkdocs documentation
+/site
+
+# mypy
+.mypy_cache/
+.dmypy.json
+dmypy.json
+
+# Pyre type checker
+.pyre/
+
+# PyCharm files
+.idea/