Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thoronador/feed-merger
Application that merges multiple feeds into a single one
https://github.com/thoronador/feed-merger
feed-merger feeds rss
Last synced: about 1 month ago
JSON representation
Application that merges multiple feeds into a single one
- Host: GitHub
- URL: https://github.com/thoronador/feed-merger
- Owner: Thoronador
- License: gpl-3.0
- Created: 2015-10-18T16:26:41.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2023-10-13T21:12:54.000Z (about 1 year ago)
- Last Synced: 2023-10-15T12:25:12.288Z (about 1 year ago)
- Topics: feed-merger, feeds, rss
- Language: C++
- Homepage:
- Size: 318 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- Changelog: ChangeLog.md
- License: LICENSE
Awesome Lists containing this project
README
# feed-merger
[![GitHub CI Clang status](https://github.com/Thoronador/feed-merger/workflows/Clang/badge.svg)](https://github.com/Thoronador/feed-merger/actions)
[![GitHub CI GCC status](https://github.com/Thoronador/feed-merger/workflows/GCC/badge.svg)](https://github.com/Thoronador/feed-merger/actions)feed-merger will be an application to merge several feeds (Atom 1.0 or RSS 2.0)
into one single feed.## Building from source
### Prerequisites
To build the feed-merger application from source you need a C++ compiler with
C++17 support, CMake 3.8 or later, the cURL library and the libxml2 library.
It also helps to have Git, a distributed version control system, on your build
system to get the latest source code directly from the Git repository.
Additionally, the project uses Catch (C++ Automated Test Cases in Headers) to
perform some tests.All of that can usually be installed be typing
apt-get install catch cmake g++ git libcurl4-gnutls-dev libxml2-dev
or
yum install catch-devel cmake gcc-c++ git libcurl-devel libxml2-devel
into a root terminal.
### Getting the source code
Get the source directly from Git by cloning the Git repository and change to
the directory after the repository is completely cloned:git clone https://github.com/Thoronador/feed-merger.git ./feed-merger
cd feed-mergerThat's it, you should now have the current source code of feed-merger on your
machine.### Build process
The build process is relatively easy, because CMake does all the preparations.
Starting in the root directory of the source, you can do the following steps:mkdir build
cd build
cmake ../
make -j2### Test suite
The build commands as described above also create files for a small test suite
for feed-merger. The test suite uses CTest, which usually comes with CMake.
To run the test suite, make sure you are still in the build directory that was
created during the build process and then type:ctest -V
If all tests succeeded, the output of the above command should end with
something like:100% tests passed, 0 tests failed out of 20
Total Test time (real) = 0.64 sec
That's an indication that the basic functionality of feed-merger still works as
it was intended by the developer.## Copyright and Licensing
Copyright 2015, 2017 Dirk Stolle
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.For the full license text, see the LICENSE file in this repository.
Alternatively, see .## Feed format specifications
For future reference:
* Atom 1.0: RFC 4287
* RSS 0.91:
* RSS 1.0:
* RSS 2.0:The feed-merger aims to be fully compliant to these standards / specifications.