Link [ pkgsrc | NetBSD | pkgsrc git mirror | PR fulltext-search | netbsd commit viewer ]


   
        usage: [branch:branch] [user:user] [path[@revision]] keyword [... [-excludekeyword [...]]] (e.g. branch:MAIN pkgtools/pkg)




switch to index mode

recent branches: MAIN (1h)  pkgsrc-2024Q1 (15d)  pkgsrc-2023Q4 (43d)  pkgsrc-2023Q2 (75d)  pkgsrc-2023Q3 (155d) 

2024-05-13 17:43:55 UTC Now

2014-12-21 02:28:58 UTC MAIN commitmail json YAML

+/- exaile-3.4.1  -> 3.4.3
+/- ghc-7.8.1    -> 7.8.3
+/- scilab-5.5.0  -> 5.5.1
+  rosegarden-14.12

(mef)

2014-12-21 02:00:46 UTC pkgsrc-2014Q3 commitmail json YAML

2014-12-21 01:22:33 UTC MAIN commitmail json YAML

Change version number from fixed `0' to main Python distribution version,
same as other buitin module (already changed over a half year ago).

(obache)

2014-12-21 00:44:37 UTC MAIN commitmail json YAML

Updated devel/dev86 to 0.16.21

(ryoon)

2014-12-21 00:43:39 UTC MAIN commitmail json YAML

Update to 0.16.21

* Update MASTER_SITES.

Changelog:
Not available.

(ryoon)

2014-12-21 00:33:12 UTC MAIN commitmail json YAML

Updated devel/z80-asm to 2.3.7

(ryoon)

2014-12-21 00:31:56 UTC MAIN commitmail json YAML

Update to 2.3.7

Changelog:

changes from version ?? to 1.1:
* user interface add key  =  to change the registers
  A,B,C,D,E,H,L,IX,IY,A',B',C',D',E',H',L',I,R
* display and update the cycle counter and the refresh register
* BUG in disasm.c  f_ld  LD rr,(nn) [only 1 byte loaded]  fixed!
* BUG in disasm.c  f_ex  EX (SP),IX break missing ==> runs into EX (SP),IY;  fixed!
* EI replaced by IFF1 & IFF2 (correct LD A,R & LD A,I)
* user interface  @(CPU reset), #(clear memory), *(clear all cpu register),
                  $(clear tick counter), &(SP init)
* console.c:  BUG in c_init()  usuage of undefined variable t  fixed!

changes from version 1.1 to 1.9:
* IN, OUT, INI, OUTD, ...  all implemented
* console.c:  BUG(?) in c_init()  if ICANON cleared  MIN should bet set to 1
* BUG in disasm.c  f_add  all 16-bit addition with carry bit :(  fixed!
* declaration of an assembler label may be appended by a colon
* if PC, SP, and MEMP input is requested current values are displayed in hexa
* HALT really halts the CPU now if interrupt is disabled else set runmode false
* user interface  !(NMI) implemented
* user interface  .  puts compiled instructions into memory and increases addr
* user interface  = =  to change 16-bit registers BC,DE,HL,BC',DE',HL',IX,IY
* BUG in disasm.c  f_adc  wrong carry/h/v flag calculation    fixed!
* BUG in disasm.c  f_sbc  wrong carry/h/v flag calculation    fixed!
* interrupt behaviour simulated, except IM=0 (probably tick count wrong)
* user interface  D(dump/disassemble into file)  toggle DI/EI to key ^ changed
* PC and SP defaults into hexa,  CALL, JP and RST in disassembling format, too
* user interface  " (protocol instructions executed)
* bank switching logic implemented (still experimental)
* BUG in disasm.c  f_ld  if 16 bit load from 0xffff adress OVERFLOW  fixed!
* disasm.c:  f_sll  opcode CB30-CB37  implemented
* warnings and error_msg now  occupy only the very last line (row 23)
* user interface  %  sets a breakpoint with a run counter at current PC
* breakpoints (address & counter) are displayed in row 22
* pseudo instruction EQU in assembler (asm.c) implemented
* CPU Halt-pin/status is displayed in upper right corner if active
* turbo mode improved a lot: 4 levels now (16 min, 380 sec, 38 sec, 2.5 sec)
* disasm.c:  f_nop2  all undocumented ED-opcodes implemented
* all the man pages updated
* turbo mode replaced by controling the clock speed/frequency
* the ports are implemented as a map onto one binary file named .Z80_ports
* hardware_clock.c  and  lcd_display.c  provided as examples for port usage

changes from version 1.9 to 2.0beta:
* BUG in inst-dist.c  ED63  ld hl,(nn)  A_NUM -> A_PODDLE_NUM  fixed!
* z80-asm permits in the case of exactly 1 section and inputfilename ends with
  .asm the outputfile to be optional (.asm is exchanged to .z80 for outputfile)
* BUG in z80-asm: if start > highest byte in memory undefined outputfile length
* HALT halts the CPU now if interrupt is enabled else set runmode false
  necessary for emulator mode ==>  user interface  &  sets a DI on stack
* user interface  !  toggle keyboard read disabled/enabled in run mode
  user interface ESC now simulates a NMI
* z80-mon has option -E for emulator mode (immediately CPU start)
* SIGTERM, SIGHUP terminates z80-mon, SIGUSR1 causes reset, SIGUSR2 causes NMI,
  SIGABORT causes cpu_wait=1 and SIGTRAP makes a CPU dump
* keyboard mapping implemented (used for IN from port stdin)
* simul.c:  decode() now handles stray FD and DD prefixes
* all FD and DD are simulated by decode() ==>  IXh,IXl,IYh,IYl introduced in
  regs.c and regs_token and set N_REGISTERS to 21 , global _ushort ddfdcb_reg
* decoder and executer [decode() and  execute.c] totally checked. Now memory
  read access separated from memory write access. Usage of DATA pins!
* in disasm.c: all 11 CB-executions and all 8 arith/logic-A-executions bundled
* BUG in disasm.c: f_cp/f_cpd/f_cpi/f_cpdr/...  h-flag wrong calculated  fixed!
* BUG in disasm.c: f_dec  p-flag wrong calculated  fixed!
* the f_... functions in execute.c now return a pointer to char, doesn't print
* total memory access encapsulated in memory.c / io-data access simulated
* Makefile updated (*.h) goes now into hardware,  make install added
* doc/man pages updated
* in asm.c: write_to_memory(), set_start_address(), get_current_address()
  introduced for usage of compile() [now returns the number of bytes writen]

changes from version 2.0b to 2.0c:
* BUG in asm.c: lexical_analysis: multiple label definition possible  fixed!
* BUG in compile.c: c_add: ADD IY,IX valid(typo), ADD IY,IY invalid  fixed!
* BUG in execute.c: f_alu: ADD,ADC,SBC use second operand (bad nemonic) fixed!
* BUG in execute.c: f_neg: carry-flag always effected (carry=!!A)  fixed!
* BUG in execute.c: f_bit: sign-flag effected only if bit 7 tested  fixed!
* BUG in execute.c: f_daa: total nonsense! (>=4 independent errors)  fixed!
* z80-asm.c Option -l added ==> in asm.c LISTING in pass 2 evaluated
* in execute.c: in disassembling mode jr and djnz instruction offset with sign
* user interface  t  enables base switch for disassembling constants
* user interface  L  now can read true binary files into memory
* user interface  a,b  changed to  u,v  and  e  deleted [reserved for register]
* pseudo instructions  DEFM, ALIGN  in assembler (asm.c) implemented (sll,too)
* Z80-Asm accepts integers to base 16 also if they have a h or H postfix
* hash table structur/allocation optimized and option -c in z80-asm.c added

changes from version 2.0c to 2.0:
* pseudo instruction  END  added and max label length to be 63 documented
* in asm.h: better interface (highest_address,generated_bytes,set_compile_pass)
* in asm.c: compile(void) now detects an EOF (take_line reads exactly 1 line)

changes from version 2.0 to 2.1
* in asm.c: compile(char *txt) ==> take_line(..) not longer obligate!
* ticks encapsulated ==> wait_tics(AMOUNT) and quartz.c/quartz.h introduced
* -DEFINES in Makefile  and  hardware/z80-ctc.c (experimental/beta Z80_CTC)
* BUG in compile.c: IX-/ IY-displacements must be < 128 and >= -128  fixed!
* in asm.c: in compile() all error_messages bundled (do we like to translate?)
* daisy_chain realized / more realistic interrupt handling by hardware
* bank switching logic re-implemented (still all banks must have same size)
* in regs.c register names to upper case (better to distinguish from addresses)
* user interface  j  switches relative versa absolute address (disasm jr/djnz)
* several small errors/bugs fixed
* user interface  j  enables now labeled address disassembling for jp/call/jr
* user interface  j  enables relative disassembling via two-pass disassembling
* z80-mon with -E now reads CPU status from .CPU and finishes if HALT in DI
* algebraic expressions evaluation in asm.c: valid operators ~,&,|,^,+,-,*,/,%
* in asm.c:  @ is a special 'label' indicating the current PC
* in asm.c: explicit binary constants must be lead-in by # replacing % prefix
      additionaly (to the 0x) the $ prefix for hexadecimal numbers is availible
* BUG in compile.c: c_ret: typo in case PO wrong machine code generated  fixed!
* several DJGCC compilation bugs removed (missing includes,defines,typos)

changes from version 2.1c to 2.2:
* BUG in asm.c: convert_arg: memmove deletes IX or IY but needed later  fixed!
* BUG in execute.c f_out/f_in: ts[] resp. tf[] must be at least 5 chars  fixed!
* BUG in compile.c c_ld: LD HL,(addr) should generate opcode 2A not ED6B fixed!
* BUG in compile.c convert_arg: char consts must not be converted to upper case
                                fixed!
* BUG in compile.c convert_arg: missing {} for for-loop body which results in
                                all strings became nilstrings    fixed!
* BUG in compile.c convert_arg: bug in string parsing, wrong indices  fixed!
* BUG in execute.c f_ld: LD (addr),rr puts only lower byte into memory  fixed!
* BUG in asm.c: convert_arg: (IX+-num)  num argument was not expected to be an
                              expression. test_number() <-> parse_expr()  fixed!
* BUG in asm.c: convert_arg: arg->label undefined! Default to false now  fixed!
* BUG in asm.c: lexical_analysis: overflow possible for 8-bit arguments in 1th
                                  pass if labels are used in expressions fixed!
* BUG in asm.c: lexical_analysis: pseudo instructions I_EQU, I_DEFM, I_ORG,
                                  I_ALIGN  also needs the current address as
                                  argument in pass 1 if it is a label  fixed!
* BUG in asm.c: lexical_analysis: parsing inside '..' was finished by delimiter
                                  (now new error message UNS introduced) fixed!
* BUG in z80-mon.c: main: init_ctc() must be before reset_cpu() because
                          set_cpu_pin() may call set_ctc_pin()! fixed!
* BUG in execute.c: ix_iy_disp: _ushort a must be casted to signed char  fixed!
* BUG in execute.c: reg_str: in case A_PODLE_IX_PLUS, A_PODLE_IY_PLUS argument
                              arg must be casted to signed char  fixed!
* in asm.c: if more than 4 bytes opcodes (e.g. DEFS) only the first 4 are shown
            in the assembler listing
* in asm.c: new error message: Invalid character argument for invalid character
            tokens containing more than 1 (or none) character
* in all places/files exchanged  DEFM <--> DEFS  (defs <--> defm). Historical
    DEFM is used to put messages (strings) in memory and
    DEFS is used to reserve storage (in memory) in Zilog Z80 assembler language

changes after version 2.2:
* BUG in instr.c:  DEFS and DEFM must stay ordered lexicographicly  fixed!
* BUG in asm.c: compile: in printf if i>4 maximum must be 4 not 12  fixed!
* BUG in asm.c: compile: in I_ORG last must be set to address  fixed!
* in memory.c: set_default_byte() introduced to set the default memory value
* in z80-asm new option -f XX (this option defines DEFS & ORG gaps to be XX)
* BUG in asm.c: logic when to calculate EQU is wrong!! we need to store the
                expression in the hash table  NOT FIXED! "(pruchod != 11)"
* BUG in asm.c: the ALIGN statement must produce fill bytes, too (-f XX) fixed!
* BUG in asm.c: overwriting code warning must depend on fill byte  fixed!
* BUG in asm.c: test_number: if base is known (prefix) number may be start
                              with non-digit character  fixed!
* BUG in asm.c: compile I_ALIGN  address is already increased by out()  fixed!
* BUG in z80-asm.c: init: now it has parameter fill_byte to init memory  fixed!
* in asm.c/expression.c/hash.c: new evaluation logic for EQU and expressions
            implemented. Their values are now evaluated in pass 2 recursivly
* in z80-mon.c: ask() and ask_x() accept now all number representations like
            z80-asm (even the '?') except that any sign is forbidden
* pseudo instructions  DEFL  in assembler (asm.c) implemented
* BUG in z80-asm.c: parse_arg: ignores filename parameter if one can be
                                constructed from source filename  fixed!
* BUG in compile.c: out() should be performed to have correct PC if signed or
                    unsigned overflow of 8-bit argument occurs.(ret=8,9) fixed!
* in expression.c: new operators !, <<, >>, ==, !=, >, <, >=, <=, &&, ||
* BUG in hash.c:  last_label_reusable: uniq must be negated    fixed!
* in asm.c:  DEFL lables now multiple in hashtable (distinguished by lineno)
* in asm.c:  COND/ENDC enables conditionel compiling
* BUG in execute.c: f_in_block, f_out_block: F_sign, F_Z not effected and
                    if B!=0 F_Z not cleared  fixed!
* BUG in Makefile: now manuals are in doc/man not in doc  fixed!
* BUG in asm.c: convert_arg: indirect addressing was wrongly recognized  fixed!
* BUG in hash.c: is_in_table: for non-uniq lables (DEFL) wrong element  fixed!
* BUG in hash.c: add_to_table: ->uniq undefined  fixed!
* in expression.c: new operators ** , // , ?  and right operand of << and >>
                    is now interpreted as unsigned
* BUG in expression,c: parse_expr(): all expressions must be tried to be
                        evaluated in PASS 1 (needed for ORG, DEFS, CONDC) fixed!
* in ports.c:  cpu_pin iorq used, and the variables ADDRESS and DATA are set.
* in hardware/README:  explanation how to implement further add-ons
* z80-mon.c:  main: cpu_pins  busrq and busack are now served
* z80-cpu.c/ports,c:  Z80-CTC port access now wired at Z80-CPU
* BUG in ports.c: in_byte():  missing DATA bus assign from *data  fixed!

changes after version 2.3:
* BUG in Makefile: DEFINES are not put to in $(MAKE) hardware  fixed!
* hardware:  logic_analzyer implemented (to view the Z80 pins)
* in decode.c: refresh_cycle()  mreq- and rfsh-pin used and I<<8|R onto ADDRESS
* in z80-cpu.c:  machine cycle counter (triggered by wait_tics)
* BUG in asm.c:  no_para[]: RST needs 1 Parameter, not 0  fixed!
* BUG in execute.c: cp_block:  3 tics missing  fixed!
* in z80-mon.c:  machine cycle counter displayed
* in z80-cpu.c:  busrq  is now acknowledged at beginning of each machine cycle
* with dummy.c  print_ticks() reintroduced to mask it in non z80-mon programs
  using acknowledge_bus_request()
* BUG in hardware/z80-ctc.c: read_word():  fp may be 0  fixed!!
* only if !cpu_is_in_disassemble then set_cpu_pin() , acknowledge_bus_request()
  and  ADDRESS  are used  (databus can be used if cpu_is_in_disassemble mode)
* port_buffer for OLD_STYLE port_access via Z80_PORTS put in hardware now
* z80-global im Makefile als dependence of z80-cpu.h
* SSL_ZDS trigger in hardware
* BUG in execute.c: f_inc/f_dec: 16 bit registers shouldn't change flags fixed!
* BUG in execute.c: f_rrd: lower nibble in accu set wrongly  fixed!
* BUG in execute.c: f_adc16/f_sbc16: zero_flag wrongly calculated  fixed!
* BUG in execute.c: f_inc/f_dec: PV_flag wrongly calculated  fixed!
* in z80-asm.c und z80-mon.c option parsing simplified und equaly processed.
* BUG in execute.c: add,adc,sub,sbc,cp,f_adc16,f_sbc16: underflow check for
                    < -127 , < -32767 missing (V-Flag wrongly computed)  fixed!
* BUG ins asm.c: convert_arg():  arg->text isn't initialized to 0.  fixed!
* BUG in regs.h: missing #include "z80-global" to define seznam_type  fixed!
* BUG in execute.c: f_neg: PV_flag wrongly calculated  fixed!
* BUG in execute.c: f_neg: H_flag setiing typo: F_N must be F_NH  fixed!
* BUG in execute.c: f_inc/f_dec: PV_flag wrongly calculated for 8-bit register
                          (last fix affected only 8-bit memory access)  fixed!
* BUG in execute.c: add/adc/sub/sbc/cp/adc16/sbc16:  V_flag inverted mapped on
                                                      P_flag  fixed!
* in all Makefile:  -malign-function=0 replaced by -falign-function=0  and
                    Makefile-Variable CC  set to  gcc.
* doc/execute_timing.tex  to  doc/execute_timing.txt  renamed
* BUG in z80-mon.c: main: counter b & s for argv wrongly increased  fixed!
* BUG in memory.c: init_banks: map must be 0-pointer for first realloc  fixed!
* BUG in memory.c: init_banks: tok[3] must be tok[4] in two lines  fixed!
* BUG in memory.c: init_banks: superfluious else prohibited  bank[id].back_up
                    allocation.  fixed!
* BUG in memory.c: init_banks:  strtoul(..) needs check of *p if p is defined
                    after scanning tok2 and tok4 for numbers  fixed!
* BUG in memory.c: _uchar memory_at: logic for bank_access is missing  fixed!
* in hardware/banks-*:  new bank-mask notation introduced
* in doc/man/z80-banks.5  default bank after reset/initialisation documentated.
* in memory.c  bank-mask must now be a 2 hexadecimal number
* in doc/man/z80-mon.1  execution-mode preciser defined.
* in z80-cpu.c/z80-cpu.h:  new cpu-flag  cpu_is_in_x_mode  defined
* in z80-mon.c: main: cpu_is_in_x_mode is set if 'Execute instruction'-Key
* in execute.c:  cpu_is_in_x_mode  used for jr/djnz/halt/cp-, ld-, out-, in-
                  block instructions used

(ryoon)

2014-12-20 23:51:52 UTC MAIN commitmail json YAML

Correct the error on previous commit.
(1) ${PREFIX} handling was not correct
(2) It is said ascii.cgi is deleted in ChangeLog, it was not taken care
  properly.
  3.14: 2013-11-27
      ascii.cgi deleted: the <isindex> it relies on is archaic and nonconformant.
Thanks joerg@ for review.

(mef)

2014-12-20 22:12:20 UTC MAIN commitmail json YAML

MASTER_SITES moved from cs.cmu.edu to festvox.org.

(mef)

2014-12-20 21:54:49 UTC MAIN commitmail json YAML

Updated games/openttd to 1.4.4
Updated games/openttd-data to 0.5.0

(ryoon)

2014-12-20 21:53:11 UTC MAIN commitmail json YAML

Update to 0.5.0

* Update opengfx data to 0.5.0

Changelog:
* Add splites support

(ryoon)

2014-12-20 21:52:38 UTC MAIN commitmail json YAML

Update to 1.4.4

Changelog:
1.4.4 (2014-10-21)
------------------------------------------------------------------------
(None)

1.4.4-RC1 (2014-10-08)
------------------------------------------------------------------------
- Fix: Image widgets stored 32bit SpriteID in uint16 (r26971)
- Fix: Owner of road depot road types were not properly changed upon bankruptcy [FS#6126] (r26955)
- Fix: Compilation on HAIKU (r26922)
- Fix: Crash when enabling 'Full animation' if multiplayer chat text is on screen [FS#6096] (r26919)
- Fix: Height computation of game script text in town GUI did not consider margins [FS#6119] (r26859)
- Fix: [Squirrel] Debian lintian issues (r26853)
- Fix: Compilation of strgen on various platforms like Solaris (r26850)
- Fix: Better display of refit information for articulated vehicles [FS#6113] (r26849, r26848)
- Fix: Do not assign a next hop when returning cargo [FS#6110] (r26847)
- Fix: The ok-button in the OSK for the signs list should just close the OSK [FS#6116] (r26827)

1.4.3 (2014-09-23)
------------------------------------------------------------------------
(None)

1.4.3-RC2 (2014-09-14)
------------------------------------------------------------------------
- Fix: Crashes on joining a server with pending order backups [FS#6112] (r26819)
- Fix: Crashes on start due to dereferencing the -1 index of the file names array of music files (r26809)

1.4.3-RC1 (2014-09-07)
------------------------------------------------------------------------
- Fix: TC_NO_SHADE did not work for 32bpp text rendering (r26792)
- Fix: Loading a game with order backups leaked Orders and left unreachable items in the pool (r26787)
- Fix: Buffer overrun in SQCompiler::Error (r26764)
- Fix: Desync due to not always properly restoring game state from the savegame (r26753)
- Fix: [Script] Crashes and infinite loops when using lists in item-descending order [FS#6085] (r26744)
- Fix: Incorrect CFLAGS when enabling gprof profiling (r26737, r26735)
- Fix: Do not reset the last selected airport or layout, unless it is really necessary [FS#6083] (r26732)
- Fix: Use the normal search path to look for xdg-open at Unix [FS#6077] (r26724)
- Fix: Properly check for cargo acceptance of houses [FS#5997] (r26723)

1.4.2 (2014-08-16)
------------------------------------------------------------------------
(None)

1.4.2-RC2 (2014-08-03)
------------------------------------------------------------------------
- Change: Use awk instead of trying to convince cpp to preprocess nfo files (r26708)
- Fix: CMD_CLEAR_ORDER_BACKUP should not be suppressed by pause modes (r26716)
- Fix: [NewGRF] Parameters to SCC_NEWGRF_PUSH_WORD and SCC_NEWGRF_UNPRINT were not skipped during drawing (r26713)
- Fix: [OSX] Compilation fails with some lzo2 versions, if __LP64__ is defined to 0 instead of checking whether it is defined [FS#6069] (r26709)
- Fix: Wrong breakdown sound was played for ships [FS#6015] (r26706)
- Fix: Integer overflows in acceleration code causing either too low acceleration or too high acceleration [FS#6067] (r26702)
- Fix: Discard incorrectly saved order backups when clients join [FS#6066] (r26700)
- Fix: Do not crash when trying to show an error about vehicle in a NewGRF and the NewGRF was not loaded at all (r26699)
- Fix: Slovak uses space as group separator in numbers [FS#6064] (r26695)
- Fix: Tighten parameter bound checks on GSCargoMonitor functions, and return -1 on out-of-bound parameters (r26685)

1.4.2-RC1 (2014-07-03)
------------------------------------------------------------------------
- Fix: CargoPacket::SourceStation() returns a StationID (r26660)
- Fix: Days in dates are not represented by ordinal numbers in all languages [FS#6047] (r26657)
- Fix: Production cheat cannot be allowed to be active in multiplayer for desync reasons, even when activated in singleplayer previously [FS#6044] (r26656)
- Fix: Make sure an 'abs' is used that supports int64 when using 'abs' on those variables (r26651)
- Fix: Support save/load chunk lengths of up to (1 << 32) - 1 [FS#6041] (r26650)
- Fix: Incorrect usage of string commands in the base language [FS#6037] (r26642, r26640, r26639, r26632)
- Fix: Segmentation fault when encountering a .obg/.obs/.obm with empty string/zero length MD5 checksums [FS#6038] (r26637)
- Fix: The 'Load' button was not properly enabled/disabled for old savegames without NewGRF information (r26634)
- Fix: If the video driver fails to supply a list of resolutions, display an error message [FS#6012] (r26629)

1.4.1 (2014-06-02)
------------------------------------------------------------------------
- Fix: First send packages about new company, then clients joining it to admin port [FS#6025] (r26616)

1.4.1-RC2 (2014-05-18)
------------------------------------------------------------------------
- Fix: Save/load issues on big endian machines (r26593, r26590, r26589)
- Fix: Consider multiheaded trains in station refits [FS#5995] (r26586)
- Fix: Game script could be changed in game by double clicking [FS#5974] (r26583)
- Fix: Transfer stations also should have a cargo rating [FS#5989] (r26581, r26580)
- Fix: [Network] AIs would not reset certain network state information upon creation of their company [FS#6003] (r26578, r26576)
- Fix: [Network] Client of non-dedicated server was not correctly put into the first company for all state variables [FS#6001] (r26577)

1.4.1-RC1 (2014-05-04)
------------------------------------------------------------------------
- Change: Remove demand calculation based on tiles (r26484)
- Change: Use pkg-config for libpng as well (r26435, r26433, r26432)
- Change: Use better distance metric for link graph [FS#5941] (r26411)
- Fix: [Windows] Crash when the operating system performs the "paint" callback during window creation [FS#5994] (r26539, r26538)
- Fix: OpenBSD compilation [FS#5992] (r26523)
- Fix: prevent from ever reading huge (or negative) amounts of data in strgen (r26521)
- Fix: Severity rating of dedicated server messages during world generation (r26518)
- Fix: Buffer overruns in handling of symbolic links inside tars (r26514)
- Fix: Incorrect usage of strecpy (r26505, r26485)
- Fix: Reading console input on dedicated server relied on unspecified behaviour (r26496)
- Fix: Allow single-vehicle consists to station-refit in a meaningful way (r26483)
- Fix: Prevent comparing to NULL when strndup could not allocate memory (r26476)
- Fix: Potentially undefined shifts in NewGRF code (r26475)
- Fix: Make sure there is no uninitialised sprite data (r26473)
- Fix: Draw text shadow for ellipses (r26467)
- Fix: Add special handling for PALETTE_CRASH to work for non-8bpp-mapped sprites (r26463)
- Fix: Avoid division by 0 when scaling flow values [FS#5970] (r26448)
- Fix: Draw links to match _settings_game.vehicle.road_side [FS#5961] (r26445)
- Fix: Load button for heightmap list was missing [FS#5953] (r26428)
- Fix: Do not crash when supplying an invalid filename without extension to cmd parameter -q (r26423)
- Fix: Some road constructions used the rail sound effect [FS#5946] (r26422)
- Fix: Goal GUI failed to shade [FS#5948] (r26420)
- Fix: Shares button state was not appropriately updated when switching setting or company [FS#5947] (r26416)

1.4.0 (2014-04-01)
------------------------------------------------------------------------
(None)

1.4.0-RC1 (2014-03-18)
------------------------------------------------------------------------
- Feature: [Script] APIs to get cargo waiting from/via other station (r26396)
- Fix: Do not explain "symmetric" cargodist mode when the setting does not allow it [FS#5939] (r26394)
- Fix: Update distances between link graph nodes when station sign is moved (r26393)
- Fix: No need to call OnFocus twice [FS#5933] (r26392)
- Fix: Select a specific font size when freetype fails to select one automatically [FS#5885] (r26389)
- Fix: Return correct values from ICU iterators in case of leading or trailing whitespace [FS#5924] (r26384)
- Fix: All goal commands invalidated the goal list of company 0 [FS#5932] (r26382)

1.4.0-beta5 (2014-02-25)
------------------------------------------------------------------------
- Feature: Warn the user about empty setting search results, and about missing setting search results due to filtering (r26322, r26321)
- Feature: [NewGRF] Extend object variable 0x60 to also return the view [FS#5696] (r26316)
- Feature: Allow map sizes up to 4096x4096 (r26319)
- Feature: [NoGo] Allow GS to hide story page date (r26307)
- Feature: [NoGo] More story APIs: RemovePageElement, GetCompany, GetDate, SetDate (r26306)
- Feature: [NoGo] ScriptStoryPageElementList() - a list of all story page elements for a given page (r26305)
- Feature: [NoGo] ScriptStoryPageList() - a list of all story pages (r26303)
- Change: improve the performance of map generation (r26313, r26312, r26311, r26310, r26309, r26308)
- Fix: Station sizes > 8 were always allowed [FS#5929] (r26375)
- Fix: [NewGRF] Mixed up callback mask flags in station inspect window [FS#5928] (r26374)
- Fix: Calling DoCommandP during the gameloop cleared pending persistent storage changes [FS#5831] (r26371)
- Fix: [Windows] Use a separate event to indicate that the drawing thread has finished initialising, preventing potential deadlocks (r26367)
- Fix: [Windows] Protect the whole video driver from concurrent access (r26366)
- Fix: [Windows] Do not draw the cursor when its sprite is not ready and set _screen.dst_ptr immediately when the buffer changes [FS#5867] (r26365)
- Fix: Writing out of the bounds of the rail type map [FS#5892] (r26364)
- Fix: Reset the default window size icon size just like all the other cached icon sizes [FS#5906] (r26362)
- Fix: ClientSizeChanged is only called via WndProcGdi which already has the mutex [FS#5922] (r26360)
- Fix: Some order options do not combine with others, e.g. go via + full load [FS#5845] (r26357)
- Fix: Protect all VideoDriver_SDL methods with the (now recursive) _draw_mutex (r26351)
- Fix: Make sure link graph jobs can delete themselves after SLA_NULL [FS#5898] (r26347)
- Fix: Call Layouter::ReduceLineCache from GenerateTownName in all cases to keep cache size in check [FS#5870] (r26346)
- Fix: Rewrite SmallStack so that it does not use a pool and is re-entrant (r26343)
- Fix: Reroute cargo when automatic distribution is switched off [FS#5902] (r26341)
- Fix: Do not redraw the link graph overlay if it is empty [FS#5908] (r26338)
- Fix: Some inconsistencies regarding link graph (job) IDs (r26331)
- Fix: The case of rerouting cargo from one VehicleCargoList to another (r26330)
- Fix: Take care of next_station when reassigning from MTA_DELIVER to MTA_TRANSFER [FS#5901] (r26327)
- Fix: when autosaving the message about a save already happening could be shown, even though the code's intention was to not show it [FS#5871] (r26326)
- Fix: Check whether NewGRF change vehicle capacity when they are not supposed to, and truncate cargo appropriately if they are allowed to [FS#5897] (r26317)
- Fix: The giant-screenshot confirmation window only triggered for ridiculously big screenshots, not for ludicrously big ones [FS#5899] (r26314)

1.4.0-beta4 (2014-02-06)
------------------------------------------------------------------------
- Change: [NewGRF] Make vehicle variable 61 return 'not available' instead of zero when using it in invalid callback contexts (r26294)
- Feature: Display speed limit also for road bridges in the TileInfo window [FS#5849] (r26277)
- Fix: [NoGo] Invalid DoCommand return callback for method returning bool (r26298)
- Fix: Correctly identify opposite ends of bridges and tunnels when converting rails [FS#5866, FS#5888] (r26291)
- Fix: Prevent infinite recursion also in RefreshLinks [FS#5878] (r26283)
- Fix: [NoAI] Some RemoveRail methods required to set a valid railtype, though it was not used anyway. Remove the need to set one [FS#5853] (r26279)
- Fix: Do not spawn link graph jobs for link graphs with only one node [FS#5874] (r26276)
- Fix: [NewGRF] If NewGRF provided the same station name for different industry types, stations would end up with same name. So also consider the provided name, not only the industry type (r26275)

1.4.0-beta3 (2014-01-21)
------------------------------------------------------------------------
- Feature: Several small performance improvements with the SSE blitters (r26260, r26259, r26256, r26255, r26254)
- Feature: [NewGRF] Add StringCodes 9A 1B, 9A 1C and 9A 1D to display amounts of cargo (r26244)
- Fix: Do not run into infinite recursion when getting next stopping station [FS#5865] (r26267, r26263)
- Fix: Update smallmap overlay if player joins different company and make sure company masks are valid [FS#5860] (r26266)
- Fix: Do not rebuild the link graph overlay cache twice in a row (r26265)
- Fix: Custom currency was reset on game start (r26262)
- Fix: Possible out of bounds reads with the SSE blitters [FS#5854, FS#5855] (r26247)
- Fix: Do not over reserve after autorefit, but do reserve mail for aircraft (r26236)
- Fix: Decimal and digit separators were swapped for Korean language (r26235)

1.4.0-beta2 (2014-01-07)
------------------------------------------------------------------------
- Feature: Blitter autoselection is now based on full animation state, so a non-animated specialised blitter will generally be chosen when animation is turned off (r26217)
- Feature: Specialised animated SSE4 blitter, and non-animated SSE4.1, SSSE3 and SSE2 blitters, improving the blitting significantly in many situations (r26214, r26213, r26212, r26211)
- Feature: Specialised SSE 4.1 sprite sorter, improving the sorting performance significantly (r26205)
- Fix: Validate everything from ini, obg, obs, obs, ... files [FS#5829] (r26206)
- Fix: Allow refitting at station if cargo has already been reserved (r26187)
- Fix: Visual effects did not work for articulated RV parts (r26180)

1.4.0-beta1 (2013-12-24)
------------------------------------------------------------------------
- Feature: [NewGRF] Vehicle variable 4D for determining the position within an articulated vehicle (r26157)
- Feature: [NewGRF] Invalidate vehicle colour palette when leaving a station [FS#5669] (r26027)
- Feature: [NoGo] New goal type that show a story page when clicked (r26012)
- Feature: Optional filter parameter to the 'content state' console command, to limit the content list to only content where the name match the filter (r26000)
- Feature: When calling the 'content select' console command without args, display all selected content (r25999)
- Feature: XDG base directory support [FS#5385] (r25975)
- Feature: [Script] ScriptTown::GetFundBuildingsDuration (r25969)
- Feature: [Script] ScriptTown::TOWN_GROWTH_NONE to indicate no town growth via ScriptTown::SetGrowthRate and GetGrowthRate (r25968)
- Feature: [NoGo] GSTown::TOWN_GROWTH_NORMAL to reset a town growth rate set previously via GSTown::SetGrowthRate (r25967)
- Feature: [NewGRF Debugging] Inspecting other vehicles in a chain (r25946)
- Feature: [NewGRF] Object property 0x18 to allow specifying the number of objects of that type being placed upon map creation (r25878)
- Feature: [NewGRF] Object property 0x10, bit 13 indicating that object amount scales with water content of map border (e.g. used for lighthouses) (r25874)
- Feature: Highlight active goto item in order list dropdown [FS#5784] (r25859)
- Feature: [Admin] Send info on bankruptcy quarters also in ADMIN_PACKET_SERVER_COMPANY_INFO [FS#5756] (r25845)
- Feature: Increase maximum number of object instances on the map from 64k to about 16M (r25844)
- Feature: Increase the total number of object types from 256 to 64000 (r25835)
- Feature: [NewGRF] Increase the object class limit from 32 to 255 (r25831)
- Feature: Toggle button for wrapping lines in the textfile GUI [FS#5748] (r25816)
- Feature: [NoGo] Game Scripts can now charge fees and give money to companies (r25788)
- Feature: [Script] Allow AIs and GS to found towns. Allow GS to rename towns (r25785)
- Feature: Add keywords to the openttd.desktop.in file (r25783)
- Feature: Sticky and shade buttons for jukebox window [FS#5743] (r25776)
- Feature: Additional layered main toolbar arrangements (r25772)
- Feature: Allow implicit orders even if no explicit ones are given (r25735)
- Feature: [OSX] Pinch gesture support for zooming [FS#4760] (r25666)
- Feature: Split unit localisation choice into a choice per type of unit, and move it to the advanced settings (r25508)
- Feature: Have tractive effort in imperial (lbf) and metric (kgf) units, have weights and volumes in imperial units (short tons, gallons) [FS#5482] (r25508)
- Feature: Differentiate between total waiting cargo count and available (not reserved) cargo count in the station list and sort based on the cargo count, not the cargo value (r25405)
- Feature: Timetable spreading of vehicles by Ctrl+Click when setting a start date (r25377)
- Feature: Allow opening a goal list and story window specific to a company (r25372, r25369)
- Feature: Show cargo by next hops and final destinations in the station GUI (r25365)
- Feature: Consider cargo waiting at other stations for rating at the origin station (r25362)
- Feature: Distribute cargo according to plan given by linkgraph (r25361)
- Feature: [NoGo] GUI for viewing story pages (r25344)
- Feature: Add industry list to scenario editor's map menu (r25335)
- Feature: [NoGo] Allow more concurrent goals in a game (r25299)
- Feature: [NoGo] Goals can now have a progress text and/or be marked as completed (r25296)
- Feature: Allow saving window sizes as default sizes (r25295)
- Feature: Add another button to window title bars to resize the window to its default size (r25294)
- Feature: Save stickyness of windows when Ctrl+Clicking the sticky button (r25292)
- Feature: When opening the object-build window, restore the object build-window to the previous state (r25284)
- Feature: Show the approximate monthly supply to a station of the different cargoes (r25272)
- Feature: [Win32] Driver param for the DirectMusic driver to specify the output port to use [FS#5552] (r25269)
- Feature: Linkgraph overlay over main viewport (r25264)
- Feature: Linkgraph overlay for smallmap (r25262)
- Feature: Display imminent closure of an industry in its view window (r25238)
- Feature: [NewGRF] Expose sprite base of foundation and shore sprites via Action D Game Variables (r25230)
- Feature: [NewGRF] Variable 0x82 for canals and rivers (dike map) (r25229)
- Feature: [Script] ScriptStation::HasRating [FS#5514] (r25150)
- Feature: Add sorting on rating for the town directory window [FS#5288] (r25097)
- Feature: Introduce dropdown for selecting the sort criterion in the town directory window (r25094)
- Feature: Georgian Lari and Iranian Rial as currencies [FS#5212] (r25076)
- Feature: Collapse subtypes in the refit GUI and only expand them after selecting the cargo type (r25044)
- Feature: Only display subtypes in the refit GUI which are available for all selected vehicles. Also add a generic list item to refit while keeping the subtypes of individual vehicles [FS#3764] (r25043)
- Feature: Show the amount of cargo that has already been reserved by full loading vehicles in the station (r25013)
- Change: [NewGRF] Reset the temporary storage registers for every sprite resolving (r26173)
- Change: Improve layout of build-airport GUI [FS#5832] (r26165)
- Change: Make it slightly more clear what ports are coming from where in the debug output when listening (r25997)
- Change: Preselect the current replacement in the right-side list of the autoreplace GUI, instead of selecting the first resp. previous item [FS#5734] (r25919)
- Change: Unify behaviour when clicking on different items in the goto dropdown list when giving orders (r25894)
- Change: Do not offer subsidies for auto-distributed cargo [FS#5766] (r25882)
- Change: Allow to remove unowned objects unless they have the 'unremovable' flag (r25879)
- Change: In scenario editor allow to build all objects which were available at any point in the past to support building scenarios with historic items (r25875)
- Change: Display the cost to upgrade a bridge at the end of bridge that was clicked and not the other end, which could be outside of the screen in some cases (r25854)
- Change: [NewGRF] Lower the limit of airport tile types, house types, industry tile types and object types per NewGRF from 256 to 255 to prevent usage of ID 0xFF in Action3, and thus allowing it to become an extended byte somewhen (r25841, r25839, r25837, r25834)
- Change: Clarify the relevance of the permissible palettes (r25792)
- Change: [NewGRF] Invalidate vehicle recolour palette during (un)loading [FS#5669] (r25648)
- Change: If an editbox is configured to be cleared with ESC, but the editbox is already empty, unselect the editbox instead (r25647)
- Change: Make the bridge and object picker not restore their previous size, but the previously saved size (r25543)
- Change: Right align the infrastructure statistics [FS#5595] (r25515)
- Change: Clarify the meaning of the server advertisement settings (r25252)
- Fix: Unify the time a RV needs to travel through a curve [FS#5831] (r26169)
- Fix: Certain hotkeys crashed the content GUI when the list was empty [FS#5834] (r26167)
- Fix: Backup data of altered persistent storage arrays was freed twice [FS#5830] (r26161)
- Fix: [Script] Various API functions did not check whether ScriptRoad::SetCurrentRoadType was called appropriately [FS#5825] (r26149)
- Fix: [Script] API failed for vehicles with only implicit orders [FS#5824] (r26148)
- Fix: Several fixes found by static code analysis (r26132, r26130-r26097, r26091-r26077, r26073-r26046)
- Fix: Invalidate vehicle colour palette again when rearranging consist, reversing, etc (r26026)
- Fix: [NoGo] Properly validate the range of the growth rate passed to GSTown::SetGrowthRate, instead of masking it to 16 bit (r25966)
- Fix: [Admin] The frame of a command packet was not set for the packets that were sent via the admin interface (r25770)
- Fix: [OSX] The new 10.7 fullscreen code can now also be compiled with older SDK versions [FS#4744] (r25657)
- Fix: Under certain circumstances a track type change would make the end-of-line-is-red setting ineffective [FS#5216] (r25609)
- Fix: Highlight the right entry in the sorting selector in station view window (r25426)
- Fix: Suppress focusing editboxes which are not visible (r25413)
- Fix: Add missing compatibility settings in afterload (r25390)
- Fix: Allow changing GS settings in-game via the AI/GS config window [FS#5507] (r25104)
- Fix: [NewGRF] Do not compare GRF local cargo subtype IDs from different GRFs (r25042)
- Remove: Ordered refit with subtypes, since the cases where it worked were corner cases rather than the general case [FS#3764] (r25041)

1.3.3 (2013-11-29)
------------------------------------------------------------------------
- Fix: Aircraft crashing near the map's border due to a lack of airports could trigger a crash [CVE-2013-6411] [FS#5820] (r26134)

1.3.3-RC2 (2013-11-24)
------------------------------------------------------------------------
- Fix: [Script] Prevent scripts from crashing OpenTTD when they send text with command codes to user editable texts such as sign and station names [FS#5818] (r26093, r26092)
- Fix: Occasional hanging when client joins [FS#5811] (r26043)
- Fix: Multi line text was handled incorrectly causing glitches [FS#5809] (r26037, r26036)

1.3.3-RC1 (2013-11-17)
------------------------------------------------------------------------
- Fix: Crash when the ICU layouter thinks a font is corrupted [FS#5711] (r26029, r26018, r26017, r26016, r26015)
- Fix: Make the installer warning about Windows XP SP3 not trigger on the 64 bit Windows XP which is not really Windows XP to start with [FS#5773] (r26028)
- Fix: Only forward key presses to the IME system if an edit box has the input focus (r26023, r25693, r25691, r25689, r25686, r25684, r25682, r25681, r25667)
- Fix: Having trains miss a platform that is just being modified is less of a problem than having trains stop twice without moving [FS#5684] (r26013)
- Fix: --help text of ./configure for packages that require pkg-config (r26011)
- Fix: The AI/GS library name to use in Import, is not the name given by GetName but GetInstanceName [FS#5662] (r26010)
- Fix: [Windows] Conditional expression with enumeral with non-enumeral type (r26009)
- Fix: Game script showing vehicle on e.g. a goal, then the vehicle being removed and eventually being replaced by a non-user vehicle (most likely smoke) causing an assertion to trigger [FS#5804] (r26007, r26006)
- Fix: Crash when transferring savegame from server to client [FS#5478] (r26005)
- Fix: [OSX] Text input into an edit box would trigger hotkeys [FS#5705] (r26003, r25743, r25671)
- Fix: Comma key collided with F12 key for hotkeys; also remove '+' as that is generally not a key (the '+' on the numpad is a separate one) [FS#5679] (r25973)
- Fix: Rail laying sounds of others could be heard in multiplayer [FS#5665] (r25972)
- Fix: [SDL] Recursive mutex locking when changing blitter [FS#5787] (r25970)
- Fix: The wrong vehicle would be taken in a shared order vehicle list window when the ID >= 65536, causing assertions triggering later on [FS#5800] (r25965)
- Fix: [OSX] Compilation under OSX 10.9 [FS#5797] (r25962, r25951, r25950, r25913)
- Fix: [NewGRF] A powered rail type implies it is compatible as well, but some NewGRF did not state that causing the path reservation code to bail out in some cases because there was no compatible path [FS#5779] (r25961)
- Fix: Temporary persistent storage modifications, e.g. command tests or those from GUI, were not properly reset, creating the possibility of desyncs [FS#5772] (r25956)
- Fix: Train's 'force proceed' status gets reset when the track on the other side of the tile has a signal [FS#5723] (r25955)
- Fix: Wrong signal conversions for savegames from before 0.4.5 [FS#5731, FS#5732] (r25954, r25953)
- Fix: Do not skip numbers when skipping spaces and other sorting 'improving' characters [FS#5719] (r25952)
- Fix: Text direction forcing characters were not filtered out, but shown as ? when ICU was not used for layouting. These are included in chat and console messages to force them to be displayed right [FS#5683] (r25949)
- Fix: NewGRF inspect window in RTL mode (r25943)
- Fix: [NoGo] Preserve the relative town growth progress when changing the town growth rate [FS#5786] (r25931)
- Fix: Several drawing overflows in the signal GUI [FS#5733] (r25929, r25928, r25927)
- Fix: Centre the edit sign window like all query windows (r25918)
- Fix: Initialisation of default objects swapped cost and dates (r25868)
- Fix: Use the actual sprite dimensions for sizing the dropdown arrow of dropdown widgets (r25864)
- Fix: If the child widgets of a NWidgetHorizontal container do not fill the complete container, align them according to text direction [FS#5686] (r25862, r25729)
- Fix: When clearing font cache, also clear layout cache [FS#5737] (r25860)
- Fix: Goto button in order window was not always lowered when it should [FS#5783] (r25858, 25857)
- Fix: Searching for a suitable font failed, if one of the fonts had no '?' glyph, and no baseset is installed [FS#5704] (r25822, r25820)
- Fix: Sprite 0 was considered available, even if no baseset was loaded (r25821)
- Fix: [GS] Language file scanner considered filenames starting with '.' as valid translations, resulting in languages with empty name, which causes trouble [FS#5750] (r25818)
- Fix: [GS] Handle savegames which contain GS translations for languages with empty name more gently [FS#5750] (r25817)
- Fix: [Script] ScriptTile::IsBuildableRectangle could report true for tiles outside of the map, if they happened to wrap around into a valid area [FS#5754] (r25815)
- Fix: [Script] Decoding JSON data with an empty array from Admin port failed (r25809)
- Fix: Ensure the vehicle bar is high enough for the start/stop vehicle graphics [FS#5740] (r25805)
- Fix: Lower sprite and text at the vehicle bar if it is pressed [FS#5739] (r25804)
- Fix: Draw start/stop graphics of the vehicle bar at the right place in RTL mode [FS#5738] (r25803)
- Fix: [NewGRF] Do not allow changing palette when it is set by the NewGRF (r25794, r25793, r25972)
- Fix: Some spelling corrections to Catalan and Latin American town names [FS#5746] (r25775, r25774)
- Fix: If old savegames contain bridges over owned land, keep on drawing the bridges nevertheless [FS#5725] (r25753)
- Fix: Several RTL alignment issues [FS#5692] (r25733, r25732, r25731)
- Fix: NWidgetMatrix used pip_pre and pip_post inconsistently and incorrectly, causing misalignment for RTL [FS#5686] (r25727)
- Fix: Right side of object class string was misaligned (r25726)
- Fix: [OSX] Do not pass -mmacosx-version-min to compilers that do not support it (r25706)
- Fix: Autoreplace/renew also refits free wagons [FS#5700] (r25698)
- Fix: Textbuf caret rendering for complex scripts (e.g. Tamil) (r25696, r25694, r25652, r25651, r25092, r25091)
- Fix: Vehicle::MarkDirty must be called for the front engine [FS#5700] (r25695)
- Fix: [Win32] Several issues regarding conversion of characters (r25677, r25676, r25675, r25674, r25673)
- Fix: [Win32] Handle Unicode characters from outside the BMP correctly (r25672, r25670, r25669, r25668)
- Fix: [OSX] Crash when unhiding the main window [FS#4689] (r25665)
- Fix: [OSX] Bootstrap downloading of a baseset did not work [FS#4847] (r25664)
- Fix: [OSX] Monospace font detection [FS#4857] (r25663, r25662)
- Fix: [OSX] Rework font detection to work even if no default font sprites are present [FS#4847] (r25661)
- Fix: [OSX] The name is OpenTTD, not OTTD (r25660)
- Fix: [OSX] System mouse cursor could become visible during dragging [FS#4420] (r25659)
- Fix: [OSX] The mouse cursor would sometimes jump near the window borders [FS#4392] (r25658)
- Fix: [OSX] The new 10.7 fullscreen code can now also be compiled with older SDK versions [FS#4744] (r25656)
- Fix: [OSX] Mouse cursor was not displayed properly after switching to fullscreen on 10.7+ (r25655)
- Fix: Improve character and word deletion for CJK languages and complex scripts (r25654, r25653)
- Fix: [OSX] Define version constants before they are used (r25643)
- Fix: Some icu_config scripts are too stupid to separate two ldflags by spaces, thus only call it with one (r25642, r25638)
- Fix: Do not suggest a start date for the game when there will be no vehicles available at all (r25640, r25639)
- Fix: City list sort of population and rating are reversed compared to the icon [FS#5666] (r25630)
- Fix: [Script] Give a slightly less generic error when removing nonexistent rail [FS#5651] (r25614)
- Fix: [Script] Do not return ERR_UNKNOWN when trying to move an order to its current location [FS#5648] (r25612)
- Fix: Various misreferences in AI and GS changelog [FS#5649] (r25607)
- Fix: [Script] If a NewGRF returned station type that could not be built by an AI via callback 18, an unknown error would be thrown instead of falling back to the default station [FS#5641] (r25605)
- Fix: Only the front engine's date of last service was updated [FS#5550] (r25604)

(ryoon)

2014-12-20 21:04:41 UTC MAIN commitmail json YAML

Updated textproc/libyaml to 0.1.6nb1

(wiz)

2014-12-20 21:04:32 UTC MAIN commitmail json YAML

2014-12-20 20:21:12 UTC MAIN commitmail json YAML

2014-12-20 12:02:28 UTC MAIN commitmail json YAML

Update HOMEPAGE, was Host Unknown. But the link to download still gets 404.

(mef)

2014-12-20 09:46:16 UTC MAIN commitmail json YAML

Note update of net/ntp4 package to 4.2.8.

(taca)

2014-12-20 09:45:46 UTC MAIN commitmail json YAML

Update ntpd4 pacakge to 4.2.8, here is summary for security related fixes.

NTP 4.2.8 (Harlan Stenn <stenn@ntp.org>, 2014/12/18)

Focus: Security and Bug fixes, enhancements.

Severity: HIGH

In addition to bug fixes and enhancements, this release fixes the
following high-severity vulnerabilities:

* Weak default key in config_auth().

  References: [Sec 2665] / CVE-2014-9293 / VU#852879
  CVSS: (AV:N/AC:L/Au:M/C:P/I:P/A:C) Base Score: 7.3
  Vulnerable Versions: all releases prior to 4.2.7p11
  Date Resolved: 28 Jan 2010

  Summary: If no 'auth' key is set in the configuration file, ntpd
would generate a random key on the fly.  There were two
problems with this: 1) the generated key was 31 bits in size,
and 2) it used the (now weak) ntp_random() function, which was
seeded with a 32-bit value and could only provide 32 bits of
entropy.  This was sufficient back in the late 1990s when the
code was written.  Not today.

  Mitigation: Upgrade to 4.2.7p11 or later.

  Credit: This vulnerability was noticed in ntp-4.2.6 by Neel Mehta
  of the Google Security Team.

* Non-cryptographic random number generator with weak seed used by
  ntp-keygen to generate symmetric keys.

  References: [Sec 2666] / CVE-2014-9294 / VU#852879
  CVSS: (AV:N/AC:L/Au:M/C:P/I:P/A:C) Base Score: 7.3
  Vulnerable Versions: All NTP4 releases before 4.2.7p230
  Date Resolved: Dev (4.2.7p230) 01 Nov 2011

  Summary: Prior to ntp-4.2.7p230 ntp-keygen used a weak seed to
  prepare a random number generator that was of good quality back
in the late 1990s. The random numbers produced was then used to
generate symmetric keys. In ntp-4.2.8 we use a current-technology
cryptographic random number generator, either RAND_bytes from
OpenSSL, or arc4random().

  Mitigation: Upgrade to 4.2.7p230 or later.

  Credit:  This vulnerability was discovered in ntp-4.2.6 by
  Stephen Roettger of the Google Security Team.

* Buffer overflow in crypto_recv()

  References: Sec 2667 / CVE-2014-9295 / VU#852879
  CVSS: (AV:N/AC:L/Au:N/C:P/I:P/A:P) Base Score: 7.5
  Versions: All releases before 4.2.8
  Date Resolved: Stable (4.2.8) 18 Dec 2014

  Summary: When Autokey Authentication is enabled (i.e. the ntp.conf
  file contains a 'crypto pw ...' directive) a remote attacker
can send a carefully crafted packet that can overflow a stack
buffer and potentially allow malicious code to be executed
with the privilege level of the ntpd process.

  Mitigation: Upgrade to 4.2.8, or later, or
Disable Autokey Authentication by removing, or commenting out,
all configuration directives beginning with the crypto keyword
in your ntp.conf file.

  Credit: This vulnerability was discovered by Stephen Roettger of the
  Google Security Team.

* Buffer overflow in ctl_putdata()

  References: Sec 2668 / CVE-2014-9295 / VU#852879
  CVSS: (AV:N/AC:L/Au:N/C:P/I:P/A:P) Base Score: 7.5
  Versions: All NTP4 releases before 4.2.8
  Date Resolved: Stable (4.2.8) 18 Dec 2014

  Summary: A remote attacker can send a carefully crafted packet that
  can overflow a stack buffer and potentially allow malicious
code to be executed with the privilege level of the ntpd process.

  Mitigation: Upgrade to 4.2.8, or later.

  Credit: This vulnerability was discovered by Stephen Roettger of the
  Google Security Team.

* Buffer overflow in configure()

  References: Sec 2669 / CVE-2014-9295 / VU#852879
  CVSS: (AV:N/AC:L/Au:N/C:P/I:P/A:P) Base Score: 7.5
  Versions: All NTP4 releases before 4.2.8
  Date Resolved: Stable (4.2.8) 18 Dec 2014

  Summary: A remote attacker can send a carefully crafted packet that
can overflow a stack buffer and potentially allow malicious
code to be executed with the privilege level of the ntpd process.

  Mitigation: Upgrade to 4.2.8, or later.

  Credit: This vulnerability was discovered by Stephen Roettger of the
Google Security Team.

* receive(): missing return on error

  References: Sec 2670 / CVE-2014-9296 / VU#852879
  CVSS: (AV:N/AC:L/Au:N/C:N/I:N/A:P) Base Score: 5.0
  Versions: All NTP4 releases before 4.2.8
  Date Resolved: Stable (4.2.8) 18 Dec 2014

  Summary: Code in ntp_proto.c:receive() was missing a 'return;' in
  the code path where an error was detected, which meant
processing did not stop when a specific rare error occurred.
We haven't found a way for this bug to affect system integrity.
If there is no way to affect system integrity the base CVSS
score for this bug is 0. If there is one avenue through which
system integrity can be partially affected, the base score
becomes a 5. If system integrity can be partially affected
via all three integrity metrics, the CVSS base score become 7.5.

  Mitigation:
        Upgrade to 4.2.8, or later,
        or Remove or comment out all configuration directives
beginning with the crypto keyword in your ntp.conf file.

  Credit: This vulnerability was discovered by Stephen Roettger of the
  Google Security Team.

See http://support.ntp.org/security for more information.

(taca)

2014-12-20 09:25:36 UTC MAIN commitmail json YAML

Updated devel/subversion to 1.8.11

(obache)

2014-12-20 09:22:57 UTC MAIN commitmail json YAML

Update subversion to 1.8.11.

This release addresses two security issues:
    CVE-2014-3580: mod_dav_svn DoS from invalid REPORT requests.
    CVE-2014-8108: mod_dav_svn DoS from use of invalid transaction names.

Version 1.8.11
(15 Dec 2014, from /branches/1.8.x)
http://svn.apache.org/repos/asf/subversion/tags/1.8.10

User-visible changes:
  - Client-side bugfixes:
    * checkout/update: fix file externals failing to follow history and
      subsequently silently failing (issue #4185)
    * patch: don't skip targets in valid --git difs (r1592014, r1592034)
    * diff: make property output in diffs stable (r1589360)
    * diff: fix diff of local copied directory with props (r1619380, r1619393)
    * diff: fix changelist filter for repos-WC and WC-WC (r1621978, r1621981)
    * remove broken conflict resolver menu options that always error out
      (r1620332)
    * improve gpg-agent support (r1600331, r1600348, 1600368, r1600563,
      r1600781)
    * fix crash in eclipse IDE with GNOME Keyring (issue #3498)
    * fix externals shadowing a versioned directory (issue #4085)
    * fix problems working on unix file systems that don't support
      permissions (r1612225)
    * upgrade: keep external registrations (issue #4519)
    * cleanup: iprove performance of recorded timestamp fixups (r1633126)
    * translation updates for German

  - Server-side bugfixes:
    * disable revprop caching feature due to cache invalidation problems
      (r1543594, r1619774, r1619105, r1619118, r1619153, r1619802)
    * skip generating uniquifiers if rep-sharing is not supported (r1561426)
    * mod_dav_svn: reject requests with missing repository paths (r1643409)
    * mod_dav_svn: reject requests with invalid virtual transaction names
      (r1643437)
    * mod_dav_svn: avoid unneeded memory growth in resource walking
      (issue #4531)

Developer-visible changes:
  - General:
    * make sure all members of the repos layer notify struct are valid,
      fixes crashes in API users using all members (r1616131)
    * properly generate a version resource when building on Windows (r1542610,
      r1564576, r1568180)
    * fix LIBTOOL_M4 and LIBTOOL_CONFIG variable not be evaluated properly
      during a unix build (r1637826)
    * allow the use of libtool 2.4.3 (r1640862, r1640873, r1643793)

(obache)

2014-12-20 07:51:10 UTC MAIN commitmail json YAML

Updated www/apache-tomcat7 to 7.0.57

(ryoon)

2014-12-20 07:49:26 UTC MAIN commitmail json YAML

Update to 7.0.57

Changelog:
Tomcat 7.0.57 (violetagg)

    Catalina

        add 47919: Extend the information logged when Tomcat starts to optionally log the values of command line arguments (enabled by default) and environment variables (disabled by default). Note that the values added to CATALINA_OPTS and JAVA_OPTS environment variables will be logged, as they are used to build up the command line. (markt)
        add 56401: Log version information when Tomcat starts. (markt/kkolinko)
        fix 57022: Ensure SPNEGO authentication continues to work with the JNDI Realm using delegated credentials with recent Oracle JREs. (markt)
        fix Correct a couple of NPEs in the JNDI Realm that could be triggered with when not specifying a roleBase and enabling roleSearchAsUser. (markt)
        fix Remove the unnecessary registration of context.xml as a redeploy resource. The context.xml having an external docBase has already been registered as a redeploy resources at first. (kfujino)
        fix Improve the previous fix for 56401. Avoid logging version information in the constructor since it then gets logged at undesirable times such as when using StoreConfig. (markt)
        fix 57105: When parsing web.xml do not limit the buffer element of the jsp-property-group element to integer values as the allowed values are <number>kb or none. (markt)
        update Update the minimum required version of the Tomcat Native library (if used) to 1.1.32. (markt)
        update 57144: Improve ClientAbortException to provide non-null message. (kkolinko)

    Coyote

        add 53952: Add support for TLSv1.1 and TLSv1.2 for APR connector. Based upon a patch by Marcel Å ebek. This feature requires Tomcat Native library 1.1.32 or later. (schultz/jfclere)
        add Disable SSLv3 by default for JSSE based HTTPS connectors (BIO and NIO). The change also ensures that SSLv2 is disabled for these connectors although SSLv2 should already be disabled by default by the JRE. (markt)
        add Disable SSLv3 by default for the APR/native HTTPS connector. (markt)
        fix Do not increase remaining counter at end of stream in IdentityInputFilter. (kkolinko)

    Jasper

        fix 57099: Ensure that semi-colons are not permitted in JSP import page directives. (markt)

    Cluster

        fix Avoid possible integer overflows reported by Coverity Scan. (fschumacher)

    WebSocket

        fix 57054: Correctly handle the case in the WebSocket client when the HTTP response to the upgrade request can not be read in a single pass; either because the buffer is too small or the server sent the response in multiple packets. (markt)
        fix Fix client subprotocol handling. (remm)
        fix Add null checks for arguments in remote endpoint. (remm/kkolinko)
        fix 57091: Work around the behaviour of the Oracle JRE when creating new threads in an applet environment that breaks the WebSocket client implementation. Patch provided by Niklas Hallqvist. (markt)
        fix 57118: Ensure that that an EncodeException is thrown by RemoteEndpoint.Basic.sendObject(Object) rather than an IOException when no suitable Encoder is configured for the given Object. (markt)

    Web applications

        fix Correct documentation for ServerCookie.ALLOW_NAME_ONLY system property. (kkolinko)
        fix 57049: Clarified that jvmRoute can be set in <Engine>'s jvmRoute or in a system property. (schultz)
        fix Correct version of Java WebSocket mentioned in documentation (s/1.0/1.1/). (markt/kkolinko)
        update In examples web application move Async and Comet examples from JSP to Servlet examples page. (kkolinko)
        update Suppress timestamp comments and enable charset header in Javadoc. (kkolinko)

    jdbc-pool

        fix 57079: Use Tomcat version number for jdbc-pool module when building and shipping the module as part of Tomcat. (markt/kkolinko)
        fix Fix broken overview page in javadoc generated via "javadoc" task in jdbc-pool build.xml file. (kkolinko)

    Other

        update 56079: The Apache Tomcat Windows service and the Apache Tomcat Windows service monitor application are now digitally signed. (markt)
        fix Fix timestamps in Tomcat build and jdbc-pool to use 24-hour format instead of 12-hour one and use UTC timezone. (markt/kkolinko)
        update Improve Tomcat build script to ensure that only one ecj-nn.jar file is present in Tomcat lib directory when Eclipse JDT Compiler is updated to a new version. (kkolinko)
        update 56596: Update to Tomcat Native Library version 1.1.32 to pick up the Windows binaries that are based on OpenSSL 1.0.1j and APR 1.5.1. (markt)
        code In Tomcat tests: log name of the current test method at start time. (kkolinko)

(ryoon)

2014-12-20 04:59:32 UTC MAIN commitmail json YAML

Updated graphics/libsixel to 1.4.3

(obache)

2014-12-20 04:59:19 UTC MAIN commitmail json YAML

Update libsixel to 1.4.3.

some portabilities and minor fixes.

(obache)

2014-12-20 02:28:26 UTC MAIN commitmail json YAML

Updated www/mediawiki to 1.24.1

(wen)

2014-12-20 02:26:59 UTC MAIN commitmail json YAML

Update to 1.24.1(security update)

Upstream changes:
MediaWiki 1.24.1
This is a security and maintenance release of the MediaWiki 1.24 branch.

Changes since 1.24.0
(bug T76686) [SECURITY] thumb.php outputs wikitext message as raw HTML, which could lead to xss. Permission to edit MediaWiki namespace is required to exploit this.
(bug T77028) [SECURITY] Malicious site can bypass CORS restrictions in $wgCrossSiteAJAXdomains in API calls if it only included an allowed domain as part of its name.
(bug T74222) The original patch for T74222 was reverted as unnecessary.
Fixed a couple of entries in RELEASE-NOTES-1.24.
(bug T76168) OutputPage: Add accessors for some protected properties.
(bug T74834) Make 1.24 branch directly installable under PostgreSQL.

(wen)

2014-12-19 20:46:33 UTC MAIN commitmail json YAML

Note update of the "mutt-devel" package to version 1.5.23nb2.

(tron)

2014-12-19 20:45:53 UTC MAIN commitmail json YAML

Add fix for the security vulnerability reported in CVE-2014-9116 taken
from the mutt GIT repository.

(tron)

2014-12-19 16:13:25 UTC MAIN commitmail json YAML

Note update of lang/php56 package to 5.6.4.

(taca)

2014-12-19 16:12:48 UTC MAIN commitmail json YAML

Update php56 to 5.6.4, including security fix.

18 Dec 2014, PHP 5.6.4

- Core:
  . Fixed bug #68091 (Some Zend headers lack appropriate extern "C" blocks).
    (Adam)
  . Fixed bug #68104 (Segfault while pre-evaluating a disabled function).
    (Laruence)
  . Fixed bug #68185 ("Inconsistent insteadof definition."- incorrectly
    triggered). (Julien)
  . Fixed bug #68355 (Inconsistency in example php.ini comments).
    (Chris McCafferty)
  . Fixed bug #68370 ("unset($this)" can make the program crash). (Laruence)
  . Fixed bug #68422 (Incorrect argument reflection info for array_multisort()).
    (Alexander Lisachenko)
  . Fixed bug #68545 (NULL pointer dereference in unserialize.c). (Anatol)
  . Fixed bug #68446 (Array constant not accepted for array parameter default).
    (Bob, Dmitry)
  . Fixed bug #68594 (Use after free vulnerability in unserialize()).
    (CVE-2014-8142) (Stefan Esser)

- Date:
  . Fixed day_of_week function as it could sometimes return negative values
    internally. (Derick)

- FPM:
  . Fixed bug #68381 (fpm_unix_init_main ignores log_level).
    (David Zuelke, Remi)
  . Fixed bug #68420 (listen=9000 listens to ipv6 localhost instead of all
    addresses). (Remi)
  . Fixed bug #68421 (access.format='%R' doesn't log ipv6 address). (Remi)
  . Fixed bug #68423 (PHP-FPM will no longer load all pools). (Remi)
  . Fixed bug #68428 (listen.allowed_clients is IPv4 only). (Remi)
  . Fixed bug #68452 (php-fpm man page is oudated). (Remi)
  . Fixed request #68458 (Change pm.start_servers default warning to
    notice). (David Zuelke, Remi)
  . Fixed bug #68463 (listen.allowed_clients can silently result
    in no allowed access). (Remi)
  . Fixed request #68391 (php-fpm conf files loading order).
    (Florian Margaine, Remi)
  . Fixed bug #68478 (access.log don't use prefix). (Remi)

- Mcrypt:
  . Fixed possible read after end of buffer and use after free. (Dmitry)

- GMP:
  . Fixed bug #68419 (build error with gmp 4.1). (Remi)

- PDO_pgsql:
  . Fixed bug #67462 (PDO_PGSQL::beginTransaction() wrongly throws exception
  when not in transaction) (Matteo)
  . Fixed bug #68351 (PDO::PARAM_BOOL and ATTR_EMULATE_PREPARES misbehaving)
  (Matteo)

- Session:
  . Fixed bug #68331 (Session custom storage callable functions not being called)
    (Yasuo Ohgaki)

- SOAP:
  . Fixed bug #68361 (Segmentation fault on SoapClient::__getTypes).
    (Laruence)

- zlib:
  . Fixed bug #53829 (Compiling PHP with large file support will replace
    function gzopen by gzopen64) (Sascha Kettler, Matteo)

(taca)

2014-12-19 16:11:15 UTC MAIN commitmail json YAML

Note update of lang/php55 package to 5.5.20.

(taca)

2014-12-19 16:10:39 UTC MAIN commitmail json YAML

Update php55 to 5.5.20, including security fix.

17 Dec 2014, PHP 5.5.20

- Core:
  . Fixed bug #68091 (Some Zend headers lack appropriate extern "C" blocks).
    (Adam)
  . Fixed bug #68185 ("Inconsistent insteadof definition."- incorrectly
    triggered). (Julien)
  . Fixed bug #68370 ("unset($this)" can make the program crash). (Laruence)
  . Fixed bug #68545 (NULL pointer dereference in unserialize.c). (Anatol)
  . Fixed bug #68594 (Use after free vulnerability in unserialize()).
    (CVE-2014-8142) (Stefan Esser)

- Date:
  . Fixed day_of_week function as it could sometimes return negative values
    internally. (Derick)

- FPM:
  . Fixed bug #68381 (fpm_unix_init_main ignores log_level).
    (David Zuelke, Remi)
  . Fixed bug #68420 (listen=9000 listens to ipv6 localhost instead of all
    addresses). (Remi)
  . Fixed bug #68421 (access.format='%R' doesn't log ipv6 address). (Remi)
  . Fixed bug #68423 (PHP-FPM will no longer load all pools). (Remi)
  . Fixed bug #68428 (listen.allowed_clients is IPv4 only). (Remi)
  . Fixed bug #68452 (php-fpm man page is oudated). (Remi)
  . Fixed request #68458 (Change pm.start_servers default warning to
    notice). (David Zuelke, Remi)
  . Fixed bug #68463 (listen.allowed_clients can silently result
    in no allowed access). (Remi)
  . Fixed request #68391 (php-fpm conf files loading order).
    (Florian Margaine, Remi)
  . Fixed bug #68478 (access.log don't use prefix). (Remi)

- Mcrypt:
  . Fixed possible read after end of buffer and use after free. (Dmitry)

- PDO_pgsql:
  . Fixed bug #66584 (Segmentation fault on statement deallocation) (Matteo)
  . Fixed bug #67462 (PDO_PGSQL::beginTransaction() wrongly throws exception
  when not in transaction) (Matteo)
  . Fixed bug #68351 (PDO::PARAM_BOOL and ATTR_EMULATE_PREPARES misbehaving)
  (Matteo)

- zlib:
  . Fixed bug #53829 (Compiling PHP with large file support will replace
    function gzopen by gzopen64) (Sascha Kettler, Matteo)

(taca)

2014-12-19 16:09:10 UTC MAIN commitmail json YAML

Note update of lang/php54 package to 5.4.36.

(taca)

2014-12-19 16:08:35 UTC MAIN commitmail json YAML

Update php54 to 5.4.36, including security fix.

18 Dec 2014 PHP 5.4.36

- Core:
  . Upgraded crypt_blowfish to version 1.3. (Leigh)
  . Fixed bug #68545 (NULL pointer dereference in unserialize.c). (Anatol)
  . Fixed bug #68594 (Use after free vulnerability in unserialize()).
    (CVE-2014-8142) (Stefan Esser)

13 Nov 2014 PHP 5.4.35

- Core:
  . Fixed bug #68365 (zend_mm_heap corrupted after memory overflow in
    zend_hash_copy). (Dmitry)

- Fileinfo:
  . Fixed bug #68283 (fileinfo: out-of-bounds read in elf note headers).
    (CVE-2014-3710) (Remi)

- GMP:
. Fixed bug #63595 (GMP memory management conflicts with other libraries
  using GMP). (Remi)

- PDO_pgsql:
  . Fixed bug #66584 (Segmentation fault on statement deallocation) (Matteo)

(taca)

2014-12-19 14:22:58 UTC MAIN commitmail json YAML

Updated devel/nss to 3.17.3nb1

(ryoon)

2014-12-19 14:21:55 UTC MAIN commitmail json YAML

Fix build of www/firefox.
The build breakage is caused from inconsistent use of sqlite3
from NetBSD base and pkgsrc.
Bump PKGREVISION.

(ryoon)

2014-12-19 14:08:12 UTC MAIN commitmail json YAML

+ postgresql-9.4.

(wiz)

2014-12-19 13:10:49 UTC MAIN commitmail json YAML

+ calibre-2.13.0, cmake-3.1, darktable-1.6, digikam-4.6, gxine-0.99.9,
  wordpress-4.1, xine-lib-1.2.6.

(wiz)

2014-12-19 11:37:13 UTC MAIN commitmail json YAML

Updated devel/py-mercurial to 3.2.3

(wiz)

2014-12-19 11:37:04 UTC MAIN commitmail json YAML

Update to 3.2.3:

This is an unscheduled bugfix release containing two security fixes
for issues we uncovered in both Git and Mercurial for CVE-2014-9390.
Users on Mac and Windows are encouraged to upgrade.

    context: stop setting None for modified or added nodes
    darwin: omit ignorable codepoints when normcase()ing a file path
    encoding: add hfsignoreclean to clean out HFS-ignored characters
    largefiles: don't actually remove largefiles in an addremove dry run
    log: fix log -f slow path to actually follow history
    log: fix log revset instability
    manifest: disallow setting the node id of an entry to None
    pathauditor: check for Windows shortname aliases
    pathauditor: check for codepoints ignored on OS X
    rebase: ignore negative state when updating back to original wc parent
    update: add tests for untracked local file
    update: don't overwrite untracked ignored files on update

(wiz)

2014-12-19 08:49:37 UTC MAIN commitmail json YAML

Set {MASTER_}SITES properly.

(obache)

2014-12-19 08:44:50 UTC MAIN commitmail json YAML

Update MASTER_SITES to ${MASTER_SITE_SOURCEFORGE:=enigma-game/}

(mef)

2014-12-19 08:38:03 UTC MAIN commitmail json YAML

Update MASTER_SITES to ${MASTER_SITE_SOURCEFORGE:=lensfun/}

(mef)

2014-12-19 08:33:20 UTC MAIN commitmail json YAML

Update MASTER_SITES to ${MASTER_SITE_SOURCEFORGE:=gtksee.berlios/}

(mef)

2014-12-19 06:50:16 UTC MAIN commitmail json YAML

Update MASTER_SITES (was Unknown site).

(mef)

2014-12-19 03:32:33 UTC MAIN commitmail json YAML

Note update of mail/roundcube package to 1.0.4.

(taca)

2014-12-19 03:32:00 UTC MAIN commitmail json YAML

Update roundcube to 1.0.4, which contains fix for possible CSRF attack.

RELEASE 1.0.4
-------------
- Disable TinyMCE contextmenu plugin as there are more cons than pros in using it (#1490118)
- Fix bug where show_real_foldernames setting wasn't honored on compose page (#1490153)
- Fix issue where Archive folder wasn't protected in Folder Manager (#1490154)
- Fix compatibility with PHP 5.2. in rcube_imap_generic (#1490115)
- Fix setting flags on servers with no PERMANENTFLAGS response (#1490087)
- Fix regression in SHAA password generation in ldap driver of password plugin (#1490094)
- Fix displaying of HTML messages with absolutely positioned elements in Larry skin (#1490103)
- Fix font style display issue in HTML messages with styled <span> elements (#1490101)
- Fix download of attachments that are part of TNEF message (#1490091)
- Fix handling of uuencoded messages if messages_cache is enabled (#1490108)
- Fix handling of base64-encoded attachments with extra spaces (#1490111)
- Fix handling of UNKNOWN-CTE response, try do decode content client-side (#1490046)
- Fix bug where creating subfolders in shared folders wasn't possible without ACL extension (#1490113)
- Fix reply scrolling issue with text mode and start message below the quote (#1490114)
- Fix possible issues in skin/skin_path config handling (#1490125)
- Fix lack of delimiter for recipient addresses in smtp_log (#1490150)
- Fix generation of Blowfish-based password hashes (#1490184)
- Fix bugs where CSRF attacks were still possible on some requests

(taca)

2014-12-19 01:09:02 UTC MAIN commitmail json YAML

Note updates to devel/git{,-base,-docs,-gitk,-svn}, www/gitweb.

(schmonz)

2014-12-19 00:49:53 UTC MAIN commitmail json YAML

Update to 2.2.1. From the changelog:

* We used to allow committing a path ".Git/config" with Git that is
  running on a case sensitive filesystem, but an attempt to check out
  such a path with Git that runs on a case insensitive filesystem
  would have clobbered ".git/config", which is definitely not what
  the user would have expected.  Git now prevents you from tracking
  a path with ".Git" (in any case combination) as a path component.

* On Windows, certain path components that are different from ".git"
  are mapped to ".git", e.g. "git~1/config" is treated as if it were
  ".git/config".  HFS+ has a similar issue, where certain unicode
  codepoints are ignored, e.g. ".g\u200cit/config" is treated as if
  it were ".git/config".  Pathnames with these potential issues are
  rejected on the affected systems.  Git on systems that are not
  affected by this issue (e.g. Linux) can also be configured to
  reject them to ensure cross platform interoperability of the hosted
  projects.

* "git fsck" notices a tree object that records such a path that can
  be confused with ".git", and with receive.fsckObjects configuration
  set to true, an attempt to "git push" such a tree object will be
  rejected.  Such a path may not be a problem on some filesystems
  but in order to protect those on HFS+ and on case insensitive
  filesystems, this check is enabled on all platforms.

A big "thanks!" for bringing this issue to us goes to our friends in
the Mercurial land, namely, Matt Mackall and Augie Fackler.

Also contains typofixes, documentation updates and trivial code clean-ups.

Changes since v2.2.0 are as follows:

Hartmut Henkel (1):
      l10n: de.po: fix typos

Jeff King (8):
      unpack-trees: propagate errors adding entries to the index
      read-tree: add tests for confusing paths like ".." and ".git"
      verify_dotfile(): reject .git case-insensitively
      t1450: refactor ".", "..", and ".git" fsck tests
      fsck: notice .git case-insensitively
      utf8: add is_hfs_dotgit() helper
      read-cache: optionally disallow HFS+ .git variants
      fsck: complain about HFS+ ".git" aliases in trees

Johannes Schindelin (3):
      path: add is_ntfs_dotgit() helper
      read-cache: optionally disallow NTFS .git variants
      fsck: complain about NTFS ".git" aliases in trees

(schmonz)

2014-12-18 23:26:16 UTC MAIN commitmail json YAML

Updated multimedia/xine-lib to 1.2.5nb8

(wiz)

2014-12-18 23:26:06 UTC MAIN commitmail json YAML

I found the magic incantation to make this use pkgsrc libdvdnav.
Do that. Bump PKGREVISION.

(wiz)

2014-12-18 22:56:49 UTC MAIN commitmail json YAML

Remove patch-aa after update removed it from distinfo.

(wiz)

2014-12-18 22:56:26 UTC MAIN commitmail json YAML

Remove patch-aa after update removed it from distinfo.

(wiz)

2014-12-18 22:55:50 UTC MAIN commitmail json YAML

Remove patch-aa after update removed it from distinfo.

(wiz)

2014-12-18 22:23:17 UTC MAIN commitmail json YAML

Updated mail/spamass-milter to 0.4.0

(gdt)

2014-12-18 22:23:01 UTC MAIN commitmail json YAML

Update to 0.4.0.
Several patches are dropped because they were integrated upsteam.
(Approval during freeze by wiz@.)

Upstream changes since 0.3.1 from
  https://savannah.nongnu.org/forum/forum.php?forum_id=8094

Item posted by Todd Kover <kovert> on Thu 11 Sep 2014 01:05:20 AM GMT.

I am pleased to announce the release of spamass-milt version 0.4.0.

This is the first of what I hope are a number of maintenance releases
with the goal to eliminate the outstanding bug/patch/feature requests:

The following changes are included in this release

- -C option to change the default reject code
- -S option to specify a path to sendmail (for the -x option)
- -R option to specify the rejection message
- -a option to skip messages that were authenticated
- IPv6 address support
- zombie process fix for the - option introduced in 0.3.2

This also includes the fix for CVE-2010-1132 that was in the unannounced but generated 0.3.2 release.

(gdt)

2014-12-18 18:06:02 UTC MAIN commitmail json YAML

Fix build. With 8.6.0 the rabbitmq plugin moved to contrib/.

(fhajny)

2014-12-18 13:36:58 UTC MAIN commitmail json YAML

Updated security/prelude-correlator to 0.9.0beta8nb5

(wiz)

2014-12-18 13:36:48 UTC MAIN commitmail json YAML

Fix packaging with py-setuptools-0.8.

While here, fix interpreter path in installed file. Bump PKGREVISION.

(wiz)

2014-12-18 12:33:30 UTC MAIN commitmail json YAML

Updated multimedia/xine-lib to 1.2.5nb7

(wiz)

2014-12-18 12:33:21 UTC MAIN commitmail json YAML

Use more existing packages from pkgsrc.
XXX: couldn't convince it to use pkgsrc libraries for libdvdnav
and libdvdread though
XXX: musepack support is old-fashioned, so I haven't enabled the pkgsrc
dependency since xine would then conflict with vlc

(wiz)

2014-12-18 12:26:52 UTC MAIN commitmail json YAML

2014-12-18 10:52:58 UTC MAIN commitmail json YAML

2014-12-18 10:51:59 UTC MAIN commitmail json YAML

2014-12-18 10:51:03 UTC MAIN commitmail json YAML

Remove redundant includes. Tell configure explicitly how to link Python.

(joerg)

2014-12-17 16:08:58 UTC MAIN commitmail json YAML

Add rtsp to PLIST_VARS to fix PLIST

(abs)

2014-12-17 15:22:44 UTC MAIN commitmail json YAML

Don't try to detect libz and friends, explicitly use them. Avoids
failing detection on SLES11.

(joerg)

2014-12-17 11:16:32 UTC MAIN commitmail json YAML

Change MASTER_SITES to original location.

(obache)

2014-12-17 09:46:48 UTC MAIN commitmail json YAML

+ Mesa-10.4, glu-10.4, gsharutils-4.14.2, phonon-4.8.3,
  tkgate-1.8.7 [pkg/49482], vinagre-3.14.3, wine-devel-1.7.33.

(wiz)

2014-12-17 07:23:04 UTC MAIN commitmail json YAML

Bump py-setuptools dependency to 0.8 since that version changed
version number handling.

(wiz)

2014-12-17 06:35:13 UTC MAIN commitmail json YAML

Reset MAINTAINER, requested in PR pkg/49382.

(obache)

2014-12-17 06:08:13 UTC MAIN commitmail json YAML

"-a" option for cp(1) is not portable, use standard combination "-RpP" instead.
PR pkg/49475 by Sevan Janiyan.

(obache)

2014-12-17 01:40:51 UTC MAIN commitmail json YAML

Added the suse131 gstreamer and sqlite3 versions and their 32-bit variants.
OK'd by pkgsrc-pmc@ in private mail. This fixes build failure with
wip/skype4.

(rodent)

2014-12-17 01:39:24 UTC MAIN commitmail json YAML

Added emulators/suse131_sqlite3 version 13.1

(rodent)

2014-12-17 01:38:47 UTC MAIN commitmail json YAML

Import suse_sqlite3-13.1 as emulators/suse131_sqlite3.

Linux compatibility package based on the openSUSE Linux distribution.
Please visit http://www.opensuse.org/ for more information about openSUSE
Linux.

This package supports running ELF binaries linked with glibc2 that
require the sqlite3 shared libraries.

(rodent)

2014-12-17 01:37:14 UTC MAIN commitmail json YAML

Import suse32_sqlite3-13.1 as emulators/suse131_32_sqlite3.

Linux compatibility package based on the openSUSE Linux distribution.
Please visit http://www.opensuse.org/ for more information about openSUSE
Linux.

This package supports running ELF binaries linked with glibc2 that
require the sqlite3 shared libraries.

(rodent)

2014-12-17 01:35:58 UTC MAIN commitmail json YAML

Added emulators/suse131_gstreamer version 13.1

(rodent)

2014-12-17 01:35:08 UTC MAIN commitmail json YAML

Import suse_gstreamer-13.1 as emulators/suse131_gstreamer.

Linux compatibility package based on the openSUSE Linux distribution.
Please visit http://www.opensuse.org/ for more information about openSUSE
Linux.

This package supports running ELF binaries linked with glibc2 that
require the gstreamer shared libraries.

(rodent)

2014-12-17 01:33:53 UTC MAIN commitmail json YAML

Added emulators/suse131_32_gstreamer version 13.1

(rodent)

2014-12-17 01:32:54 UTC MAIN commitmail json YAML

Import suse32_gstreamer-13.1 as emulators/suse131_32_gstreamer.

Linux compatibility package based on the openSUSE Linux distribution.
Please visit http://www.opensuse.org/ for more information about openSUSE
Linux.

This package supports running ELF binaries linked with glibc2 that
require the gstreamer shared libraries.

(rodent)

2014-12-17 01:03:37 UTC MAIN commitmail json YAML

Add gstreamer and sqlite3, as these were forgotten and will be required for
the 32-bit packages to work correctly. Discussed with wiz@.

(rodent)

2014-12-16 23:51:57 UTC MAIN commitmail json YAML

Adjust the edits to the add-to-xpdfrc file. Do it with SUBST instead
of raw seddery. While here, fix DEINSTALL to more reliably remove the
block this package adds to xpdfrc, and also to avoid stepping on its
own scratch files.

>From qjsgkem on freenode.

XXX: This package really shouldn't be munging files in PKG_SYSCONFDIR, but
XXX: that's probably nontrivial to avoid and an issue for some other day.

(dholland)

2014-12-16 23:37:48 UTC MAIN commitmail json YAML

2014-12-16 23:23:43 UTC pkgsrc-2014Q3 commitmail json YAML

2014-12-16 23:23:22 UTC pkgsrc-2014Q3 commitmail json YAML

Pullup ticket #4573 - requested by roy
net/powerdns-recursor: security patch

Revisions pulled up:
- net/powerdns-recursor/Makefile                                1.16
- net/powerdns-recursor/distinfo                                1.12
- net/powerdns-recursor/patches/patch-CVE-2014-8601            1.1

---
  Module Name:    pkgsrc
  Committed By:  roy
  Date:          Thu Dec 11 20:18:17 UTC 2014

  Modified Files:
          pkgsrc/net/powerdns-recursor: Makefile distinfo
  Added Files:
          pkgsrc/net/powerdns-recursor/patches: patch-CVE-2014-8601

  Log Message:
  Add upstream patch to fix CVE-2014-8601.
  Remove myself as maintainer.

(tron)

2014-12-16 23:04:35 UTC MAIN commitmail json YAML

Fix build with py-setuptool-0.8.

(wiz)

2014-12-16 23:03:31 UTC MAIN commitmail json YAML

Fix build with py-setuptools-0.8.

(wiz)

2014-12-16 23:02:28 UTC MAIN commitmail json YAML

Fix build with py-setuptools-0.8.

(wiz)

2014-12-16 22:59:50 UTC MAIN commitmail json YAML

Fix build with py-setuptools-0.8.

(wiz)

2014-12-16 15:47:33 UTC MAIN commitmail json YAML

HOMEPAGE was Forbidden(403) Status, stip the last leaf from its URL.

(mef)

2014-12-16 15:37:43 UTC MAIN commitmail json YAML

MASTER_SITES directory is one level down now.

(mef)

2014-12-16 13:25:27 UTC MAIN commitmail json YAML

Fix packaging with py-setuptools-0.8.

(wiz)

2014-12-16 13:23:19 UTC MAIN commitmail json YAML

Fix packaging with py-setuptools-0.8.

(wiz)

2014-12-16 12:08:44 UTC MAIN commitmail json YAML

MASTER_SITES moved.

(mef)

2014-12-16 11:38:55 UTC MAIN commitmail json YAML

2014-12-16 10:47:04 UTC MAIN commitmail json YAML

Updated x11/gnome-panel to 2.32.1nb41

(prlw1)

2014-12-16 10:46:32 UTC MAIN commitmail json YAML

Avoid:

  The Panel encountered a problem while loading
  "ClockAppletFactory::ClockApplet" Do you want to delete the applet
  from your configuration?

Solution:

  https://mail.gnome.org/archives/commits-list/2012-May/msg05607.html

While here, depend on sysutils/desktop-file-utils/desktopdb.mk

(prlw1)

2014-12-16 08:45:37 UTC MAIN commitmail json YAML

remove duplciate entry

(chopps)

2014-12-16 08:45:12 UTC MAIN commitmail json YAML

Update PLIST with new additions -- PKG_DEVELOPER=1 is your friend

(chopps)

2014-12-16 07:41:05 UTC MAIN commitmail json YAML

Updated lang/python27 to 2.7.9

(chopps)

2014-12-16 07:40:58 UTC MAIN commitmail json YAML

remove PKGREVISION since we bumped the dist version

(chopps)

2014-12-16 07:40:21 UTC MAIN commitmail json YAML

Updated lang/python27 to 2.7.9

(chopps)

2014-12-16 07:07:32 UTC MAIN commitmail json YAML

Update to 2.7.9 removing patches that were incorporated. Significant
changes include:

- The entirety of Python 3.4's ssl module has been backported for
  Python 2.7.9. See PEP 466 for justification.
- HTTPS certificate validation using the system's certificate store
  is now enabled by default. See PEP 476 for details.
- SSLv3 has been disabled by default in httplib and its reverse
  dependencies due to the POODLE attack.
- The ensurepip module module has been backported, which provides the
  pip package manager in every Python 2.7 installation. See PEP 477.

(chopps)

2014-12-16 07:00:52 UTC MAIN commitmail json YAML

On python26, argparse>=1.1 is required, and requires.txt will be installed.
PR pkg/49476.

(obache)

2014-12-16 06:24:05 UTC MAIN commitmail json YAML

jnilib file will be installed on Darwin.
PR pkg/49474 by Sevan Janiyan.

(obache)

2014-12-16 03:26:49 UTC MAIN commitmail json YAML

Update HOMEPAGE, which were unknown (MASTER_SITES now, is still unknown).

(mef)

2014-12-16 03:12:42 UTC MAIN commitmail json YAML

Update HOMEPAGE, which were unknown (MASTER_SITES is still unknown).

(mef)

2014-12-16 02:58:20 UTC MAIN commitmail json YAML

Update HOMEPAGE, which were unknown (MASTER_SITES is still unknown).

(mef)

2014-12-16 02:49:35 UTC MAIN commitmail json YAML

Update MASTER_SITES and HOMEPAGE (both were unknown sites).

(mef)

2014-12-16 02:22:44 UTC MAIN commitmail json YAML

Add one (more) MASTER_SITES, at release/ directory, thanks obache@.

(mef)

2014-12-16 01:59:20 UTC MAIN commitmail json YAML

Updated emulators/suse131_gtk2 to 13.1nb4

(obache)

2014-12-16 01:59:04 UTC MAIN commitmail json YAML

Update jasper pkg in suse131_gtk2.
Bump PKGREVISION to 4.

  openSUSE Security Update: Security update for jasper
______________________________________________________________________________

Announcement ID:    openSUSE-SU-2014:1644-1
Rating:            moderate
References:        #906364
Cross-References:  CVE-2014-9029
Affected Products:
                    openSUSE 13.2
                    openSUSE 13.1
                    openSUSE 12.3
______________________________________________________________________________

  An update that fixes one vulnerability is now available.

Description:

  jasper was updated to fix one security issue.

  This security issue was fixed:
  - Heap overflows in libjasper (CVE-2014-9029).

(obache)

2014-12-16 01:51:38 UTC MAIN commitmail json YAML

Updated net/mikutter to 3.1.1

(obache)

2014-12-16 01:51:36 UTC MAIN commitmail json YAML

- Convert MASTER_SITES from tagged-github to normal tarball, thanks obache@
- autoreconf is not necessary for this tarball
  (remove pre-configure: target in Makefile)
- Remove automake and autoreconf from USE_TOOLS+=
- Add patch for Makefile.in as well as Makefile.am
- MAKE_JOBS_SAFE= no
- Add following files in PLIST
  share/dateutils/iata.tzmcc
  share/dateutils/icao.tzmcc
  share/dateutils/mic.tzmcc
Thanks again obache@

(mef)

2014-12-16 01:51:25 UTC MAIN commitmail json YAML

Update mikutter to 3.1.1.

* fixes --plugin option to work correctly.
* fixes crash in activity setting with change ever untouched check box.
* document fixes.

(obache)

2014-12-16 01:00:36 UTC MAIN commitmail json YAML

Updated comms/asterisk to 11.15.0

(jnemeth)

2014-12-16 01:00:22 UTC MAIN commitmail json YAML

Update to Asterisk 11.15.0: this is mostly a bug fix release.

The Asterisk Development Team has announced the release of Asterisk 11.15.0.

The release of Asterisk 11.15.0 resolves several issues reported by the
community and would have not been possible without your participation.
Thank you!

The following are the issues resolved in this release:

Bugs fixed in this release:
-----------------------------------
* ASTERISK-20127 - [Regression] Config.c config_text_file_load()
      unescapes semicolons ("\;" -> ";") turning them into comments
      (corruption) on rewrite of a config file (Reported by George
      Joseph)
* ASTERISK-24307 - Unintentional memory retention in stringfields
      (Reported by Etienne Lessard)
* ASTERISK-24492 - main/file.c: ast_filestream sometimes causes
      extra calls to ast_module_unref (Reported by Corey Farrell)
* ASTERISK-24504 - chan_console: Fix reference leaks to pvt
      (Reported by Corey Farrell)
* ASTERISK-24468 - Incoming UCS2 encoded SMS truncated if SMS
      length exceeds 50 (roughly) national symbols (Reported by
      Dmitriy Bubnov)
* ASTERISK-24500 - Regression introduced in chan_mgcp by SVN
      revision r227276 (Reported by Xavier Hienne)
* ASTERISK-20402 - Unable to cancel (features.conf) attended
      transfer (Reported by Matt Riddell)
* ASTERISK-24505 - manager: http connections leak references
      (Reported by Corey Farrell)
* ASTERISK-24502 - Build fails when dev-mode, dont optimize and
      coverage are enabled (Reported by Corey Farrell)
* ASTERISK-24444 - PBX: Crash when generating extension for
      pattern matching hint (Reported by Leandro Dardini)
* ASTERISK-24522 - ConfBridge: delay occurs between kicking all
      endmarked users when last marked user leaves (Reported by Matt
      Jordan)
* ASTERISK-15242 - transmit_refer leaks sip_refer structures
      (Reported by David Woolley)
* ASTERISK-24440 - Call leak in Confbridge (Reported by Ben Klang)
* ASTERISK-24469 - Security Vulnerability: Mixed IPv4/IPv6 ACLs
      allow blocked addresses through (Reported by Matt Jordan)
* ASTERISK-24516 - [patch]Asterisk segfaults when playing back
      voicemail under high concurrency with an IMAP backend (Reported
      by David Duncan Ross Palmer)
* ASTERISK-24572 - [patch]App_meetme is loaded without its
      defaults when the configuration file is missing (Reported by
      Nuno Borges)
* ASTERISK-24573 - [patch]Out of sync conversation recording when
      divided in multiple recordings (Reported by Nuno Borges)

Improvements made in this release:
-----------------------------------
* ASTERISK-24283 - [patch]Microseconds precision in the eventtime
      column in the cel_odbc module (Reported by Etienne Lessard)
* ASTERISK-24530 - [patch] app_record stripping 1/4 second from
      recordings (Reported by Ben Smithurst)
* ASTERISK-24577 - Speed up loopback switches by avoiding unneeded
      lookups (Reported by Birger "WIMPy" Harzenetter)

For a full list of changes in this release, please see the ChangeLog:

http://downloads.asterisk.org/pub/telephony/asterisk/ChangeLog-11.15.0

Thank you for your continued support of Asterisk!

(jnemeth)

2014-12-15 23:42:24 UTC MAIN commitmail json YAML

Note the start of the pkgsrc freeze in preparation for the pkgsrc-2014Q4 branch

(agc)

2014-12-15 23:31:48 UTC MAIN commitmail json YAML

PLIST was left unupdated, sorry. Thanks joerg@.

(mef)

2014-12-15 23:26:04 UTC MAIN commitmail json YAML

Updated pkgtools/revbump to 2.10

(mef)

2014-12-15 23:25:54 UTC MAIN commitmail json YAML

Update 2.9 to 2.10
This update is proposed as
  pkg/2014/12/08/msg013888.html">http://mail-index.netbsd.org/tech-pkg/2014/12/08/msg013888.html
- (revbump) convert internal to two pass, and reduce fallout
- (replace-commonbump) new command to replace 'commonbump' to
  'commonbump.replaced'
- (check-cvs-diff) new command to check 'cvs diff -u' if py27,py34, ruby200
  and replace it if exists
  Thanks wiz@ and gdt@ for advice.

(mef)

2014-12-15 20:54:16 UTC MAIN commitmail json YAML

Also patch the libpath and rpath for bpgdec as well as bpgenc - bug report
from joerg.

(agc)

2014-12-15 13:24:21 UTC MAIN commitmail json YAML

2014-12-15 12:56:41 UTC MAIN commitmail json YAML

2014-12-15 12:37:01 UTC MAIN commitmail json YAML

2014-12-15 12:31:09 UTC MAIN commitmail json YAML

Find correct zlib.

(jperkin)

2014-12-15 11:55:04 UTC MAIN commitmail json YAML

2014-12-15 11:49:50 UTC MAIN commitmail json YAML

Make sure to pass full LDFLAGS. Fixes build on NetBSD.

(fhajny)

2014-12-15 11:46:36 UTC MAIN commitmail json YAML

2014-12-15 11:38:52 UTC MAIN commitmail json YAML

Updated ham/xlog to 2.0.12
Updated time/dateutils to 0.3.1
Updated devel/idutils to 4.6

(mef)

2014-12-15 11:35:42 UTC MAIN commitmail json YAML

(pkgsrc)
  - Add two patches, to avoid
  error: incompatible types when assigning to type '__off_t' from type 'fpos_t'
  fp_->_offset = u.f;
  - Remove one patch patch-af, which had a comment, not necessary for now
    " also look in *.mk files as makefiles.  bump pkg revision."
(upstream)
  - Update 4.2 to 4.6
    ----------------------
* Noteworthy changes in release 4.6 (2012-02-03) [stable]

** Bug fixes
  - lid -L no longer mishandles open-ended ranges like "..2" and "2.."
  - lid's -d, -o and -x options now work properly

* Noteworthy changes in release 4.5 (2010-06-17) [stable]
* Noteworthy changes in release 4.4 (2009-10-30) [beta]
                        ------------
** New features
  mkid and xtokid accept a new option --files0-from=FILE, to make them
  process only the files named in FILE.  FILE must contain a list of
  NUL-terminated file names.

** Bug fixes
  mkid and xtokid now accept language specific options via the command line.

* Noteworthy changes in release 4.3.92 (2008-10-18) [beta]
                        --------------
** Bug fixes

  fid: avoid a buffer overrun
  handle failed allocation, e.g., by strdup
  avoid potential realloc overflow
  mkid: avoid an infloop on some .el files
  all programs: detect write error on stdout

** Miscellaneous improvements

  revamp code and infrastructure, bringing it closer to coreutils' standards
  add automatically-generated man pages
  mkid recognize more suffixes: .ac, .mk, .bz2, .lzma.
  idutils is now licensed under the General Public License version 3
    or later (GPLv3+).

(mef)

2014-12-15 11:07:09 UTC MAIN commitmail json YAML

Pass explicit path to zlib.

(jperkin)

2014-12-15 09:37:42 UTC MAIN commitmail json YAML

Use simple MASTER_SITES.

(obache)

2014-12-15 09:36:48 UTC MAIN commitmail json YAML

Updated textproc/p5-YAML to 1.13nb1

(obache)

2014-12-15 09:36:39 UTC MAIN commitmail json YAML

Not depend on Filter module now.

(obache)

2014-12-15 09:33:21 UTC MAIN commitmail json YAML

No direct dependency on p5-Test-Base, from p5-Test-YAML indirectly.

(obache)

2014-12-15 09:32:06 UTC MAIN commitmail json YAML

Updated textproc/p5-Test-YAML to 1.05nb1

(obache)

2014-12-15 09:31:53 UTC MAIN commitmail json YAML

Fixes missing runtime dependency on p5-Test-Base>=0.86.

(obache)

2014-12-15 09:25:16 UTC MAIN commitmail json YAML

Test::YAML>=1.05 is required.

(obache)

2014-12-15 09:05:32 UTC MAIN commitmail json YAML

Remove needless CONFIGURE_ARGS and LDFLAGS settings.

(obache)

2014-12-15 09:00:32 UTC MAIN commitmail json YAML

remove unwanted replacement "==" with "=", it's in C code, not sh script.

(obache)

2014-12-15 08:58:52 UTC MAIN commitmail json YAML

2014-12-15 08:45:47 UTC MAIN commitmail json YAML

(pkgsrc)
- MASTER_SITES moved
- DIST_SUBDIR is now used.
- pre-configure:, post-build: added for Makefile
- Some tweak added (post-build: etc) to get similar PLIST (as of 0.2.6)

(upstream)
Update 0.2.6 to 0.3.1
From: http://www.fresse.org/dateutils/changelog.html
v0.3.1
------------------------
This is a bugfix release.

Bugfixes:
-  octave/matlab code is distributed fully
-  negative durations with refined units are minus-signed only once
-  ddiff is entirely anticommutative now
-  tests don¡Çt fail if zones don¡Çt exist on the build system
-  dseq with empty ranges will no longer produce output (just as seq(1))
-  arbitrary integers are not interpreted as time anymore
-  when converting from zone info properly clear zone difference for %Z
-  dseq(1) will automatically resort to +1mo and +1y iterators for wildcarded ymd dates
-  dadd(1)¡Çing ywd dates with output as ymd works properly now

Features:
-  ddiff can output nanosecond diffs
-  automatic fix-up of dates is documented now
-  parser errors and fix ups are reported through return code 2
-  dseq with no -f|--format stays in the calendric system of
    the start value instead of converting all output to ymd

v0.3.0
------------------------
This is a feature release.

Features:
-  dgrep supports time zones both for the expression and the input
-  timezones can be specified by alternative codes and tzmap files
-  new tool dzone to inspect date/times in multiple timezones in bulk
-  new tool dsort to sort input chronologically
-  gengetopt and help2man maintainer dependencies removed
-  lilian/julian inputs via -i ldn and -i jdn
-  ymcw dates now follow ISO 8601 in using 07 to denote Sunday

Bugfixes:
-  ddiff takes differences between a unix epoch stamp and a date/time
-  zone converter assigns correct sign to zone difference when using %Z
-  weekdays are properly calculated from epoch stamps (issue 24)

v0.2.7
--------------------------
This is a feature release.

Features:
-  dgrep supports -v|--invert-match like grep
-  output specifier %G is supported for compatibility with POSIX
-  ddiff calculates year-day differences
-  ddiff calculates ISO-week date differences
-  ddiff output can be zero and space padded through 0 and SPC modifier
-  zoneinfo database on AIX >= 6.1 is taken into account

Bug fixes:
-  ddiff can calculate full year differences, issue 21 fixed
-  dseq now accepts %W, %V output formats, issue 22 fixed
-  builds with clang >= 3.3 work again, clang bug 18028

(mef)

2014-12-15 08:36:40 UTC MAIN commitmail json YAML

(upstream) update 2.0.5 to 2.0.12
- Changes for xlog version 2.0.12 - 2014-apr-01
  * Updated cty.dat to 20140331 (cty-2404)

- Changes for xlog version 2.0.11 - 2013-nov-16
  * Updated cty.dat to 20131009
  * Fixed "Write and Click All"
  * Increased log name limit to 30 characters
  * Fixed truncated "QSO <number>" label in main window
  * Fixed dxcc 3 character callsigns

- Changes for xlog version 2.0.10 - 2013-July-22
  * Fix compilation warning in labels.c regarding strptime
  * Convert all compilation warnings into errors
  * Get rid of the "unused-but-set-variable" warnings

- Changes for xlog version 2.0.9 - 2013-July-20
  * Fix month to number conversion for non-English languages in Cabrillo export
    (thank you Alex EW1LN for reporting the problem and testing the fix)
  * Modify date in TSV file to be ISO 8601 format to aid in spreadsheet import
  * Updated cty.dat to 20130625

- Changes for xlog version 2.0.8 - 2013-May-23
  * Fix Debian lint issue (config.sub config.guess)
  * Merge Debian bug #617374 fix into dxcc.c to avoid segfault
  * Fix cabrillo import - incorporate patch from Thomas (DL1JBE) Beierlein
  * Updated cty.dat to 20130510

- Changes for xlog version 2.0.7 - 2013-March-31
  * Fixed remarks box for Unity et al (bug #38637)
  * Updated cty.dat to 20130312 (CTY-2303)

- Changes for xlog version 2.0.6 - 2013-March-01
  * First version with new maintainer: Andy Stewart, KB1OIQ
  * Updated to Cabrillo v3 format - export and import (bug #37740)
  * Added preference setting for "Are You Sure" dialog on exit (bug #37761)
  * Updated cty.dat to 20130222 (CTY-2302) (bug #37748)
  * Updated to Amateur Data Interchange Format (ADIF) 2.2.7 format (bug #37741)
  ** Added a large number(!) of modes
  ** Added the 560m band
  * Fixed cosmetic issues with the scoring window (bug #37743)
  * Fixed Ubuntu bug #608718: Keyer window displayed, hitting return in RX(RST)
    with no call logged bogus QSO.
  * Fixed Task #10916 - user preference to save Cabrillo freq or band
  * New manual from Chris Story (K6RWJ)
  * Entering "callsigns" like "3D2/R" will show proper DXCC entity in scoring
    window locator box for all except WAE countries.

(mef)

2014-12-15 08:36:15 UTC MAIN commitmail json YAML

LICENSE=gnu-gpl-v2

(obache)

2014-12-15 06:04:22 UTC MAIN commitmail json YAML

Updated devel/byacc to 20141128

(mef)

2014-12-15 06:04:13 UTC MAIN commitmail json YAML

(pkgsrc)
- Remove patch-aa, no file found, no similar lines found.
- Add LICENSE= public-domain, following line is found in README
  Berkeley Yacc is in the public domain.
(upstream)
- Update from 20050813 to 20141128
- CHANGLOG found but too huge to quote here.

(mef)

2014-12-15 05:52:01 UTC MAIN commitmail json YAML

Add comment on patch-aa from cvs log. Add LICENSE= public-domain.

(mef)

2014-12-15 05:33:35 UTC MAIN commitmail json YAML

Updated devel/ccache to 3.2.1

(mef)

2014-12-15 05:33:27 UTC MAIN commitmail json YAML

Udate 3.2 to 3.2.1
ccache 3.2.1
------------
Release date: 2014-12-10
Bug fixes
~~~~~~~~~
- Fixed regression in temporary file handling, which lead to incorrect
  permissions for stats, manifest and ccache.conf files in the cache.

- `CACHEDIR.TAG` files are now created in the [0-9a-f] subdirectories so that
  ccache.conf is not lost in backups.

- Made the default cache size suffix `G`, as previously documented.

- `-fdiagnostics-color=auto` is now passed to the compiler even if stderr is
  redirected. This fixes a problem when, for instance, a configure test probes
  if the compiler (wrapped via ccache) supports `-fdiagnostics-color=auto`.

- Added missing documentation for `max_files` and `max_size` configuration
  options.

(mef)

2014-12-15 02:31:39 UTC MAIN commitmail json YAML

2014-12-15 02:11:06 UTC MAIN commitmail json YAML

Update to Squeak 4.4
Prompted by Rhialto in private mail.

Squeak 4.4 - Ulam Spiral

Changelog:
* Cleanup and simplification of Morphic text editing
* Add host window support, letting you display things
  in a host window. (Currently only on Windows and Mac.)
* Bugfixes in the Compiler, Parser and Debugger toolchain
* Stub support for the ability to evolve the bytecode set
* Better printing of Floats, hashing of DateAndTimes
* ChangeSorter improvements
* ToolBuilder improvements
* Merged network improvements from Etoys
* Monticello browsing can now group versions by branch,
  making tracking of parallel developments easier
* Decreased coupling between core packages
* IPv6 support (if your VM provides it)

(asau)

2014-12-15 00:49:21 UTC MAIN commitmail json YAML

Correction on PKGVERSION{,-> _NOREV} on MASTER_SITES

(mef)

2014-12-15 00:39:44 UTC MAIN commitmail json YAML

Add missing dependency on p5-File-ShareDir-Install, otherwise this will not package.

(wiz)

2014-12-14 23:19:05 UTC MAIN commitmail json YAML

remove perllocal.pod ref

(pettai)

2014-12-14 23:11:08 UTC MAIN commitmail json YAML

2.1
- New Features:
    - donuts:      - Added the ability to summarize information
                      about a zone in the output, such as the upcoming
                      entire zone expiry time, etc
                    - Added the ability to query live zones for
                      records to analyze.  EG:
                      donuts live:good-a,badsign-a test.dnssec-tools.org
                    - Added a -V switch to dump records analyzed
    - libval:      - Add support for conditionally checking all RRSIGs
                      on an assertion even if one that validates is
                      already found.
                    - Look for zonecuts based on NS records, not SOA
                    - Added initial support for TSIG in order to enable
                      libval to query recursive name servers that
                      authorized recursive lookup for only those hosts
                      that used a particular TSIG key.
    - Validator.pm  - Store respondent name server information in result
                      structure.
    - Owl          - additional sensor modules
                    - additional data analysis on manager
                    - logging to the Owl sensors modules
                    - optimized sensor data organization
                    (requires software upgrades on both sensor and
                      manager at the same time)
                    - added -restart option to owl-sensord for
                      restarting sensor modules
                    - improvements to the installation guide
    - rollerd      - generalized zonegroup entry in rollecs to be lists of tags
                    - rndc option support added
    - dnssec-check  - Ported to Qt5
    - dnssec-nodes  - Ported to Qt5
    - lookup        - Ported to Qt5
    - dnssec-system-tray
                    - Ported to Qt5

- Bug Fixes
                    - Fixed bugs in libval, rollerd, blinkenlights, Owl
                      sensor modules, and Owl manager
                    - Use rlimits to try and limit file descriptor use in
                      libsres so we don't run out of available sockets.
                    - Eliminate a few hardcoded paths in various perl modules
                    - Fix various compiler warnings
                    - Update autoconf and related files

(pettai)

2014-12-14 16:09:41 UTC MAIN commitmail json YAML

Updated graphics/gimp-ufraw to 0.20

(gdt)

2014-12-14 16:09:29 UTC MAIN commitmail json YAML

Update to 0.20.

patch-ufraw.h (extern C guards) was applied upstream.

Upstream NEWS:

24/09/2014 - UFRaw-0.20 released, based on DCRaw v 9.22.

    Fuji X-Trans filters are finally supported.

(gdt)

2014-12-14 16:05:16 UTC MAIN commitmail json YAML

Remove patch that's not needed any longer after 1.13.2 update.

(wiz)

2014-12-14 15:57:44 UTC MAIN commitmail json YAML

Remove now unnecessary glib option. Ride update.

(wiz)

2014-12-14 15:55:14 UTC MAIN commitmail json YAML

Updated time/py-vdirsyncer to 0.3.4

(wiz)

2014-12-14 15:55:00 UTC MAIN commitmail json YAML

Update to 0.3.4:

Version 0.3.4
=============

*released on 8 December 2014*

- Some more bugfixes to config handling.

Version 0.3.3
=============

*released on 8 December 2014*

- Vdirsyncer now also works with iCloud. Particularly collection discovery and
  etag handling were fixed.
- Vdirsyncer now encodes Cal- and CardDAV requests differently. This hasn't
  been well-tested with servers like Zimbra or SoGo, but isn't expected to
  cause any problems.
- Vdirsyncer is now more robust regarding invalid responses from CalDAV
  servers. This should help with future compatibility with Davmail/Outlook.
- Fix a bug when specifying ``item_types`` of
  :py:class:`vdirsyncer.storage.CaldavStorage` in the deprecated config format.
- Fix a bug where vdirsyncer would ignore all but one character specified in
  ``unsafe_href_chars`` of :py:class:`vdirsyncer.storage.CaldavStorage` and
  :py:class:`vdirsyncer.storage.CarddavStorage`.

(wiz)

2014-12-14 15:52:51 UTC MAIN commitmail json YAML

Updated devel/py-setuptools to 8.0.1

(wiz)

2014-12-14 15:52:42 UTC MAIN commitmail json YAML

Update to 8.0.1:

-----
8.0.1
-----

* Issue #296: Restore support for iteration over parse_version result, but
  deprecated that usage with a warning. Fixes failure with buildout.

---
8.0
---

* Implement `PEP 440 <http://legacy.python.org/dev/peps/pep-0440/>`_ within
  pkg_resources and setuptools. This change
  deprecates some version numbers such that they will no longer be installable
  without using the ``===`` escape hatch. See `the changes to test_resources
  <https://bitbucket.org/pypa/setuptools/commits/dcd552da643c4448056de84c73d56da6d70769d5#chg-setuptools/tests/test_resources.py>`_
  for specific examples of version numbers and specifiers that are no longer
  supported. Setuptools now "vendors" the `packaging
  <https://github.com/pypa/packaging>`_ library.

