summaryrefslogtreecommitdiff
path: root/net
AgeCommit message (Collapse)AuthorFilesLines
2006-10-26Add CHECK_PORTABILITY_SKIP.tv1-1/+3
2006-10-25Fixed PKGMANDIR. Added the missing dependency to bash. PKGREVISION++rillig1-8/+5
2006-10-25Needs C compiler.joerg1-2/+2
2006-10-23Don't try to include nonexistant ipv6 header on Solaris.markd2-6/+8
From Volker Stolz in PR pkg/34883.
2006-10-23Allow dependency on PKGREVISIONed nagios-plugins package.seb4-8/+8
2006-10-23MAKE_JOBS_SAFE=NOdan1-1/+2
blows up very early in build with -j, it seems make may not be aware of dependencies on some generated .h/.c files
2006-10-22+ wpa_guirpaulo1-1/+2
2006-10-22Qt3 GUI for the wpa_supplicant(8) daemon shipped with NetBSD.rpaulo5-0/+48
2006-10-21Update p5-SOAP-Lite to 0.69.obache3-171/+8
Changes: 0.69 Aug 16 2006 ! Commented out two lines of code that were causing S::L to die under a non-fatal error condition. This is a HACK. 0.68 July 6 2006 ! Patched support for mod_perl Apache2 (thanks to JT Justman) ! Fixed bug where SOAP::SOM objects were not properly detected, serialized and returned (thanks chris at prather dot o r g) ! Fixed bug with default_ns and ns functions so that they serialized XML properly. + Started to add experimental DIME support - possible impacts to MIME support as well 0.65-beta7 May 12 2005 + Added default_ns and ns to replace the confusing use of uri() and use_prefex() 0.65-beta6 June 3 2005 ! Fixed bug resulting in XMLRPC requests to be serialized using the doc/literal serializer if serializing arrays 0.65-beta5 May 6 2005 ! Fixed critical bug which prevented all XMLRPC servers from working 0.65-beta4 Apr 3 2005 ! Fixed bug 1160881 - HTTP headers are now terminated by \r\n for compatibility with .NET and compliance with HTTP spec. ! Fixed 1158666 - stubmaker.pl no longer call deprecated subroutine + stubmaker.pl got a lot of enhancements - now has help and version output, run time options, etc. See 'man stubmaker.pl' for more. + Classes generated by stub_maker.pl now have a special subroutine called 'want_som.' When set to 1, the stub class will return a SOAP::SOM object for every request. ! Fixed bug 1149427 - now capable of returning SOAP::SOM objects from generated stub classes. 0.65-beta3 Mon Oct 25 2004 + SOAP::Lite will only warn you once when you call a doc/literal service + Added SOAP::Schema->cache_dir() and SOAP::Schema->cache_ttl(), which control how code stubs generated from WSDLs are cached to prevent constant reparsing of WSDL files. ! Tested SOAP::Lite against Google, Salesforce, and FedEx. So far, clients can successfully call these service providers (at least some of their operations) - testing does not provide 100% coverage of their APIs. 0.65-beta2.1 Mon Oct 25 2004 + Fixed bug in unit tests in which MIME::Tools was not properly detected resulting in failed unit tests for some users. + Fixed some documentation issues (speling, etc). 0.65-beta2 Mon Oct 25 2004 ** WARNING ** substantial changes have been made to SOAP::Lite in this release in regards to how it manages attachments. The changes may introduce instabilities into your software that relies on this functionality. Please test your software with 0.65 prior to moving it to a production environment. + Added ReleaseNotes.txt + Added section REPORTING BUGS to pod comments + Deprecated SOAP::Lite->schema removed + Deprecated SOAP::Lite->on_debug removed + Deprecated SOAP::Schema->schema in favor of SOAP::Schema->schema_url + Added SOAP::Schema->useragent - which returns the LWP::UserAgent instance that will be used when accessing WSDLs via the SOAP::Lite->service call. This is helpful when access to a WSDL requires authentication, etc. + Made changes that allow messages to be constructed using a NULL body: <Envelope><Body /></Envelope> + Added constant OBJS_BY_REF_KEEPALIVE which defaults to 600 - this is so that services can configure how long to cache objects marked as persistent using SOAP::Server::Object->objects_by_reference() + Added the ability for a user to modify the UserAgent class used by SOAP::Transport::HTTP::Client, updated Transport.pm's documentation to reflect this. Added $SOAP::Transport::HTTP::Client::USERAGENT_CLASS variable as a means of setting this. + Added initial DIME support + SOAP Packager package/unpackage now take in a context variable as input because DIME needs to know what version of SOAP you are using. + Refactored and rewrote README + Renamed SOAP::Schema->stub() to SOAP::Schema->generate_stub. This populates a private variable called C<stub> with the autogenerate Perl code. + Added SOAP::Schema->stub() which returns the autogenerated Perl code used internally by SOAP::Lite. This can be helpful for debugging SOAP::Lite's utilization of WSDL, as well as helpful to developers working on S::L's WSDL support. 0.65-beta1 Mon Oct 18 15:55:00 2004 + Made SOAP::Serializer->readable actually produce readable XML! ! Fixed bug 747312 - Made XML Schema 2001 the default schema + Changed typelookup of base64 to base64Binary to conform with 2001 schema + Added support for [almost] all XML Schema 2001 built-in datatypes + Added register_ns subroutine to SOAP::Serializer + Added find_prefix subroutine to SOAP::Serializer + Added use_prefix subroutine to SOAP::Serializer + Added a necessary set of initial subroutinues to support wsdl2perl project + Added format_datetime to SOAP::Utils + Documented SOAP::SOM->parts + Added SOAP::SOM->is_multipart + Properly escaped characters to facilitate emacs syntax highlighting + Ran podchecker to validate all POD comments ! Fixed bug 749636 - changed a croak to a warn to enable socket timeouts in SOAP::Transport::TCP::Server + Added support for UDDI 2/3 + Majorly revamped product documentation thanks to the kind contribution made by O'Reilly. Appendix B from "Programming Web Services with Perl" has been completely integrated. + To better segment SOAP::Lite documentation, many modules have been added that contain documentation only. For those who loved the old documentation, it can be found in lib/OldDocs/SOAP/*.pm and lib/OldDocs/SOAP/Transport/*.pm ! Fix a bug in which doclit style arrays were not being deserialized properly. IOW, Repeated elements were not made into an array, only the last occurring value was recorded. + Added the ability for a SOAP Client to gain direct access to the HTTP::Request and HTTP::Response objects. + Changed default envelope namespace prefix from SOAP-ENV to soap + Changed default encoding namespace prefix from SOAP-ENC to soapenc + Reachitected MIME support to decouple MIME layer from transport layer. This only impacts the HTTP layer since that is the only transport in SOAP::Lite that supports attachments. + Creation of SOAP::Packager - decoupled in an extensible way the packaging of parts (a.k.a. attachments). This is used for encoding and decoding. This enables a more seemless addition of DIME support. Changes were made throughout SOAP::Lite to accomodate this functionality. - a call "context" was added to SOAP::Server and SOAP::Deserializer so that those classes could have access to the global SOAP::Packager instance - deprecated many function calls and packages having to do with attachment support - fixed several of the SOAP::*::new() methods so that they don't inadvertantly reinitialize themselves and destroy precious context information in the process + Gave developers direct access to MIME::Parser object so that they can optimize its use. See the following URL to optimize it for memory consumption, parsing speed, disk utilization, etc: http://search.cpan.org/dist/MIME-tools/lib/MIME/Parser.pm#OPTIMIZING_YOUR_PARSER + Added a context variable to SOAP::Serializer and SOAP::Deserializer so that they have mechanisms for getting instance data from the calling context. The value of context is either SOAP::Lite or SOAP::Server depending upon the role the service is playing in the transaction. Contexts are initialized when a call is made, and destroyed when a call is completed. + Greater than character '>' has been added to list of characters that will be automatically escaped. This is not a requirement by the XML spec, it is a MAY, but I am doing it after seeing a minority of people report a compatibility problem. - Removed deprecated methods: SOAP::Serializer::namespace and encodingspace + Added SOAP::Serializer::encodingStyle method which allows users to set the URI for default encodingStyle. + Added initial support for literal encoding style. EXPERIMENTAL + Added some true constant values representing various SOAP namespace URIs + Added SOAP::Constants::SUPPORTED_ENCODING_STYLES for better tracking of the set of encoding styles that the toolkit can [de]serialize ! Fixed bug 840172 - "Makefile.PL --noprompt flag broken," now fixed + Updated SOAP 1.2 URIs to the latest (TODO - maintain support for older ones) + Added HTTPS support for HTTP::Server Daemon class - thanks to Nils Sowen for this contribution
2006-10-20Perl is needed at run time. PKGREVISION++rillig1-1/+4
2006-10-20Fixed a typo in CONFIGURE_ARGS and some references to WRKDIR.rillig1-2/+6
PKGREVISION++
2006-10-20Added *_USER and *_GRUOP to BUILD_DEFS.rillig1-1/+4
2006-10-19Updated net/mrtg to 2.14.7martti4-39/+25
* take over MAINTAINERship * removed extra spaces from Makefile.in * timestamps in log files to be YYYY-MM-DD HH:MM:SS * fixed rateup to propely support kMG option * fixed problem with conversioncode option throwing an exception. * fixed config parsing problem for libadd lines terminated by a \ * added 'eval' debug target * updated local $SIG{__DIE__} locations to work as intended * fix ifspeed for foundry switches in cfgmaker * Added expscale option (opposite of logscale) to emphasize the top end of the scale; this improves display of line voltages that don't change a whole lot * added sample startup script for mrtg
2006-10-18Apply patch from net-snmp CVS repository to fix Perl module SNMP's bulkwalkseb3-15/+36
function. - patch from http://net-snmp.cvs.sourceforge.net/net-snmp/net-snmp/perl/SNMP/SNMP.xs?r1=5.50.2.6&r2=5.50.2.7&view=patch&pathrev=V5-3-patches - revision log http://net-snmp.cvs.sourceforge.net/net-snmp/net-snmp/perl/SNMP/SNMP.xs?view=log&pathrev=V5-3-patches#rev5.50.2.7 - bug reference http://sourceforge.net/tracker/?func=detail&atid=112694&aid=1533078&group_id=12694 Bump PKGREVISION to 2
2006-10-18Remove obsolete patches/patch-mib2cupdate: recently superseded byseb1-24/+0
patches/patch-et
2006-10-18Maintainer update of ipa to 2.0.1 and move to sysutils.markd14-460/+1
In PR pkg/32398 with some tweaks from me. IPA is now a flexible general purpose accounting system; - Supports static and dynamic rules; - Support limits, sublimits and thresholds; - Works with external accounting modules; - Works with external database modules; - Works with external statistics modules; -Accounting per specified period of a week.
2006-10-17Update the "libtorrent" package to version 0.10.3 and the "rtorrent"tron4-12/+12
package to version 0.6.3. Change since version 0.10.2 respectively 0.6.2: - Didn't properly clean up when a torrent with the same info hash was rejected. This caused random crashes and memory leaks. - Properly cancel pieces that are skipped when downloading.
2006-10-17Don't use .for with on-demand expanded variables that depend on antv1-5/+5
extracted source tree. That expands them at parse time, and without the source tree, causes all kinds of headaches in bmake, e.g. /usr/bin/awk: can't open file /export/SRC/netbsd/pkgsrc/net/samba/work.i386/samba-3.0.22/source/Makefile.in source line number 1 make: "/usr/bin/awk -F= '/^LIBMSRPC_MAJOR/ { print $2; }' /export/SRC/netbsd/pkgsrc/net/samba/work.i386/samba-3.0.22/source/Makefile.in" returned non-zero status Rewrite to use a shell loop.
2006-10-17Fixed creating libexec/cgi-bin as a regular file. Corrected PKGMANDIR.rillig1-1/+4
2006-10-17Fixed the install stage so that it is more likely to pass therillig4-19/+37
files-check: No backup copies of the Samba binaries are made. Before using ln -s, the destination file is removed. This is necessary for installing the package over an already-installed version.
2006-10-16Updated net/p5-POE-Component-SNMP to 1.07martti3-13/+13
* bug fixes
2006-10-16Fixed "test ==".seb12-4/+604
2006-10-16Update ipcheck to 0.233.obache2-9/+8
Patch provided by Martin Wilke via PR 34427. pkgsrc change: DOWNLOADED_DISTFILE is deprecated. - Changelog v0.233 updated domains list v0.232 removed a couple of debugging prints v0.231 recursivedns.com fix v0.230 Evan Carey WTG624 patch v0.229 David Bresson WRT56G patch v0.228 Gene Cumm patch v0.227 Added more domains v0.226 Gene Cumm Barricade fixes and SSL check improvement v0.225 Touchage = 0 means don't force update v0.224 Daniel Lauk SMC7004 patch v0.223 Nachum Kanovsky Alcatel Speedtouch patch v0.222 New domains ham-radio-op.net and servegame.org v0.221 Robert Holland Patch for Adtran Netvanta v0.220 Reinstate SMC Barricade logout patch v0.219 Linksys RT31P2 patch from Jason Anderson v0.218 fixed some host variables that were not initialized
2006-10-16Fixed "test ==".seb5-31/+151
While here remove obsolete patch files which had not been cvs removed until now.
2006-10-15Add devel/dev86 and net/libvncserverbouyer1-1/+2
2006-10-15Import libvncserver, provided by Pierrick Brossin in private mail:bouyer5-0/+59
LibVNCServer is ripped out of Xvnc to provide an easy API to write one's own vnc server.
2006-10-14Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev.wiz6-15/+14
2006-10-14Fixed "test ==" and a lot of pkglint warnings.rillig4-9/+51
2006-10-14Fixed "test ==".rillig5-5/+203
2006-10-13HOMEPAGE has been moved.obache1-2/+2
2006-10-12Fix test ==markd2-3/+12
2006-10-12Update to KDE 3.5.5markd10-510/+503
Changes: Version 0.12.3 of Kopete replaces 0.11.3 in KDE 3.5.5, it includes support for Adium themes, performance improvements and better support for the Yahoo!
2006-10-12Regenerate to fix some pkglint warnings.martti1-5/+4
2006-10-11Fixed "test ==".rillig2-1/+15
2006-10-11Removed an RCS Id.rillig2-9/+3
2006-10-11Fixed "test ==".rillig3-15/+49
2006-10-10Fixed "test ==".rillig2-1/+15
2006-10-09Fix build on DragonFly.joerg4-4/+131
2006-10-09Fix patch-ae to allow hobbitmon to be built on systems that use bash asben2-11/+10
/bin/sh. This addresses PR#32955
2006-10-09Flag a number of packages I use as supporting (user-)destdir.joerg1-1/+2
apg is a bit special as it has some hardcoded ownership, so mark that as "destdir".
2006-10-09Fix build on Linux. Replace link to -ldb with BDB_LIBS. Avoid automakeben3-2/+44
refresh. This addresses PR#33802
2006-10-09Update to 0.1.1.24. Changes:tv3-20/+6
Changes in version 0.1.1.24 - 2006-09-29 o Major bugfixes: - Allow really slow clients to not hang up five minutes into their directory downloads (suggested by Adam J. Richter). - Fix major performance regression from 0.1.0.x: instead of checking whether we have enough directory information every time we want to do something, only check when the directory information has changed. This should improve client CPU usage by 25-50%. - Don't crash if, after a server has been running for a while, it can't resolve its hostname. - When a client asks us to resolve (not connect to) an address, and we have a cached answer, give them the cached answer. Previously, we would give them no answer at all. o Minor bugfixes: - Allow Tor to start when RunAsDaemon is set but no logs are set. - Don't crash when the controller receives a third argument to an "extendcircuit" request. - Controller protocol fixes: fix encoding in "getinfo addr-mappings" response; fix error code when "getinfo dir/status/" fails. - Fix configure.in to not produce broken configure files with more recent versions of autoconf. Thanks to Clint for his auto* voodoo. - Fix security bug on NetBSD that could allow someone to force uninitialized RAM to be sent to a server's DNS resolver. This only affects NetBSD and other platforms that do not bounds-check tolower(). - Warn user when using libevent 1.1a or earlier with win32 or kqueue methods: these are known to be buggy. - If we're a directory mirror and we ask for "all" network status documents, we would discard status documents from authorities we don't recognize.
2006-10-08Update dnstop to 20060517.obache2-6/+6
Patch provided by Martin Wilke via PR 34425. - Changelog A few fixes for OS X. 1) select()ing on a pcap FD doesn't always work. Advice from tcpdump mailing list archive is to put it into non-blocking mode and ignore the select() return value. 2) Added $(LDFLAGS) to link command line in Makefile to have dnstop linked with specific libraries. LDFLAGS will be picked up from the environment. 3) OS X needs to #include <arpa/nameser_compat.h> 2006/04/24 Duane Wessels Adriaan Peeters reported that the list of known TLDs is out-of-date. In particular, the .EU domain is not in the list. 2005/04/05 Duane Wessels Mark Foster found a bug with the source+SLD list. It was being updated for 3RD-level domain names as well. Mark also suggested that the '@' key should display the source+SLD screen, just as '3' and '#' work for 3RD-level.
2006-10-08Update to version 3.5.5salo2-6/+6
Changes: - new settings cmd:parallel and cmd:queue-parallel to set number of jobs executed in parallel in non-interactive mode and in a queue. - new mirror option --skip-noaccess and setting mirror:skip-noaccess. - fixed a coredump when lftp was compiled with a non-gcc compiler. - fixed compilation when stdbool.h is missing. - fixed a failed assertion. - fixed coredump when doing `ls ..' on a http site. - fixed memory and file descriptor leak in mget/mput.
2006-10-07mrtg-2.14.5 dosen't contain ANNOUNCE file any more.taca1-2/+2
2006-10-07Update darkstat to 3.0.540.obache4-25/+66
Patch provided by MAINTAINER, Bartosz Kuzma via PR 34158. Changes from 3.0.524 to 3.0.540 - Fix build against old libpcap (thanks Claudio) - Fix build on AIX (thanks Andreas) - Fix build warnings on NetBSD (thanks Bartosz) - Deny writes to BPF socket (thanks Can) - Reverse-resolve IPs less aggressively. - Free up the DNS queue as we process it. - Fix dns_reply silliness. - Web: tweak the look of the top bar. - Web: update total packets and bytes as part of graph update. - Decode DLT_LINUX_SLL (ippp0 on Linux), patch courtesy of Ingo Bressler pkgsrc specific changes: - /var/empty has marked obsolete by etcupdate so I've changed chroot dir for darkstat to ${PREFIX}/share/darkstat/chroot. - patch-aa add support for DLT_PPP_SERIAL (for NetBSD only) and DLT_PPP devices.
2006-10-07Fixed the path to the manual pages.rillig3-6/+8
2006-10-07Fixed "test ==".rillig2-1/+15
2006-10-05Explicitly error out if inet6 support is not present or disabled.joerg1-1/+5
From PR 25674.
2006-10-05Fixed "test ==".rillig2-5/+14