-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Soc Virnyl Estela <[email protected]>
- Loading branch information
1 parent
25c6c42
commit 975b707
Showing
3 changed files
with
91 additions
and
94 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,15 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<service name="raw"> | ||
<summary>OBS Service to raw sources</summary> | ||
<description> | ||
<![CDATA[ | ||
Raw extractor and decompresso | ||
]]></description> | ||
<parameter name="strategy"> | ||
<description>Legacy argument, no longer used. Values: raw. Default: raw</description> | ||
</parameter> | ||
<parameter name="target"> | ||
<summary>OBS Service to raw sources</summary> | ||
<description><![CDATA[Raw extractor and decompresso]]></description> | ||
<parameter name="strategy"> | ||
<description>Legacy argument, no longer used. Values: raw. Default: raw</description> | ||
</parameter> | ||
<parameter name="target"> | ||
<description>Target tarball file to extract and decompress. Supports globbing.</description> | ||
</parameter> | ||
<parameter name="outdir"> | ||
</parameter> | ||
<parameter name="outdir"> | ||
<description>Output directory of extracted archive.</description> | ||
</parameter> | ||
<parameter name="help"> | ||
<description>Print help (see more with '--help')</description> | ||
</parameter> | ||
<parameter name="version"> | ||
<description>Print version</description> | ||
</parameter> | ||
</parameter> | ||
</service> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,50 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<service name="recomprizz"> | ||
<summary>OBS Service to recomprizz (recompress) archived tarballs</summary> | ||
<description> | ||
<![CDATA[ | ||
Recompress to other compression formats using raw and roast internally. | ||
]]></description> | ||
<parameter name="strategy"> | ||
<description>Legacy argument, no longer used. Values: recomprizz. Default: recomprizz</description> | ||
</parameter> | ||
<parameter name="target"> | ||
<summary>OBS Service to recomprizz (recompress) archived tarballs</summary> | ||
<description><![CDATA[Recompress to other compression formats using raw and roast internally.]]></description> | ||
<parameter name="strategy"> | ||
<description>Legacy argument, no longer used. Values: recomprizz. Default: recomprizz</description> | ||
</parameter> | ||
<parameter name="target"> | ||
<description>Target tarball file to extract and recompress. Supports globbing.</description> | ||
</parameter> | ||
<parameter name="include"> | ||
</parameter> | ||
<parameter name="include"> | ||
<description>Additional paths such as files or directories in the target directory to include to the archive. Their parent directory will be put next to the target directory's work directory. The work directory is based on the preserve root option. This is different from `--additional_paths`. Useful to override excluded directories.</description> | ||
</parameter> | ||
<parameter name="exclude"> | ||
</parameter> | ||
<parameter name="exclude"> | ||
<description>Additional paths such as files or directories from within target directory's work directory to exclude when generating the archive. ⚠️ Careful if the archive has whether preserved root set when it was created.</description> | ||
</parameter> | ||
<parameter name="additional-paths"> | ||
</parameter> | ||
<parameter name="additional-paths"> | ||
<description>Additional paths such as files or directories to add to the archive. Their parent directory will be put next to the target directory. This is different from `--include`. Optionally, one can add a path to a directory inside the archive e.g. `-A some/file/to/archive,put/where/in/archive`. If directory does not exist, it will be created.</description> | ||
</parameter> | ||
<parameter name="outdir"> | ||
</parameter> | ||
<parameter name="outdir"> | ||
<description>Output directory of recompressed archive.</description> | ||
</parameter> | ||
<parameter name="compression"> | ||
<description>Compression to use. [default: zst] [possible values: gz, xz, zst, bz2, not]</description> | ||
</parameter> | ||
<parameter name="rename"> | ||
</parameter> | ||
<parameter name="compression"> | ||
<description>Compression to use. Default: zst</description> | ||
<allowedvalues>zst</allowedvalues> | ||
<allowedvalues>gz</allowedvalues> | ||
<allowedvalues>xz</allowedvalues> | ||
<allowedvalues>bz2</allowedvalues> | ||
<allowedvalues>not</allowedvalues> | ||
</parameter> | ||
<parameter name="rename"> | ||
<description>Use this flag if you want a new filename to use ignoring the new file extension. Omitting this flag will just fallback to basename.</description> | ||
</parameter> | ||
<parameter name="reproducible"> | ||
<description>Allow reproducibility for Reproducible Builds. [default: false] [possible values: true, false]</description> | ||
</parameter> | ||
<parameter name="ignore-git"> | ||
<description>Whether to ignore git related metadata, files and directories. [default: true] [possible values: true, false]</description> | ||
</parameter> | ||
<parameter name="ignore-hidden"> | ||
<description>Whether to ignore hidden directories and files or what we call dotfiles. Does not affect `--ignore-git`. [default: false] [possible values: true, false]</description> | ||
</parameter> | ||
<parameter name="help"> | ||
<description>Print help (see more with '--help')</description> | ||
</parameter> | ||
<parameter name="version"> | ||
<description>Print version</description> | ||
</parameter> | ||
</parameter> | ||
<parameter name="reproducible"> | ||
<description>Allow reproducibility for Reproducible Builds. Default: false</description> | ||
<allowedvalues>true</allowedvalues> | ||
<allowedvalues>false</allowedvalues> | ||
</parameter> | ||
<parameter name="ignore-git"> | ||
<description>Whether to ignore git related metadata, files and directories. Default: true</description> | ||
<allowedvalues>true</allowedvalues> | ||
<allowedvalues>false</allowedvalues> | ||
</parameter> | ||
<parameter name="ignore-hidden"> | ||
<description>Whether to ignore hidden directories and files or what we call dotfiles. Does not affect `--ignore-git`. Default: false</description> | ||
<allowedvalues>true</allowedvalues> | ||
<allowedvalues>false</allowedvalues> | ||
</parameter> | ||
</service> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,47 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<service name="roast"> | ||
<summary>OBS Service to roast sources</summary> | ||
<description> | ||
<![CDATA[ | ||
Archiver with high-level compression | ||
]]></description> | ||
<parameter name="strategy"> | ||
<description>Legacy argument, no longer used. Values: roast. Default: roast</description> | ||
</parameter> | ||
<parameter name="target"> | ||
<summary>OBS Service to roast sources</summary> | ||
<description><![CDATA[Archiver with high-level compression]]></description> | ||
<parameter name="strategy"> | ||
<description>Legacy argument, no longer used. Values: roast. Default: roast</description> | ||
</parameter> | ||
<parameter name="target"> | ||
<description>Target directory to archive. This will be set as the root directory of the archive. Supports globbing.</description> | ||
</parameter> | ||
<parameter name="include"> | ||
</parameter> | ||
<parameter name="include"> | ||
<description>Additional paths such as files or directories in the target directory to include to the archive. Their parent directory will be put next to the target directory's work directory. The work directory is based on the preserve root option. This is different from `--additional_paths`. Useful to override excluded directories. ⚠️ Careful if the archive has whether preserved root set when it was created.</description> | ||
</parameter> | ||
<parameter name="exclude"> | ||
</parameter> | ||
<parameter name="exclude"> | ||
<description>Additional paths such as files or directories from within target directory's work directory to exclude when generating the archive.</description> | ||
</parameter> | ||
<parameter name="additional-paths"> | ||
</parameter> | ||
<parameter name="additional-paths"> | ||
<description>Additional paths such as files or directories to add to the archive. Their parent directory will be put next to the target directory. This is different from `--include`. Optionally, one can add a path to a directory inside the archive e.g. `-A some/file/to/archive,put/where/in/archive`. If directory does not exist, it will be created.</description> | ||
</parameter> | ||
<parameter name="outfile"> | ||
</parameter> | ||
<parameter name="outfile"> | ||
<description>Output file of the generated archive with path.</description> | ||
</parameter> | ||
<parameter name="outdir"> | ||
</parameter> | ||
<parameter name="outdir"> | ||
<description>Output path of extracted archive.</description> | ||
</parameter> | ||
<parameter name="preserve-root"> | ||
<description>Preserve root directory instead of only archiving relative paths. [default: false] [possible values: true, false]</description> | ||
</parameter> | ||
<parameter name="reproducible"> | ||
<description>Allow reproducibility for Reproducible Builds. [default: false] [possible values: true, false]</description> | ||
</parameter> | ||
<parameter name="ignore-git"> | ||
<description>Whether to ignore git related metadata, files and directories. [default: true] [possible values: true, false]</description> | ||
</parameter> | ||
<parameter name="ignore-hidden"> | ||
<description>Whether to ignore hidden directories and files or what we call dotfiles. Does not affect `--ignore-git`. [default: false] [possible values: true, false]</description> | ||
</parameter> | ||
<parameter name="help"> | ||
<description>Print help (see more with '--help')</description> | ||
</parameter> | ||
<parameter name="version"> | ||
<description>Print version</description> | ||
</parameter> | ||
</parameter> | ||
<parameter name="preserve-root"> | ||
<description>Preserve root directory instead of only archiving relative paths. Default: false</description> | ||
<allowedvalues>true</allowedvalues> | ||
<allowedvalues>false</allowedvalues> | ||
</parameter> | ||
<parameter name="reproducible"> | ||
<description>Allow reproducibility for Reproducible Builds. Default: false</description> | ||
<allowedvalues>true</allowedvalues> | ||
<allowedvalues>false</allowedvalues> | ||
</parameter> | ||
<parameter name="ignore-git"> | ||
<description>Whether to ignore git related metadata, files and directories. Default: true</description> | ||
<allowedvalues>true</allowedvalues> | ||
<allowedvalues>false</allowedvalues> | ||
</parameter> | ||
<parameter name="ignore-hidden"> | ||
<description>Whether to ignore hidden directories and files or what we call dotfiles. Does not affect `--ignore-git`. Default: false</description> | ||
<allowedvalues>true</allowedvalues> | ||
<allowedvalues>false</allowedvalues> | ||
</parameter> | ||
</service> | ||
|