(wiz)

2014-12-14 15:51:05 UTC MAIN commitmail json YAML

+cone-0.91.1

(rodent)

2014-12-14 15:49:43 UTC MAIN commitmail json YAML

Updated graphics/gif2png to 2.5.10

(wiz)

2014-12-14 15:49:34 UTC MAIN commitmail json YAML

Update to 2.5.10:

2.5.10 @ 2014-12-08
  Somewhat belated documentation for the -m option, by Steve Ward.

(wiz)

2014-12-14 15:48:54 UTC MAIN commitmail json YAML

2014-12-14 15:48:44 UTC MAIN commitmail json YAML

Update to 0.86:

V0.86 Fixed default hostname logic.
      Fix for NetBSD: 64bit time_t -- Thomas Klausner
      Fix unnecessary runtime dependency on glib from VSYakovetsky through
          Thomas
      Inverted IPINFO define in the code. Removes double negatives.
        -- Vladimir Yakovetsky, REW.
      Fixed failure on IPv4 only systems when IPv6 was available at
        compile time. -- REW.
      Fixed (longstanding) bug that mtr used 100% cpu when paused.
      Cosmetic changes from Richard Hartman.

(wiz)

2014-12-14 15:47:14 UTC MAIN commitmail json YAML

Updated audio/musicpd to 0.18.20

