source: projects/specs/trunk/k/keychain/keychain-vl.spec @ 7306

Revision 7306, 2.3 KB checked in by iwaim, 11 years ago (diff)

Fedora: keepassx

Line 
1%define ver 2.7.1
2%define rel 1
3
4Summary: ssh and GPG keys manager
5Summary(ja): ssh と GPG 鍵の管理ツール
6Name: keychain
7Version: %{ver}
8Release: %{rel}%{?_dist_release}
9License: GPLv2
10Group: Applications/Internet
11Source0: http://www.funtoo.org/archive/keychain/%{name}-%{version}.tar.bz2
12URL: http://www.funtoo.org/wiki/Keychain
13BuildArch: noarch
14BuildRoot: %{_tmppath}/%{name}-%{version}-root
15Requires: bash, openssh-clients
16BuildRequires: perl
17
18%description
19"Keychain" helps you to manage ssh and GPG keys in a convenient and secure
20manner. It acts as a frontend to "ssh-agent" and "ssh-add", but allows you
21to easily have one long running "ssh-agent" process per system, rather than
22the norm of one "ssh-agent" per login session.
23
24This dramatically reduces the number of times you need to enter your
25passphrase. With "keychain", you only need to enter a passphrase once every
26time your local machine is rebooted. "Keychain" also makes it easy for remote
27cron jobs to securely hook in to a long running "ssh-agent" process,
28allowing your scripts to take advantage of key-based logins.
29
30%prep
31
32%setup -q
33
34%build
35%{__make}
36
37%install
38%{__rm} -rf ${RPM_BUILD_ROOT}
39%{__mkdir_p} ${RPM_BUILD_ROOT}{%{_bindir},%{_mandir}/man1}
40%{__install} -m555 keychain ${RPM_BUILD_ROOT}%{_bindir}
41%{__install} -m555 keychain.1 ${RPM_BUILD_ROOT}%{_mandir}/man1
42
43%clean
44%{__rm} -rf ${RPM_BUILD_ROOT}
45
46%files
47%defattr(-, root, root)
48%doc ChangeLog README.rst COPYING.txt img/*.png
49%{_bindir}/keychain
50%{_mandir}/man1/keychain.1*
51
52%changelog
53* Wed Dec 12 2012 IWAI, Masaharu <iwai@alib.jp> 2.7.1-2
54- new upstream release
55- update Summary
56- update description
57 - drop Japanese description
58- apply new versioning policy
59- spec in utf-8
60- update License: GPL to GPLv2
61- update URL and Source0: moved
62- add BuildRequires: perl
63- update document files
64
65* Tue Sep 19 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.3-0vl2
66- fix typo in Group:
67- use License: instead of Copyright:
68
69* Fri Feb  6 2004 IWAI, Masaharu <iwai@alib.jp> 2.0.3-0vl1
70- new upstream release
71- add COPYING in %%doc
72- update SOURCE0 URL
73- update user's manual in %%description
74
75* Sun Feb 03 2002 akira yamada <akira@vinelinux.org> 1.8-0vl3
76- requires bash
77
78* Mon Dec 03 2001 Yoichi Imai <yoichi@silver-forest.com>
79- 1.8-0vl1
80- source update
81
82* Sun Dec 02 2001 Yoichi Imai <yoichi@silver-forest.com>
83- 1.7-0vl1
84- initial release.
Note: See TracBrowser for help on using the repository browser.