Compare commits
1 commit
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
80608b04b1 |
4 changed files with 103 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -0,0 +1 @@
|
|||
/yank-1.3.0.tar.gz
|
||||
1
sources
1
sources
|
|
@ -0,0 +1 @@
|
|||
SHA512 (yank-1.3.0.tar.gz) = be449c27a28479d96123fc79cafb1c33b4a7f626644765882c686db200e4755cda6ae28404b65f2bcfe02d842c5455ef9f9463cd0f392d02a561a713a6ae07ca
|
||||
1
yank.rpmlintrc
Normal file
1
yank.rpmlintrc
Normal file
|
|
@ -0,0 +1 @@
|
|||
addFilter('.*spelling-error.*')
|
||||
100
yank.spec
Normal file
100
yank.spec
Normal file
|
|
@ -0,0 +1,100 @@
|
|||
Name: yank
|
||||
Version: 1.3.0
|
||||
Release: 1%{?dist}
|
||||
Summary: Tool for selecting and copying text from stdin without a mouse
|
||||
|
||||
License: MIT
|
||||
URL: https://github.com/mptre/%{name}
|
||||
Source0: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz
|
||||
|
||||
BuildRequires: make
|
||||
BuildRequires: gcc
|
||||
|
||||
Requires: bash
|
||||
|
||||
# Executable 'yank' already exists in another package (EMBOSS-6.6.0-3.fc24.x86_64). Binary is 'yank-cli'.
|
||||
%global name_change yank-cli
|
||||
|
||||
%description
|
||||
Read input from stdin and display a selection interface that allows a field
|
||||
to be selected and copied to the clipboard. Fields are either recognized by
|
||||
a regular expression using the -g option or by splitting the input on a
|
||||
delimiter sequence using the -d option.
|
||||
|
||||
|
||||
%prep
|
||||
%autosetup
|
||||
|
||||
|
||||
%build
|
||||
%if 0%{?rhel}
|
||||
%set_build_flags
|
||||
%endif
|
||||
%make_build PROG=%{name_change}
|
||||
|
||||
%install
|
||||
%make_install PREFIX=%{_prefix} INSTALL_PROGRAM='install -m 0755' PROG=%{name_change}
|
||||
|
||||
# Provide the same manpage for both 'yank' and 'yank-cli'
|
||||
ln -s %{_mandir}/man1/%{name}.1 %{buildroot}%{_mandir}/man1/%{name_change}.1
|
||||
|
||||
|
||||
%files
|
||||
%{_bindir}/%{name_change}
|
||||
%{_mandir}/man1/%{name}*
|
||||
%{_mandir}/man1/%{name_change}*
|
||||
%license LICENSE
|
||||
%doc README.md CHANGELOG.md
|
||||
|
||||
|
||||
%changelog
|
||||
* Tue Aug 16 2022 Jonathan Wright <jonathan@almalinux.org> - 1.3.0-1
|
||||
- Update to 1.3.0
|
||||
|
||||
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.3-14
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.3-13
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.3-12
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Thu Jan 28 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.3-11
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.3-10
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Fri Jan 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.3-9
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Sat Jul 27 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.3-8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.3-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.3-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Thu Mar 01 2018 nmilosev <nmilosev@fedoraproject.org> - 0.8.3-5
|
||||
- New upstream version (same version code)
|
||||
|
||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.3-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.3-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.3-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Mon Jun 05 2017 nmilosev <nmilosev@fedoraproject.org> - 0.8.3-1
|
||||
- Upstream: 0.8.3
|
||||
* Sun Feb 19 2017 nmilosev <nmilosev@fedoraproject.org> - 0.8.2-1
|
||||
- Upstream: 0.8.2
|
||||
* Sat Feb 18 2017 nmilosev <nmilosev@fedoraproject.org> - 0.8.1-1
|
||||
- Integrated patches for debuginfo and name changing to the upstream
|
||||
* Thu Feb 16 2017 nmilosev <nmilosev@fedoraproject.org> - 0.8.0-1
|
||||
- Initial RPM for Fedora
|
||||
Loading…
Add table
Add a link
Reference in a new issue