-
Notifications
You must be signed in to change notification settings - Fork 8
/
edd.spec
57 lines (45 loc) · 1.59 KB
/
edd.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
Name: edd
Version: 0.4
Release: 1%{?dist}
Summary: Always use your favorite text editor, anywhere.
License: GPLv2+
URL: http://psss.fedorapeople.org/edd/
Source0: http://psss.fedorapeople.org/edd/download/%{name}-%{version}.tar.bz2
BuildArch: noarch
Requires: xclip
%description
Edd is a tiny script which allows to easily edit content of the
clipboard with a single keyboard shortcut. In this way Edd allows
you to always use your favorite text editor, wherever you need.
%prep
%setup -q
%build
%install
mkdir -p %{buildroot}%{_bindir}
mkdir -p %{buildroot}%{_mandir}/man1
install -pm 755 edd %{buildroot}%{_bindir}
install -pm 644 docs/*.1.gz %{buildroot}%{_mandir}/man1
%files
%{_mandir}/man1/*
%{_bindir}/edd
%doc README.rst
%{!?_licensedir:%global license %%doc}
%license LICENSE
%changelog
* Fri Jan 10 2020 Petr Šplíchal <[email protected]> - 0.4-1
- Update shortcut-setting note to mention Gnome 2
- Simplify error handling, whitespace cleanup
- Update --shortcut to work also with gnome2
* Tue Sep 01 2015 Petr Šplíchal <[email protected]> 0.3-1
- Support for simple config, documentation update
- Strip trailing newlines from edited text
- Bail out if no file selected with --list [fix #5]
- Document the Ctrl-Shift-V keyboard shortcut
* Fri Aug 28 2015 Petr Šplíchal <[email protected]> 0.2-1
- Document new options, some adjustments
- New option --last, some reorganization [fix #1]
- Work around RHEL7 zenity bug [BZ#1060471]
- Use the primary mouse selection first [fix #2]
- Option --list, fixing issue #3
* Tue Aug 25 2015 Petr Šplíchal <[email protected]> 0.1-1
- Initial packaging.