From 84b85190a6550f87e445c7ae4e6224f467c3d560 Mon Sep 17 00:00:00 2001 From: Alexander Korolev Date: Mon, 25 May 2020 23:36:43 +0200 Subject: [PATCH] added snapcraft build --- snapcraft.yaml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 snapcraft.yaml diff --git a/snapcraft.yaml b/snapcraft.yaml new file mode 100644 index 0000000..2d1d605 --- /dev/null +++ b/snapcraft.yaml @@ -0,0 +1,26 @@ +name: hg-git-fast-import +version: '1.3.1' +summary: A utility to import single and multiple Mercurial repositories to Git +description: | + Features: + + 1. Import of single and multiple Mercurial repositories to Git repository. + 2. Import of new revisions from previously imported Mercurial repositories to Git repository. + 3. Tags. + 4. Closed branches. + 5. Verification of the end result with diff. + +grade: stable +confinement: strict +base: core18 + +parts: + hg-git-fast-import: + plugin: rust + source: https://github.com/kilork/hg-git-fast-import.git + +apps: + hg-git-fast-import: + command: bin/hg-git-fast-import + plugs: + - home \ No newline at end of file