forked from freebsd/freebsd-ports
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUPDATING
16006 lines (11787 loc) · 533 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.
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]
The suitesparse needs to be uninstalled before math/suitesparse can be
correctly built. This is true for the version 5.2.0 and prior versions.
20180505:
AFFECTS: users of www/gitea
AUTHOR: [email protected]
The www/gitea port no longer requires shell/bash. If you want to
stop using bash and deinstall the package, make sure to set the
configuration in etc/gitea/conf/app.ini, section [repository],
SCRIPT_TYPE to "sh". See app.ini.sample for an example.
20180501:
AFFECTS: users of www/node
AUTHOR: [email protected]
The www/node port has been udpated to Node.js v10.0.0, the latest
upstream release. This is a major release, including many significant
changes. Users are encouraged to read the release announcements before
upgrading:
https://nodejs.org/en/blog/release/v10.0.0/
In particular, Node.js now depends on OpenSSL 1.1.0h, so the
BUNDLED_SSL option is enabled by default. Users can disable this
option when using security/openssl-devel as their default SSL library.
20180430:
AFFECTS: users of news/nntp
AUTHOR: [email protected]
The option INETD was removed. If you used inetd, please change the path
in /etc/inetd.conf from /usr/local/sbin/nntpd to /usr/local/libexec/nntpd.
20180428:
AFFECTS: users of security/libressl
AUTHOR: [email protected]
The port has been updated to the latest stable version 2.7 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
20180427:
AFFECTS: users of sysutils/zrepl
AUTHOR: [email protected]
The zrepl update to 0.0.3 includes the following breaking changes:
- Snapshots are automatically bookmarked and pruning of bookmarks must
be configured by adding the keep_bookmarks parameter to the prune
policy section of the zrepl configuration file (source side only).
Be sure to understand the meaning bookmarks have for maximum
allowable replication downtime.
- The ssh+stdinserver transport protocol has changed, requiring zrepl
to be updates on both the sending and receiving side, and the daemon
restarted on both sides.
- The first outlet in the global.logging section of the configuration
file is now used for logging meta-errors (e.g. problems encountered
when writing to other logging outlets).
20180425:
AFFECTS: users of databases/pecl-redis
AUTHOR: [email protected]
pecl-redis 4.0.0 breaks backwards compatibility, users
not aware if you are using the changed functionality or not
should swap to databases/pecl-redis3
20180417:
AFFECTS: users of dns/dnscrypt-proxy2
AUTHOR: [email protected]
DNSCrypt-Proxy 2 has been updated to 2.0.10 and the configuration file
has changed from ${PREFIX}/etc/dnscrypt-proxy.toml to
${PREFIX}/etc/dnscrypt-proxy/dnscrypt-proxy.toml.
20180416:
AFFECTS: users of mail/postgrey
AUTHOR: [email protected]
If you use any of the optional make.conf variables to specify the
postgrey user, group, db dir, or run dir when building the port, you will
need to change the prefix from PG_ to POSTGREY_*. The variables were
renamed to solve a namespace collision with the PostgreSQL ports.
20180412:
AFFECTS: users of devel/php-composer
AUTHOT: [email protected]
Flavors have been added to the composer port with the update to
1.6.3. Due to the change in PKGNAME pkg(and other tools) will not
notice the update. It is required to tell pkg about the name
change, for example:
# pkg set -n php-composer:php56-composer
20180410:
AFFECTS: users of KDE SC4
AUTHOR: [email protected]
Most of KDE Applications 17.12.3 have now landed in the ports tree.
There are still some missing pieces, that will follow soon.
As mentioned in the commit messages, users of KDE SC4 should stick with the
<foo>-kde4 named package.
As the MOVED entries for ports like databases/akonadi-kde4 have been removed
in the process of updating (as there now is again a databases/akonad), there
might be issues for people that update from a too old installed package list
with portmaster.
These should be fixable by issuing a command à la
# pkg set --change-origin databases/akonadi:databases/akonadi-kde4 akonadi
20180409:
AFFECTS: users of net-im/matterircd
AUTHOR: [email protected]
Matterircd has been updated to 0.17.0 and mattermost configuration settings
need to be migrated to [mattermost] section. See matterircd.toml.sample.
20180404:
AFFECTS: users of www/nextcloud
AUTHOR: [email protected]
With the 13.0.1 update the path for Apps bundled with the package has
changed from "apps" to "apps-pkg". You must add an entry to the
"apps_paths" array in config/config.php of your nextcloud installation,
a patch for the default installation can be applied with:
# cd /usr/local/www/nextcloud
# su -m www -c "php ./occ config:import < /usr/local/share/nextcloud/fix-apps_paths.json"
20180401:
AFFECTS: users of mail/dovecot and mail/dovecot-pigeonhole
AUTHOR: [email protected]
Dovecot has been upgraded to 2.3.1, and pigeonhole to 0.5.1. Most
existing dovecot installations MUST be modified for 2.3, but for
most users the modifications are simple.
Modify your Dovecot conf.d/ files before spinning up 2.3.1. The
upgrading instructions are detailed here:
https://wiki2.dovecot.org/Upgrading/2.3
20180330:
AFFECTS: users of lang/perl5*
AUTHOR: [email protected]
The default Perl version has been switched to Perl 5.26. 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.
20180325:
AFFECTS: users of net/samba48
AUTHOR: [email protected]
New Samba 4.8 upgrades the relevant database files in the way, that doesn't
allow easy fallback to the previous versions of Samba. So, before upgrading
to the new version make a backup of the /var/db/samba4/ directory.
Full list of changes, new features and upgrade procedure is available at:
https://www.samba.org/samba/history/samba-4.8.0.html
Please, read it carefully before upgrading!.
20180320:
AFFECTS: users of x11/sterm
AUTHOR: [email protected]
The user-defined options in config.h have changed. You should
compare your config.h file with the default one and change
appropriately.
20180319:
AFFECTS: users of dns/dnsmasq
AUTHOR: [email protected]
Note that with dnsmasq 2.79, some parts of the interface have changed in an
incompatible way versus previous versions. This comprises changed recursion
behaviour, signature support, a change for SIGINT (vs. SIGHUP) behaviour.
Note especially that dnsmasq will no longer answer non-recursive queries
unless it is marked authoritative! Be sure to see the manual page for the
various --auth-* options, such as --auth-zone.
Please see the CHANGELOG that ships with dnsmasq for details.
20180317:
AFFECTS: users of multimedia/plexpy
AUTHOR: [email protected]
Plexpy project has been renamed to Tautulli due to copyright
infringement. The software also has received a major update. Please
see the following upgrade instructions:
- Install multimedia/tautulli
- Create /var/db/tautulli, owned by the user you will run the daemon as
(default: nobody).
- Copy your config.ini and plexpy.db to /var/db/tautulli
- Enable the service and start the software
Tautulli should automatically find your database file, rename it to
tautulli.db, and perform the required updates.
20180310:
AFFECTS: users of security/openssl
AUTHOR: [email protected]
The EXPCIPHERS option has been removed from the security/openssl port.
Use the security/openssl-unsafe port if you require this feature.
20180309:
AFFECTS: users of net/unison
AUTHOR: [email protected]
Unison has been upgraded to version 2.51, which uses a different
wire protocol than 2.48 did. In order to support synchronization
with other computers where Unison is still at version 2.48, a new
port net/unison248 has been created. It provides unison248 and,
for the x11 flavor, also unison248-text. This unison248 port can
be installed in parallel with the existing net/unison port.
20180308:
AFFECTS: */php* */pecl* */pear*
AUTHOR: [email protected]
PHP extensions and modules have been flavored.
People using Poudriere 3.2+ and binary packages do not have to do anything if
they are using PHP applications.
PHP modules and extensions may have change their names from php5- or php7- to
fully versionned phpXY-.
PECL extensions and PEAR modules package names have changed from pecl- and
pear- to phpXX-pecl and phpXX-pear-.
To rename an installed package to match the new naming scheme, for example,
for the imagick pecl extension, run:
# pkg set -n pecl-imagick:php56-pecl-imagick
For other people, to build the PHP 7.2 version of, for example,
databases/php-memcached, you need to run:
# make FLAVOR=php72 install
20180220:
AFFECTS: users of www/nextcloud
AUTHOR: [email protected]
The file and directory permissions of Nextcloud have changed. Write
permissions have been removed from all directories except `data' and
`config'. For the updater to work, the app store of your installation
must be disabled. To disable the app-store prior to updating the
package:
# cd /usr/local/www/nextcloud
# su -m www -c "php ./occ config:system:set appstoreenabled --value=false --type=boolean"
If you've already updated your nextcloud package, you must manually edit
the configuration of nextcloud (config/config.php) and add
'appstoreenabled' => false,
to the CONFIG array before the updater will run.
20180214:
AFFECTS: users of lang/ruby23
AUTHOR: [email protected]
The default ruby version has been updated from 2.3 to 2.4.
If you compile your own ports you may keep 2.3 as the default version by
adding the following lines to your /etc/make.conf file:
#
# Keep ruby 2.3 as default version
#
DEFAULT_VERSIONS+=ruby=2.3
If you wish to update to the new default version, you need to first stop any
software that uses ruby. Then, you will need to follow these steps, depending
upon how you manage your system.
If you use pkgng, simply upgrade:
# pkg upgrade
If you use portmaster, install new ruby, then rebuild all ports that depend
on ruby:
# portmaster -o lang/ruby24 lang/ruby23
# portmaster -R -r ruby-2.4
If you use portupgrade, install new ruby, then rebuild all ports that depend
on ruby:
# pkg delete -f ruby portupgrade
# make -C /usr/ports/ports-mgmt/portupgrade install clean
# pkg set -o lang/ruby23:lang/ruby24
# portupgrade -x ruby-2.4.\* -fr lang/ruby24
20180209:
AFFECTS: users of japanese/lookup
AUTHOR: [email protected]
japanese/lookup is update to 1.99.96.20130920. This version is not
compatible with previous version 1.4.1 and incompatibility includes
how to setup. See info of Lookup for detail.
20180209:
AFFECTS: users of net-mgmt/pmacct
AUTHOR: [email protected]
To allow separete pmacctd instances per interface, use
pmacctd_enable="YES"
pmacctd_interfaces="re1 re2"
in /etc/rc.conf. The path to the config files will be
/usr/local/etc/pmacct/<interface>
20180208:
AFFECTS: users of mail/mailman*
AUTHOR: [email protected]
In order to overcome complaints about mismatched checksums in
Mailman/Default.py, mailman now configures the DEFAULT_EMAIL_HOST
and DEFAULT_URL_HOST to "localhost" statically, and the rc script
will check this and refuse to start on next boot.
Users must configure DEFAULT_EMAIL_HOST and DEFAULT_URL_HOST in
Mailman/mm_cfg.py properly and add this line below:
add_virtualhost(DEFAULT_URL_HOST, DEFAULT_EMAIL_HOST)
A short example has been added to:
${PREFIX}/local/share/doc/mailman/FreeBSD-post-install-notes.
As of 2.1.26_3, the post-install script will add back the prior
default settings to mm_cfg.py (instead of Defaults.py) if no
virtual hosts have been defined, to cover the normal use cases
and initial installation.
20180201:
AFFECTS: users of editors/emacs* and all ports using Emacs via USES=emacs
AUTHOR: [email protected]
The Emacs ports framework has been updated to support flavors and the
editors/emacs-nox11 port has been replaced by the nox flavors of
editors/emacs and editors/emacs-devel.
Supported Flavors
--------------------------------------------------------
editors/emacs: full canna nox
editors/emacs-devel: full nox
ports using Emacs: full canna nox devel_full devel_nox
--------------------------------------------------------
For those using pre-built packages, if
# pkg upgrade
does not install the new Emacs package, use one of
# pkg install emacs
# pkg install emacs-canna
# pkg install emacs-nox
# pkg install emacs-devel
# pkg install emacs-devel-nox
For those building their own packages, a flavor other than the default must be
specified. For example, to build the nox flavor of editors/emacs, or to build
the devel_full flavor of a port using Emacs, use
# poudriere bulk -j 11amd64 editors/emacs@nox
# poudriere bulk -j 11amd64 print/pdf-tools@devel_full
or
# make FLAVOR=nox install
# make FLAVOR=devel_full
An alternative to the default flavor, full, for editors/emacs and
editors/emacs-devel can be set in make.conf. For example, to specify nox as
the default flavor for both ports, use
.if ${.CURDIR:M*/editors/emacs*}
FLAVOR?=nox
.endif
For ports using Emacs, an alternative to the default flavor, full,
can be also be set in make.conf. For example, to automatically depend on
emacs-nox, use
DEFAULT_VERSIONS+=emacs=nox
20180117:
AFFECTS: users of x11-toolkits/kf5-kirigami2 and x11/kf5-plasma-framework
AUTHOR: [email protected]
Files that were previously installed by kf5-kirigami2 are now installed
by kf5-plasma-framework. This can lead to a conflict during the upgrade
of the packages.
It is recommended to first remove the package kf5-kirigami2.
20180115:
AFFECTS: users of net-p2p/transmission-daemon
AUTHOR: [email protected]
The transmission-daemon port has been updated to 2.92_4 to incorporate
a patch which mitigates DNS rebinding attacks. This will prevent
clients from being able to connect to the transmission daemon using
DNS with any hostname other than localhost, unless one of the
following is done:
- Enable password authentication, then any hostname is allowed.
This can be achieved by either:
- setting rpc-authentication-required to true, and adding
credentials to the rpc-username and rpc-password fields in
settings.json (must be done whilst the transmission service is
stopped); or
- running transmission-daemon with the following arguments
(these can be set with transmission_flags in /etc/rc.conf):
-t -u USERNAME -v PASSWORD
OR
- Add the allowed server hostnames to the rpc-host-whitelist setting
in settings.json (must be done whilst the transmission service is
stopped). Note that this value is NOT a list of allowed CLIENTS,
but instead a list of allowed SERVER hostnames.
20180111:
AFFECTS: users of editors/vim-lite
AUTHOR: [email protected]
The vim-lite port has been renamed to vim-console, because it isn't
actually any lighter. All three vim packages are built with
--enable-features=huge. Portmaster users will need to run this
command:
portmaster -o editors/vim-console editors/vim-lite
If the switch doesn't happen automatically for you, just delete the
vim-lite package and install vim-console.
20180109:
AFFECTS: users of www/qt5-webengine
AUTHOR: [email protected]
The upgrade of www/qt5-webengine to 5.9.3 may fail if an older version
of it is installed. It is recommended to either build the port in a
builder like poudriere, or to deinstall and then doing an install.
20180107:
AFFECTS: users of security/gnupg and mail/mutt and mail/neomutt
AUTHOR: [email protected]
The invocation for gpg from mutt/neomutt changed between gnupg-2.0
(which has expired and is now removed) and gnupg-2.2 (the current
version in the tree). Unless you're using gpgme, PGP-related
commands may fail in (neo)mutt.
In all cases, users are strongly urged to use security/gpgme to take
care of the setup for you. If you prefer to roll your own, the
following muttrc/neomuttrc entry has been reported to work:
pgp_decrypt_command="gpg2 %?p?--passphrase-fd 0 --pinentry-mode=loopback? --no-verbose --batch --output - %f"
See muttrc(5), neomuttrc(5), mutt.org, and neomutt.org for instructions
on (neo)mutt's gpg and gpgme instructions.
20180102:
AFFECTS: users of devel/awscli
AUTHOR: [email protected]
The package name for devel/awscli has changed (back) to just awscli.
The introduction of flavors erroneously caused the awscli package to
be renamed to py27-awscli.
20171230:
AFFECTS: users of net-im/ejabberd
AUTHOR: [email protected]
If you are building ejabberd 17.11 on a host, which already has an older
version of ejabberd installed, then build process will fail with "unknown type
specifier" errors. As a workaround, please uninstall ejabberd before building
ejabberd.
This has been reported upstream at:
https://github.com/processone/ejabberd/issues/2194
20171223:
AFFECTS: users of dns/dnscrypt-proxy
AUTHOR: [email protected]
The 1.9.5_3 update of dns/dnscrypt-proxy replaces the default resolver used
by dnscrypt-proxy (cisco/OpenDNS) by a random one that does not log entries
and supports dnssec.
20171223:
AFFECTS: users of samba44
AUTHOR: [email protected]
The default version of samba has been switched from 4.4 to 4.6.
Upgrade instructions:
For package users having samba44 installed indirectly (as a dependency):
# pkg upgrade
For package users having samba44 installed directly (leaf port):
# pkg upgrade
# pkg install samba46
For ports users:
If you want to keep samba44, add DEFAULT_VERSIONS+= samba=4.4 to make.conf
If you want to upgrade to samba46, remove samba44:
# pkg delete -f samba44
Portmaster users:
# portmaster net/samba46
# portmaster -a
Portupgrade users:
# portinstall net/samba46
# portupgrade -a
20171218:
AFFECTS: users of devel/gogs
AUTHOR: [email protected]
Gogs user has been changed to "git" and configuration files are now
located in /usr/local/etc/gogs. Users should update ownership of the
existing Gogs directories with
# chown -R git:git /var/db/gogs
# chown -R git:git /var/log/gogs
and either move or merge the contents of /var/db/gogs/home/.ssh with
/usr/local/git/.ssh. After migration, /var/db/gogs/home can be removed,
and both the user "gogs" and the group "gogs" should be deleted:
# rm -rf /var/db/gogs/home
# pw userdel gogs
# pw groupdel gogs
20171215:
AFFECTS: users of finance/gnucash
AUTHOR: [email protected]
The gnucash port has been converted too use flavors, the GUILE1
and GUILE2 options have been converted to flavors so that two
separate packages can be provided.
Since the next major release of gnucash will drop guile1 support,
the default flavor package is compiled against guile2, switching
the previous default.
Users who intend to stay on the guile1 version should deinstall
the default gnucash package and install the gnucash-guile1 package.
20171214:
AFFECTS: all ports users
AUTHOR: [email protected]
Support for some deprecated variables is going to be removed soon. If
you use any of the following constructs (usually in /etc/make.conf),
you must switch to the new incantations:
OLD NEW
------------------------------- ------------------------------
WITH_[...] OPTIONS_SET= [...]
WITHOUT_[...] OPTIONS_UNSET= [...]
WITHOUT_NLS OPTIONS_UNSET= NLS
NOPORTDOCS OPTIONS_UNSET= DOCS
NOPORTEXAMPLES OPTIONS_UNSET= EXAMPLES
WITH_BDB_VER=[...] DEFAULT_VERSIONS+= bdb=[...]
OVERRIDE_LINUX_BASE_PORT=[...] DEFAULT_VERSIONS+= linux=[...]
WITH_OPENSSL_BASE DEFAULT_VERSIONS+= ssl=base
WITH_OPENSSL_PORT DEFAULT_VERSIONS+= ssl=port
20171205:
AFFECTS: users of dns/powerdns
AUTHOR: [email protected]
Recursor passthrough removal: This will impact many installations.
Previously, the PowerDNS Authoritative Server contained a facility
for sending recursion desired queries to a resolving backend,
possibly after first consulting its local cache. This feature
(‘recursor=’) was frequently confusing and also delivered
inconsistent results, for example when a query ended up referring
to a CNAME that was outside of the Authoritative Server’s
knowledge.
20171203:
AFFECTS: users of sysutils/dsbmd
AUTHOR: [email protected]
Due to new configuration variables and new features, users of dsbmd
version 0.4.1 and earlier should consider recreating their dsbmd.conf from
the new dsbmd.conf.sample.
20171130:
AFFECTS: all ports users
AUTHOR: [email protected]
The ports tree has gained "flavors," which are a way to produce multiple
variations of a port. Some intended examples of this are language
modules being produced for multiple language versions, and lite/nox11 packages,
without needing separate ports for each variation. Python ports have already
been flavored (see the below entry). Flavor support must be added to
individual ports.
Flavors are already supported by make, pkg, poudriere, and synth; see the
manpages for those tools for usage instructions. Portmaster and portupgrade
don't support flavors yet, but community work on those tools is in progress.
Some bumps and breakages are inevitable for a major change such as this.
Please report breakages and monitor the ports@ list for solutions as they
become available.
20171130:
AFFECTS: */py*
AUTHOR: [email protected]
Ports using Python via USES=python are now flavored. All the py3-* ports
have been removed and folded into their py-* master ports.
People using Poudriere 3.2+ and binary packages do not have to do anything.
For other people, to build the Python 3.6 version of, for example,
databases/py-gdbm, you need to run:
# make FLAVOR=py36 install
20171126:
AFFECTS: users of security/p5-openxpki
AUTHOR: [email protected]
OpenXPKI has been updated to 1.19.4, some important changes were made, please
see the upgrading documentation for more details:
http://openxpki.readthedocs.io/en/latest/upgrading.html
20171126:
AFFECTS: users of mail/sympa
AUTHOR: [email protected]
Web's static dirs have moved to a single dedicated directory.
Users should review webserver's /static configuration (examples in
share/examples/sympa).
20171119:
AFFECTS: users of sysutils/zrepl
AUTHOR: [email protected]
Zrepl has been updated to 0.0.2, which introduces two changes that will
require existing users to change their zrepl.yml config file:
- global.logging is no longer a dictionary but a list.
Refer to the new format here: https://zrepl.github.io/configuration/logging.html
- source job field datasets renamed to filesystems.
Refer to the new format here: https://zrepl.github.io/configuration/jobs.html
https://zrepl.github.io/changelog.html#id1
20171117:
AFFECTS: users of sysutils/terraform
AUTHOR: [email protected]
Terraform has been updated to 0.11, which introduces several incompatible
changes. Please follow upgrading guide when updating the package.
https://www.terraform.io/upgrade-guides/0-11.html
20171114:
AFFECTS: users of ports-mgmt/poudriere
AUTHOR: [email protected]
"poudriere options" now respects the -p flag while it did not before.
This means that it may create an empty directory when used now rather
than continue to use your existing options set. You may want to not
use -p or move your existing options directory, in
/usr/local/etc/poudriere.d/*-options, to the new format with the
ports tree name in it. Otherwise "poudriere bulk" will use the
new empty directory.
This behavior will likely change in 3.2.1 to be more backwards-compatible.
20171112:
AFFECTS: consumers of devel/oniguruma*
AUTHOR: [email protected]
Outdated versions of oniguruma have been removed from the ports
tree; devel/oniguruma is the only supported version, currently
replacing devel/oniguruma6.
pkg should handle this automatically while users of portmaster or
portupgrade might need to take additional manual steps:
for users of portmaster:
portmaster -o devel/oniguruma devel/oniguruma6
portmaster -r devel/oniguruma
for users of portupgrade:
portupgrade -o devel/oniguruma devel/oniguruma6
portupgrade -fr devel/oniguruma
20171107:
AFFECTS: users of www/node
AUTHOR: [email protected]
The www/node port has been updated to node.js v9.0.0, the latest
upstream release. A new port, www/node8, has been created for the
v8.x LTS branch. Users wanting to stay on v8.x can replace www/node
with www/node8 with one of the following commands:
# pkg install www/node8
or
# portmaster -o www/node8 www/node
or
# portupgrade -o www/node8 www/node
20171107:
AFFECTS: users of security/libressl
AUTHOR: [email protected]
The port has been updated to the latest stable version 2.6 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
20171105:
AFFECTS: users of www/mod_auth_cas
AUTHOR: [email protected]
The configuration of mod_auth_cas has changed since the previous
version. Visit the https://github.com/apereo/mod_auth_cas page for
an overview of all configuration parameters
20171105:
AFFECTS: users of www/mod_rpaf2
AUTHOR: [email protected]
The configuration of mod_rpaf2 has been heavily modified since version
0.6. Have a look at https://github.com/gnif/mod_rpaf/tree/v0.8.4 to
determine what you need to change in your configuration.
20171031:
AFFECTS: users of editors/vim
AUTHOR: [email protected]
The default vim language bindings have changed. Python 2 and 3 bindings
may now be enabled independently (the default vim package will continue
to depend on python-2.7).
Lua and Tcl bindings have been disabled by default. If you need these
bindings, you'll need to compile vim yourself. Note that bindings are
only for plugins written in those languages, and for interactive
debugging. Editing, indenting, linting, completing, and syntax-highlighting
those languages is NOT affected.
20171026:
AFFECTS: users of devel/universal-ctags
AUTHOR: [email protected]
Due to conflicts with emacs ctag (editors/emacs-devel, editors/emacs-nox11, editors/emacs),
the installed files will be prefixed with the 'u' character.
The new binaries will de named uctags and ureadtags.
20171015:
AFFECTS: people using WITHOUT_DEBUG
AUTHOR: [email protected]
The WITHOUT_DEBUG flag has been retired. It's only purpose was
to override a global WITH_DEBUG, if that was defined, but many
ports were ignoring such flag even if honouring WITH_DEBUG.
The same effect can be obtained using ".undef WITH_DEBUG" without
any special support in port Makefiles.
20171012:
AFFECTS: users of security/openssh-portable
AUTHOR: [email protected]
OpenSSH has been upgraded to 7.6p1 which has removed several deprecated
features:
- SSH version 1 support dropped.