Commit graph

204957 commits

Author SHA1 Message Date
wen
9e8c6dfe4a Updated devel/nasm to 2.10.09 2013-08-13 00:18:38 +00:00
wen
9434abd65b Update to 2.10.09
Upstream changes:
C.1.1 Version 2.10.09

Pregenerate man pages.
C.1.2 Version 2.10.08

Fix VMOVNTDQA, MOVNTDQA and MOVLPD instructions.
Fix collision for VGATHERQPS, VPGATHERQD instructions.
Fix VPMOVSXBQ, VGATHERQPD, VSPLLW instructions.
Add a bunch of AMD TBM instructions.
Fix potential stack overwrite in numbers conversion.
Allow byte size in PREFETCHTx instructions.
Make manual pages up to date.
Make F3 and F2 SSE prefixes to override 66.
Support of AMD SVM instructions in 32 bit mode.
Fix near offsets code generation for JMP, CALL instrictions in long mode.
Fix preprocessor parse regression when id is expanding to a whitespace.
C.1.3 Version 2.10.07

Fix line continuation parsing being broken in previous version.
C.1.4 Version 2.10.06

Always quote the dependency source names when using the automatic dependency generation options.
If no dependency target name is specified via the -MT or -MQ options, quote the default output name.
Fix assembly of shift operations in CPU 8086 mode.
Fix incorrect generation of explicit immediate byte for shift by 1 under certain circumstances.
Fix assembly of the VPCMPGTQ instruction.
Fix RIP-relative relocations in the macho64 backend.
C.1.5 Version 2.10.05

Add the CLAC and STAC instructions.
C.1.6 Version 2.10.04

Add back the inadvertently deleted 256-bit version of the VORPD instruction.
Correct disassembly of instructions starting with byte 82 hex.
Fix corner cases in token pasting, for example:
   %define N 1e%++%+ 5
           dd N, 1e+5
C.1.7 Version 2.10.03

Correct the assembly of the instruction:
XRELEASE MOV [absolute],AL
Previous versions would incorrectly generate F3 A2 for this instruction and issue a warning; correct behavior is to emit F3 88 05.

C.1.8 Version 2.10.02

Add the ifunc macro package with integer functions, currently only integer logarithms. See section 5.4.
Add the RDSEED, ADCX and ADOX instructions.
C.1.9 Version 2.10.01

Add missing VPMOVMSKB instruction with reg32, ymmreg operands.
C.1.10 Version 2.10

When optimization is enabled, mov r64,imm now optimizes to the shortest form possible between:
     mov r32,imm32                   ;  5 bytes
     mov r64,imm32                   ;  7 bytes
     mov r64,imm64                   ; 10 bytes
To force a specific form, use the STRICT keyword, see section 3.7.

Add support for the Intel AVX2 instruction set.
Add support for Bit Manipulation Instructions 1 and 2.
Add support for Intel Transactional Synchronization Extensions (TSX).
Add support for x32 ELF (32-bit ELF with the CPU in 64-bit mode.) See section 7.9.
Add support for bigendian UTF-16 and UTF-32. See section 3.4.5.
C.1.11 Version 2.09.10

Fix up NSIS script to protect uninstaller against registry keys absence or corruption. It brings in a few additional questions to a user during deinstallation procedure but still it is better than unpredictable file removal.
C.1.12 Version 2.09.09

Fix initialization of section attributes of bin output format.
Fix mach64 output format bug that crashes NASM due to NULL symbols.
C.1.13 Version 2.09.08

Fix __OUTPUT_FORMAT__ assignment when output driver alias is used. For example when -f elf is used __OUTPUT_FORMAT__ must be set to elf, if -f elf32 is used __OUTPUT_FORMAT__ must be assigned accordingly, i.e. to elf32. The rule applies to all output driver aliases. See section 4.12.6.
C.1.14 Version 2.09.07

Fix attempts to close same file several times when -a option is used.
Fixes for VEXTRACTF128, VMASKMOVPS encoding.
C.1.15 Version 2.09.06

