Generates RSS feeds from Gitea releases, tags and commits
tastytea
089534e07d
All checks were successful
continuous-integration/drone/push Build is passing
Previously releases had no own page. Now they have. |
||
---|---|---|
cmake | ||
doc | ||
man | ||
src | ||
tests | ||
.drone.yml | ||
.gitignore | ||
CMakeLists.txt | ||
LICENSE | ||
README.adoc |
gitea2rss
gitea2rss Generates RSS feeds from Gitea releases or tags.
Usage
See manpage. For an example nginx configuration file, see nginx-example.conf.
Install
Gentoo
Add my repository and install it from there.
eselect repository enable tastytea
echo "www-misc/gitea2rss ~amd64" >> /etc/portage/package.accept_keywords/gitea2rss
emaint sync -r tastytea
emerge -a dev-util/gitea2rss
From source
Dependencies
Debian stretch
apt install build-essential cmake libcurl4-openssl-dev libjsoncpp-dev asciidoc
Get sourcecode
Releases
Download the current release at schlomp.space.
Development version
git clone https://schlomp.space/tastytea/gitea2rss.git
Compile
mkdir build && cd build
cmake ..
cmake --build .
cmake options:
-
-DCMAKE_BUILD_TYPE=Debug
for a debug build. -
-DWITH_MAN=NO
to not compile the manpage. -
WITH_TESTS=YES
to compile the tests.
You can run the tests with ctest
inside build/tests
. Install with make
install
.