-
Notifications
You must be signed in to change notification settings - Fork 0
/
smartmet-engine-geonames.spec
979 lines (690 loc) · 37.7 KB
/
smartmet-engine-geonames.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
%define DIRNAME geonames
%define LIBNAME smartmet-%{DIRNAME}
%define SPECNAME smartmet-engine-%{DIRNAME}
Summary: Smartmet geonames engine
Name: %{SPECNAME}
Version: 24.11.19
Release: 1%{?dist}.fmi
License: MIT
Group: SmartMet/Engines
URL: https://github.com/fmidev/smartmet-engine-geonames
Source0: %{name}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
%if 0%{?rhel} && 0%{rhel} < 9
%define smartmet_boost boost169
%else
%define smartmet_boost boost
%endif
%define smartmet_fmt_min 11.0.0
%define smartmet_fmt_max 12.0.0
BuildRequires: %{smartmet_boost}-devel
BuildRequires: fmt-devel >= %{smartmet_fmt_min}, fmt-devel < %{smartmet_fmt_max}
BuildRequires: gcc-c++
BuildRequires: gdal38-devel
BuildRequires: libatomic
BuildRequires: libicu-devel
BuildRequires: make
BuildRequires: mariadb-devel
BuildRequires: rpm-build
BuildRequires: smartmet-utils-devel >= 24.9.10
BuildRequires: smartmet-library-gis-devel >= 24.8.7
BuildRequires: smartmet-library-locus-devel >= 24.9.28
BuildRequires: smartmet-library-macgyver-devel >= 24.10.28
BuildRequires: smartmet-library-newbase-devel >= 24.9.25
BuildRequires: smartmet-library-spine-devel >= 24.11.8
Requires: %{smartmet_boost}-iostreams
Requires: %{smartmet_boost}-locale
Requires: %{smartmet_boost}-system
Requires: %{smartmet_boost}-thread
Requires: fmt-libs >= %{smartmet_fmt_min}, fmt-libs < %{smartmet_fmt_max}
Requires: gdal38-libs
Requires: libatomic
Requires: libicu
Requires: smartmet-library-gis >= 24.8.7
Requires: smartmet-library-locus >= 24.9.28
Requires: smartmet-library-macgyver >= 24.10.28
Requires: smartmet-library-newbase >= 24.9.25
Requires: smartmet-library-spine >= 24.11.8
Requires: smartmet-server >= 24.11.8
%if 0%{rhel} >= 8
Requires: mariadb-connector-c
%else
Requires: mariadb-libs
%endif
%if 0%{?rhel} && 0%{rhel} == 8
Requires: libpqxx >= 1:7.7.0, libpqxx < 1:7.8.0
BuildRequires: libpqxx-devel >= 1:7.7.0, libpqxx-devel < 1:7.8.0
#TestRequires: libpqxx-devel >= 1:7.7.0, libpqxx-devel < 1:7.8.0
%else
%if 0%{?rhel} && 0%{rhel} >= 9
Requires: libpqxx >= 1:7.9.0, libpqxx < 1:8.0.0
BuildRequires: libpqxx-devel >= 1:7.9.0, libpqxx-devel < 1:8.0.0
#TestRequires: libpqxx-devel >= 1:7.9.0, libpqxx-devel < 1:8.0.0
%else
Requires: libpqxx
BuildRequires: libpqxx-devel
#TestRequires: libpqxx-devel
%endif
%endif
Provides: %{SPECNAME}
Obsoletes: smartmet-brainstorm-geoengine < 16.11.1
Obsoletes: smartmet-brainstorm-geoengine-debuginfo < 16.11.1
#TestRequires: bzip2-devel
#TestRequires: make
#TestRequires: gcc-c++
#TestRequires: smartmet-library-spine-devel
#TestRequires: smartmet-library-newbase
#TestRequires: smartmet-library-regression
#TestRequires: smartmet-test-data
#TestRequires: smartmet-test-db
#TestRequires: zlib-devel
#TestRequires: gdal38-devel
%description
SmartMet geonames engine
%package -n %{SPECNAME}-devel
Summary: SmartMet %{SPECNAME} development headers
Group: SmartMet/Development
Provides: %{SPECNAME}-devel
Requires: %{SPECNAME} = %{version}-%{release}
Requires: smartmet-library-locus-devel >= 24.9.28
Obsoletes: smartmet-brainstorm-geoengine-devel < 16.11.1
%description -n %{SPECNAME}-devel
Smartmet %{SPECNAME} development headers.
%prep
rm -rf $RPM_BUILD_ROOT
%setup -q -n %{SPECNAME}
%build -q -n %{SPECNAME}
make %{_smp_mflags}
%install
%makeinstall
%clean
rm -rf $RPM_BUILD_ROOT
%files -n %{SPECNAME}
%defattr(0775,root,root,0775)
%{_datadir}/smartmet/engines/%{DIRNAME}.so
%files -n %{SPECNAME}-devel
%defattr(0664,root,root,0775)
%{_includedir}/smartmet/engines/%{DIRNAME}
%changelog
* Tue Nov 19 2024 Mika Heiskanen <[email protected]> - 24.11.19-1.fmi
- Speed improvement
* Tue Nov 12 2024 Andris Pavēnis <[email protected]> 24.11.12-1.fmi
- Fix /admin?what=reload response
* Fri Nov 8 2024 Andris Pavēnis <[email protected]> 24.11.8-1.fmi
- Register admin requests to SmartMet::Spine::Reactor
* Sat Sep 28 2024 Mika Heiskanen <[email protected]> - 24.9.28-1.fmi
- Repackaged due to PostgreSQLConnection ABI change
* Wed Aug 7 2024 Andris Pavēnis <[email protected]> 24.8.7-2.fmi
- Fix requires (RHEL9, libpqxx)
* Wed Aug 7 2024 Andris Pavēnis <[email protected]> 24.8.7-1.fmi
- Update to gdal-3.8, geos-3.12, proj-94 and fmt-11
* Fri Jul 12 2024 Andris Pavēnis <[email protected]> 24.7.12-1.fmi
- Replace many boost library types with C++ standard library ones
* Thu May 16 2024 Andris Pavēnis <[email protected]> 24.5.16-1.fmi
- Clean up boost date-time uses
* Mon May 6 2024 Andris Pavēnis <[email protected]> 24.5.6-1.fmi
- Use Date library (https://github.com/HowardHinnant/date) instead of boost date_time
* Fri Feb 23 2024 Mika Heiskanen <[email protected]> 24.2.23-2.fmi
- Full repackaging
* Fri Feb 23 2024 Mika Heiskanen <[email protected]> 24.2.23-1.fmi
- Full repackaging
* Tue Jan 30 2024 Mika Heiskanen <[email protected]> 24.1.30-1.fmi
- Repackaged due to newbase ABI changes
* Wed Sep 6 2023 Mika Heiskanen <[email protected]> - 23.9.6-1.fmi
- Silenced compiler warnings
* Fri Jul 28 2023 Andris Pavēnis <[email protected]> 23.7.28-1.fmi
- Repackage due to bulk ABI changes in macgyver/newbase/spine
* Wed Jul 12 2023 Andris Pavēnis <[email protected]> 23.7.12-1.fmi
- Use postgresql 15, gdal 3.5, geos 3.11 and proj-9.0
* Mon Jul 10 2023 Mika Heiskanen <[email protected]> - 23.7.10-1.fmi
- Silenced compiler warnings
* Tue Jun 13 2023 Mika Heiskanen <[email protected]> - 23.6.13-1.fmi
- Support internal and environment variables in configuration files
* Thu Apr 27 2023 Andris Pavēnis <[email protected]> 23.4.27-1.fmi
- Repackage due to macgyver ABI changes (AsyncTask, AsyncTaskGroup)
* Thu Mar 16 2023 Mika Heiskanen <[email protected]> - 23.3.16-1.fmi
- Cache also failed name searches to prevent overloading the databases with invalid searches
- Added simple security settings for disabling clearly invalid name searches
* Mon Feb 27 2023 Andris Pavēnis <[email protected]> 23.2.27-1.fmi
- Cancel all database operations and reconnection attempts to the database when shutting down engine
* Wed Jan 18 2023 Mika Heiskanen <[email protected]> - 23.1.18-2.fmi
- Silenced warnings
- More refactored code
* Wed Jan 18 2023 Mika Heiskanen <[email protected]> - 23.1.18-1.fmi
- Refactored code for readability
- Prefer lambdas over bind
* Wed Dec 21 2022 Mika Heiskanen <[email protected]> - 22.12.21-1.fmi
- Fixed several CodeChecker warnings
* Fri Dec 16 2022 Mika Heiskanen <[email protected]> - 22.12.16-1.fmi
- Repackaged since PostgreSQLConnection ABI changed
* Thu Dec 15 2022 Mika Heiskanen <[email protected]> - 22.12.15-1.fmi
- Fixed helgrind warnings
* Wed Oct 5 2022 Mika Heiskanen <[email protected]> - 22.10.5-1.fmi
- Do not use boost::noncopyable
* Tue Oct 4 2022 Mika Heiskanen <[email protected]> - 22.10.4-1.fmi
- Read alternate country names for feature code TERR too
* Thu Aug 25 2022 Mika Heiskanen <[email protected]> - 22.8.25-1.fmi
- Use a generic exception handler for configuration file errors
* Thu Aug 4 2022 Andris Pavēnis <[email protected]> 22.8.4-1.fmi
- Fix engine shutdown freeze in case of early init failure
* Wed Jul 27 2022 Mika Heiskanen <[email protected]> - 22.7.27-1.fmi
- Repackaged since macgyver CacheStats ABI changed
* Wed Jul 20 2022 Andris Pavēnis <[email protected]> 22.7.20-1.fmi
- Repackage due to macgyver (AsynTaskGroup) ABI changes
* Fri Jun 17 2022 Andris Pavēnis <[email protected]> 22.6.17-1.fmi
- Add support for RHEL9. Update libpqxx to 7.7.0 (rhel8+) and fmt to 8.1.1
* Tue May 24 2022 Mika Heiskanen <[email protected]> - 22.5.24-1.fmi
- Repackaged due to NFmiArea ABI changes
* Fri May 20 2022 Mika Heiskanen <[email protected]> - 22.5.20-1.fmi
- Repackaged since newbase ABI changed
* Mon Mar 21 2022 Mika Heiskanen <[email protected]> - 22.3.21-2.fmi
- Fixed to obey the database.disabled setting
* Wed Mar 16 2022 Anssi Reponen <[email protected]> - 22.3.16-1.fmi
- Fix region name translation when place, lonlat, wkt used in query (BRAINSTORM-2271)
* Tue Mar 15 2022 Anssi Reponen <[email protected]> - 22.3.15-1.fmi
- Fix region name translation when geoid used in query (BRAINSTORM-2271)
* Mon Jan 31 2022 Andris Pavēnis <[email protected]> 22.1.31-1.fmi
- Load ISO-639 language codes from geonames database
* Fri Jan 21 2022 Andris Pavēnis <[email protected]> 22.1.21-1.fmi
- Repackage due to upgrade of packages from PGDG repo: gdal-3.4, geos-3.10, proj-8.2
* Tue Jan 18 2022 Anssi Reponen <[email protected]> - 22.1.18-1.fmi
- Use DistanceParser for maxdistance URL-parameter (BRAINSTORM-605)
* Mon Jan 10 2022 Andris Pavēnis <[email protected]> 22.1.10-1.fmi
- Reuse Locus::Query objects
* Tue Dec 7 2021 Andris Pavēnis <[email protected]> 21.12.7-1.fmi
- Update to postgresql 13 and gdal 3.3
* Tue Sep 28 2021 Mika Heiskanen <[email protected]> - 21.9.28-2.fmi
- Fixed 's-Hertogenbosch autocompletion to work
* Tue Sep 28 2021 Andris Pavēnis <[email protected]> 21.9.28-1.fmi
- Repackage due to dependency change: moving libconfig files to differentr directory
* Mon Sep 13 2021 Mika Heiskanen <[email protected]> - 21.9.13-1.fmi
- Repackaged due to Fmi::Cache statistics fixes
* Mon Aug 30 2021 Anssi Reponen <[email protected]> - 21.8.30-1.fmi
- Cache counters added (BRAINSTORM-1005)
* Tue Aug 17 2021 Mika Heiskanen <[email protected]> - 21.8.17-1.fmi
- Changed to use the latest shutdown API
* Tue Aug 10 2021 Mika Heiskanen <[email protected]> - 21.8.10-1.fmi
- Allow queries with multiple comma separated keywords
* Wed Aug 4 2021 Mika Heiskanen <[email protected]> - 21.8.4-1.fmi
- Allow autocomplete suggest keyword to be a comma separated list
* Mon Aug 2 2021 Mika Heiskanen <[email protected]> - 21.8.2-2.fmi
- Use atomic_shared_ptr
* Mon Aug 2 2021 Andris Pavēnis <[email protected]> 21.8.2-1.fmi
- Update white-space and empty string handling in to_treeword
* Thu Jul 29 2021 Andris Pavēnis <[email protected]> 21.7.29-1.fmi
- Attempt to convert strings in incoming requests to UTF-8 when necessary
* Wed Jul 28 2021 Mika Heiskanen <[email protected]> - 21.7.28-1.fmi
- Silenced compiler warnings
* Thu Jul 8 2021 Andris Pavēnis <[email protected]> 21.7.8-1.fmi
- Use libpqxx7 for RHEL8
* Mon Jun 21 2021 Andris Pavēnis <[email protected]> 21.6.21-2.fmi
- Fix missing include
* Mon Jun 21 2021 Andris Pavēnis <[email protected]> 21.6.21-1.fmi
- Use Fmi::Database::PostgreSQLConnection instead of Locus::Connection
* Fri Jun 18 2021 Mika Heiskanen <[email protected]> - 21.6.18-1.fmi
- Repackaged since locus API changed a little
* Wed Jun 16 2021 Mika Heiskanen <[email protected]> - 21.6.16-2.fmi
- Added caching for autocomplete for queries with multiple languages
* Wed Jun 16 2021 Mika Heiskanen <[email protected]> - 21.6.16-1.fmi
- Optimized autocomplete for speed by not using std::list::size() in a loop
* Tue Jun 15 2021 Mika Heiskanen <[email protected]> - 21.6.15-1.fmi
- Added support for multilanguage autocomplete
* Mon Jun 7 2021 Andris Pavēnis <[email protected]> 21.6.7-1.fmi
- Use Fmi::AsyncTaskGroup
* Thu May 20 2021 Mika Heiskanen <[email protected]> - 21.5.20-2.fmi
- Repackaged with improved hashing functions
* Thu May 20 2021 Mika Heiskanen <[email protected]> - 21.5.20-1.fmi
- Use Fmi hash functions, boost::hash_combine produces too many collisions
* Mon Apr 12 2021 Anssi Reponen <[email protected]> - 21.4.12-1.fmi
- Added functions for demheight and covertype, needed by timeseries area-query (BRAINSTORM-2040)
* Thu Feb 18 2021 Anssi Reponen <[email protected]> - 21.2.18-1.fmi
- New parseLocations-function added to get locations for FMISs,WMOs,LPNNs (BRAINSTORM-1848)
* Mon Jan 25 2021 Anssi Reponen <[email protected]> - 21.1.25-1.fmi
- Added function to change tagged locations in LocationOptions class
* Thu Jan 14 2021 Mika Heiskanen <[email protected]> - 21.1.14-1.fmi
- Repackaged smartmet to resolve debuginfo issues
* Tue Jan 5 2021 Mika Heiskanen <[email protected]> - 21.1.5-1.fmi
- Upgrade to fmt 7.1.3
* Mon Dec 28 2020 Mika Heiskanen <[email protected]> - 20.12.28-1.fmi
- Prevent libpqxx 7.0 from being installed
* Tue Dec 15 2020 Mika Heiskanen <[email protected]> - 20.12.15-1.fmi
- Upgrade to pgdg12
* Fri Dec 4 2020 Mika Heiskanen <[email protected]> - 20.12.4-1.fmi
- Improved sorting of name search results
* Wed Oct 28 2020 Andris Pavenis <[email protected]> - 20.10.28-1.fmi
- Rebuild due to fmt upgrade
* Tue Oct 6 2020 Mika Heiskanen <[email protected]> - 20.10.6-1.fmi
- Enable sensible relative libconfig include paths
* Wed Sep 23 2020 Mika Heiskanen <[email protected]> - 20.9.23-1.fmi
- Use Fmi::Exception instead of Spine::Exception
* Fri Aug 21 2020 Mika Heiskanen <[email protected]> - 20.8.21-1.fmi
- Upgrade to fmt 6.2
* Fri Jul 31 2020 Mika Heiskanen <[email protected]> - 20.7.31-1.fmi
- Repackaged due to libpqxx upgrade
* Mon Jun 8 2020 Mika Heiskanen <[email protected]> - 20.6.8-1.fmi
- Upgraded libpqxx dependencies
* Wed Apr 22 2020 Mika Heiskanen <[email protected]> - 20.4.20-1.fmi
- Improved gdal30 detection
* Sat Apr 18 2020 Mika Heiskanen <[email protected]> - 20.4.18-1.fmi
- Upgrade to Boost 1.69
* Mon Mar 30 2020 Mika Heiskanen <[email protected]> - 20.3.30-1.fmi
- Repackaged due to NFmiArea ABI changes
* Fri Feb 14 2020 Mika Heiskanen <[email protected]> - 20.2.14-1.fmi
- Upgrade to pgdg12
* Fri Feb 7 2020 Mika Heiskanen <[email protected]> - 20.2.7-1.fmi
- Upgrade to GDAL 3
* Thu Dec 5 2019 Mika Heiskanen <[email protected]> - 19.12.5-1.fmi
- Use -fno-omit-frame-pointer for a better profiling and debugging experience
- Fixed system include to be local Engine.h include
* Thu Nov 14 2019 Anssi Reponen <[email protected]> - 19.11.14-1.fmi
- WKT-related code moved here from timeseries plugin (BRAINSTORM-1720)
- Bugfix for WKT-string parsing (BRAINSTORM-1725)
* Mon Nov 11 2019 Mika Heiskanen <[email protected]> - 19.11.11-2.fmi
- Fixed non-strict mode to be silent if there are no keywords in the database
* Mon Nov 11 2019 Mika Heiskanen <[email protected]> - 19.11.11-1.fmi
- Fixed non-strict mode to allow database hash value calculation to fail
* Fri Oct 25 2019 Mika Heiskanen <[email protected]> - 19.10.25-1.fmi
- Fixed mariadb-embedded dependency to mariadb-libs
* Thu Sep 26 2019 Mika Heiskanen <[email protected]> - 19.9.26-1.fmi
- Added support for ASAN & TSAN builds
- Use atomic counters (TSAN)
* Wed Aug 28 2019 Mika Heiskanen <[email protected]> - 19.8.28-1.fmi
- Added handling of fmisid for Location objects
* Fri Aug 9 2019 Mika Heiskanen <[email protected]> - 19.8.9-1.fmi
- Added 'ascii_autocomplete' setting with default value false
* Fri Mar 22 2019 Mika Heiskanen <[email protected]> - 19.3.22-1.fmi
- Added a lonlat search method for specific feature codes
* Tue Feb 26 2019 Mika Heiskanen <[email protected]> - 19.2.26-1.fmi
- Added suggestDuplicates which will not filter similar names out
* Mon Jan 28 2019 Mika Heiskanen <[email protected]> - 19.1.28-1.fmi
- Added "disable_autocomplete" setting, "mock" is deprecated
- Added "strict" setting with default value true
- Allow the database to be empty in non-strict mode to make it easier to build it from scratch while also testing
* Tue Dec 4 2018 Pertti Kinnia <[email protected]> - 18.12.4-1.fmi
- Repackaged since Spine::Table size changed
* Sat Sep 29 2018 Mika Heiskanen <[email protected]> - 18.9.29-1.fmi
- Upgraded to latest fmt
* Sun Sep 23 2018 Mika Heiskanen <[email protected]> - 18.9.23-1.fmi
- Silenced CodeChecker warnings
* Thu Aug 30 2018 Mika Heiskanen <[email protected]> - 18.8.30-1.fmi
- Silenced CodeChecker warnings
* Sun Aug 26 2018 Mika Heiskanen <[email protected]> - 18.8.26-1.fmi
- Silenced CodeChecker warnings
- Use libfmt for formatting
* Thu Aug 23 2018 Mika Heiskanen <[email protected]> - 18.8.23-1.fmi
- Added priorities.match setting to give extra autocomplete credit to exact matches
- Add extra credit to all exact matches, not just the first one
- Scale autocomplete scores to enable finer sorting based on populations
* Mon Aug 13 2018 Anssi Reponen <[email protected]> - 18.8.13-1.fmi
- Support for 'wkt' parameter added
* Fri Aug 10 2018 Mika Heiskanen <[email protected]> - 18.8.10-1.fmi
- Silenced several CodeChecker warnings
* Wed Jul 25 2018 Mika Heiskanen <[email protected]> - 18.7.25-1.fmi
- Prefer nullptr over NULL
* Wed Jun 20 2018 Mika Heiskanen <[email protected]> - 18.6.20-1.fmi
- Added caching of suggest results, since especially single letter searches are expensive
* Sat Apr 7 2018 Mika Heiskanen <[email protected]> - 18.4.7-1.fmi
- Upgrade to boost 1.66
* Tue Mar 20 2018 Mika Heiskanen <[email protected]> - 18.3.20-1.fmi
- Full repackaging of the server
* Fri Feb 9 2018 Mika Heiskanen <[email protected]> - 18.2.9-1.fmi
- Repackaged since base class SmartMetEngine size changed and TimeZones API changed
* Wed Jan 31 2018 Mika Heiskanen <[email protected]> - 18.1.31-1.fmi
- Read database configuration only once during initialization
* Wed Jan 17 2018 Mika Heiskanen <[email protected]> - 18.1.17-1.fmi
- Permit municipalities table to be empty
* Mon Jan 15 2018 Mika Heiskanen <[email protected]> - 18.1.15-1.fmi
- Updated to postgresql 9.5
* Wed Nov 1 2017 Mika Heiskanen <[email protected]> - 17.11.1-1.fmi
- Rebuilt due to GIS-library API change
* Tue Aug 29 2017 Mika Heiskanen <[email protected]> - 17.8.29-1.fmi
- Fixed overrides to work for all queries and match host name prefix only
* Mon Aug 28 2017 Mika Heiskanen <[email protected]> - 17.8.28-1.fmi
- Upgrade to boost 1.65
* Tue Apr 25 2017 Mika Heiskanen <[email protected]> - 17.4.25-1.fmi
- The state is now included in autocomplete results for USA.
* Wed Mar 15 2017 Mika Heiskanen <[email protected]> - 17.3.15-2.fmi
- Removed dependency on jss::atomic_shared_ptr
* Wed Mar 15 2017 Mika Heiskanen <[email protected]> - 17.3.15-1.fmi
- Recompiled since Spine::Exception changed
* Tue Mar 14 2017 Mika Heiskanen <[email protected]> - 17.3.14-1.fmi
- Switched to use macgyver StringConversion tools
* Fri Feb 3 2017 Mika Heiskanen <[email protected]> - 17.2.3-1.fmi
- Added possibility to set the PostgreSQL port
* Fri Jan 27 2017 Mika Heiskanen <[email protected]> - 17.1.27-1.fmi
- Improved initialization speed
* Tue Jan 24 2017 Mika Heiskanen <[email protected]> - 17.1.24-1.fmi
- Added safety checks against NULL country isocodes and feature codes
* Wed Jan 4 2017 Mika Heiskanen <[email protected]> - 17.1.4-1.fmi
- Updated to use renamed SmartMet base libraries
* Wed Nov 30 2016 Mika Heiskanen <[email protected]> - 16.11.30-1.fmi
- Using test database in sample and test configuration
- Some tests and test results changed
- No installation for configuration
* Tue Nov 29 2016 Mika Heiskanen <[email protected]> - 16.11.29-1.fmi
- Added option database.disable with default value false.
* Tue Nov 1 2016 Mika Heiskanen <[email protected]> - 16.11.1-1.fmi
- Namespace changed. Pimple class renamed to Impl.
- Fixed code to check properly that the DEM and LandCover data are available
* Tue Sep 6 2016 Mika Heiskanen <[email protected]> - 16.9.6-1.fmi
- New exception handler
* Mon Aug 15 2016 Markku Koskela <[email protected]> - 16.8.15-1.fmi
- The shutdown of this engine is a nightmare during the initialization
- phase, because there are no way to to terminate long initialization
- processes. On the other hand, a succeful shutdown requires that also
- the Pimple object can be shutted down even it is not yet visible to
- the rest of the methods during its initialization phase.
* Tue Jun 14 2016 Mika Heiskanen <[email protected]> - 16.6.14-1.fmi
- Full recompile
* Thu Jun 2 2016 Mika Heiskanen <[email protected]> - 16.6.2-1.fmi
- Full recompile
* Wed Jun 1 2016 Mika Heiskanen <[email protected]> - 16.6.1-1.fmi
- Added graceful shutdown
* Wed May 18 2016 Mika Heiskanen <[email protected]> - 16.5.18-1.fmi
- Fixed to use atomic_shared_ptr instead of shared_ptr
* Mon May 16 2016 Mika Heiskanen <[email protected]> - 16.5.16-1.fmi
- Added TimeZones
* Wed May 11 2016 Mika Heiskanen <[email protected]> - 16.5.11-1.fmi
- Added maxdemresolution configuration setting with default value zero
- Added possibility to specify desired maximum DEM resolution when requesting an elevation
- Removed mutexes, using shared_ptr atomics instead for thread safety
* Wed Apr 27 2016 Santeri Oksman <[email protected]> - 16.4.27-1.fmi
- Handle latlon[s]:radius the same way as lonlat[s]:radius.
* Wed Apr 20 2016 Tuomo Lauri <[email protected]> - 16.4.20-1.fmi
- More efficient cache keys both in size and speed
* Mon Jan 25 2016 Mika Heiskanen <[email protected]> - 16.1.25-1.fmi
- Doubled cache size to 10M
* Sat Jan 23 2016 Mika Heiskanen <[email protected]> - 16.1.23-1.fmi
- Fmi::TimeZoneFactory API changed
* Mon Jan 18 2016 Mika Heiskanen <[email protected]> - 16.1.18-1.fmi
- newbase API changed, full recompile
* Mon Dec 21 2015 Tuomo Lauri <[email protected]> - 15.12.21-1.fmi
- Increased cache size to combat request spikes
* Mon Oct 26 2015 Mika Heiskanen <[email protected]> - 15.10.26-1.fmi
- Added proper debuginfo packaging
* Mon Oct 5 2015 Mika Heiskanen <[email protected]> - 15.10.5-1.fmi
- Doubled cache size from 500k to 1M
* Mon Sep 21 2015 Mika Heiskanen <[email protected]> - 15.9.21-1.fmi
- Increased the cache size from 100k to 500k, the former is not sufficient due to geolocation.
* Mon Aug 24 2015 Mika Heiskanen <[email protected]> - 15.8.24-1.fmi
- Recompiled due to Convenience.h API changes
* Tue Aug 18 2015 Mika Heiskanen <[email protected]> - 15.8.18-1.fmi
- Recompile forced by brainstorm API changes
* Mon Aug 17 2015 Mika Heiskanen <[email protected]> - 15.8.17-1.fmi
- Use -fno-omit-frame-pointer to improve perf use
* Fri Aug 14 2015 Mika Heiskanen <[email protected]> - 15.8.14-1.fmi
- Read dem and landcover from the database, use raster data only if values are NULL
- Sort country translations like normal translations to avoid results like Kingdom of Sweden
- Avoid boost::lexical_cast, Fmi::number_cast and std::ostringstream for speed
* Thu Aug 6 2015 Tuomo Lauri <[email protected]> - 15.8.4-1.fmi
- Moved TaggedLocation to Spine
* Thu Jul 30 2015 Mika Heiskanen <[email protected]> - 15.7.30-2.fmi
- The hash value of fminames now depends on the existing last_modified columns
* Thu Jul 30 2015 Mika Heiskanen <[email protected]> - 15.7.30-1.fmi
- Added a method for retrieving the hash_value for the state of the fminames database
* Thu Jul 23 2015 Mika Heiskanen <[email protected]> - 15.7.23-1.fmi
- Improved initialization speed by optimizing the SQL
* Wed Jul 1 2015 Mika Heiskanen <[email protected]> - 15.7.1-1.fmi
- Safer handling of NULL fields (timezone, population) during initialization
* Fri Jun 26 2015 Mika Heiskanen <[email protected]> - 15.6.26-1.fmi
- Recompiled due to spine changes
* Tue Jun 23 2015 Mika Heiskanen <[email protected]> - 15.6.23-1.fmi
- Forced name search and autocomplete searches to be sorted similarly
- Use similar area selection logic for name and autocomplete searches (municipality vs country)
* Mon May 25 2015 Tuomo Lauri <[email protected]> - 15.5.25-1.fmi
- Fixed DEM and land cover type for coordinate searches with no named location nearby
* Tue May 12 2015 Mika Heiskanen <[email protected]> - 15.5.12-1.fmi
- Fixed race conditions in dem, landcover and sort methods
* Mon May 4 2015 Mika Heiskanen <[email protected]> - 15.5.4-1.fmi
- Fixed DEM value extraction for coordinate searches
* Wed Apr 29 2015 Mika Heiskanen <[email protected]> - 15.4.29-1.fmi
- Added global land cover data
- GeoEngine now handles request location option parsing
* Thu Apr 9 2015 Mika Heiskanen <[email protected]> - 15.4.9-1.fmi
- newbase API changed
* Wed Apr 8 2015 Mika Heiskanen <[email protected]> - 15.4.8-1.fmi
- Dynamic linking of smartmet libraries into use
- Enabled a mock-mode which skips the heavy initialization phase
* Mon Mar 23 2015 Tuomo Lauri <[email protected]> - 15.3.23-2.fmi
- Updated smartmet-gis dependency
* Mon Mar 23 2015 Tuomo Lauri <[email protected]> - 15.3.23-1.fmi
- Added DEM elevations
* Mon Jan 26 2015 Mika Heiskanen <[email protected]> - 15.1.26-2.fmi
- Fixed translations for iso2 countries with multiple political entities (Finland + Åland)
* Mon Jan 26 2015 Mika Heiskanen <[email protected]> - 15.1.26-1.fmi
- Added PCLF and PCLD as valid country types
* Wed Dec 17 2014 Mika Heiskanen <[email protected]> - 14.12.17-1.fmi
- Recompiled due to spine API changes
* Thu Nov 13 2014 Mika Heiskanen <[email protected]> - 14.11.13-1.fmi
- Recompiled due to newbase API changes
* Tue Sep 30 2014 Mika Heiskanen <[email protected]> - 14.9.30-1.fmi
- Fixed sorting to use iso2 instead of country since the latter is not always resolved yet
* Fri Sep 26 2014 Mika Heiskanen <[email protected]> - 14.9.26-1.fmi
- geonames changed Finnish municipalities back to ADM3 class
* Wed Sep 10 2014 Mika Heiskanen <[email protected]> - 14.9.10-1.fmi
- Improved the cache key for keyword searches for improved admin plugin reports
* Mon Sep 8 2014 Mika Heiskanen <[email protected]> - 14.9.8-1.fmi
- Fixed priorities of ADM1 and ADM2 locations
* Fri Sep 5 2014 Mika Heiskanen <[email protected]> - 14.9.5-1.fmi
- Made the API const correct
* Wed Aug 27 2014 Mika Heiskanen <[email protected]> - 14.8.27-1.fmi
- Use ADM2 for Finnish municipalties, geonames.org changed the classifications
* Mon Jun 30 2014 Mika Heiskanen <[email protected]> - 14.6.30-1.fmi
- Recompiled with latest spine API
* Wed May 14 2014 Mika Heiskanen <[email protected]> - 14.5.14-1.fmi
- Use shared macgyver and locus libraries
* Tue May 6 2014 Mika Heiskanen <[email protected]> - 14.5.6-2.fmi
- Use postgresql 9.0 until 9.3 installation is complete
* Tue May 6 2014 Mika Heiskanen <[email protected]> - 14.5.6-1.fmi
- Added database.database configuration variable to a new recatored release
* Mon May 5 2014 Mika Heiskanen <[email protected]> - 14.5.5-1.fmi
- Added database.database configuration variable
* Fri May 2 2014 Mika Heiskanen <[email protected]> - 14.5.2-1.fmi
- Recompiled with locus library with much faster latlon searches
* Mon Apr 28 2014 Mika Heiskanen <[email protected]> - 14.4.28-1.fmi
- Full recompile due to large changes in spine etc APIs
* Thu Mar 20 2014 Mikko Visa <[email protected]> - 14.3.20-1.fmi
- Open data 2014-04-01 release
* Mon Feb 3 2014 Mikko Visa <[email protected]> - 14.2.3-2.fmi
- Open data 2014-02-03 release
- Allow all alternate languages when searching for names, crashes no longer occur
* Thu Jan 9 2014 Mika Heiskanen <[email protected]> - 14.1.9-1.fmi
- Recompiled with new Locus which fixes a problem in limiting keyword sizes
* Wed Jan 8 2014 Mika Heiskanen <[email protected]> - 14.1.8-1.fmi
- Fixed suggest to find name,area patterns properly
* Tue Dec 10 2013 Tuomo Lauri <[email protected]> - 13.12.10-1.fmi
- Fixed geoengine reloading functionality
* Mon Dec 2 2013 Mika Heiskanen <[email protected]> - 13.12.2-1.fmi
- Recompiled with latest Locus to disable historic names as translations
* Fri Nov 29 2013 Mika Heiskanen <[email protected]> - 13.11.29-2.fmi
- Ternary trees now include the geoid as the part of the area to make sure all distinct features are stored
* Fri Nov 29 2013 Mika Heiskanen <[email protected]> - 13.11.29-1.fmi
- Score PPLA2 and PPLA3 equally
- Removed open data configuration file as unnecessary
* Wed Nov 27 2013 Mika Heiskanen <[email protected]> - 13.11.27-4.fmi
- Do not use historic alternate names at all
* Wed Nov 27 2013 Mika Heiskanen <[email protected]> - 13.11.27-3.fmi
- Improved support in locus for ignoring locations with NULL timezone
* Wed Nov 27 2013 Mika Heiskanen <[email protected]> - 13.11.27-2.fmi
- Locus now ignores locations with NULL timezone
* Wed Nov 27 2013 Mika Heiskanen <[email protected]> - 13.11.27-1.fmi
- Order historic alternate names last in preference
- Prefer PPLA* in scoring over ADM3
* Tue Nov 26 2013 Mika Heiskanen <[email protected]> - 13.11.26-1.fmi
- Recompiled with fixed locus library with corrected name comparisons (lower case)
* Mon Nov 25 2013 Mika Heiskanen <[email protected]> - 13.11.25-1.fmi
- Added autocompletion on word boundaries
- Added possibility to force removal of underscores from geonames names
* Thu Nov 14 2013 Mika Heiskanen <[email protected]> - 13.11.14-1.fmi
- Started using PostgreSQL database
- Added a separate configuration file for open data machines
* Tue Nov 5 2013 Mika Heiskanen <[email protected]> - 13.11.5-1.fmi
- Major release
* Wed Oct 9 2013 Tuomo Lauri <[email protected]> - 13.10.9-1.fmi
- Now conforming with the new Reactor initialization API
* Mon Sep 23 2013 Tuomo Lauri <[email protected]> - 13.9.23-1.fmi
- Now uses the new NearTree API
* Fri Sep 6 2013 Tuomo Lauri <[email protected]> - 13.9.6-1.fmi
- Recompiled due Spine changes
* Fri Aug 30 2013 Tuomo Lauri <[email protected]> - 13.8.30-1.fmi
- Rebuilt against the non-caching fminames
* Tue Jul 23 2013 Mika Heiskanen <[email protected]> - 13.7.23-1.fmi
- Recompiled due to thread safety fixes in newbase & macgyver
* Wed Jul 3 2013 mheiskan <[email protected]> - 13.7.3-1.fmi
- Update to boost 1.54
- Fixed searches with municipality names in other languages to work
* Thu Jun 27 2013 mheiskan <[email protected]> - 13.6.27-3.fmi
- coordinate searches are now cached inside fminames
* Thu Jun 27 2013 mheiskan <[email protected]> - 13.6.27-2.fmi
- geoengine reload now clears fminames internal caches too
* Thu Jun 27 2013 mheiskan <[email protected]> - 13.6.27-1.fmi
- Bigger alternate name caches via new fminames library
* Wed Jun 26 2013 mheiskan <[email protected]> - 13.6.26-1.fmi
- Recompiled with new fminames which caches intermediate results
* Mon Jun 3 2013 lauri <[email protected]> - 13.6.3-1.fmi
- Rebuilt against the new Spine
* Fri Apr 26 2013 mheiskan <[email protected]> - 13.4.26-1.fmi
- Recompiled with latest fminames to get area comparisons to be case insensitive
* Mon Apr 22 2013 mheiskan <[email protected]> - 13.4.22-1.fmi
- Brainstorm API changed
* Fri Apr 12 2013 lauri <[email protected]> - 13.4.12-1.fmi
- Build against the new Spine
* Tue Mar 26 2013 mheiskan <[email protected]> - 13.3.26-1.fmi
- Improved error messages from geoengine reload operation
* Tue Mar 19 2013 mheiskan <[email protected]> - 13.3.19-1.fmi
- Improved error handling during the reload operation
* Thu Mar 7 2013 mheiskan <[email protected]> - 13.3.7-1.fmi
- Database moves to mysql.fmi.fi
* Tue Feb 26 2013 oksman <[email protected]> - 13.2.26-1.fmi
- Rebuild for Into machines.
* Fri Feb 15 2013 mheiskan <[email protected]> - 13.2.15-1.fmi
- Fixed alternate geonames to be sorted in descending order of name length
* Thu Feb 14 2013 mheiskan <[email protected]> - 13.2.14-1.fmi
- Improved choices for alternate geonames (preferred names first, short names first)
* Wed Feb 6 2013 lauri <[email protected]> - 13.2.6-1.fmi
- Built against new Spine and Server
* Tue Oct 16 2012 lauri <[email protected]> - 12.10.16-1.fmi
* Tue Oct 16 2012 lauri <[email protected]> - 12.10.16-1.el6.fmi
- Moved GeoEngine cache reporting to Ilmanet Brainstorm plugin
* Thu Oct 11 2012 lauri <[email protected]> - 12.10.11-1.el6.fmi
- Uses now new cache content reporting
* Tue Oct 9 2012 lauri <[email protected]> - 12.10.9-1.el6.fmi
- Switched to use cache (LRU policy) from MacGyver
* Thu Aug 30 2012 mheiskan <[email protected]> - 12.8.30-1.el6.fmi
- Fixed autocomplete to return exact match first
- Fixed autocomplete to use proper locale for sorting the results
* Tue Aug 28 2012 lauri <[email protected]> - 12.8.28-1.el6.fmi
- Better definition of uniqueness for LocationPtr* - type
* Thu Aug 9 2012 mheiskan <[email protected]> - 12.8.9-1.el6.fmi
- Sputnik API update
* Tue Aug 7 2012 lauri <[email protected]> - 12.8.7-2.el6.fmi
- Added support for 'country' parameter
* Tue Aug 7 2012 mheiskan <[email protected]> - 12.8.7-1.el6.fmi
- Linked with latest fminames library
* Mon Aug 6 2012 mheiskan <[email protected]> - 12.8.6-1.el6.fmi
- Optimized FetchByKeyword
* Fri Aug 3 2012 mheiskan <[email protected]> - 12.8.3-1.el6.fmi
- Refactored Pimple to be more thread safe in the construction phase
* Tue Jul 31 2012 mheiskan <[email protected]> - 12.7.31-2.el6.fmi
- Fixed race condition issues
* Tue Jul 31 2012 mheiskan <[email protected]> - 12.7.31-1.el6.fmi
- Fixed race condition issues
* Wed Jul 25 2012 mheiskan <[email protected]> - 12.7.26-2.el6.fmi
- Fixed keyword search counting
* Wed Jul 25 2012 mheiskan <[email protected]> - 12.7.26-1.el6.fmi
- Improved status report
- Added cache cleaning
* Tue Jul 24 2012 mheiskan <[email protected]> - 12.7.25-2.el6.fmi
- Added geoid to cache status printout
* Tue Jul 24 2012 mheiskan <[email protected]> - 12.7.25-1.el6.fmi
- Added a write lock to protect the caches when a reload is requested
* Mon Jul 23 2012 mheiskan <[email protected]> - 12.7.23-1.el6.fmi
- Added a status query
* Thu Jul 19 2012 mheiskan <[email protected]> - 12.7.19-1.el6.fmi
- Added a reload method
* Tue Jul 10 2012 mheiskan <[email protected]> - 12.7.10-1.el6.fmi
- Recompiled since Table changed
* Mon Jul 9 2012 mheiskan <[email protected]> - 12.7.9-1.el6.fmi
- Added scores for ADM3 features
* Thu Jul 5 2012 mheiskan <[email protected]> - 12.7.5-1.el6.fmi
- Migrated to boost 1.50
- Fixed suggest to use Boost.Locale collation with the last 0-byte removed since std::string cannot handle it
* Tue Jul 3 2012 mheiskan <[email protected]> - 12.7.3-1.el6.fmi
- Server API changed
- Added ADM3 to default features in fminames
* Thu May 31 2012 mheiskan <[email protected]> - 12.5.31-1.el6.fmi
- Using Boost.Locale collator classes to get Istanbul to behave right in autocomplete
* Wed Apr 4 2012 mheiskan <[email protected]> - 12.4.4-1.el6.fmi
- common lib changed
* Mon Apr 2 2012 mheiskan <[email protected]> - 12.4.2-1.el6.fmi
- macgyver change forced recompile
* Sat Mar 31 2012 mheiskan <[email protected]> - 12.3.31-1.el5.fmi
- Upgrade to boost 1.49
* Wed Jan 18 2012 mheiskan <[email protected]> - 12.1.18-1.el5.fmi
- Added caching of latlon queries
* Tue Dec 27 2011 mheiskan <[email protected]> - 11.12.27-3.el5.fmi
- Bug fix to common Table class
* Tue Dec 27 2011 mheiskan <[email protected]> - 11.12.27-1.el5.fmi
- fminames recompiled
* Thu Dec 22 2011 mheiskan <[email protected]> - 11.12.22-2.el6.fmi
- Added a cache for keyword searches
* Thu Dec 22 2011 mheiskan <[email protected]> - 11.12.22-1.el6.fmi
- Compiled with latest fminames library which should speed up keywords searches
* Wed Dec 21 2011 mheiskan <[email protected]> - 11.12.21-1.el6.fmi
- RHEL6 release
* Tue Oct 4 2011 mheiskan <[email protected]> - 11.10.4-1.el5.fmi
- Added caching of geoid queries
* Tue Aug 16 2011 mheiskan <[email protected]> - 11.8.16-1.el5.fmi
- Upgrade to boost 1.47
* Mon Aug 8 2011 mheiskan <[email protected]> - 11.8.2-1.el5.fmi
- Alternate geonames preferred field is now obeyed
* Wed Jul 27 2011 mheiskan <[email protected]> - 11.7.27-1.el5.fmi
- Made all mysql queries high priority ones
* Tue Mar 1 2011 mheiskan <[email protected]> - 11.3.1-1.el5.fmi
- Fixed a memory leak which caused crashes when unknown geoids were searched in the geoengine
* Mon Feb 14 2011 mheiskan <[email protected]> - 11.2.14-1.el5.fmi
- Thread safety fixes related to mysql
* Tue Jan 18 2011 mheiskan <[email protected]> - 11.1.18-1.el5.fmi
- Moved Location to common
* Wed Dec 15 2010 mheiskan <[email protected]> - 10.12.15-1.el5.fmi
- Fixed municipality translations
* Mon Dec 13 2010 mheiskan <[email protected]> - 10.12.13-1.el5.fmi
- Fixed comma usage in autocomplete
* Wed Dec 1 2010 mheiskan <[email protected]> - 10.12.1-1.el5.fmi
- Autocomplete now sets utf8 on when reading geonames data
* Thu Oct 28 2010 mheiskan <[email protected]> - 10.10.28-1.el5.fmi
- Upgrade to fminames 10.10.25
* Tue Sep 14 2010 mheiskan <[email protected]> - 10.9.14-1.el5.fmi
- Upgrade to boost 1.44
* Mon Aug 9 2010 mheiskan <[email protected]> - 10.8.9-2.el5.fmi
- Added nameCacheStatus method
* Mon Aug 9 2010 mheiskan <[email protected]> - 10.8.9-1.el5.fmi
- Merged with fminames engine
* Tue Aug 3 2010 mheiskan <[email protected]> - 10.8.3-1.el5.fmi
- Refactored API
* Mon Jul 5 2010 mheiskan <[email protected]> - 10.7.5-1.el5.fmi
- Recompile brainstorm due to newbase hessaa bugfix
* Tue May 18 2010 mheiskan <[email protected]> - 10.5.18-1.el5.fmi
- Upgrade to RHEL 5.5
* Fri Jan 15 2010 mheiskan <[email protected]> - 10.1.15-1.el5.fmi
- Upgrade to boost 1.41
* Wed Dec 2 2009 mheiskan <[email protected]> - 9.12.2-1.el5.fmi
- Linked statically with new fminames library
* Tue Jul 14 2009 mheiskan <[email protected]> - 9.7.14-1.el5.fmi
- Upgrade to boost 1.39
* Wed Mar 25 2009 mheiskan <[email protected]> - 9.3.25-1.el5.fmi
- Full Brainstorm recompile release
* Wed Jan 07 2009 westerba <[email protected]> - 9.1.7-1.el5.fmi
- New release with updated fminames library
* Mon Dec 29 2008 westerba <[email protected]> - 8.12.10-1.el5.fmi
- New release with updated fminames library (bug fixes)
* Wed Dec 10 2008 mheiskan <[email protected]> - 8.12.10-1.el5.fmi
- New release with updated fminames library
* Wed Nov 19 2008 mheiskan <[email protected]> - 8.11.19-1.el5.fmi
- New brainstorm release
* Thu Oct 23 2008 mheiskan <[email protected]> - 8.10.23-1.el5.fmi
- Linked with updated macgyver library
* Thu Oct 9 2008 westerba <[email protected]> - 8.10.9-1.el5.fmi
- Packaged operational and development files into separate packages
* Mon Oct 6 2008 mheiskan <[email protected]> - 8.10.6-1.el5.fmi
- Initial build