forked from freebsd/freebsd-ports
-
Notifications
You must be signed in to change notification settings - Fork 0
/
UPDATING
6846 lines (5030 loc) · 228 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.
20120902:
AFFECTS: users of math/cantor and math/kalgebra
AUTHOR: [email protected]
If you have both cantor and kalgebra installed, chances are that
your cantor installation is corrupted. If the file
${KDE4_PREFIX}/lib/kde4/cantor_kalgebrabackend.so is missing on
your system, rebuild cantor after updating kalgebra to 4.8.4_1 (or
later).
20120822:
AFFECTS: users of net/asterisk16, net/asterisk16-addons
AUTHOR: Florian Smeets <[email protected]>
asterisk16 has been unsupported upstream for a while now and has known
security vulnerabilities, therefore it was removed from the ports tree.
People still running net/asterisk16 should upgrade to net/asterisk.
First delete the asterisk addons, as they are part of asterisk now.
# pkg_delete -f asterisk16-addons\*
after that you can run one of the following
# portmaster -o net/asterisk net/asterisk16
or
# portupgrade -o net/asterisk net/asterisk16
After that you need to update your configuration. Take a look at the following
URL for the changes between 1.6 and 1.8
http://svnview.digium.com/svn/asterisk/branches/1.8/UPGRADE.txt
20120820:
AFFECTS: users of ports-mgmt/portupgrade-devel
AUTHOR: [email protected]
Due to a bug introduced in 20120601, portupgrade is unable to
upgrade itself on FreeBSD 7.x. This has been fixed in 20120820.
ports-mgmt/portupgrade is not affected. To upgrade, execute the following:
# cd /usr/ports/ports-mgmt/portupgrade-devel && make deinstall install clean
20120817:
AFFECTS: users of games/unnethack
AUTHOR: [email protected]
The place for variable files has changed from
$PREFIX/share/unnethack to $PREFIX/var/games/unnethack. To keep
your saved files and game records, please manually move the
following files and directories to the new directory after
upgrading.
logfile
perm
record
xlogfile
bones/
level/
saves/
20120816:
AFFECTS: users of sysutils/cfengine*
AUTHOR: [email protected]
The sysutils/cfengine* ports have been renamed as follows:
o sysutils/cfengine -> sysutils/cfengine22
o sysutils/cfengine3-legacy -> sysutils/cfengine32
o sysutils/cfengine3 -> sysutils/cfengine33
Users are reminded to update the port origins, for example:
# portmaster -o sysutils/cfengine22 sysutils/cfengine
or
# portupgrade -fo sysutils/cfengine22 sysutils/cfengine
or
# pkg set -o sysutils/cfengine:sysutils/cfengine22
20120815:
AFFECTS: users of lang/erlang
AUTHOR: [email protected]
The lang/erlang port was updated to R15B01. Some port options
were updated, so be sure to run "make config" in the port directory
and check your configuration before upgrading.
To upgrade Erlang and rebuild all of the dependent ports under
the new environment:
# portmaster -r erlang
or
# portupgrade -r lang/erlang
20120815:
AFFECTS: users of lang/erlang-lite
AUTHOR: [email protected]
The lang/erlang-lite port uses the same default options as
lang/erlang, which were changed some time ago.
The couchdb, rabbitmq, freeswitch-core and freeswitch-core-devel
ports have been updated to use lang/erlang rather than lang/erlang-lite.
Please check that your lang/erlang options are configured as you
wish (especially X11 support), then follow the instructions below
to update your dependencies.
# portmaster -o lang/erlang lang/erlang-lite
or
# portupgrade -fo lang/erlang erlang-lite
20120810:
AFFECTS: users of net-p2p/transmission-gtk2
AUTHOR: [email protected]
Unfortunately Transmission 2.61 moved the requirement for GTK to version
3.2.0, which is not yet in our tree.
Those who wish to have a graphical client can either choose transmission-qt4
in the meantime, or switch to the transmission25 ports.
A script to generate appropriate commands can be found at:
http://people.FreeBSD.org/~crees/scripts/transmission25.sh
20120808:
AFFECTS: users of www/libmicrohttpd
AUTHOR: [email protected]
libmicrohttpd has been updated to version 0.9.21, with a shared library bump.
This requires dependent ports to be rebuilt.
# portmaster -r libmicrohttpd
or
# portupgrade -r www/libmicrohttpd
or
# pkg install -fR www/libmicrohttpd
20120804:
AFFECTS: users of graphics/libglut
AUTHOR: [email protected]
The libglut library is replaced by the freeglut library.
Due to shlib version bump all glut users should be rebuild.
Please follow the instructions below to upgrade.
# portmaster -o graphics/freeglut graphics/libglut
# portmaster -r freeglut
or
# env DISABLE_CONFLICTS=1 portupgrade -fo graphics/freeglut libglut\*
# portupgrade -frx freeglut freeglut
or
# pkg set -o graphics/libglut:graphics/freeglut
# pkg install -Rf graphics/freeglut
20120801:
AFFECTS: users of editors/emacs
AUTHOR: [email protected]
GNU Emacs port is updated to 24.1. Emacs 23 is moved to editors/emacs23.
If you prefer to stick with Emacs 23, please specify EMACS_PORT_NAME=emacs23
in /etc/make.conf, and do:
# portmaster -o editors/emacs23 editors/emacs
or
# env DISABLE_CONFLICTS=1 portupgrade -fo editors/emacs23 editors/emacs
or
# pkg set -o editors/emacs:editors/emacs23
20120726:
AFFECTS: users of www/firefox, www/seamonkey, mail/thunderbird, www/libxul
AUTHOR: [email protected]
Gecko ports were switched to use system libraries. Some of them
must be built with certain options set (default).
- graphics/png has to be installed with APNG option
- databases/sqlite3 has to be installed with SECURE_DELETE, THREADSAFE,
FTS3, UNLOCK_NOTIFY options
20120726:
AFFECTS: users of devel/pkg-config
AUTHOR: [email protected]
devel/pkg-config has been replaced by devel/pkgconf
# portmaster -o devel/pkgconf devel/pkg-config
or
# portupgrade -fo devel/pkgconf pkg-config-\*
pkgng:
# pkg set -o devel/pkg-config:devel/pkgconf
# pkg install -f devel/pkgconf
20120725:
AFFECTS: users of chinese/fcitx
AUTHOR: [email protected]
The textproc/fcitx-keyboard port is merged into chinese/fcitx.
Before updating, be sure to
# pkg_delete -f fcitx-keyboard-\*
And make sure you have at least one keyboard layout based input method
enabled in fcitx-configtool, to keep the activation/deactivation of IM
panel working.
And, since chinese/fcitx-sunpinyin depends on an update to
chinese/sunpinyin
20120725:
AFFECTS: users of www/py-beautifulsoup
AUTHOR: [email protected]
Current www/py-beautifulsoup has been moved to www/py-beautifulsoup32,
since 4.1.1 is now current stable version.
If you prefer to stick with 3.2.0 do:
# portmaster -o www/py-beautifulsoup32 www/py-beautifulsoup
20120723:
AFFECTS: users of security/snort
AUTHOR: [email protected]
The database output modules have been deprecated. If you need this
functionality please look at the security/barnyard2 port.
20120723:
AFFECTS: users of graphics/ImageMagick and graphics/ImageMagick-nox11
AUTHOR: [email protected]
The options for ImageMagick have been changed to match commonly used
option names. If you are using a customized build, please reconfigure
your port options with "make config".
20120720:
AFFECTS: users of net/spread and net/spread4
AUTHOR: [email protected]
The ports net/spread and net/spread4 are using now the
reserved UID/GID 282 instead (user|group)next.
20120722:
AFFECTS: users of mail/mutt
AUTHOR: [email protected]
mail/mutt-devel has been moved to mail/mutt, since 1.5 has been around
for a while.
Should you wish to stick with version 1.4 at this time;
# portmaster -o mail/mutt14 mutt
20120721:
AFFECTS: users of audio/libogg
AUTHOR: [email protected]
There is a new version of libogg (1.3.0) and the shared library version
has been bumped (ogg.7 to ogg.8). All ports that have an identifiable
direct dependency on this library have had their PORTREVISIONs bumped.
However, some ports that pull in the library indirectly may continue to
look for the old version. To ensure that all are updated, perform this
step:
# portmaster -r libogg
or
# portupgrade -rf libogg
20120717:
AFFECTS: users of ftp/proftpd
AUTHOR: [email protected]
The options of ProFTPD have been made much more user-friendly.
As the modules are all shared libraries, all possible modules are built
and installed. The following modules are now in separate slave ports:
databases/proftpd-mod_sql_odbc: mod_sql_odbc
databases/proftpd-mod_sql_sqlite: mod_sql_sqlite
databases/proftpd-mod_sql_tds: mod_sql_tds
net/proftpd-mod_ldap: mod_ldap and mod_quotatab_ldap
20120716:
AFFECTS: users of www/lighttpd
AUTHOR: [email protected]
The following port options have been reorganized:
The OPENLDAP option has been renamed to LDAP.
The MAGNET and CML options have been withdrawn in favor of new LUA option.
20120716:
AFFECTS: users of mail/postfix-current
AUTHOR: [email protected]
The postscreen-to-smtpd protocol has changed. To avoid "cannot
receive connection attributes" warnings and dropped connections,
execute the command "postfix reload".
20120716:
AFFECTS: Nobody
AUTHOR: [email protected]
The FreeBSD ports tree switched from CVS to Subversion. A Subversion
to CVS exporter is in place to continue the support of CVSup.
20120709:
AFFECTS: users of math/metis
AUTHOR: [email protected]
The older version of metis has been moved to math/metis4, and
math/metis has been updated to 5.0.2. Dependent ports still use
the old API, and the different versions of metis cannot coexist, so
most users should update with:
# portmaster -o math/metis4 math/metis
# portmaster -r math/metis4
or the equivalent.
20120702:
AFFECTS: users of databases/couchdb
AUTHOR: [email protected], Adam Strohl <[email protected]>
The couchdb port has an unfortunate side effect; versions before 1.2.0
will clobber local.ini. The port will refuse to build if that file is
present and an earlier version is installed, however no such protection
can be afforded to package installation.
To upgrade from 1.1.0 and earlier, simply move PREFIX/etc/couchdb/local.ini
out of the way until the upgrade is complete.
20120702:
AFFECTS: users of net-im/mikutter
AUTHOR: [email protected]
The net-im/mikutter has been updated to 0.1.1.810 which is required
Ruby 1.9.2 or later. Before upgrading this port, please see the entry
20110822 in this file to upgrade Ruby to 1.9.
If you want to stay with 0.0.3 (requires Ruby 1.8.7, 1.9.2 or later),
please run the following command:
# portmaster -o net-im/mikutter003 net-im/mikutter
or
# portupgrade -o net-im/mikutter003 net-im/mikutter
20120630:
AFFECTS: users of lang/perl*
AUTHOR: [email protected]
lang/perl5.16 is out. If you want to switch to it from, for example
lang/perl5.12, that is:
Portupgrade users:
0) Fix pkgdb.db (for safety):
pkgdb -Ff
1) Reinstall new version of Perl (5.16):
env DISABLE_CONFLICTS=1 portupgrade -o lang/perl5.16 -f perl-5.12.\*
2) Reinstall everything that depends on Perl:
portupgrade -fr perl
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 you will need to
specify the name of the Perl directory in /var/db/pkg explicitly.
The default version for Perl has also been changed from 5.12 to 5.14.
20120623:
AFFECTS: users of sysutils/xfce4-utils
AUTHOR: [email protected]
The port has been discontinued, and installs files that conflict with
the new versions of misc/xfce4-appfinder and x11-wm/xfce4-session.
# pkg_delete -f xfce4-utils-\*
# portmaster misc/xfce4-appfinder x11-wm/xfce4-session
20120618:
AFFECTS: users of databases/db5
AUTHOR: [email protected]
The databases/db5 port has been upgraded to BerkeleyDB 5.3. This
entails a shared library bump.
Before upgrading this port, check if your applications use
transactional data bases, and if they do, prepare them for a log file
format upgrade. YOU MUST DO THIS BEFORE YOU UPGRADE THE DB5 PORT! See:
http://docs.oracle.com/cd/E17076_02/html/upgrading/upgrade_process.html
All packages that depend on db5 need to be rebuilt due to the shared
library version change. The full changelog is at
http://download.oracle.com/otndocs/products/berkeleydb/html/changelog_5_3.html
To upgrade the packages that need Berkeley DB 5, please
issue one of the following commands (depending on your preferred tool):
# portmaster -r db5-5
or
# portupgrade -fr databases/db5
20120616:
AFFECTS: users of www/lighttpd
AUTHOR: [email protected]
The lighttpd startup script has been changed and is now compatible to the
apache startup script. The "reload" subcommand now sends a SIGHUP to the
process and triggers cycling of log files. The new command "graceful"
performs a graceful restart (similiar to former "reload") and "gracefulstop"
performs a graceful stop. The "check" command has been replaced with
the "configtest" command.
20120615:
AFFECTS: users of databases/akonadi
AUTHOR: [email protected]
The latest Akonadi update includes critical bug fixes. Manual
intervention is required for people using local MySQL database (the
default configuration) as backend:
$ akonadictl stop
Wait a bit, and make sure that akonadiserver and akonadi_control are
not running. Kill them if needed. Then, you have two alternatives:
$ mysql_install_db --force \
--defaults-file=~/.local/share/akonadi/mysql.conf \
--datadir=~/.local/share/akonadi/db_data \
--basedir=$(dirname `dirname $(which mysql_install_db)`)
$ rm ~/.local/share/akonadi/mysql.conf
...or...
$ rm -r ~/.local/share/akonadi
In the latter case, Akonadi will have to recache your personal data
(might take a while). Akonadi is only a cache, no data will be lost.
Then:
$ akonadictl start
20120613:
AFFECTS: users of graphics/djvulibre and graphics/djvulibre-nox11
AUTHOR: [email protected]
DjVuLibre been updated to 3.5.25.3. The QT3 GUI that was in
graphics/djvulibre has been removed (users of this GUI should consider
switching to the new QT4 GUI in graphics/djview4), and
graphics/djvulibre-nox11 has been merged back into graphics/djvulibre.
To update DjVuLibre, you can use:
# pkg_delete djvulibre-\?.\*
# portmaster -o graphics/djvulibre djvulibre-nox11
You should then update any installed ports that link to the djvulibre shared
library: converters/pdf2djvu, graphics/djview4, graphics/okular, and --
if optional djvulibre support was enabled -- graphics/ImageMagick,
graphics/apvlv, and graphics/evince.
20120612:
AFFECTS: users of databases/postgresql-libpqxx
AUTHOR: [email protected]
postgresql-libpqxx has been updated to 4.0. If you want to stick
with version 3, install postgresql-libpqxx30:
# portmaster -o databases/postgresql-libpqxx30 postgresql-libpqxx
20120612:
AFFECTS: users of graphics/gdal
AUTHOR: [email protected]
Language bindings (Perl, PHP, Python and Ruby) have been moved to separate
ports. Please install them if required. The new ports are:
Perl binding: graphics/p5-Geo-GDAL
PHP binding: graphics/php-gdal
Python binding: graphics/py-gdal
Ruby binding: graphics/ruby-gdal
20120605:
AFFECTS: users of net/p5-ZConf
AUTHOR: [email protected]
Please append '.set' to all sets for the FS backend. This was done to prevent
collisions between config and set names. Previously the config
"someConfig/default" would collide with the set "default" for "someConfig".
20120603:
AFFECTS: users of lang/ghc and */hs-*
AUTHOR: [email protected]
Note that The Glorious Glasgow Haskell Compiler and the Haskell Platform
have been updated to versions 7.4.1 and 2012.2.0.0, respectively. At the
same time, all Haskell ports have been updated to their latest working
versions.
To follow the changes, please issue one of the following commands
(depending on the tool used):
# portmaster -r ghc
or
# portupgrade -fr lang/ghc
20120531:
AFFECTS: users of graphics/png
AUTHOR: [email protected]
The PNG library has been updated to version 1.5.10. Please rebuild all
ports that depend on it.
If you use portmaster:
portmaster -r png-
If you use portupgrade:
portupgrade -fr graphics/png
20120531:
AFFECTS: users of editors/koffice-kde4
AUTHOR: [email protected]
KOffice 2 has been replaced by Calligra. You are encouraged to
deinstall any KOffice port and install equivalent Calligra ones:
# pkg_delete \*koffice\*
# portmaster editors/calligra <additional l10n ports>
20120530:
AFFECTS: users of databases/postgresql*-server
AUTHOR: [email protected]
Affected users are those who use the crypt(text, text) function with
DES encryption in the optional pg_crypto module. Passwords affected
are those that contain characters that cannot be represented with
7-bit ASCII. If a password contains a character that has the most
significant bit set (0x80), and DES encryption is used, that character
and all characters after it will be ignored.
20120530:
AFFECTS: users of net/nss-pam-ldapd
AUTHOR: [email protected]
The net/nss-pam-ldapd port no longer provides an option for SASL. This has
been sourced out to the new net/nss-pam-ldapd-sasl port, to accomodate
users using packages (see ports/162240). Users with openldap-sasl-client
installed are encouraged to change the port's origin to:
net/nss-pam-ldapd-sasl using their favorite ports management tool.
Example for portmaster:
portmaster -o net/nss-pam-ldapd-sasl nss-pam-ldapd
20120527:
AFFECTS: users of x11-toolkits/qt4-gui
AUTHOR: [email protected]
Qt started using the raster graphics system engine, which relies on
shared memory. Be sure to check pkg-message.
20120525:
AFFECTS: users of deskutils/kdepim4, deskutils/kdepim4-runtime
AUTHOR: [email protected]
kdepim4 has been updated to 4.8.3. For those who prefer old
kdepim-4.4.11.1 deskutils/kdepim44* ports have been added.
To stay with kdepim-4.4.11.1 run the following commands:
# portmaster -o deskutils/kdepim44-runtime kdepim-runtime-4\*
# portmaster -o deskutils/kdepim44 kdepim-4\*
20120525:
AFFECTS: users of KDE SC 4
AUTHOR: [email protected]
KDE SC ports have been updated to 4.8.3. Several ports were split,
thus manual intervention into update procedure is required:
# pkg_delete -f kde-runtime-\* ruby\*-kdebindings-korundum\* \
kalgebra-4\* kdeaccessibility-4\* kdeutils-4\* kde-baseapps-\* \
plasma-applet-icontasks\*
# portmaster -a
20120518:
AFFECTS: users of dns/poweradmin
AUTHOR: Edmondas Girkantas <[email protected]>
Some database changes have been made between version 2.1.4 and 2.1.5,
upgrading needs to be done manually by running the following SQL:
For MySQL users:
ALTER TABLE `zones` ADD `zone_templ_id` INT( 11 ) NOT NULL;
ALTER TABLE zones ENGINE = InnoDB;
ALTER TABLE zone_templ ENGINE = InnoDB;
ALTER TABLE zone_templ_records ENGINE = InnoDB;
For PostgreSQL users:
ALTER TABLE zones ADD zone_templ_id INT DEFAULT NULL;
Source: https://www.poweradmin.org/trac/wiki/ReleaseNotes/2.1.5
20120516:
AFFECTS: users of lang/php5
AUTHOR: [email protected]
PHP has been updated to 5.4. Suhosin patch has been disabled until the
new version will be released (soon). Suhosing extension will take more
time. LINKTHR option is now enabled by default, be sure to flag it if
you are updating using an old saved configuration. sqlite2 extension
has been permanently removed.
If you want to remain at PHP 5.3, a new port (lang/php53) has been
created for such purpose.
20120513:
AFFECTS: users of net-mgmt/smokeping
AUTHOR: [email protected]
Smokeping has been updated to 2.6.7, and the web server configuration
has changed. FastCGI is now preferred. Please check the documentation
that your web server configuration is OK.
20120512:
AFFECTS: users of textproc/p5-XML-SAX
AUTHOR: [email protected]
p5-XML-SAX (X-S) was split into p5-XML-SAX-Base (X-S-B) and p5-XML-SAX for
version 0.99. Since X-S-B now installs some files formerly installed by X-S
the package for X-S must be deinstalled before updating X-S.
# pkg_delete -fx p5-XML-SAX
# portmaster textproc/p5-XML-SAX
(users of pkgng can substitute pkg_delete with pkg delete)
20120511:
AFFECTS: users of graphics/xpdf
AUTHOR: [email protected]
In order to allow graphics/xpdf and graphics/poppler-utils to coexist,
graphics/xpdf binaries have been moved from ${LOCALBASE}/bin to
${LOCALBASE}/lib/xpdf. The symlink ${LOCALBASE}/bin/xpdf points to
${LOCALBASE}/lib/xpdf/xpdf. However the other utilities installed by
the xpdf port conflict with poppler-utils, no symlinks are maintained.
Applicaions and scripts which use the pdf* utilities provided by
graphics/xpdf must reference them using their new location, specify
${LOCALBASE}/lib/xpdf in $PATH, or use the same utilities provided by
graphics/poppler-utils.
20120510:
AFFECTS: users of devel/gitolite
AUTHOR: [email protected]
gitolite has been split into two ports: devel/gitolite for 3.x and
devel/gitolite2 for 2.x
gitolite 3.x is NOT "API" compatible with gitolite 2.x and requires
additional manual migration steps which can be found in the online
documentation.
http://sitaramc.github.com/gitolite/install.html#migr
Current users wishing to continue using gitolite 2.x should run:
# portmaster -o devel/gitolite2 gitolite
or
# portupgrade -o devel/gitolite2 gitolite
20120508:
AFFECTS: users of www/node and www/node-devel
AUTHOR: [email protected]
npm is a package manager for node. Starting with node 0.6.17 (www/node) and
node 0.7.8 (www/node-devel), we do not install bundled npm but provide a
separate port (www/npm). Please install www/npm if you need it.
20120430:
AFFECTS: users of www/py-google-api-python-client
AUTHOR: [email protected]
The port has been updated to 1.0.b8. This new version has important
changes which might break your code:
* apiclient.anyjson has moved to oauth2client.anyjson.
* Some calls, for example, taskqueue().lease() used to require
a parameter named body. In this new release only methods that
really need to send a body require a body parameter, and so
you may get errors about an unknown 'body' parameter in your call.
The solution is to remove the unneeded body={} parameter
See http://code.google.com/p/google-api-python-client/wiki/PyDoc for
more information.
20120426:
AFFECTS: users of editors/libreoffice
AUTHORS: [email protected]
LOCALIZED_LANG option has gone, localised packages are now available
separately, you can also use editors/libreoffice-i18n to pick the
localisation you want.
20120425:
AFFECTS: users of mail/postfix, mail/postfix2[6-8]
AUTHOR: [email protected]
The latest update to these ports adds support to turn off
the TLSv1.1 and TLSv1.2 protocols introduced in OpenSSL 1.0.1.
These protocols are known to cause inter-operability issues
with certain services, e.g. hotmail. If using TLS with Postfix,
please consult the RELEASE_NOTES for information about possible
workarounds.
20120423:
AFFECTS: users of astro/boinc-astropulse
AUTHOR: [email protected]
Astropulse has been updated to 6.01, which is a different application
than version 5.06. You need to have Astropulse v6 enabled in your
account under SETI@home preferences. It is also advisable to finish
and report existing Astropulse units before updating.
20120421:
AFFECTS: users of x11/xorg
AUTHOR: [email protected]
The default mesa has been updated to 7.6.1 and the default xorg-server
to 1.7.7.
A switch is available for people that want to use mesa 7.11.x and
xorg-server 1.10.6. This requires an nvidia card or Intel+KMS support.
If you have an intel card and can try these experimental KMS support
patches:
10/head with a patch: http://people.freebsd.org/~kib/drm/
FreeBSD stable/9 and releng/9.0:
http://lists.freebsd.org/pipermail/freebsd-x11/2012-April/011640.html
20120419:
AFFECTS: users of security/openssl
AUTHOR: [email protected]
The OpenSSL port has been updated to 1.0.1a. Please rebuild all
ports that depend on it.
If you use portmaster:
portmaster -r openssl
Or, if you would prefer a more gradual approach:
portmaster -w openssl (check the man page for more information)
If you use portupgrade:
portupgrade -fr security/openssl
20120418:
AFFECTS: Nobody
AUTHOR: [email protected]
FreeBSD 8.3 released.
20120418:
AFFECTS: users of www/firefox and mail/thunderbird
AUTHOR: [email protected]
Firefox and Thunderbird have been updated to 11.0. If you want to
stay with the Extended Support Release please use the new -esr
ports.
Firefox:
# portupgrade -o www/firefox-esr www/firefox
# portupgrade -o www/firefox-esr-i18n www/firefox-i18n (if installed)
or
# portmaster -o www/firefox-esr www/firefox
# portmaster -o www/firefox-esr-i18n www/firefox-i18n (if installed)
Thunderbird:
# portupgrade -o mail/thunderbird-esr mail/thunderbird
# portupgrade -o mail/thunderbird-esr-i18n \
mail/thunderbird-i18n (if installed)
or
# portmaster -o mail/thunderbird-esr mail/thunderbird
# portmaster -o mail/thunderbird-esr-i18n \
mail/thunderbird-i18n (if installed)
20120418:
AFFECTS: users of www/chpasswd
AUTHOR: [email protected]
Previous version of the chpasswd port put the configuration file
in the pkg-plist, causing it to be removed on deinstall.
Users are advised to make a backup copy of the configuration file
before upgrading. This has been fixed and will not happen anymore
in future updates.
20120415:
AFFECTS: users of irc/ircd-ratbox
AUTHOR: [email protected]
Ircd-ratbox has been updated to follow the current stable release
branch (3.0.x). All previous branches are no longer supported by the
ratbox team.
Users of ircd-ratbox are advised to create new ircd configuration
files based on the examples provided.
20120404:
AFFECTS: users of net-mgmt/net-snmp
AUTHOR: [email protected]
The net-snmp startup script now specifies a new pid_file to avoid a
conflict that existed with bsnmpd. As a result, the startup script
cannot find currently running versions of snmpd.
You will need to either stop the daemon before upgrading or locate the
PID of snmpd and manually kill it after upgrade. Then, start the daemon
as you normally would.
20120326:
AFFECTS: users of www/tomcat7
AUTHOR: [email protected]
Tomcat 7 startup script now uses 'jsvc' to monitor the daemon's process.
A few rc.conf variables has been changed, be sure to adapt your
configuration, if needed.
20120318:
AFFECTS: users of mail/dbmail
AUTHOR: [email protected]
dbmail 3.0 is now available.
There are a number of significant changes including Dependencies,
Config, Schema and Server changes.
Without required modifications, dbmail will not run and you will
no longer have access to your emails. See UPGRADING for details.
Don't forget to backup and fully test before upgrading.
To stick with version 2.2.x run:
# portupgrade -o mail/dbmail22 mail/dbmail
or
# portmaster -o mail/dbmail22 mail/dbmail
20120313:
AFFECTS: users of x11-toolkits/qt4-gui
AUTHOR: [email protected]
MIT-SHM problem (blank windows in Marble and KDE-Games) has been
fixed, kern.ipc.shm_allow_removed=1 is not needed anymore to
workaround it.
20120311:
AFFECTS: users of lang/perl5.8 and lang/perl5.10
AUTHOR: [email protected]
lang/perl5.8 and lang/perl5.10 have been restored from the Attic
in order to give a FreeBSD-style deprecation cycle. However, users
are advised to upgrade to perl5.12 as soon as feasible.
20120308:
AFFECTS: users of lang/perl5.8 and lang/perl5.10
AUTHOR: [email protected]
lang/perl5.8 and lang/perl5.10 have been removed since they've
been EOL upstream for 3yrs and 2yrs respectively. The default
of lang/perl5.12 has not changed (yet). Conditional checks for
perl < 5.12 have been removed. UNLESS you have PERL_VERSION=5.8.x
or PERL_VERSION=5.10.x in /etc/make.conf you need take no action.
If you do, you will have to recompile all perl dependant ports after
updating your ports tree. Please see entry 20110517 for help.
20120225:
AFFECTS: users of archivers/libarchive
AUTHOR: [email protected]
libarchive has been updated to version 3.0.3, with a shared library bump.
This requires dependent ports to be rebuilt.
# portmaster -r libarchive
or
# portupgrade -r archivers/libarchive
20120221:
AFFECTS: users of emulators/virtualbox-ose
AUTHOR: [email protected]
virtualbox-ose has been updated to 4.1.8 and requires the latest
devel/kBuild-devel now. It is only a build dependency so it is safe
to remove it before updating.
# pkg_delete -f kBuild-\*
20120220:
AFFECTS: users of graphics/libungif
AUTHOR: [email protected]
libungif is obsolete, please deinstall it and rebuild all ports using
it with graphics/giflib.
# portmaster -o graphics/giflib graphics/libungif
# portmaster -r giflib
or
# portupgrade -o graphics/giflib graphics/libungif
# portupgrade -rf giflib
20120216:
AFFECTS: users of multimedia/libvpx
AUTHOR: [email protected]
libvpx has been updated to version 1.0.0, with a shared library bump.
This requires dependencies to be rebuilt.
# portmaster -r libvpx
or
# portupgrade -r multimedia/libvpx
20120214:
AFFECTS: users of net/libexosip2
AUTHOR: [email protected]
libexosip2 has been updated with a shared library bump.
This requires dependencies to be rebuilt.
# portmaster -r libexosip2
or
# portupgrade -rf libexosip2-3.\*
20120214:
AFFECTS: users of devel/pcre
AUTHOR: [email protected]
Until all dependent ports have been updated you should update pcre in
a manner that will preserve its old shared library. For example:
# portmaster -w devel/pcre
or
# portupgrade devel/pcre
20120213:
AFFECTS: users of lang/ghc and */hs-*
AUTHOR: [email protected]
GHC has been updated to version 7.0.4, and Haskell Platform to version
2011.4.0.0, and other Haskell ports are also updated to their Haskell
Platform versions or latest versions.
To update all affected ports:
# portmaster -r lang/ghc
or
# portupgrade -r lang/ghc
20120210:
AFFECTS: users of mail/postfix
AUTHOR: Sahil Tandon <[email protected]>
Postfix 2.9.0 contains several major changes, some of which could
result in incompatible or unexpected behavior. Regardless of the
version from which you are upgrading, please carefully review the
RELEASE_NOTES before proceeding.
20120126:
AFFECTS: users of ftp/proftpd and ftp/proftpd-mysql
AUTHOR: Martin Matuska <[email protected]>
The proftpd port has been updated to 1.3.4 and changed to use
dynamically loadable modules. Please add corresponding LoadModule
directives to your configuration file, like in the following example:
LoadModule mod_tls.c
The modules mod_sql_mysql and mod_sql_postgres are now outside of the
main proftpd port:
databases/proftpd-mod_sql_mysql
databases/proftpd-mod_sql_postgres
The proftpd-mysql port has been removed, use the alternative port:
databases/proftpd-mod_sql_mysql
20120121:
AFFECTS: users of multimedia/vdr
AUTHOR: Juergen Lock <[email protected]>
The vdr ports have been updated to 1.7.22 which involves at least
two changes:
- svdrpsend.pl is now called svdrpsend.