summaryrefslogtreecommitdiff
blob: 43a8db71ac3ba13db48aa737487bb414d6cd89e0 (plain)
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
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
# ChangeLog for dev-ruby/rmagick
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rmagick/ChangeLog,v 1.213 2015/06/07 19:27:23 jlec Exp $

  07 Jun 2015; Justin Lecher <jlec@gentoo.org> metadata.xml:
  Add github to remote-id in metadata.xml

  02 Apr 2015; Hans de Graaff <graaff@gentoo.org> -rmagick-2.13.2-r2.ebuild,
  -rmagick-2.13.3.ebuild:
  Cleanup.

  30 Dec 2014; Hans de Graaff <graaff@gentoo.org> rmagick-2.13.4.ebuild:
  Avoid double compilation and dependency on rake-compiler. Add ruby22.

*rmagick-2.13.4 (28 Nov 2014)

  28 Nov 2014; Hans de Graaff <graaff@gentoo.org> +rmagick-2.13.4.ebuild:
  Version bump.

  05 Nov 2014; Manuel Rüger <mrueg@gentoo.org> -rmagick-2.13.2.ebuild:
  Cleanup old.

  05 Nov 2014; Agostino Sarubbo <ago@gentoo.org> rmagick-2.13.2-r1.ebuild:
  Stable for ppc64, wrt bug #512178

  05 Nov 2014; Agostino Sarubbo <ago@gentoo.org> rmagick-2.13.2-r1.ebuild:
  Stable for ppc, wrt bug #512178

