-
Notifications
You must be signed in to change notification settings - Fork 117
/
erlang.spec
1172 lines (832 loc) · 37.8 KB
/
erlang.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
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
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Copyright Broadcom, Inc. or its affiliantes, 2012-2024. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
%global upstream_ver 26.2.5.5
%global package_ver 26.2.5.5
%global package_ver_release 1
# See https://fedoraproject.org/wiki/Changes/Broken_RPATH_will_fail_rpmbuild
%global __brp_check_rpaths %{nil}
%define OSL_File_Name Erlang_ASL2_LICENSE.txt
Name: erlang
Version: %{package_ver}
Release: %{package_ver_release}%{?dist}
Summary: Minimalistic Erlang/OTP distribution that provides just enough for running RabbitMQ
Group: Development/Languages
License: ASL 2.0
URL: https://www.erlang.org
Source0: https://github.com/erlang/otp/archive/OTP-%{upstream_ver}.tar.gz
Source2: %{OSL_File_Name}
Vendor: VMware, Inc.
# Do not format man-pages and do not install miscellaneous
Patch0: otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch
# Do not install C sources
Patch1: otp-0002-Do-not-install-C-sources.patch
# Do not install erlang sources
Patch2: otp-0003-Do-not-install-erlang-sources.patch
# BuildRoot not strictly needed since F10, but keep it for spec file robustness
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
BuildRequires: ncurses-devel
BuildRequires: openssl-devel
BuildRequires: zlib-devel
BuildRequires: m4
BuildRequires: autoconf
# will install gcc and gcc-c++ as dependencies
BuildRequires: clang
BuildRequires: systemd-devel
%description
This is a minimal packaging of Erlang produced by VMware, Inc. to support
running RabbitMQ. Compared to the community Erlang packaging it is
monolithic, has fewer dependencies, and has lower disk and memory
overhead. Many applications from Erlang Open Telecom Platform (OTP)
have been removed. The following applications remain: asn1, compiler,
crypto, erl_interface, erts, inets, kernel, mnesia, os_mon,
public_key, reltool, runtime_tools, sasl, snmp, ssl, stdlib,
syntax_tools and xmerl.
%define _license_file %{_builddir}/otp-OTP-%{upstream_ver}/`basename %{S:2}`
%prep
%setup -q -n otp-OTP-%{upstream_ver}
# Automatically apply all listed patches
%autopatch -v -p 1
# Fix 664 file mode
chmod 644 lib/kernel/examples/uds_dist/c_src/Makefile
chmod 644 lib/kernel/examples/uds_dist/src/Makefile
chmod 644 lib/ssl/examples/certs/Makefile
chmod 644 lib/ssl/examples/src/Makefile
%build
%global conf_flags --enable-shared-zlib --enable-dynamic-ssl-lib --enable-systemd --without-javac --without-odbc
## add --enable-fips to enable FIPS mode, which is fully supported
## on OpenSSL 3 starting with Erlang 26.1
## to tweak compiler flags if necessary
# export CFLAGS="-Wno-error=implicit-function-declaration -O2 -g"
%ifarch sparcv9 sparc64
CFLAGS="$RPM_OPT_FLAGS -mcpu=ultrasparc -fno-strict-aliasing" %configure %{conf_flags}
%else
CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing" %configure %{conf_flags}
%endif
# remove pre-built stuff
make clean
cp %{S:2} %{_license_file}
touch lib/common_test/SKIP
touch lib/debugger/SKIP
touch lib/dialyzer/SKIP
touch lib/diameter/SKIP
touch lib/edoc/SKIP
touch lib/et/SKIP
touch lib/erl_docgen/SKIP
touch lib/ftp/SKIP
touch lib/jinterface/SKIP
touch lib/megaco/SKIP
touch lib/observer/SKIP
touch lib/odbc/SKIP
touch lib/ssh/SKIP
touch lib/tftp/SKIP
touch lib/wx/SKIP
make
%install
rm -rf $RPM_BUILD_ROOT
make DESTDIR=$RPM_BUILD_ROOT install
# Do not install info files - they are almost empty and useless
find $RPM_BUILD_ROOT%{_libdir}/erlang -type f -name info -exec rm -f {} \;
# fix 0775 permission on some directories
chmod 0755 $RPM_BUILD_ROOT%{_libdir}/erlang/bin
# Win32-specific man-pages
rm -f $RPM_BUILD_ROOT%{_libdir}/erlang/man/man1/erlsrv.*
rm -f $RPM_BUILD_ROOT%{_libdir}/erlang/man/man1/werl.*
rm -f $RPM_BUILD_ROOT%{_libdir}/erlang/man/man3/win32reg.*
# remove empty directory
rm -r $RPM_BUILD_ROOT%{_libdir}/erlang/erts-*/man
# remove outdated script
rm -f $RPM_BUILD_ROOT%{_libdir}/erlang/Install
# Replace identical executables with symlinks
for exe in $RPM_BUILD_ROOT%{_libdir}/erlang/erts-*/bin/*
do
base="$(basename "$exe")"
next="$RPM_BUILD_ROOT%{_libdir}/erlang/bin/${base}"
rel="$(echo "$exe" | sed "s,^$RPM_BUILD_ROOT%{_libdir}/erlang/,../,")"
if cmp "$exe" "$next"; then
ln -sf "$rel" "$next"
fi
done
for exe in $RPM_BUILD_ROOT%{_libdir}/erlang/bin/*
do
base="$(basename "$exe")"
next="$RPM_BUILD_ROOT%{_bindir}/${base}"
rel="$(echo "$exe" | sed "s,^$RPM_BUILD_ROOT,,")"
if cmp "$exe" "$next"; then
ln -sf "$rel" "$next"
fi
done
rm -rf $RPM_BUILD_ROOT%{_bindir}/ct_run
rm -rf $RPM_BUILD_ROOT%{_bindir}/dialyzer
rm -rf $RPM_BUILD_ROOT%{_bindir}/run_test
rm -rf $RPM_BUILD_ROOT%{_bindir}/typer
rm -rf $RPM_BUILD_ROOT%{_libdir}/erlang/bin/ct_run
rm -rf $RPM_BUILD_ROOT%{_libdir}/erlang/bin/erl_call
rm -rf $RPM_BUILD_ROOT%{_libdir}/erlang/bin/dialyzer
rm -rf $RPM_BUILD_ROOT%{_libdir}/erlang/bin/run_test
rm -rf $RPM_BUILD_ROOT%{_libdir}/erlang/bin/typer
rm -rf $RPM_BUILD_ROOT%{_libdir}/erlang/erts-*/bin/ct_run
rm -rf $RPM_BUILD_ROOT%{_libdir}/erlang/erts-*/bin/erl_call
rm -rf $RPM_BUILD_ROOT%{_libdir}/erlang/erts-*/bin/dialyzer
rm -rf $RPM_BUILD_ROOT%{_libdir}/erlang/erts-*/bin/typer
rm -rf $RPM_BUILD_ROOT%{_libdir}/erlang/erts-*/bin/yielding_c_fun
rm -rf $RPM_BUILD_ROOT%{_libdir}/erlang/lib/*/examples
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root)
%doc %{OSL_File_Name}
%dir %{_libdir}/erlang/lib/asn1-*/
%{_libdir}/erlang/lib/asn1-*/ebin
%{_libdir}/erlang/lib/asn1-*/priv
%{_libdir}/erlang/lib/asn1-*/src
%{_libdir}/erlang/lib/compiler-*/
%{_libdir}/erlang/lib/crypto-*/
%dir %{_libdir}/erlang/lib/eldap-*/
%{_libdir}/erlang/lib/eldap-*/asn1
%{_libdir}/erlang/lib/eldap-*/ebin
%{_libdir}/erlang/lib/eldap-*/include
%{_libdir}/erlang/lib/eldap-*/src
%{_libdir}/erlang/lib/eunit-*/
%{_libdir}/erlang/lib/erl_interface-*/
%dir %{_libdir}/erlang/
%dir %{_libdir}/erlang/bin/
%dir %{_libdir}/erlang/lib/
%dir %{_libdir}/erlang/releases/
%{_bindir}/epmd
%{_bindir}/erl
%{_bindir}/erlc
%{_bindir}/escript
%{_bindir}/run_erl
%{_bindir}/to_erl
%{_libdir}/erlang/bin/epmd
%{_libdir}/erlang/bin/erl
%{_libdir}/erlang/bin/erlc
%{_libdir}/erlang/bin/escript
%{_libdir}/erlang/bin/no_dot_erlang.boot
%{_libdir}/erlang/bin/run_erl
%{_libdir}/erlang/bin/start
%{_libdir}/erlang/bin/start.boot
%{_libdir}/erlang/bin/start.script
%{_libdir}/erlang/bin/start_clean.boot
%{_libdir}/erlang/bin/start_erl
%{_libdir}/erlang/bin/start_sasl.boot
%{_libdir}/erlang/bin/to_erl
%dir %{_libdir}/erlang/erts-*/bin
%{_libdir}/erlang/erts-*/bin/beam.smp
%{_libdir}/erlang/erts-*/bin/erl_child_setup
%{_libdir}/erlang/erts-*/bin/dyn_erl
%{_libdir}/erlang/erts-*/bin/epmd
%{_libdir}/erlang/erts-*/bin/erl
%{_libdir}/erlang/erts-*/bin/erl.src
%{_libdir}/erlang/erts-*/bin/erlc
%{_libdir}/erlang/erts-*/bin/erlexec
%{_libdir}/erlang/erts-*/bin/escript
%{_libdir}/erlang/erts-*/bin/heart
%{_libdir}/erlang/erts-*/bin/inet_gethost
%{_libdir}/erlang/erts-*/bin/run_erl
%{_libdir}/erlang/erts-*/bin/start
%{_libdir}/erlang/erts-*/bin/start.src
%{_libdir}/erlang/erts-*/bin/start_erl.src
%{_libdir}/erlang/erts-*/bin/to_erl
%{_libdir}/erlang/erts-*/include
%{_libdir}/erlang/erts-*/lib
%{_libdir}/erlang/erts-*/src
%{_libdir}/erlang/lib/erts-*/
%{_libdir}/erlang/releases/*
%{_libdir}/erlang/usr/
%dir %{_libdir}/erlang/lib/inets-*/
%{_libdir}/erlang/lib/inets-*/ebin
%{_libdir}/erlang/lib/inets-*/include
%{_libdir}/erlang/lib/inets-*/priv
%{_libdir}/erlang/lib/inets-*/src
%dir %{_libdir}/erlang/lib/kernel-*/
%{_libdir}/erlang/lib/kernel-*/ebin
%{_libdir}/erlang/lib/kernel-*/include
%{_libdir}/erlang/lib/kernel-*/src
%dir %{_libdir}/erlang/lib/mnesia-*/
%{_libdir}/erlang/lib/mnesia-*/ebin
%{_libdir}/erlang/lib/mnesia-*/include
%{_libdir}/erlang/lib/mnesia-*/src
%{_libdir}/erlang/lib/os_mon-*/
%{_libdir}/erlang/lib/parsetools-*/
%{_libdir}/erlang/lib/public_key-*/
%dir %{_libdir}/erlang/lib/reltool-*/
%{_libdir}/erlang/lib/reltool-*/ebin
%{_libdir}/erlang/lib/reltool-*/src
%dir %{_libdir}/erlang/lib/syntax_tools-*/
%{_libdir}/erlang/lib/syntax_tools-*/ebin
%{_libdir}/erlang/lib/syntax_tools-*/include
%{_libdir}/erlang/lib/runtime_tools-*/
%dir %{_libdir}/erlang/lib/sasl-*/
%{_libdir}/erlang/lib/sasl-*/ebin
%{_libdir}/erlang/lib/sasl-*/src
%dir %{_libdir}/erlang/lib/snmp-*/
%{_libdir}/erlang/lib/snmp-*/bin
%{_libdir}/erlang/lib/snmp-*/ebin
%{_libdir}/erlang/lib/snmp-*/include
%{_libdir}/erlang/lib/snmp-*/mibs
%{_libdir}/erlang/lib/snmp-*/priv
%{_libdir}/erlang/lib/snmp-*/src
%dir %{_libdir}/erlang/lib/ssl-*/
%{_libdir}/erlang/lib/ssl-*/ebin
%{_libdir}/erlang/lib/ssl-*/src
%dir %{_libdir}/erlang/lib/stdlib-*/
%{_libdir}/erlang/lib/stdlib-*/ebin
%{_libdir}/erlang/lib/stdlib-*/include
%{_libdir}/erlang/lib/stdlib-*/src
%{_libdir}/erlang/lib/tools-*/
%{_libdir}/erlang/lib/xmerl-*/
%changelog
* Fri Nov 1 2024 Michael Klishin <mikhail.klishinm@broadcom.com> - 26.2.5.5
- Update to Erlang/OTP 26.2.5.5
* Wed Sep 9 2024 Michael Klishin <mikhail.klishinm@broadcom.com> - 26.2.5.4
- Update to Erlang/OTP 26.2.5.4
* Thu Sep 5 2024 Michael Klishin <mikhail.klishinm@broadcom.com> - 26.2.5.3
- Update to Erlang/OTP 26.2.5.3
* Wed Jul 10 2024 Michael Klishin <mikhail.klishinm@broadcom.com> - 26.2.5.2
- Update to Erlang/OTP 26.2.5.2
* Sat May 4 2024 Michael Klishin <mikhail.klishinm@broadcom.com> - 26.2.5
- Update to Erlang/OTP 26.2.5
* Sat Apr 13 2024 Michael Klishin <mikhail.klishinm@broadcom.com> - 26.2.4
- Update to Erlang/OTP 26.2.4
* Thu Mar 7 2024 Michael Klishin <mikhail.klishinm@broadcom.com> - 26.2.3
- Update to Erlang/OTP 26.2.3
* Thu Feb 8 2024 Michael Klishin <mikhail.klishinm@broadcom.com> - 26.2.2
- Update to Erlang/OTP 26.2.2
* Mon Dec 18 2023 Michael Klishin <mikhail.klishinm@broadcom.com> - 26.2.1
- Update to Erlang/OTP 26.2.1
* Wed Dec 13 2023 Michael Klishin <mikhail.klishinm@broadcom.com> - 26.2
- Update to Erlang/OTP 26.2
* Thu Oct 12 2023 Michael Klishin <klishinm@vmware.com> - 26.1.2
- Update to Erlang/OTP 26.1.2
* Thu Sep 28 2023 Michael Klishin <klishinm@vmware.com> - 26.1.1
- Update to Erlang/OTP 26.1.1
* Wed Sep 20 2023 Michael Klishin <klishinm@vmware.com> - 26.1
- Update to Erlang/OTP 26.1
* Thu Jun 29 2023 Michael Klishin <klishinm@vmware.com> - 26.0.2
- Update to Erlang/OTP 26.0.2
* Thu Jun 8 2023 Michael Klishin <klishinm@vmware.com> - 26.0.1
- Update to Erlang/OTP 26.0.1
* Wed May 17 2023 Michael Klishin <klishinm@vmware.com> - 26.0
- Update to Erlang/OTP 26.0
* Fri May 5 2023 Michael Klishin <klishinm@vmware.com> - 25.3.2
- Update to Erlang/OTP 25.3.2
* Tue Apr 25 2023 Michael Klishin <klishinm@vmware.com> - 25.3.1
- Update to Erlang/OTP 25.3.1
* Wed Mar 8 2023 Michael Klishin <klishinm@vmware.com> - 25.3
- Update to Erlang/OTP 25.3
* Fri Mar 3 2023 Michael Klishin <klishinm@vmware.com> - 25.2.3
- Update to Erlang/OTP 25.2.3
* Fri Mar 3 2023 Arnaud Cogoluegnes <acogoluegnes@vmware.com> - 25.2.2
- Update to Erlang/OTP 25.2.2
* Fri Mar 3 2023 Arnaud Cogoluegnes <acogoluegnes@vmware.com> - 25.2.1
- Update to Erlang/OTP 25.2.1
* Wed Dec 14 2022 Michael Klishin <klishinm@vmware.com> - 25.2
- Update to Erlang/OTP 25.2
* Tue Oct 25 2022 Michael Klishin <klishinm@vmware.com> - 25.1.2
- Update to Erlang/OTP 25.1.2
* Tue Oct 4 2022 Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org> - 25.1.1-2
- Add systemd-devel build dependency where needed.
* Tue Oct 4 2022 Michael Klishin <klishinm@vmware.com> - 25.1.1
- Update to Erlang/OTP 25.1.1
* Wed Sep 21 2022 Michael Klishin <klishinm@vmware.com> - 25.1
- Update to Erlang/OTP 25.1
* Thu Aug 18 2022 Michael Klishin <klishinm@vmware.com> - 25.0.4
- Update to Erlang/OTP 25.0.4
* Fri Jul 15 2022 Michael Klishin <klishinm@vmware.com> - 25.0.3
- Update to Erlang/OTP 25.0.3
* Tue Jun 21 2022 Michael Klishin <klishinm@vmware.com> - 25.0.2
- Update to Erlang/OTP 25.0.2
* Mon Jun 13 2022 Michael Klishin <klishinm@vmware.com> - 25.0.1
- Update to Erlang/OTP 25.0.1
* Wed May 18 2022 Michael Klishin <klishinm@vmware.com> - 25.0
- Update to Erlang/OTP 25.0
* Tue May 3 2022 Michael Klishin <klishinm@vmware.com> - 24.3.4
- Update to Erlang/OTP 24.3.4
* Tue Mar 29 2022 Michael Klishin <klishinm@vmware.com> - 24.3.3
- Update to Erlang/OTP 24.3.3
* Wed Mar 16 2022 Michael Klishin <klishinm@vmware.com> - 24.3.2
- Update to Erlang/OTP 24.3.2
* Tue Mar 15 2022 Michael Klishin <klishinm@vmware.com> - 24.3.1
- Update to Erlang/OTP 24.3.1
* Thu Mar 10 2022 Michael Klishin <klishinm@vmware.com> - 24.3
- Update to Erlang/OTP 24.3
* Wed Mar 9 2022 Michael Klishin <klishinm@vmware.com> - 24.2.2
- Update to Erlang/OTP 24.2.2
* Tue Jan 25 2022 Michael Klishin <klishinm@vmware.com> - 24.2.1
- Update to Erlang/OTP 24.2.1
* Wed Dec 15 2021 Michael Klishin <klishinm@vmware.com> - 24.2
- Update to Erlang/OTP 24.2
* Fri Nov 26 2021 Michael Klishin <klishinm@vmware.com> - 24.1.7
- Update to Erlang/OTP 24.1.7
* Fri Nov 19 2021 Michael Klishin <klishinm@vmware.com> - 24.1.6
- Update to Erlang/OTP 24.1.6
* Fri Nov 12 2021 Michael Klishin <klishinm@vmware.com> - 24.1.5
- Update to Erlang/OTP 24.1.5
* Wed Nov 3 2021 Michael Klishin <klishinm@vmware.com> - 24.1.4
- Update to Erlang/OTP 24.1.4
* Fri Oct 29 2021 Michael Klishin <klishinm@vmware.com> - 24.1.3
- Update to Erlang/OTP 24.1.3
* Sat Oct 23 2021 Michael Klishin <klishinm@vmware.com> - 24.1.2
- Update to Erlang/OTP 24.1.2
* Fri Oct 1 2021 Michael Klishin <klishinm@vmware.com> - 24.1.1
- Update to Erlang/OTP 24.1.1
* Wed Sep 22 2021 Michael Klishin <klishinm@vmware.com> - 24.1
- Update to Erlang/OTP 24.1.
* Sat Sep 4 2021 Michael Klishin <klishinm@vmware.com> - 24.0.6
- Update to Erlang/OTP 24.0.6.
* Fri Jul 30 2021 Michael Klishin <klishinm@vmware.com> - 24.0.5
- Update to Erlang/OTP 24.0.5.
* Thu Jul 22 2021 Michael Klishin <klishinm@vmware.com> - 24.0.4
- Update to Erlang/OTP 24.0.4.
* Mon Jun 28 2021 Michael Klishin <klishinm@vmware.com> - 24.0.3
- Update to Erlang/OTP 24.0.3.
* Tue Jun 01 2021 Michael Klishin <klishinm@vmware.com> - 24.0.2
- Update to Erlang/OTP 24.0.2.
* Fri May 21 2021 Michael Klishin <klishinm@vmware.com> - 24.0.1
- Update to Erlang/OTP 24.0.1.
* Wed May 12 2021 Michael Klishin <klishinm@vmware.com> - 24.0
- Update to Erlang/OTP 24.0.
* Thu May 6 2021 Michael Klishin <klishinm@vmware.com> - 23.3.3
- Update to Erlang/OTP 23.3.3.
* Wed Apr 28 2021 Michael Klishin <klishinm@vmware.com> - 23.3.2
- Update to Erlang/OTP 23.3.2.
* Wed Mar 31 2021 Michael Klishin <klishinm@vmware.com> - 23.3.1
- Update to Erlang/OTP 23.3.1.
* Wed Mar 24 2021 Michael Klishin <klishinm@vmware.com> - 23.3
- Update to Erlang/OTP 23.3.
* Thu Mar 4 2021 Jean-Sébastien Pédron <jean-sebastien@rabbitmq.com> - 23.2.7-2
- Restore the creation of the -debuginfo package.
* Wed Mar 3 2021 Michael Klishin <klishinm@vmware.com> - 23.2.7-1
- Update to Erlang/OTP 23.2.7.
* Mon Mar 1 2021 Michael Klishin <klishinm@vmware.com> - 23.2.6
- Update to Erlang/OTP 23.2.6.
* Sat Feb 20 2021 Michael Klishin <klishinm@vmware.com> - 23.2.5
- Update to Erlang/OTP 23.2.5.
* Wed Feb 10 2021 Michael Klishin <klishinm@vmware.com> - 23.2.4
- Update to Erlang/OTP 23.2.4.
* Mon Feb 1 2021 Michael Klishin <klishinm@vmware.com> - 23.2.3
- Update to Erlang/OTP 23.2.3.
* Fri Dec 25 2020 Michael Klishin <klishinm@vmware.com> - 23.2.1
- Update to Erlang/OTP 23.2.1.
* Mon Dec 7 2020 Michael Klishin <klishinm@vmware.com> - 23.1.5
- Update to Erlang/OTP 23.1.5.
* Mon Nov 23 2020 Michael Klishin <klishinm@vmware.com> - 23.1.4
- Update to Erlang/OTP 23.1.4.
* Tue Nov 17 2020 Michael Klishin <klishinm@vmware.com> - 23.1.3
- Update to Erlang/OTP 23.1.3.
* Thu Nov 5 2020 Michael Klishin <klishinm@vmware.com> - 23.1.2
- Update to Erlang/OTP 23.1.2.
* Sat Oct 3 2020 Michael Klishin <klishinm@vmware.com> - 23.1.1
- Update to Erlang/OTP 23.1.1.
* Wed Sep 23 2020 Michael Klishin <klishinm@vmware.com> - 23.1
- Update to Erlang/OTP 23.1.
* Mon Sep 14 2020 Michael Klishin <klishinm@vmware.com> - 23.0.4
- Update to Erlang/OTP 23.0.4.
* Tue Jul 21 2020 Michael Klishin <mklishin@pivotal.io> - 23.0.3
- Update to Erlang/OTP 23.0.3.
* Tue Jun 2 2020 Michael Klishin <mklishin@pivotal.io> - 23.0.2
- Update to Erlang/OTP 23.0.2.
* Thu May 21 2020 Michael Klishin <mklishin@pivotal.io> - 23.0.1
- Update to Erlang/OTP 23.0.1.
* Wed May 13 2020 Michael Klishin <mklishin@pivotal.io> - 23.0
- Update to Erlang/OTP 23.0.
* Tue Apr 28 2020 Michael Klishin <mklishin@pivotal.io> - 22.3.3
- Update to Erlang/OTP 22.3.3.
* Sat Apr 11 2020 Michael Klishin <mklishin@pivotal.io> - 22.3.2
- Update to Erlang/OTP 22.3.2.
* Tue Apr 7 2020 Michael Klishin <mklishin@pivotal.io> - 22.3.1
- Update to Erlang/OTP 22.3.1.
* Wed Mar 18 2020 Michael Klishin <mklishin@pivotal.io> - 22.3
- Update to Erlang/OTP 22.3.
* Wed Mar 4 2020 Michael Klishin <mklishin@pivotal.io> - 22.2.8
- Update to Erlang/OTP 22.2.8.
* Wed Feb 19 2020 Michael Klishin <mklishin@pivotal.io> - 22.2.7
- Update to Erlang/OTP 22.2.7.
* Wed Feb 5 2020 Michael Klishin <mklishin@pivotal.io> - 22.2.6
- Update to Erlang/OTP 22.2.6.
* Tue Feb 4 2020 Michael Klishin <mklishin@pivotal.io> - 22.2.5
- Update to Erlang/OTP 22.2.5.
* Tue Jan 28 2020 Michael Klishin <mklishin@pivotal.io> - 22.2.4
- Update to Erlang/OTP 22.2.4.
* Fri Jan 24 2020 Michael Klishin <mklishin@pivotal.io> - 22.2.3
- Update to Erlang/OTP 22.2.3.
* Wed Jan 15 2020 Michael Klishin <mklishin@pivotal.io> - 22.2.2
- Update to Erlang/OTP 22.2.2.
* Thu Dec 19 2019 Michael Klishin <mklishin@pivotal.io> - 22.2.1
- Update to Erlang/OTP 22.2.1.
* Tue Dec 10 2019 Michael Klishin <mklishin@pivotal.io> - 22.2
- Update to Erlang/OTP 22.2.
* Mon Nov 25 2019 Michael Klishin <mklishin@pivotal.io> - 22.1.8
- Update to Erlang/OTP 22.1.8.
* Mon Nov 11 2019 Michael Klishin <mklishin@pivotal.io> - 22.1.7
- Update to Erlang/OTP 22.1.7.
* Thu Nov 7 2019 Michael Klishin <mklishin@pivotal.io> - 22.1.6
- Update to Erlang/OTP 22.1.6.
* Mon Oct 28 2019 Michael Klishin <mklishin@pivotal.io> - 22.1.5
- Update to Erlang/OTP 22.1.5.
* Wed Oct 23 2019 Michael Klishin <mklishin@pivotal.io> - 22.1.4
- Update to Erlang/OTP 22.1.4.
* Sat Oct 12 2019 Michael Klishin <mklishin@pivotal.io> - 22.1.3
- Update to Erlang/OTP 22.1.3.
* Wed Oct 9 2019 Michael Klishin <mklishin@pivotal.io> - 22.1.2
- Update to Erlang/OTP 22.1.2.
* Fri Sep 27 2019 Michael Klishin <mklishin@pivotal.io> - 22.1.1
- Update to Erlang/OTP 22.1.1.
* Tue Sep 17 2019 Michael Klishin <mklishin@pivotal.io> - 22.1
- Update to Erlang/OTP 22.1.
* Thu Jul 11 2019 Michael Klishin <mklishin@pivotal.io> - 22.0.7
- Update to Erlang/OTP 22.0.7.
* Wed Jul 10 2019 Michael Klishin <mklishin@pivotal.io> - 22.0.6
- Update to Erlang/OTP 22.0.6.
* Thu Jul 4 2019 Michael Klishin <mklishin@pivotal.io> - 22.0.5
- Update to Erlang/OTP 22.0.5.
* Tue Jun 18 2019 Michael Klishin <mklishin@pivotal.io> - 22.0.4
- Update to Erlang/OTP 22.0.4
* Thu Jun 13 2019 Michael Klishin <mklishin@pivotal.io> - 22.0.3
- Update to Erlang/OTP 22.0.3.
* Mon Jun 03 2019 Michael Klishin <mklishin@pivotal.io> - 22.0.2
- Update to Erlang/OTP 22.0.2.
* Tue May 21 2019 Michael Klishin <mklishin@pivotal.io> - 22.0.1
- Update to Erlang/OTP 22.0.1.
* Tue May 14 2019 Michael Klishin <mklishin@pivotal.io> - 22.0
- Update to Erlang/OTP 22.0.
* Fri May 10 2019 Michael Klishin <mklishin@pivotal.io> - 21.3.7.1
- Update to Erlang/OTP 21.3.7.1.
* Sun Apr 28 2019 Michael Klishin <mklishin@pivotal.io> - 21.3.7
- Update to Erlang/OTP 21.3.7.
* Thu Apr 18 2019 Michael Klishin <mklishin@pivotal.io> - 21.3.6
- Update to Erlang/OTP 21.3.6.
* Tue Apr 16 2019 Michael Klishin <mklishin@pivotal.io> - 21.3.5
- Update to Erlang/OTP 21.3.5.
* Sat Apr 13 2019 Michael Klishin <mklishin@pivotal.io> - 21.3.4
- Update to Erlang/OTP 21.3.4.
* Mon Apr 1 2019 Michael Klishin <mklishin@pivotal.io> - 21.3.3
- Update to Erlang/OTP 21.3.3.
* Fri Mar 22 2019 Michael Klishin <mklishin@pivotal.io> - 21.3.2
- Update to Erlang/OTP 21.3.2.
* Tue Mar 19 2019 Michael Klishin <mklishin@pivotal.io> - 21.3.1
- Update to Erlang/OTP 21.3.1.
* Thu Mar 14 2019 Michael Klishin <mklishin@pivotal.io> - 21.3
- Update to Erlang/OTP 21.3.
* Fri Mar 8 2019 Michael Klishin <mklishin@pivotal.io> - 21.2.7
- Update to Erlang/OTP 21.2.7.
* Mon Feb 18 2019 Michael Klishin <mklishin@pivotal.io> - 21.2.6
- Update to Erlang/OTP 21.2.6.
* Tue Feb 5 2019 Michael Klishin <mklishin@pivotal.io> - 21.2.5
- Update to Erlang/OTP 21.2.5.
* Fri Jan 25 2019 Michael Klishin <mklishin@pivotal.io> - 21.2.4
- Update to Erlang/OTP 21.2.4.
* Wed Jan 16 2019 Michael Klishin <mklishin@pivotal.io> - 21.2.3
- Update to Erlang/OTP 21.2.3.
* Sat Dec 29 2018 Michael Klishin <mklishin@pivotal.io> - 21.2.2
- Update to Erlang/OTP 21.2.2.
* Fri Dec 28 2018 Michael Klishin <mklishin@pivotal.io> - 21.2.1
- Update to Erlang/OTP 21.2.1.
* Wed Dec 12 2018 Michael Klishin <mklishin@pivotal.io> - 21.2
- Update to Erlang/OTP 21.2.
* Fri Nov 30 2018 Michael Klishin <mklishin@pivotal.io> - 21.1.4
- Update to Erlang/OTP 21.1.4.
* Sat Nov 24 2018 Michael Klishin <mklishin@pivotal.io> - 21.1.3
- Update to Erlang/OTP 21.1.3.
* Thu Nov 22 2018 Michael Klishin <mklishin@pivotal.io> - 21.1.2
- Update to Erlang/OTP 21.1.2.
* Tue Nov 6 2018 Gabriele Santomaggio <g.santomaggio@gmil.com>
- Add patch file for crypo.c
* Wed Oct 24 2018 Michael Klishin <mklishin@pivotal.io> - 21.1.1
- Update to Erlang/OTP 21.1.1.
* Tue Oct 9 2018 Jean-Sébastien Pédron <jean-sebastien@rabbitmq.com> - 21.1-2
- Remove the too generic `Provides: erlang` line which prevented version requirement in packages depending on Erlang from working.
* Tue Sep 25 2018 Michael Klishin <mklishin@pivotal.io> - 21.1
- Update to Erlang/OTP 21.1.
* Wed Sep 12 2018 Michael Klishin <mklishin@pivotal.io> - 21.0.9
- Update to Erlang/OTP 21.0.9.
* Thu Sep 6 2018 Michael Klishin <mklishin@pivotal.io> - 21.0.8
- Update to Erlang/OTP 21.0.8.
* Mon Sep 3 2018 Michael Klishin <mklishin@pivotal.io> - 21.0.7
- Update to Erlang/OTP 21.0.7.
* Wed Aug 29 2018 Michael Klishin <mklishin@pivotal.io> - 21.0.6
- Update to Erlang/OTP 21.0.6.
* Sun Aug 12 2018 Michael Klishin <mklishin@pivotal.io> - 21.0.5
- Update to Erlang/OTP 21.0.5.
* Thu Jul 26 2018 Michael Klishin <mklishin@pivotal.io> - 21.0.4
- Update to Erlang/OTP 21.0.4.
* Fri Jul 13 2018 Michael Klishin <mklishin@pivotal.io> - 21.0.3
- Update to Erlang/OTP 21.0.3.
* Fri Jul 6 2018 Michael Klishin <mklishin@pivotal.io> - 21.0.2
- Update to Erlang/OTP 21.0.2.
* Wed Jun 20 2018 Michael Klishin <mklishin@pivotal.io> - 21.0
- Update to Erlang/OTP 21.0.
* Wed Jun 20 2018 Michael Klishin <mklishin@pivotal.io> - 20.3.8
- Update to Erlang/OTP 20.3.8.
* Fri Jun 8 2018 Michael Klishin <mklishin@pivotal.io> - 20.3.7
- Update to Erlang/OTP 20.3.7.
* Fri May 18 2018 Michael Klishin <mklishin@pivotal.io> - 20.3.6
- Update to Erlang/OTP 20.3.6.
* Fri Apr 20 2018 Michael Klishin <mklishin@pivotal.io> - 20.3.4
- Update to Erlang/OTP 20.3.4.
* Wed Mar 14 2018 Michael Klishin <mklishin@pivotal.io> - 20.3
- Update to Erlang/OTP 20.3.
* Tue Feb 13 2018 Michael Klishin <mklishin@pivotal.io> - 20.2.3
- Update to Erlang/OTP 20.2.3.
* Sun Jan 14 2018 Michael Klishin <mklishin@pivotal.io> - 20.2.2
- Update to Erlang/OTP 20.2.2.
* Wed Dec 13 2017 Michael Klishin <mklishin@pivotal.io> - 20.1.7.1
- Update to Erlang/OTP 20.1.7.
* Wed Nov 29 2017 Michael Klishin <mklishin@pivotal.io> - 20.1.7
- Update to Erlang/OTP 20.1.7.
* Fri Nov 10 2017 Michael Klishin <mklishin@pivotal.io> - 20.1.5
- Update to Erlang/OTP 20.1.5.
* Thu Nov 2 2017 Michael Klishin <mklishin@pivotal.io> - 20.1.4
- Update to Erlang/OTP 20.1.4.
* Wed Oct 11 2017 Michael Klishin <mklishin@pivotal.io> - 20.1.2
- Update to Erlang/OTP 20.1.2.
* Fri Oct 6 2017 Michael Klishin <mklishin@pivotal.io> - 20.1.1
- Update to Erlang/OTP 20.1.1.
* Tue Sep 26 2017 Michael Klishin <mklishin@pivotal.io> - 20.1.0
- Update to Erlang/OTP 20.1.
* Thu Sep 14 2017 Gabriele Santomaggio <gabriele.santomaggio@erlang-solutions.com> - 20.0.5
- Update to Erlang/OTP 20.0.5.
* Fri Aug 25 2017 Gabriele Santomaggio <gabriele.santomaggio@erlang-solutions.com> - 20.0.4
- Update to Erlang/OTP 20.0.4.
* Thu Aug 24 2017 Gabriele Santomaggio <gabriele.santomaggio@erlang-solutions.com> - 20.0.3
- Update to Erlang/OTP 20.0.3.
* Thu Jul 27 2017 Gabriele Santomaggio <gabriele.santomaggio@erlang-solutions.com> - 20.0.2
- Update to Erlang/OTP 20.0.2.
* Thu Jul 6 2017 Jean-Sébastien Pédron <jean-sebastien@rabbitmq.com> - 20.0.1-1
- Update to Erlang/OTP 20.0.1.
* Mon Jul 3 2017 Gabriele Santomaggio <gabriele.santomaggio@erlang-solutions.com> - 19.3.6.1
- update for 19.3.6.1
* Thu Jun 8 2017 Gabriele Santomaggio <gabriele.santomaggio@erlang-solutions.com> - 19.3.6
- update for 19.3.6
* Mon Jun 5 2017 Gabriele Santomaggio <gabriele.santomaggio@erlang-solutions.com> - 19.3.5
- update for 19.3.5
* Fri May 12 2017 Gabriele Santomaggio <gabriele.santomaggio@erlang-solutions.com> - 19.3.4
- update for 19.3.4
* Tue May 2 2017 Gabriele Santomaggio <gabriele.santomaggio@erlang-solutions.com> - 19.3.3
- update for 19.3.3
* Mon Apr 24 2017 Gabriele Santomaggio <gabriele.santomaggio@erlang-solutions.com> - 19.3.2
- update for 19.3.2
* Tue Apr 4 2017 Michael Klishin <mklishin@pivotal.io> - 19.3.1
- update for 19.3.1
* Tue Mar 14 2017 Gabriele Santomaggio <gabriele.santomaggio@erlang-solutions.com> - 19.3
- update for 19.3
* Wed Feb 8 2017 Gabriele Santomaggio <gabriele.santomaggio@erlang-solutions.com> - 19.2.3
- update for 19.2.3
* Thu Feb 2 2017 Gabriele Santomaggio <gabriele.santomaggio@erlang-solutions.com> - 19.2.2
- update for 19.2.2
* Fri Jan 20 2017 Gabriele Santomaggio <gabriele.santomaggio@erlang-solutions.com> - 19.2.1
- update for 19.2.1
* Wed Dec 14 2016 Gabriele Santomaggio <gabriele.santomaggio@erlang-solutions.com> - 19.2
- update for 19.2
* Mon Nov 14 2016 Gabriele Santomaggio <gabriele.santomaggio@erlang-solutions.com> - 19.1.6
- update for 19.1.6
* Mon Oct 24 2016 Gabriele Santomaggio <gabriele.santomaggio@erlang-solutions.com> - 19.1.5
- update for 19.1.5
* Thu Oct 13 2016 Gabriele Santomaggio <gabriele.santomaggio@erlang-solutions.com> - 19.1.3
- update for 19.1.3
* Mon Oct 3 2016 Gabriele Santomaggio <gabriele.santomaggio@erlang-solutions.com> - 19.1.1
- update for 19.1.1
* Thu Sep 22 2016 Gabriele Santomaggio <gabriele.santomaggio@erlang-solutions.com> - 19.1
- update for 19.1
* Wed Sep 14 2016 Gabriele Santomaggio <gabriele.santomaggio@erlang-solutions.com> - 19.0.7
- update for 19.0.7
* Wed Sep 14 2016 Gabriele Santomaggio <gabriele.santomaggio@erlang-solutions.com> - 19.0.6
- update for 19.0.6
* Sun Aug 14 2016 Gabriele Santomaggio <gabriele.santomaggio@erlang-solutions.com> - 19.0.4
- update for 19.0.4
* Sun Jul 17 2016 Gabriele Santomaggio <gabriele.santomaggio@erlang-solutions.com> - 19.0
- update for 19.0
* Tue Jul 05 2016 Gabriele Santomaggio <gabriele.santomaggio@erlang-solutions.com> - 18.3.4
- update for 18.3.4
* Mon Mar 21 2016 Gabriele Santomaggio <gabriele.santomaggio@erlang-solutions.com> - 18.3
- update for 18.3
* Mon Dec 21 2015 Gabriele Santomaggio <gabriele.santomaggio@erlang-solutions.com> - 18.2.1
- update for 18.2.1
* Fri Oct 23 2015 Gabriele Santomaggio <gabriele.santomaggio@erlang-solutions.com> - 18.1
- Fixed build for 18.1
* Tue Oct 13 2015 Michael Klishin <michael@rabbitmq.com> - 18.1
- Updates for 18.1
* Thu Sep 06 2012 Emile Joubert <emile@rabbitmq.com> - R15B-02.1
- Updates for R15B02
- Minimised build requirements
- Removed docs
* Wed Apr 25 2012 Stuart Williams <swilliams@vmware.com> - erlang-for-rabbitmq
- Minimised & removed dependencies not required for RabbitMQ and restored single package build.
* Tue Feb 07 2012 Peter Lemenkov <lemenkov@gmail.com> - R15B-00.1
- Ver. R15B
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - R14B-04.1.1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
* Sun Aug 07 2011 Peter Lemenkov <lemenkov@gmail.com> - R14B-04.1
- Ver. R14B04
* Sun Aug 07 2011 Peter Lemenkov <lemenkov@gmail.com> - R14B-03.3
- Use prebuilt docs on EL-[56] also
* Thu Jul 21 2011 Peter Lemenkov <lemenkov@gmail.com> - R14B-03.2
- Fixed building on F-15
* Wed Jul 20 2011 Peter Lemenkov <lemenkov@gmail.com> - R14B-03.1
- Ver. R14B03
- New module - diameter
- Several new examples directories
* Fri Apr 1 2011 Hans Ulrich Niedermann <hun@n-dimensional.de> - R14B-02.2
- Work around fop-1.0-14.fc16 bug (#689930) by using prebuilt docs for f16/rawhide
* Mon Mar 21 2011 Hans Ulrich Niedermann <hun@n-dimensional.de> - R14B-02.1
- snmp-4.19 (R14B02) ships lib/snmp/bin/snmpc
- inets-5.5.2 puts *.hrl in include/
- install/symlink *.jar into %%{_javadir} (#679031)
- Update to upstream maintenance release R14B02
* Sat Feb 12 2011 Hans Ulrich Niedermann <hun@n-dimensional.de> - R14B-01.5
- erlang-doc does not really require erlang base package (#629723)
- Add %%{?_isa} for all explicit "Requires:"
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - R14B-01.4.1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
* Mon Jan 31 2011 Hans Ulrich Niedermann <hun@n-dimensional.de> - R14B-01.4
- Adapt %%files: Add wxSystemSettings.3 man page
- Adapt %%files for change from run_test to ct_run
- Remove rpaths from lib/ssl-*/bin/esock_ssl
- Update erlang.spec and otp-00*.patch without numbers
- otp-get-patches.sh: Remove patch numbering
* Sun Jan 30 2011 Hans Ulrich Niedermann <hun@n-dimensional.de> - R14B-01.3
- Add "buffer overflow during build" fix (#663260)
* Wed Dec 15 2010 Hans Ulrich Niedermann <hun@n-dimensional.de> - R14B-01.2
- Update to rebased patches
* Mon Dec 13 2010 Hans Ulrich Niedermann <hun@n-dimensional.de> - R14B-01.1
- Update to upstream release R14B01 (the patches still need work)
* Thu Nov 18 2010 Peter Lemenkov <lemenkov@gmail.com> - R14B-0.5
- Fixed building on EL-6
* Mon Nov 15 2010 Peter Lemenkov <lemenkov@gmail.com> - R14B-0.4
- No more dependent on erlang-rpm-macros sub-package
* Thu Nov 11 2010 Peter Lemenkov <lemenkov@gmail.com> - R14B-0.3
- Remove pre-built stuff
* Fri Nov 5 2010 Peter Lemenkov <lemenkov@gmail.com> - R14B-0.2
- Fixed doc-files and man-pages instalation for EL-5
- Temporarily (I hope) disabled emacs-related stuff in EL-5
- Disable erlang-rpm-macros subpackage for EL-5
* Wed Sep 29 2010 jkeating - R14B-0.1.1
- Rebuilt for gcc bug 634757
* Thu Sep 16 2010 Peter Lemenkov <lemenkov@gmail.com> - R14B-0.1
- R14B release
* Mon Aug 2 2010 Hans Ulrich Niedermann <hun@n-dimensional.de> - R14A-0.6
- Implement '--without doc' conditional for faster test builds (#618245).
* Fri Jul 30 2010 Hans Ulrich Niedermann <hun@n-dimensional.de> - R14A-0.5
- Properly hook up (X)Emacs erlang-mode (#491165)
* Mon Jul 26 2010 Hans Ulrich Niedermann <hun@n-dimensional.de> - R14A-0.4
- Spec file cleanups:
- Avoid accidental %%rel increments by rpmdev-bumpspec.
- Use %%global for our spec file macros.
- Use macro for redundant directory names.
- Whitespace cleanups (tabs vs. spaces).
- Fix accidental macro usage in %%changelog.
* Wed Jul 14 2010 Dan Horák <dan@danny.cz> - R14A-0.3
- rebuilt against wxGTK-2.8.11-2
* Sat Jun 26 2010 Peter Lemenkov <lemenkov@gmail.com> - R14A-0.2
- Updated list of explicit requirements
* Fri Jun 18 2010 Peter Lemenkov <lemenkov@gmail.com> - R14A-0.1
- R14A release
* Sat May 15 2010 Peter Lemenkov <lemenkov@gmail.com> - R13B-04.12
- Moved dialyzer and typer executables from erts to appropriate rpms
* Fri May 14 2010 Peter Lemenkov <lemenkov@gmail.com> - R13B-04.11
- Do not mention nteventlog in os_mon.app, see rhbz #592251
* Thu May 6 2010 Peter Lemenkov <lemenkov@gmail.com> - R13B-04.10
- Disabled automatic requires/provides generation
* Wed Apr 28 2010 Peter Lemenkov <lemenkov@gmail.com> - R13B-04.9
- Added missing files, necessary for emacs (see rhbz #585349)
- Patches rebased
* Tue Apr 27 2010 Peter Lemenkov <lemenkov@gmail.com> - R13B-04.8
- Added missing BuildRequires libxslt (for building docs)
- Removed %%post script completely (resolves rhbz #586428)
- Since now both docs and man-pages are built from sources