summaryrefslogtreecommitdiff
path: root/newmoon/debian/_service
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2023-02-25 13:22:17 +0000
committerB. Stack <bgstack15@gmail.com>2023-02-25 13:22:17 +0000
commit1a5864d1ca0c6b1d556ad762271d8ea6bf9228b9 (patch)
treee9ef3b12c5f2edaabed1a7dedc4ca9d64bcd2758 /newmoon/debian/_service
parentMerge branch 'freefilesync-bump' into 'master' (diff)
parentnewmoon spec handles perl in fc38 (diff)
downloadstackrpms-1a5864d1ca0c6b1d556ad762271d8ea6bf9228b9.tar.gz
stackrpms-1a5864d1ca0c6b1d556ad762271d8ea6bf9228b9.tar.bz2
stackrpms-1a5864d1ca0c6b1d556ad762271d8ea6bf9228b9.zip
Merge branch 'newmoon-bump' into 'master'
newmoon 32.0.1 See merge request bgstack15/stackrpms!341
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..b6159f5
--- /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.1_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