]> git.pld-linux.org Git - packages/letsencrypt.sh.git/blob - letsencrypt.sh.spec
new, version 0.1.0
[packages/letsencrypt.sh.git] / letsencrypt.sh.spec
1 Summary:        letsencrypt/acme client implemented as a shell-script
2 Name:           letsencrypt.sh
3 Version:        0.1.0
4 Release:        0.1
5 License:        MIT
6 Group:          Applications/Networking
7 Source0:        https://github.com/lukas2511/letsencrypt.sh/archive/v%{version}/%{name}-%{version}.tar.gz
8 # Source0-md5:  eb1208bcf5c33a6f030da9419718bf6b
9 URL:            https://github.com/lukas2511/letsencrypt.sh
10 BuildRequires:  rpmbuild(macros) >= 1.713
11 Requires:       curl
12 Requires:       grep
13 Requires:       mktemp
14 Requires:       openssl
15 Requires:       sed
16 BuildArch:      noarch
17 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
18
19 %description
20 This is a client for signing certificates with an ACME-server
21 (currently only provided by letsencrypt) implemented as a relatively
22 simple bash-script.
23
24 Current features:
25 - Signing of a list of domains
26 - Signing of a CSR
27 - Renewal if a certificate is about to expire or SAN (subdomains)
28   changed
29 - Certificate revocation
30
31 %prep
32 %setup -q
33
34 %install
35 rm -rf $RPM_BUILD_ROOT
36
37 %clean
38 rm -rf $RPM_BUILD_ROOT
39
40 %files
41 %defattr(644,root,root,755)
42 %doc README.md CHANGELOG LICENSE
This page took 0.14413 seconds and 3 git commands to generate.