(wiz)

2014-12-14 15:47:03 UTC MAIN commitmail json YAML

Update to 0.18.20:

ver 0.18.20 (2014/12/08)
* decoder
  - ffmpeg: support FFmpeg 2.5
* fix build failure with musl

(wiz)

2014-12-14 15:43:45 UTC MAIN commitmail json YAML

courier-0.74.1 courier-imap-4.16 maildrop-2.8.1 sqwebmail-5.8.1

(rodent)

2014-12-14 15:40:56 UTC MAIN commitmail json YAML

Updated devel/p5-Pegex to 0.58

(schmonz)

2014-12-14 15:40:49 UTC MAIN commitmail json YAML

Update to 0.58. From the changelog:

- Fix test for windows (issue
- Share Pegex grammar for Pegex

(schmonz)

2014-12-14 15:36:31 UTC MAIN commitmail json YAML

ddclient has been updated.

(schmonz)

2014-12-14 15:35:49 UTC MAIN commitmail json YAML

Add missing files to PLIST, use /bin/sh in place of unnecessary
/bin/bash, add comment to patch, define LICENSE.

(schmonz)

2014-12-14 15:35:23 UTC MAIN commitmail json YAML

+ gif2png-2.5.10, mtr-0.86, musicpd-0.18.20, musicpd-0.19.6,
  py-setuptools-8.0.1, py-vdirsyncer-0.3.4, x264-devel-20141213.

(wiz)

2014-12-14 15:35:21 UTC MAIN commitmail json YAML

Updated textproc/p5-YAML-Syck to 1.28

(wiz)

2014-12-14 15:35:13 UTC MAIN commitmail json YAML

Update to 1.28:

[Changes for 1.28 - 2014-12-11]

* Bump to release version 1.28 for production release to CPAN

[Changes for 1.28_01 - 2014-06-11]

* Update inc modules to avoid precedence warnings in newer perl: RT 87034

(wiz)

2014-12-14 15:34:30 UTC MAIN commitmail json YAML

Updated textproc/p5-XML-Parser to 2.43

(wiz)

2014-12-14 15:34:21 UTC MAIN commitmail json YAML

Update to 2.43:

2.43 2014-12-11 (by Todd Rinaldo)
    - POD patch to man from Debian via Nicholas Bamber
    - POD patch from Debian via gregor herrmann.
    - Add more useful error message on parse to Expat
    - Fix LWP dependency to be LWP::Useragent
    - Bump to 2.43 for overdue release to CPAN.

2.42_01 2013-07-12 (by Todd Rinaldo)
    - Added instructions to README for OSX
    - XS changes: stop using SvPV(string, PL_na)
    - Fix documentation typos

(wiz)

2014-12-14 15:33:18 UTC MAIN commitmail json YAML

Updated databases/p5-DB_File to 1.834

(wiz)

2014-12-14 15:33:09 UTC MAIN commitmail json YAML

Update to 1.834:

1.834 11 Dec 2014

  * Makefile.PL: version check is missing a zero
    RT #100844

(wiz)

2014-12-14 14:03:03 UTC MAIN commitmail json YAML

Note update of x11/ruby-tk package to 2.0.0p598nb4.

(taca)

2014-12-14 14:01:23 UTC MAIN commitmail json YAML

Now build with tcl/tk 8.6 except ruby18.

Bump REVISION.

(taca)

2014-12-14 14:00:17 UTC MAIN commitmail json YAML

2014-12-14 14:00:06 UTC MAIN commitmail json YAML

2014-12-14 13:59:53 UTC MAIN commitmail json YAML

2014-12-14 13:57:07 UTC MAIN commitmail json YAML

Updated graphics/photopc to 3.07
Updated print/xpdf-arabic to 20110815
Updated print/xpdf-chinese-simplified to 20110902
Updated print/xpdf-chinese-traditional to 20110902
Updated print/xpdf-cyrillic to 20110815
Updated print/xpdf-greek to 20110815
Updated print/xpdf-hebrew to 20110815
Updated print/xpdf-japanese to 20110902
Updated print/xpdf-korean to 20110902
Updated print/xpdf-latin2 to 20110815
Updated print/xpdf-thai to 20110815
Updated print/xpdf-turkish to 20110815

(mef)

2014-12-14 13:47:50 UTC MAIN commitmail json YAML

(pkgsrc)
  - Add LICENSE=      gnu-gpl-v2 OR gnu-gpl-v3
(upstream)
  - Update xpdf-* listed below
    from 2002-2005 to 20110815 or 20110902
(from)
            xpdf-arabic-20030216
xpdf-chinese-simplified-20040727
xpdf-chinese-traditional-20040727
          xpdf-cyrillic-20030628
              xpdf-greek-20020628
            xpdf-hebrew-20030216
          xpdf-japanese-20040727
            xpdf-korean-20050707
            xpdf-latin2-20021022
              xpdf-thai-20020116
            xpdf-turkish-20020410
(to)
            xpdf-arabic-20110815
xpdf-chinese-simplified-20110902
xpdf-chinese-traditional-20110902
          xpdf-cyrillic-20110815
              xpdf-greek-20110815
            xpdf-hebrew-20110815
          xpdf-japanese-20110902
            xpdf-korean-20110902
            xpdf-latin2-20110815
              xpdf-thai-20110815
            xpdf-turkish-20110815

Changes are stated in following file
  ftp://ftp.foolabs.com/pub/xpdf/CHANGES
The date and release numbers of xpdf are:
  3.01 (2005-aug-17)
  3.02 (2007-feb-27)
  3.03 (2011-aug-15)

(mef)

2014-12-14 11:58:58 UTC MAIN commitmail json YAML

Note update of www/typo3_45 package to 4.5.39.

(taca)

2014-12-14 11:58:29 UTC MAIN commitmail json YAML

Update typo345 package to 4.5.39.

2014-12-10  d72f00c                  [RELEASE] Release of TYPO3 4.5.39 (TYPO3 Release Team)
2014-12-10  63ae7dd  #62723          [!!!][SECURITY] Fix link spoofing in prefixLocalAnchors (Helmut Hummel)
2014-12-08  5c267d2  #62967          [BUGFIX] Exclude CDATA from t3lib_parsehtml->XHTML_clean (Nicole Cordes)

2014-11-27  7d66912                  [RELEASE] Release of TYPO3 4.5.38 (TYPO3 Release Team)
2014-11-19  61d8b25  #58053          [BUGFIX] Handle opacity for IE in prototype.js (Jigal van Hemert)
2014-11-15  42de3e0  #62984          [BUGFIX] PHP warning on saving TypoScript with t3editor (Oliver Hader)
2014-11-13  152b14b  #62032          [BUGFIX] Fix PHP warning with date function in FormEngine (Oliver Hader)
2014-11-03  79ba882  #62391          [BUGFIX] Ensure PHP 5.2 compatibility in php-openid (Michael Stucki)
2014-10-31  f56c52f  #62513          [BUGFIX] Too many tags by identifier in CacheBackends (Michael Stucki)
2014-10-23  528429b  #57006          [BUGFIX] softrefproc typolink lacks support for separation by line feed (Marc Bastian Heinrichs)
2014-10-22  a62c19e  #62391          [BUGFIX] Ensure PHP 5.2 compatibility in makeInstance (Helmut Hummel)

(taca)

2014-12-14 09:53:19 UTC pkgsrc-2014Q3 commitmail json YAML

Pullup tickets #4571 and #4573.

(tron)

2014-12-14 09:52:57 UTC pkgsrc-2014Q3 commitmail json YAML

Pullup ticket #4572 - requested by jnemeth
comms/asterisk: security update

Revisions pulled up:
- comms/asterisk/Makefile                                      1.116
- comms/asterisk/distinfo                                      1.70

---
  Module Name:    pkgsrc
  Committed By:  jnemeth
  Date:          Fri Dec 12 22:12:56 UTC 2014

  Modified Files:
          pkgsrc/comms/asterisk: Makefile distinfo

  Log Message:
  Update to Asterisk 11.14.2: this is a security fix release.

  The Asterisk Development Team has announced security releases for
  Certified Asterisk 11.6 and Asterisk 11, 12, and 13. The available
  security releases are released as versions 11.6-cert9, 11.14.2,
  12.7.2, and 13.0.2.

  The release of these versions resolves the following security vulnerability:

  * AST-2014-019: Remote Crash Vulnerability in WebSocket Server

    When handling a WebSocket frame the res_http_websocket module
    dynamically changes the size of the memory used to allow the
    provided payload to fit. If a payload length of zero was received
    the code would incorrectly attempt to resize to zero. This
    operation would succeed and end up freeing the memory but be
    treated as a failure. When the session was subsequently torn down
    this memory would get freed yet again causing a crash.

  For more information about the details of this vulnerability, please read
  security advisory AST-2014-019, which was released at the same time as this
  announcement.

  For a full list of changes in the current releases, please see the Change Logs:

  http://downloads.asterisk.org/pub/telephony/asterisk/releases/ChangeLog-11.14.2

  The security advisory is available at:

  * http://downloads.asterisk.org/pub/security/AST-2014-019.pdf

  Thank you for your continued support of Asterisk!

(tron)

2014-12-14 09:35:27 UTC pkgsrc-2014Q3 commitmail json YAML

Pullup ticket #4571 - requested by snj
security/libksba: security patch

Revisions pulled up:
- security/libksba/Makefile                                    1.30
- security/libksba/distinfo                                    1.17
- security/libksba/patches/patch-aa                            1.2

---
  Module Name:    pkgsrc
  Committed By:  wiz
  Date:          Tue Nov 25 14:35:37 UTC 2014

  Modified Files:
          pkgsrc/security/libksba: Makefile distinfo
          pkgsrc/security/libksba/patches: patch-aa

  Log Message:
  Update to 1.3.2. Add comment to patch.

  Noteworthy changes in version 1.3.2 (2014-11-25) [C19/A11/R3]
  ------------------------------------------------

    * Fixed a buffer overflow in ksba_oid_to_str.

  Noteworthy changes in version 1.3.1 (2014-09-18)
  ------------------------------------------------

    * Fixed memory leak in CRL parsing.

    * Build fixes for Windows, Android, and ppc64el.

(tron)

2014-12-14 09:25:46 UTC MAIN commitmail json YAML

fixes copy&paste error from imlib2/buildlink3.mk.

(obache)

2014-12-14 09:16:50 UTC MAIN commitmail json YAML

Note update of the "phpmyadmin" package to version 4.3.2.

(tron)

2014-12-14 09:16:24 UTC MAIN commitmail json YAML

Update "phpmyadmin" package to version 4.3.2. Changes since version 4.3.1:
- bug #4628 PHP error while exporting schema as PDF
- bug #4631 Server selector submits two server parameter values
- bug #4629 Problem with custom SQL queries using cookie authentication
- bug      Undefined index central_columnswork
- bug #4632 Notice in ./libraries/Util.class.php#1916 Undefined index: query
- bug #4633 Wrong parameter in fetchValue
- bug #4634 Error reporting creates an infinite loop
- bug #4635 Token mismatch while creating configuration storage
- bug #4640 Incorrect reference to PHP 6
- bug #3794 failure to handle repeating empty columns when importing ODS
- bug #4638 Default Export Method setting broken
- bug #4639 Export SQL missing indentation first field
- bug #4644 Error when browsing tables
- bug #4637 Field Alignment

(tron)

2014-12-14 08:40:09 UTC MAIN commitmail json YAML

Updated net/darkstat to 3.0.718

(obache)

2014-12-14 08:39:56 UTC MAIN commitmail json YAML

Update darkstat to 3.0.718.
per maintainer update request by PR pkg/49345.

v3.0.718 (25 January 2014)
- (SECURITY!) Don't chroot() by default.  The user must specify
  a --chroot dir for this to happen now.
- Bring back the "--base /path" functionality.
- Add explicit warning about graphs being blank if we can't get
  local IPs on an interface.
- Don't crash in timer_stop() if monotonic time stops or goes
  backwards.
- Lots of internal cleanups.
- Use time_t instead of "long" for time.  This is more correct
  and should fix darkstat on OpenBSD 5.5 on 32-bit systems.

(obache)