*rmagick-2.13.3 (01 Aug 2014)

  01 Aug 2014; Hans de Graaff <graaff@gentoo.org> +rmagick-2.13.3.ebuild:
  Version bump.

  03 Jul 2014; Manuel Rüger <mrueg@gentoo.org> rmagick-2.13.2-r1.ebuild:
  Stable on amd64. bug #512178. Mark also stable on x86. Tested by Myckel
  Habets.

  05 Jun 2014; Jeroen Roovers <jer@gentoo.org> rmagick-2.13.2-r1.ebuild:
  Stable for HPPA (bug #512178).

*rmagick-2.13.2-r2 (02 Jun 2014)

  02 Jun 2014; Hans de Graaff <graaff@gentoo.org> +rmagick-2.13.2-r2.ebuild:
  Add new revision based on the gem. Add ruby21.

  05 Apr 2014; Manuel Rüger <mrueg@gentoo.org> rmagick-2.13.2-r1.ebuild,
  rmagick-2.13.2.ebuild:
  Remove ree18 and ruby18 target.

*rmagick-2.13.2-r1 (04 Oct 2013)

  04 Oct 2013; Manuel Rüger <mrueg@gentoo.org> +rmagick-2.13.2-r1.ebuild:
  Add ruby20 target.

  05 Sep 2013; Manuel Rüger <mrueg@gentoo.org>
  -files/rmagick-2.13.0-magicklibsubversion.patch, -rmagick-2.13.1-r1.ebuild,
  -rmagick-2.13.1.ebuild:
  Cleanup old.

  05 Sep 2013; Agostino Sarubbo <ago@gentoo.org> rmagick-2.13.2.ebuild:
  Stable for ppc64, wrt bug #481534

  04 Sep 2013; Agostino Sarubbo <ago@gentoo.org> rmagick-2.13.2.ebuild:
  Stable for ppc, wrt bug #481534

  23 Aug 2013; Agostino Sarubbo <ago@gentoo.org> rmagick-2.13.2.ebuild:
  Stable for x86, wrt bug #481534

  23 Aug 2013; Agostino Sarubbo <ago@gentoo.org> rmagick-2.13.2.ebuild:
  Stable for amd64, wrt bug #481534

  20 Aug 2013; Jeroen Roovers <jer@gentoo.org> rmagick-2.13.2.ebuild:
  Stable for HPPA (bug #481534).

*rmagick-2.13.2 (09 Feb 2013)

  09 Feb 2013; Hans de Graaff <graaff@gentoo.org> +rmagick-2.13.2.ebuild:
  Version bump.

*rmagick-2.13.1-r1 (23 Jan 2013)

  23 Jan 2013; Hans de Graaff <graaff@gentoo.org> +rmagick-2.13.1-r1.ebuild:
  Bump to EAPI=5 with RUBY_S and add a subslot dependency to address bug
  430636.

  23 Jan 2013; Hans de Graaff <graaff@gentoo.org> -rmagick-2.13.0-r1.ebuild:
  Cleanup.

  08 Nov 2012; Anthony G. Basile <blueness@gentoo.org> rmagick-2.13.1.ebuild:
  stable ppc ppc64, bug #435116

  07 Nov 2012; Jeroen Roovers <jer@gentoo.org> rmagick-2.13.1.ebuild:
  Stable for HPPA (bug #435116).

  18 Sep 2012; Johannes Huber <johu@gentoo.org> rmagick-2.13.1.ebuild:
  Stable for x86, wrt bug #435116

  15 Sep 2012; Agostino Sarubbo <ago@gentoo.org> rmagick-2.13.1.ebuild:
  Stable for amd64, wrt bug #435116

  01 Jul 2012; Raúl Porcel <armin76@gentoo.org> rmagick-2.13.0-r1.ebuild,
  rmagick-2.13.1.ebuild:
  Drop alpha keywords

  01 May 2012; Raúl Porcel <armin76@gentoo.org> rmagick-2.13.0-r1.ebuild,
  rmagick-2.13.1.ebuild:
  Drop ia64/sparc keywords

  07 Jan 2011; Hans de Graaff <graaff@gentoo.org> rmagick-2.13.1.ebuild:
  Keyword ~x86-macos.

  13 Dec 2010; Hans de Graaff <graaff@gentoo.org> rmagick-2.13.1.ebuild:
  Use generic shared object extension.

  13 Dec 2010; Hans de Graaff <graaff@gentoo.org> -rmagick-2.12.2.ebuild:
  Remove old version.

  25 May 2010; Alex Legler <a3li@gentoo.org> rmagick-2.13.1.ebuild:
  Add REE18 support

  23 May 2010; Pacho Ramos <pacho@gentoo.org> rmagick-2.13.0-r1.ebuild:
  stable amd64, bug 312561

  11 May 2010; Brent Baude <ranger@gentoo.org> rmagick-2.13.0-r1.ebuild:
  stable ppc64, bug 312561

  11 May 2010; Jeroen Roovers <jer@gentoo.org> rmagick-2.13.0-r1.ebuild:
  Stable for HPPA (bug #312561).

  08 May 2010; Raúl Porcel <armin76@gentoo.org> rmagick-2.13.0-r1.ebuild:
  alpha/ia64 stable wrt #312561

  18 Apr 2010; <nixnut@gentoo.org> rmagick-2.13.0-r1.ebuild:
  ppc stable #312561

  16 Apr 2010; Tiago Cunha <tcunha@gentoo.org> rmagick-2.13.0-r1.ebuild:
  stable sparc, bug 312561

  12 Apr 2010; Hans de Graaff <graaff@gentoo.org> -rmagick-2.12.2-r1.ebuild,
  -rmagick-2.13.0.ebuild, -rmagick-2.13.0-r2.ebuild:
  Remove old versions.

  12 Apr 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  rmagick-2.13.0-r1.ebuild:
  x86 stable wrt bug #312561

*rmagick-2.13.1 (06 Apr 2010)

  06 Apr 2010; Hans de Graaff <graaff@gentoo.org> +rmagick-2.13.1.ebuild:
  Version bump which incorporates libsubversion patch.

*rmagick-2.13.0-r2 (01 Apr 2010)

  01 Apr 2010; Alex Legler <a3li@gentoo.org> rmagick-2.13.0-r1.ebuild,
  +rmagick-2.13.0-r2.ebuild:
  Revbump in preparation of stabilizing a new version for keeping ruby19 w/o
  breaking the stable tree

  22 Feb 2010; Hans de Graaff <graaff@gentoo.org>
  files/rmagick-2.13.0-magicklibsubversion.patch:
  Remove header from patch: not needed and will get handled by our CVS.

  21 Feb 2010; Hans de Graaff <graaff@gentoo.org> rmagick-2.13.0-r1.ebuild,
  +files/rmagick-2.13.0-magicklibsubversion.patch:
  Add upstream patch for compatibility with newer imagemagick versions,
  fixes #305245.

  05 Jan 2010; Hans de Graaff <graaff@gentoo.org> rmagick-2.13.0-r1.ebuild:
  Install pre-generated docs with USE=doc.

*rmagick-2.13.0-r1 (05 Jan 2010)

  05 Jan 2010; Diego E. Pettenò <flameeyes@gentoo.org>
  +rmagick-2.13.0-r1.ebuild:
  Make use of ruby-fakegem rather than just ruby-ng; add support for Ruby
  1.9 as it seems to work fine; no tests are available with the package;
  documentation is not currently generated (setup.rb is incompatible with
  the fakegem method).

*rmagick-2.13.0 (28 Dec 2009)

  28 Dec 2009; Hans de Graaff <graaff@gentoo.org> +rmagick-2.13.0.ebuild:
  Version bump. Run configure once in the proper phase.

  26 Dec 2009; Peter Volkov <pva@gentoo.org> rmagick-2.12.2.ebuild,
  rmagick-2.12.2-r1.ebuild:
  virtual/ghostscript->app-text/ghostscript-gpl: ghostscript-gpl is the only
  implementation left in the tree.

  20 Dec 2009; Hans de Graaff <graaff@gentoo.org> rmagick-2.12.2.ebuild,
  rmagick-2.12.2-r1.ebuild:
  Remove obsolete virtual/ruby dependency.

  20 Dec 2009; Hans de Graaff <graaff@gentoo.org> -rmagick-2.9.0.ebuild,
  -rmagick-2.11.0.ebuild, -rmagick-2.12.1.ebuild:
  Remove old versions.

  16 Dec 2009; Jeroen Roovers <jer@gentoo.org> rmagick-2.12.2.ebuild:
  Stable for HPPA (bug #295804).

  15 Dec 2009; Raúl Porcel <armin76@gentoo.org> rmagick-2.12.2.ebuild:
  alpha/ia64 stable wrt #295804

  13 Dec 2009; Brent Baude <ranger@gentoo.org> rmagick-2.12.2.ebuild:
  Marking rmagick-2.12.2 ppc64 for bug 295804

  11 Dec 2009; Tiago Cunha <tcunha@gentoo.org> rmagick-2.12.2.ebuild:
  stable sparc, bug 295804

  09 Dec 2009; Markus Meier <maekke@gentoo.org> rmagick-2.12.2.ebuild:
  amd64/x86 stable, bug #295804

  09 Dec 2009; nixnut <nixnut@gentoo.org> rmagick-2.12.2.ebuild:
  ppc stable #295804

*rmagick-2.12.2-r1 (05 Dec 2009)

  05 Dec 2009; Hans de Graaff <graaff@gentoo.org> +rmagick-2.12.2-r1.ebuild:
  Use ruby-ng eclass so that rmagick can be installed for multiple ruby
  targets. Fixes #282430 in principle but not in practice because no
  other ruby targets match rmagick's keywords. Moved here from ruby-ng-testbed.

  14 Nov 2009; Raúl Porcel <armin76@gentoo.org> rmagick-2.11.0.ebuild:
  ia64/sparc stable wrt #287812

  25 Oct 2009; Jeroen Roovers <jer@gentoo.org> rmagick-2.11.0.ebuild:
  Stable for HPPA (bug #287812).

  19 Oct 2009; Tobias Klausmann <klausman@gentoo.org> rmagick-2.11.0.ebuild:
  Stable on alpha, bug #287812

  18 Oct 2009; nixnut <nixnut@gentoo.org> rmagick-2.11.0.ebuild:
  ppc stable #287812

  15 Oct 2009; Markus Meier <maekke@gentoo.org> rmagick-2.11.0.ebuild:
  amd64/x86 stable, bug #287812

*rmagick-2.12.2 (13 Oct 2009)

  13 Oct 2009; Hans de Graaff <graaff@gentoo.org> +rmagick-2.12.2.ebuild:
  Version bump with improved compatibility for imagemagick 6.4.8-7

*rmagick-2.12.1 (06 Oct 2009)

  06 Oct 2009; Hans de Graaff <graaff@gentoo.org> -rmagick-2.12.0.ebuild,
  +rmagick-2.12.1.ebuild:
  Version bump: fix compilation with older imagemagick versions.

  05 Oct 2009; Hans de Graaff <graaff@gentoo.org> -rmagick-2.9.1.ebuild,
  -rmagick-2.9.2.ebuild, -rmagick-2.10.0.ebuild, -rmagick-2.11.1.ebuild:
  Remove old versions.

*rmagick-2.12.0 (05 Oct 2009)

  05 Oct 2009; Hans de Graaff <graaff@gentoo.org> +rmagick-2.12.0.ebuild:
  Version bump with more support for new ImageMagick features.

*rmagick-2.11.1 (13 Sep 2009)

  13 Sep 2009; Hans de Graaff <graaff@gentoo.org> +rmagick-2.11.1.ebuild:
  Version bump with support for recent ImageMagick functionality.

*rmagick-2.11.0 (31 Jul 2009)

  31 Jul 2009; Hans de Graaff <graaff@gentoo.org> +rmagick-2.11.0.ebuild:
  Version bump with more support for new ImageMagick features.

*rmagick-2.10.0 (20 Jun 2009)

  20 Jun 2009; Hans de Graaff <graaff@gentoo.org> +rmagick-2.10.0.ebuild:
  Version bump with support for new features in ImageMagick 6.5 versions.

  30 May 2009; Hans de Graaff <graaff@gentoo.org> -rmagick-1.15.15.ebuild,
  -rmagick-1.15.17.ebuild, -rmagick-2.6.0.ebuild:
  Remove old versions.

*rmagick-2.9.2 (15 May 2009)

  15 May 2009; Hans de Graaff <graaff@gentoo.org> +rmagick-2.9.2.ebuild:
  Version bump supporting functionality in newer versions of ImageMagick.

  18 Mar 2009; Brent Baude <ranger@gentoo.org> rmagick-2.9.0.ebuild:
  stable ppc, bug 260601

  14 Mar 2009; Raúl Porcel <armin76@gentoo.org> rmagick-2.9.0.ebuild:
  ia64 stable wrt #260601

  08 Mar 2009; Tobias Klausmann <klausman@gentoo.org> rmagick-2.9.0.ebuild:
  Stable on alpha, bug #260601

  08 Mar 2009; Markus Meier <maekke@gentoo.org> rmagick-2.9.0.ebuild:
  amd64/x86 stable, bug #260601

  08 Mar 2009; Petteri Räty <betelgeuse@gentoo.org> rmagick-1.15.15.ebuild,
  rmagick-1.15.17.ebuild, rmagick-2.6.0.ebuild, rmagick-2.9.0.ebuild,
  rmagick-2.9.1.ebuild:
  Migrate to EAPI 2.

  07 Mar 2009; Hans de Graaff <graaff@gentoo.org> rmagick-2.9.0.ebuild,
  rmagick-2.9.1.ebuild:
  Add dependencies for documentation creation as mentioned in #260601 by Tiago
  Cunha.

  06 Mar 2009; Jeroen Roovers <jer@gentoo.org> rmagick-2.9.0.ebuild:
  Stable for HPPA (bug #260601).

  02 Mar 2009; Brent Baude <ranger@gentoo.org> rmagick-2.9.0.ebuild:
  stable ppc64, bug 260601

  28 Feb 2009; Ferris McCormick <fmccor@gentoo.org> rmagick-2.9.0.ebuild:
  Sparc stable, Bug #260601.

  28 Feb 2009; Hans de Graaff <graaff@gentoo.org> -rmagick-2.7.0.ebuild,
  -rmagick-2.7.1.ebuild, -rmagick-2.7.2.ebuild, -rmagick-2.8.0.ebuild,
  -rmagick-2.8.0-r1.ebuild:
  Remove versions that we'll skip for the next stable version.

*rmagick-2.9.1 (01 Feb 2009)

  01 Feb 2009; Hans de Graaff <graaff@gentoo.org> +rmagick-2.9.1.ebuild:
  Version bump: Fix a bug that prevents the use of transparent background
  colors when built with ImageMagick 6.4.9-0

*rmagick-2.9.0 (18 Jan 2009)

  18 Jan 2009; Hans de Graaff <graaff@gentoo.org> +rmagick-2.9.0.ebuild:
  Version bump with support for newer ImageMagick features

  18 Jan 2009; Hans de Graaff <graaff@gentoo.org> -rmagick-1.15.14.ebuild,
  -rmagick-1.15.16.ebuild:
  Remove old versions

*rmagick-2.8.0-r1 (26 Dec 2008)

  26 Dec 2008; Hans de Graaff <graaff@gentoo.org> +rmagick-2.8.0-r1.ebuild:
  Put documentation files in the right place, fixing #252389.

  13 Dec 2008; Raúl Porcel <armin76@gentoo.org> rmagick-1.15.15.ebuild,
  rmagick-2.6.0.ebuild:
  alpha/ia64/sparc stable wrt #249393

  06 Dec 2008; Tobias Scherbaum <dertobi123@gentoo.org>
  rmagick-1.15.15.ebuild, rmagick-2.6.0.ebuild:
  ppc stable, bug #249393

*rmagick-2.8.0 (06 Dec 2008)
*rmagick-1.15.17 (06 Dec 2008)

  06 Dec 2008; Hans de Graaff <graaff@gentoo.org> +rmagick-1.15.17.ebuild,
  +rmagick-2.8.0.ebuild:
  Version bumps. Compatibility fixes for newer ImageMagick versions.

  02 Dec 2008; Brent Baude <ranger@gentoo.org> rmagick-1.15.15.ebuild,
  rmagick-2.6.0.ebuild:
  Marking rmagick-2.6.0 and rmagick-1.15.15 ppc64 stable for bug 249393

  02 Dec 2008; Jeroen Roovers <jer@gentoo.org> rmagick-1.15.15.ebuild:
  Stable for HPPA (bug #249393).

  02 Dec 2008; Jeroen Roovers <jer@gentoo.org> rmagick-2.6.0.ebuild:
  Stable for HPPA (bug #249393).

  30 Nov 2008; Markus Meier <maekke@gentoo.org> rmagick-1.15.15.ebuild,
  rmagick-2.6.0.ebuild:
  amd64/x86 stable, bug #249393

*rmagick-1.15.16 (26 Nov 2008)

  26 Nov 2008; Hans de Graaff <graaff@gentoo.org> +rmagick-1.15.16.ebuild:
  Version bump with compatibility fixes for GraphicsMagick.

*rmagick-2.7.2 (14 Nov 2008)

  14 Nov 2008; Hans de Graaff <graaff@gentoo.org> +rmagick-2.7.2.ebuild:
  Version bump: fix bug where some Image::Info attribute values are not
  propogated to the image object

  06 Oct 2008; Hans de Graaff <graaff@gentoo.org> -rmagick-2.5.0.ebuild,
  -rmagick-2.5.1.ebuild, -rmagick-2.5.2.ebuild:
  Remove old versions

*rmagick-2.7.0 (29 Sep 2008)

  29 Sep 2008; Hans de Graaff <graaff@gentoo.org> +rmagick-2.7.0.ebuild:
  Version bump

*rmagick-2.6.0 (17 Sep 2008)

  17 Sep 2008; Hans de Graaff <graaff@gentoo.org> +rmagick-2.6.0.ebuild:
  Version bump.

*rmagick-1.15.15 (17 Sep 2008)

  17 Sep 2008; Hans de Graaff <graaff@gentoo.org> +rmagick-1.15.15.ebuild:
  Version bump with bug fix for handling corrupt JPEG images.

*rmagick-2.5.2 (22 Jul 2008)

  22 Jul 2008; Hans de Graaff <graaff@gentoo.org> +rmagick-2.5.2.ebuild:
  Version bump:
  * Add support for MergeLayer to Magick::ImageList#optimize_layers
  * Add PowQuantumOperator argument for Image#quantum_operator

  22 Jul 2008; Hans de Graaff <graaff@gentoo.org> -rmagick-1.15.12.ebuild,
  -rmagick-2.3.0.ebuild, -rmagick-2.4.0.ebuild:
  Remove old versions

  07 Jul 2008; Raúl Porcel <armin76@gentoo.org> rmagick-1.15.14.ebuild:
  alpha/ia64 stable wrt #230822

  07 Jul 2008; Ferris McCormick <fmccor@gentoo.org> rmagick-1.15.14.ebuild:
  Sparc stable --- Bug #230822 --- it can use itself to build 183 examples.

  07 Jul 2008; Jeroen Roovers <jer@gentoo.org> rmagick-1.15.14.ebuild:
  Stable for HPPA (bug #230822).

  06 Jul 2008; Markus Meier <maekke@gentoo.org> rmagick-1.15.14.ebuild:
  x86 stable, bug #230822

  05 Jul 2008; Thomas Anderson <gentoofan23@gentoo.org>
  rmagick-1.15.14.ebuild:
  stable amd64, bug 230822

  05 Jul 2008; Brent Baude <ranger@gentoo.org> rmagick-1.15.14.ebuild:
  stable ppc64, bug 230822

  05 Jul 2008; Brent Baude <ranger@gentoo.org> rmagick-1.15.14.ebuild:
  stable ppc, bug 230822

*rmagick-2.5.1 (21 Jun 2008)

  21 Jun 2008; Hans de Graaff <graaff@gentoo.org> +rmagick-2.5.1.ebuild:
  Version bump

*rmagick-2.5.0 (12 Jun 2008)

  12 Jun 2008; Hans de Graaff <graaff@gentoo.org> +rmagick-2.5.0.ebuild:
  Version bump: Added Image#add_compose_mask, #delete_compose_mask

  08 Jun 2008; Hans de Graaff <graaff@gentoo.org> -rmagick-1.15.13.ebuild,
  -rmagick-2.2.2.ebuild:
  Remove old versions

*rmagick-2.4.0 (04 Jun 2008)

  04 Jun 2008; Hans de Graaff <graaff@gentoo.org> +rmagick-2.4.0.ebuild:
  Version bump: adds Image#image_type=

*rmagick-1.15.14 (09 May 2008)

  09 May 2008; Hans de Graaff <graaff@gentoo.org> +rmagick-1.15.14.ebuild:
  Version bump. Use rubyforge mirror.
  
  * Fix bug #18271, change rvg#width, rvg#height to return user-space
  coordinates

  30 Mar 2008; Hans de Graaff <graaff@gentoo.org> -rmagick-1.15.10.ebuild,
  Remove older version. This also drops the stable mips keyword which needs to
  be done due to dropped keywords on ruby and imagemagick

*rmagick-2.3.0 (30 Mar 2008)

  30 Mar 2008; Hans de Graaff <graaff@gentoo.org> +rmagick-2.3.0.ebuild:
  Version bump.

  09 Mar 2008; Hans de Graaff <graaff@gentoo.org> -rmagick-2.1.0.ebuild,
  -rmagick-2.2.0.ebuild, rmagick-2.2.2.ebuild:
  Fix ebuild to actually install examples when requested. Remove old versions.

*rmagick-2.2.2 (20 Feb 2008)

  20 Feb 2008; Hans de Graaff <graaff@gentoo.org> +rmagick-2.2.2.ebuild:
  Version bump: Fix bug #18016, check for InitializeMagick in libMagickCore.

*rmagick-1.15.13 (20 Feb 2008)

  20 Feb 2008; Hans de Graaff <graaff@gentoo.org> +rmagick-1.15.13.ebuild:
  Version bump: Fix bug #18016, check for InitializeMagick in libMagickCore.

  13 Feb 2008; Santiago M. Mola <coldwind@gentoo.org>
  rmagick-1.15.12.ebuild:
  amd64 stable wrt bug #208971

  07 Feb 2008; Raúl Porcel <armin76@gentoo.org> rmagick-1.15.12.ebuild:
  alpha/ia64 stable wrt #208971

  06 Feb 2008; nixnut <nixnut@gentoo.org> rmagick-1.15.12.ebuild:
  stable on ppc wrt bug #208971

  06 Feb 2008; Brent Baude <ranger@gentoo.org> rmagick-1.15.12.ebuild:
  stable ppc64, bug 208971

  05 Feb 2008; Jeroen Roovers <jer@gentoo.org> rmagick-1.15.12.ebuild:
  Stable for HPPA (bug #208971).

  05 Feb 2008; Ferris McCormick <fmccor@gentoo.org> rmagick-1.15.12.ebuild:
  Sparc stable, Bug #208971

  05 Feb 2008; Christian Faulhammer <opfer@gentoo.org>
  rmagick-1.15.12.ebuild:
  stable x86, bug 208971

  05 Feb 2008; Hans de Graaff <graaff@gentoo.org> -rmagick-1.15.11.ebuild,
  -rmagick-2.0.0.ebuild:
  Remove intermediate unstable versions

*rmagick-2.2.0 (31 Jan 2008)

  31 Jan 2008; Hans de Graaff <graaff@gentoo.org> +rmagick-2.2.0.ebuild:
  Version bump: some new functionality made available by newer imagemagick 
  versions, and several bug fixes
  
*rmagick-2.1.0 (10 Jan 2008)

  10 Jan 2008; Hans de Graaff <graaff@gentoo.org> +rmagick-2.1.0.ebuild:
  Version bump: minor enhancements and bug fixes.

*rmagick-2.0.0 (29 Dec 2007)

  29 Dec 2007; Hans de Graaff <graaff@gentoo.org> +rmagick-2.0.0.ebuild:
  Version bump:
   * A lot of changes to support newer versions of ImageMagick better
   * Ruby 1.9.0 comptability fixes
   * Many new methods added and old methods deprecated

*rmagick-1.15.12 (27 Dec 2007)

  27 Dec 2007; Hans de Graaff <graaff@gentoo.org> +rmagick-1.15.12.ebuild:
  Version bump:
   * Fix bug #16221, starting with ImageMagick 6.3.2, 
     get_exif_by_entry/number returns empty array/hash when no 
     arguments are specified, even though the image has EXIF 
     data (bug report from Paul Clegg)
   * Fix bug #16449, Image#store_pixels removes opacity channel 
     (bug report from Hans de Graaff)

*rmagick-1.15.11 (19 Dec 2007)

  19 Dec 2007; Hans de Graaff <graaff@gentoo.org> +rmagick-1.15.11.ebuild:
  Version bump: minor bug fixes

  19 Dec 2007; Hans de Graaff <graaff@gentoo.org> -rmagick-1.3.2.ebuild,
  -rmagick-1.15.7.ebuild, -rmagick-1.15.7-r1.ebuild, -rmagick-1.15.8.ebuild:
  Remove old and ancient versions.

  14 Oct 2007; Markus Rothe <corsair@gentoo.org> rmagick-1.15.10.ebuild:
  Stable on ppc64; bug #194246

  09 Oct 2007; Christoph Mende <angelos@gentoo.org> rmagick-1.15.10.ebuild:
  Stable on amd64 wrt bug #194246

  02 Oct 2007; Raúl Porcel <armin76@gentoo.org> rmagick-1.15.10.ebuild:
  alpha/ia64 stable wrt #194246

  01 Oct 2007; Joshua Kinard <kumba@gentoo.org> rmagick-1.15.10.ebuild:
  Stable on mips, per #194246.

  30 Sep 2007; Lars Weiler <pylon@gentoo.org> rmagick-1.15.10.ebuild:
  stable ppc, bug #194246

  30 Sep 2007; Markus Meier <maekke@gentoo.org> rmagick-1.15.10.ebuild:
  x86 stable, bug #194246

  30 Sep 2007; Ferris McCormick <fmccor@gentoo.org> rmagick-1.15.10.ebuild:
  Sparc stable --- Bug #194246 --- thanks, Tiago.

  30 Sep 2007; Jeroen Roovers <jer@gentoo.org> rmagick-1.15.10.ebuild:
  Stable for HPPA (bug #194246).

  17 Sep 2007; Hans de Graaff <graaff@gentoo.org> -rmagick-1.15.5.ebuild:
  Remove old version

*rmagick-1.15.10 (17 Sep 2007)

  17 Sep 2007; Hans de Graaff <graaff@gentoo.org> +rmagick-1.15.10.ebuild:
  Version bump, fixes compatibility issue with ImageMagick-6.3.5-9

*rmagick-1.15.8 (04 Aug 2007)

  04 Aug 2007; Hans de Graaff <graaff@gentoo.org> +rmagick-1.15.8.ebuild:
  Version bump. Bug fixes to composite function and documentation fixes.

  24 Jul 2007; Raúl Porcel <armin76@gentoo.org> rmagick-1.15.7-r1.ebuild:
  alpha/ia64 stable

  16 Jul 2007; Markus Rothe <corsair@gentoo.org> rmagick-1.15.7-r1.ebuild:
  Stable on ppc64; bug #184538

  16 Jul 2007; Christian Faulhammer <opfer@gentoo.org>
  rmagick-1.15.7-r1.ebuild:
  stable x86, bug 184538

  15 Jul 2007; nixnut <nixnut@gentoo.org> rmagick-1.15.7-r1.ebuild:
  Stable on ppc wrt bug 184538

  12 Jul 2007; Gustavo Zacarias <gustavoz@gentoo.org>
  rmagick-1.15.7-r1.ebuild:
  Stable on sparc wrt #184538

*rmagick-1.15.7-r1 (11 Jul 2007)

  11 Jul 2007; Hans de Graaff <graaff@gentoo.org> +rmagick-1.15.7-r1.ebuild:
  rmagick does not build against imagemagick if the latter is built with the
  hdri USE flag. Add built_with_use to handle this situation.

  10 Jul 2007; Raúl Porcel <armin76@gentoo.org> rmagick-1.15.7.ebuild:
  alpha/ia64/x86 stable wrt #184538

  09 Jul 2007; Jeroen Roovers <jer@gentoo.org> rmagick-1.15.7.ebuild:
  Stable for HPPA (bug #184538).

  08 Jul 2007; Christoph Mende <angelos@gentoo.org> rmagick-1.15.7.ebuild:
  Stable on amd64 wrt bug #184538

  08 Jul 2007; Markus Rothe <corsair@gentoo.org> rmagick-1.15.7.ebuild:
  Stable on ppc64; bug #184538

  08 Jul 2007; Lars Weiler <pylon@gentoo.org> rmagick-1.15.7.ebuild:
  Stable on ppc; bug #184538.

  07 Jul 2007; Hans de Graaff <graaff@gentoo.org> -rmagick-1.15.6.ebuild:
  Remove version that won't make it to stable

  10 Jun 2007; Hans de Graaff <graaff@gentoo.org> -rmagick-1.14.1-r1.ebuild:
  Remove old version

*rmagick-1.15.7 (10 Jun 2007)

  10 Jun 2007; Hans de Graaff <graaff@gentoo.org> +rmagick-1.15.7.ebuild:
  Version bump:
    * Fix upstream bug #11033, make distclean misses some files
    * Work around SetMagickRegistry problem in ImageMagick 6.3.4-7

  05 May 2007; nixnut <nixnut@gentoo.org> rmagick-1.15.5.ebuild:
  Stable on ppc wrt bug 176595

  05 May 2007; Bryan Østergaard <kloeri@gentoo.org> rmagick-1.15.6.ebuild:
  Add ~alpha keyword, bug 176595.

  03 May 2007; Daniel Gryniewicz <dang@gentoo.org> rmagick-1.15.5.ebuild:
  Marked stable on amd64 for bug #176595

  03 May 2007; Jeroen Roovers <jer@gentoo.org> rmagick-1.15.5.ebuild:
  Stable for HPPA (bug #176595).

  01 May 2007; Markus Rothe <corsair@gentoo.org> rmagick-1.15.5.ebuild:
  Stable on ppc64; bug #176595

  01 May 2007; Raúl Porcel <armin76@gentoo.org> rmagick-1.15.5.ebuild:
  ia64 + x86 stable wrt #176595

  30 Apr 2007; Ferris McCormick <fmccor@gentoo.org> rmagick-1.15.5.ebuild:
  Stable on sparc --- Bug #176595 --- it's been around for a month and it runs
  its examples.

*rmagick-1.15.6 (30 Apr 2007)

  30 Apr 2007; Hans de Graaff <graaff@gentoo.org> +rmagick-1.15.6.ebuild:
  Version bump with minor bug fixes.

  26 Apr 2007; Hans de Graaff <graaff@gentoo.org> -rmagick-1.15.3.ebuild,
  -rmagick-1.15.4.ebuild:
  Remove older versions.

*rmagick-1.15.5 (31 Mar 2007)

  31 Mar 2007; Hans de Graaff <graaff@gentoo.org> -rmagick-1.9.3-r1.ebuild,
  -rmagick-1.15.2.ebuild, +rmagick-1.15.5.ebuild:
  Version bump; remove older versions.

  25 Mar 2007; Raúl Porcel <armin76@gentoo.org> rmagick-1.14.1-r1.ebuild:
  ia64 stable wrt bug 162682

  13 Mar 2007; Tom Gall <tgall@gentoo.org> rmagick-1.15.4.ebuild:
  added ~ppc64

*rmagick-1.15.4 (04 Mar 2007)

  04 Mar 2007; Hans de Graaff <graaff@gentoo.org> +rmagick-1.15.4.ebuild:
  Version bump:
  
   * Fixed: RMagick and rbgsl both export the name ID_call

*rmagick-1.15.3 (22 Feb 2007)

  22 Feb 2007; Hans de Graaff <graaff@gentoo.org> rmagick-1.3.2.ebuild,
  -rmagick-1.15.0.ebuild, -rmagick-1.15.1.ebuild, +rmagick-1.15.3.ebuild:
  Version bump to fix problem with Image::Info.fill=. Remove old 1.15 versions.
  Remove all but stale keywords from ancient version.

  10 Feb 2007; Steve Dibb <beandog@gentoo.org> rmagick-1.14.1-r1.ebuild:
  amd64 stable, bug 162682

*rmagick-1.15.2 (04 Feb 2007)

  04 Feb 2007; Hans de Graaff <graaff@gentoo.org> +rmagick-1.15.2.ebuild:
  Version bump, fixes more issues with older versions of ImageMagick.

  02 Feb 2007; Hans de Graaff <graaff@gentoo.org> rmagick-1.15.1.ebuild:
  Install documentation.

*rmagick-1.15.1 (02 Feb 2007)

  02 Feb 2007; Hans de Graaff <graaff@gentoo.org> -rmagick-1.14.1.ebuild,
  +rmagick-1.15.1.ebuild:
  Version bump to fix compatibility with ImageMagick 6.0.*. Remove old version.

  31 Jan 2007; Jeroen Roovers <jer@gentoo.org> rmagick-1.14.1-r1.ebuild:
  Stable for HPPA (bug #162682).

*rmagick-1.15.0 (21 Jan 2007)

  21 Jan 2007; Hans de Graaff <graaff@gentoo.org> -rmagick-1.10.1.ebuild,
  +rmagick-1.15.0.ebuild:
  Version bump with several bug fixes. Remove testing-only 1.10.1 version.

  21 Jan 2007; Christian Faulhammer <opfer@gentoo.org>
  rmagick-1.14.1-r1.ebuild:
  stable x86, bug #162682

  21 Jan 2007; Nguyễn Thái Ngọc Duy <pclouds@gentoo.org>
  rmagick-1.9.3-r1.ebuild, rmagick-1.10.1.ebuild, rmagick-1.14.1.ebuild,
  rmagick-1.14.1-r1.ebuild:
  Added examples use flag to ebuild, #145222

  20 Jan 2007; nixnut <nixnut@gentoo.org> rmagick-1.14.1-r1.ebuild:
  Stable on ppc wrt bug 162682

  19 Jan 2007; Ferris McCormick <fmccor@gentoo.org>
  rmagick-1.14.1-r1.ebuild:
  Stable on sparc --- Bug #162682 --- builds all examples, demo runs, all as
  expected.

  12 Jan 2007; Gustavo Zacarias <gustavoz@gentoo.org> rmagick-1.14.1.ebuild:
  Stable on sparc

*rmagick-1.14.1-r1 (06 Jan 2007)

  06 Jan 2007; Hans de Graaff <graaff@gentoo.org> -rmagick-1.7.3.ebuild,
  +rmagick-1.14.1-r1.ebuild:
  Add doc USE flag and allow the examples that are part of the documentation to
  fail. Fixes #159833 and #160042. Remove old version.

  03 Jan 2007; Christian Faulhammer <opfer@gentoo.org>
  rmagick-1.14.1.ebuild:
  stable x86, bug #155112

*rmagick-1.14.1 (03 Dec 2006)

  03 Dec 2006; Hans de Graaff <graaff@gentoo.org> -rmagick-1.9.2.ebuild,
  -rmagick-1.9.3.ebuild, +rmagick-1.14.1.ebuild:
  Add new version, fixing #155646. Remove old versions as much as possible
  without affecting arches.

  20 Oct 2006; Aron Griffis <agriffis@gentoo.org> rmagick-1.9.3-r1.ebuild:
  Mark 1.9.3-r1 stable on ia64

  27 Apr 2006; Marien Zwart <marienz@gentoo.org> files/digest-rmagick-1.3.2,
  files/digest-rmagick-1.7.3, files/digest-rmagick-1.9.2,
  files/digest-rmagick-1.9.3, files/digest-rmagick-1.9.3-r1, Manifest:
  Fixing SHA256 digest, pass four

*rmagick-1.10.1 (13 Apr 2006)

  13 Apr 2006; Caleb Tennis <caleb@gentoo.org> +rmagick-1.10.1.ebuild:
  Version bump

  30 Mar 2006; Aron Griffis <agriffis@gentoo.org> rmagick-1.9.3-r1.ebuild:
  Mark 1.9.3-r1 ~ia64

  19 Nov 2005; Rene Nussbaumer <killerfox@gentoo.org>
  rmagick-1.9.3-r1.ebuild:
  Stable on hppa.

  12 Nov 2005; Jason Wever <weeve@gentoo.org> rmagick-1.9.3-r1.ebuild:
  Stable on SPARC.

  11 Nov 2005; Michael Hanselmann <hansmi@gentoo.org>
  rmagick-1.9.3-r1.ebuild:
  Stable on ppc.

  10 Nov 2005; Caleb Tennis <caleb@gentoo.org> rmagick-1.9.3-r1.ebuild:
  stabilizing x86

*rmagick-1.9.3-r1 (08 Nov 2005)

  08 Nov 2005; Caleb Tennis <caleb@gentoo.org> +rmagick-1.9.3-r1.ebuild:
  Bump to use source package (gem seems broken), bug #111834

*rmagick-1.9.3 (04 Nov 2005)

  04 Nov 2005; Caleb Tennis <caleb@gentoo.org> +rmagick-1.9.3.ebuild:
  Version bump

  04 Nov 2005; Caleb Tennis <caleb@gentoo.org> rmagick-1.9.2.ebuild:
  Bump to x86 stable

  23 Sep 2005; Caleb Tennis <caleb@gentoo.org> -rmagick-1.4.0.ebuild,
  -rmagick-1.5.0.ebuild, -rmagick-1.9.0.ebuild:
  Remove old versions

*rmagick-1.9.0 (24 Aug 2005)

  24 Aug 2005; Rob Holland <tigger@gentoo.org> -rmagick-1.7.4.ebuild,
  +rmagick-1.9.0.ebuild:
  Remove broken (and obviously never tested) ebuild. Add version bump.

*rmagick-1.7.4 (07 Jun 2005)

  07 Jun 2005; Caleb Tennis <caleb@gentoo.org> +rmagick-1.7.4.ebuild:
  version bump

*rmagick-1.7.3 (16 Mar 2005)

  16 Mar 2005; Caleb Tennis <caleb@gentoo.org> +rmagick-1.7.3.ebuild:
  Version bump

*rmagick-1.5.0 (25 Apr 2004)

  25 Apr 2004; <twp@gentoo.org> +rmagick-1.5.0.ebuild:
  Version bump.

  11 Apr 2004; Mamoru KOMACHI <usata@gentoo.org> rmagick-1.3.0.ebuild,
  rmagick-1.3.1.ebuild, rmagick-1.3.2.ebuild, rmagick-1.4.0.ebuild:
  cleaned old ebuilds. virtual/ruby fix

  25 Mar 2004; Joshua Kinard <kumba@gentoo.org> rmagick-1.3.0.ebuild,
  rmagick-1.3.1.ebuild, rmagick-1.3.2.ebuild:
  As far as I know, this package has never been tested on mips, so to avoid
  repoman issues, re-marking all ebuilds of this package as unstable to stay
  inline with the imagemagik ebuild(s) until it is tested to be stable.

*rmagick-1.4.0 (28 Feb 2004)

  28 Feb 2004; Tom Payne <twp@gentoo.org> rmagick-1.4.0.ebuild :
  Version bump.

*rmagick-1.3.2 (10 Dec 2003)

  10 Dec 2003; Tom Payne <twp@gentoo.org> rmagick-1.3.2.ebuild :
  Version bump.

*rmagick-1.3.1 (27 Sep 2003)

  27 Sep 2003; Tom Payne <twp@gentoo.org> rmagick-1.3.1.ebuild :
  Version bump.

*rmagick-1.3.0 (09 Aug 2003)

  09 Aug 2003; Tom Payne <twp@gentoo.org> rmagick-1.3.0.ebuild :
  Version bump.

  26 Jul 2003; Tom Payne <twp@gentoo.org> rmagick-1.2.2.ebuild :
  Updated HOMEPAGE and SRC_URI.

*rmagick-1.2.2 (13 May 2003)

  17 Jun 2003; Tom Payne <twp@gentoo.org> rmagick-1.2.2.ebuild :
  Version bump.

*rmagick-1.2.0 (13 May 2003)

  13 May 2003; Tom Payne <twp@gentoo.org> rmagick-1.2.0.ebuild :
  Version bump. Improved installation.

*rmagick-1.1.0 (08 Apr 2003)

  08 Apr 2003; Tom Payne <twp@gentoo.org> rmagick-1.1.0.ebuild :
  Initial import.