This repository has been archived by the owner on Mar 8, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
gmrun.spec.in
108 lines (85 loc) · 3.63 KB
/
gmrun.spec.in
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
%define prefix @PREFIX@
Name: @PACKAGE@
Version: @VERSION@
Release: 2
Summary: Small GTK based 'Run application'
Group: X11/Utilities
Source: %{name}-%{version}.tar.gz
License: GPL
Packager: Mihai Bazon <[email protected]>
BuildPrereq: gtk+ >= 2.0.6
BuildRoot: %{_tmppath}/%{name}-root
%description
Short GtkEntry for file autocompletion + main.cc that does the needed stuff
for running programs. This is intended as a replacement to grun, which
(sorry) sucks. The idea comes from the KDE Window Manager (ALT-F2 in KDE).
Though, GNOME is better :)
%prep
%setup -q
%build
%configure
%install
rm -rf %{buildroot}
make install-strip DESTDIR=%{buildroot}
%clean
rm -rf %{buildroot}
%files
%defattr(-,root,root)
%{_bindir}/%{name}
%doc AUTHORS COPYING INSTALL README NEWS ChangeLog
%dir %{_datadir}/%{name}
%{_datadir}/%{name}/*
%changelog
* Sun Aug 03 2003 Mihai Bazon <[email protected]> 0.9-2
- fixed a parsing bug in the "run command" function
* Sun Jun 22 2003 Marius FERARU <[email protected]> 0.9-0.n0i
- version 0.9
* Sat Jun 14 2003 Marius FERARU <[email protected]> 0.8.1-1.n0i
- rebuild on RHL9
* Sat Aug 17 2002 Mihai Bazon <[email protected]>
- Some bugs fixed, specifically the behavior of END/HOME keys (or C-E, C-A),
and the major one: you could not run a file that has an extension handler
with some other program than the extension handler :)
* Fri Aug 16 2002 Mihai Bazon <[email protected]>
- Fixed bug: filenames can now contain white spaces (will be backslash-ed)
- New feature: can specify application handler per file extension, so you
can directly type the name of some .cpp file and emacs will show up :)
see config file for details.
- New feature: can automatically simulate a TAB press after some timeout.
Check config file for details, key "TabTimeout" (0 to disable).
- New feature: you can now always use "system" for running programs
(specify --enable-system at configure).
* Fri Oct 19 2001 Mihai Bazon <[email protected]>
- Fixed bug with sorting of completion list
- Fixed bug with URL handling
- New parameter: list of execs to be always run in terminal
- New feature: last history line appears directly in edit line, selected
* Wed Aug 01 2001 Mihai Bazon <[email protected]>
- Programs are now executed using execv. We don't use system anymore, thus
avoiding forking another shell.
- gmrun.spec gets now generated automagically, at ./configure.
* Sun Jul 22 2001 Mihai Bazon <[email protected]>
- added "!" history backward search; like in bash, it finds the last command
which begins with the entered text.
- CTRL-R / CTRL-S don't show two identical consecutive records.
* Thu Jul 19 2001 Mihai Bazon <[email protected]>
- added history search capabilities (CTRL-R / CTRL-S, like in bash / Emacs)
- small bug fixes
* Fri Jun 29 2001 Mihai Bazon <[email protected]>
- history size configurable from config file
- window appears directly where it should (no more flicker)
* Wed May 14 2001 Mihai Bazon <[email protected]>
- added default configuration file (goes to /usr/share/gmrun)
* Wed May 07 2001 Marius Feraru <[email protected]>
- updated to version 0.5.3 and took over to 0.5.31
* Wed May 03 2001 Marius Feraru <[email protected]>
- updated to version 0.2.5 and took over to 0.2.51:
* configuration file with 2 options for now:
'Terminal' and 'Width'
* added some more (and hopefully more useful) documentation:
README.hints, README.gmrunrc and README.icewm
* Wed May 03 2001 Marius Feraru <[email protected]>
- updated to version 0.2.2:
* Ctrl-Enter spawns a terminal
* Wed May 02 2001 Marius Feraru <[email protected]>
- initial RPM build