source: projects/specs/branches/6/g/geany-plugins/geany-plugins-vl.spec @ 2562

Revision 2562, 22.1 KB checked in by kudoh, 13 years ago (diff)
Line 
1%global geany_plug_docdir %{_defaultdocdir}/%{name}-%{version}
2%global req_geany_ver 0.20
3
4Name:           geany-plugins
5Version:        0.20
6Release:        1%{?_dist_release}
7Summary:        Plugins for Geany
8Summary(ja):    Geany のプラグイン集
9
10Group:          Development/Tools
11License:        GPLv3
12URL:            http://plugins.geany.org/
13Source0:        http://plugins.geany.org/geany-plugins/geany-plugins-%{version}.tar.bz2
14BuildRoot:      %{_tmppath}/%{name}-%{version}-root
15
16BuildRequires:  geany-devel >= %{req_geany_ver} gettext intltool pkgconfig libtool
17BuildRequires:  lua-devel enchant-devel gtkspell-devel
18BuildRequires:  libxml2-devel >= 2.6.27
19BuildRequires:  ctpl-devel >= 0.2
20
21Requires:  %{name}-addons %{name}-geanydoc %{name}-geanygdb %{name}-geanylatex
22Requires:  %{name}-geanylipsum %{name}-geanylua %{name}-geanyprj %{name}-geanysendmail
23Requires:  %{name}-geanyvc %{name}-shiftcolumn %{name}-spellcheck
24Requires:  %{name}-codenav %{name}-treebrowser %{name}-geanyextrasel
25Requires:  %{name}-geanyinsertnum %{name}-pretty-print %{name}-geanygendoc
26Requires:  %{name}-updatechecker %{name}-webhelper
27
28
29%description
30Plugins for Geany. Plugins included are:
31* Addons (Various small Addons)
32* Code navigation (Navigate through your source code easily)
33* Geanydoc (Call specific documentation from within Geany)
34* Geanyextrasel (Additional features for selecting code)
35* GeanyGenDoc (Automatically generate documentation source code)
36* GeanyGDB (Integration with GDB)
37* GeanyLaTeX (Improved Support for LaTeX documents)
38* GeanyLipsum (Inserting blocks of Lorem Ipsum text)
39* GeanySendMail (Sending of documents from within Geany)
40* GeanyVC (Support for various Version Control Systems)
41* Geanyinsertnum (Insert huge number ranges with small efforts)
42* Geanylua (Support for Scripting with Lua)
43* Geanyprj (Alternate project management for Geany)
44* Shiftcolumn (Moving blocks of text horizontally)
45* Spellcheck (Spell checking of documents or marked text)
46* Treebrowser (Alternate file browser with tree view of folders)
47* XML Pretty Printer
48* Updatechecker (Automatically check for Geany updates)
49* Webhelper (Preview and Debug Web documents from within Geany using WebKit)
50
51This package is meta package to install all geany-plugins.
52
53%description -l ja
54Geany のプラグインです。プラグインには以下のものが含まれています。
55* Addons (色々と小さなアドオン)
56* Code navigation (ソースコード間を簡単に移動)
57* Geanydoc (geany から固有のドキュメントを呼び出す)
58* Geanyextrasel (コード選択のための追加機能)
59* GeanyGenDoc (ソースコードから自動的にドキュメントの元を生成)
60* GeanyGDB (GDB 統合環境を提供)
61* GeanyLaTex (LaTeX ドキュメントのサポートを改善)
62* GeanyLipsum (Lorem Ipsum テキストのブロックを挿入)
63* GeanySendMail (Geany からドキュメントの送信を許可)
64* GeanyVC (色々なバージョン管理システムのサポート)
65* Geanyinsertnum (僅かな労力で膨大な範囲の番号を挿入)
66* Geanylua (lua スクリプトのサポートを提供)
67* Geanyprj (geany の代替プロジェクト管理)
68* Shiftcolumn (テキストブロックを水平方向に移動)
69* Spellcheck (ドキュメントのスペルチェック)
70* Treebrowser (フォルダの内容をツリービューする代替ファイルブラウザ)
71* XML Pretty Printer
72* Updatechecker (Geany の更新を自動的にチェック)
73* Webhelper (WebKit を使い Geany から Web ドキュメントのプレビューとデバッグを実行)
74
75このパッケージは、geany-plugins をすべてインストールするための
76メタパッケージです。
77
78%package common
79Summary:   Common files used by all geany plugins
80Summary(ja): すべての Geany プラグインに用いられる共通ファイル
81Group:     Development/Tools
82Requires:  geany >= %{req_geany_ver}
83
84%description common
85This package contains some common files which are used by every Geany plugin,
86e.g. language translations.
87
88%description common -l ja
89このパッケージには、例えば翻訳ファイルなどの
90すべての Geany プラグイン で用いられる共通ファイルが含まれています。
91
92%package addons
93Summary:   Miscellaneous Addons for Geany
94Summary(ja): Geany のその他のアドオン
95Group:     Development/Tools
96Requires:  geany >= %{req_geany_ver}
97Requires:  geany-plugins-common = %{version}-%{release}
98Obsoletes: geany-plugin-addons
99
100%description addons
101This plugins consists of various small addons too small to justify their own
102plugin, but are useful to have. The following functionality is implemented:
103* Doclist: This addon places a new item in the toolbar and when clicked offers
104  a menu listing all open files plus the 'Close All' and 'Close Other
105  Documents' menu items. This can be useful to quickly access open files and
106  switch to them.
107* OpenURI: Adds 'Open URI' and 'Copy URI' menu items to the editor menu when
108  the word under the cursor looks like a URI. 'Open URI' uses the browser
109  command configured in Geany to open it.
110* Tasks:The tasks plugin goes through a file being edited and picks out lines
111  with "TODO" or "FIXME" in them. It collects the text after those words and
112  puts them in a new "Tasks" tab in the message window. Clicking on a task in
113  that tab takes you to the line in the file where the task was defined.
114* Systray: Adds a status icon to the notification area (systray) and provides
115  a simple popup menu with some basic actions. It can also be used to quickly
116  show and hide the Geany main window.
117
118
119%package codenav
120Summary:    Navigate through your source code easily
121Summary(ja):  ソースコード間を簡単に移動
122Group:     Development/Tools
123Requires:  geany >= %{req_geany_ver}
124Requires:  geany-plugins-common = %{version}-%{release}
125
126%description codenav
127This plugin adds some facilities for navigating in the code.
128Actually, it will make it possible to:
129- switch between header and implementation
130- go to a file by typing its name
131
132
133%package geanyextrasel
134Summary:   Additional features for selecting code
135Summary(ja): コード選択のための追加機能
136Group:     Development/Tools
137Requires:  geany >= %{req_geany_ver}
138Requires:  geany-plugins-common = %{version}-%{release}
139
140%description geanyextrasel
141Geanyextrasel provides some special features for selecting code, e.g. from
142opening brace to closed brace and so on. This plugin will be very useful for
143you if you're a programmer and working with much sourcecodes.
144
145
146%package geanygdb
147Summary:   Debugger Plugin for Geany using GDB
148Summary(ja): GDB を使った Geany のデバッガプラグイン
149Group:     Development/Tools
150Requires:  geany >= %{req_geany_ver}
151Requires:  geany-plugins-common = %{version}-%{release}
152Requires:  gdb
153Obsoletes: geany-plugin-gdb
154
155%description geanygdb
156GeanyGDB plugin provides an integrated debugging environment for the
157GNU debugger (gdb).
158
159%description geanygdb -l ja
160GeanyGDB プラグインは GNU debugger (gdb) のための
161統合的デバッグ環境を提供します。
162
163
164%package geanylatex
165Summary:   to improve LaTeX support plugin for Geany
166Summary(ja): Geany のための LaTeX サポート改善プラグイン
167Group:     Development/Tools
168Requires:  geany >= %{req_geany_ver}
169Requires:  geany-plugins-common = %{version}-%{release}
170Requires:  texlive
171Obsoletes: geany-plugin-latex
172
173%description geanylatex
174This plugin improves LaTeX support in Geany. It provides several templates for
175new documents, help with adding labels and inserting special characters,
176and much more.
177
178%description geanylatex -l ja
179このプラグインは Geany で LaTeX のサポートを改善するプラグインです。
180新しい文書のためのいくつかのテンプレート、
181ラベルの追加や特殊文字の挿入機能などを提供します。
182
183
184%package geanylipsum
185Summary:   Lorem Ipsum generator for Inserting Placeholder Text
186Group:     Development/Tools
187Requires:  geany >= %{req_geany_ver}
188Requires:  geany-plugins-common = %{version}-%{release}
189
190%description geanylipsum
191GeanyLipsum is a Lorem Ipsum generator for inserting placeholder text into a
192document.
193
194
195%package geanylua
196Summary:   Support developing Lua Scripting for Geany
197Summary(ja): Geany で Lua スクリプト開発をサポート
198Group:     Development/Tools
199Requires:  geany >= %{req_geany_ver}
200Requires:  geany-plugins-common = %{version}-%{release}
201Requires:  lua
202
203%description geanylua
204This plugin provides extensive support for developing in the lua programming
205language.
206
207%description geanylua -l ja
208このプラグインは、lua プログラミング言語で開発するための
209広範なサポートを提供します。
210
211
212%package geanysendmail
213Summary:   Send E-Mails from within Geany
214Summary(ja): Geany 内から E-Mail を送信するプラグイン
215Group:     Development/Tools
216Requires:  geany >= %{req_geany_ver}
217Requires:  geany-plugins-common = %{version}-%{release}
218
219%description geanysendmail
220GeanySendMail is a little plugin to send a document as attachment using the
221preferred mail client from inside Geany. It is similar to the envelope symbol
222of most office tools and requires a mail client that supports remote calls.
223
224
225%package geanyvc
226Summary:   Version Control plugin for Geany
227Summary(ja): Geany のバージョン管理プラグイン
228Group:     Development/Tools
229Requires:  geany >= %{req_geany_ver}
230Requires:  geany-plugins-common = %{version}-%{release}
231Obsoletes: geany-plugin-vc
232Provides:  geanyvc = %{version}-%{release}
233
234%description geanyvc
235Geanyvc is a plugin that provides a uniform way of accessing different version
236control systems from within the Geany IDE. Currently, support for the following
237version control systems is provided:
238
239* Bazaar
240* Git
241* Mercurial
242* Subversion
243* SVK
244* CVS
245
246%description geanyvc -l ja
247Geanyvc は Geany IDE から異なるバージョン管理システムにアクセスする
248均一的方法を提供するプラグインです。
249現在、サポートするバージョン管理システムは以下の通りです。
250
251* Bazaar
252* Git
253* Mercurial
254* Subversion
255* SVK
256* CVS
257
258
259%package geanyinsertnum
260Summary:   Insert huge number ranges with small efforts
261Summary(ja):   僅かな労力で膨大な範囲の番号を挿入
262Group:     Development/Tools
263Requires:  geany >= %{req_geany_ver}
264Requires:  geany-plugins-common = %{version}-%{release}
265
266%description geanyinsertnum
267Geanyinsertnum replaces a (possibly zero-width) rectangular selection with
268integer numbers, using start/step/base etc. specified by the user. For
269practical reasons, the number of lines is limited to 500000.
270
271
272%package shiftcolumn
273Summary:   Move Blocks of Text horizontally
274Summary(ja): テキストブロックを水平方向に移動
275Group:     Development/Tools
276Requires:  geany >= %{req_geany_ver}
277Requires:  geany-plugins-common = %{version}-%{release}
278
279%description shiftcolumn
280Shiftcolumn allows you to move blocks of text horizontally in Geany.
281
282%description shiftcolumn -l ja
283Shiftcolumn は Geany 内でテキストブロックを水平方向に移動させることが
284できます。
285
286%package spellcheck
287Summary:   Spellcheck Text in Geany using the Enchant Library
288Summary(ja): Enchant ライブラリを使い Geany でスペルチェック
289Group:     Development/Tools
290Requires:  geany >= %{req_geany_ver}
291Requires:  geany-plugins-common = %{version}-%{release}
292Requires:  enchant
293
294%description spellcheck
295Spellcheck checks the selected text (or the whole document) with the spellcheck
296library Enchant.
297
298%description spellcheck -l ja
299Spellcheck は、選択したテキスト(または文書全体)のスペルチェックを
300スペルチェックライブラリの Enchant で行います。
301
302
303%package geanydoc
304Summary:   Call documentation from within Geany
305Summary(ja): Geany 内からドキュメントを呼び出す
306Group:     Development/Tools
307Requires:  geany >= %{req_geany_ver}
308Requires:  geany-plugins-common = %{version}-%{release}
309
310%description geanydoc
311Geanydoc allows you to execute specific commands on the word under the cursor.
312This word is passed as an argument to the command. The output of the command
313can either be placed into a special buffer called "DOC" or can be used to
314execute an external program. Geanydoc is intended to be used for searching
315through API documentation.
316
317
318%package geanygendoc
319Summary:   Automatically generate documentation source code
320Group:     Development/Tools
321Requires:  geany >= %{req_geany_ver}
322Requires:  geany-plugins-common = %{version}-%{release}
323
324%description geanygendoc
325GeanyGenDoc is a plugin for Geany that aims to automatically generate
326documentation comment basis from the source code.
327
328You may also want to install the following packages which enable
329some extra features:
330 - Docutils (http://docutils.sourceforge.net/) -- or another implementation of
331   rst2html -- is needed to (re)generate the HTML manual.
332
333
334%package geanyprj
335Summary:   Provides an alternate project management tool for Geany
336Summary(ja): Geany で代替プロジェクト管理ツールを提供
337Group:     Development/Tools
338Requires:  geany >= %{req_geany_ver}
339Requires:  geany-plugins-common = %{version}-%{release}
340
341%description geanyprj
342Geanyprj provides an alternate project management approach to Geany's built-in
343project facility. The idea is to be less a "session manager" as the built-in
344project management does: It allows/requires you to manually open and close
345project and allows you to store project files in different locations from
346project sources.
347
348Geanyprj takes a different approach:
349It never saves session information, so that project files can be stored in
350version control without constant noise from changes of opened files or cursor
351position. You also will never have to open/close projects manually. If a
352*.geanyprj file is found somewhere up in path it will be opened automatically.
353
354
355%package treebrowser
356Summary:   Alternate file browser plugin providing a tree view of directories.
357Summary(ja): ディレクトリのツリービューを提供する代替ファイルブラウザプラグイン
358Group:     Development/Tools
359Requires:  geany >= %{req_geany_ver}
360Requires:  geany-plugins-common = %{version}-%{release}
361
362%description treebrowser
363The tree browser plugin for Geany provides an alternate way to browse through
364your files. It displays files and directories in a tree view and has more
365features than the file browser plugin delivered with Geany itself.
366
367
368%package pretty-print
369Summary:   XML pretty printing plugin for Geany
370Group:     Development/Tools
371Requires:  geany >= %{req_geany_ver}
372Requires:  geany-plugins-common = %{version}-%{release}
373Requires:  libxml2 >= 2.6.27
374
375%description pretty-print
376Plugin for Geany to easily beautify XML code.
377
378
379%package updatechecker
380Summary:   Automatically check for Geany updates
381Summary(ja): Geany の更新を自動的にチェック
382Group:     Development/Tools
383Requires:  geany-plugins-common = %{version}-%{release}
384BuildRequires: libsoup-devel
385
386%description updatechecker
387UpdateChecker is a plugin for Geany, which is able to check whether there is
388a more recent version of Geany available.
389
390
391%package webhelper
392Summary:   Preview and Debug Web documents from within Geany using WebKit
393Summary(ja): WebKit を使い Geany から Web ドキュメントのプレビューとデバッグを実行
394Group:     Development/Tools
395Requires:  geany-plugins-common = %{version}-%{release}
396BuildRequires: WebKit-gtk-devel >= 1.1.18
397
398%description webhelper
399WebHelper is a plugin for Geany that provides some web development
400facilities, such as a web page preview and some debugging tools (web
401inspector).
402
403Prominent features:
404
405* A basic web view, allowing to display any web page (using WebKit)
406* Possible automatic reloading of the web view upon document saving
407* A web inspector/debugging tool for the web view's content (including a
408  JavaScript console, a viewer and editor of processed HTML and CSS, a network
409  usage analysis tool and many more, thanks to WebKit).
410
411%prep
412%setup -q
413
414
415%build
416%configure --docdir=%{geany_plug_docdir}
417make %{?_smp_mflags}
418
419
420%install
421rm -rf $RPM_BUILD_ROOT
422make install -p DESTDIR=$RPM_BUILD_ROOT
423
424# Remove static library *.la files
425find $RPM_BUILD_ROOT -name '*.la' -exec rm -f '{}' \;
426
427# Remove zero-length files
428find $RPM_BUILD_ROOT -type f -empty -delete
429
430%find_lang %{name}
431
432
433%clean
434rm -rf $RPM_BUILD_ROOT
435
436%files
437
438%files common -f %{name}.lang
439%defattr(-,root,root,-)
440%dir %{_libdir}/%{name}/
441%dir %{_datadir}/%{name}/
442
443
444%files addons
445%defattr(-,root,root,-)
446%doc %{geany_plug_docdir}/addons
447%{_libdir}/geany/addons.so
448
449
450%files codenav
451%defattr(-,root,root,-)
452%doc %{geany_plug_docdir}/codenav
453%{_libdir}/geany/codenav.so
454
455
456%files geanydoc
457%defattr(-,root,root,-)
458%doc %{geany_plug_docdir}/geanydoc/
459%{_libdir}/geany/geanydoc.so
460
461
462%files geanygendoc
463%defattr(-,root,root,-)
464%doc %{geany_plug_docdir}/geanygendoc/
465%{_libdir}/geany/geanygendoc.so
466%{_datadir}/%{name}/geanygendoc/
467
468
469%files geanyextrasel
470%defattr(-,root,root,-)
471%doc %{geany_plug_docdir}/geanyextrasel/
472%{_libdir}/geany/geanyextrasel.so
473
474
475%files geanygdb
476%defattr(-,root,root,-)
477%doc %{geany_plug_docdir}/geanygdb/
478%{_libdir}/geany/geanygdb.so
479%{_libexecdir}/geany-plugins/geanygdb/ttyhelper
480
481
482%files geanylatex
483%defattr(-,root,root,-)
484%doc %{geany_plug_docdir}/geanylatex/
485%{_libdir}/geany/geanylatex.so
486
487
488%files geanylipsum
489%defattr(-,root,root,-)
490%doc %{geany_plug_docdir}/geanylipsum/
491%{_libdir}/geany/geanylipsum.so
492
493
494%files geanysendmail
495%defattr(-,root,root,-)
496%doc %{geany_plug_docdir}/geanysendmail/
497%{_libdir}/geany/geanysendmail.so
498
499
500%files geanyvc
501%defattr(-,root,root,-)
502%doc %{geany_plug_docdir}/geanyvc/
503%{_libdir}/geany/geanyvc.so
504
505
506%files geanyinsertnum
507%defattr(-,root,root,-)
508%doc %{geany_plug_docdir}/geanyinsertnum/
509%{_libdir}/geany/geanyinsertnum.so
510
511
512%files geanylua
513%defattr(-,root,root,-)
514%doc %{geany_plug_docdir}/geanylua/
515%{_libdir}/geany/geanylua.so
516%{_datadir}/%{name}/geanylua/
517%{_libdir}/%{name}/geanylua/
518
519
520%files geanyprj
521%defattr(-,root,root,-)
522%doc %{geany_plug_docdir}/geanyprj/
523%{_libdir}/geany/geanyprj.so
524
525
526%files shiftcolumn
527%defattr(-,root,root,-)
528%doc %{geany_plug_docdir}/shiftcolumn/
529%{_libdir}/geany/shiftcolumn.so
530
531
532%files spellcheck
533%defattr(-,root,root,-)
534%doc %{geany_plug_docdir}/spellcheck/
535%{_libdir}/geany/spellcheck.so
536
537
538%files treebrowser
539%defattr(-,root,root,-)
540%doc %{geany_plug_docdir}/treebrowser/
541%{_libdir}/geany/treebrowser.so
542
543
544%files pretty-print
545%defattr(-,root,root,-)
546%{_libdir}/geany/pretty-print.so
547
548
549%files updatechecker
550%defattr(-,root,root,-)
551%doc %{geany_plug_docdir}/updatechecker/
552%{_libdir}/geany/updatechecker.so
553
554
555%files webhelper
556%defattr(-,root,root,-)
557%doc %{geany_plug_docdir}/webhelper/
558%{_libdir}/geany/webhelper.so
559
560
561%changelog
562* Sun Jan 23 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> 0.20-1
563- new upstream release
564- added geany-plugins-updatechecker and geany-plugins-webhelper
565
566* Sun Aug 8 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 0.19-3
567- added geany-plugins-geanygendoc
568- added BuildRequires: ctpl-devel >= 0.2
569- changed geany-plugins-latex Requires: tetex to Requires: texlive
570- removed zero-length documentation files
571
572* Sun Jul 18 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 0.19-2
573- correct license to GPLv3+
574- added BuildRequires: libxml2-devel >= 2.6.27
575- added Requires: geany-plugins-codenav, geany-plugins-treebrowser,
576  geany-plugins-geanyextrasel, geany-plugins-geanyinsertnum, geany-plugins-pretty-print
577
578* Mon Jun 14 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 0.19-1
579- new upstream release
580
581* Sat Mar 13 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 0.18-3
582- fixed Requires geany-plugins
583- applied new naming policy to spec
584
585* Thu Jan 21 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 0.18-2
586- fixed Obsoletes geany-plugin-addons, geany-plugin-gdb, geany-plugin-latex, geany-plugin-vc
587  (see [BTS:VineLinux:0894])
588- proved Summary(ja)
589
590* Wed Nov 18 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> 0.18-1
591- initial build for Vine Linux (instead of now provided some geany-plugins)
592
593* Sat Oct 31 2009 Dominic Hopf <dmaphy@fedoraproject.org> 0.18-1
594- update to new upstream release
595
596* Sat Aug 16 2009 Dominic Hopf <dmaphy@fedoraproject.org> 0.17.1-6
597- build against and require geany 0.18
598
599* Mon Aug 10 2009 Ville Skyttä <ville.skytta@iki.fi> - 0.17.1-5
600- Use bzipped upstream tarball.
601
602* Sat Jul 25 2009 Dominic Hopf <dmaphy@fedoraproject.org> 0.17.1-4
603- write BuildRequires at the beginning of this file
604
605* Wed Jul 22 2009 Dominic Hopf <dmaphy@fedoraproject.org> 0.17.1-3
606- remove Requires: geany from the main package
607- change Group to Development/Tools
608- add release to the geanyvc Provides
609- entirely remove %%files stanza for the main package
610
611* Wed Jul 22 2009 Dominic Hopf <dmaphy@fedoraproject.org> 0.17.1-2
612- fix the required geany version also in the subpackages
613- remove the requires to sub-packages to avoid building the metapackage since
614  all geany plugins also can be installed by something like
615  'yum install geany-plugins-*'
616- fix the requires of geany-plugins-common to include the release
617
618* Wed Jul 22 2009 Dominic Hopf <dmaphy@fedoraproject.org> 0.17.1-1
619- bump upstream version to 0.17.1
620- fix required geany version to be 0.16 at the present
621
622* Sat Jul 18 2009 Dominic Hopf <dmaphy@fedoraproject.org> 0.17-5
623- add Requires for metapackage
624- rename subpackages back to geany-plugins-* instead of geany-plugin-*
625
626* Fri Jul 17 2009 Dominic Hopf <dmaphy@fedoraproject.org> 0.17-4
627- readd the geany_plug_docdir global to fix the versioned directory issue for
628  documentation files
629- replace geany-plugins with %%{name} to be more consistent with macro usage
630- remove zero-length documentation files
631- fix the changelog
632- remove static *.la-files
633- split up packages
634
635* Wed Jul 15 2009 Dominic Hopf <dmaphy@fedoraproject.org> 0.17-3
636- add %%{_datadir}/geany-plugins/geanylua/ to %%files-section
637
638* Wed Jul 15 2009 Dominic Hopf <dmaphy@fedoraproject.org> 0.17-2
639- fix %%files-section again, thanks to Jonathan for the hint.
640
641* Tue Jul 14 2009 Dominic Hopf <dmaphy@fedoraproject.org> 0.17-1
642- update URL to plugins.geany.org
643
644* Tue Jul 14 2009 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 0.17-0.2
645- Add Obsoletes for geanyvc
646- Add more BuildRequires and Requires
647
648* Tue Jul 14 2009 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 0.17-0.1
649- Update to 0.17 (first upstream release of tarball)
650- Fix handling of docs
651- Spec file cleanups
652
653* Mon Jun 22 2009 Pingou <pingou@pingoured.fr> 0.1-1
654- First RPM for Fedora
Note: See TracBrowser for help on using the repository browser.