forked from rabbitmq/erlang-rpm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
erlang.spec
860 lines (620 loc) · 27.6 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
# Copyright Pivotal Software, Inc. 2012-2019. All Rights Reserved.
#
# The contents of this file are subject to the Erlang Public License,
# Version 1.1, (the "License"); you may not use this file except in
# compliance with the License. You should have received a copy of the
# Erlang Public License along with this software. If not, it can be
# retrieved online at https://www.erlang.org/.
#
# Software distributed under the License is distributed on an "AS IS"
# basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
# the License for the specific language governing rights and limitations
# under the License.
%global upstream_ver 22.0
%global package_ver 22.0
%global package_ver_release 1
%define OSL_File_Name Erlang_ASL2_LICENSE.txt
Name: erlang
Version: %{package_ver}
Release: %{package_ver_release}%{?dist}
Summary: General-purpose programming language and runtime environment
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: Pivotal Software, Inc.
# Do not format man-pages and do not install miscellaneous
Patch1: otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch
# Remove rpath
Patch2: otp-0002-Remove-rpath.patch
# Do not install C sources
Patch3: otp-0003-Do-not-install-C-sources.patch
# Do not install erlang sources
Patch7: otp-0007-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
Obsoletes: erlang-docbuilder
%description
This is a minimal packaging of Erlang produced by Pivotal 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, hipe, inets, kernel, mnesia, os_mon,
public_key, reltool, runtime_tools, sasl, snmp, ssl, stdlib,
syntax_tools and xmerl.
%define _pivotal_license_file %{_builddir}/otp-OTP-%{upstream_ver}/`basename %{S:2}`
%prep
%setup -q -n otp-OTP-%{upstream_ver}
%patch1 -p1 -b .Do_not_format_man_pages_and_do_not_install_miscellan
%patch2 -p1 -b .Remove_rpath
%patch3 -p1 -b .Do_not_install_C_sources
%patch7 -p1 -F1 -b .Do_not_install_erlang_sources
# remove shipped zlib sources
# commented out because centos only has 1.2.3 and Erlang 18.1 needs a later version
#rm -f erts/emulator/zlib/*.[ch]
# 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 --without-javac --without-odbc
# autoconf
./otp_build autoconf
%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} %{_pivotal_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/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/dialyzer
rm -rf $RPM_BUILD_ROOT%{_libdir}/erlang/erts-*/bin/typer
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/
%{_libdir}/erlang/lib/hipe-*/
%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
%dir %{_libdir}/erlang/lib/syntax_tools-*/
%{_libdir}/erlang/lib/syntax_tools-*/ebin
%{_libdir}/erlang/lib/tools-*/
%{_libdir}/erlang/lib/xmerl-*/
%changelog
* Tue May 14 2019 Michael Klishin <[email protected]> - 22.0
- Update to Erlang/OTP 22.0.
* Fri May 10 2019 Michael Klishin <[email protected]> - 21.3.7.1
- Update to Erlang/OTP 21.3.7.1.
* Sun Apr 28 2019 Michael Klishin <[email protected]> - 21.3.7
- Update to Erlang/OTP 21.3.7.
* Thu Apr 18 2019 Michael Klishin <[email protected]> - 21.3.6
- Update to Erlang/OTP 21.3.6.
* Tue Apr 16 2019 Michael Klishin <[email protected]> - 21.3.5
- Update to Erlang/OTP 21.3.5.
* Sat Apr 13 2019 Michael Klishin <[email protected]> - 21.3.4
- Update to Erlang/OTP 21.3.4.
* Mon Apr 1 2019 Michael Klishin <[email protected]> - 21.3.3
- Update to Erlang/OTP 21.3.3.
* Fri Mar 22 2019 Michael Klishin <[email protected]> - 21.3.2
- Update to Erlang/OTP 21.3.2.
* Tue Mar 19 2019 Michael Klishin <[email protected]> - 21.3.1
- Update to Erlang/OTP 21.3.1.
* Thu Mar 14 2019 Michael Klishin <[email protected]> - 21.3
- Update to Erlang/OTP 21.3.
* Fri Mar 8 2019 Michael Klishin <[email protected]> - 21.2.7
- Update to Erlang/OTP 21.2.7.
* Mon Feb 18 2019 Michael Klishin <[email protected]> - 21.2.6
- Update to Erlang/OTP 21.2.6.
* Tue Feb 5 2019 Michael Klishin <[email protected]> - 21.2.5
- Update to Erlang/OTP 21.2.5.
* Fri Jan 25 2019 Michael Klishin <[email protected]> - 21.2.4
- Update to Erlang/OTP 21.2.4.
* Wed Jan 16 2019 Michael Klishin <[email protected]> - 21.2.3
- Update to Erlang/OTP 21.2.3.
* Sat Dec 29 2018 Michael Klishin <[email protected]> - 21.2.2
- Update to Erlang/OTP 21.2.2.
* Fri Dec 28 2018 Michael Klishin <[email protected]> - 21.2.1
- Update to Erlang/OTP 21.2.1.
* Wed Dec 12 2018 Michael Klishin <[email protected]> - 21.2
- Update to Erlang/OTP 21.2.
* Fri Nov 30 2018 Michael Klishin <[email protected]> - 21.1.4
- Update to Erlang/OTP 21.1.4.
* Sat Nov 24 2018 Michael Klishin <[email protected]> - 21.1.3
- Update to Erlang/OTP 21.1.3.
* Thu Nov 22 2018 Michael Klishin <[email protected]> - 21.1.2
- Update to Erlang/OTP 21.1.2.
* Tue Nov 6 2018 Gabriele Santomaggio <[email protected]>
- Add patch file for crypo.c
* Wed Oct 24 2018 Michael Klishin <[email protected]> - 21.1.1
- Update to Erlang/OTP 21.1.1.
* Tue Oct 9 2018 Jean-Sébastien Pédron <[email protected]> - 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 <[email protected]> - 21.1
- Update to Erlang/OTP 21.1.
* Wed Sep 12 2018 Michael Klishin <[email protected]> - 21.0.9
- Update to Erlang/OTP 21.0.9.
* Thu Sep 6 2018 Michael Klishin <[email protected]> - 21.0.8
- Update to Erlang/OTP 21.0.8.
* Mon Sep 3 2018 Michael Klishin <[email protected]> - 21.0.7
- Update to Erlang/OTP 21.0.7.
* Wed Aug 29 2018 Michael Klishin <[email protected]> - 21.0.6
- Update to Erlang/OTP 21.0.6.
* Sun Aug 12 2018 Michael Klishin <[email protected]> - 21.0.5
- Update to Erlang/OTP 21.0.5.
* Thu Jul 26 2018 Michael Klishin <[email protected]> - 21.0.4
- Update to Erlang/OTP 21.0.4.
* Fri Jul 13 2018 Michael Klishin <[email protected]> - 21.0.3
- Update to Erlang/OTP 21.0.3.
* Fri Jul 6 2018 Michael Klishin <[email protected]> - 21.0.2
- Update to Erlang/OTP 21.0.2.
* Wed Jun 20 2018 Michael Klishin <[email protected]> - 21.0
- Update to Erlang/OTP 21.0.
* Wed Jun 20 2018 Michael Klishin <[email protected]> - 20.3.8
- Update to Erlang/OTP 20.3.8.
* Fri Jun 8 2018 Michael Klishin <[email protected]> - 20.3.7
- Update to Erlang/OTP 20.3.7.
* Fri May 18 2018 Michael Klishin <[email protected]> - 20.3.6
- Update to Erlang/OTP 20.3.6.
* Fri Apr 20 2018 Michael Klishin <[email protected]> - 20.3.4
- Update to Erlang/OTP 20.3.4.
* Wed Mar 14 2018 Michael Klishin <[email protected]> - 20.3
- Update to Erlang/OTP 20.3.
* Tue Feb 13 2018 Michael Klishin <[email protected]> - 20.2.3
- Update to Erlang/OTP 20.2.3.
* Sun Jan 14 2018 Michael Klishin <[email protected]> - 20.2.2
- Update to Erlang/OTP 20.2.2.
* Wed Dec 13 2017 Michael Klishin <[email protected]> - 20.1.7.1
- Update to Erlang/OTP 20.1.7.
* Wed Nov 29 2017 Michael Klishin <[email protected]> - 20.1.7
- Update to Erlang/OTP 20.1.7.
* Fri Nov 10 2017 Michael Klishin <[email protected]> - 20.1.5
- Update to Erlang/OTP 20.1.5.
* Thu Nov 2 2017 Michael Klishin <[email protected]> - 20.1.4
- Update to Erlang/OTP 20.1.4.
* Wed Oct 11 2017 Michael Klishin <[email protected]> - 20.1.2
- Update to Erlang/OTP 20.1.2.
* Fri Oct 6 2017 Michael Klishin <[email protected]> - 20.1.1
- Update to Erlang/OTP 20.1.1.
* Tue Sep 26 2017 Michael Klishin <[email protected]> - 20.1.0
- Update to Erlang/OTP 20.1.
* Thu Sep 14 2017 Gabriele Santomaggio <[email protected]> - 20.0.5
- Update to Erlang/OTP 20.0.5.
* Fri Aug 25 2017 Gabriele Santomaggio <[email protected]> - 20.0.4
- Update to Erlang/OTP 20.0.4.
* Thu Aug 24 2017 Gabriele Santomaggio <[email protected]> - 20.0.3
- Update to Erlang/OTP 20.0.3.
* Thu Jul 27 2017 Gabriele Santomaggio <[email protected]> - 20.0.2
- Update to Erlang/OTP 20.0.2.
* Thu Jul 6 2017 Jean-Sébastien Pédron <[email protected]> - 20.0.1-1
- Update to Erlang/OTP 20.0.1.
* Mon Jul 3 2017 Gabriele Santomaggio <[email protected]> - 19.3.6.1
- update for 19.3.6.1
* Thu Jun 8 2017 Gabriele Santomaggio <[email protected]> - 19.3.6
- update for 19.3.6
* Mon Jun 5 2017 Gabriele Santomaggio <[email protected]> - 19.3.5
- update for 19.3.5
* Fri May 12 2017 Gabriele Santomaggio <[email protected]> - 19.3.4
- update for 19.3.4
* Tue May 2 2017 Gabriele Santomaggio <[email protected]> - 19.3.3
- update for 19.3.3
* Mon Apr 24 2017 Gabriele Santomaggio <[email protected]> - 19.3.2
- update for 19.3.2
* Tue Apr 4 2017 Michael Klishin <[email protected]> - 19.3.1
- update for 19.3.1
* Tue Mar 14 2017 Gabriele Santomaggio <[email protected]> - 19.3
- update for 19.3
* Wed Feb 8 2017 Gabriele Santomaggio <[email protected]> - 19.2.3
- update for 19.2.3
* Thu Feb 2 2017 Gabriele Santomaggio <[email protected]> - 19.2.2
- update for 19.2.2
* Fri Jan 20 2017 Gabriele Santomaggio <[email protected]> - 19.2.1
- update for 19.2.1
* Wed Dec 14 2016 Gabriele Santomaggio <[email protected]> - 19.2
- update for 19.2
* Mon Nov 14 2016 Gabriele Santomaggio <[email protected]> - 19.1.6
- update for 19.1.6
* Mon Oct 24 2016 Gabriele Santomaggio <[email protected]> - 19.1.5
- update for 19.1.5
* Thu Oct 13 2016 Gabriele Santomaggio <[email protected]> - 19.1.3
- update for 19.1.3
* Mon Oct 3 2016 Gabriele Santomaggio <[email protected]> - 19.1.1
- update for 19.1.1
* Thu Sep 22 2016 Gabriele Santomaggio <[email protected]> - 19.1
- update for 19.1
* Wed Sep 14 2016 Gabriele Santomaggio <[email protected]> - 19.0.7
- update for 19.0.7
* Wed Sep 14 2016 Gabriele Santomaggio <[email protected]> - 19.0.6
- update for 19.0.6
* Sun Aug 14 2016 Gabriele Santomaggio <[email protected]> - 19.0.4
- update for 19.0.4
* Sun Jul 17 2016 Gabriele Santomaggio <[email protected]> - 19.0
- update for 19.0
* Tue Jul 05 2016 Gabriele Santomaggio <[email protected]> - 18.3.4
- update for 18.3.4
* Mon Mar 21 2016 Gabriele Santomaggio <[email protected]> - 18.3
- update for 18.3
* Mon Dec 21 2015 Gabriele Santomaggio <[email protected]> - 18.2.1
- update for 18.2.1
* Fri Oct 23 2015 Gabriele Santomaggio <[email protected]> - 18.1
- Fixed build for 18.1
* Tue Oct 13 2015 Michael Klishin <[email protected]> - 18.1
- Updates for 18.1
* Thu Sep 06 2012 Emile Joubert <[email protected]> - R15B-02.1
- Updates for R15B02
- Minimised build requirements
- Removed docs
* Wed Apr 25 2012 Stuart Williams <[email protected]> - erlang-for-rabbitmq
- Minimised & removed dependencies not required for RabbitMQ and restored single package build.
* Tue Feb 07 2012 Peter Lemenkov <[email protected]> - R15B-00.1
- Ver. R15B
* Fri Jan 13 2012 Fedora Release Engineering <[email protected]> - R14B-04.1.1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
* Sun Aug 07 2011 Peter Lemenkov <[email protected]> - R14B-04.1
- Ver. R14B04
* Sun Aug 07 2011 Peter Lemenkov <[email protected]> - R14B-03.3
- Use prebuilt docs on EL-[56] also
* Thu Jul 21 2011 Peter Lemenkov <[email protected]> - R14B-03.2
- Fixed building on F-15
* Wed Jul 20 2011 Peter Lemenkov <[email protected]> - R14B-03.1
- Ver. R14B03
- New module - diameter
- Several new examples directories
* Fri Apr 1 2011 Hans Ulrich Niedermann <[email protected]> - 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 <[email protected]> - 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 <[email protected]> - 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 <[email protected]> - R14B-01.4.1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
* Mon Jan 31 2011 Hans Ulrich Niedermann <[email protected]> - 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 <[email protected]> - R14B-01.3
- Add "buffer overflow during build" fix (#663260)
* Wed Dec 15 2010 Hans Ulrich Niedermann <[email protected]> - R14B-01.2
- Update to rebased patches
* Mon Dec 13 2010 Hans Ulrich Niedermann <[email protected]> - R14B-01.1
- Update to upstream release R14B01 (the patches still need work)
* Thu Nov 18 2010 Peter Lemenkov <[email protected]> - R14B-0.5
- Fixed building on EL-6
* Mon Nov 15 2010 Peter Lemenkov <[email protected]> - R14B-0.4
- No more dependent on erlang-rpm-macros sub-package
* Thu Nov 11 2010 Peter Lemenkov <[email protected]> - R14B-0.3
- Remove pre-built stuff
* Fri Nov 5 2010 Peter Lemenkov <[email protected]> - 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 <[email protected]> - R14B-0.1
- R14B release
* Mon Aug 2 2010 Hans Ulrich Niedermann <[email protected]> - R14A-0.6
- Implement '--without doc' conditional for faster test builds (#618245).
* Fri Jul 30 2010 Hans Ulrich Niedermann <[email protected]> - R14A-0.5
- Properly hook up (X)Emacs erlang-mode (#491165)
* Mon Jul 26 2010 Hans Ulrich Niedermann <[email protected]> - 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 <[email protected]> - R14A-0.3
- rebuilt against wxGTK-2.8.11-2
* Sat Jun 26 2010 Peter Lemenkov <[email protected]> - R14A-0.2
- Updated list of explicit requirements
* Fri Jun 18 2010 Peter Lemenkov <[email protected]> - R14A-0.1
- R14A release
* Sat May 15 2010 Peter Lemenkov <[email protected]> - R13B-04.12
- Moved dialyzer and typer executables from erts to appropriate rpms
* Fri May 14 2010 Peter Lemenkov <[email protected]> - R13B-04.11
- Do not mention nteventlog in os_mon.app, see rhbz #592251
* Thu May 6 2010 Peter Lemenkov <[email protected]> - R13B-04.10
- Disabled automatic requires/provides generation
* Wed Apr 28 2010 Peter Lemenkov <[email protected]> - R13B-04.9
- Added missing files, necessary for emacs (see rhbz #585349)
- Patches rebased
* Tue Apr 27 2010 Peter Lemenkov <[email protected]> - 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
- No need to manually create symlinks in %%{_bindir}
* Mon Apr 26 2010 Peter Lemenkov <[email protected]> - R13B-04.7
- Build with erlang-rpm-macros
- Man-files are packed with packages, they belong to
* Mon Apr 26 2010 Peter Lemenkov <[email protected]> - R13B-04.6
- Made erlang-rpm-macros as separate package
- Fix error while installing erlang-rpm-macros
* Wed Apr 21 2010 Peter Lemenkov <[email protected]> - R13B-04.5
- Use erlang rpm macros for adding provides/reqires
- All %%{_libdir}/erlang/lib/* items were splitted off from main package, which
in turn becomes purely virtual now.
- Removing RPM_BUILD_ROOT from several installed files is no longer required
* Sat Apr 17 2010 Peter Lemenkov <[email protected]> - R13B-04.4
- Added missing Requires mesa-libGL{U} for wx module (rhbz #583287)
- Fix for buffer overflow in pcre module (rhbz #583288)
- Doc sub-package marked as noarch (partially resolves rhbz #491165)
* Fri Mar 26 2010 Peter Lemenkov <[email protected]> - R13B-04.3
- Added rpm-related stuff for auto-generating erlang dependencies in the future builds
- Since now *.yrl files are removed too.
- Removed unnecessary C and Java sources
* Fri Mar 26 2010 Peter Lemenkov <[email protected]> - R13B-04.2
- Do not remove all files from %%{_libdir}/erlang/lib/*/src - keep
*.[yh]rl intact
- Fix permissions for megaco *.so objects
- Fix permissions for asn1 *.so objects
* Sat Feb 13 2010 Peter Lemenkov <[email protected]> - R13B-04.1
- New release R13B-04
- Since now we're using %%configure instead of ./configure
- Removed no longer needed fix for newer glibc version
- Dropped %%patch3 (applied upstream)
- Rebased patches
- Added BR fop for rebuilding of docs
- Use system-wide zlib instead of shipped one
- Dropped BR gd-devel
- Removed unneeded sources (should be fixed upstream)
- Fixed permission for wx driver (should be fixed upstream)
* Thu Oct 22 2009 Lubomir Rintel (Good Data) <[email protected]> - R13B-02-1
- Update to R13B-02 (patched for what's released as 02-1 by upstream)
* Tue Aug 25 2009 Tomas Mraz <[email protected]> - R13B-01.2
- rebuilt with new openssl
* Mon Aug 10 2009 Gerard Milmeister <[email protected]> - R13B-01.1
- update to R13B01
* Fri Jul 24 2009 Fedora Release Engineering <[email protected]> - R12B-6.7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
* Tue Apr 21 2009 Debarshi Ray <[email protected]> R12B-5.7
- Updated rpath patch.
- Fixed configure to respect $RPM_OPT_FLAGS.
* Sun Mar 1 2009 Gerard Milmeister <[email protected]> - R12B-5.6
- new release R12B-5
- link escript and dialyzer to %%{_bindir}
* Tue Feb 24 2009 Fedora Release Engineering <[email protected]> - R12B-5.5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
* Sat Feb 14 2009 Dennis Gilmore <[email protected]> - R12B-4.5
- fix sparc arches to compile
* Fri Jan 16 2009 Tomas Mraz <[email protected]> - R12B-4.4
- rebuild with new openssl
* Sat Oct 25 2008 Gerard Milmeister <[email protected]> - R12B-4.1
- new release R12B-4
* Fri Sep 5 2008 Gerard Milmeister <[email protected]> - R12B-3.3
- fixed sslrpath patch
* Thu Jul 17 2008 Tom "spot" Callaway <[email protected]> - R12B-3.2
- fix license tag
* Sun Jul 6 2008 Gerard Milmeister <[email protected]> - R12B-3.1
- new release R12B-3
* Thu Mar 27 2008 Gerard Milmeister <[email protected]> - R12B-1.1
- new release R12B-1
* Sat Feb 23 2008 Gerard Milmeister <[email protected]> - R12B-0.3
- disable strict aliasing optimization
* Mon Feb 18 2008 Fedora Release Engineering <[email protected]> - R12B-0.2
- Autorebuild for GCC 4.3
* Sat Dec 8 2007 Gerard Milmeister <[email protected]> - R12B-0.1
- new release R12B-0
* Wed Dec 05 2007 Release Engineering <rel-eng at fedoraproject dot org> - R11B-6
- Rebuild for deps
* Sun Aug 19 2007 Gerard Milmeister <[email protected]> - R11B-5.3
- fix some permissions
* Sat Aug 18 2007 Gerard Milmeister <[email protected]> - R11B-5.2
- enable dynamic linking for ssl
* Sat Aug 18 2007 Gerard Milmeister <[email protected]> - R11B-5.1
- new release R11B-5
* Sat Mar 24 2007 Thomas Fitzsimmons <[email protected]> - R11B-2.4
- Require java-1.5.0-gcj-devel for build.
* Sun Dec 31 2006 Gerard Milmeister <[email protected]> - R11B-2.3
- remove buildroot from installed files
* Sat Dec 30 2006 Gerard Milmeister <[email protected]> - R11B-2.2
- added patch for compiling with glibc 2.5
* Sat Dec 30 2006 Gerard Milmeister <[email protected]> - R11B-2.1
- new version R11B-2
* Mon Aug 28 2006 Gerard Milmeister <[email protected]> - R11B-0.3
- Rebuild for FE6
* Wed Jul 5 2006 Gerard Milmeister <[email protected]> - R11B-0.2
- add BR m4
* Thu May 18 2006 Gerard Milmeister <[email protected]> - R11B-0.1
- new version R11B-0
* Wed May 3 2006 Gerard Milmeister <[email protected]> - R10B-10.3
- added patch for run_erl by Knut-Håvard Aksnes
* Mon Mar 13 2006 Gerard Milmeister <[email protected]> - R10B-10.1
- new version R10B-10
* Thu Dec 29 2005 Gerard Milmeister <[email protected]> - R10B-9.1
- New Version R10B-9
* Sat Oct 29 2005 Gerard Milmeister <[email protected]> - R10B-8.2
- updated rpath patch
* Sat Oct 29 2005 Gerard Milmeister <[email protected]> - R10B-8.1
- New Version R10B-8
* Sat Oct 1 2005 Gerard Milmeister <[email protected]> - R10B-6.4
- Added tk-devel and tcl-devel to buildreq
- Added tk to req
* Tue Sep 6 2005 Gerard Milmeister <[email protected]> - R10B-6.3
- Remove perl BuildRequires
* Tue Aug 30 2005 Gerard Milmeister <[email protected]> - R10B-6.2
- change /usr/lib to %%{_libdir}
- redirect output in %%post to /dev/null
- add unixODBC-devel to BuildRequires
- split doc off to erlang-doc package
* Sat Jun 25 2005 Gerard Milmeister <[email protected]> - R10B-6.1
- New Version R10B-6
* Sun Feb 13 2005 Gerard Milmeister <[email protected]> - R10B-3.1
- New Version R10B-3
* Mon Dec 27 2004 Gerard Milmeister <[email protected]> - 0:R10B-2-0.fdr.1
- New Version R10B-2
* Wed Oct 6 2004 Gerard Milmeister <[email protected]> - 0:R10B-0.fdr.1
- New Version R10B
* Thu Oct 16 2003 Gerard Milmeister <[email protected]> - 0:R9B-1.fdr.1
- First Fedora release