summaryrefslogtreecommitdiff
path: root/python-msk.spec
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-05-15 07:15:57 +0000
committerCoprDistGit <infra@openeuler.org>2023-05-15 07:15:57 +0000
commit4840ee4fe0472b6a0d854504d42da492da5c8168 (patch)
tree15f340503e6f6ea156c1050758b6e9b294d449f6 /python-msk.spec
parentcd89fe97993b7aa2c9d1f4b4baaef82edca24558 (diff)
automatic import of python-msk
Diffstat (limited to 'python-msk.spec')
-rw-r--r--python-msk.spec257
1 files changed, 257 insertions, 0 deletions
diff --git a/python-msk.spec b/python-msk.spec
new file mode 100644
index 0000000..2262e9f
--- /dev/null
+++ b/python-msk.spec
@@ -0,0 +1,257 @@
+%global _empty_manifest_terminate_build 0
+Name: python-msk
+Version: 0.4.0
+Release: 1
+Summary: Mycroft Skills Kit
+License: Apache-2.0
+URL: https://github.com/MycroftAI/mycroft-skills-kit
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/74/03/d68165b7cbd8bd5c89cc83354ea30799a0631cfb3d7fc62c9a638fa5635b/msk-0.4.0.tar.gz
+BuildArch: noarch
+
+Requires: python3-GitPython
+Requires: python3-colorama
+Requires: python3-msm
+Requires: python3-pygithub
+Requires: python3-requests
+
+%description
+# Mycroft Skills Kit
+
+*Mycroft Skills Kit*
+
+[![msk-create](https://images2.imgbox.com/ab/25/6kbqKbXh_o.gif)](https://asciinema.org/a/X5pWLPOpsMLUPYp5kgswNm5Zu?speed=1.5)
+
+A tool to help with creating, uploading, and upgrading Mycroft skills on the
+[skills repo](https://github.com/mycroftai/mycroft-skills).
+
+## Features
+
+ - Create a new skill
+ - Create an intent test for a skill
+ - Upload a skill
+ - Upgrade an existing skill
+
+## Install
+
+*Note: Only Linux has been tested*
+
+```bash
+pip3 install msk
+```
+
+## Usage
+
+```bash
+msk create
+msk create-test ~/.local/share/mycroft/skills/myskill
+msk submit ~/.local/share/mycroft/skills/myskill
+```
+
+Note that Mycroft is [compatible with the XDG base directory specification](https://specifications.freedesktop.org/basedir-spec/basedir/basedir-spec-latest.html) meaning that if you have set `$XDG_DATA_HOME`, you should replace `~/.local/share` for `$XDG_DATA_HOME`.
+
+### Creating a New Skill
+
+`msk create`:
+
+[![msk-create](https://images2.imgbox.com/ab/25/6kbqKbXh_o.gif)](https://asciinema.org/a/X5pWLPOpsMLUPYp5kgswNm5Zu?speed=1.5)
+
+### Creating Tests
+
+`msk create-test ~/.local/share/mycroft/skills/myskill`:
+
+[![msk-create-test](https://images2.imgbox.com/9c/c8/gLRS7xuL_o.gif)](https://asciinema.org/a/Ayzaj6QJbKGBfs2eIQWr11idH?speed=1.5)
+
+## Submitting a new skill / Updating existing skill
+
+`msk submit ~/.local/share/mycroft/skills/myskill`:
+
+[![msk-submit](https://images2.imgbox.com/7a/5f/RcBxgLXc_o.gif)](https://asciinema.org/a/242108)
+
+ --or--
+
+```bash
+cd ~/.local/share/mycroft/skills/myskill
+msk submit .
+```
+
+
+
+
+%package -n python3-msk
+Summary: Mycroft Skills Kit
+Provides: python-msk
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-msk
+# Mycroft Skills Kit
+
+*Mycroft Skills Kit*
+
+[![msk-create](https://images2.imgbox.com/ab/25/6kbqKbXh_o.gif)](https://asciinema.org/a/X5pWLPOpsMLUPYp5kgswNm5Zu?speed=1.5)
+
+A tool to help with creating, uploading, and upgrading Mycroft skills on the
+[skills repo](https://github.com/mycroftai/mycroft-skills).
+
+## Features
+
+ - Create a new skill
+ - Create an intent test for a skill
+ - Upload a skill
+ - Upgrade an existing skill
+
+## Install
+
+*Note: Only Linux has been tested*
+
+```bash
+pip3 install msk
+```
+
+## Usage
+
+```bash
+msk create
+msk create-test ~/.local/share/mycroft/skills/myskill
+msk submit ~/.local/share/mycroft/skills/myskill
+```
+
+Note that Mycroft is [compatible with the XDG base directory specification](https://specifications.freedesktop.org/basedir-spec/basedir/basedir-spec-latest.html) meaning that if you have set `$XDG_DATA_HOME`, you should replace `~/.local/share` for `$XDG_DATA_HOME`.
+
+### Creating a New Skill
+
+`msk create`:
+
+[![msk-create](https://images2.imgbox.com/ab/25/6kbqKbXh_o.gif)](https://asciinema.org/a/X5pWLPOpsMLUPYp5kgswNm5Zu?speed=1.5)
+
+### Creating Tests
+
+`msk create-test ~/.local/share/mycroft/skills/myskill`:
+
+[![msk-create-test](https://images2.imgbox.com/9c/c8/gLRS7xuL_o.gif)](https://asciinema.org/a/Ayzaj6QJbKGBfs2eIQWr11idH?speed=1.5)
+
+## Submitting a new skill / Updating existing skill
+
+`msk submit ~/.local/share/mycroft/skills/myskill`:
+
+[![msk-submit](https://images2.imgbox.com/7a/5f/RcBxgLXc_o.gif)](https://asciinema.org/a/242108)
+
+ --or--
+
+```bash
+cd ~/.local/share/mycroft/skills/myskill
+msk submit .
+```
+
+
+
+
+%package help
+Summary: Development documents and examples for msk
+Provides: python3-msk-doc
+%description help
+# Mycroft Skills Kit
+
+*Mycroft Skills Kit*
+
+[![msk-create](https://images2.imgbox.com/ab/25/6kbqKbXh_o.gif)](https://asciinema.org/a/X5pWLPOpsMLUPYp5kgswNm5Zu?speed=1.5)
+
+A tool to help with creating, uploading, and upgrading Mycroft skills on the
+[skills repo](https://github.com/mycroftai/mycroft-skills).
+
+## Features
+
+ - Create a new skill
+ - Create an intent test for a skill
+ - Upload a skill
+ - Upgrade an existing skill
+
+## Install
+
+*Note: Only Linux has been tested*
+
+```bash
+pip3 install msk
+```
+
+## Usage
+
+```bash
+msk create
+msk create-test ~/.local/share/mycroft/skills/myskill
+msk submit ~/.local/share/mycroft/skills/myskill
+```
+
+Note that Mycroft is [compatible with the XDG base directory specification](https://specifications.freedesktop.org/basedir-spec/basedir/basedir-spec-latest.html) meaning that if you have set `$XDG_DATA_HOME`, you should replace `~/.local/share` for `$XDG_DATA_HOME`.
+
+### Creating a New Skill
+
+`msk create`:
+
+[![msk-create](https://images2.imgbox.com/ab/25/6kbqKbXh_o.gif)](https://asciinema.org/a/X5pWLPOpsMLUPYp5kgswNm5Zu?speed=1.5)
+
+### Creating Tests
+
+`msk create-test ~/.local/share/mycroft/skills/myskill`:
+
+[![msk-create-test](https://images2.imgbox.com/9c/c8/gLRS7xuL_o.gif)](https://asciinema.org/a/Ayzaj6QJbKGBfs2eIQWr11idH?speed=1.5)
+
+## Submitting a new skill / Updating existing skill
+
+`msk submit ~/.local/share/mycroft/skills/myskill`:
+
+[![msk-submit](https://images2.imgbox.com/7a/5f/RcBxgLXc_o.gif)](https://asciinema.org/a/242108)
+
+ --or--
+
+```bash
+cd ~/.local/share/mycroft/skills/myskill
+msk submit .
+```
+
+
+
+
+%prep
+%autosetup -n msk-0.4.0
+
+%build
+%py3_build
+
+%install
+%py3_install
+install -d -m755 %{buildroot}/%{_pkgdocdir}
+if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
+if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
+if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
+if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi
+pushd %{buildroot}
+if [ -d usr/lib ]; then
+ find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/lib64 ]; then
+ find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/bin ]; then
+ find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/sbin ]; then
+ find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+touch doclist.lst
+if [ -d usr/share/man ]; then
+ find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst
+fi
+popd
+mv %{buildroot}/filelist.lst .
+mv %{buildroot}/doclist.lst .
+
+%files -n python3-msk -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Mon May 15 2023 Python_Bot <Python_Bot@openeuler.org> - 0.4.0-1
+- Package Spec generated