123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- %define ver 2.7.1
- %define rel 1
- Summary: ssh and GPG keys manager
- Summary(ja): ssh と GPG 鍵の管理ツール
- Name: keychain
- Version: %{ver}
- Release: %{rel}%{?_dist_release}
- License: GPLv2
- Group: Applications/Internet
- Source0: http://www.funtoo.org/archive/keychain/%{name}-%{version}.tar.bz2
- URL: http://www.funtoo.org/wiki/Keychain
- BuildArch: noarch
- BuildRoot: %{_tmppath}/%{name}-%{version}-root
- Requires: bash, openssh-clients
- BuildRequires: perl
- %description
- "Keychain" helps you to manage ssh and GPG keys in a convenient and secure
- manner. It acts as a frontend to "ssh-agent" and "ssh-add", but allows you
- to easily have one long running "ssh-agent" process per system, rather than
- the norm of one "ssh-agent" per login session.
- This dramatically reduces the number of times you need to enter your
- passphrase. With "keychain", you only need to enter a passphrase once every
- time your local machine is rebooted. "Keychain" also makes it easy for remote
- cron jobs to securely hook in to a long running "ssh-agent" process,
- allowing your scripts to take advantage of key-based logins.
- %prep
- %setup -q
- %build
- %{__make}
- %install
- %{__rm} -rf ${RPM_BUILD_ROOT}
- %{__mkdir_p} ${RPM_BUILD_ROOT}{%{_bindir},%{_mandir}/man1}
- %{__install} -m555 keychain ${RPM_BUILD_ROOT}%{_bindir}
- %{__install} -m555 keychain.1 ${RPM_BUILD_ROOT}%{_mandir}/man1
- %clean
- %{__rm} -rf ${RPM_BUILD_ROOT}
- %files
- %defattr(-, root, root)
- %doc ChangeLog README.rst COPYING.txt img/*.png
- %{_bindir}/keychain
- %{_mandir}/man1/keychain.1*
- %changelog
- * Wed Dec 12 2012 IWAI, Masaharu <iwai@alib.jp> 2.7.1-2
- - new upstream release
- - update Summary
- - update description
- - drop Japanese description
- - apply new versioning policy
- - spec in utf-8
- - update License: GPL to GPLv2
- - update URL and Source0: moved
- - add BuildRequires: perl
- - update document files
- * Tue Sep 19 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.3-0vl2
- - fix typo in Group:
- - use License: instead of Copyright:
- * Fri Feb 6 2004 IWAI, Masaharu <iwai@alib.jp> 2.0.3-0vl1
- - new upstream release
- - add COPYING in %%doc
- - update SOURCE0 URL
- - update user's manual in %%description
- * Sun Feb 03 2002 akira yamada <akira@vinelinux.org> 1.8-0vl3
- - requires bash
- * Mon Dec 03 2001 Yoichi Imai <yoichi@silver-forest.com>
- - 1.8-0vl1
- - source update
- * Sun Dec 02 2001 Yoichi Imai <yoichi@silver-forest.com>
- - 1.7-0vl1
- - initial release.
|