forked from opnsense/ports
-
Notifications
You must be signed in to change notification settings - Fork 0
/
UPDATING
16830 lines (12410 loc) · 563 KB
/
UPDATING
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
This file documents some of the problems you may encounter when upgrading
your ports. We try our best to minimize these disruptions, but sometimes
they are unavoidable.
You should get into the habit of checking this file for changes each time
you update your ports collection, before attempting any port upgrades.
20190314:
AFFECTS: users of mail/rspamd, mail/rspamd-devel
AUTHOR: [email protected]
User and group that rspamd run as are changed from nobody:nobody to
rspamd:rspamd. Unless it is clean install you need to execute following
command.
# chown -R rspamd:rspamd /var/db/rspamd /var/log/rspamd /var/run/rspamd
20190311:
AFFECTS: users of x11/xorg, x11-fonts/mkfontscale, x11-fonts/mkfontdir
AUTHOR: [email protected]
The x11-fonts/mkfontdir port has been removed and the functionality
has been merged into x11-fonts/mkfontscale. This might cause issues
with upgrading. If you get conflicts between mkfontscale and mkfontdir
please remove mkfontdir before upgrading.
To do this, simply run the following:
pkg delete -f mkfontdir
20190311:
AFFECTS: users of www/igal2
AUTHOR: [email protected]
www/igal2 2.2-1 is now built with graphics/ImageMagick6-nox11
and don't install the ImageMagik X11 dependencies anymore.
A build option allows you to restore the previous behaviour.
20190303:
AFFECTS: users of x11-fonts/noto*
AUTHOR: [email protected]
Google Noto Fonts family has been converted to several ports. x11-fonts/noto
is a meta port which includes 1 old port and 5 new ports as follows:
- x11-fonts/noto-basic (was noto-lite): basic fonts set with emoji
- x11-fonts/noto-extra: extra fonts set
- x11-fonts/noto-jp: Japanese fonts set
- x11-fonts/noto-kr: Korean fonts set
- x11-fonts/noto-sc: Simplified Chinese fonts set
- x11-fonts/noto-tc: Traditional Chinese fonts set
20190302:
AFFECTS: users of sysutils/paladin
AUTHOR: Ryan Westlund <[email protected]>
The way paladin parses its config file has changed, please
check the provided sample config.
20190227:
AFFECTS: users of security/softether, security/softether-devel
AUTHOR: [email protected]
These ports' bridge, client, server daemon unintendedly had spit out
chain_certs (certificate chain) directory on libexec directory until
r494024.
If your ${PREFIX}/libexec/softether/chain_certs directory is empty, you
can remove the directory safely. If the directory is not empty, move it
to ${SE_DBDIR} when upgrading softether. Following commands should help:
service softether_(bridge|cleint|server) stop
(portmaster, portupgrade or pkg upgrade)
mv ${PREFIX}/libexec/softether/chain_certs ${SE_DBDIR}/
service softether_(bridge|cleint|server) start
With the default Makefile settings, ${SE_DBDIR} is set to /var/db/softether.
20190224:
AFFECTS: users of security/gnutls
AUTHOR: [email protected]
GnuTLS now looks for its configuration files in PREFIX/etc (/usr/local/etc)
instead of /etc. If the following files exist they have to be moved. On a
default installation these files do not exist.
/etc/gnutls/default-priorities
/etc/gnutls/pkcs11.conf
/etc/tpasswd
/etc/tpasswd.conf
20190215:
AFFECTS: users of net-im/ejabberd
AUTHOR: [email protected]
If you've mod_mam enabled with compress_xml set to true, then you're affected
by bug where the XML namespace, and tag elements get interchanged in the MAM cache
which results in invalid XML, and causing XMPP clients to disconnect. For more details,
please refer to: https://github.com/processone/ejabberd/issues/2744
This upgrade contains the patch that fixes the problem going forward. For fixing already
affected users, you'll need to wipe off the MAM cache for the affected users:
sudo -u ejabberd -H ejabberdctl remove_mam_for_user <user> <server>
20190207:
AFFECTS: users of net-mgmt/mk-livestatus
AUTHOR: [email protected]
The default Nagios version supported by net-mgmt/mk-livestatus changed
from Nagios 3 to Nagios 4 - the respective Nagios package was added to
net-mgmt/mk-livestatus' runtime dependencies.
If you still need support for Nagios 3 you just need to change the
options for net-mgmt/mk-livestatus and compile the port yourself.
20190202:
AFFECTS: users of archivers/urbackup-server
AUTHOR: [email protected]
Some of the port's sources previously included absolute references to /etc/urbackup.
The upgrade now changes these references to ${PREFIX}/etc/urbackup. If you have placed
any configuration files within /etc/urbackup, these should be relocated to
${PREFIX}/etc/urbackup.
20190124:
AFFECTS: users of sysutils/rubygem-fluentd, sysutils/fluent-bit
AUTHOR: [email protected]
The fluentd port has been upgraded from the 0.12 line to 1.3.3. The upgrade
is mostly non-disruptive since there is a backward compatibility with 0.12
plugins and configuration files, but care should be taken about the order of
server upgrades since fluentd 1.x is unable to send it's data to version 0.12
instances. You should carefully read
https://docs.fluentd.org/v1.0/articles/update-from-v0.12 before performing
any upgrade activities.
20190120:
AFFECTS: users of mail/fetchmail
AUTHOR: [email protected]
The fetchmail port no longer offers the X11 option and no longer
depends on Python. The corresponding fetchmailconf Python program has now
been split out into a separate port or package, so that fetchmail itself
will no longer require Python.
Users who wish to use fetchmailconf should install the new fetchmailconf
port or package.
20190119:
AFFECTS: users of german/webalizer2, japanese/webalizer, polish/webalizer2, portuguese/webalizer-pt_BR, portuguese/webalizer-pt_PT, ukrainian/webalizer, www/geolizer, www/webalizer
AUTHOR: [email protected]
The option GEOIP has beeen changed to used the new datebase.
Either copy GeoLite2-Country.mmdb in the working directory,
or set the GeoIPDatabase option to the location of the file.
20190114:
AFFECTS: users of graphics/qgis
AUTHOR: [email protected]
GIS 3.4 LTR, the first long-term release (LTR) of QGIS 3, has landed
in the FreeBSD ports tree. It will also replace the previous 2.18 LTR
in the QGIS package repositories in February 2019 [1].
Beside, the latest Qt4 version 4.8.7 has been EOL since December 2015
and its expiration date on FreeBSD is set to March, 15th 2019.
Because QGIS 2 is based on Qt4 and Python2, it was decided to not create
a legacy port for QGIS 2, after graphics/qgis changed to QGIS 3.
For users moving over from the 2.18 LTR there is a huge list of new
features and impactful changes in this new 3.4 LTR version. Most notably
3.x plugins are incompatible with 2.x plugins, so please review your
plugin usage carefully. Before moving over, if you have not already
done so, take a look at the changelogs from versions 3.0, 3.2, and
3.4 [2][3][4] to understand the full scope of changes in the 3.x release.
[1] https://qgis.org/en/site/getinvolved/development/roadmap.html#release-schedule
[2] http://changelog.qgis.org/en/qgis/version/3.0.0/
[3] http://changelog.qgis.org/en/qgis/version/3.2.0/
[4] http://changelog.qgis.org/en/qgis/version/3.4-LTR/
20190114:
AFFECTS: x11-wm/sway
AUTHOR: [email protected]
swayidle and swaylock split out into x11/swayidle and x11/swaylock.
Check your sway config and install those if required.
20190113:
AFFECTS: users of net/GeoIP
AUTHOR: [email protected]
Maxmind no longer provides geolocation data in the legacy format used
by net/GeoIP. All GEOIP-related OPTIONS have been removed, and all
GeoIP-dependent ports will be removed soon.
Where possible, you must switch to net/libmaxminddb, which uses the
newer (and fully supported) GeoIP 2 format. Unfortunately, this is
not a drop-in replacement. To fetch the GeoIP 2 geolocation databases,
whether the free or paid versions, you must use net/geoipupdate
(pkg install geoipupdate).
The legacy database is no longer available, and we cannot distribute
it by the Maxmind license, so the legacy GeoIP format is essentially
dead.
20190108:
AFFECTS: users of databases/mysql-connector-java
AUTHOR: [email protected]
The databases/mysql-connector-java port has been updated to 8.0.13,
which requires a minimum of Java 1.8, so dropping support for Java
1.6 and 1.7. Users of those versions of Java should substitute the
databases/mysql-connector-java51 port which remains at version
5.1.47
20190103:
AFFECTS: users of multimedia/vlc*
AUTHOR: [email protected]
The multimedia/vlc port has been upgraded to 3.0.5, the latest upstream
release. Subsequently, multimedia/vlc-qt4 and multimedia/vlc3 have been
retired and removed from the ports tree. Users who previously used
multimedia/vlc3 might want to switch to multimedia/vlc with the following
commands:
# pkg install multimedia/vlc
or
# portmaster -o multimedia/vlc multimedia/vlc3
or
# portupgrade -o multimedia/vlc multimedia/vlc3
20190102:
AFFECTS: users of net/serviio
AUTHOR: [email protected]
If you have customized your etc/serviio/profile.xml you need to review
and merge changes from the profile.xml.sample file, else you may not be
able to watch mkv files.
20181228:
AFFECTS: users of devel/trio
AUTHOR: [email protected]
Since trio 1.16-1, the shared lib previously misnamed libtrio.so.2.0.0
is now named libtrio.so.2 and the symlink libtrio.so is created.
20181222:
AFFECTS: users of net/ntopng
AUTHOR: [email protected]
Since ntopng 3.7, for security reasons, the default setting for
the data directory has been changed to "/var/db/ntopng", and the
default user has been changed to "ntopng". This new directory is
created automatically by the port/package with correct permissions.
In order to maintain backward compatibility, if you are already
using "/var/tmp/ntopng" as data directory, ntopng keeps using that
folder, owned by "nobody". This said, using the old defaults is not
recommended and a manual action is required in order to migrate to
the new settings, unless you are already using a custom directory:
# service ntopng stop
# mv /var/tmp/ntopng/* /var/db/ntopng/
# chown -R ntopng:ntopng /var/db/ntopng
# service ntopng start
Please check hte upstream FAQ for reference:
https://www.ntop.org/support/faq/migrate-the-data-directory-in-ntopng/
20181218:
AFFECTS: users of misc/openhab2
AUTHOR: [email protected]
If you upgrade from a previous version, make a backup of
/var/db/openhab2
and run
%%PREFIX%%/libexec/openhab2/runtime/bin/update.freebsd
Config specific info (changes from 2.3.0 to 2.4.0):
Astro Binding: The 'kilometer' and 'miles' channels have been replaced
by a new 'distance' channel
Jeelink Binding: The 'currentWatt' and 'maxWatt' channels have been
replaced with 'currentPower' and 'maxPower' channels
WeatherUnderground Binding: A bridge has been added on top of the
current things, you need to add a bridge
containing your api-key.
ZWave Binding: Major changes have been merged to support features
such as security. All things must be deleted and
re-added. Refer to
https://community.openhab.org/t/zwave-binding-updates/51080
for further information.
Synop Binding is now using UoM. 'wind-speed-ms' and 'wind-speed-knots'
channels have been replaced by a single 'wind-speed'
channel.
Amazonechocontrol Binding: The account thing does not have settings
anymore. You have to login at amazon
once again through the proxy server
http(s)://<YourOpenHAB>/amazonechocontrol
Milight Binding: The various available bulb types do not appear in
the Paper UI Inbox anymore. The correct bulb need
to be added manually. The bulb "zone" is now a
configuration. Bulb Things need to be recreated
to apply this change.
Hue emulation: The item to hue ID mapping is no longer stored in
files, but in the openHAB storage service. You need
to rediscover "devices" in all services that use the
hue emulation (Amazon Echo, Google Home, etc).
20181215:
AFFECTS: users of sysutils/graylog
AUTHOR: [email protected]
The dependent ports for ElasticSearch and MongoDB have both changed,
and upstream changes to the configuration file may require minor
changes to work correctly. Refer to the new sample files installed
alongside the port for reference:
server.conf
log4j.xml
graylog_logging.xml
20181213:
AFFECTS: users of lang/perl5*
AUTHOR: [email protected]
The default Perl version has been switched to Perl 5.28. If you are using
binary packages to upgrade your system, you do not have anything to do, pkg
upgrade will do the right thing. For the other people, follow the
instructions in entry 20161103, it should still be the same.
20181212:
AFFECTS: users of net-im/ejabberd
AUTHOR: [email protected]
There are some new features added in ejabberd 18.12, esp. related to
bookmarks, and XML compression in message archive storage. Please
refer to: https://blog.process-one.net/ejabberd-18-12/
20181211:
AFFECTS: users of news/inn when upgrading to FreeBSD 12
AUTHOR: [email protected]
When upgrading from FreeBSD 11 to 12, a change in the size of the
ino_t type causes a binary incompatibility in the overview database
if the default tradindexed format is used.
After upgrading the inn package, remove the overview/group.index
file and regenerate the history and overview database with
makehistory(8) before starting innd.
# echo '. /usr/local/news/lib/innshellvars && \
rm -f $OVERVIEWDIR/group.index && \
$NEWSBIN/makehistory -O -s `wc -l <$HISTORY`' | \
su -fm news -c '/bin/sh -s'
20181209:
AFFECTS: users of DRM ports other than graphics/drm-kmod
AUTHOR: [email protected]
In order to facilitate future porting efforts and help in supporting multiple
FreeBSD versions, the DRM ports other than drm-kmod (graphics/drm-stable-kmod,
graphics/drm-next-kmod, graphics/drm-devel-kmod) have been renamed to
include the FreeBSD version they are designed for.
drm-stable-kmod is drm-fbsd11.2-kmod
drm-next-kmod is drm-fbsd12.0-kmod
drm-devel-kmod is drm-current-kmod
20181209
AFFECTS: users of devel/geany and devel/geany-plugins
AUTHOR: [email protected]
Geany and its plugins port have been moved to gtk3 and a new gtk2
flavor has been added. The gtk2 flavor has a -gtk2 suffix added to the
package name.
If you want to stay with the gtk2 version you need to use "pkg install"
to install the new gtk2 flavor, pkg will automatically deinstall the
gtk3 flavors.
If using port, to maintain the gtk2 version, you will need to deinstall
geany and its plugins and reinstall specifying the gtk2 flavor.
Note that the following plugins are not available if using the new
gtk3 flavor:
* geany-plugin-debugger
* geany-plugin-devhelp
* geany-plugin-geanypy
* geany-plugin-multiterm
* geany-plugin-scope
20181208:
AFFECTS: users of misc/openhab2
AUTHOR: [email protected]
If you upgrade from a previous version, make a backup of
/var/db/openhab2
and run
%%PREFIX%%/libexec/openhab2/runtime/bin/update.freebsd
Config specific info (changes from 2.2.0 to 2.3.0):
Nest Binding: The 'camera' Thing Type now has channel groups.
Add 'camera#' before the channel ID in the channel UID of
existing camera channels. The 'time_to_target_mins' channel
of the 'thermostat' Thing Type is renamed to 'time_to_target'
Oceanic Binding: The 'softener' Thing Type no longer exists and is replaced
by the 'serial' and 'ethernet' Thing Types
Yamaha Receiver Binding: The configuration parameter names now use lower
camel case convention. Change 'HOST' to 'host',
'PORT' to 'port' etc
20181124:
AFFECTS: users of sysutils/munin-master, sysutils/munin-node, www/owncloud, mail/mailman, net/ntpa
AUTHOR: [email protected]
The newsyslog.conf(5) filename installed by the port has been changed:
OLD: ${PREFIX}/etc/newsyslog.conf.d/${PORTNAME}
NEW: ${PREFIX}/etc/newsyslog.conf.d/${PORTNAME}.conf
Any file found at the old location will be automatically moved to the new
location. This will ensure log rotation will continue to work after change
r340318 to FreeBSD base, where the default newsyslog configuration now only
includes filenames that end with '.conf' and do not begin with '.'.
If you use provisioning/configuration management tools to create or edit this
file, you will need to change their configuration to use the new filename.
20181111
AFFECTS: users of graphics/mesa-libs
AUTHOR: [email protected]
Wayland support has been enabled in ports where it doesn't exclude
X11 support in order to make the binary packages usable with Wayland
compositors. If you get strange build failures re-run "make config"
to pick up the new defaults. If the extra dependencies are not
desired add the following to make.conf:
OPTIONS_UNSET += WAYLAND
20181109
AFFECTS: users of security/ossec-hids-server
AUTHOR: [email protected]
The "ossechids_enable" rc variable has been renamed to "ossec_hids_enable".
If using database output, you need to recreate database using new schema
provided in /usr/local/share/doc/ossec-hids.
20181109
AFFECTS: users of security/ossec-hids-local
AUTHOR: [email protected]
The "ossechids_enable" rc variable has been renamed to "ossec_hids_enable".
If using database output, you need to recreate database using new schema
provided in /usr/local/share/doc/ossec-hids.
20181109
AFFECTS: users of security/ossec-hids-client
AUTHOR: [email protected]
The ossec-hids-client port has been renamed to ossec-hids-agent.
Portmaster users will need to run this command:
portmaster -o security/ossec-hids-agent security/ossec-hids-client
If the switch doesn't happen automatically for you, just delete the
ossec-hids-client package and install ossec-hids-agent.
The "ossechids_enable" rc variable has been renamed to "ossec_hids_enable".
20181104:
AFFECTS: users of sysutils/ansible*
AUTHOR: [email protected]
Default Ansible configuration location changed to LOCALBASE/etc/ansible
instead of a per-flavor directory. If you use system-wide Ansible
configuration, please migrate from a flavored directory to a common
one:
# mv /usr/local/etc/py27-ansible /usr/local/etc/ansible
20181031:
AFFECTS: users of www/node
AUTHOR: [email protected]
The www/node port has been updated to Node.js v11.0.0, the latest
upstream release. A new port, www/node10, has been created for the
v10.x LTS branch. Users wanting to stay on v10.x can replace www/node
with www/node8 with one of the following commands:
# pkg install www/node10
or
# portmaster -o www/node10 www/node
or
# portupgrade -o www/node10 www/node
20181022:
AFFECTS: users of lang/php71
AUTHOR: [email protected]
The default version of PHP has been switched from 7.1 to 7.2.
If you use binary packages you should make a list of php packages
before running 'pkg upgrade':
# pkg info php7\* > ~/installed-php-ports-list
After the upgrade, check with such list if all your php extensions
are still installed, and reinstall them if needed.
If you use mod_php71 you need to deinstall it and install mod_php72.
20181020:
AFFECTS: users of security/libressl
AUTHOR: [email protected]
The port has been updated to the latest stable version 2.8 of LibreSSL.
The shared library versions of the libraries have been bumped.
After upgrading, manually update all packages that depend on any of the
libraries provided by LibreSSL (libssl, libcrypto and libtls) since the
versions of these libraries have changed. Normally, you can obtain the
list of dependent software by running the following command:
# pkg info -r libressl
Then you should rebuild all ports depending on libressl to avoid dangling
shared library dependencies. Poudriere and pkg handle this correctly,
portmaster and portupgrade users can use the following to rebuild all
dependent ports.
Portmaster users:
portmaster -r libressl
Portupgrade users:
portupgrade -fr security/libressl
20181018:
AFFECTS: users of security/hitch
AUTHOR: [email protected]
Hitch has been updated to run as the hitch user/group, instead of the
previous default of nobody/nobody. You should review your hitch
configuration to ensure that everything has been updated to reflect
this change.
20181014:
AFFECTS: users of sysutils/ansible
AUTHOR: [email protected]
Ansible has been updated to 2.7.0. Please follow the porting guide
to update the rulesets:
https://docs.ansible.com/ansible/devel/porting_guides/porting_guide_2.7.html
If you wish to stay with 2.6 version, you can switch
to new sysutils/ansible2.6 port, which tracks stable 2.6 branch:
# pkg set -n ansible:ansible26
20181010:
AFFECTS: users of mail/courier-imap and other courier ports
AUTHOR: [email protected]
Courier-IMAP 5.0.0 added IMAP UTF8 support, and converted maildir
folders' names to Unicode.
Updating an existing system to Courier-IMAP 5.0, and later,
requires a manual one-time conversion of all existing maildirs
using the maildirmake command. See the maildirmake(1) manual page
for more information.
All other courier ports accessing maildirs also need to be updated
at the same time.
20181009:
AFFECTS: users of devel/pecl-xdebug*
AUTHOR: [email protected]
xdebug 2.6.1 (devel/pecl-xdebug) is the new default version and it supports
PHP from 7.0 to 7.2 included.
If you're using PHP 5.6, the previous compatible xdebug version is still
available in devel/pecl-xdebug25
If you're using PHP 7.3, the only compatible xdebug version is available
in devel/pecl-xdebug-devel
20180930:
AFFECTS: users of DRM components
AUTHOR: [email protected]
A metaport, graphics/drm-kmod, was introduced for users of both the LinuxKPI-
based DRM components as well as the legacy ones. It is recommended to use the
metaport from now on, which will select a recommended DRM version based on
the FreeBSD version.
20180924:
AFFECTS: www/libresonic-standalone
AUTHOR: [email protected]
HTTPS support has been removed from the port, as it will be removed upstream:
https://github.com/Libresonic/libresonic/issues/125#issuecomment-256227104
In order to avoid strange behavior for users who are using this feature, the
rc.d script will fail fast if libresonic_ssl="YES". You should remove the
following variables from rc.conf(5): libresonic_ssl libresonic_ssl_keystore
libresonic_ssl_password.
# sed -i '' /libresonic_ssl/d /etc/rc.conf
Users needing SSL are encouraged to use an HTTP reverse-proxy. Example
configurations can be found here:
https://github.com/Libresonic/libresonic/issues/119
20180922:
AFFECTS: users of graphics/ilmbase, graphics/OpenEXR
AUTHOR: [email protected]
The IlmBase package has been updated to 2.3.0.
The OpenEXR package has been renamed to openexr and updated to 2.3.0.
The PORTREVISION of all ports requiring either has been bumped to
ease the reubuilds, and where there were versions in the file names,
these have been removed from the *_DEPENDS lines for easier maintenance.
A full ports or package upgrade should just work.
If you are doing partial updates, be sure to rebuild and reinstall
all packages that require either of OpenEXR or ilmbase.
Normally, these can be listed by running:
# pkg info -q -r OpenEXR ilmbase | sort -u | xargs pkg info -q -o
20180905:
AFFECTS: users of lang/php56
AUTHOR: [email protected]
The default version of PHP has been switched from 5.6 to 7.1.
If you use binary packages you should make a list of php packages
before running 'pkg upgrade':
# pkg info php5\* > ~/installed-php-ports-list
After the upgrade, check with such list if all your php extensions
are still installed, and reinstall them if needed.
If you use mod_php56 you need to deinstall it and install mod_php71.
20180901:
AFFECTS: net/samba48
AUTHOR: [email protected]
Samba ports from now on are not dependent from the databases/ldb* ports,
as the link between Samba and LDB is too tight and each next major Samba
release requires it's own major LDB release. Please, remove installed
version of databases/ldb13 from your system with:
# pkg delete -f databases/ldb13
20180901:
AFFECTS: net-mgmt/librenms
AUTHOR: [email protected]
As of version 1.42, to conform with man hier, logs and rrd files have
relocated outside the WWW directory. When upgrading from < 1.42 to more
recent versions, the following steps are required.
You must update config.php and manually relocate the rrd and log files.
Before upgrading, please stop librenms, update the configuration, and
relocate the files.
If you find graphs are not updating, fping >= 4.0 requires an IPv6
address. Adding an IPv6 address should fix graphing.
Please add these entries to config.php:
$config['installed_from_package'] = true;
$config['log_dir'] = '/var/log/librenms';
$config['rrd_dir'] = '/var/db/librenms/rrd';
To relocate the files:
mkdir /var/log/librenms /var/db/librenms
chown www:ww: /var/log/librenms /var/db/librenms
cd /usr/local/www/librenms
mv rrd /var/db/librenms/
mv logs/librenms.log /var/log/librenms/
rmdir logs
An application key is required. Please follow these steps to generate it:
cd /usr/local/www/librenms
cp -i .env.sample .env
You might need to set your database details in that file.
Then run:
php artisan key:generate
The output should look something like this:
**************************************
* Application In Production! *
**************************************
Do you really wish to run this command? (yes/no) [no]:
> y
Application key [base64:P62La9V........qw=] set successfully.
20180901:
AFFECTS: users of samba46
AUTHOR: [email protected]
The default version of samba has been switched from 4.6 to 4.7.
Upgrade instructions:
For package users having samba46 installed indirectly (as a dependency):
# pkg upgrade
For package users having samba46 installed directly (leaf port):
# pkg upgrade
# pkg install samba47
For ports users:
If you want to keep samba46, add DEFAULT_VERSIONS+= samba=4.6 to make.conf
If you want to upgrade to samba47, remove samba46:
# pkg delete -f samba46
Portmaster users:
# portmaster net/samba47
# portmaster -a
Portupgrade users:
# portinstall net/samba47
# portupgrade -a
20180813:
AFFECTS: net/geoipupdate
AUTHOR: [email protected]
There have been some breaking changes to the GeoIP.conf in version 3.0.0.
Read about the changes at
https://github.com/maxmind/geoipupdate/blob/master/ChangeLog.md
and either edit your GeoIP.conf as needed, or recreate it from
GeoIP.conf.sample.
20180810:
AFFECTS: databases/postgresql??-server
AUTHOR: [email protected]
The PostgreSQL server packages are no longer built with support for the XML
datatype per default. To retain support for the XML datatype you should build
the port and check the XML option in the option dialog. The reason for this
is the bad security reputation of libxml2.
20180806:
AFFECTS: www/tt-rss
AUTHOR: [email protected]
tt-rss now uses pdo_mysql/pgsql for database acccess; a web server reload
will be required if pdo ext. isn't installed.
20180804:
AFFECTS: net-mgmt/zabbix*-server
AUTHOR: [email protected]
The JAVAGW option was removed from the Zabbix Server and an additional slave
port was created, zabbix*-java, it installs only Zabbix Java Gateway files,
this way is possible to deploy a Zabbix Java Gateway without the need to
install Zabbix Server components.
If you are using the JAVAGW option on Zabbix Server, please, install now the
new zabbix*-java port.
20180803
AFFECTS: users of net/openntpd
AUTHOR: [email protected]
The numerical ID of the "_ntp" user had to be moved after 12.0-CURRENT
(revision 336525) took over its value for a user "ntpd" that uses a
different privilege model.
To avoid clashes between the two users, please remove the openntpd
package, delete the old UID with
# pw userdel _ntp
and re-install openntpd.
20180731:
AFFECTS: users of audio/sndio
AUTHOR: [email protected]
sndiod(8) will now use the default audio device /dev/dsp instead
of /dev/dsp0 if no device was specified.
The location of ~/.aucat_cookie has moved to ~/.sndio/cookie. If
you share audio devices via sndiod(8) on the network or between
local users, please migrate it manually to the new location to
guarantee a smooth upgrade.
20180731:
AFFECTS: users of x11/xorg and all ports with USE_XORG=*proto
AUTHOR: [email protected]
The xorg *proto packages have all been merged into one package,
x11/xorgproto. This might cause issues with upgrading. If you
get conflicts between xorgproto and old *proto packages, please
remove the old package and install xorgproto again.
In order to remove all orphaned ports, including all *proto port,
the following can be used after the ports tree has been updated:
pkg version -l \? | cut -f 1 -w | grep -v compat | xargs pkg delete -fy
20180728:
AFFECTS: users who upgrade from security/kc to security/kc24
AUTHOR: [email protected]
The ondisk format changes from kc 2.3 to kc 2.4, so please
read the kc24 pkg-message file before the upgrade. It describes
how to create a backup, the xml dump and how to import the
xml dump afterwards.
20180725:
AFFECTS: users of textproc/ibus-typing-booster
AUTHOR: [email protected]
Due to a migration from IBusConfig to GSettings, the old settings are
unfortunately lost, so one has to open the setup tool and recreate ones
favourite settings.
20180714:
AFFECTS: users of dns/dnsdist
AUTHOR: [email protected]
After discussing with several users, we noticed that quite a lot of them
were not aware that enabling the dnsdist's console without a key, even
restricted to the local host, could be a security issue and allow privilege
escalation by allowing an unprivileged user to connect to the console and
execute Lua code as the dnsdist user. We therefore decided to refuse any
connection to the console until a key has been set, so please check that
you do set a key before upgrading if you use the console.
For further details read:
https://blog.powerdns.com/2018/07/10/dnsdist-1-3-2-released/
20180704:
AFFECTS: users of www/gitlab
AUTHOR: [email protected]
The gitlab port uses the package from gitlab.org instead of github.org.
For this the port was renamed from gitlab to gitlab-ce.
Please follow the instructions very carefully to not lose your data!
Not only the package was renamed, also the directory name changed.
You can find the current instruction here:
https://gitlab.fechner.net/mfechner/Gitlab-docu/blob/master/update/10.8-11.0-freebsd.md
Please note the update was only tested for an update from 10.8.5 to 11.0.2.
If your version of gitlab was released before 2014-03-13 you cannot update
to this version. You need to make an intermediate update to an earlier
version before.
20180701:
AFFECTS: users of devel/bats
AUTHOR: [email protected]
The devel/bats port has been renamed to devel/bats-core to match the
new upstream project.
20180630:
AFFECTS: users of net-im/ejabberd
AUTHOR: [email protected]
In version 18.06, upstream has removed support for IRC transport.
20180625:
AFFECTS: users of PHP based applications like drush
AUTHOR: [email protected]
Flavors are being added to PHP applications. If you use PHP 5.6 you need:
# pkg set -n drush:drush-php56
For more details see 20180611.
20180612:
AFFECTS: users of the nox flavor of editors/emacs-devel
AUTHOR: [email protected]
The package name for the nox flavor of editors/emacs-devel changed from
emacs-devel_nox to emacs-devel-nox. To install the new package, run
# pkg install emacs-devel-nox
pkg should remove the old and install the new package.
20180612:
AFFECTS: users of packages that depend on Emacs
AUTHOR: [email protected]
With the release of Emacs version 26.1, the major version of editors/emacs
changed from 25 to 26, so the names of packages that depend on Emacs have also
changed. For example, pdf-tools-emacs25-0.80.79_1 is now called
pdf-tools-emacs26-0.80.79_1. The name change means simply running `pkg
upgrade` will not upgrade foo-emacs25-x to foo-emacs26-x.
To list the packages to upgrade, use
# pkg info \*emacs25\*
then install the new version for each with
# pkg install foo-emacs26
pkg should remove the old and install the new packages.
20180611:
AFFECTS: users of PHP based applications
AUTHOR: [email protected]
Flavors are being added to PHP applications. When a port is flavorized, pkg
needs to be told about the name change, for example, if PHP 5.6 is the one
you need:
# pkg set -n squirrelmail:squirrelmail-php56
Most port will have packages for all PHP versions present in the ports tree,
but some may not be compatible with a specific version.
To get the available flavors, pkg rquery can be used:
# pkg rquery %n mail/squirrelmail
squirrelmail-php56
squirrelmail-php70
squirrelmail-php71
squirrelmail-php72
20180602:
AFFECTS: users of net/frr
AUTHOR: [email protected]
Due to regression detected in FRR version 4.0, port was renamed to frr4
to prepare re-introduction of frr3 port version.
To rename the installed package to match the new naming scheme, run:
# pkg set -n frr:frr4
20180529:
AFFECTS: users of textproc/ibus-typing-booster
AUTHOR: [email protected]
Attention, this release merges all engines into one. Therefore, the
engine names had to change. The old engine names like "German - DE
(Typing Booster)", "Hindi - HI (Typing Booster)" don't exist anymore!
If one has entries for them in the Gnome Control Center or in
ibus-setup, one needs to remove these old entries and add the new
engine name "Other (Typing Booster)".
20180518:
AFFECTS: users of sysutils/ansible*
AUTHOR: [email protected]
Ansible ports are now flavored. Package names for Ansible changed
to include python version. Poudriere and package users don't need
to do anything.
To rename an installed package to match the new naming scheme,
for example, for ansible24, run:
# pkg set -n ansible24:py27-ansible24
20180514:
AFFECTS: users of www/gitlab
AUTHOR: [email protected]
Gitlab-pages support was removed as new version does not compile.
If you require gitlab-pages do not update to version 10.7.3 till it is
fixed upstream.
You can find the bug report here:
https://gitlab.com/gitlab-org/gitlab-pages/issues/143
20180513:
AFFECTS: users of net/xrdp
AUTHOR: [email protected]
net/xrdp has been updated from 0.6.2 to 0.9.6. There are significant
changes between these versions. You should consider backing up your
configuration files such as xrdp.ini and sesman.ini, and then migrate
configuration files by hand.
Regarding km-*.ini, don't use the old files. They can be safely replaced
with new ones.
20180507:
AFFECTS: users of math/suitesparse who build it locally
AUTHOR: [email protected]