adding support for RPMs

This commit is contained in:
2024-02-04 07:00:46 +00:00
parent a0b6d45c8a
commit 37ca32f874
6 changed files with 158 additions and 4 deletions

33
include/RPM.h Normal file
View File

@@ -0,0 +1,33 @@
///
/// \file RPM.h
/// \author K. Isom <kyle@imap.cc>
/// \date 2024-02-03
/// \brief Functionality for interacting with RPM packages on Gitea.
/// Copyright 2024 K. Isom <kyle@imap.cc>
///
/// Permission to use, copy, modify, and/or distribute this software for
/// any purpose with or without fee is hereby granted, provided that
/// the above copyright notice and this permission notice appear in all /// copies.
///
/// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
/// WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
/// WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
/// AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
/// DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA
/// OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
/// TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
/// PERFORMANCE OF THIS SOFTWARE.
///
#ifndef SC3DEV_RPM_H
#define SC3DEV_RPM_H
#include <string>
#include <vector>
bool rpmPackager(std::vector<std::string> args);
#endif// SC3DEV_RPM_H