You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.3 KiB
46 lines
1.3 KiB
Summary: Yet Another Dotfiles Manager |
|
Name: yadm |
|
Version: 1.05 |
|
Release: 1 |
|
URL: https://github.com/TheLocehiliosan/yadm |
|
License: GPLv3 |
|
Group: Development/Tools |
|
Requires: bash |
|
Requires: git |
|
Source: https://github.com/TheLocehiliosan/%{name}/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz |
|
BuildArch: noarch |
|
|
|
%description |
|
yadm is a dotfile management tool with 3 main features: Manages files across |
|
systems using a single Git repository. Provides a way to use alternate files on |
|
a specific OS or host. Supplies a method of encrypting confidential data so it |
|
can safely be stored in your repository. |
|
|
|
%prep |
|
%setup -q |
|
|
|
%build |
|
|
|
%install |
|
mkdir -p ${RPM_BUILD_ROOT}%{_bindir} |
|
mkdir -p ${RPM_BUILD_ROOT}%{_mandir}/man1 |
|
install -m 755 yadm ${RPM_BUILD_ROOT}%{_bindir} |
|
install -m 644 yadm.1 ${RPM_BUILD_ROOT}%{_mandir}/man1 |
|
|
|
%files |
|
%defattr(-,root,root) |
|
%attr(755,root,root) %{_bindir}/yadm |
|
%attr(644,root,root) %{_mandir}/man1/* |
|
|
|
%changelog |
|
* Thu Sep 8 2016 Tim Byrne <sultan@locehilios.com> 1.05-1 |
|
- Improve portability of shebang line |
|
- Support for symlinked directories |
|
- Improve portability of tar parameters |
|
- Support alternate gpg program |
|
- Fallback to using ls if /bin/ls does not exist |
|
|
|
* Fri Apr 22 2016 Tim Byrne <sultan@locehilios.com> 1.04-1 |
|
- Support alternate paths for yadm data |
|
- Support asymmetric encryption |
|
- Prevent the mixing of output and gpg prompts
|
|
|