-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathUPDATING
8851 lines (6521 loc) · 292 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.
20130920:
AFFECTS: Users of ports
AUTHOR: bapt@FreeBSD.org
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: bdrewery@FreeBSD.org
Optional Stack Protector [1] support has been added with the WITH_SSP
knob.
This currently is only supported on FreeBSD 10 amd64/i386 and earlier
releases on amd64 only.
The default SSP_CLFAGS is -fstack-protector, but -fstack-protector-all
may optionally be set instead.
To enable support, add WITH_SSP=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: madpilot@FreeBSD.org
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: sunpoet@FreeBSD.org
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: dinoex@FreeBSD.org
The on disk format has changed.
Please make sure the queue is empty before you update.
20130817:
AFFECTS: users of lang/python*
AUTHOR: mva@FreeBSD.org
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: stephen@FreeBSD.org
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: bsam@FreeBSD.org
Since PKGVERSION=4.5.13_1 the default file destination has changed from
${PYTHON_SITELIBDIR}/eric4 to ${DATADIR}.
20130731:
AFFECTS: users of glib20
AUTHOR: kwm@FreeBSD.org
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: rene@FreeBSD.org
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: bjk@FreeBSD.org
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: hrs@FreeBSD.org
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: dvl@FreeBSD.org
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: glarkin@FreeBSD.org
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: wg@FreeBSD.org
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: kwm@FreeBSD.org
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: mat@FreeBSD.org
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: madpilot@FreeBSD.org
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: ohauer@FreeBSD.org
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 ...
# portmaster -r apr
or
# portupgrade -r devel/apr1
or
# pkg install -fR devel/apr1
20130705:
AFFECTS: users of x11/kdelibs4
AUTHOR: kde@FreeBSD.org
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: db@FreeBSD.org
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: bdrewery@FreeBSD.org
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: timur@FreeBSD.org
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: tota@FreeBSD.org
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: melvyn@magemana.nl
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: ohauer@FreeBSD.org
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: tijl@FreeBSD.org
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: az@FreeBSD.org
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: naddy@FreeBSD.org
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: wxs@FreeBSD.org
FreeBSD 8.4 released.
20130604:
AFFECTS: users of lang/ghc and */hs-*
AUTHOR: haskell@FreeBSD.org
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: wg@FreeBSD.org
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: rakuco@FreeBSD.org
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: swills@FreeBSD.org
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: swills@FreeBSD.org
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: brd@FreeBSD.org
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 <ports.maintainer@evilphi.com>
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 X.Org ports
AUTHOR: zeising@FreeBSD.org
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: tj@FreeBSD.org
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
up your data before upgrading.
20130519:
AFFECTS: users of net/activemq
AUTHOR: tj@FreeBSD.org
The JVM used by activemq has changed to OpenJDK 7. You will need to
make sure javavmwrapper is configured to use the installed
java/openjdk7 JVM.
20130512:
AFFECTS: users of devel/hs-git-annex
AUTHOR: haskell@FreeBSD.org
On FreeBSD, git-annex incorrectly calculated SHA256 hashes for files
added to the annex repository due to the BSD-style output of
/sbin/sha256. The result of this is silent data corruption.
This problem has been fixed, but every file stored in an annex
repository will fail a `git-annex fsck` after the upgrade. Thus,
before updating, it is wise to issue the command below and restore the
files.
$ git-annex uninit
Corruptions can then be found by finding all files with the same hash.
Note that only files that were mishashed to the same location are a
problem.
20130511:
AFFECTS: users of TeX
AUTHOR: hrs@FreeBSD.org
One can now choose TeXLive or teTeX by using TEX_DEFAULT.
Specifying TEX_DEFAULT=texlive, almost all of ports which use TeX
will install and depend on TeXLive-based ones. Note that the
default value is still "tetex" and the two cannot coexist. You need
to remove all of the TeX-related packages based on teTeX to try
TeXLive.
20130507:
AFFECTS: users of comms/usbmuxd or comms/libimobiledevice
AUTHOR: avilla@FreeBSD.org
libusbmuxd and libimobiledevice versions have changed. Please, rebuild
all the ports that depend on them:
# portmaster -r usbmuxd
or
# portupgrade -fr comms/usbmuxd
or
# pkg install -fR comms/usbmuxd
20130507:
AFFECTS: users of devel/libplist
AUTHOR: avilla@FreeBSD.org
libplist Python bindings were split from the main port. To get them you
need to install devel/py-libplist.
20130506:
AFFECTS: users of TeX
AUTHOR: hrs@FreeBSD.org
TeXLive ports have been imported. Although most of ports still depend
on teTeX at this moment, they will be converted to use TeXLive.
The directory layout of them is as follows. Please use print/texlive-full
if you are not familiar with how each component works. Finer-grained
ports will be added (specifically, meta ports for smaller installation
and so on). Note that the full installation needs around 3GB of disk space.
teTeX-based ports and TeXLive are mutually exclusive. This means TeXLive
ports cannot be installed when teTeX is already installed. You need
to remove all of the TeX-related packages based on teTeX to try TeXLive.
Migration procedure will be announced when conversion of the port
dependency is completed.
* Meta port
- print/texlive-full: meta port to install all of the TeXLive components
* Libraries
- devel/tex-kpathsea: kpathsea library
- devel/tex-web2c: WEB2C toolchain and TeX engines
- print/tex-ptexenc: character code conversion library for pTeX
* Base part of the TeXLive
- print/texlive-base: binary programs in TeXLive
- print/texlive-texmf: macro and font data in TeXLive
- print/texlive-infra: tlmgr dependency (Perl modules)
- print/tex-formats:
* TeX Formats
- print/tex-formats: TeX, LaTeX, PDFTeX, AMSTeX, ConTeXT, CSLaTeX,
EplainTeX, METAFONT, MLTeX, PDFTeX, TeXsis
- print/tex-aleph: Aleph/Lambda
- print/tex-xetex: XeTeX
- print/tex-luatex: LuaTeX
- print/tex-jadetex: JadeTeX
- print/tex-xmltex: XMLTeX
- japanese/tex-ptex: pTeX
* DVI ware
- print/tex-xdvik: XDvi
20130503:
AFFECTS: users of security/libgcrypt and any port that depends on it
AUTHOR: ehaupt@FreeBSD.org
The libgcrypt port has been updated to 1.5.2 and all shared libraries
versions have been bumped. So you need to rebuild all applications that
depend on libgcrypt. Do something like:
# portmaster -r libgcrypt
or
# portupgrade -rf libgcrypt
Alternatively, you may install sysutils/bsdadminscripts, run pkg_libchk and
rebuild all detected ports:
# pkg_libchk | tee /tmp/rebuild
# awk -F':' '/libgcrypt.so/ {print $1}' /tmp/rebuild | sort | uniq \
| xargs portmaster -D
20130502:
AFFECTS: users of ports-mgmt/pkg, ports-mgmt/poudriere, ports-mgmt/tinderbox
AUTHOR: bdrewery@FreeBSD.org
This only affects people who are _building_ binary packages for pkgng. If you
are building from ports please ignore this. This step is optional.
It is recommended to rebuild all packages and then have your users run 'pkg
check -Ba' and 'pkg upgrade' on their servers once. This will allow the new
shlib tracking to reinstall packages that have changed shlib requirements.
20130427:
AFFECTS: users of print/a2ps-{a4,letter}, print/c2ps-{a4,letter}, print/lprps-{a4,letter}, or graphics/jpeg2ps-{a4,letter}
AUTHOR: hrs@FreeBSD.org
The affected ports have been converted to use libpaper for the default paper
size as print/psutils did. For more detail, see 20130424 below.
20130424:
AFFECTS: users of print/psutils-a4 or print/psutils-letter
AUTHOR: hrs@FreeBSD.org
print/psutils-a4 and print/psutils-letter have been merged into a single port
print/psutils. The default paper size in psnup(1), psresize(1), and
pstops(1) is now selected via an environment variable and/or a configuration
file of libpaper(3). For more detail, see papersize(5) and paperconfig(8)
manual page. If you prefer A4 or letter size by default as the old
version did, please install print/papersize-default-a4 or
print/papersize-default-letter, which installs a papersize configuration
file without manual configuration.
20130423:
AFFECTS: users of mail/postfix
AUTHOR: sahil@FreeBSD.org
This is a significant update; so, please carefully review the
RELEASE_NOTES to identify which incompatible changes impact your
environment.
20130408:
AFFECTS: users of astro/libkgeomap, graphics/digikam-kde4, graphics/kipi-plugins-kde4
AUTHOR: makc@FreeBSD.org
Digikam ports have been updated and split. Previous versions have
to be deinstalled before upgrade:
# pkg_delete -f digikam-2\* kipi-plugins-2\* libkgeomap-2\*
or
# pkg delete -fg digikam-2\* kipi-plugins-2\* libkgeomap-2\*
20130403:
AFFECTS: users of mail/thunderbird-esr*
AUTHOR: flo@FreeBSD.org
Mozilla stopped providing 2 versions of thunderbird. The only one lives
in mail/thunderbird if you are using thunderbird-esr please switch to
thunderbird by running on of the following commands.
# portupgrade -o mail/thunderbird mail/thunderbird-esr
# portupgrade -o mail/thunderbird-i18n \
mail/thunderbird-esr-i18n (if installed)
or
# portmaster -o mail/thunderbird mail/thunderbird-esr
# portmaster -o mail/thunderbird-i18n \
mail/thunderbird-esr-i18n (if installed)
20130331:
AFFECTS: users of */hs-*
AUTHOR: haskell@FreeBSD.org
Due to some unexpected dynamic linking problems, Haskell Cabal ports with
binaries that link to their own libraries may not work. With default
configuration, the following ports are known to have this problem:
Agda, BNFC, pandoc, and uuagc. (Their port revision are now bumped.)
In general, it is recommended to rebuild the port if you are
experiencing that the corresponding binary will not start, e.g.:
% agda
Shared object "libHSAgda-2.3.2-ghc7.4.2.so" not found, required by "agda"
20130329:
AFFECTS: users of ports-mgmt/portmaster
AUTHOR: bdrewery@FreeBSD.org
Portmaster 3.15 should be skipped if you are not using pkgng and are on
9.1, 8-STABLE, 9-STABLE, or CURRENT. It may require manual upgrading to
3.16:
# make -C /usr/ports/ports-mgmt/portmaster build deinstall install clean
20130329:
AFFECTS: users of net/kio-upnp-ms
AUTHOR: avilla@FreeBSD.org
A wrong setting in x11/kdelibs4 was causing some unlisted files to
be installed. Remember to delete them after updating x11/kdelibs4 to
4.10.1_1:
# rm /usr/local/kde4/bin/upnpmstest
# rm /usr/local/kde4/bin/stattest
# rm /usr/local/kde4/bin/recursive_upnp
20130327:
AFFECTS: users of mail/opensmtpd
AUTHOR: ashish@FreeBSD.org
Privilege separation is enabled in OpenSMTPD port from 5.3,1. Users
upgrading from version 201303011853 or earlier are required to follow
the instructions in pkg-message to fix the filesystem permissions on
OpenSMTPD spool directories.
20130327:
AFFECTS: users of KDE SC 4
AUTHOR: kde@FreeBSD.org
KDE SC ports have been updated to 4.10.1. kdelibs4 does no longer
directly use aspell or hspell, to regain their functionality enable
corresponding option in textproc/enchant.
A number of ports have been split and must be deinstalled before
upgrading:
# pkg_delete -f kdegames-4\* kde-workspace-4\* kde-wallpapers-4\*
or
# pkg delete -fg kdegames-4\* kde-workspace-4\* kde-wallpapers-4\*
20130326:
AFFECTS: users of deskutils/strigi
AUTHOR: makc@FreeBSD.org
Strigi port has been split on libraries, client, daemon, and utilities.
Manual update is required:
# cd /usr/ports/deskutils/strigi && make deinstall && \
make clean && make install clean
or
# pkg delete -f strigi && pkg upgrade && pkg install deskutils/strigi
20130323:
AFFECTS: users of archivers/libarchive
AUTHOR: glewis@FreeBSD.org
The archivers/libarchive port has been updated to 3.1.2. The shared library
version has changed from 12 to 14. Please rebuild all ports that depend on
it:
# portmaster -r libarchive
or
# portupgrade -fr archivers/libarchive
or
# pkg install -fR archivers/libarchive
20130319:
AFFECTS: users of ports
AUTHOR: bdrewery@FreeBSD.org
Ports now use ports-mgmt/dialog4ports to render and interact with the
options dialog in 'make config'. This will be automatically built and
installed on the first use.
dialog4ports provides a new UI able to represent all the features provided
by the new options framework.
20130319:
AFFECTS: users of net/freerdp
AUTHOR: fluffy@FreeBSD.org
The net/freerdp package was changed API and require to deinstall previous
version first to avoid build conflicts.
20130317:
AFFECTS: users of graphics/poppler
AUTHOR: gnome@FreeBSD.org
The graphics/poppler has been updated to 0.22.2. The shared library version
has changed from 18 to 34. Please rebuild all ports that depends on it:
# portmaster -r poppler-0
or
# portupgrade -fr graphics/poppler
or
# pkg install -fR graphics/poppler
20130317:
AFFECTS: users of devel/protobuf
AUTHOR: vanilla@FreeBSD.org
The devel/protobuf has been updated to 2.5.0. The shared library version
has changed from 7 to 8. Please rebuild all ports that depends on it:
# portmaster -r protobuf
or
# portupgrade -fr devel/protobuf
or
# pkg install -fR devel/protobuf
20130316:
AFFECTS: users of converters/libiconv and devel/gettext
AUTHOR: bapt@FreeBSD.org
libiconv now handles the lib/charset.alias file instead of devel/gettext.
If you are using pkgng 'and' upgrading from source with portupgrade or
portmaster, first delete gettext, upgrade libiconv, then reinstall gettext.
This will break sudo, so you *must* do this in a root shell (sudo -i)
if you use sudo.
# pkg delete -f devel/gettext
# portmaster converters/libiconv devel/gettext
or
# pkg delete -f devel/gettext
# portupgrade converters/libiconv devel/gettext
20130308:
AFFECTS: users of net-im/folks and devel/libgee
AUTHOR: kwm@FreeBSD.org
folks and libgee have been repocopied net-im/folks04 and devel/libgee06
respectively. Please do the following according to package manager used.
# portmaster -o devel/libgee06 devel/libgee
# portmaster -o net-im/folks04 net-im/folks
or
# portupgrade -fo devel/libgee06 devel/libgee
# portupgrade -fo net-im/folks04 net-im/folks
or
# pkg set -o devel/libgee:devel/libgee06
# pkg set -o net-im/folks:net-im/folks04
20130307:
AFFECTS: users of textproc/elasticsearch
AUTHOR: tj@FreeBSD.org
textproc/elasticsearch has been updated to 0.20.5. This update also
changes the required JDK to OpenJDK 7 as there are known issues when
running on a Java 1.6 JDK.
20130307:
AFFECTS: users of audio/liblastfm
AUTHOR: nivit@FreeBSD.org
The audio/liblastfm has been updated to 1.0.6. The shared library version
has changed from 0 to 1. Please rebuild all ports that depends on it:
If you use portmaster:
portmaster -r liblastfm
If you use portupgrade:
portupgrade -fr audio/liblastfm
If you use pkgng with binary packages:
pkg install -fR audio/liblastfm
20130305:
AFFECTS: users of devel/py-setuptools (i.e you)
AUTHOR: rm@FreeBSD.org
devel/py-setuptools was replaced with devel/py-distribute. Please do