summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2011-11-26Updated pkgtools/pkglint to 4.104ryoon1-1/+2
2011-11-26Add gnu-agpl-v3 to the default list.ryoon1-2/+3
2011-11-26Add GNU AFFERO GENERAL PUBLIC LICENSE, Version 3 as gnu-agpl-v3ryoon1-0/+661
2011-11-26Use options framework for NLS support. Enable by default on NetBSD, buthans2-15/+26
not on other platforms.
2011-11-26Update to 4.104ryoon2-4/+4
* Allow value "6" and "7" in USE_JAVA2.
2011-11-26Document section update. PR pkg/45654.ryoon1-4/+4
* Add value "7" to USE_JAVA2.
2011-11-26Fix build with modern GCCjoerg2-1/+14
2011-11-26chat/centericq: stdlibc++ too old for DragonFlymarino1-1/+3
Centericq hasn't been updated by the author since 2005. The hash_map classes that it uses were deprecated and finally removed from gcc. They are not available in gcc4.4, the default DragonFly compiler. This packages is being masked for DragonFly 2.10 and later.
2011-11-26Fix build with newer GCCjoerg2-1/+14
2011-11-26Fix preprocessor usage.joerg2-1/+15
2011-11-26x11/wterm: Fix for DragonFlymarino2-4/+4
DragonFly needs the same modification that NetBSD does, modify the patch.
2011-11-26Use stdarg.h properly.joerg2-1/+24
2011-11-26#elif requires an argument, so use plain #else here.joerg2-1/+14
2011-11-26Fix build with newer GCCjoerg10-34/+146
2011-11-26net/wnmet: Fix DragonFlymarino3-11/+26
This breakage was caused by the ifnet structure getting moved under the kernel structures macro.
2011-11-26net/vino: Fix for DragonFlymarino2-1/+17
Add socket.h (if available) to a header using sockaddr structure, fixes build for DragonFly.
2011-11-26Fix build with modern GCCjoerg2-1/+14
2011-11-26Fix build with newer GCCjoerg4-1/+36
2011-11-26Let this build with newer GCC.joerg6-1/+92
XXX Might have LP64 issues with the casts
2011-11-26Build in config first for nsinstall and then the rest. Fixes issues withjoerg1-2/+3
the former sometimes not getting found in other directories.
2011-11-26Fix C++joerg2-1/+37
2011-11-26Always include string.hjoerg2-9/+7
2011-11-26Fix C++ syntaxjoerg2-1/+24
2011-11-26Always include string.hjoerg2-6/+4
2011-11-26elftoolchaindholland1-1/+2
2011-11-26Fix parallel build failure (-jN)cheusov2-6/+9
2011-11-26requires gmake>=3.81hans1-1/+2
2011-11-26Add gmake.mk, based on texinfo.mk, to check the version of thehans2-1/+67
platform-provided gmake. Packages can set GMAKE_REQD to require a minimum gmake version.
2011-11-26Make it MAKE_JOBS_SAFE.dholland2-1/+17
2011-11-26Propagate a fix from NetBSD base bsd.lib.mk: if SHLIB_FULLVERSION isdholland2-3/+6
the same as SHLIB_MAJOR, don't try to symlink SHLIB_MAJOR. Otherwise you lose the library and get a symlink pointing to itself, and things fail later with ELOOP. Fixes builds of packages that use bsd.lib.mk for shared libraries and set only a major version number.
2011-11-26Add a minor version to the shared libraries; otherwise a bootstrappeddholland6-3/+64
build does e.g. "ln -sf libelf.so.1 libelf.so.1" and then install fails with ELOOP. This is a bug in bootstrap-mk-files but I'm going to fix it in both places to avoid demanding rebootstrapping.
2011-11-26requires flex>=2.5.33hans2-2/+4
2011-11-26policykit-gnome from 2011-11-14 and libgksu from 2011-11-19. Oops.dholland1-1/+3
2011-11-26Add flex.mk, based on texinfo.mk, to check the version of thehans2-1/+70
platform-provided flex. Packages can set FLEX_REQD to require a minimum flex version.
2011-11-26regen distinfo (hi joerg!)dholland1-2/+8
2011-11-26* Update HOMEPAGEobache1-2/+3
* set LICENSE
2011-11-26Updated databases/slony1 to 2.1.0adam1-1/+2
2011-11-26Changes 2.1.0:adam4-15/+15
* The first release for Slony-I branch 2.1 has been released, in the form of version 2.1.0. It is a significant new version, fixing dozens of reported bugs, and adding some significant enhancements, including: - Implicit WAIT FOR - Support for adding tables in bulk - Support for replicating TRUNCATE - Health checks at startup - Performance improvement in cases of large backlog - Monitoring thread to provide better monitoring data
2011-11-26clang was added to a list of supported compilerscheusov1-3/+3
minor code clean-ups
2011-11-26Updated www/py-mechanize to 0.2.5obache2-3/+3
2011-11-26Update py-mechanize to 0.2.5.obache3-22/+28
(added test target) 2011-03-31 John J Lee <jjl@pobox.com> * 0.2.5 release. * This is essentially a no-changes release to fix easy_install breakage caused by a SourceForge issue * Sourceforge is returning invalid HTTP responses, make download links point to PyPI instead * Include cookietest.cgi in source distribution * Note new IETF cookie standardisation effort 2010-10-28 John J Lee <jjl@pobox.com> * 0.2.4 release. * Fix IndexError on empty Content-type header value. (GH-18) * Fall back to another encoding if an unknown one is declared. Fixes traceback on unknoqn encoding in Content-type header. (GH-30) 2010-10-16 John J Lee <jjl@pobox.com> * 0.2.3 release. * Fix str(ParseError()) traceback. (GH-25) * Add equality methods to mechanize.Cookie . (GH-29) 2010-07-17 John J Lee <jjl@pobox.com> * 0.2.2 release. * Officially support Python 2.7 (no changes were required) * Fix TypeError on .open()ing ftp: URL (only affects Python 2.4 and 2.5) * Don't include HTTPSHandler in __all__ if it's not available 2010-05-16 John J Lee <jjl@pobox.com> * 0.2.1 release. * API change: Change argument order of HTTPRedirectHandler.redirect_request() to match urllib2. * Fix failure to use bundled BeautifulSoup for forms. (GH-15) * Fix default cookie path where request path has query containing / character. (http://bugs.python.org/issue3704) * Fix failure to raise on click for nonexistent label. (GH-16) * Documentation fixes. 2010-04-22 John J Lee <jjl@pobox.com> * 0.2.0 release. * Behaviour change: merged upstream urllib2 change (allegedly a "bug fix") to return a response for all 2** HTTP responses (e.g. 206 Partial Content). Previously, only 200 caused a response object to be returned. All other HTTP response codes resulted in a response object being raised as an exception. * Behaviour change: Use of mechanize classes with `urllib2` (and vice-versa) is no longer supported. However, existing classes implementing the urllib2 Handler interface are likely to work unchanged with mechanize. Removed RequestUpgradeProcessor, ResponseUpgradeProcessor, SeekableProcessor. * ClientForm has been merged into mechanize. This means that mechanize has no dependencies other than Python itself. The ClientForm API is still available -- to switch from ClientForm to mechanize, just s/ClientForm/mechanize in your source code, and ensure any use of the module logging logger named "ClientForm" is updated to use the new logger name "mechanize.forms". I probably won't do further standalone releases of ClientForm. * Stop monkey-patching Python stdlib. * Merge fixes from urllib2 trunk * Close file objects on .read() failure in .retrieve() * Fix a python 2.4 bug due to buggy urllib.splithost * Fix Python 2.4 syntax error in _firefox3cookiejar * Fix __init__.py typo that hid mechanize.seek_wrapped_response and mechanize.str2time. Fixes http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=465206 * Fix an obvious bug with experimental firefox 3 cookiejar support. It's still experimental and not properly tested. * Change documentation to not require a .port attribute on request objects, since that's unused. * Doc fixes * Added mechanize.urljoin (RFC 3986 compliant function for joining a base URI with a URI reference) * Merge of ClientForm (see above). * Moved to git (from SVN) http://github.com/jjlee/mechanize * Created an issue tracker http://github.com/jjlee/mechanize/issues * Docs are now in markdown format (thanks John Gabriele). * Website rearranged. The old website has been archived at http://wwwsearch.sourceforge.net/old/ . The new website is essentially just the mechanize pages, rearranged and cleaned up a bit. * Source code rearranged for easier merging with upstream urllib2 * Fully automated release process. * New test runner. Single test suite; tests create their own HTTP server fixtures (server fixtures are cached where possible for speed).
2011-11-26Updated multimedia/mediainfo to 0.7.51nb1sbd1-1/+2
2011-11-26* Give the MAKE_ENV to the build script.sbd1-2/+4
* Add missing devel/zlib buildlink. Bump PKGREVISION
2011-11-26Missing dependency on py-ClientForm of py-mechanize had been resolved withobache1-4/+3
0.1.11nb1. Future version of mechanize will not require ClientForm and this package does not using ClientForm directly, so update DEPENDS pattern, bump require version of py-mechanize and drop dependency on py-ClientForm. Bump PKGREVISION.
2011-11-26Recursive bump for devel/exempi buildlink addition.sbd4-8/+8
2011-11-26Updated devel/exempi to 2.1.1nb2sbd1-1/+2
2011-11-26Add missing devel/zlib buildlink.sbd2-3/+6
Bump PKGREVISION
2011-11-26Updated archivers/nulib2 to 2.0.3nb1sbd1-1/+20
Updated audio/xmms to 1.2.11nb2 Updated converters/odt2txt to 0.4nb1 Updated cross/avr-binutils to 2.19.1nb1 Updated devel/ccache to 3.1.4nb1 Updated devel/darts to 0.32nb1 Updated devel/libnjb to 2.2.6nb1 Updated devel/snappy to 1.0.1nb1 Updated devel/tla to 1.3.5nb1 Updated geography/cmconvert to 1.9.5nb1 Updated geography/xrmap-base to 2.29nb2 Updated mail/mutt-devel to 1.5.21nb3 Updated net/lopster to 1.2.2nb4 Updated net/wget to 1.13.4nb2 Updated security/mcrypt to 2.6.8nb2 Updated security/stunnel to 4.46nb1 Updated security/sudo to 1.7.8p1nb1 Updated sysutils/radmind to 1.14.1nb1 Updated www/wwwoffle to 2.9anb2
2011-11-26Add missing devel/zlib buildlink.sbd19-27/+57
Bump PKGREVISION
2011-11-26Must pad version number to four digitsjoerg1-2/+2