-
Notifications
You must be signed in to change notification settings - Fork 0
/
mercurial.spec
592 lines (422 loc) · 17.9 KB
/
mercurial.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
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
%{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
Summary: Mercurial -- a distributed SCM
Name: mercurial
Version: 2.3.1
Release: 1%{?dist}.vvc
#%define upstreamversion %{version}-rc
%define upstreamversion %{version}
License: GPLv2+
Group: Development/Tools
URL: http://www.selenic.com/mercurial/
#Source0: http://www.selenic.com/mercurial/release/%{name}-%{version}.tar.gz
Source0: http://www.selenic.com/mercurial/release/%{name}-%{upstreamversion}.tar.gz
Source1: mercurial-site-start.el
Patch0: mercurial-i18n.patch
#Patch1: docutils-0.8.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
BuildRequires: python python-devel
BuildRequires: emacs-nox emacs-el pkgconfig gettext python-docutils
Requires: python
Provides: hg = %{version}-%{release}
%description
Mercurial is a fast, lightweight source control management system designed
for efficient handling of very large distributed projects.
Quick start: http://www.selenic.com/mercurial/wiki/index.cgi/QuickStart
Tutorial: http://www.selenic.com/mercurial/wiki/index.cgi/Tutorial
Extensions: http://www.selenic.com/mercurial/wiki/index.cgi/CategoryExtension
%define pkg mercurial
# If the emacs-el package has installed a pkgconfig file, use that to determine
# install locations and Emacs version at build time, otherwise set defaults.
%if %($(pkg-config emacs) ; echo $?)
%define emacs_version 22.1
%define emacs_lispdir %{_datadir}/emacs/site-lisp
%define emacs_startdir %{_datadir}/emacs/site-lisp/site-start.d
%else
%define emacs_version %{expand:%(pkg-config emacs --modversion)}
%define emacs_lispdir %{expand:%(pkg-config emacs --variable sitepkglispdir)}
%define emacs_startdir %{expand:%(pkg-config emacs --variable sitestartdir)}
%endif
%package -n emacs-%{pkg}
Summary: Mercurial version control system support for Emacs
Group: Applications/Editors
Requires: hg = %{version}-%{release}, emacs-common
Requires: emacs(bin) >= %{emacs_version}
Obsoletes: %{pkg}-emacs
%description -n emacs-%{pkg}
Contains byte compiled elisp packages for %{pkg}.
To get started: start emacs, load hg-mode with M-x hg-mode, and show
help with C-c h h
%package -n emacs-%{pkg}-el
Summary: Elisp source files for %{pkg} under GNU Emacs
Group: Applications/Editors
Requires: emacs-%{pkg} = %{version}-%{release}
%description -n emacs-%{pkg}-el
This package contains the elisp source files for %{pkg} under GNU Emacs.
%package hgk
Summary: Hgk interface for mercurial
Group: Development/Tools
Requires: hg = %{version}-%{release}, tk
%description hgk
A Mercurial extension for displaying the change history graphically
using Tcl/Tk. Displays branches and merges in an easily
understandable way and shows diffs for each revision. Based on
gitk for the git SCM.
Adds the "hg view" command. See
http://www.selenic.com/mercurial/wiki/index.cgi/UsingHgk for more
documentation.
%prep
#%setup -q
%setup -q -n %{name}-%{upstreamversion}
%patch0 -p0
#%patch1 -p1
%build
make all
%install
rm -rf $RPM_BUILD_ROOT
%{__python} setup.py install -O1 --root $RPM_BUILD_ROOT --prefix %{_prefix} --record=%{name}.files
make install-doc DESTDIR=$RPM_BUILD_ROOT MANDIR=%{_mandir}
grep -v -e 'hgk.py*' -e %{python_sitearch}/mercurial/ -e %{python_sitearch}/hgext/ < %{name}.files > %{name}-base.files
grep 'hgk.py*' < %{name}.files > %{name}-hgk.files
install -D -m 755 contrib/hgk $RPM_BUILD_ROOT%{_libexecdir}/mercurial/hgk
install -m 755 contrib/hg-ssh $RPM_BUILD_ROOT%{_bindir}
bash_completion_dir=$RPM_BUILD_ROOT%{_sysconfdir}/bash_completion.d
mkdir -p $bash_completion_dir
install -m 644 contrib/bash_completion $bash_completion_dir/mercurial.sh
zsh_completion_dir=$RPM_BUILD_ROOT%{_datadir}/zsh/site-functions
mkdir -p $zsh_completion_dir
install -m 644 contrib/zsh_completion $zsh_completion_dir/_mercurial
mkdir -p $RPM_BUILD_ROOT%{emacs_lispdir}
pushd contrib
for file in mercurial.el mq.el; do
emacs -batch --no-init-file --no-site-file --eval '(progn (setq load-path (cons "." load-path)))' -f batch-byte-compile $file
install -p -m 644 $file ${file}c $RPM_BUILD_ROOT%{emacs_lispdir}
rm ${file}c
done
popd
mkdir -p $RPM_BUILD_ROOT/%{_sysconfdir}/mercurial/hgrc.d
mkdir -p $RPM_BUILD_ROOT%{emacs_startdir} && install -m644 %SOURCE1 $RPM_BUILD_ROOT%{emacs_startdir}
cat >hgk.rc <<EOF
[extensions]
# enable hgk extension ('hg help' shows 'view' as a command)
hgk=
[hgk]
path=%{_libexecdir}/mercurial/hgk
EOF
install -m 644 hgk.rc $RPM_BUILD_ROOT/%{_sysconfdir}/mercurial/hgrc.d
cat > certs.rc <<EOF
# see: http://mercurial.selenic.com/wiki/CACertificates
[web]
cacerts = /etc/pki/tls/certs/ca-bundle.crt
EOF
install -m 644 certs.rc $RPM_BUILD_ROOT/%{_sysconfdir}/mercurial/hgrc.d
install -m 644 contrib/mergetools.hgrc $RPM_BUILD_ROOT%{_sysconfdir}/mercurial/hgrc.d/mergetools.rc
mv $RPM_BUILD_ROOT%{python_sitearch}/mercurial/locale $RPM_BUILD_ROOT%{_datadir}/locale
rm -rf $RPM_BUILD_ROOT%{python_sitearch}/mercurial/locale
%find_lang hg
grep -v locale %{name}-base.files > %{name}-base-filtered.files
%clean
rm -rf $RPM_BUILD_ROOT
%files -f %{name}-base-filtered.files -f hg.lang
%defattr(-,root,root,-)
%doc CONTRIBUTORS COPYING doc/README doc/hg*.txt doc/hg*.html *.cgi contrib/*.fcgi
%doc %attr(644,root,root) %{_mandir}/man?/hg*.gz
%doc %attr(644,root,root) contrib/*.svg contrib/sample.hgrc
%config(noreplace) %{_sysconfdir}/bash_completion.d/mercurial.sh
%{_bindir}/hg
%{_bindir}/hg-ssh
%dir %{_sysconfdir}/bash_completion.d/
%dir %{_datadir}/zsh/
%{_datadir}/zsh/site-functions/
%dir %{_sysconfdir}/mercurial
%dir %{_sysconfdir}/mercurial/hgrc.d
%{python_sitearch}/mercurial
%{python_sitearch}/hgext
%config(noreplace) %{_sysconfdir}/mercurial/hgrc.d/mergetools.rc
%config(noreplace) %{_sysconfdir}/mercurial/hgrc.d/certs.rc
%files -n emacs-%{pkg}
%defattr(-,root,root,-)
%{emacs_lispdir}/*.elc
%{emacs_startdir}/*.el
%files -n emacs-%{pkg}-el
%defattr(-,root,root,-)
%{emacs_lispdir}/*.el
%files hgk -f %{name}-hgk.files
%defattr(-,root,root,-)
%{_libexecdir}/mercurial/
%{_sysconfdir}/mercurial/hgrc.d/hgk.rc
##%%check
##cd tests && %{__python} run-tests.py
%changelog
* Wed Oct 31 2012 Vadym Chepkov <[email protected]> - 2.3.1-1.vvc
- ported for EPEL5
* Wed Sep 5 2012 Neal Becker <[email protected]> - 2.3.1-1
- Update to 2.3.1
* Mon Aug 13 2012 Neal Becker <[email protected]> - 2.3-1
- Update to 2.3
* Fri Jul 20 2012 Fedora Release Engineering <[email protected]> - 2.2.3-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
* Mon Jul 9 2012 Neal Becker <[email protected]> - 2.2.3-1
- Update to 2.2.3
* Sun Jun 3 2012 Neal Becker <[email protected]> - 2.2.2-1
- Update to 2.2.2
* Fri May 25 2012 Neal Becker <[email protected]> - 2.2.1-2
- Add certs.rc
* Fri May 4 2012 Neal Becker <[email protected]> - 2.2.1-1
- update to 2.2.1
* Wed May 2 2012 Neal Becker <[email protected]> - 2.2-1
- Update to 2.2
* Fri Apr 6 2012 Neal Becker <[email protected]> - 2.1.2-1
- Update to 2.1.2
* Sat Mar 10 2012 Neal Becker <[email protected]> - 2.1.1-1
- Update to 2.1.1
* Fri Jan 13 2012 Fedora Release Engineering <[email protected]> - 2.0.2-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
* Sun Jan 1 2012 Neal Becker <[email protected]> - 2.0.2-1
- Update to 2.0.2
* Wed Nov 16 2011 Neal Becker <[email protected]> - 2.0-1
- Update to 2.0
* Tue Oct 11 2011 Neal Becker <[email protected]> - 1.9.3-2
- Fix br 744931 (unowned dir)
* Sun Oct 2 2011 Neal Becker <[email protected]> - 1.9.3-1
- update to 1.9.3
* Sat Aug 27 2011 Neal Becker <[email protected]> - 1.9.2-1
- Update to 1.9.2
* Wed Aug 3 2011 Neal Becker <[email protected]> - 1.9.1-1
- Update to 1.9.1
* Fri Jul 1 2011 Neal Becker <[email protected]> - 1.9-2
- Remove docutils patch
* Fri Jul 1 2011 Neal Becker <[email protected]> - 1.9-1
- Update to 1.9
* Thu Jun 2 2011 Neal Becker <[email protected]> - 1.8.4-2
- Add docutils-0.8 patch
* Wed Jun 1 2011 Neal Becker <[email protected]> - 1.8.4-1
- Update to 1.8.4
* Sat Apr 2 2011 Neal Becker <[email protected]> - 1.8.2-1
- update to 1.8.2
* Mon Mar 14 2011 Neal Becker <[email protected]> - 1.8.1-2
- Try BR emacs-nox
* Mon Mar 14 2011 Neal Becker <[email protected]> - 1.8.1-1
- Update to 1.8.1
* Wed Mar 2 2011 Neal Becker <[email protected]> - 1.8-1
- Update to 1.8
* Tue Feb 08 2011 Fedora Release Engineering <[email protected]> - 1.7.5-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
* Sat Feb 5 2011 Neal Becker <[email protected]> - 1.7.5-1
- Update to 1.7.5
* Sun Jan 2 2011 Neal Becker <[email protected]> - 1.7.3-1
- Update to 1.7.3
* Thu Dec 2 2010 Neal Becker <[email protected]> - 1.7.2-1
- Update to 1.7.2
* Mon Nov 15 2010 Neal Becker <[email protected]> - 1.7.1-1
- Update to 1.7.1
* Mon Nov 1 2010 Neal Becker <[email protected]> - 1.7-3
- BR python-docutils
* Mon Nov 1 2010 Neal Becker <[email protected]> - 1.7-2
- Make that 1.7
* Mon Nov 1 2010 Neal Becker <[email protected]> - 1.7.0-1
- Update to 1.7.0
* Thu Oct 21 2010 Neal Becker <[email protected]> - 1.6.4-4
- Try another way to own directories
* Wed Oct 20 2010 Neal Becker <[email protected]> - 1.6.4-3
- Fixup unowned directories
* Wed Oct 6 2010 Neal Becker <[email protected]> - 1.6.4-3
- patch i18n.py so hg will find moved locale files
* Fri Oct 1 2010 Neal Becker <[email protected]> - 1.6.4-1
- Update to 1.6.4
* Fri Aug 27 2010 Neal Becker <[email protected]> - 1.6.3-1
- Fix some rpmlint issues
* Thu Aug 26 2010 Neal Becker <[email protected]> - 1.6.3-1
- Update to 1.6.3
* Mon Aug 2 2010 Neal Becker <[email protected]> - 1.6.2-1
- Update to 1.6.2
* Wed Jul 21 2010 David Malcolm <[email protected]> - 1.6-4
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
* Sun Jul 4 2010 Neal Becker <[email protected]> - 1.6-2
- Remove hg-viz, git-rev-tree
* Sun Jul 4 2010 Neal Becker <[email protected]> - 1.6-1
- Update to 1.6
- git-viz is removed
* Fri Jun 25 2010 Neal Becker <[email protected]> - 1.5.4-1
- Don't install mercurial-convert-repo (use hg convert instead)
* Wed Jun 2 2010 Neal Becker <[email protected]> - 1.5.4-1
- Update to 1.5.4
* Fri May 14 2010 Neal Becker <[email protected]> - 1.5.3-1
- Update to 1.5.3
* Mon May 3 2010 Neal Becker <[email protected]> - 1.5.2-1
- update to 1.5.2
* Mon Apr 5 2010 Neal Becker <[email protected]> - 1.5.1-1
- Update to 1.5.1
* Sat Mar 6 2010 Neal Becker <[email protected]> - 1.5-2
- doc/ja seems to be gone
* Sat Mar 6 2010 Neal Becker <[email protected]> - 1.5-1
- Update to 1.5
* Fri Feb 5 2010 Neal Becker <[email protected]> - 1.4.3-2
- License changed to gplv2+
* Mon Feb 1 2010 Neal Becker <[email protected]> - 1.4.3-1
- Update to 1.4.3
* Sat Jan 2 2010 Neal Becker <[email protected]> - 1.4.2-1
- Update to 1.4.2
* Wed Dec 2 2009 Neal Becker <[email protected]> - 1.4.1-1
- Update to 1.4.1
* Mon Nov 16 2009 Neal Becker <[email protected]> - 1.4-1.1
- Bump to 1.4-1.1
* Mon Nov 16 2009 Neal Becker <[email protected]> - 1.4-1
- Update to 1.4
* Fri Jul 24 2009 Neal Becker <[email protected]> - 1.3.1-3
- Disable self-tests
* Fri Jul 24 2009 Neal Becker <[email protected]> - 1.3.1-2
- Update to 1.3.1
* Wed Jul 1 2009 Neal Becker <[email protected]> - 1.3-2
- Re-enable tests since they now pass
* Wed Jul 1 2009 Neal Becker <[email protected]> - 1.3-1
- Update to 1.3
* Sat Mar 21 2009 Neal Becker <[email protected]> - 1.2.1-1
- Update to 1.2.1
- Tests remain disabled due to failures
* Wed Mar 4 2009 Neal Becker <[email protected]> - 1.2-2
- patch0 for filemerge bug should not be needed
* Wed Mar 4 2009 Neal Becker <[email protected]> - 1.2-1
- Update to 1.2
* Tue Feb 24 2009 Neal Becker <[email protected]> - 1.1.2-7
- Use noreplace option on config
* Mon Feb 23 2009 Neal Becker <[email protected]> - 1.1.2-6
- Fix typo
* Mon Feb 23 2009 Neal Becker <[email protected]> - 1.1.2-5
- Own directories bash_completion.d and zsh/site-functions
https://bugzilla.redhat.com/show_bug.cgi?id=487015
* Mon Feb 9 2009 Neal Becker <[email protected]> - 1.1.2-4
- Mark mergetools.rc as config
* Sat Feb 7 2009 Neal Becker <[email protected]> - 1.1.2-3
- Patch mergetools.rc to fix filemerge bug
* Thu Jan 1 2009 Neal Becker <[email protected]> - 1.1.2-2
- Rename mergetools.rc -> mergetools.rc.sample
* Thu Jan 1 2009 Neal Becker <[email protected]> - 1.1.2-1
- Update to 1.1.2
* Wed Dec 24 2008 Neal Becker <[email protected]> - 1.1.1-3
- Install mergetools.rc as mergetools.rc.sample
* Sun Dec 21 2008 Neal Becker <[email protected]> - 1.1.1-2
- Fix typo
* Sun Dec 21 2008 Neal Becker <[email protected]> - 1.1.1-1
- Update to 1.1.1
* Thu Dec 04 2008 Ignacio Vazquez-Abrams <[email protected]> - 1.1-2
- Rebuild for Python 2.6
* Tue Dec 2 2008 Neal Becker <[email protected]> - 1.1-1
- Update to 1.1
* Mon Dec 1 2008 Neal Becker <[email protected]> - 1.0.2-4
- Bump tag
* Mon Dec 1 2008 Neal Becker <[email protected]> - 1.0.2-3
- Remove BR asciidoc
- Use macro for python executable
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <[email protected]> - 1.0.2-2
- Rebuild for Python 2.6
* Fri Aug 15 2008 Neal Becker <[email protected]> - 1.0.2-1
- Update to 1.0.2
* Sun Jun 15 2008 Neal Becker <[email protected]> - 1.0.1-4
- Bitten by expansion of commented out macro (again)
* Sun Jun 15 2008 Neal Becker <[email protected]> - 1.0.1-3
- Add BR pkgconfig
* Sun Jun 15 2008 Neal Becker <[email protected]> - 1.0.1-2
- Update to 1.0.1
- Fix emacs_version, etc macros (need expand)
- Remove patch0
* Mon Jun 2 2008 Neal Becker <[email protected]> - 1.0-15
- Bump release tag
* Thu Apr 17 2008 Neal Becker <[email protected]> - 1.0-14
- Oops, fix %%files due to last change
* Wed Apr 16 2008 Neal Becker <[email protected]> - 1.0-13
- install mergetools.hgrc as mergetools.rc
* Sat Apr 12 2008 Neal Becker <[email protected]> - 1.0-12
- Remove xemacs pkg - this is moved to xemacs-extras
- Own %{python_sitearch}/{mercurial,hgext} dirs
* Thu Apr 10 2008 Neal Becker <[email protected]> - 1.0-11
- Use install -p to install .el{c} files
- Don't (load mercurial) by default.
* Wed Apr 9 2008 Neal Becker <[email protected]> - 1.0-10
- Patch to hgk from Mads Kiilerich <[email protected]>
* Tue Apr 8 2008 Neal Becker <[email protected]> - 1.0-9
- Add '-l mercurial.el' for emacs also
* Tue Apr 8 2008 Neal Becker <[email protected]> - 1.0-8
- BR xemacs-packages-extra
* Tue Apr 8 2008 Neal Becker <[email protected]> - 1.0-7
- Various fixes
* Tue Apr 8 2008 Neal Becker <[email protected]> - 1.0-6
- fix to comply with emacs packaging guidelines
* Thu Mar 27 2008 Neal Becker <[email protected]> - 1.0-5
- Move hgk-related py files to hgk
- Put mergetools.hgrc in /etc/mercurial/hgrc.d
- Add hgk.rc and put in /etc/mercurial/hgrc.d
* Wed Mar 26 2008 Neal Becker <[email protected]> - 1.0-4
- Rename mercurial-site-start -> mercurial-site-start.el
* Wed Mar 26 2008 Neal Becker <[email protected]> - 1.0-3
- Incorprate suggestions from [email protected]
* Wed Mar 26 2008 Neal Becker <[email protected]> - 1.0-2
- Add site-start
* Tue Mar 25 2008 Neal Becker <[email protected]> - 1.0-1
- Update to 1.0
- Disable check for now - 1 test fails
- Move emacs to separate package
- Add check
* Tue Feb 19 2008 Fedora Release Engineering <[email protected]> - 0.9.5-7
- Autorebuild for GCC 4.3
* Fri Nov 9 2007 Neal Becker <[email protected]> - 0.9.5-6
- rpmlint fixes
* Fri Nov 9 2007 Neal Becker <[email protected]> - 0.9.5-5
- /etc/mercurial/hgrc.d missing
* Fri Nov 9 2007 Neal Becker <[email protected]> - 0.9.5-3
- Fix to last change
* Fri Nov 9 2007 Neal Becker <[email protected]> - 0.9.5-2
- mkdir /etc/mercurial/hgrc.d for plugins
* Tue Oct 23 2007 <[email protected]> - 0.9.5-2
- Bump tag to fix confusion
* Mon Oct 15 2007 Neal Becker <[email protected]> - 0.9.5-1
- Sync with spec file from mercurial
* Sat Sep 22 2007 Neal Becker <[email protected]> - 0.9.4-8
- Just cp contrib tree.
- Revert install -O2
* Thu Sep 20 2007 Neal Becker <[email protected]> - 0.9.4-7
- Change setup.py install to -O2 to get bytecompile on EL-4
* Thu Sep 20 2007 Neal Becker <[email protected]> - 0.9.4-6
- Revert last change.
* Thu Sep 20 2007 Neal Becker <[email protected]> - 0.9.4-5
- Use {ghost} on contrib, otherwise EL-4 build fails
* Thu Sep 20 2007 Neal Becker <[email protected]> - 0.9.4-4
- remove {_datadir}/contrib stuff for now
* Thu Sep 20 2007 Neal Becker <[email protected]> - 0.9.4-3
- Fix mercurial-install-contrib.patch (/usr/share/mercurial->/usr/share/mercurial/contrib)
* Wed Aug 29 2007 Jonathan Shapiro <[email protected]> - 0.9.4-2
- update to 0.9.4-2
- install contrib directory
- set up required path for hgk
- install man5 man pages
* Thu Aug 23 2007 Neal Becker <[email protected]> - 0.9.4-1
- update to 0.9.4
* Wed Jan 3 2007 Jeremy Katz <[email protected]> - 0.9.3-1
- update to 0.9.3
- remove asciidoc files now that we have them as manpages
* Mon Dec 11 2006 Jeremy Katz <[email protected]> - 0.9.2-1
- update to 0.9.2
* Mon Aug 28 2006 Jeremy Katz <[email protected]> - 0.9.1-2
- rebuild
* Tue Jul 25 2006 Jeremy Katz <[email protected]> - 0.9.1-1
- update to 0.9.1
* Fri May 12 2006 Mihai Ibanescu <[email protected]> - 0.9-1
- update to 0.9
* Mon Apr 10 2006 Jeremy Katz <[email protected]> - 0.8.1-1
- update to 0.8.1
- add man pages (#188144)
* Fri Mar 17 2006 Jeremy Katz <[email protected]> - 0.8-3
- rebuild
* Fri Feb 17 2006 Jeremy Katz <[email protected]> - 0.8-2
- rebuild
* Mon Jan 30 2006 Jeremy Katz <[email protected]> - 0.8-1
- update to 0.8
* Thu Sep 22 2005 Jeremy Katz <[email protected]>
- add contributors to %%doc
* Tue Sep 20 2005 Jeremy Katz <[email protected]> - 0.7
- update to 0.7
* Mon Aug 22 2005 Jeremy Katz <[email protected]> - 0.6c
- update to 0.6c
* Tue Jul 12 2005 Jeremy Katz <[email protected]> - 0.6b
- update to new upstream 0.6b
* Fri Jul 1 2005 Jeremy Katz <[email protected]> - 0.6-1
- Initial build.