summaryrefslogtreecommitdiff
path: root/net
AgeCommit message (Collapse)AuthorFilesLines
2009-03-16Update to openresolv-3.0roy4-18/+17
No functional changes since 2.x, but the configuration has moved from lots of little configuration files into one easier to manage configuration file with a nice man page - resolvconf.conf
2009-03-16Improve markup.joerg1-3/+3
2009-03-16Update libsoup24 to 2.26.0.jmcneill2-7/+8
Changes in libsoup from 2.25.91 to 2.26.0: * Temporarily disable libproxy support to work around a bug in its gnome plugin that causes gvfsd-http (and probably eventually other apps) to crash. [#571527]. For now, SoupProxyResolverGNOME uses only GConf. To be fixed in 2.26.1 * Fixed a bug that showed up in WebKit, where if many messages were queued all at once to a server that doesn't support persistent connections, some of the requests will get lost. #574365, reported by Xan Lopez. * Fixed SoupServer to support using SOUP_ENCODING_EOF, so you can stream responses of unknown length to HTTP/1.0 clients. [#572153]. Added a regression test for this, and for chunked and Content-Length-based streaming. * Fixed several bugs that prevented SoupCookieJarSqlite from working. [#572409, patch from Xan Lopez] * Added G_{BEGIN,END}_DECLS guards to public headers that were missing it. (Xan Lopez) * Misc gtk-doc improvements
2009-03-16Needs sqlite3jmcneill1-1/+2
2009-03-16Needs libproxyjmcneill1-1/+2
2009-03-16Update libsoup24 to 2.25.91.jmcneill6-23/+61
Changes in libsoup from 2.25.4 to 2.25.5: * Fixed a crash in SoupProxyResolverGNOME when the proxy requires authentication. (This does not make proxy authentication *work* yet, it just makes it not crash.) * Updated documentation Changes in libsoup from 2.25.4 to 2.25.5: * SoupProxyResolverGConf (which was incomplete) is gone, and libsoup-gnome now requires libproxy, which is now officially an external dependency of GNOME. * Fixed a bug in SoupCookieJar that was making it send "Cookie: (null)" when it had no cookies for a site, which confused some web servers (WebKit bug 23240). * Fixed a bug with using SOUP_MEMORY_TEMPORARY buffers and soup_message_body_set_accumulate(FALSE). (Part of WebKit bug 18343, noticed by Gustavo Noronha Silva.) * Fixed the build with non-gcc compilers Changes in libsoup from 2.25.3 to 2.25.4: * Added soup_session_get_feature() and soup_session_get_features(), to query the features currently available in a session (which is needed by the patch in https://bugs.webkit.org/show_bug.cgi?id=22624) Changes in libsoup from 2.25.2 to 2.25.3: * Fixed a crash when using both cookies and a proxy. [#562191, Mark Lee] * Fixed soup_form_decode() to correctly handle forms with URI-encoded parameter names [#563302, Evan Nemerson] and added a regression test. * Fixed a crash in SoupProxyResolverGConf. [#563145] Changes in libsoup from 2.25.1 to 2.25.2: * Fixed client behavior when presented with multiple auth types to choose the *strongest* auth type (eg, Digest) rather than the *weakest* one [#562339, Pontus Oldberg]. Added a regression test for this. * Moved libsoup-gnome headers to a different directory to make it easier to split libsoup and libsoup-gnome into separate packages, and to ensure that things that only want to be looking at plain libsoup headers (like gir-repository) don't accidentally see the libsoup-gnome ones. * Some minor doc fixes * Fixed libsoup-gnome linking with --as-needed. [#559342] Changes in libsoup from 2.24.1 to 2.25.1: libsoup 2.25.1 introduces a new library, libsoup-gnome, which will be used for features which are important to GNOME apps, but which require GNOME-specific libraries that non-GNOME apps may not want to add dependencies on. In 2.25.1, libsoup-gnome contains: * SOUP_TYPE_PROXY_RESOLVER_GNOME, a SoupSessionFeature type that can be added to a SoupSession to provide automatic proxy handling via the GConf proxy keys. (See below) The default implementation uses libproxy, which also handles WPAD, PAC, etc, but if libproxy is not available it will use GConf directly, supporting only the basic HTTP proxy functionality. * SoupCookieJarSqlite, a SoupSessionFeature that handles cookies and stores them in a Firefox 3-compatible sqlite file. (This is not actually a "GNOME-specific" feature, but I didn't want to make libsoup itself depend on sqlite, and I didn't want to make the dependency optional. This might change before 2.26.) * SOUP_TYPE_GNOME_FEATURES_2_26: a SoupSessionFeature type that can be added to a SoupSession to add all GNOME-integration features that are available for 2.26; as of 2.25.1, this is just the GNOME proxy resolver, but by 2.26.0 it may also include gnome-keyring support and possibly other features. Applications/libraries that are currently doing GConf proxy lookup by hand can be updated as follows: * Remove all of the existing code that listens to the GConf keys and sets SOUP_SESSION_PROXY_URI * Change the configure check to require "libsoup-gnome-2.4 >= 2.25.1" instead of "libsoup-2.4" * #include <libsoup/soup-gnome.h> * After creating your SoupSession, do: soup_session_add_feature_by_type (session, SOUP_TYPE_PROXY_RESOLVER_GNOME); (Or alternatively, use SOUP_SESSION_ADD_FEATURE_BY_TYPE with soup_session_async_new_with_options() or soup_session_sync_new_with_options().) Other new features and bug fixes in 2.25.1 include: * SoupCookieJarText, like SoupCookieJarSqlite, but using the old-style cookies.txt format, and in the base libsoup rather than libsoup-gnome. * Various bugfixes to SoupCookie and SoupCookieJar to fix the problems with cookies not working on certain sites. * The new SoupMultipart type provides support for multipart MIME bodies, and soup-form now includes several methods for generating and parsing multipart form data and file uploads. * SoupMessageHeaders now has methods for easy handling of the Content-Type, Content-Disposition, Range, and Content-Range headers. The Content-Disposition handling recognizes RFC2231-encoded UTF-8 filenames. * SoupServer now automatically handles partial GET requests; if your server returns SOUP_STATUS_OK in response to a partial GET, libsoup will automatically convert it to a SOUP_STATUS_PARTIAL_CONTENT response with only the requested portions. Thanks to Xan Lopez and Diego Escalante Urrelo for their work on SoupCookie, SoupCookieJar, SoupCookieJarText, and SoupCookieJarSqlite.
2009-03-15fix the asplain patch: since the routing registries currently won't findspz5-22/+73
asplained autnums, make asdot the default, but prepare for them switching by asking the asplained format before giving up, independently of any command line settings. Bump pkgrev, too.
2009-03-14Update to openresolv-2.1roy4-24/+16
No functional changes since 2.0.1 aside from moving the shell scripts out of etc and into libexec. The configuration files in etc/resolvconf/resolv.conf.d have been moved into resolvconf.
2009-03-12Update to 2.26.0:wiz3-11/+51
============== Version 2.26.0 ============== Updates, deprecations * Don't single include GTK+. Fixes bug #561233. * Use gtk_show_uri instead of gnome_help. * Use gtk_show_about_dialog instead of g_object_new. This fixes the missing icon and the un-Close-able about dialog. * Use g_ascii_strncasecmp instead of g_strncasecmp, which is deprecated. Fixes bug #560431. * Remove libgnome dependency. * Remove deprecated GTK+ symbols in gnome-netstatus. Fixes bug #562392. Patch by Maxim Ermilov. * Use gtk-about instead of gnome-stock-about for the about icon. Fixes bug #556013. Patch by Pacho Ramos. Fixes * Remove useless GtkLabels that were used for alignment (!) and marked for translation. This hopefully fixes #507251. * Make applet tooltip show device status. Fixes bug #166912. Patch by Pedro Villavicencio. * Remove an useless \n in the copyright, rename translator_credits to translator-credits. Fixes bug #300961 * Obey Fitt's law in the panel applet. Fixes bug #325141. Patch by Benjamin Otte. Doc Translators * Milo Casagrande (it) * Joan Duran (ca) * Rizitis (el) Translators * Vladimir Melo (pt_BR) * Khaled Hosny (ar) * Ihar Hrachyshka (be@latin) * Erdal Ronahi (ku) * Baris Cicek (tr) * Gil Forcada (ca) * Jorge Gonzalez (es) * Ivar Smolin (et) * Kjartan Maraas (nb) * César Veiga (pt_BR) * Andre Klapper (de) * Thierry Randrianiriana(mg) * Yair Hershkovitz (he) * Changwoo Ryu (ko) * Raivis Dejus (lv) * Zabeeh Khan (ps) * Ilkka Tuohela (fi) * Clytie Siddall (vi) * Chao-Hsiung Liao (zh_HK, zh_TW) * Theppitak Karoonboonyanan (th) * Alexander Shopov (bg) * Daniel Nylander (sv) * Inaki Larranaga Murgoitio (eu) * Wouter Bolsterlee (nl) * Gabor Kelemen (hu) * Tomasz Dominikowski (pl) * Gintautas Miliauskas (lt) * Krishnababu K (te) * Manoj Kumar Giri (or) * Lucas Lommer (cs) * Praveen Arimbrathodiyil (ml) * Milo Casagrande (it) * Claude Paroz (fr) * Philip Withnall (en_GB) * Reşat SABIQ (crh) * Adi Roiban (ro) * Sweta Kothari (gu) * Duarte Loreto (pt)
2009-03-12Make it build on DragonFly.hasso2-1/+18
2009-03-11Support systems where time_t is equivalent to "long long" orapb3-2/+19
"unsigned long long".
2009-03-10regen distinfo after editing comments in a patch fileapb1-2/+2
2009-03-10Some systems define ifnet.if_lastchange as struct timespec (withapb7-13/+225
a tv_nsec field measured in nanoseconds), while other systems define it as struct timeval (with a tv_usec field measured in microseconds). Add a configure test and conditional code in agent/mibgroup/mibII/interfaces.c.orig. This should fix PR 40990. Bump PKGREVISION to 2.
2009-03-10libfetch-2.23:joerg2-3/+6
Don't leak file descriptors when iterating local directories or checking local files for if-modified-since.
2009-03-09- updated to 0.11rhaen2-7/+7
ChangeLog: 0.11 Depend on Any::Moose instead of Moose 0.10 Releng fixes Use a predicate for has_config_file 0.09 Hash::Merge and Path::Class are now depended-upon only if you want cascading directory config
2009-03-08Update to aria2-1.2.0. Many, many changes (too verbose to list here);bjs5-74/+43
please see ChangeLog. NOTE: libares is no longer supported; libcares is used by default.
2009-03-08Use mk/omf-scrollkeeper.mk instead of textproc/rarian/omf.mk.wiz3-6/+6
2009-03-08Use ${REAL_ROOT_GROUP} instead of wheel. Prompted by joerg.wiz1-2/+2
2009-03-07Remove the net/p5-INET6 package, no packages in pkgsrc use it anymore.seb5-34/+3
Please note that the package net/p5-IO-Socket-INET6 provides exactly the same Perl 5 module, namely IO::Socket::INET6. Make the MAINTAINER of the now defunct package net/p5-INET6 the MAINTAINER of net/p5-IO-Socket-INET6. Approved by net/p5-INET6's MAINTAINER.
2009-03-07Bump PKGREVISION to 1.seb1-2/+3
Change dependency on the soon to be removed net/p5-INET6 to the identical net/p5-IO-Socket-INET6
2009-03-07Bump PKGREVISION to 2.seb2-4/+4
Change dependency on the soon to be removed net/p5-INET6 to the identical net/p5-IO-Socket-INET6
2009-03-07Use "wheel" as privileged group.wiz1-1/+3
Gets rid of dbus warnings about netdev, and "wheel" already gets many rights from policykit (says Jared). Bump PKGREVISION.
2009-03-06Update to 2.14.17:wiz4-11/+25
ORBit2-2.14.17 - bug fixes + fix glib single includes (Cosimo Cecchi) + various fixes for cross-compiling (Fridrich Strba) + do fewer DNS lookups in linc (Jules Colding) + fix compiler warnings (Kjartan) + threading fixes (Tor Lillqvist) + win32 portability fixes (Tor Lillqvist)
2009-03-06Use level instead of qual for signal strength reporting.jmcneill3-2/+17
2009-03-05Add dhcpcd-gtkroy1-1/+2
2009-03-05Import dhcpcd-gtk-0.3.0roy4-0/+34
dhcpcd-gtk is a Network Configurator that uses the GTK+ GUI toolkit. It sits in the systray and monitors dhcpcd via dhcpcd-dbus. The icon represents the state of the network and you can configure each interface / wireless ssid.
2009-03-05Add dhcpcd-dbusroy1-1/+2
2009-03-05Import dhcpcd-dbus-0.3.0roy4-0/+39
dhcpcd-dbus provides DBus bindings for dhcpcd. It also provides a DBus interface for wpa_supplicant if wpa_supplicant has been configured to use /var/run/wpa_supplicant as it's socket directory. This means that wpa_supplicant does not have to be built with DBus support.
2009-03-05Update to 3.1.2adrianp7-22/+20
Changes since 3.1.2rc1 * None. Changes since 3.1.2b1 * Fix handling of domain-search option to append "." as already done with 4.x. Changes since 3.1.1 * A double-dereference in dhclient transmission of DHCPDECLINEs was repaired. * Fix handling of -A and -a flags in dhcrelay; it was failing to expand packet size as needed to add relay agent options. * Corrected list of failover state values in dhcpd man page. * Fixed a bug that caused some request types to be logged incorrectly. * Fixed a coredump when adding a class via OMAPI. * Clients that sent a parameter request list containing the routers option before the subnet mask option were receiving only the latter. Fixed. * The server wasn't always sending the FQDN option when it should. * A partner-down failover server no longer emits 'peer holds all free leases' if it is able to newly-allocate one of the peer's leases. * A cosmetic bug in DHCPDECLINE processing was fixed which caused all successful DHCPDECLINEs to be logged as "not found" rather than "abandoned". * Some failover debugging #defines have been better defined and some high frequency messages moved to a deeper debugging symbol. * The CLTT parameter in failover is now only updated by client activity, and not by failover binding updates (taking on the peer's CLTT). * Failover BNDUPD messages are now discarded if they conflict with an update that has been trasnmitted, but not acknowledged. * A bug cleaning up unknown-xxx temporary option definitions was fixed. Changes since 3.1.1rc2 * None. Changes since 3.1.1rc1 * Changes in 4.0.x to common/options.c "pretty_domain()" (which turns wireformat rfc1035 into printable form for dhclient.leases) were pulled down. This addresses a bug where "option domain-search , ;" would appear in dhclient.leases. * Changes in 4.0.x to common/tables.c "option_dereference()" were pulled down. This addresses a bug where overlapping option code definitions in a config file may cause an attempt to free a NULL pointer. Changes since 3.1.1b1 * A memory leak when using omapi has been fixed.
2009-03-05Add dhcpcdroy1-1/+2
2009-03-05Import dhcpcd-4.99.14roy5-0/+66
dhcpcd is a small, bloat free DHCP client which includes these features * DHCP over firewire * User Class * SIP Servers * Domain Search * Classless Static Routes * IPv4LL aka APIPA aka Zeroconf * Node specific Client Identifiers * DHCP over Infiniband * Link carrier and interface addition/removal detection * Dynamic route management
2009-03-05Add !__MINT__ to the HAVE_SA_LEN testabs1-2/+3
2009-03-05Like Linux, MiNT wants _GNU_SOURCE (for strptime)abs1-3/+3
2009-03-05Remove PYBINMODULE. All it did was mark some packages as not availablejoerg1-2/+1
on some platforms that lacked shared library support in the past. The list hasn't been maintained at all and the gain is very limited, so just get rid of it.
2009-03-05Always define _REENTRANT to get gmtime_r prototype on Interix.joerg1-1/+4
2009-03-05Do not install initscripts. Unbreaks Linux build.wiz2-1/+14
From Aleksey Cheusov in PR 40283.
2009-03-03Rework detection of getifaddrs() code so that it precedes the AIX method assborrill4-41/+54
AIX method was being chosen in preference (on NetBSD 5.0 at least). This broke net and rpcclient, etc. as they failed to enumerate interfaces correctly.
2009-03-02+MAKE_JOBS_SAFE=noabs1-1/+2
2009-03-02Mark as not -j2 safe.wiz1-1/+2
2009-03-02DESTDIR supportjoerg3-5/+9
2009-03-01pkgsrc changes:sno3-28/+28
- Update to module version 0.12 Upstream changes: 0.12 Thu Feb 26 13:44:06 CET 2009 - Applied NetBSD compatibility patch (Thanks Havard Eidnes), fixes #39294 - Applied Win32 memory free compatibility patch (Thanks CPAN user SISYPHUS), maybe fixes #43110
2009-02-27Bump PKGREVISION for libevent ABI bump.wiz5-8/+10
2009-02-27Push the distfile into MASTER_SITE_LOCAL. It is GPL and mirrored anyway,joerg1-9/+2
so just avoid the trouble with the main site. Addresses PR 40767.
2009-02-26${CHOWN} the pid directory as well for chroot runningadrianp1-1/+2
2009-02-25Update to 3.0.0:wiz4-36/+7
2009/02/24: version 3.0.0 = tag release-3-0-0 6754: Fix local file access bug in internal http server - this is an urgent security related bug-fix and effects all MLDonkey versions >= 2.8.4 6752: Optimized implementation of the ip_set module (cbah) 6736: Add/fix some copyright texts
2009-02-25- Fix build problems on any platform, where perl isn't compiled using thesno3-2/+20
compiler provided in ${CC} according to RT #14372 - tell the "right" compiler to use on AIX when PKGSRC_COMPILER=xlc
2009-02-24Add patch fixing security problem from upstream.wiz3-2/+31
Bump PKGREVISION.
2009-02-24- Update to 1.3.0cube7-377/+42
- Drop maintainership - Fix a reference to /usr/pkg that was committed by accident in a file [hi joerg!] - Remove MESSAGE because it's about NetBSD 1.6 and older - Add USE_DESTDIR support 1.3.0: released 2005-08-03 - disable Van Jacobson compression by default [Pokrywka] - prototype packet buffering and reordering [Cameron/Anonymous] - comply with RFC2637 on echo wait and idle wait parameters [Brox] - new pptpd-logwtmp-strip-domain option [Cameron] - defer writes to pty until pppd has set it up properly [Cameron] - process initial packet length header properly [Beregszaszi] - ignore ENETDOWN and ENXIO on sendto in bcrelay [Cameron] - add section on debugging to pptpd.8 [Mueller] 1.2.3: released 2005-02-17 - error check critical dup2 calls [Cameron] - performance, use writev() if available, avoiding memcpy() [Sundberg] - compilation fix for gcc old versions [Cameron] 1.2.2: released 2005-01-05 - fix deadlock hang due to syslog(3) called by signal handler [Cameron] - turn off logging to stderr, to prevent loopback [Hall]
2009-02-24Changes SetPolicyType() in threadutil:obache3-8/+23
* From schedctl(8) of NetBSD-5-RC2, setting of priority for the process running at SCHED_OTHER policy is not allowed, so change to skip if SCHED_OTHER is specified. * Use sched_get_priority_min() instead of hard coded DEFAULT_SCHED_PARAM (= 0). * Ajust return code as the "Returns:" section in this function's comment. sched_setscheduler(3) return the previous policy if succeed, it may not be 0. Bump PKGREVISION.
2009-02-24Update delegate to 9.9.1. Notable changes include:rh2-8/+9
9.9.1 [STABLE] 2009/01/22 fixes and M17N extension 9.9.0 [STABLE] 2008/11/24 stable version 9.9.0 CAPSKEY and HTMUX 9.8.6 restriction (MITM, VSAP) and fixes (SSL, CFI, HTTP cache) 9.8.2 name based reverse proxy and NAT based transparent proxy 9.8.2 porting to Windows Mobile/CE, SSH/Telnet gateway 9.8.1 minor fixes and mail routing to MX 9.8.0 clustering of origin/proxy servers, SSL Server Name Indication Hopefully this fixes PR pkg/40441 as well.