From 9460b067efa7f423fd07b314f9138b79cab39d77 Mon Sep 17 00:00:00 2001 From: Srivats P Date: Sun, 14 Apr 2024 11:49:37 +0530 Subject: [PATCH] Remove dot files --- .github/CODE_OF_CONDUCT.md | 76 -------------------------------------- .github/CONTRIBUTING.md | 16 -------- .github/FUNDING.yml | 1 - .gitignore | 38 ------------------- .travis.yml | 49 ------------------------ .vimrc | 5 --- 6 files changed, 185 deletions(-) delete mode 100644 .github/CODE_OF_CONDUCT.md delete mode 100644 .github/CONTRIBUTING.md delete mode 100644 .github/FUNDING.yml delete mode 100644 .gitignore delete mode 100644 .travis.yml delete mode 100644 .vimrc diff --git a/.github/CODE_OF_CONDUCT.md b/.github/CODE_OF_CONDUCT.md deleted file mode 100644 index 48bd82ee..00000000 --- a/.github/CODE_OF_CONDUCT.md +++ /dev/null @@ -1,76 +0,0 @@ -# Contributor Covenant Code of Conduct - -## Our Pledge - -In the interest of fostering an open and welcoming environment, we as -contributors and maintainers pledge to making participation in our project and -our community a harassment-free experience for everyone, regardless of age, body -size, disability, ethnicity, sex characteristics, gender identity and expression, -level of experience, education, socio-economic status, nationality, personal -appearance, race, religion, or sexual identity and orientation. - -## Our Standards - -Examples of behavior that contributes to creating a positive environment -include: - -* Using welcoming and inclusive language -* Being respectful of differing viewpoints and experiences -* Gracefully accepting constructive criticism -* Focusing on what is best for the community -* Showing empathy towards other community members - -Examples of unacceptable behavior by participants include: - -* The use of sexualized language or imagery and unwelcome sexual attention or - advances -* Trolling, insulting/derogatory comments, and personal or political attacks -* Public or private harassment -* Publishing others' private information, such as a physical or electronic - address, without explicit permission -* Other conduct which could reasonably be considered inappropriate in a - professional setting - -## Our Responsibilities - -Project maintainers are responsible for clarifying the standards of acceptable -behavior and are expected to take appropriate and fair corrective action in -response to any instances of unacceptable behavior. - -Project maintainers have the right and responsibility to remove, edit, or -reject comments, commits, code, wiki edits, issues, and other contributions -that are not aligned to this Code of Conduct, or to ban temporarily or -permanently any contributor for other behaviors that they deem inappropriate, -threatening, offensive, or harmful. - -## Scope - -This Code of Conduct applies both within project spaces and in public spaces -when an individual is representing the project or its community. Examples of -representing a project or community include using an official project e-mail -address, posting via an official social media account, or acting as an appointed -representative at an online or offline event. Representation of a project may be -further defined and clarified by project maintainers. - -## Enforcement - -Instances of abusive, harassing, or otherwise unacceptable behavior may be -reported by contacting the project team at support@ostinato.org. All -complaints will be reviewed and investigated and will result in a response that -is deemed necessary and appropriate to the circumstances. The project team is -obligated to maintain confidentiality with regard to the reporter of an incident. -Further details of specific enforcement policies may be posted separately. - -Project maintainers who do not follow or enforce the Code of Conduct in good -faith may face temporary or permanent repercussions as determined by other -members of the project's leadership. - -## Attribution - -This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, -available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html - -[homepage]: https://www.contributor-covenant.org - -For answers to common questions about this code of conduct, see -https://www.contributor-covenant.org/faq diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md deleted file mode 100644 index 91d572d2..00000000 --- a/.github/CONTRIBUTING.md +++ /dev/null @@ -1,16 +0,0 @@ -# Contributing Guidelines -Please use a Pull Request to contribute code. Very small fixes (< 10 lines) can provide the diff via an issue instead of a PR. - -In either case, you agree to the below legal terms and you indicate your acceptance by explicitly adding a comment to the issue or PR stating - - -``` -I have read the contributing guidelines (CONTRIBUTING.md) and I hereby assign the copyrights of these -changes to [Srivats P](https://github.com/pstavirs). -``` - -## Legal -By submitting a Pull Request, you disavow any rights or claims to any changes submitted to the Ostinato project and assign the copyright of those changes to [Srivats P](https://github.com/pstavirs). - -If you cannot or do not want to reassign those rights (your employment contract for your employer may not allow this), you should not submit a PR. Open an issue and someone else can do the work. - -This is a legal way of saying "_If you submit a PR to us, that code becomes ours_". 99.9% of the time that's what you intend anyways; we hope it doesn't scare you away from contributing. diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml deleted file mode 100644 index 1ad237f2..00000000 --- a/.github/FUNDING.yml +++ /dev/null @@ -1 +0,0 @@ -github: pstavirs diff --git a/.gitignore b/.gitignore deleted file mode 100644 index c44e8cf5..00000000 --- a/.gitignore +++ /dev/null @@ -1,38 +0,0 @@ -# generated object files -*.pyc -*.o -*.a -*.dll -*.so -*.exe -*.app -drone -ostinato - -# Qt generated files -ui_*.h -moc_*.h -moc_*.cpp -qrc_*.cpp - -# QMake generated files -Makefile* -*\object_script.* -.qmake.stash - -# protobuf generated files -*.pb.h -*.pb.cc -*_pb2.py - -# ostinato generated files -version.cpp -pkg_info.json - -# vim swap files -*.swp -.DS_Store - -# ctags/cscope -tags -cscope.out diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 014b74fa..00000000 --- a/.travis.yml +++ /dev/null @@ -1,49 +0,0 @@ -language: cpp -osx_image: xcode11.3 - -os: - - linux - - osx - -compiler: - - gcc - - clang - -matrix: - exclude: - - os: osx - compiler: gcc - -before_script: - - "if [ $TRAVIS_OS_NAME = 'osx' ]; then \ - ls -lR /usr/local/include/google/protobuf; \ - which clang++; \ - clang++ -E -x c++ - -v < /dev/null; \ - export CPLUS_INCLUDE_PATH=/usr/local/include; \ - export LIBRARY_PATH=/usr/local/lib; \ - export PATH=/usr/local/opt/qt/bin:$PATH; \ - fi" - -addons: - apt: - packages: - - qtbase5-dev - - qtscript5-dev - - libqt5svg5-dev - - libpcap-dev - - libprotobuf-dev - - protobuf-compiler - - libnl-3-dev - - libnl-route-3-dev - homebrew: - packages: - - qt5 - - protobuf -script: - - QT_SELECT=qt5 qmake -config debug - - make - -notifications: - email: - - secure: "LUIBAz/phzOdxlnFuoC6hfNfl3HAGYTkacVfLu0GsrOgNBhqPqsRszhdFuX/kEdGb18GIcqCQn4tLfFVD9YyjZKFCTjjfTEaUlbHYrear4VU6HihBvhu4I+F8nffJ9y77kyZhUfC9RdgTwWEVdwYMi3rjIK8UggPVV1s/FyE2t+UAjmzdGPAb6uxu9znYpldKtY9FosqccPe7tB5uLLcdbX6ojvsOH7lyQPLclFFS7F2yM9nNNxnRwl1v4KlN6vYwBF2scKB8altEMEGnLJKB41S6piVWyQlXc8FotGJf4fg/6lwmKWBzT/aIw8UH8cxJW2q3sHmdcf/nBhSKojLN5HNIQOJ45Xfw0MKQy2uXGHG15DzYRKjsw6zdb7oVJJCVDiwh1wDvfExgJwpIZJuNsMaGEbSo/TxN+6iPaCf2iyFaCW/KkBt5gmcgck2dA0Xc8qd0z3Zjii7cvuM8awrsmtE7UuX7M/lV9M8w5EaYjhr0R2NwgqvRa0hQv+1Ycec/1eVVfMCMFWNsxmVSkQFFbFP2db195axMzeU13G8RIbPY3JsIUEGw1ykj4nXiH77CLYRfZuKvomjhBkzE+P+EyIxRMH65M4zO9lO7SW01hrHty60jKajt5ljPI5AfuKAFHQvoLOwEMwLwbtEy/ggI/SRAXjsKJbueTHaI4719Gg=" - diff --git a/.vimrc b/.vimrc deleted file mode 100644 index fd280045..00000000 --- a/.vimrc +++ /dev/null @@ -1,5 +0,0 @@ -set shiftwidth=4 -set tabstop=8 -set softtabstop=4 -set expandtab -set cindent