-
Notifications
You must be signed in to change notification settings - Fork 0
/
UPDATING
9233 lines (6812 loc) · 304 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.
20131214:
AFFECTS: users of databases/db4*
AUTHOR: [email protected]
Berkeley DB versions before and excluding 4.8 have been marked
deprecated. Please see https://wiki.freebsd.org/Ports/BerkeleyDBCleanup
for upgrade instructions.
You can add WITH_BDB_VERSION=5 or WITH_BDB_VERSION=6 to have all
applications that get rebuilt use Oracle Berkeley DB 5 or 6, respectively.
Note that Oracle Berkeley DB 6 is under the more restrictive Affero GPL v3.
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
AUTHOR: [email protected]
The gnome-pty-helper program has been split off from the vte package
to allow both vte and vte3 to be installed at the same time. To update
after this change please do the following:
# pkg_delete -f vte\*
or
# pkg delete -fg vte\*
followed by
# portmaster x11-toolkits/vte
or
# portupgrade x11-toolkits/vte
20131207:
AFFECTS: users of mail/opensmtpd
AUTHOR: [email protected]
There has been changes to the OpenSMTPD configuration. Please refer to
smtpd.conf(5), and use "smtpd -nf smtpd.conf" to validate.
20131203:
AFFECTS: users of graphics/opencv, graphics/opencv-core
AUTHOR: [email protected]
OpenCV has been updated to 2.4.7. Due to movement of files between the
opencv port and the opencv-core port, it will be necessary to remove
both packages before updating.
# pkg_delete -f opencv\*
or
# pkg delete -fg opencv\*
followed by
# portmaster -a
or
# portupgrade -a
20131127:
AFFECTS: users of devel/py-distribute (i.e you)
AUTHOR: [email protected]
devel/py-distribute was replaced with devel/py-setuptools. Please do
the following according to package manager used. py-distribute port
will be removed shortly.
# portmaster -o devel/py-setuptools devel/py-distribute
or
# portupgrade -fo devel/py-setuptools devel/py-distribute
or
# pkg set -o devel/py-distribute:devel/py-setuptools
# pkg install -f devel/py-setuptools
20131125:
AFFECTS: users of www/mod_wsgi
AUTHOR: [email protected]
The port www/mod_wsgi moved to www/mod_wsgi2 to reflect the port version.
# portmaster -o www/mod_wsgi2 www/mod_wsgi
or
# portupgrade -fo www/mod_wsgi2 www/mod_wsgi
or
# pkg set -o www/mod_wsgi:www/mod_wsgi2
20131120:
AFFECTS: users of lang/perl5.12 lang/perl5.14 lang/perl5.16 and lang/perl5.18
AUTHOR: [email protected]
The THREADS option has been enabled by default in all Perl. If you're using
binary packages you need to do :
# pkg install -Rf perl5
If you're not using binary packages, and want to switch from non threaded
Perl to threaded Perl, you need to recompile and reinstall most ports
depending on Perl. Supposing you have Perl 5.16, you would do:
Portupgrade users:
0) Fix pkgdb.db (for safety):
pkgdb -Ff
1) Change the option in lang/perl5.16:
make -C /usr/ports/lang/perl5.16 config
2) Reinstall everything that depends on Perl:
portupgrade -fr lang/perl5.16
Portmaster users:
1) Change the option in lang/perl5.16:
make -C /usr/ports/lang/perl5.16 config
2) Reinstall everything that depends on Perl:
portmaster -r perl5-
Note: The installed Perl package was named perl and is now named perl5, if
you have not updated your installation in a long time, you may need to
use "perl-" here.
20131112:
AFFECTS: users of dns/nsd
AUTHOR: [email protected]
dns/nsd was updated to the new 4.0.0 major release.
This version replaces the nsdc control program with nsd-control.
This requires some manual setup with nsd-control-setup and editing
of the config files. nsd-control is incompatible with nsdc so when
that is used in scripts, these should be adapted. More information:
http://www.nlnetlabs.nl/svn/nsd/tags/NSD_4_0_0_REL/doc/NSD-4-features
NSD version 3 is still supported in dns/nsd3. To keep the old
version:
# portmaster -o dns/nsd3 dns/nsd
or
# portupgrade -fo dns/nsd3 dns/nsd
or
# pkg set -o dns/nsd:dns/nsd3
20131112:
AFFECTS: users of dns/bind9*
AUTHOR: [email protected]
All bind9 ports have been updated to support FreeBSD 10.x after
BIND was removed from the base system. It is now self-contained
in ${PREFIX}/etc/namedb, and chroot and symlinking options are
no longer supported out of the box.
For users of FreeBSD 9.x and earlier, the LINKS option is no longer
enabled by default, but still supported. No other changes should
affect those users, and updating without changing already set options
will keep the system in the same state.
20131103:
AFFECTS: users of security/libtasn1 and any port that depends on it
AUTHOR: [email protected]
libtasn1 has been updated to 3.3 and all shared libraries versions have
been bumped. So you need to rebuild all applications that depend on
libtasn1.
# portmaster -r libtasn1
or
# portupgrade -fr security/libtasn1
or
# pkg install -fR security/libtasn1
20131031:
AFFECTS: users of multimedia/rtmpdump
AUTHOR: [email protected]
The library part of multimedia/rtmpdump is split into multimedia/librtmp.
multimedia/rtmpdump now depends on the library port.
A build error can occur if you built and installed old rtmpdump by
using stock OpenSSL, and then install security/openssl and try to build
multimedia/rtmpdump without deinstalling the installed one. Please
make sure if the old rtmpdump is removed before building the new version.
20131028:
AFFECTS: users of comms/dcf77pi
AUTHOR: [email protected]
As of version 1.0.5 the configuration file was renamed from
hardware.txt to config.txt and the format has been made more flexible.
If you have customized any parameters, be sure to copy them to
config.txt after which hardware.txt can be removed.
20131028:
AFFECTS: users of multimedia/ffmpeg1 and multimedia/ffmpeg-devel
AUTHOR: [email protected]
The port ffmpeg was updated, ffmpeg1 and ffmpeg-devel were removed in
favor of ffmpeg.
# portmaster -o multimedia/ffmpeg multimedia/ffmpeg1
or
# portupgrade -fo multimedia/ffmpeg multimedia/ffmpeg1
or
# pkg set -o multimedia/ffmpeg1:multimedia/ffmpeg
and
# portmaster -o multimedia/ffmpeg multimedia/ffmpeg-devel
or
# portupgrade -fo multimedia/ffmpeg multimedia/ffmpeg-devel
or
# pkg set -o multimedia/ffmpeg-devel:multimedia/ffmpeg
20131023:
AFFECTS: users of lang/perl5.12 lang/perl5.14
AUTHOR: [email protected]
The default Perl has been switched to lang/perl5.16. These examples
are for switching from lang/perl5.14, if you are running another
version, replace lang/perl5.14 with the origin of the Perl you have
installed.
Pkgng users:
# pkg set -o lang/perl5.14:lang/perl5.16
# 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.14
2) Reinstall everything that depends on Perl:
portupgrade -fr lang/perl5.16
Portmaster users:
portmaster -o lang/perl5.16 lang/perl5.14
Conservative:
portmaster p5-
Comprehensive (but perhaps overkill):
portmaster -r perl-
Note: If the "perl-" glob matches more than one port you will need to specify
the name of the Perl directory in /var/db/pkg explicitly.
20131020:
AFFECTS: users of mail/squirrelmail
AUTHOR: [email protected]
The default location for user data files and attachments has changed.
This will only affect new installations, and upgrading SquirrelMail
WILL NOT break your current installation.
To make use of the new locations, do the following:
# cp -rp /var/spool/squirrelmail/pref/* /usr/local/www/squirrelmail/data
# cp -rp /var/spool/squirrelmail/attach/* /usr/local/www/squirrelmail/attach
and then run /usr/local/www/squirrelmail/configure and tell SM about
it ("Data Directory" and "Attachment Directory" under "General Options").
This version of SquirrelMail is a SNAPSHOT that brings in PHP 5.4 and 5.5
compatibility.
20131020:
AFFECTS: users of security/gpgme
AUTHOR: [email protected]
The library version of security/gpgme has changed, and PORTREVISION has
been bumped in all dependent ports. If you have external software that
depends on gpgme, this software needs to be recompiled.
To recompile all software dependent on gpgme, run:
# portmaster -r gpgme
or
# portupgrade -rf gpgme
20131008:
AFFECTS: all users
AUTHOR: [email protected]
A new USES has been added: compiler.mk, this uses allows porters to
select a compiler for a given port based on the features the port needs
By default this will always try to find Clang > 3.3.
If the user prefers using GCC then the following macro should be added
to user's make.conf: FAVORITE_COMPILER=gcc
20131004:
AFFECTS: users of net-mgmt/nrpe2
AUTHOR: [email protected]
The port nrpe2 was updated and moved to nrpe
# portmaster -o net-mgmt/nrpe net-mgmt/nrpe2
or
# portupgrade -fo net-mgmt/nrpe net-mgmt/nrpe2
or
# pkg set -o net-mgmt/nrpe2:net-mgmt/nrpe
20131003:
AFFECTS: users of lang/python* and ports
AUTHOR: [email protected]
The default versions of lang/python* have been changed to support the
new DEFAULT_VERSIONS variable.
PYTHON_DEFAULT_VERSION, PYTHON2_DEFAULT_VERSION and
PYTHON3_DEFAULT_VERSION are deprecated. If you have set them in your
make.conf, you should change them something like
DEFAULT_VERSIONS=python=2.7 python2=2.7 python3=3.3
20130929:
AFFECTS: users of x11/pixman
AUTHOR: [email protected]
The library version of x11/pixman has changed, and PORTREVISION has
been bumped in all dependent ports. If you have external software that
depends on pixman, this software needs to be recompiled.
To recompile all software dependent on pixman, run:
# portmaster -r pixman
or
# portupgrade -rf pixman
20130929:
AFFECTS: users of graphics/libGL, graphics/dri and other MESA ports
AUTHOR: [email protected]
The graphics/libGL, graphics/dri and related MESA ports have been
updated to 9.1 when compiled with WITH_NEW_XORG= set. It is necessary
to remove the old versions of both ports before updating.
# pkg_delete -f libGL-\* dri-\*
or
# pkg delete -f libGL dri
followed by
# portmaster -a
20130925
AFFECTS: Users of print/qpdf
AUTHOR: [email protected]
Due to the changes in libqpdf.so, please deinstall qpdf first if you
are updating from 4.0.0 to 4.0.1+
20130920:
AFFECTS: Users of ptlib, opal and/or ekiga
AUTHOR: [email protected]
The ptlib26, opal3 and ekiga3 ports where updated to the latest version
and moved to the location of the old ports. If the ekiga (2.0) port is
installed the same line as for ekiga3 can be used except without the 3 at
the end.
# portmaster -o devel/ptlib devel/ptlib26
# portmaster -o net/opal net/opal3
# portmaster -o net/ekiga3 net-im/ekiga
or
# portupgrade -fo devel/ptlib devel/ptlib26
# portupgrade -fo net/opal net/opal3
# portupgrade -fo net/ekiga3 net-im/ekiga
or
# pkg set -o devel/ptlib26 devel/ptlib
# pkg set -o net/opal3 net/opal
# pkg set -o net/ekiga3 net-im/ekiga
20130920:
AFFECTS: Users of ports
AUTHOR: [email protected]
New way to override the default version of a language in the ports
tree.
The make variable, DEFAULT_VERSIONS, allows users to override the
default version defined by the ports tree.
For example, to declare specific versions for Perl, Ruby and Tcl/Tk,
it would be defined as:
DEFAULT_VERSIONS= perl5=5.18 ruby=2.0 tcltk=8.6
Today, this only is supported by Perl, Ruby, and Tcl/Tk.
20130920:
AFFECTS: Users of ports
AUTHOR: [email protected]
Optional Stack Protector [1] support has been added with the WITH_SSP_PORTS
knob.
WITH_SSP_PORTS= yes
This currently is only supported on FreeBSD 10 amd64/i386 and earlier
releases on amd64.
The default SSP_CLFAGS is -fstack-protector, but -fstack-protector-all
may optionally be set instead.
To enable support, add WITH_SSP_PORTS=yes to your make.conf and rebuild all
ports.
# portmaster -af
or
# portupgrade -af
[1] https://en.wikipedia.org/wiki/Buffer_overflow_protection
20130904:
AFFECTS: 10-CURRENT users with any port depending on converters/libiconv
AUTHOR: [email protected]
10-CURRENT after r254273 (committed on August 13, 2013) has an
implementation of iconv enabled by default in libc.
Due to this change some major overhauling of the ports tree has
been necessary to move the ports to using that implementation.
People using pkgng binary packages should have little problems,
"pkg upgrade" will update all software to not depend on libiconv
anymore, once updated packages are available. Please make sure to
perform a "pkg autoremove" after that and check that libiconv is
correctly removed by it.
If you are using ports the update requires some manual intervention.
The following procedure should be followed:
# pkg query %ro libiconv >ports_to_update
# pkg delete -f libiconv
# cat ports_to_update | xargs portmaster
or:
# pkg query %ro libiconv >ports_to_update
# pkg delete -f libiconv
# cat ports_to_update | xargs portupgrade -f
20130831:
AFFECTS: users of graphics/gdal
AUTHOR: [email protected]
Due to the changes in gdal.h, please deinstall gdal first while updating
from 1.9.x to 1.10.x.
20130830:
AFFECTS: users of mail/meta1
AUTHOR: [email protected]
The on disk format has changed.
Please make sure that queue is empty before you update.
20130817:
AFFECTS: users of lang/python*
AUTHOR: [email protected]
The lang/python* ports do not install links to 2to3, idle, pydoc, python
and other binaries anymore. Those were moved into the lang/python2 and
lang/python3 ports respectively. This change brings us closer to the goal
of making Python ports usable with different Python versions at the same
time.
If you have lang/python2* or lang/python3* installed, please also install
the associated lang/python2 or lang/python3 port.
1. update lang/python2* and/or lang/python3*
2. install lang/python2 and/or lang/python3
3. install/update lang/python
20130816:
AFFECTS: users of graphics/opendx and math/octave-forge-octcdf
AUTHOR: [email protected]
These two ports have changed the science/netcdf dependency to
science/netcdf4. It is recommended that the science/netcdf package
be deinstalled before rebuilding these ports, otherwise you are likely
to face port conflicts when building future ports.
20130806:
AFFECTS: users of devel/eric4
AUTHOR: [email protected]
Since PKGVERSION=4.5.13_1 the default file destination has changed from
${PYTHON_SITELIBDIR}/eric4 to ${DATADIR}.
20130731:
AFFECTS: users of glib20
AUTHOR: [email protected]
The devel/gio-fam-backend port was removed in the glib 2.36 update.
Since the gio-fam-backend port was used in USE_GNOME=glib20, all
dependencies need to be rebuilt. The removal of gio-fam-backend isn't
critical, glib20 using programs should work just fine if the port is still
installed. It is not clear however, if glib20 will use the new kqueue
backend or the old fam backend.
Note that users of pkg packages can just run the pkg delete command after
their next update.
# portmaster -r gio-fam-backend
# pkg_delete gio-fam-backend-\* (for pkgng: pkg delete gio-fam-backend)
# portmaster -a
or
# portupgrade -rf gio-fam-backend
# pkg_delete gio-fam-backend-\* (for pkgng: pkg delete gio-fam-backend)
# portupgrade -a
20130726:
AFFECTS: users of Qt 3 and KDE 3
AUTHOR: [email protected]
All ports based on Qt 3 (including KDE 3 but also ports which used Qt 3
as a graphical toolkit) expired on 20130701 because Qt 3 and KDE 3 were
no longer maintained upstream. These ports have been removed today.
Users of KDE 3 are advised to switch to another desktop environment
provided in the Ports Collection, e.g. KDE 4 or Xfce.
Users of Qt 3 are advised to upgrade to the Qt 4 counterpart(s).
20130725:
AFFECTS: users of net/openafs
AUTHOR: [email protected]
The OpenAFS 1.6.5 release is a security release which requires substantial
configuration changes to the AFS servers in addition to the software update,
in order to be fully protected. The entry for OPENAFS-SA-2013-003 on
http://www.openafs.org/security/ has links to the upgrade documentation.
The procedure involves rekeying the cell to a non-DES krb5 key, stored in
a krb5 keytab named rxkad.keytab in PREFIX/etc/openafs/server/.
20130720:
AFFECTS: users of japanese/mozc-server and japanese/mozc-el
AUTHOR: [email protected]
The bin/mozc_emacs_helper program is now built and installed by
japanese/mozc-server because the build processes are heavily
overlapped with each other and the helper program does not depend on
most of what mozc-server does actually. To upgrade them, please remove
mozc-el first to prevent a conflict with the installed bin/mozc_emacs_helper.
20130719:
AFFECTS: users of sysutils/bacula-server, sysutils/bacula-client, sysutils/bacula-bat
AUTHOR: [email protected]
The configuration files for bacula have been moved to PREFIX/etc/bacula.
Move your existing configuration files to this directory after
upgrading.
20130718:
AFFECTS: users of security/logcheck
AUTHOR: [email protected]
The logcheck port now provides a configuration option controlling
installation of the crontab file. When installing the port interactively,
the port option is enabled by default to mimic previous behavior.
When the port is installed non-interactively (BATCH=yes) the crontab
file *will not* be installed automatically. If the EXAMPLES port option
is enabled, the crontab file can be installed manually at a later time
from EXAMPLESDIR/crontab.in.
20130718:
AFFECTS: users of www/zend-framework
AUTHOR: [email protected]
zend-framework has been updated to 2.2.1 and old 1.12.0 has been copied
to www/zend-framework1. If you wish to stay with the older version run:
# portmaster -o www/zend-framework1 www/zend-framework
or
# portupgrade -fo www/zend-framework1 www/zend-framework
or
# pkg set -o www/zend-framework:www/zend-framework1
20130714:
AFFECTS: users of net/avahi-gtk
AUTHOR: [email protected]
Avahi was updated to 0.6.31, due to changes in the avahi-gtk port it will
be necessary to remove the avahi-gtk port before updating.
Users of pkg packages can skip this step.
# pkg_delete -f avahi-gtk\*
or
# pkg delete -f avahi-gtk
followed by
# portmaster net/avahi-gtk
or
# portupgrade net/avahi-gtk
20130711:
AFFECTS: users of dns/py-ldns
AUTHOR: [email protected]
The dns/py-ldns port now only installs the Python bits, and depends on
dns/ldns. Because of that, you cannot just do a regular upgrade, it
would install dns/ldns overwriting existing files and removing them when
removing the old version of dns/py-ldns.
# pkg_delete -f py-ldns-\*
# cd /usr/ports/dns/py-ldns && make clean && make install clean
or
# pkg delete -fg py-ldns-\*
# pkg install -f dns/py-ldns
20130707:
AFFECTS: users of www/ajaxplorer
AUTHOR: [email protected]
Ajaxplorer was updated to 5.0.1. This is a major update and some
manual intervention may be needed.
Before upgrading you should preserve the following files in WWWDIR
(defaults to PREFIX/www/ajaxplorer) if you have customized them:
conf/bootstrap_conf.php
conf/bootstrap_context.php
conf/bootstrap_plugins.php
conf/bootstrap_repositories.php
and put them back after the upgrade.
If you are using a database backend you will need to manually
update your database table using the sql script the port will
install at WWWDIR/conf/conf/4.2.3-5.0.0-db-upgrade.sql
Don't forget to check the documentation about upgrading from
version 4.x at:
http://ajaxplorer.info/ajaxplorer-5-0-0:/#Upgrade_from_4X_to_500
20130706:
AFFECTS: users of devel/apr1
AUTHOR: [email protected]
APR was updated to 1.4.8 and APR-util was updated to 1.5.2.
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
20130705:
AFFECTS: users of x11/kdelibs4
AUTHOR: [email protected]
The KDE Software Compilation 4.10.4 was committed a few days ago, and
version 4.10.5 was committed today.
They include better support for using clang as the compiler, but that
requires recompiling all KDE ports which depend on x11/kdelibs4. Most
ports which fall into this category are already part of the KDE Software
Compilation and have been updated to version 4.10.5, but those released
separately need to be rebuilt manually.
If you are building your KDE ports with clang, doing the following is
recommended:
# portmaster -r kdelibs-4\*
or
# portupgrade -fr x11/kdelibs4
or
# pkg install -fR x11/kdelibs4
Alternatively, to avoid rebuilding the ports which are part of the 4.10.5
update:
# portmaster -x \*-4.10.5\* -r kdelibs-4\*
or
# portupgrade -x \*-4.10.5\* -fr x11/kdelibs4
20130703:
AFFECTS: users of comms/trustedqsl and comms/tqsllib
AUTHOR: [email protected]
Upstream have removed the need for a separate port for the library
formerly found in comms/tqsllib. Please remove tqsllib before installing
trustedqsl
20130627:
AFFECTS: users of ports-mgmt/portmaster
AUTHOR: [email protected]
Since June 22nd, portmaster no longer relies on 'WITH_PKGNG' to be defined,
or ports to be checked out to enable pkgng support.
It now considers whether or not pkg is installed and registered with itself.
I.e., if this returns data, pkgng is considered in use:
# pkg info pkg
It's possible that you may have tested pkgng in the past, ran pkg2ng, and
never fully committed to it by setting WITH_PKGNG. If this is the case,
uninstall pkg with pkg_info/pkg_delete and also remove the stale database,
rm /var/db/pkg/local.sqlite.
This could manifest itself as portmaster -L showing the wrong versions, or
portmaster no longer detecting installed packages correctly.
Note that PORTS still require WITH_PKGNG=yes in make.conf if you are not
running CURRENT.
20130627:
AFFECTS: users of net/samba36
AUTHOR: [email protected]
Samba has updated format of it's printing tdbs (ntprinting.tdb, ntforms.tdb,
ntdrivers.tdb) to include character encoding. When updating from Samba 3.5
or earlier to Samba 3.6 or 4.0 these tdbs need to be migrated to new registry
based printing management. This implies also character conversion.
You have to specify the correct code page for the conversion, see iconv -l.
The mostly used one is Windows Latin1 which is CP1252.
You can correctly view the tdb with:
# net printing dump encoding=CP1252 /path/to/ntprinters.tdb
or migrate it with e.g.:
# net printing migrate encoding=CP1252 /path/to/ntprinters.tdb
If you migrate printers it is suggest to do it in the following order:
ntforms.tdb
ntdrivers.tdb
ntprinting.tdb
Don't forget to rename, move or delete these files in /var/db/samba after
the migration.
20130623:
AFFECTS: users of net-im/mikutter003
AUTHOR: [email protected]
net-im/mikutter003 has been removed from the ports tree because the
Twitter API version 1.0 was deprecated on 2013-05-07 and mikutter003,
which uses the API 1.0, won't work.
Please consider using net-im/mikutter instead of this.
1. deinstall mikutter003
2. upgrade Ruby to 1.9( or later) (see the entry 20130527)
3. install net-im/mikutter
20130623:
AFFECTS: users of www/magento
AUTHOR: [email protected]
Magento has been updated to 1.7.0.2 on 2013-06-03. With it a stricter file
system policy is enforced on the port. If you (or your customer) rely heavily
on Magento Connect via the backend to install extensions, your quickfix is:
# chown -R www: ${PREFIX}/www/magento
# chmod -R u+w ${PREFIX}/www/magento
The more conservative approach:
# chown -R www: ${PREFIX}/www/magento/app/code/{local,community} \
${PREFIX}/www/magento/app/{design,locale} \
${PREFIX}/www/magento/{downloader,skin}
# chmod -R u+w ${PREFIX}/www/magento/app/code/{local,community} \
${PREFIX}/www/magento/app/{design,locale} \
${PREFIX}/www/magento/{downloader,skin}
The conservative approach will alert you to extensions that try to write in
Magento core, while allowing clean extensions to install properly (corner
cases may exist).
20130619:
AFFECTS: users of devel/subversion
AUTHOR: [email protected]
devel/subversion has been upgraded from 1.7.10 to 1.8.0
If you want to upgrade, and use http/https access to repositories,
please check, that the SERF option is enabled, as NEON support
is gone. Also, mod_dontdothat and svnauthz_validate are
now enabled with one option TOOLS, among other new tools
and SVNMUCC is enabled always.
subversion-1.7.x is available as devel/subversion17
To stay on subversion-1.7.x set in /etc/make.conf
WITH_SUBVERSION_VER=17
and use the following command
# pkg set -o devel/subversion:devel/subversion17
or
# portmaster -o devel/subversion17 devel/subversion
20130614:
AFFECTS: users who set port options in make.conf
AUTHOR: [email protected]
Configuring options in make.conf using variables like OPTIONS_SET and
OPTIONS_UNSET now also suppresses the option dialog for those options.
This means that when building a port the option dialog will only appear if
there are truly new options that have not been configured before using either
the dialog or make.conf. This allows you to set options like DOCS, NLS,
X11, etc. once for all ports and not have option dialogs pop up if those are
the only options. For a list of variables you can set in make.conf to
control options see Mk/bsd.options.mk.
20130612:
AFFECTS: users of lang/perl* and any port that depends on it
AUTHOR: [email protected]
lang/perl5.12 has been upgraded from version 5.12.4 to 5.12.5
lang/perl5.14 has been upgraded from version 5.14.2 to 5.14.4
lang/perl5.16 has been upgraded from version 5.16.2 to 5.16.3
The directory structure where Perl is installed has also been modified:
"major.minor" is now used instead of "major.minor.patchlevel".
The "perl-after-upgrade" script has been removed.
Please rebuild all Perl ports and all ports that depend on it:
# portmaster -r perl
or
# portupgrade -rf perl
or
# pkg install -fR perl
20130609:
AFFECTS: users of audio/flac and any port that depends on it
AUTHOR: [email protected]
FLAC has been updated to 1.3.0 and the shared library versions
have been bumped. Please rebuild all ports that depend on it:
# portmaster -r flac
or
# portupgrade -fr audio/flac
or
# pkg install -fR audio/flac
20130607:
AFFECTS: Nobody
AUTHOR: [email protected]
FreeBSD 8.4 released.
20130604:
AFFECTS: users of lang/ghc and */hs-*
AUTHOR: [email protected]
The Glorious Glasgow Haskell Compiler has been updated to version
7.6.3 and Haskell Platform to 2013.2.0.0. Hence it is recommended to
rebuild or reinstall all the dependent ports by one of the following
commands:
# portmaster -w -r ghc
or
# portupgrade -fr lang/ghc
or
# pkg install -fR lang/ghc
Note that prefixes used for hs- ports (Cabal packages) have been
changed to PREFIX/{lib,share,share/doc}/cabal/ghc-GHC_VERSION to
enable more seamless upgrades in the future.
20130603:
AFFECTS: users of dns/opendnssec
AUTHOR: [email protected]
Some database changes have been made between version 1.3 and 1.4,
upgrading needs to be done manually by running the following scripts:
For MySQL users:
PREFIX/share/opendnssec/migrate_adapters_1.mysql
For SQLite users:
PREFIX/share/opendnssec/migrate_adapters_1.sqlite3
For the full migration explanation see:
PREFIX/share/doc/opendnssec/MIGRATION
opendnssec 1.3 version was preserved as dns/opendnssec13 port.
20130601:
AFFECTS: users of textproc/ack
AUTHOR: [email protected]
ack has been updated to version 2.04. It is slightly incompatible with some
options present in ack1. For more information, see
http://beyondgrep.com/ack-2.0.
20130530:
AFFECTS: users of irc/inspircd
AUTHOR: [email protected]
The irc/inspircd port has been updated to 2.0.12. Some of the config option
names in the rc script have been changed. Check the script for more detail.
20130527:
AFFECTS: users of lang/ruby18
AUTHOR: [email protected]
The default ruby version has been updated from 1.8 to 1.9. First, stop any
software that uses ruby. Then, you'll need to rebuild all ports that depend
on ruby:
If you use portmaster:
# portmaster -o lang/ruby19 lang/ruby18
# portmaster -R -r ruby-1.9
If you use portupgrade:
# portupgrade -f lang/ruby18
# portupgrade -f lang/ruby19 # if you have it installed
# portupgrade -f ports-mgmt/portupgrade
# portupgrade -x ruby-1.8.\* -fr lang/ruby18
After these steps are complete, you can pkg_delete ruby 1.8 if you
no longer need it.
If you use pkgng:
# pkg set -o lang/ruby18:lang/ruby19
# pkg install -fR lang/ruby19
If you wish to keep the 1.8 version as default, add the following lines
to your /etc/make.conf file:
#
# Keep ruby 1.8 as default version.
#
RUBY_DEFAULT_VER=1.8
20130525:
AFFECTS: users of sysutils/rsyslog5*
AUTHOR: [email protected]
Rsyslog 5.x has reached end of life status and has therefore been removed.
While sysutils/rsyslog6* exists, please consider migrating to
sysutils/rsyslog7 as that is the currently supported release.
20130525:
AFFECTS: users of mail/postgrey
AUTHOR: Darren Pilgrim <[email protected]>
The RC script for postgrey has been modified. If you use the
default value for postgrey_flags this does not affect you.
If you have postgrey listening on a Unix socket or set any optional
values, please read the comments in the RC scripts and check your
settings in rc.conf prior to restarting postgrey.
20130525:
AFFECTS: users of x11/xorg and all xorg ports
AUTHOR: [email protected]
X.Org, including libraries and some drivers, was updated. If you are
running the default X.Org distribution, no special upgrade procedure
should be necessary.
If you are running with WITH_NEW_XORG= make sure to update and rebuild
all installed drivers since xorg-server has been updated.
20130520:
AFFECTS: users of textproc/elasticsearch
AUTHOR: [email protected]
This is the first stable release based on Lucene 4. We recommend testing
the upgrade before doing it in production.
Upgrading from 0.20 requires a full cluster restart.
In order to be able to downgrade, stop indexing new data, issue a flush
request, do the upgrade and only enable indexing of new data once you
are certain that you no longer need to downgrade. Once new data has
been indexed, downgrading is no longer possible. To be extra safe, back