summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2008-04-25Update PYTHON_VERSIONS_COMPATIBLEjoerg169-360/+236
- assume that Python 2.4 and 2.5 are compatible and allow checking for fallout. - remove PYTHON_VERSIONS_COMPATIBLE that are obsoleted by the 2.3+ default. Modify the others to deal with the removals.
2008-04-25Build dri by default on i386/amd64 NetBSD >=4.0. It is important we seebjs1-1/+11
what kind of lossage occurs before the next release branch, and this is the best way to do it. NOTE: The X server should probably be upgraded to the 1.4 branch now, as the current (1.3.0.0) server uses Mesa 6.5.3 (a development release whose time has long since passed).
2008-04-25Update to py-pexpect-2.3.tnn3-8/+17
- Supports DESTDIR - Accept Python 2.5 No ChangeLog, but it adds three new modules: SCREEN: This implements a virtual screen ANSI: This implements an ANSI terminal emulator as a subclass of screen FSM: This module implements a Finite State Machine (FSM)
2008-04-25- Supports DESTDIRtnn1-2/+4
- Accept Python 2.5
2008-04-25+ Updated graphics/MesaLib to 7.0.3nb1 [bjs 2008-04-25]bjs1-1/+2
2008-04-25Accept Python 2.5.tnn1-2/+2
2008-04-25Add some SUBST magic for NetBSD to change the name of the functionbjs2-2/+19
called in the x86/x86_64 assembler dispatch routine to __thr_getspecific to avoid an unresolved symbol error from ld at link-time. This is a weak alias in libc and a strong alias in libpthread, so everything should work fine. This could probably be fixed in a better way, but for now, I think "it works" is a plus. Bump rev.
2008-04-25Fix detection of openssl configuration directory on NetBSD so it'sjlam1-3/+5
/etc/openssl only if USE_BUILTIN.openssl is "yes".
2008-04-25Update to py-dbus-0.82.4.tnn2-7/+9
- Supports DESTDIR - Accept Python 2.5 News: * supplying reply_handler but not error_handler raises MissingReplyHandlerException instead of MissingErrorHandlerException, and vice versa (fd.o #12304, patch from Rene Neumann) * Using non-recursive make for dbus/ directory should fix builds in some environments (fd.o #12741)
2008-04-25libfetch-2.13:joerg5-12/+59
Add a function to turn struct url back into a string.
2008-04-25Fix a potential DOS when using SSL. Bump revision.joerg3-1/+94
2008-04-25Passes all tests, so enable for Python 2.5.tnn1-2/+2
2008-04-25Remove the right version.joerg1-2/+2
2008-04-25Explicitly include Python 2.1 as it is required by Zope 2.5.joerg3-3/+9
2008-04-25Explicitly include Python 2.1 as this is used by Zope 2.5.joerg1-1/+3
2008-04-25Explicitly include Python 2.1 -- this is used by Zope 2.5.joerg1-1/+3
2008-04-25Remove removed Python versions.joerg1-2/+2
2008-04-25Update to 1.6.0.tnn2-8/+10
- supports DESTDIR - Accept Python 2.5 ChangeLog: 2007-11-25 Bob Halley <halley@dnspython.org * dns/query.py (_wait_for): if select() raises an exception due to EINTR, we should just select() again. 2007-06-13 Bob Halley <halley@dnspython.org> * dns/inet.py: Added is_multicast(). * dns/query.py (udp): If the queried address is a multicast address, then don't check that the address of the response is the same as the address queried. 2007-05-24 Bob Halley <halley@dnspython.org> * dns/rdtypes/IN/NAPTR.py: NAPTR comparisons didn't compare the preference field due to a typo.
2008-04-25Update to urlgrabber-3.1.0.tnn3-8/+13
pkgsrc: - Fix acceptable python versions - Supports DESTDIR From ChangeLog: Added James Bowes' SSL patch to use M2Crypto when available.
2008-04-25Supports installation to DESTDIR.tnn1-2/+4
Accept Python 2.5.
2008-04-25Remove removed Python versions.joerg1-2/+2
2008-04-25Fix xtrans-1.1 on NetBSD (testing rocks).joerg3-6/+17
2008-04-25Accept Python 2.5.tnn2-4/+4
2008-04-25Fix inverted test for compressing the ".el" files.tron1-3/+3
2008-04-25Update for Python 2.5.joerg1-3/+3
2008-04-25Update to py-pyrex-0.9.6.4 for Python 2.5 support.tnn3-21/+33
0.9.6.4 ------- Enhancements: - Functions declared with_gil and external functions declared nogil are now allowed to have Python arguments and return types. 0.9.6.3 ------- Enhancements: - C API now only uses a single name in the module namespace instead of one for each exported C function. [Stefan Behnel] - Multiple declarations with the same visibility and api options can now be grouped into a 'cdef' block. - The 'api' keyword can now be used on extension types to cause generation of an api.h file when there are no exported C functions. - Added a getattr3() builtin for the three-argument form of getattr. 0.9.6 ----- New Features: - Top-level C functions defined in one module can now be used in another via cimport, and a C API can be produced to allow them to be used from C code without linking to the extension module. See "Interfacing with External C Code" and "Sharing Declarations between Pyrex Modules" in the Language Overview. [Stefan Behnel] - Facilities added for releasing the GIL around a section of code and acquiring it on entry to a C function. See "Acquiring and Releasing the GIL under "Interfacing with External C Code" in the Language Overview. [Ulisses Furquim, Stefan Behnel] - Some conditional compilation facilities have been added. See "Conditional Compilation" under "Language Basics" in the Language Overview. [Sam Rushing] Language Changes: - The __new__ special method of extension types is being renamed to "__cinit__". For now, you will get a warning whenever you declare a __new__ method for an extension type, and it will automatically be renamed to __cinit__ for you. In the next release, the warning will become an error and no renaming will occur. In some later release, the __new__ method may be re-introduced with different semantics. It is recommended that you begin updating your sources now to use __cinit__. - A 'raise' statement with no arguments (i.e. to re-raise the last exception caught) is now required to be lexically within the 'except' clause which caught the exception. This change was necessary to efficiently support preserving the exception if an intervening call raises and catches a different exception. - The following new reserved words have been added: with, DEF, IF, ELIF, ELSE Enhancements: - Calls to many of the builtin functions are now compiled as direct calls to Python/C API routines. - A C type explicitly declared as 'signed' is represented as such in the generated code, to acommodate platforms where 'char' is unsigned by default. [Francesc Altet] - Python function can now have an argument of type "unsigned char". [Alexander Belchenko] - A new Pyrex.Distutils implementation has been added, which exports an Extension type supporting the following options: pyrex_include_dirs - list of dirs to search for Pyrex header files pyrex_create_listing_file - bool - write errs to listing file pyrex_cplus - bool - generate C++ code pyrex_c_in_temp - bool - put generated C files in temp dir pyrex_gen_pxi - bool - generate .pxi file for public declarations [Contributed by Billie G. Allie] - Assert statements can be compiled out by arranging for PYREX_WITHOUT_ASSERTIONS to be #defined at C compilation time. [Contributed by Stefan Behnel] - Support for __index__ slot added to extension types. [William Stein] - Exception types now properly checked according to pre or post 2.5 rules as appropriate. - Py_ssize_t support added. [Stefan Behnel] - Windows __stdcall and __decl qualifiers now supported. [Suggested by Eric Devolder] - Keyword-only argument support added. [Suggested by Stefan Behnel] - An 'include' statement can now appear anywhere that another kind of statement or declaration can appear, instead of being restricted to the top level. [Caio Marcelo] - Unnecessary PyErr_Occurred() call to check result of PyString_AsString() no longer made. - Complicated C types are displayed more readably in error messages. Modifications: - A Python function argument declared as "char" or "unsigned char" now expects a Python integer rather than a string of length 1, for consistency with the way automatic conversions are done elsewhere. - Support for string and tuple exceptions dropped. 0.9.5.1 ------- Modifications: - NULL in Pyrex source now translated into NULL instead of 0 in C code, to allow for the possibility of calling something not defined with a prototype in an external header. [Adapted Cat] 0.9.5 ----- Enhancements: - Exception return values may now be specified by arbitrary constant expressions of appropriate type, not just literals. [Stefan Behnel] - Redundant type check now omitted when passing a literal None to a function expecting an extension type. [Patch by Sam Rushing] - New-style classes now allowed as exceptions for compatibility with Python 2.5 (inheritance from BaseException not currently checked). [Stefan Behnel] - Sequence unpacking is now done using the iterator protocol instead of indexing. - Allocation of an empty tuple is avoided when making a Python call with no arguments. [Stefan Behnel] - Most warnings about unused variables and labels have been eliminated. - Support for running the test suite on Linux added but not yet fully tested. [Based in part on patch by Eric Wald]. - Makefile included for compiling the patched Carbon File module used by the MacOSX test code. Modifications: - Type rules for enums tightened for compatibility with C++. - Direct assignment from float to int disallowed to prevent C++ compilation warnings. - Hex literals left as hex in C code to avoid warnings from the C compiler about decimal constants becoming unsigned.
2008-04-25Update to py-psyco-1.6.tnn2-8/+8
New in this release: OSX/Intel and Python 2.5 support. While here, add DESTDIR support.
2008-04-25+ python 2.5joerg1-2/+2
- python 2.0 - python 2.2
2008-04-25 Updated devel/scmgit to 1.5.5.1 [bjs 2008-04-25]bjs1-1/+4
Updated devel/scmgit-base to 1.5.5.1 [bjs 2008-04-25] Updated devel/scmgit-docs to 1.5.5.1 [bjs 2008-04-25]
2008-04-25Update to version 1.5.5.1. No pkgsrc changes, this time.bjs2-6/+6
GIT v1.5.5.1 Release Notes ========================== Fixes since v1.5.5 ------------------ * "git archive --prefix=$path/" mishandled gitattributes. * "git fetch -v" that fetches into FETCH_HEAD did not report the summary the same way as done for updating the tracking refs. * "git svn" misbehaved when the configuration file customized the "git log" output format using format.pretty. * "git submodule status" leaked an unnecessary error message. * "git log --date-order --topo-order" did not override the earlier date-order with topo-order as expected. * "git bisect good $this" did not check the validity of the revision given properly. * "url.<there>.insteadOf" did not work correctly. * "git clean" ran inside subdirectory behaved as if the directory was explicitly specified for removal by the end user from the top level. * "git bisect" from a detached head leaked an unnecessary error message. * "git bisect good $a $b" when $a is Ok but $b is bogus should have atomically failed before marking $a as good. * "git fmt-merge-msg" did not clean up leading empty lines from commit log messages like "git log" family does. * "git am" recorded a commit with empty Subject: line without complaining. * when given a commit log message whose first paragraph consists of multiple lines, "git rebase" squashed it into a single line. * "git remote add $bogus_name $url" did not complain properly. * Also comes with various documentation updates.
2008-04-25Make emacs and emacs-nox11 look more like xemacs and xemacs-nox11 injlam5-91/+73
terms of file structure. Also add DESTDIR support.
2008-04-25Remove python 2.1 from the default set of acceptable python packagestnn1-3/+3
so that packages that require it must specify so explicitly.
2008-04-25libfetch-2.12:joerg8-52/+112
Make function naming consistent before external code depend on it. Update man page.
2008-04-25+dcsharpkefren1-1/+2
2008-04-25+ndesk-dbuskefren1-1/+3
+ndesk-dbus-glib
2008-04-25mono1.9.1nb1, ndesk-dbus packages and dcsharpkefren1-1/+5
2008-04-25-python20, -python22tnn1-3/+1
2008-04-25Removed lang/python{20,22}tnn1-1/+3
2008-04-25De-orbit support for python 2.0 and python 2.2 under the "three majortnn55-3954/+7
releases is enough" rule of thumb. (python 2.3 was released 5 years ago.) Keep python 1.5 and 2.1 though, because there are a handful of packages that still need them.
2008-04-25Initial import of dcsharp-0.11.1kefren20-0/+430
DC# is a file sharing client for the Direct Connect protocol, which allows you to connect to hubs to chat and share files.
2008-04-25Initial import of ndesk-dbus-glib 0.4.1kefren5-0/+63
This module provides GLib integration for sysutils/ndesk-dbus
2008-04-25PR pkg/38506: Rob Quinn: Work around Solaris /bin/sh brain damage.tnn2-5/+5
2008-04-25Update to libarchive-2.5.1b. Fix a counter bug and make UTF8 conversionjoerg1-2/+2
for PAX format more robust.
2008-04-25Update to libarchive-2.5.1b:joerg2-9/+13
- Simplify character-translation logic. pkgsrc: Fix a bug in the linkresolver for tar format. When linkresolver is done, the entry belongs to the caller, so don't keep a reference to it and use the local copy for inode comparision.
2008-04-25Initial import of ndesk-dbus 0.6.1akefren5-0/+58
ndesk-dbus is a C# implementation of D-Bus. It's often referred to as dbus-sharp, or "managed D-Bus" to avoid confusion with existing bindings (which wrap libdbus).
2008-04-25Fix function prototype mismatchsmb3-3/+35
2008-04-25Import libarchive-2.5.1b.joerg33-608/+1513
2008-04-25Enable debug optionsmb1-2/+2
2008-04-25Supports DESTDIR.joerg2-2/+6
2008-04-25Shorten staircase.tnn1-5/+4