summaryrefslogtreecommitdiff
path: root/notepadnext/_service
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2022-09-07 00:29:51 +0000
committerB. Stack <bgstack15@gmail.com>2022-09-07 00:29:51 +0000
commit49a4fb29ffb1bac21a8fff349eab659f696ac6de (patch)
tree485b3cde3e852e581e231ba4a5fbc890c3d71162 /notepadnext/_service
parentMerge branch 'notepadpp-bump' into 'master' (diff)
parentnotepadnext 0.5.4 (diff)
downloadstackrpms-49a4fb29ffb1bac21a8fff349eab659f696ac6de.tar.gz
stackrpms-49a4fb29ffb1bac21a8fff349eab659f696ac6de.tar.bz2
stackrpms-49a4fb29ffb1bac21a8fff349eab659f696ac6de.zip
Merge branch 'notepadnext-bump' into 'master'
notepadnext 0.5.4 See merge request bgstack15/stackrpms!318
Diffstat (limited to 'notepadnext/_service')
-rw-r--r--notepadnext/_service29
1 files changed, 29 insertions, 0 deletions
diff --git a/notepadnext/_service b/notepadnext/_service
new file mode 100644
index 0000000..f27271c
--- /dev/null
+++ b/notepadnext/_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">notepadnext/debian</param>
+ <param name="filename">debian</param>
+ <param name="revision">notepadnext-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://github.com/dail8859/NotepadNext.git</param>
+ <param name="revision">v0.5.4</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