Commit graph

239955 commits

Author SHA1 Message Date
rillig
69b198e830 Performance: removed some needless string interpolations 2015-10-11 14:31:36 +00:00
tnn
27e6db7189 Fix startup segfault on 64-bit platforms due to pointer to int conversion.
Why this didn't surface before is anyone's guess. Bump rev.
2015-10-11 14:20:57 +00:00
rillig
47a721473b Migrated pkglint to Perl 5.12. 2015-10-11 12:31:43 +00:00
rodent
ba2ddcf231 +mysqltuner 2015-10-11 11:39:04 +00:00
rodent
8d54ce15e0 Added databases/mysqltuner version 1.6.0 2015-10-11 11:38:02 +00:00
rodent
60c563a6a7 Import mysqltuner-1.6.0 as databases/mysqltuner.
MySQLTuner is a script written in Perl that will assist you with your MySQL
configuration and make recommendations for increased performance and
stability.
2015-10-11 11:37:50 +00:00
adam
224d7465d2 Updated databases/postgresql; print/ghostscript-agpl to 9.18; converters/help2man to 1.47.2 2015-10-11 11:25:52 +00:00
adam
be28f70bee Changes 9.1.19:
Two security issues have been fixed in this release which affect users of specific PostgreSQL features:

CVE-2015-5289: json or jsonb input values constructed from arbitrary user input can crash the PostgreSQL server and cause a denial of service.

CVE-2015-5288: The crypt() function included with the optional pgCrypto extension could be exploited to read a few additional bytes of memory. No working exploit for this issue has been developed.
2015-10-11 11:24:58 +00:00
adam
9043173843 Changes 9.2.14:
Two security issues have been fixed in this release which affect users of specific PostgreSQL features:

CVE-2015-5289: json or jsonb input values constructed from arbitrary user input can crash the PostgreSQL server and cause a denial of service.

CVE-2015-5288: The crypt() function included with the optional pgCrypto extension could be exploited to read a few additional bytes of memory. No working exploit for this issue has been developed.
2015-10-11 10:59:20 +00:00
tron
23b1190a88 Reset maintainer 2015-10-11 10:56:43 +00:00
tron
c9ece607c7 Note update of "libtorrent" and "rtorrent" package 2015-10-11 10:44:31 +00:00
tron
52198922a9 Update "libtorrent" package to version 0.13.6 and "rtorrent" package to
version 0.9.6.

