]> git.pld-linux.org Git - packages/slacksend.git/blob - slacksend.spec
Release 8 (by relup.sh)
[packages/slacksend.git] / slacksend.spec
1 Summary:        Sends messages to Slack's incoming webhooks via CLI
2 Name:           slacksend
3 Version:        0.1
4 Release:        8
5 License:        MIT
6 Group:          Applications/Networking
7 Source0:        https://pypi.python.org/packages/source/s/slacksend/%{name}-%{version}.tar.gz
8 # Source0-md5:  c6ec90dba9d1c0b3aae091a54b476585
9 URL:            https://github.com/mtorromeo/slacksend
10 BuildRequires:  python3-modules
11 BuildRequires:  python3-setuptools
12 BuildRequires:  rpm-pythonprov
13 BuildRequires:  rpmbuild(macros) >= 1.714
14 Requires:       python3-setuptools
15 BuildArch:      noarch
16 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
17
18 %description
19 Sends messages to Slack's incoming webhooks via CLI
20
21 CLI tool to send messages to the Incoming webhook of Slack
22 <https://slack.com>.
23
24 %prep
25 %setup -q
26
27 %build
28 %py3_build
29
30 %install
31 rm -rf $RPM_BUILD_ROOT
32 %py3_install
33
34 %clean
35 rm -rf $RPM_BUILD_ROOT
36
37 %files
38 %defattr(644,root,root,755)
39 %doc README.rst LICENSE
40 %attr(755,root,root) %{_bindir}/slacksend
41 %{py3_sitescriptdir}/slacksend.py
42 %{py3_sitescriptdir}/__pycache__/slacksend.*.pyc
43 %{py3_sitescriptdir}/slacksend-%{version}-py*.egg-info
This page took 0.06632 seconds and 3 git commands to generate.