forked from freebsd/freebsd-ports
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUPDATING
8098 lines (5967 loc) · 268 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.
20130427:
AFFECTS: users of print/a2ps-{a4,letter}, print/c2ps-{a4,letter}, print/lprps-{a4,letter}, or graphics/jpeg2ps-{a4,letter}
AUTHOR: [email protected]
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: [email protected]
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: [email protected]
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: [email protected]
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: [email protected]
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: [email protected]
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: [email protected]
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: [email protected]
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: [email protected]
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: [email protected]
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: [email protected]
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: [email protected]
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: [email protected]
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: [email protected]
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: [email protected]
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: [email protected]
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: [email protected]
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: [email protected]
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: [email protected]
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: [email protected]
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: [email protected]
devel/py-setuptools was replaced with devel/py-distribute. Please do
the following according to package manager used. py-setuptools port
will be removed shortly.
# portmaster -o devel/py-distribute devel/py-setuptools
or
# portupgrade -fo devel/py-distribute devel/py-setuptools
or
# pkg set -o devel/py-setuptools:devel/py-distribute
# pkg install -f devel/py-distribute
20130226:
AFFECTS: users of textproc/apache-solr
AUTHOR: [email protected]
textproc/apache-solr has beed repocopied to textproc/apache-solr3.
If you need to continue with the old stable version please run
# portmaster -o textproc/apache-solr3 textproc/apache-solr
or
# portupgrade -fo textproc/apache-solr3 textproc/apache-solr
or
# pkg set -o textproc/apache-solr:textproc/apache-solr3
20130218:
AFFECTS: users of net/samba4-devel
AUTHOR: [email protected]
The port was renamed into net/samba4 and is going to replace older
development version of Samba4. You can upgrade it with:
# portmaster -o net/samba4 net/samba4-devel
In case you want to upgrade from net/samba36 make sure, that you've
made backup of /usr/local/etc/smb.conf and the content of /var/db/samba/
directory.
There is no direct upgrade path from Samba3 to Samba4, but you can
always try:
# portmaster -o net/samba4 net/samba36
Make sure you've read instructions from the supplied README.FreeBSD
file and read all the relevant pages on http://wiki.samba.org/
We still miss necessary support for Samba4 from base ntpd and bind9,
port versions are also are not ready yet, but been worked on.
Please note, that Samba4 is still in it's early days, so there are
bugs both from my side and it's own, so be careful with placing it
into production.
20130206:
AFFECTS: users of sysutils/boxbackup
AUTHOR: [email protected]
The default location of the configuration files changed from
/usr/local/etc/box to /usr/local/etc/boxbackup. Move your
configuration after upgrading:
mv /usr/local/etc/box /usr/local/etc/boxbackup
20130206:
AFFECTS: users of x11/wbar
AUTHOR: [email protected]
wbar has been updated to 2.3.4. The new version uses a different icon
for the dock background, so you have to replace the old one in your
config file ~/.wbar
Replace
i: /usr/local/share/pixmaps/wbar/osxbarback.png
with
i: /usr/local/share/pixmaps/wbar/dock.png
20130206:
AFFECTS: users of security/libtasn1 and any port that depends on it
AUTHOR: [email protected]
libtasn1 has been updated to 2.14 and all shared libraries versions have
been bumped. So you need to rebuild all applications that depend on
libtasn1.
If you use portmaster:
portmaster -r libtasn1
If you use portupgrade:
portupgrade -fr security/libtasn1
If you use pkgng with binary packages:
pkg install -fR security/libtasn1
20130206:
AFFECTS: users of Tcl/Tk
AUTHOR: [email protected]
The following ports have been removed, as threads and modules are
now included in the main ports:
- lang/tcl84-thread
- lang/tcl85-thread
- lang/tcl86-thread
- lang/tcl-modules
- x11-toolkits/tk84-thread
- x11-toolkits/tk85-thread
- x11-toolkits/tk86-thread
Please remove them ...
If you use pkgng:
pkg delete -f <port>
If you use pkg_* tools
pkg_delete -f <port>
... before rebuilding all ports that depend on them:
If you use portmaster:
portmaster -w -r <port>
If you use portupgrade:
portupgrade -Ofr <origin/port>
If you use pkgng with binary packages:
pkg install -fR <origin/port>
20130205:
AFFECTS: users of lang/ghc and */hs-*
AUTHOR: [email protected]
Note that the recent devel/libffi update caused some breakage in the Haskell
ports with the DYNAMIC option enabled. The problem has been identified and
fixed since then. All Haskell ports have been updated to their latest stable
versions or bumped as DYNAMIC is enabled by default.
Hence it is recommended to rebuild or reinstall all ports depending on GHC
by one of the following commands:
# portmaster -w -r ghc
or
# portupgrade -fr lang/ghc
or
# pkg install -fR lang/ghc
20130205:
AFFECTS: users of editors/libreoffice
AUTHOR: [email protected]
LibreOffice has been updated to 3.6.5 with a bundle version of libcmis. The
build will fail if you sill have net/libcmis 0.1 installed. Before upgrading
LibreOffice you should either first remove libcmis from your system or uprade
it to version 0.3.
20130205:
AFFECTS: users of security/gnutls and any port that depends on it
AUTHOR: [email protected]
gnutls has been updated to 2.12.23 and all shared libraries versions have
been bumped. So you need to rebuild all applications that depend on
gnutls.
If you use portmaster:
portmaster -r gnutls
If you use portupgrade:
portupgrade -fr security/gnutls
If you use pkgng with binary packages:
pkg install -fR security/gnutls
20130204:
AFFECTS: users of sysutils/zfstools
AUTHOR: [email protected]
The zfstools package has dropped the 'rubygem-' prefix and now installs
its binary files to PREFIX/sbin instead of PREFIX/bin.
20130204:
AFFECTS: users of multimedia/qt4-phonon, multimedia/qt4-phonon-gst
AUTHOR: [email protected]
qt4-phonon has been deprecated in favour of multimedia/phonon. Remove
WITH_QT_PHONON from your make.conf and replace qt4-phonon with
multimedia/phonon:
# portmaster -o multimedia/phonon multimedia/qt4-phonon
# portmaster -o multimedia/phonon-gstreamer multimedia/qt4-phonon-gst
20130204:
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 by upstream. You will have to recompile all perl dependant
ports after updating your ports tree. Please see entry 20110517 for help.
20130204:
AFFECTS: users of dns/poweradmin
AUTHOR: Edmondas Girkantas <[email protected]>
Some database changes have been made between version 2.1.5 and 2.1.6,
upgrading needs to be done manually by running the following SQL:
For MySQL users:
ALTER TABLE users MODIFY username VARCHAR(64) NOT NULL DEFAULT '0';
ALTER TABLE users MODIFY password VARCHAR(128) NOT NULL DEFAULT '0';
For PostgreSQL users:
ALTER TABLE users ALTER COLUMN username TYPE VARCHAR(64);
ALTER TABLE users ALTER COLUMN password TYPE VARCHAR(128);
20130203:
AFFECTS: users of KDE SC 4
AUTHOR: [email protected]
KDE SC ports have been updated to 4.9.5. kdemultimedia4, kdenetwork4,
kde-runtime and kde-workspace ports have been split, they must be
deinstalled before running any port upgrade tool:
# pkg_delete -f kdemultimedia-4\* kdenetwork-4\* \
kde-workspace-4\* kde-runtime-4\*
20130202:
AFFECTS: users of net-p2p/deluge
AUTHOR: [email protected]
deluge port had switched to using libtorrent-rasterbar 0.16 as backend. Since
both of the versions of libtorrent are conflicting with each other, you need
to deinstall libtorrent-rasterbar-15 and libtorrent-rasterbar-15-python first
and then update deluge as usual. Please also keep in mind, that deluge does
not work via http-proxy when libtorrent-rasterbar 0.16 is used.
20130131:
AFFECTS: users of devel/boost-libs
AUTHOR: [email protected]
boost has been updated to 1.52.0. Please rebuild all ports that depends
on it:
If you use portmaster:
portmaster -w -r boost-libs
If you use portupgrade:
portupgrade -fr devel/boost-libs
If you use pkgng with binary packages:
pkg install -fR devel/boost-libs
20130129:
AFFECTS: users of textproc/elasticsearch
AUTHOR: [email protected]
elasticsearch has been updated to 0.20.4. This upgrade requires a
full cluster restart after installation.
Upgrade steps:
1) Shutdown all cluster nodes
2) Install elasticsearch update
3) Start all cluster nodes
20130128:
AFFECTS: users of libffi
AUTHOR [email protected]
libffi has been updated to 3.0.11. Please rebuild all ports that
depends on it:
If you use portmaster:
portmaster -w -r libffi
If you use portupgrade:
portupgrade -fr devel/libffi
If you use pkgng with binary packages:
pkg install -fR devel/libffi
20130121:
AFFECTS: users of mail/opensmtpd
AUTHOR: [email protected]
Please flush your mail queue before updating to version 201301191220.
20130116:
AFFECTS: users of games/py-anki
AUTHOR: [email protected]
games/py-anki has been removed upstream and merged with games/anki.
Users of games/py-anki, from now must use games/anki.
20130114:
AFFECTS: users of www/hiawatha
AUTHOR: [email protected]
php-fcgi has been removed upstream from hiawatha and is not supported anymore.
It is recommended to move to another FastCGI implementation, e.g. PHP-FPM
(lang/php5).
20130113:
AFFECTS: users of security/openvpn*
AUTHOR: [email protected]
security/openvpn has been upgraded to the IPv6-capable v2.3.0.
This upgrade moves easy-rsa into a separate package in
security/easy-rsa that is pre-selected as default run-time dependency,
and changes installed file layout a bit.
security/openvpn22 retains the prior OpenVPN 2.2.2 version.
If you want to continue using this version, use one of these commands:
# portmaster -o security/openvpn22 security/openvpn
or
# portupgrade -o security/openvpn22 security/openvpn
or
# pkg set -o security/openvpn:security/openvpn22
security/openvpn20 has been marked deprecated and to be removed
in half a year's time. Please migrate to a newer version soonish.
20130110:
AFFECTS: everyone using csup(1), net/cvsup, or cvs(1) to update the
ports tree
AUTHOR: [email protected]
On February 28, 2013, the CVSup and CVS services will end:
http://lists.freebsd.org/pipermail/freebsd-ports-announce/2012-September/000026.html
csup(1), net/cvsup, and cvs(1) will no longer be able to update the
ports tree. Please switch to one of the alternate update methods of
portsnap(8) or devel/subversion before that time. The Handbook has
information on using these update methods:
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/ports-using.html
20130108:
AFFECTS: users of devel/libvanessa_socket, mail/perdition
AUTHOR: [email protected]
The update of devel/libvanessa_socket to 0.0.12 (used by Perdition)
adds IPv6 support. If the hostname in bind_address has both IPv4 and
IPv6 addresses in DNS, then Perdition will ONLY listen on IPv6.
If you prefer to continue to use IPv4, you need to change the
bind_address in /usr/local/etc/perdition/perdition.conf to use an
explicit IPv4 address. This can be in addition to, or instead of,
the current hostname, depending on whether you want to use IPv6 or
not. If your Perdition server does not have an IPv6 address
listed in DNS, this change does not affect you.
20130108:
AFFECTS: users of sysutils/cfengine*
AUTHOR: [email protected]
sysutils/cfengine has been created as a master port for the set of
sysutils/cfengine* ports. Users interested in tracking the latest
stable branch of cfengine should update their port origins to use
the new port, for example:
# portmaster -o sysutils/cfengine sysutils/cfengine33
or
# portupgrade -fo sysutils/cfengine sysutils/cfengine33
or
# pkg set -o sysutils/cfengine33:sysutils/cfengine
Users that switch their port origin and later wish to remain on
a particular cfengine release can override the default version by
adding CFENGINE_VERSION to /etc/make.conf, where CFENGINE_VERSION
is a value from:
# make -V VERSIONS
20130103:
AFFECTS: users of textproc/docproj*
AUTHOR: [email protected]
textproc/docproj no longer requires WITH_JADETEX to be set to 'yes' or
'no', and by default, will enable the JADETEX dependencies.
The textproc/docproj-jadetex port has been removed as a result of this
change.
Users that have installed textproc/docproj and have set
WITH_JADETEX=no during compile time should update the package origin
to use textproc/docproj-nojadetex:
# portmaster -o textproc/docproj textproc/docproj-nojadetex
or
# portupgrade -fo textproc/docproj textproc/docproj-nojadetex
or
# pkg set -o textproc/docproj-nojadetex:textproc/docproj
Users that have installed textproc/docproj-jadetex should update the
package origin to use the textproc/docproj port:
# portmaster -o textproc/docproj textproc/docproj-jadetex
or
# portupgrade -fo textproc/docproj textproc/docproj-jadetex
or
# pkg set -o textproc/docproj-jadetex:textproc/docproj
Users that have installed textproc/docproj and have set
WITH_JADETEX=yes will not need to make any changes.
20130103:
AFFECTS: users of audio/baresip
AUTHOR: [email protected]
Baresip is tightly linked to the versions of audio/re and audio/rem, and
will not build against different versions.
To update without problems, the -R flag for portupgrade is mandatory, or
build will fail. Portmaster and pkgng will handle this correctly.
20130103:
AFFECTS: users of emulators/virtualbox-ose
AUTHOR: [email protected]
VirtualBox has been updated and does now depend on devel/kBuild instead
of devel/kBuild-devel. Both are in conflict with each other so this has
to be resolved manually. kBuild is only a build dependency so it is safe
to remove installed kBuild before updating.
# pkg_delete -f kBuild-\*
20130102:
AFFECTS: users of mail/opensmtpd
AUTHOR: [email protected]
OpenSMTPD port has been updated to the latest portable snapshot. There
has been several changes to the configuration between the last version
and this version, which requires configuration file need to be reviewed.
20121229:
AFFECTS: users of devel/libical
AUTHOR: [email protected]
The devel/libical has been updated to 0.48. The shared library version has
been changed from 44 to 0. Please rebuild all ports that depends on it:
If you use portmaster:
portmaster -r libical
If you use portupgrade:
portupgrade -fr devel/libical
If you use pkgng with binary packages:
pkg install -fR devel/libical
20121228:
AFFECTS: users of databases/innotop, multimedia/zoneminder
net-mgmt/netdot, ports-mgmt/tinderbox, ports-mgmt/tinderbox-devel
sysutils/watchmen, www/MT
The above mentioned ports were converted to depend on
databases/p5-DBD-mysql. That will cause messages like
===> p5-DBD-mysql-4.021 conflicts with installed package(s):
p5-DBD-mysql55-4.021
To prevent this run one of the following commands to fix the
dependencies.
# portmaster -o databases/p5-DBD-mysql databases/p5-DBD-mysql55
or
# portupgrade -fo databases/p5-DBD-mysql databases/p5-DBD-mysql55
or
# pkg set -o databases/p5-DBD-mysql55:databases/p5-DBD-mysql
20121220:
AFFECTS: users of lang/ghc and */hs-*
AUTHOR: [email protected]
Note that the Glorious Glasgow Haskell Compiler has been updated to
version 7.4.2.
Please rebuild or reinstall all dependent ports by issuing one of the
following commands, depending on the tool used:
# portmaster -w -r ghc
or
# portupgrade -fr lang/ghc
or
# pkg install -fR lang/ghc
20121218:
AFFECTS: users of icu
AUTHOR [email protected]
icu has been updated to 50.1. Please rebuild all ports that depends on it:
If you use portmaster:
portmaster -w -r icu
If you use portupgrade:
portupgrade -fr devel/icu
If you use pkgng with binary packages:
pkg install -fR devel/icu
20121212:
AFFECTS: users of openldap24-client who uses SASL
AUTHOR: Xin Li <[email protected]>
There is a change in the openldap24-client port which removes the SASL
option. If the user previously install openldap24-client, but enabled
SASL from the config menu, the user would have to replace it with
openldap24-sasl-client.
Note that this only affects those who manually set SASL from the menu,
most of the users are not affected.
If you use portmaster:
portmaster -o net/openldap24-sasl-client openldap24-client
If you use portupgrade:
portupgrade -fo net/openldap24-sasl-client openldap24-client
If you use pkgng with binary packages:
pkg set -o net/openldap24-client:net/openldap24-sasl-client
20121212:
AFFECTS: users of horde-* applications
AUTHOR: Martin Matuska <[email protected]>
Horde3 has reached EOL and to make place for new horde application versions
all old horde3 applications have been renamed to use the "horde3-" prefix.
20121211:
AFFECTS: users of graphics/ImageMagick
AUTHOR: [email protected]
The ImageMagick library has been updated to version 6.8.0-7. Please
rebuild all ports that depend on it.
If you use portmaster:
portmaster -w -r ImageMagick
If you use portupgrade:
portupgrade -fr graphics/ImageMagick
If you use pkgng with binary packages:
pkg install -fR graphics/ImageMagick
20121211:
AFFECTS: users of devel/pcre
AUTHOR: [email protected]
The pcre library has been updated to version 8.32. Please
rebuild all ports that depend on it.
If you use portmaster:
portmaster -w -r pcre
If you use portupgrade:
portupgrade -fr devel/pcre
If you use pkgng with binary packages:
pkg install -fR devel/pcre
20121210:
AFFECTS: users of security/cyrus-sasl2
AUTHOR: [email protected]
The cyrus-sasl2 library has been updated to version 2.1.26. Please
rebuild all ports that depend on it.
If you use portmaster:
portmaster -w -r cyrus-sasl-
If you use portupgrade:
portupgrade -fr security/cyrus-sasl2
20121202:
AFFECTS: Users of www/owncloud
AUTHOR: [email protected]
www/owncloud includes the entire WWWDIR directory structure in pkg-plist.
This means that if you upgrade it, your config files are added to pkg-plist,
and are then removed on the next deinstall.
This issue has been fixed, but you must back up your install of owncloud and
reinstall to avoid data loss;
# cd /usr/ports/www/owncloud
# tar cfC /tmp/owncloud.tar `make -VWWWDIR` .
# make deinstall
# tar xfC /tmp/owncloud.tar `make -VWWWDIR`
# make install clean && rm /tmp/owncloud.tar
20121201:
AFFECTS: Users of www/typo3
AUTHOR: Helmut Ritter <[email protected]>
www/typo3 has been repocopied to www/typo347. If you need to continue with
the old stable version please run
# portmaster -o www/typo347 www/typo3
or
# portupgrade -fo www/typo347 www/typo3
or
# pkg set -o www/typo3:www/typo347
20121128:
AFFECTS: Users of irc/znc
AUTHOR: [email protected]
znc has been updated to 1.0. This introduces some major changes to its
functionality. As a result, if you are upgrading from a previous version
you need to be aware that znc will automatically modify your
configuration file to incorporate support for the new functionality.
Users are recommended to take a backup of their configuration file
before running this new version.
The SASL option has been renamed to CYRUS following a rename of the
associated module. Additionally, a number of modules have been removed
or renamed in this release.
Modules that were classed as Extra modules in previous versions are now
built as standard. The EXTRA option has been removed accordingly.
Please refer to the following URL for detailed information regarding all
changes in this release:
http://wiki.znc.in/ChangeLog/1.0
20121128:
AFFECTS: Users of www/opera
AUTHOR: [email protected]
If you are running KDE and you are using KDE's File dialog toolkit, and if
your Opera crashes on start with a 'libpng error: incorrect data check'
you can work around it by setting 'Dialog Toolkit=4' in your
.opera/operaprefs.ini [File Selector] section.
20121112:
AFFECTS: Users of devel/git
AUTHOR: [email protected]
The git-daemon(1) process now runs as the git_daemon user. Please make
sure that this user has appropriate permissions to the repositories.
20121109:
AFFECTS: FreeBSD < 9.1 users of syslog-ng >= 3.3.6
AUTHOR: [email protected]
Syslog-ng version 3.3.6 changed the way how /dev/kmsg is read. If you
don't use the system() source (which configures it automatically),
please make sure, that in the kmsg related line follow-freq(1) is used
instead of the previously default follow-freq(0).
20121109:
AFFECTS: users of devel/py-liblarch_gtk deskutils/gtg
AUTHOR: [email protected]
Code of py-liblarch_gtk has been merged into py-liblarch 2.1.0. To avoid
any conflicts, user need to remove py-liblarch_gtk before the update of
py-liblarch.
20121105:
AFFECTS: users of mail/postfix-current
AUTHOR: [email protected]
With this version of Postfix, the default master.cf now uses "unix"
instead of "fifo" for the pickup and qmgr services. In addition, a
new smtpd_relay_restrictions feature has been introduced for mail
relay control. For sites that do not define this parameter in
main.cf, the upgrade process will add an entry to main.cf. Please
read the RELEASE_NOTES to understand this new feature, how it may
affect your site, and backwards compatibility options.
20121104:
AFFECTS: users of lang/perl5.16
AUTHOR: [email protected]
lang/perl5.16 has been updated to 5.16.2. You should update everything
that depends on perl. The easiest way to do that is to use
"perl-after-upgrade" script supplied with lang/perl5.16.
Please see its manual page for details.
If you are using binary packages with pkgng, not ports, do this instead of
"perl-after-upgrade":
# pkg install -fR perl
20121102:
AFFECTS: users of shells/bash-completion
AUTHOR: [email protected]
The bash completion library has been updated to 2.0, and the mechanism
for activating the library has changed. To use the library, you must:
source /usr/local/share/bash-completion/bash_completion.sh
from your .bashrc file. See the pkg-message or README for a more
graceful invocation.
20121101:
AFFECTS: users of graphics/tesseract
AUTHOR: [email protected]
The trained English and OSD language data that were distributed in
graphics/tesseract have been moved to graphics/tesseract-data. The
latter port includes all available trained language data by default;
as before, users who desire a subset of languages may build smaller
packages by defining TESSERACT_LANGS during a build.
20121031:
AFFECTS: users of dns/ldns
AUTHOR: [email protected]
There is a binary incompatibility in ldns 1.6.14 which is fixed with an
emergency release of ldns 1.6.15.
Warning!
If you have compiled ldns using software with ldns-1.6.14, then this new
version will be binary incompatible with your installed version. You
will have to recompile the software together with ldns-1.6.15.
Was the software compiled with ldns-1.6.13 or earlier, then you will not
have this problem and can safely install ldns-1.6.15.
20121030:
AFFECTS: users of www/squid31
AUTHOR: [email protected]
The WITH_SQUID_ECAP option was removed from the port. If you use ECAP
you need to update to www/squid32, you can do so by running one of the
following commands:
# portmaster -o www/squid32 www/squid31
or
# portupgrade -fo www/squid32 www/squid31
20121025:
AFFECTS: users of net/activemq
AUTHOR: [email protected]
After reinstalling the port if you wish to use the datastore used before
or have any undelivered persistant messages add the following to rc.conf
activemq_data=/usr/local/activemq
20121022:
AFFECTS: users of net/samba36
AUTHOR: [email protected]
Startup rc.d/samba script was modified to address some problems with the
fine control of supplementary daemons. As a side effect now it's always
necessary to specify in rc.conf:
samba_enable=YES
to get the script working. You can still control each of the daemons
individualy, by disabling/enabling them with:
nmbd_enable=NO
smbd_enable=NO
winbindd_enable=YES
20121015:
AFFECTS: users of ports-mgmt/portmaster
AUTHOR: [email protected]
Portmaster now supports pkgng. To use pkgng, enable the patch in the port,