A list of changes is not availabe unfortunately.
2015-10-11 10:41:37 +00:00
adam
15c8ffb8fa Changes 1.47.2:
* Update Esperanto translation
* Add Chinese (simplified) translation
2015-10-11 09:50:53 +00:00
adam
b75a8258d3 Checksum update 2015-10-11 08:44:01 +00:00
rillig
785d2bafe0 Removed redundancy from the patch file checker's data structures 2015-10-11 08:15:31 +00:00
rillig
096f0eef41 Made checking of patch files a little faster
The transition table is using a two-stage lookup now. The redundancy of the
data structure will be removed in a follow-up commit.
2015-10-11 08:04:04 +00:00
rillig
e2cfc9075a Fixed warning for using github.com in MASTER_SITES. 2015-10-11 07:27:12 +00:00
ryoon
814b836e0f Updated lang/ucblogo to 6.0 2015-10-11 07:03:05 +00:00
ryoon
fe9556d668 Update to 6.0
Changelog:
All platforms:

	MAJOR CHANGE:  All platforms now use a uniform graphical user
	interface, based on the wxWidgets library.  A very simple editor
	is part of the package, no more external editor.  This GUI is,
	so far, rather primitive, but provides a framework that should
	allow for many improvements relatively soon.  There is a single
	Logo window that can be in fullscreen, splitscreen, or textscreen
	mode, like traditional Logo versions.

	INCOMPATIBLE CHANGE:  RGB color lists, as used by PALETTE,
	SETPALETTE, etc., now take integer or non-integer values between
	0 and 100 rather than integers between 0 and 65535.  I don't like
	incompatible changes, but having now actually tried teaching kids
	with Berkeley Logo, I've learned that they have trouble understanding
	the old system; their colors all come out near-black.

	New commands PRINTPICT and PRINTTEXT to print the graphics and
	text screens, respectively.  If called with an argument (in
	parentheses), they print preview instead. (wxWidgets only)

	New commands INCREASEFONT and DECREASEFONT to make the text window
	font one size bigger or smaller, SETTEXTSIZE to set the absolute
	size, SETLABELHEIGHT to adjust graphics-window text size, and
	SETFONT to set the font name for all windows.  (wxWidgets only)

	SETTEXTCOLOR (SETTC) command, formerly just in DOS version, works
	on all platforms.  It takes two color number or RGB lists as inputs,
	first the text color, then the text background color. (wxWidgets only)

	New command FILLED takes two arguments, a color and an instruction
	list.  The instructions should draw a simple closed curve (but if
	not closed, FILLED will add a turtle move back to the starting
	point).  The instructions are carried out, and then the area
	enclosed by the curve is filled using the given color, regardless
	of other lines that might intersect that area.  (wxWidgets only)

	Special variable BUTTONACT, if defined and nonempty, is an instruction
	list to be run when the user presses a mouse button.  Special variable
	KEYACT, if ditto, is to be run when the user presses a key on the
	keyboard.  It is the responsibility of the user code to handle the
	problem of a second mouse/keypress during the running of these
	instructions.  New operation CLICKPOS outputs the position of the
	mouse at the moment when the mouse button was pressed.  BUTTON
	outputs which button was most recently pressed, or zero if no button
	was pressed since the last call to BUTTON.  (BUTTONP still reflects
	the actual current button status.)  (wxWidgets only)

	The workspace management procedures (PO, TEXT, HELP, etc.) look
	in the library before deciding whether the name you give exists
	as a procedure or not, just the way running the procedure does.
	This is an incompatible change!

	The procedure formerly named BACKSLASHEDP or BACKSLASHED? is now
	called VBARREDP or VBARRED?, to reflect a longstanding change in
	its meaning.  The old names are retained in the Logo library for
	backward compatibility.

	A command line argument consisting of just a hyphen means that all
	following command line arguments should be collected in a list,
	instead of taken as filenames to load.  The list can be seen in
	the buried variable :COMMAND.LINE

	Logo looks in its library directory (e.g., /usr/local/lib/logo/logolib)
	for a file startup.lg, and runs it if found, before looking in the
	user's current directory for startup.lg and running that.

	A vertical bar that comes after a semicolon doesn't require a
	matching vertical bar to end the line.

	Fixed a garbage collector bug (although I don't know why it was
	a bug, alas).

	The buffer for saving pictures (for SAVEPICT and EPSPICT and for
	restoring the graphics window after it's hidden) has no size limit.

	INVOKE is a macro, so (INVOKE [IF ? < 0 [OUTPUT "NEGATIVE]] :X)
	will output from the caller, rather than from INVOKE.

	Improved error message "Runlist %s has more than one expression"
	for the case of a macro seen where an expression (that outputs a
	value) is needed: PRINT RUN [PRINT "A PRINT "B].

	One-pixel moves from drawing turtle aren't saved in SAVEPICT buffer.

	(1 2 3) gives error message instead of blowing up.

	PRINT [~] (bracket after tilde) works (no line continuation).

	The check for END inside a multi-line instruction is correctly
	internationalized.

	APPLY [[][]] [] no longer crashes.

	APPLY copies the arg list, so the original list can't be modified
	by changes to the inputs (e.g., after an error).

	Better error message (don't know how) for too much inside parens
	and also the first one isn't a procedure name.

	Better error message for STOP or OUTPUT during a PAUSE.

	Fixed bug crashing backquote (`) in case of `[[,[...] ...]]

	Fixed bug giving "out of bounds" message for line just on screen edge.

	Fixed bug that ignored TEST outside of a procedure.

	Turtle is invisible during drawing (to speed it up).
2015-10-11 07:02:39 +00:00
tnn
94c1b21746 drop Darwin from list of supported platforms -- doesn't build 2015-10-11 07:00:19 +00:00
ryoon
8248282d0c Remove samba 4 2015-10-11 05:20:57 +00:00
ryoon
6018b4406c bin86-0.16.21 2015-10-11 05:18:49 +00:00
mef
0b2925f0cf Updated ham/fldigi to 3.23.03 2015-10-11 04:00:14 +00:00
mef
e93fa357ee (pkgsrc)
- Add comments to patches picked from cvs log
 - Update HOMEPAGE and MASTER_SITES (to SF)
 - (move LICENSE= line to the second paragraph)

(upstream)
 - Update 3.22.13 to 3.23.03
----------------------------
=Version 3.23.03=
2015-09-28  David Freese  <iam_w1hkj@w1hkj.com>
	c3b610b: FSQ trigger bug

=Version 3.23.02=
	0424764: fsq cqcqcq
	198c5a0: fsq sounder/heard-aging
	dbb169b: FSQ directive
	d47b1e3: rigcat delayed startup
	e6ebe70: OS-X serial

2015-09-23  Kamal Mostafa  <kamal@whence.com>
	f75b92a: asciidoc timezone

=Version 3.23.01=
2015-09-22  David Freese  <iam_w1hkj@w1hkj.com>
	8ad0a8b: WX configure
	0caa5ea: PA debug
	838e112: WFALL-ONLY
	f472a17: Logbook read
	7cb4c66: ifkp avatar depth
	ea18942: IFKP image slant

=Version 3.23.00=
	f78aa38: Clear Tx Panel
	cbff7c3: Olivia/Contestia start stop tones
	37175e2: macro bug
	3d6e0b9: FSQ updates
	ed3b09d: ifkp modem
	c82de8e: MXE update
	7b42e01: Macros
	0606d1a: Doxygen help
	d4b6308: QSO rec
	2df24b8: MS Read logbook
	30ad2a9: WEFAX hang on INFO
	6704797: Nu opBW combos
	db69617: LSB modes
2015-10-11 03:59:56 +00:00
mef
8a459b3237 Updated ham/trustedQSL to 2.1.2 2015-10-11 02:59:18 +00:00
mef
cba0a8fc96 (pkgsrc)
- (patch-openssl__cert.cpp)
    Add patch to define MAX_PATH macro
  - Unable to package with x11/wxGTK30 yet
(upstream)
 - Udate 2.0.3 to 2.1.2
-----------
TQSL-2.1.2
The following links are pointers to TrustedQSL (TQSL) V2.1.2, which is
a bug fix for the official TQSL 2.1 release.
   Release Notes 	TrustedQSL-2-1-release.pdf
   http://www.rickmurphy.net/lotw/TrustedQSL-2-1-release.pdf
2015-10-11 02:59:07 +00:00
ryoon
1e7b2a79b5 Added cross/arm-none-eabi-binutils version 2.25.1
Added cross/arm-none-eabi-gcc5 version 5.2.0
Added cross/arm-none-eabi-gdb version 7.10
2015-10-11 01:17:20 +00:00
ryoon
3263b4ef29 Add arm-none-eabi-* 2015-10-11 01:16:29 +00:00
ryoon
782171c10e Import cross-arm-none-eabi-gdb-7.10 as cross/arm-none-eabi-gdb.
Cross GDB debugger for bare metal ARM EABI environment.
2015-10-11 01:15:18 +00:00
ryoon
8ad8463d4d Import cross-arm-none-eabi-gcc-5.2.0 as cross/arm-none-eabi-gcc5.
GCC for bare metal ARM EABI environment with newlib.
2015-10-11 01:14:56 +00:00
ryoon
83096046e5 Import cross-arm-none-eabi-binutils-2.25.1 as cross/arm-none-eabi-binutils.
Cross binutils for bare metal ARM EABI environment.
2015-10-11 01:14:27 +00:00
ryoon
ca021c3197 Added cross/objconv version 2.39 2015-10-11 01:11:32 +00:00
ryoon
d59b4d1fce Add objconv 2015-10-11 01:11:06 +00:00
ryoon
c339c3c53b Import objconv-2.39 as cross/objconv.
Object file converter

This utility can be used for converting object files between COFF/PE,
OMF, ELF and Mach-O formats for all 32-bit and 64-bit x86 platforms.
Can modify symbol names in object files. Can build, modify and
convert function libraries across platforms. Can dump object files
and executable files. Also includes a very good disassembler
supporting the SSE4, AVX, AVX2, AVX512, FMA3, FMA4, XOP and Knights
Corner instruction sets. Source code included (GPL).
2015-10-11 01:10:22 +00:00
ryoon
5dfe9a007e Add 8086tiny 2015-10-11 00:54:08 +00:00
ryoon
b2d7c22e6d Added emulators/8086tiny version 1.25 2015-10-11 00:53:25 +00:00
ryoon
047bcc3f37 Import 8086tiny-1.25 as emulators/8086tiny.
8086tiny is a free, open source PC XT-compatible emulator/virtual
machine written in C. It is, we believe, the smallest of its kind
(the fully-commented source is around 28K). Despite its size,
8086tiny provides a highly accurate 8086 CPU emulation, together
with support for PC peripherals including XT-style keyboard,
floppy/hard disk, clock, timers, audio, and Hercules/CGA graphics.
8086tiny is powerful enough to run software like AutoCAD, Windows
3.0, and legacy PC games: the 8086tiny distribution includes Alley
Cat, the author's favorite PC game of all time.

8086tiny is highly portable and runs on practically any little
endian machine, from simple 32-bit MCUs upwards. 8086tiny has
successfully been deployed on 32-bit/64-bit Intel machines (Windows,
Mac OS X and Linux), Nexus 4/ARM (Android), iPad 3 and iPhone 5S
(iOS), and Raspberry Pi (Linux).

The philosophy of 8086tiny is to keep the code base as small as
possible, and through the open source license and repository on
GitHub encourage individual developers to tune and extend it as
per their specific requirements, adding support, for example, for
more complex instruction sets (e.g. Pentium) or peripherals (e.g.
mouse). Any questions, comments or suggestions are very welcome in
our forum.
2015-10-11 00:52:23 +00:00
dholland
e5b1fa2064 oops, I bumped bootstrap-mk-files on 20150908 and forgot to commit the
CHANGES entry. do it now, better late than never.
2015-10-11 00:38:05 +00:00
ryoon
f7d8a052d0 Fix install stage error. 2015-10-11 00:19:33 +00:00
tnn
f2e3465a44 added x11/xf86-input-ws 2015-10-10 20:10:33 +00:00
tnn
4bc863eea4 adjust for openbsd-input-ws -> xf86-input-ws rename 2015-10-10 20:09:17 +00:00
tnn
46eb7bd4fc Operating systems with wscons(4) can use xf86-input-ws. Bump rev. 2015-10-10 20:08:08 +00:00
tnn
ac34e01a50 remove openbsd-input-ws, succeeded by xf86-input-ws 2015-10-10 20:05:12 +00:00
tnn
7d85266ca9 Re-import x11/openbsd-input-ws as x11/xf86-input-ws and update to 1.3.0.
From OpenBSD xenocara HEAD. No distfile, so manually tared up and dropped
in MASTER_SITE_LOCAL.
2015-10-10 20:02:52 +00:00
richard
7297f6e35b revert accidental ssp fix waiting on joerg@ 2015-10-10 17:05:17 +00:00
richard
255bcf2e52 SunOS doesn't have arc4random_stir either 2015-10-10 17:03:02 +00:00
ryoon
955e585ec0 Update MASTER_SITE_OSDN server names. 2015-10-10 15:17:17 +00:00
ryoon
fe32aa4b59 Updated fonts/umefont-ttf to 0.550 2015-10-10 13:57:27 +00:00
ryoon
cf8656f3db Update to 0.550
Status:
Unadjusted glyphs (characters; 1st pass): Uninode 8691-8b95
Unadjusted glyphs (Bushu; 1st pass): Mushi, Koromo, Gonben
2015-10-10 13:56:50 +00:00
manu
7e8e686764 Updated filesystems/glustefs to 3.7.5 2015-10-10 13:28:20 +00:00