Fix missed section attribute initialization in bin output target.
C.1.16 Version 2.09.05

Fix arguments encoding for VPEXTRW instruction.
Remove invalid form of VPEXTRW instruction.
Add VLDDQU as alias for VLDQQU to match specification.
C.1.17 Version 2.09.04

Fix incorrect labels offset for VEX intructions.
Eliminate bogus warning on implicit operand size override.
%if term could not handle 64 bit numbers.
The COFF backend was limiting relocations number to 16 bits even if in real there were a way more relocations.
C.1.18 Version 2.09.03

Print %macro name inside %rep blocks on error.
Fix preprocessor expansion behaviour. It happened sometime too early and sometime simply wrong. Move behaviour back to the origins (down to NASM 2.05.01).
Fix unitialized data dereference on OMF output format.
Issue warning on unterminated %{ construct.
Fix for documentation typo.
C.1.19 Version 2.09.02

Fix reversed tokens when %deftok produces more than one output token.
Fix segmentation fault on disassembling some VEX instructions.
Missing %endif did not always cause error.
Fix typo in documentation.
Compound context local preprocessor single line macro identifiers were not expanded early enough and as result lead to unresolved symbols.
C.1.20 Version 2.09.01

Fix NULL dereference on missed %deftok second parameter.
Fix NULL dereference on invalid %substr parameters.
C.1.21 Version 2.09

Fixed assignment the magnitude of %rep counter. It is limited to 62 bits now.
Fixed NULL dereference if argument of %strlen resolves to whitespace. For example if nonexistent macro parameter is used.
%ifenv, %elifenv, %ifnenv, and %elifnenv directives introduced. See section 4.4.9.
Fixed NULL dereference if environment variable is missed.
Updates of new AVX v7 Intel instructions.
PUSH imm32 is now officially documented.
Fix for encoding the LFS, LGS and LSS in 64-bit mode.
Fixes for compatibility with OpenWatcom compiler and DOS 8.3 file format limitation.
Macros parameters range expansion introduced. See section 4.3.4.
Backward compatibility on expanging of local sigle macros restored.
8 bit relocations for elf and bin output formats are introduced.
Short intersegment jumps are permitted now.
An alignment more than 64 bytes are allowed for win32, win64 output formats.
SECTALIGN directive introduced. See section 4.12.13.
nojmp option introduced in smartalign package. See section 5.2.
Short aliases win, elf and macho for output formats are introduced. Each stands for win32, elf32 and macho32 accordingly.
Faster handling of missing directives implemented.
Various small improvements in documentation.
No hang anymore if unable to open malloc.log file.
The environments without vsnprintf function are able to build nasm again.
AMD LWP instructions updated.
Tighten EA checks. We warn a user if there overflow in EA addressing.
Make -Ox the default optimization level. For the legacy behavior, specify -O0 explicitly. See section 2.1.22.
Environment variables read with %! or tested with %ifenv can now contain non-identifier characters if surrounded by quotes. See section 4.10.2.
Add a new standard macro package %use fp for floating-point convenience macros. See section 5.3.
C.1.22 Version 2.08.02

Fix crash under certain circumstances when using the %+ operator.
C.1.23 Version 2.08.01

Fix the %use statement, which was broken in 2.08.
C.1.24 Version 2.08

A number of enhancements/fixes in macros area.
Support for converting strings to tokens. See section 4.1.9.
Fuzzy operand size logic introduced.
Fix COFF stack overrun on too long export identifiers.
Fix Macho-O alignment bug.
Fix crashes with -fwin32 on file with many exports.
Fix stack overrun for too long [DEBUG id].
Fix incorrect sbyte usage in IMUL (hit only if optimization flag passed).
Append ending token for .stabs records in the ELF output format.
New NSIS script which uses ModernUI and MultiUser approach.
Visual Studio 2008 NASM integration (rules file).
Warn a user if a constant is too long (and as result will be stripped).
The obsoleted pre-XOP AMD SSE5 instruction set which was never actualized was removed.
Fix stack overrun on too long error file name passed from the command line.
Bind symbols to the .text section by default (ie in case if SECTION directive was omitted) in the ELF output format.
Fix sync points array index wrapping.
A few fixes for FMA4 and XOP instruction templates.
Add AMD Lightweight Profiling (LWP) instructions.
Fix the offset for %arg in 64-bit mode.
An undefined local macro (%$) no longer matches a global macro with the same name.
Fix NULL dereference on too long local labels.
2013-08-13 00:17:36 +00:00
wen
e394dc7862 Updated www/p5-Mojolicious to 4.24 2013-08-12 23:29:36 +00:00
wen
cca64cddf9 Update to 4.24
Upstream changes:
4.24  2013-08-08
  - Added ancestors method to Mojo::DOM.
  - Fixed bug where Mojo::IOLoop::Stream timeout was not always available.

4.23  2013-08-01
  - Added redirects method to Mojo::Transaction::HTTP.

4.22  2013-07-30
  - Improved Mojo::Server to use FindBin more defensively.
  - Fixed empty attribute bug in Mojo::DOM::CSS.
  - Fixed partial route handling in routes command.

4.21  2013-07-29
  - Added strip method to Mojo::DOM.
  - Fixed return values of remove and replace methods in Mojo::DOM.

4.20  2013-07-28
  - Deprecated Mojo::DOM::attrs in favor of Mojo::DOM::attr.
  - Improved Mojo::UserAgent connection management to be fork-safe.

4.19  2013-07-21
  - Improved invalid tag handling in Mojo::DOM::HTML.

4.18  2013-07-08
  - Added --mode option to Morbo.
  - Fixed bug in Mojo::UserAgent where not all 2xx responses would be accepted
    for CONNECT requests.
2013-08-12 23:28:18 +00:00
wen
6d1ac91143 Updated devel/p5-Module-CoreList to 2.96 2013-08-12 23:20:27 +00:00
wen
29c006a906 Update to 2.96
Upstream changes:
2.96 Mon Aug 12 2013
  - Utils module listing all utilities released with core
  - Updated for v5.18.1

2.95 Mon Jun 22 2013
  - Updated for v5.19.3

2.94 Sun Jun 21 2013
  - Updated for v5.19.2

2.93 Thu 20 Jun 2013
  - Updated for v5.19.1
2013-08-12 23:19:09 +00:00
wen
35a13a67c0 Updated time/p5-Time-Piece to 1.22 2013-08-12 23:14:55 +00:00
wen
8e7a72576a Update to 1.22
Upstream changes:
1.22      2013-08-12
          - add explicit copyright and license statements
          - fix encoding of .pm files and add =encoding directive

1.21      2013-07-06
          - fix installation target; now installs to site in v5.12 and later
          - make Time::Seconds match its VERSION to Time::Piece
          - numerous portability fixes imported from perl core distribution
2013-08-12 23:13:44 +00:00
kleink
25869dfa9e Updated security/py-itsdangerous to 0.23. 2013-08-12 18:18:34 +00:00
kleink
ec7d71e709 Update py-itsdangerous to 0.23.
Version 0.23
~~~~~~~~~~~~

- Fixed a packaging mistake that caused the tests and license
  files to not be included.
2013-08-12 18:17:22 +00:00
obache
5647c089af Updated sysutils/gnome-mount to 0.8nb25 2013-08-12 14:24:54 +00:00
obache
7431e1bad4 Switch to use libnotify07.
Bump PKGREVISION.
2013-08-12 14:24:35 +00:00
obache
d46b052dd5 Updated security/seahorse to 2.32.0nb22 2013-08-12 12:52:35 +00:00
obache
36ff87547d Switch to use libnotify07.
Bump PKGREVISION.
2013-08-12 12:52:16 +00:00
obache
516cfced83 Updated x11/gnome-screensaver to 2.30.2nb17 2013-08-12 12:28:35 +00:00
obache
6525da647e Switch to use libnotify07.
Bump PKGREVISION.
2013-08-12 12:28:19 +00:00
obache
624fbebe50 Updated chat/empathy to 2.34.0nb30 2013-08-12 10:00:24 +00:00
obache
d84e59917a Switch to use libnotify07.
Bump PKGREVISION.
2013-08-12 10:00:03 +00:00
obache
9e8dda0cc5 Updated net/vino to 2.32.2 2013-08-12 09:37:28 +00:00
obache
d85a26d15d Update vino to 2.32.2.
Vino 2.32.2
===========

  Fixes:

	- Avoid out-of-bounds memory accesses.
	- Exit immediately when the server is disabled.
	- Bind both an IPv4 and an IPv6 socket.

  Translations:

	+ Daniel Korostil (uk)
	+ Fran Diéguez (gl)
	+ Gheyret T.Kenji (ug)
	+ Wei-Lun Chao (zh_HK, zh_TW)

==============
Version 2.32.1
==============

  Fixes:

	+ Be compatible with old (< 0.7.0) and new (>= 0.7.0) libnotify

  Translations:

	+ Joan Duran (ca@valencia)
	+ Thanos Lefteris (el)
	+ Priit Laes (et)
	+ Takayuki KUSANO (ja)
	+ Changwoo Ryu (ko)
	+ Sahran (ug)

Vino 2.32.0
===========

  Translations:

	+ Baurzhan Muftakhidinov (kk)
	+ Takayuki KUSANO (ja)

Vino 2.31.91
============

  Translations:

	+ Fran Diéguez (gl)
	+ krishnababu k (te)
	+ Kristjan Schmidt (eo)
	+ Petr Kovar (cs)

Vino 2.31.4
===========

  Features:

	+ Improvements on Telepathy tubes stuff
	+ Various internal work on replacing deprecated stuff

  Translations:

	+ Andika Triwidada (id)
	+ Carles Ferrando (ca@valencia)
	+ Leonid Kanter (ru)
	+ Luca Ferretti (it)
	+ Matej Urbančič (sl)
	+ Priit Laes (et)
	+ Sira Nokyoongtong (th)
	+ Theppitak Karoonboonyanan (th)
	+ Thomas Thurman (en@shaw)
2013-08-12 09:36:41 +00:00
obache
172e3be887 Updated sysutils/gnome-settings-daemon to 2.32.1nb21 2013-08-12 09:10:30 +00:00
obache
b15ce4949d Switch to use libnotify07.
Bump PKGREVISION.
2013-08-12 09:10:09 +00:00
wiz
110f5dab8d + Sigil-0.7.3 [needs qt5], bzr-2.6.0, calibre-0.9.42, dd_rescue-1.38,
eigen3-3.1.4, fotoxx-13.08, libvdpau-0.7, mawk-1.3.4.20130803,
  phpmyadmin-4.0.5, pixman-0.30.2, samba-4.0.8, wine-devel-1.7.0
  wordpress-3.6, x264-devel-20130803, xf86-video-ati-7.2.0,
  xf86-video-intel-2.21.14, xosview-1.15.
2013-08-12 08:43:57 +00:00
obache
931c368bd8 Updated sysutils/notification-daemon to 0.7.6 2013-08-12 08:35:59 +00:00
obache
5332cd44e4 Update notification-daemon to 0.7.6.
NEW in 0.7.6:
==============
- Fix a wrong loop condition
- Translation updates (Marathi)

NEW in 0.7.5:
==============
- Translation updates (Hindi, Catalan)

NEW in 0.7.4:
==============
- Translation updates (Malay, Telugu, Norwegian Nynorsk,
  Norwegian bokmål, Uzbek, Khmer, Arabic, Esperanto)

NEW in 0.7.3:
==============
- Translation updates (Asturian, Assamese, Thai, Telugu)

NEW in 0.7.2:
==============
- Remove vestigial dbus-glib requirement
- Translation updates (Italian, Dutch, Gujarati, Ukrainian,
  Norwegian bokmål, Bulgarian, Spanish, Slovenian, Kannada,
  Hebrew, Swedish, Simplified Chinese, Greek, Korean, French,
  Latvian, Vietnamese, Catalan, Oriya, Galician, British English,
  Romanian, Polish, Estonian, Hungarian, Portuguese, Russian
  German, Serbian, Indonesian, Afrikaans, Punjabi, Uighur,
  Basque, Traditional Chinese, Tamil, Czech, Danish, Turkish,
  Bengali, Persian, Japanese, Aragonese, Catalan (Valencian),
  Finnish, Lithuanian, Belarusian, Zulu)

NEW in 0.7.1:
==============
- Don't use DBus activation
- Don't exit on idle
- Install a desktop file for notification-daemon

NEW in 0.7.0:
==============
- Support image-data and image-path hints
- Translation updates (French, Swedish, Danish, Punjabi,
  Chinese, Italian, Hebrew, Galician, Norwegian bokmål,
  Arabic, Catalan)

NEW in 0.6.0:
==============
- Drop setup capplet
- Drop themes
- Add a 'dock' for bubbles
- Add 'persistence' and 'action-icons' capabilities
- Support transient and resident notifications
- Port to GDBus

NEW in 0.5.0:
==============
- Add a new default theme
- Properly handle monitor changes
- Add multi-screen support
- Exit when not in use
- Exit when unable to acquire bus name
- Support version 1.1 of the notification spec
- Various memory leak fixes
- Better RTL locale support
- Don't monitor all X events unless necessary
- Update the list of ways to start a browser (Matthias Clasen)
- Fix the screensaver lock detection (Matthias Clasen)
- Use top right location by default (Matthias Clasen)
- Use canberra instead of gstreamer for event sounds
- Limit the total number of notifications that can be displayed at once
- Conversion from glade to gtkbuilder
- Fixed #608077, doesn't report its sound capability when built with sound support (Bastien Nocera)
- Fixed #608082, Arabic text is misplaced in bubbles (RTL) (William Jon McCann)
- Fixed #608858, Modernize autotools configuration (Javier Jardón)
- Fixed #612032, Various i18n problems (William Jon McCann)
- Fixed #622021, Closed signal is not emitted when the screensaver si active (Bastien Nocera)
- Fixed #622552, doesn't support multiple screens or monitor configuration changes (William Jon McCann)
- Fixed #622556, Save some RAM in NotifyTimeout (Bastien Nocera)

Translations:
- Updated cs: Petr Kovar
- Updated da: Joe Hansen
- Updated de: Mario Blättermann
- Updated el: Kostas Papadimas
- Updated es: Jorge González
- Updated et: Priit Laes
- Updated fr: Claude Paroz
- Updated gl: Fran Diéguez
- Updated hu: Gabor Kelemen <kelemeng at gnome dot hu>
- Updated it: Luca Ferretti
- Updated ja: Christian Hammond
- Updated lt: Gintautas Miliauskas, Aurimas Černius
- Updated nb: Kjartan Maraas
- Updated pa: A S Alam
- Updated pl: Piotr Drąg
- Updated pt_BR: André Gondim, Vladimir Melo, Henrique P. Machado
- Updated ru: Leonid Kanter, Yuri Myasoedov, Christian Hammond
- Updated sl: Matej Urbančič
- Updated sv: Daniel Nylander
- Updated zh_CN: Ray Wang, 微尘, Aron Xu
2013-08-12 08:35:17 +00:00
obache
5ece2639a7 Updated audio/libcanberra to 0.27 2013-08-12 07:11:23 +00:00
obache
4685f920d1 Update libcanberra to 0.27
while here, add gtk3 option and enabled by default.

News

   Fri 18 Feb 2011:

   Version 0.27 released; Gtk+ 3.x fixes; add new tool to implement
   boot-up sounds when used with systemd; other fixes
2013-08-12 07:09:59 +00:00
mef
1c3406ed6f patches/patch-doc_api_Makefile_am
Remove. The patch was to remove unnecessary (unwanted)
  man pages for the build directories including ${WRKSRC}
  generated by doxygen.
  Equivalent for-loop was gone in doc/api/Makefile.am now.
  The logic is now in post-install: target in (pkgsrc) Makefile.

  This removal was meant in previous commit and distinfo does not
  include this removing patch. Sorry for left out patch itself.
  Thanks dholland@  pointing out.
2013-08-12 03:09:59 +00:00
taca
11b4661f07 Note update of net/samba35 package to 3.5.22. 2013-08-12 02:48:10 +00:00
taca
aaeb833757 Update samba35 to 3.5.22, security release.
==============================
                   Release Notes for Samba 3.5.22
			  August 05, 2013
                   ==============================


This is a security release in order to address
CVE-2013-4124 (Missing integer wrap protection in EA list reading can cause
server to loop with DOS).

o  CVE-2013-4124:
   All current released versions of Samba are vulnerable to a denial of
   service on an authenticated or guest connection. A malformed packet
   can cause the smbd server to loop the CPU performing memory
   allocations and preventing any further service.

   A connection to a file share, or a local account is needed to exploit
   this problem, either authenticated or unauthenticated if guest
   connections are allowed.

   This flaw is not exploitable beyond causing the code to loop
   allocating memory, which may cause the machine to exceed memory
   limits.


Changes since 3.5.21:
---------------------

o   Jeremy Allison <jra@samba.org>
    * BUG 10010: CVE-2013-4124: Missing integer wrap protection in EA list
      reading can cause server to loop with DOS.
2013-08-12 02:47:32 +00:00
taca
a315bede4e Note update of net/samba package to 3.6.17. 2013-08-12 02:46:46 +00:00
taca
f4f57ff439 Update samba to 3.6.17, security release.
==============================
                   Release Notes for Samba 3.6.17
                          August 05, 2013
                   ==============================


This is a security release in order to address
CVE-2013-4124 (Missing integer wrap protection in EA list reading can cause
server to loop with DOS).

o  CVE-2013-4124:
   All current released versions of Samba are vulnerable to a denial of
   service on an authenticated or guest connection. A malformed packet
   can cause the smbd server to loop the CPU performing memory
   allocations and preventing any further service.

   A connection to a file share, or a local account is needed to exploit
   this problem, either authenticated or unauthenticated if guest
   connections are allowed.

   This flaw is not exploitable beyond causing the code to loop
   allocating memory, which may cause the machine to exceed memory
   limits.


Changes since 3.6.16:
---------------------

o   Jeremy Allison <jra@samba.org>
    * BUG 10010: CVE-2013-4124: Missing integer wrap protection in EA list
      reading can cause server to loop with DOS.
2013-08-12 02:45:55 +00:00
obache
5fba3c08ba suppress detection of DOCBOOK, PR pkg/48115 2013-08-12 02:17:43 +00:00
richard
da5bfa9404 Updated devel/libgsf to 1.14.28 2013-08-11 20:22:20 +00:00
richard
2bf24dc4b2 libgsf 1.14.28
Andreas:
	* Fix conversion specifiers. [#703064]

Jean:
	* Allow the huge libxml parser mode so that gnumeric can load large images.
	[#705100]

Morten:
	* Fix problem with bogus metadata.  [#703952]
	* Avoid interaction problems between Werror and system headers.

--------------------------------------------------------------------------
2013-08-11 20:19:58 +00:00
rodent
45cb7e3033 Updated mail/p5-Mail-DeliveryStatus-BounceParser to 1.534 2013-08-11 19:48:30 +00:00
rodent
7d595887f9 Updated to latest release. No pkgsrc changes other than the obvious. From
ChangeLog:

1.534   2013-03-26

                Added another spam detection case (mstevens)

1.533   2013-01-23

                Added two new spam detection cases (mstevens)

                Hopefully fixed tests on newer perl, at the cost of slightly
                reformatted messages. Why is Mail::DeliveryStatus::Report
                a header object anyway? (mstevens)
2013-08-11 19:27:23 +00:00
adam
8ddfd0d2e1 Updated multimedia/ffmpeg2 to 2.0.1 2013-08-11 17:57:30 +00:00
adam
50a432b9d6 2.0.1 was released on 2013-08-11. It is the latest stable FFmpeg release from the 2.0 release branch, which was cut from master on 2013-07-10. Amongst lots of other changes, it includes all changes from ffmpeg-mt, libav master of 2013-07-09, libav 9 as of 2013-07-09. 2013-08-11 17:56:05 +00:00
jaapb
b5917c9bf1 Updated textproc/libclucene to 2.3.3.4 2013-08-11 16:06:45 +00:00
jaapb
7938e04ade Updated package to version 2.3.3.4. This is an update of a very old
version, so I'm not including the entire changelog here; see the package
changelog for more details. The patch was originally submitted by
Francois Tigeot as PR pkg/46156 - I've updated it since.
2013-08-11 16:06:25 +00:00
adam
89fdc93486 Updated deve/scmgit to 1.8.3.4 2013-08-11 15:45:34 +00:00
adam
377838a1c3 Changes 1.8.3.4:
* The bisect log listed incorrect commits when bisection ends with
  only skipped ones.
* The test coverage framework was left broken for some time.
* The test suite for HTTP transport did not run with Apache 2.4.
* "git diff" used to fail when core.safecrlf is set and the working
  tree contents had mixed CRLF/LF line endings. Committing such a
  content must be prohibited, but "git diff" should help the user to
  locate and fix such problems without failing.
2013-08-11 15:44:30 +00:00
obache
0173fe75ae libpciaccess is only required for Intel API, and only enabled for x86 CPU.
PR pkg/47948
2013-08-11 13:42:31 +00:00
tsutsui
f1a13a7adb Updated x11/mlterm to 3.2.2 2013-08-11 13:24:51 +00:00
tsutsui
974b48d666 Update mlterm to 3.2.2.
pkgsrc changes:

 - remove obsolete post-3.2.1 fixes
 - pull a post 3.2.2 fix for a bug of copy_area() which disabled redrawing
   the margin area. (found after Open Source Conference 2013 Kyoto)

Changes from doc/en/ReleaseNote:

ver 3.2.2
* Support SSH agent authentication and forwarding.
* Support X11 forwarding (no xauth) on win32/libssh2 and java.
* Add "X11 forwarding" checkbox to the connection dialog on win32.
* Change "skip_dialog" option to "show_dialog" and reverse the default behavior.
* Open a pty channel on the same ssh session as the active screen when OPEN_PTY
  or OPEN_SCREEN shortcut key is pressed.
* Bug fixes:
  Fix configure error which --with-gui=xlib,fb option causes. (enbugged at 3.2.1)
  DECALN(ESC#8) resets the screen margins.
  Fix the cursor position in inserting RTL characters after one LTR character.
  Fix segmentation fault of libvte compatible libyrary with synaptic 0.80.
  Fix clipboard operations of copy&paste on multiple windows on win32.
  Fix hangup on x11 forwarding.
  Fix segmentation fault in closing the first window on win32/libssh2.
  Fix the font and position of IME preedit text on win32.
2013-08-11 13:23:34 +00:00
schmonz
24498589ef Updated devel/scmgit-base to 1.8.3.3nb1 2013-08-11 12:49:50 +00:00
schmonz
7f06bb5093 Install git-prompt.sh. Bump PKGREVISION. 2013-08-11 12:49:44 +00:00
obache
89cf353e42 done -subversion-base-1.8.1 2013-08-11 09:03:20 +00:00
obache
e1243eade6 reset PKGREVISION from base pkg update. 2013-08-11 08:55:01 +00:00