{"id":17998713,"url":"https://github.com/zer0-one/praetor","last_synced_at":"2025-03-26T05:30:54.651Z","repository":{"id":83080889,"uuid":"50918388","full_name":"Zer0-One/praetor","owner":"Zer0-One","description":"A free and open source IRC bot, designed to be robust, portable, and easily extensible","archived":false,"fork":false,"pushed_at":"2019-01-29T06:15:33.000Z","size":183,"stargazers_count":7,"open_issues_count":3,"forks_count":2,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-03-21T06:41:41.901Z","etag":null,"topics":["c","c99","irc","irc-bot","plugins","portable","posix"],"latest_commit_sha":null,"homepage":null,"language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Zer0-One.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE/LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-02-02T12:14:56.000Z","updated_at":"2022-01-06T20:07:04.000Z","dependencies_parsed_at":null,"dependency_job_id":"94b4987b-f97b-4220-8445-3a31993bcae3","html_url":"https://github.com/Zer0-One/praetor","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Zer0-One%2Fpraetor","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Zer0-One%2Fpraetor/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Zer0-One%2Fpraetor/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Zer0-One%2Fpraetor/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Zer0-One","download_url":"https://codeload.github.com/Zer0-One/praetor/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245597193,"owners_count":20641859,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["c","c99","irc","irc-bot","plugins","portable","posix"],"created_at":"2024-10-29T21:28:27.101Z","updated_at":"2025-03-26T05:30:54.637Z","avatar_url":"https://github.com/Zer0-One.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# praetor\n\n[Building](https://github.com/Zer0-One/praetor#Building)\n| [Reporting Bugs](https://github.com/Zer0-One/praetor/wiki/Writing-Useful-Bug-Reports)\n| [Downloads](https://whereisjenkins.wtf)\n\n[![Build Status](https://build.zer0-one.net/buildStatus/icon?job=praetor_release_linux_x86-64)](https://build.zer0-one.net/job/praetor_release_linux_x86-64/)\n\nAn IRC bot designed to be robust, portable, and easily extensible. Unlike other\nbots, praetor is written in C for efficiency, conforms closely to the SUSv3 for\nmaximum portability, and uses a language-neutral IPC approach to allow you to\nwrite plugins in any language you like.\n\nInformation regarding usage can be found in the manual page.\n\n## Building\n\n### Dependencies\n\nBefore building praetor, you will need to have installed\n[`libjansson`](https://github.com/akheron/jansson) and\n[`libressl`](https://github.com/libressl-portable/portable), as well as their\nheaders.\n\n### Compiling\n\nAfter ensuring that dependencies are taken care of, most users will just want\nto run `make all`. For a description of each Makefile target, see the table\nbelow.\n\nMakefile targets         | Description\n------------------------ | ---------------------------------------------------------\n`make` or `make praetor` | Builds praetor\n`make praetor-debug`     | Builds a debug version of praetor\n`make docs`              | Generates API documentation\n`make test`              | Builds and runs unit tests\n`make analysis`          | Builds praetor and runs static analysis; dumps results in the 'analysis' folder\n`make clean`             | Deletes generated binaries, documentation, and unit tests\n`make all`               | `make clean` \u0026 `make docs` \u0026 `make praetor` \u0026 `make test`\n`make all-debug`         | `make clean` \u0026 `make docs` \u0026 `make praetor-debug` \u0026 `make test`\n\n## Installation\n\nNo packages yet; you'll have to build it yourself. Once praetor is stable, I'll\ncreate packages for every major distro.\n\n## License\n\n    Copyright (c) 2015-2018 David Zero\n    All rights reserved.\n\n    Redistribution and use in source and binary forms, with or without\n    modification, are permitted provided that the following conditions are met:\n\n    1. Redistributions of source code must retain the above copyright notice, this\n       list of conditions and the following disclaimer.\n    2. Redistributions in binary form must reproduce the above copyright notice,\n       this list of conditions and the following disclaimer in the documentation\n       and/or other materials provided with the distribution.\n\n    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n    ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n    WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n    DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR\n    ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n    (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n    LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\n    ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n    (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n    SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n    \n    The views and conclusions contained in the software and documentation are those\n    of the authors and should not be interpreted as representing official policies,\n    either expressed or implied, of the FreeBSD Project.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzer0-one%2Fpraetor","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzer0-one%2Fpraetor","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzer0-one%2Fpraetor/lists"}