{"id":17196537,"url":"https://github.com/cottsay/openelp","last_synced_at":"2025-04-13T19:51:28.054Z","repository":{"id":48319367,"uuid":"43523532","full_name":"cottsay/openelp","owner":"cottsay","description":"Open Source EchoLink Proxy","archived":false,"fork":false,"pushed_at":"2025-01-21T04:36:37.000Z","size":485,"stargazers_count":24,"open_issues_count":3,"forks_count":9,"subscribers_count":6,"default_branch":"main","last_synced_at":"2025-04-06T22:03:25.664Z","etag":null,"topics":["amateur-radio","echolink","ham-radio","proxy-server"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cottsay.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":"AUTHORS","dei":null}},"created_at":"2015-10-01T22:00:20.000Z","updated_at":"2025-02-06T00:43:11.000Z","dependencies_parsed_at":"2024-02-20T00:33:14.951Z","dependency_job_id":"123f7788-f8cc-4062-b43a-6aa4bcf01d0b","html_url":"https://github.com/cottsay/openelp","commit_stats":null,"previous_names":[],"tags_count":14,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cottsay%2Fopenelp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cottsay%2Fopenelp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cottsay%2Fopenelp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cottsay%2Fopenelp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cottsay","download_url":"https://codeload.github.com/cottsay/openelp/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248773804,"owners_count":21159519,"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":["amateur-radio","echolink","ham-radio","proxy-server"],"created_at":"2024-10-15T01:53:33.742Z","updated_at":"2025-04-13T19:51:28.027Z","avatar_url":"https://github.com/cottsay.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"OpenELP, an Open Source EchoLink Proxy\n======================================\n\nOpenELP is an open source EchoLink proxy for Linux and Windows. It aims to be\nefficient and maintain a small footprint, while still implementing all of the\nfeatures present in the official EchoLink proxy.\n\nOpenELP also has the ability to bind to multiple network interfaces which are\nrouted to unique external IP addresses, and therefore is capable of accepting\nconnections from multiple clients simultaneously.\n\n[![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/cottsay/openelp/ci.yaml?branch=main\u0026event=push\u0026logo=github)](https://github.com/cottsay/openelp/actions/workflows/ci.yaml?query=branch%3Amain+event%3Apush) [![AUR version](https://img.shields.io/aur/version/openelp?logo=arch%20linux\u0026\u0026logoColor=ffffff)](https://aur.archlinux.org/packages/openelp/) [![EPEL package](https://img.shields.io/fedora/v/openelp/epel8?label=epel\u0026logo=red%20hat)](https://src.fedoraproject.org/rpms/openelp) [![Fedora package](https://img.shields.io/fedora/v/openelp?logo=fedora)](https://src.fedoraproject.org/rpms/openelp) [![Codecov](https://img.shields.io/codecov/c/github/cottsay/openelp/main?logo=codecov\u0026logoColor=ffffff)](https://app.codecov.io/gh/cottsay/openelp/branch/main)\n\nPrerequisites\n-------------\nTo build OpenELP you will need:\n* [CMake](https://cmake.org/)\n* [pkg-config](https://www.freedesktop.org/wiki/Software/pkg-config/)\n* [GCC](https://gcc.gnu.org/) or [Visual Studio](http://aka.ms/vs2015)\n\nIf available, OpenELP can use:\n* [PCRE2](http://www.pcre.org/)\n* [OpenSSL](https://www.openssl.org/)\n* [Doxygen](http://www.doxygen.org/)\n\nIf your system doesn't have PCRE2 development files installed, you have the\noption of bundling PCRE2 with OpenELP. To do this, specify\n`-DOPENELP_BUNDLE_PCRE:BOOL=ON` when you call `cmake`. CMake will download\nthe PCRE2 sources automatically and build them into the OpenELP library.\n\nTo create a Windows installer, you will also need to install\n[NSIS](http://nsis.sourceforge.net/)\n\nThe only runtime dependency that OpenELP has is on the PCRE2 shared library,\nunless PCRE2 was bundled into OpenELP.\n\nTo install these prerequisites on Fedora and RHEL (w/EPEL), run:\n```\nsudo dnf install cmake doxygen gcc pcre2-devel pkgconfig openssl-devel\n```\n\nCompiling\n---------\nLinux:\n\n    mkdir build \u0026\u0026 cd build\n    cmake ..\n    make\n\nWindows:\n\n    mkdir build \u0026\u0026 cd build\n    cmake .. -DOPENELP_BUNDLE_PCRE:BOOL=ON\n    devenv openelp.sln /build\n\nWindows Installer:\n\n    devenv openelp.sln /project PACKAGE /build\n\nLicense\n-------\nSee [LICENSE](./LICENSE) file.\n\nEchoLink\u0026reg; is a registered trademark of Synergenics, LLC.\n\nBugs\n----\nAll issues and feature requests should be directed to\n[the bug tracker](https://github.com/cottsay/openelp/issues). Please review any\nopen issues before filing new ones.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcottsay%2Fopenelp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcottsay%2Fopenelp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcottsay%2Fopenelp/lists"}