summaryrefslogtreecommitdiff
path: root/newmoon/debian/_service
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2023-02-16 19:55:54 -0500
committerB. Stack <bgstack15@gmail.com>2023-02-16 19:56:46 -0500
commitc747630f16181d71ce2d7fb5b31f164062c17d5d (patch)
tree2e031de9e39e3f0aa431807dba8206c202636c54 /newmoon/debian/_service
parentMerge branch 'scite-bump' into 'master' (diff)
downloadstackrpms-c747630f16181d71ce2d7fb5b31f164062c17d5d.tar.gz
stackrpms-c747630f16181d71ce2d7fb5b31f164062c17d5d.tar.bz2
stackrpms-c747630f16181d71ce2d7fb5b31f164062c17d5d.zip
nm 32.0.0 rc1
Diffstat (limited to 'newmoon/debian/_service')
-rw-r--r--newmoon/debian/_service29
1 files changed, 29 insertions, 0 deletions
diff --git a/newmoon/debian/_service b/newmoon/debian/_service
new file mode 100644
index 0000000..90e9233
--- /dev/null
+++ b/newmoon/debian/_service
@@ -0,0 +1,29 @@
+<services>
+ <service name="tar_scm">
+ <param name="scm">git</param>
+ <param name="url">https://gitlab.com/bgstack15/stackrpms.git</param>
+ <param name="subdir">newmoon/debian</param>
+ <param name="filename">debian</param>
+ <param name="revision">newmoon-bump</param>
+ <param name="version">_none_</param>
+ </service>
+ <service name="recompress">
+ <param name="file">*.tar</param>
+ <param name="compression">xz</param>
+ </service>
+ <service name="tar_scm">
+ <param name="scm">git</param>
+ <param name="url">https://repo.palemoon.org/MoonchildProductions/Pale-Moon.git</param>
+ <param name="revision">32.0.0_Release</param>
+ <param name="version">_none_</param>
+ <param name="submodules">enable</param>
+ </service>
+ <service name="recompress">
+ <param name="file">*.tar</param>
+ <param name="compression">gz</param>
+ </service>
+ <service name="extract_file">
+ <param name="archive">*.tar.xz</param>
+ <param name="files">*/*.dsc</param>
+ </service>
+</services>
bgstack15