forked from freebsd/freebsd-ports
-
Notifications
You must be signed in to change notification settings - Fork 0
/
UPDATING
10195 lines (7516 loc) · 335 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.
20140618:
AFFECTS: users of devel/m17n-* textproc/*m17n*
AUTHOR: Nikola Lecic <[email protected]>
devel/m17n-db now incorporates a set of user-contributed input methods and
a conversion script, formerly available through textproc/m17n-contrib.
Delete textproc/m17n-contrib first and then update/install devel/m17n-db.
20140616:
AFFECTS: users of devel/subversion
AUTHOR: [email protected]
The subversion port has been overhauled. Some optional parts were extracted
into separate ports. These ports are:
www/mod_dav_svn
instead of option MOD_DAV_SVN.
security/subversion-gnome-keyring
instead of option GNOME_KEYRING.
security/subversion-kwallet
instead of option KDE_KWALLET.
If you used devel/subversion with one (or more) of these non-standard
options, you should install the appropriate port(s) after upgrading
subversion.
"mod_dontdothat" is installed unconditionally by www/mod_dav_svn port (it
depended on the TOOLS option before), but is not activated by default, you
may need to edit apache's configuration file.
The devel/subversion port now installs svndiff, svndiff3 and svndiff4
commands if TOOLS option is enabled. They was skipped before.
The official names "diff", "diff3" and "diff4" are prefixed with "svn" to
avoid conflicts with base and other diff versions.
All libraries and binaries are now stripped if the MAINTAINER_DEBUG
option is not selected (including all sub-ports, like bindings
and mod_dav_svn).
20140611:
AFFECTS: users of devel/icu
AUTHOR: [email protected]
icu has been updated to 53.1. Please rebuild all ports that depend on it
If you use portmaster:
portmaster -w -r icu
If you use portupgrade:
portupgrade -fr devel/icu
If you use pkgng with binary packages:
pkg install -fR devel/icu
20140610:
AFFECTS: users of www/firefox, www/seamonkey, mail/thunderbird, www/libxul
AUTHOR: [email protected]
Gecko ports were switched to use more system libraries. Some of them
must be built with certain options unset (default).
- audio/soundtouch has to be installed with INTEGER_SAMPLES option disabled
20140604:
AFFECTS: users of dns/dnscrypt-proxy
AUTHOR: [email protected]
The 1.4.0 update to dns/dnscrypt-proxy introduced a privilege
separation capability utilizing the new _dnscrypt-proxy user.
The home directory for this user was misconfigured as /nonexistent.
The dnscrypt-proxy server will try to chroot to _dnscrypt-proxy's home
directory and fail to start. If you are affected you will need to
change _dnscrypt-proxy's home directory to /var/empty:
# pw usermod _dnscrypt-proxy -d /var/empty
20140603:
AFFECTS: users of net-p2p/zetacoin
AUTHOR: [email protected]
The zetacoind process now runs as the zetacoin user. Please make sure that
this user has appropriate permissions to the blockchain database and wallet
directory.
If you are using the default path, run:
# chown -R zetacoin:zetacoin /var/db/zetacoin
# chown -R zetacoin:zetacoin /.zetacoin
20140529:
AFFECTS: users of databases/postgresql??-(server|client)
AUTHOR: [email protected]
PostgreSQL version 9.2 is now the default. To upgrade from a version
lower than 9.2, follow the instructions on the PostgreSQL.org website.
http://www.postgresql.org/docs/9.2/interactive/upgrading.html
When using binary packages, if you only use the client port, you can issue
the following command to follow the default version:
# pkg set -o databases/postgresql90-client:databases/postgresql92-client
20140528:
AFFECTS: users of security/calife & security/calife-devel
AUTHOR: [email protected]
Calife 2.8.x is now officially EoL. Replace it with 3.0 (formerly
calife-devel).
For port builds system please follow the following instructions:
Please delete old version:
# pkg delete -f security/calife-devel
or
# pkg_delete security/calife-devel
and install security/calife.
Change origin if you had the old one:
# pkg set -o security/calife-devel:security/calife
20140527:
AFFECTS: users of databases/db6
AUTHOR: [email protected]
Oracle BerkeleyDB 6.0 was upgraded to version 6.0.30. Databases that
use BLOBs need to be upgraded using db_upgrade-6.0 before they can be
accessed again. See the manual for details:
<http://docs.oracle.com/cd/E17076_03/html/api_reference/C/db_upgrade.html>
Databases that do not use BLOBs are unaffected.
20140526:
AFFECTS: users of lang/lua
lang/lua has been relaced by lang/lua51
For port builds system please follow the following instructions:
# portmaster -o lang/lua51 lang/lua
or
# portupgrade -fo lang/lua51 lang/lua
or
# pkg set -o lang/lua:lang/lua51
20140525:
AFFECTS: users of devel/py-gobject3 and devel/py-dbus
AUTHOR: [email protected]
py-gobject3 and py-dbus where split up in a common port (*-common),
python2 port (py-*) and python3 port (py3-*) port.
For port builds systems please follow the next following instructions:
Please delete the existing version to avoid conflicts.
# pkg delete -f py27-gobject3 py27-dbus
or
# pkg_delete devel/py-gobject3 devel/py-dbus
followed by:
# portmaster devel/py-gobject3 devel/py-dbus
or
# portinstall devel/py-gobject3 devel/py-dbus
20140521:
AFFECTS: users of databases/mariadb55*
AUTHOR: [email protected]
The mariadb55-client and mariadb55-server port have been changed to
respect hier(7) and behave like the mysql ports. Therefore mysql-server
and mysql monitor will refuse to start if my.cnf exists in /etc or
/etc/mysql.
In case you're affected, please move /etc/my.cnf to /usr/local/etc and/or
/etc/mysql/my.cnf to /usr/local/etc/mysql.
20140520:
AFFECTS: users of security/dropbear
AUTHOR: [email protected]
security/dropbear port separator syntax was changed (again), now using
host^port instead of host%port.
You may need to update your config files while updating to 2014.63 from
the previous versions.
20140511:
AFFECTS: users of databases/firebird*
AUTHOR: [email protected]
The default version of databases/firebird* have been changed to support
DEFAULT_VERSIONS variable
DEFAULT_VERSIONS=firebird=2.5
20140507:
AFFECTS: users of lang/open-cobol
AUTHOR: [email protected]
lang/open-cobol was moved to lang/gnu-cobol to match the new package
name. Please do the following according to package manager used.
# portmaster -o lang/gnu-cobol lang/open-cobol
or
# portupgrade -fo lang/gnu-cobol lang/open-cobol
or
# pkg set -o lang/open-cobol:lang/gnu-cobol
20140506:
AFFECTS: users of ports-mgmt/portshaker
AUTHOR: [email protected]
ports-mgmt/portshaker was updated to avoid creating an aditional 'ports'
subdirectory when merging to a poudriere_tree without ZFS, so that
portshaker's default location matches poudriere's default location.
Users of poudriere on non-ZFS systems should not anymore have to pass extra
options to poudriere for it to find the ports tree.
20140506:
AFFECTS: users of security/yassl
AUTHOR: [email protected]
security/yassl was moved to security/cyassl to match the original package
name. Please do the following according to package manager used.
# portmaster -o security/cyassl security/yassl
or
# portupgrade -fo security/cyassl security/yassl
or
# pkg set -o security/yassl:security/cyassl
20140505:
AFFECTS: users of databases/libiodbc
AUTHOR: [email protected]
libiodbc no longer provide the odbc compatibility
Rebuild all ports that are linked to libiodbc
# portmaster -r libiodbc
or
# portupgrade -r databases/libiodbc
20140503:
AFFECTS: users of science/hdf5* and science/netcdf*
AUTHOR: [email protected]
There are major version changes in HDF5 and NetCDF ports:
- science/hdf5: updated from 1.6.9 to 1.8.12
- science/hdf5-18: replaced by science/hdf5
- science/netcdf: updated from 3.6.3 to 4.3.2
C++/Fortran binding moved into new ports (by upstream)
- science/netcdf-cxx: new port for C++ binding of NetCDF
- science/netcdf-fortran: new port for Fortran binding of NetCDF
- science/netcdf-ftn: replaced by science/netcdf-fortran
- science/netcdf3-ftn: replaced by science/netcdf-fortran
- science/netcdf4: replaced by science/netcdf
Please deinstall them before building the new versions.
20140428:
AFFECTS: users of java/openjdk7
AUTHOR: [email protected]
The previous version of openjdk7 had a bug that will prevent it from
being able to bootstrap itself. Please deinstall openjdk7 before
building the new version.
20140427:
AFFECTS: users of graphics/gdal
AUTHOR: [email protected]
Due to changes in header files, please deinstall gdal first while updating
from 1.9.x/1.10.x to 1.11.x.
20140420:
AFFECTS: users of net/samba4
AUTHOR: [email protected]
Samba4 port now re-uses the same logic and startup script as Samba41. So,
to get net/samba4 runing you need to rename samba4_enable in /etc/rc.conf
to the samba_sever_enable.
samba_server_enable="YES"
Startup script tries it's best to guess which out of samba/nmbd/smbd/winbindd
daemons have to be started, but you can fine tune this by specifying them in
rc.conf, just make sure that samba_server_enable is enabled(see entry for 20121022).
20140416:
AFFECTS: users of x11/xorg graphics/dri graphics/libGL and related ports
AUTHOR: [email protected]
The default xorg version has been switched on FreeBSD 10-STABLE and
FreeBSD 9-STABLE.
To upgrade graphics/libGL, graphics/dri and related MESA ports, it is
necessary to first remove the old versions of those ports.
No special upgrade procedure is needed for xorg ports but it is
necessary to recompile all xorg drivers (xf86-*) and other ports that
depend on the xserver version, including
emulators/virtualbox-ose-additions. Portrevisions have been bumped
where needed, but users of drivers not in the ports tree will need to
recompile those.
If it is important to stay on the old versions, it is possible to
specify WITHOUT_NEW_XORG= in /etc/make.conf to get the old xorg
distribution.
For users in need of working console when using KMS drivers (intel and
radeon graphics cards) please use the new vt(9) console driver.
For more information, see https://wiki.freebsd.org/Graphics and
https://wiki.freebsd.org/Newcons .
To update:
# pkg_delete -f libGL-\* dri-\*
or
# pkg delete -f libGL dri
followed by
# portmaster graphics/dri graphics/libGL
or
# portupgrade graphics/dri graphics/libGL
and then
# portmaster -a
or
# portupgrade -a
20140416:
AFFECTS: users of print/freetype2 textproc/libxml2 x11/pixman
x11/libxcb and graphics/freeglut
AUTHOR: [email protected] and [email protected]
The library version of the above libraries has been brought in line
with what upstream expects. To do this all users of these ports need
to be rebuilt. Portrevisions have been bumped as a consequence.
# portmaster -r freetype2 -r libxml2 -r pixman -r freeglut -r libxcb
or
# portupgrade -rf freetype2 libxml2 pixman freeglut libxcb
20140415:
AFFECTS: Users of mod_python3
AUTHOR: [email protected]
www/mod_python3 was renamed to www/mod_python33, additional www/mod_python35
with support for apache24 was added to the portstree.
To reflect the new port location use:
pkgng users:
# pkg set -o www/mod_python3:www/mod_python33
portmaster users:
# portmaster -o www/mod_python33 www/mod_python3
portupgrade users:
# portugrade -o www/mod_python33 www/mod_python3
20140414:
AFFECTS: Users of dmd 1.X and dmd 2.x.
AUTHOR: [email protected]
lang/dmd and lang/dmd2 have switched places. Dmd 1.x is no longer supported
by digitalmars.com and is now the secondary dmd port in the collection.
Dmd2 is the primary port. What this means to dmd users is that dmd1 is now
used to invoke dmd 1.x and the dmd command (instead of dmd2) now invokes
dmd 2.x.
20140413:
AFFECTS: Users of Python and pkg >= 1.2.7_1
AUTHOR: [email protected]
There have been reports of the following error when upgrading Python ports:
pkg-static: Plist error, directory listed as a file: <name>.egg-info
The cause is an outdated or unpatched version of setuptools or distribute
installed by the user, or leftover from previous upgrades being used during
the `setup.py install` phase. pkg >= 1.2.7_1 now generates an error where
previously it did not.
Users should inspect their ${LOCALBASE}/lib/pythonX.Y/site-packages
directory, and remove any entries that reference versions of
setuptools or distribute *not* provided by ports or packages.
Examples of entries that may be removed are:
1) distribute-0.6.35-py2.7.egg
2) setuptools-0.6c11-py2.7.egg
3) *Any* version of setuptools directly from PyPi via pip or easy_install
More information is available here:
http://lists.freebsd.org/pipermail/freebsd-ports/2014-April/091618.html
20140410:
AFFECTS: users of mail/vpopmail
AUTHOR: [email protected]
If you are storing limits in MySQL, the following schema changes must be made:
ALTER TABLE `limits` ADD `disable_maildrop` TINYINT(1) DEFAULT '0' NOT NULL AFTER `disable_spamassassin`;
ALTER TABLE `limits` MODIFY `diskquota` BIGINT UNSIGNED NOT NULL DEFAULT 0;
ALTER TABLE `limits` MODIFY `maxmsgcount` BIGINT UNSIGNED NOT NULL DEFAULT 0;
ALTER TABLE `limits` MODIFY `defaultquota` BIGINT UNSIGNED NOT NULL DEFAULT 0;
ALTER TABLE `limits` MODIFY `defaultmaxmsgcount` BIGINT UNSIGNED NOT NULL DEFAULT 0;
20140403:
AFFECTS: users of net/rabbitmq
AUTHOR: [email protected]
This release changes the behaviour of the default "guest" user.
Previously the guest user could be accessed from any network
location. In RabbitMQ 3.3.0 and later, the guest user can only
be accessed via localhost by default.
Any other users you create will not (by default) be restricted
in this way.
See http://www.rabbitmq.com/access-control.html for more information.
20140403:
AFFECTS: users of net/kdnssd
AUTHOR: [email protected]
KDE SC ports have been updated to 4.12.4. kdnssd package has been renamed
to match upstream naming. pkgng users need to update package origin
manually:
# pkg set -o net/kdnssd:net/zeroconf-ioslave
20140402:
AFFECTS: users of textproc/elasticsearch
AUTHOR: [email protected]
Elasticsearch has been updated to version 1.1.0. If you are updating
from a version prior to 1.0.0 you will need to do a full cluster
shutdown for this update as it can not be performed in a rolling
fashion.
20140401:
AFFECTS: users of security/gnutls3
AUTHOR: [email protected]
Libdane support is no longer enabled by default. Rebuild the port with
the LIBDANE option if danetool is desired.
20140331:
AFFECTS: users of print/cups-client and print/cups-image
AUTHOR: [email protected]
CUPS ports have been updated to version 1.7.1. A file has migrated from
cups-image port to cups-client. Before upgrading you should force the
removal of cups-image port, otherwise it will conflict with the new one.
pkg users:
# pkg delete -f cups-image\*
other users:
# pkg_delete -f cups-image\*
2. Install/upgrade other cups* packages.
If cups-filters complains about a missing cups/raster.h include,
try reinstalling the cups-client package.
20140327:
AFFECTS: users of lang/php5 and lang/php55 with Apache module
AUTHOR: [email protected]
The Apache PHP module has been separated from the main PHP port.
If you had the APACHE OPTION selected, you have to perform the
following steps:
1) update your lang/php* options (i.e. 'make config')
2) rebuild lang/php* port
3) install www/mod_php* port
It is *mandatory* to build both ports with the same DEBUG and ZTS
options, so if you have a threaded Apache (i.e. worker or event MPM)
you have to select the ZTS option in lang/php* port.
20140322:
AFFECTS: users of devel/apr1
AUTHOR: [email protected]
APR was updated to 1.5.0, BDB requirement was bumped to 48+
It is necessary to first remove the old version of devel/apr1.
Please rebuild all ports which are using functions from APR/APR-util
such as Apache, Subversion, etc.
# portmaster -r apr
or
# portupgrade -r devel/apr1
or
# pkg install -fR devel/apr1
20140318:
AFFECTS: users of net/openldap24-server
AUTHOR: [email protected]
Please note that Berkeley DB backend is now deprecated and will be removed
in a future version. Existing users should migrate data to the new MDB
backend when possible.
20140317:
AFFECTS: users of misc/ossp-uuid-perl
AUTHOR: [email protected]
misc/ossp-uuid-perl was replaced by misc/p5-OSSP-uuid. Please do the
following according to package manager used.
# portmaster -o misc/p5-OSSP-uuid misc/ossp-uuid-perl
or
# portupgrade -fo misc/p5-OSSP-uuid misc/ossp-uuid-perl
or
# pkg set -o misc/p5-OSSP-uuid:misc/ossp-uuid-perl
20140312:
AFFECTS: users of net/openistgt
AUTHOR: [email protected]
Between istgt supporting target reload, and iscsid using CTL there is no
point to this port. As such it has been deleted without warning, since
the support for it is as best questionable.
pkgng users:
# pkg set -o net/openistgt:net/istgt
portmaster users:
# portmaster -o net/istgt net/openistgt
# portmaster -r istgt
portupgrade users:
# portupgrade -o net/istgt -f net/openistgt
# portupgrade -fr net/istgt
20140310:
AFFECTS: users of mail/p5-Mail-SpamAssassin and japanese/p5-Mail-SpamAssassin
AUTHOR: [email protected]
The port mail/p5-Mail-SpamAssassin was renamed to mail/spamassassin and
the port japanese/p5-Mail-SpamAssassin was renamed to japanese/spamassassin.
To ease upgrading run the following set of commands:
pkgng users:
# pkg set -o mail/p5-Mail-SpamAssassin:mail/spamassassin
# pkg set -o japanese/p5-Mail-SpamAssassin:japanese/spamassassin
portmaster users:
# portmaster -o mail/spamassassin mail/p5-Mail-SpamAssassin
# portmaster -o japanese/spamassassin japanese/p5-Mail-SpamAssassin
20140307:
AFFECTS: users of devel/py-setuptools dependent ports
AUTHOR: [email protected]
devel/py-setuptools is being used for every python ports (if USE_PYDISTUTILS
defined) since r336553. Due to PKGORIGIN limitation, we cannot build one
python port with python27 and the other with python33 since they require
different setuptools versions which have same PKGORIGIN. With the addition
of py-setuptools{27,32,33}, we could now have py27-foo and py33-bar coexist
in one system.
Note that this is only a short-term solution. It does not help if you need
coexistence of one port with different python versions, e.g. py27-foo and
py33-foo.
Please rebuild all ports that depend on devel/py-setuptools and use
devel/py-setuptools{27,32,33} instead.
XX represents python version (27, 32 or 33) in the following steps.
pkgng users:
# pkg set -o devel/py-setuptools:devel/py-setuptoolsXX
portmaster users:
# portmaster -o devel/py-setuptoolsXX devel/py-setuptools
# portmaster -r py\*setuptools
portupgrade users:
# portupgrade -o devel/py-setuptoolsXX -f devel/py-setuptools
# portupgrade -fr devel/py-setuptools
20140304:
AFFECTS: users of security/kwallet
AUTHOR: [email protected]
KDE SC ports have been updated to 4.12.3. kwallet package has been renamed
to match upstream naming. pkgng users need to update package origin
manually:
# pkg set -o security/kwallet:security/kwalletmanager
20140302:
AFFECTS: users of sysutils/ansible
AUTHOR: [email protected]
This is an major update and changes were introduced in ansible 1.5, that
are not backward compatible. Please refer changelog there before update:
https://raw.github.com/ansible/ansible/v1.5.0/CHANGELOG.md
20140223:
AFFECTS: users of net-mgmt/mk-livestatus
AUTHOR: [email protected]
livecheck was removed in 1.2.3.i5. It never was really stable, Nagios4
has something similar built in.
Please remove the "livecheck=..." directive from etc/nagios/nagios.cfg.
20140222:
AFFECTS: users of mail/courier-imap
AUTHOR: [email protected]
When using SSL and updating from an older version, run mkdhparams(8) to
create the new TLS_DHPARAMS file which is needed for Courier IMAP 4.15
and up.
20140222:
AFFECTS: users of net-im/turpial
AUTHOR: [email protected]
Turpial has been updated to 3.0, due to changes in net-im/turpial port it
will be necessary to remove it before updating.
20140220:
AFFECTS: users of editors/vim
AUTHOR: [email protected]
The editors/vim port has been reworked to simplify option handling. In UI
option group, a new option (CONSOLE) was added for users who do not need
GUI support. This option is off by default. You might encounter install
or package failures with "old" option setting. Please run "make config" to
modify your setting.
20140219:
AFFECTS: users of textproc/docbook*
AUTHOR: [email protected]
The textproc/docbook-* ports have been consolidated into two ports
textproc/docbook-sgml and textproc/docbook-xml.
Before upgrading you should force the removal of the existing ports, they
will conflict with the new ones.
pkg users can run:
pkg delete -f docbook-xml\* docbook-sk\* docbook\[2345\]\?\?-\* docbook-4\*
the other users can run:
pkg_delete -f docbook-xml\* docbook-sk\* docbook\[2345\]\?\?-\* docbook-4\*
20140218:
AFFECTS: users of KDE SC 4
AUTHOR: [email protected]
KDE SC ports have been updated to 4.12.2. kdeadmin, kdenetwork, kdesdk,
and kdetoys ports have been split due to upstream changes.
KDE Workspace port has been updated to 4.11.6. It requires modern
Mesa libraries, provided by WITH_NEW_XORG knob. To update Xorg ports
to newer version follow instructions at https://wiki.freebsd.org/Graphics
20140218:
AFFECTS: users of misc/kdehier4
AUTHOR: [email protected]
KDE4_PREFIX has been changed from /usr/local/kde4 to /usr/local.
All ports that depends on kdehier4 must be reinstalled.
PORTREVISION for affected ports has been increased, upgrading tools
(portmaster, pkg) should handle this update without manual intervention.
Please check /usr/local/kde4 for leftovers after upgrade. If you don't
have locally modified files, e.g. under /usr/local/kde4/etc, you may
safely remove /usr/local/kde4.
20140214:
AFFECTS: users of lang/perl5.12
AUTHOR: [email protected]
Perl 5.12 has been removed. The default Perl is lang/perl5.16.
pkg(8) users:
1) Update the origin to point to 5.16:
pkg set -o lang/perl5.12:lang/perl5.16
2) Upgrade perl and all dependencies:
pkg install -Rf lang/perl5.16
Portupgrade users:
0) Fix pkgdb.db (for safety):
pkgdb -Ff
1) Reinstall new version of Perl (5.16):
portupgrade -o lang/perl5.16 -f lang/perl5.12
2) Reinstall everything that depends on Perl:
portupgrade -fr lang/perl5.16
Portmaster users:
portmaster -o lang/perl5.16 lang/perl5.12
Conservative:
portmaster p5-
Comprehensive (but perhaps overkill):
portmaster -r perl-
Note: If the "perl-" glob matches more than one port specify the name of
the Perl directory in /var/db/pkg explicitly. Also, depending on when
perl 5.12 was installed last, the prefix may be perl-, perl5- or
perl5.12-.
20140211:
AFFECTS: users of lang/php* database/postgresql* database/mysql* www/apache*
AUTHOR: [email protected]
The default versions of lang/php*, databases/postgresql*,
databases/mysql* and www/apache* have been changed to support the
new DEFAULT_VERSIONS variable.
DEFAULT_APACHE_VER, DEFAULT_MYSQL_VER, DEFAULT_PGSQL_VER,
DEFAULT_FPC_VER and DEFAULT_PHP_VER are now deprecated. You can use
the new DEFAULT_VERSIONS variable like this:
DEFAULT_VERSIONS=php=5.5 mysql=5.6 apache=2.4
20140208:
AFFECTS: users of spamdyke
AUTHOR: [email protected]
Spamdyke has been updated to 5.0.0. The behavior has changed from
4.x. Please see the upgrading notes at:
http://www.spamdyke.org/documentation/UPGRADING_version_4_to_version_5.txt
20140208:
AFFECTS: users of icu
AUTHOR: [email protected]
icu has been updated to 52.1. Please rebuild all ports that depend on it
if you have the glib20 port built with COLLATION_FIX option activated
If you use portmaster:
portmaster -w -r icu
If you use portupgrade:
portupgrade -fr devel/icu
If you use pkgng with binary packages:
pkg install -fR devel/icu
20140201:
AFFECTS: users of net-mgmt/zabbix*
AUTHOR: [email protected]
The login shell for the zabbix user in UIDs was changed from
/usr/sbin/nologin to /bin/sh to fix the zabbix-agent UserParameter
feature.
To update the existing user on your system, run:
# pw usermod zabbix -s /bin/sh
20140114:
AFFECTS: users of www/mod_authnz_external
AUTHOR: [email protected]
www/mod_authnz_external was moved to www/mod_authnz_external22
Please do the following according to package manager used.
# portmaster -o www/mod_authnz_external22 www/mod_authnz_external
or
# portupgrade -fo www/mod_authnz_external22 www/mod_authnz_external
or
# pkg set -o www/mod_authnz_external:www/mod_authnz_external22
20140113:
AFFECTS: users of net/samba41
AUTHOR: [email protected]
With the introduction of Samba 4.1 corresponding port lost SWAT support
and made WINBIND support mandatory. As samba4 introduced additional 'samba'
daemon to the tripplet of nmbd/smbd/winbindd to avoid confusion startup
script for samba41 was renamed to 'samba_server'. To start the whole band
up it's enough to add to the rc.conf:
samba_server_enable="YES"
Startup script tries it's best to guess which out of samba/nmbd/smbd/winbindd
daemons have to be started, but you can fine tune this by specifying them in
rc.conf, just make sure that samba_server_enable is enabled(see entry for 20121022).
20140112:
AFFECTS: users of devel/libical
AUTHOR: [email protected]
The libical port was updated to 1.0.0. Due to the shared library bump
and the removal of the .la file, all ports that use libical need to be
rebuilt.
# portmaster -r libical
or
# portupgrade -fr libical
or
# pkg install -fR libical
20140111:
AFFECTS: users of lang/go
AUTHOR: [email protected]
Third party Go packages installed via the ports tree are no longer installed
in GOROOT (PREFIX/go) but in a specific path: PREFIX/share/go
Affected ports had their PORTREVISION bumped.
To reinstall these packages via the ports tree, it is needed to deinstall
them first (the build will fail if the `go` command detects that they
already exists in GOROOT).
If you are using these third party Go packages for local Go development,
you have to add this new path to your GOPATH environment variable.
20140107:
AFFECTS: users of Qt 4 ports
AUTHOR: [email protected]
Qt 4 ports framework has been reworked, several ports have been renamed.
To ease upgrading run the following set of commands:
# pkg set -o devel/qt4-declarative:x11-toolkits/qt4-declarative
# pkg set -o devel/qt4-qtestlib:devel/qt4-testlib
# pkg set -o textproc/qt4-clucene:textproc/clucene-qt4
# pkg set -o www/qt4-webkit:www/webkit-qt4
# pkg set -o x11/qt4-opengl:graphics/qt4-opengl
20140102:
AFFECTS: users of archivers/p7zip
AUTHOR: [email protected]
The MINIMAL and MODULES options have been removed from archivers/p7zip,
which now unconditionally installs the 7z, 7za and 7zr, as if the MINIMAL
option was previously unset.
The RAR decompression codec, whose source code has a more restrictive
license that forbids its use for creating RAR archives, has been moved to
a separate port, archivers/p7zip-codec-rar.
20131230:
AFFECTS: ports using Apache Software License 2.0
AUTHOR: [email protected]
The acronym for Apache Software License 2.0 was renamed to APACHE20
20131226:
AFFECTS: users of security/cyrus-sasl2
AUTHOR: [email protected]
The SASL GSSAPI authentication plugin was removed from
security/cyrus-sasl2 port and divided into new
security/cyrus-sasl2-gssapi port.
If you are using the SASL GSSAPI authentication, please install
security/cyrus-sasl2-gssapi port, in addition to upgrading
security/cyrus-sasl2 port.
20131218:
AFFECTS: users of news/cnews
AUTHOR: [email protected]
The default path for overview files has changed.
Rebuild your overview files after the update with:
su - news /usr/local/libexec/cnews/nov/initov
20131217:
AFFECTS: users of databases/ruby-bdb or ports-mgmt/portupgrade and databases/db5 or databases/db6
AUTHOR: [email protected]
databases/db5 and databases/db6 have recently been updated to fix
bugs. This changed their patchlevel version.
However, ruby-bdb used to break during the db[56] upgrade due to a bug
described in <http://www.freebsd.org/cgi/query-pr.cgi?pr=184921>.
THEREFORE, YOU MUST MANUALLY UPGRADE databases/ruby-bdb INDIVIDUALLY
TO 0.6.6_2 OR NEWER WHEN USING portupgrade AGAINST databases/db[56]
PORTS. To achieve that, type:
# portupgrade databases/ruby-bdb
or
# portmaster -x 'db*' databases/ruby-bdb
before proceeding with other upgrades.
Should you have corrupted the portupgrade databases, or if ruby-bdb
refuses to work with the upgraded db* port with errors such as "DB
needs compatible versions of libdb & db.h", then rebuild the ruby-bdb
port manually, and fix the portupgrade databases:
# make -C /usr/ports/databases/ruby-bdb all deinstall install clean
# pkgdb -fu
# portupgrade -f db5 db6
This should return portupgrade to normal operation.
20131216:
AFFECTS: users of x11/xorg, graphics/libGL, graphics/dri, all xorg ports
AUTHOR: [email protected]
The default xorg version has been switched on FreeBSD CURRENT.
To upgrade graphics/libGL, graphics/dri and related MESA ports, it is
necessary to first remove the old versions of those ports.
No special upgrade procedure is needed for xorg port but it is
necessary to recompile all xorg drivers (xf86-*) and other ports that
depend on the xserver version, including
emulators/virtualbox-ose-additions. Portrevisions have been bumped
where needed, but users of drivers not in the ports tree will need to
recompile those.
If it is important to stay on the old versions, it is possible to
specify WITHOUT_NEW_XORG= in /etc/make.conf to get the old xorg
distribution.
To update:
# pkg_delete -f libGL-\* dri-\*
or
# pkg delete -f libGL dri
followed by
# portmaster graphics/dri graphics/libGL
or
# portupgrade graphics/dri graphics/libGL
and then
# portmaster -a
or
# portupgrade -a
20131216:
AFFECTS: users of databases/db4*
AUTHOR: [email protected]
Berkeley DB versions before and excluding 4.8 have been marked deprecated.
New port installations should be based on Berkeley DB 5 or 6.
Note that Oracle Berkeley DB 6 is under the more restrictive Affero GPL v3
license, be sure to review if using that fits your requirements.
You can add WITH_BDB_VER=5 or WITH_BDB_VER=6 to /etc/make.conf to have all
applications that get rebuilt use Oracle Berkeley DB 5 or 6, respectively.
DO NOT FORCE DELETE older BerkeleyDB packages, that breaks the upgrade
tools. Instead, first rebuild the ports that depend on it, then
remove the old Berkeley DB versions.
Berkeley DB ports should be able to build/install with an older and a
newer version version both installed if WITH_BDB_VER is set. If a
port then grabs the old Berkeley DB version, that is an issue with the
port that requires Berkeley DB, and should be reported to the
maintainer.
If you are interested in upgrading now already, we have instructions
at <https://wiki.freebsd.org/Ports/BerkeleyDBCleanup>.
20131209:
AFFECTS: users of dns/bind96, dns/bind98 and bind99 on FreeBSD 10.0
AUTHOR: [email protected]
Bind versions before 9.6.3.2.ESV.R10_2, 9.8.6_2, and 9.9.4_2 on
FreeBSD 10.0 will replace named.conf on upgrade. Make sure to
backup any local changes before upgrading to the _2 versions.
20131208:
AFFECTS: users of java/subversion-java
AUTHOR: [email protected]
java/subversion-java was moved to java/java-subversion.
Please do the following according to package manager used.
# portmaster -o java/java-subversion java/subversion-java
or
# portupgrade -fo java/java-subversion java/subversion-java
or
# pkg set -o java/subversion-java:java/java-subversion
20131208:
AFFECTS: users of x11-toolkits/vte