pkgsrc/net
imil bda2f4dcb7 Updated py-apache-libcloud to 0.17.0
Changes with Apache Libcloud 0.17.0
General

    Use match_hostname function from backports.ssl_match_hostname package to verify the SSL certificate hostname instead of relying on our own logic. (GITHUB-374) [Alex Gaynor]

Compute

    GCE driver updated to include ex_stop_node() and ex_start_node() methods. (GITHUB-442) [Eric Johnson]
    GCE driver now raises ResourceNotFoundError when the specified image is not found in any image project. Previously, this would return None but now raises the not-found exception instead. This fixes a bug where returning None caused ex_delete_image to raise an AttributeError. (GITHUB-441) [Eric Johnson]
    GCE driver update to support JSON format Service Account files and a PY3 fix from Siim Põder for LIBCLOUD-627. (LIBCLOUD-627, LIBCLOUD-657, GITHUB-438) [Eric Johnson]
    GCE driver fixed for missing param on ex_add_access_config. (GITHUB-435) [Peter Mooshammer]
    GCE driver support for HTTP load-balancer resources. (LIBCLOUD-605, GITHUB-429) [Lee Verberne]
    GCE driver updated to make better use of GCEDiskTypes. (GITHUB-428) [Eric Johnson]
    GCE driver list_images() now returns all non-deprecated images by default. (LIBCLOUD-602, GITHUB-423) [Eric Johnson]
    Improve GCE API coverage for create_node(). (GITHUB-419) [Eric Johnson]
    GCE Licenses added to the GCE driver. (GITHUB-420) [Eric Johnson]
    GCE Projects support common instance metadata and usage export buckets. (GITHUB-409) [Eric Johnson]
    Improvements to TargetPool resource in GCE driver. (GITHUB-414) [Eric Johnson]
    Adding TargetInstances resource to GCE driver. (GITHUB-393) [Eric Johnson]
    Adding DiskTypes resource to GCE driver. (GITHUB-391) [Eric Johnson]
    Fix boot disk auto_delete in GCE driver. (GITHUB-412) [Igor Bogomazov]
    Add Routes to GCE driver. (GITHUB-410) [Eric Johnson]
    Add missing ubuntu-os-cloud images to the GCE driver. (LIBCLOUD-632, GITHUB-385) [Borja Martin]
    Add new us-east-2 and us-east-3 region to the Joyent driver. (GITHUB-386) [ZuluPro]
    Add missing t2. instance types to the us-west-1 region in the EC2 driver. (GITHUB-388) [Matt Lehman]
    Add option to expunge VM on destroy in CloudStack driver. (GITHUB-382) [Roeland Kuipers]
    Add extra attribute in list_images for CloudStack driver. (GITHUB-389) [Loic Lambiel]
    Add ex_security_group_ids argument to the create_node method in the EC2 driver. This way users can launch VPC nodes with security groups. (GITHUB-373) [Itxaka Serrano]
    Add description argument to GCE Network. (GITHUB-397) [Eric Johnson]
    GCE: Improve MachineType (size) coverage of GCE API. (GITHUB-396) [Eric Johnson]
    GCE: Improved Images coverage. (GITHUB-395) [Eric Johnson]
    GCE: Support for global IP addresses. (GITHUB-390, GITHUB-394) [Eric Johnson]
    GCE: Add missing snapshot attributes. (GITHUB-401) [Eric Johnson]
    AWS: Set proper disk size in c3.X instance types. (GITHUB-405) [Itxaka Serrano]
    Fix a bug with handling of the ex_keyname argument in the Softlayer driver. (GITHUB-416, LIBCLOUD-647) [Dustin Oberloh]
    Update CloudSigma region list (remove Las Vegas, NV region and add new San Jose, CA and Miami, FL region). (GITHUB-417) [Viktor Petersson]
    Add ex_get_node method to the Joyent driver. (GITHUB-421) [ZuluPro]
    Add support for placement group management to the EC2 driver. (GITHUB-418) [Mikhail Ovsyannikov]
    Add new tok02 region to the Softlayer driver. (GITHUB-436, LIBCLOUD-656) [Dustin Oberloh]
    Add new Honolulu, HI endpoint to the CloudSigma driver. (GITHUB-439) [Stephen D. Spencer]
    Fix a bug with config_drive attribute in the OpenStack driver. New versions of OpenStack now return a boolean and not a string. (GITHUB-433) [quilombo]
    Add support for Abiquo API v3.x, remove support for now obsolete API v2.x. (GITHUB-433, LIBCLOUD-652) [David Freedman]
    Allow rootdisksize parameter in create_node CloudStack driver (GITHUB-440, LIBCLOUD-658) [Loic Lambiel]

Storage

    Allow user to pass headers argument to the upload_object and upload_object_via_stream method.

    This way user can specify CORS headers with the drivers which support that. (GITHUB-403, GITHUB-404) [Peter Schmidt]

    Fix upload_object_via_stream so it works correctly under Python 3.x if user manually passes an iterator to the method.

    Also improve how reading a file in chunks works with drivers which support chunked encoding - always try to fill a chunk with CHUNK_SIZE bytes instead of directly streaming the chunk which iterator returns.

    Previously, if iterator returned 1 byte in one iteration, we would directly send this as a single chunk to the API. (GITHUB-408, LIBCLOUD-639) [Peter Schmidt]

Loadbalancer

    Updates to CloudStack driver. (GITHUB-434) [Jeroen de Korte]

DNS

    New driver for Softlayer DNS service. (GITHUB-413, LIBCLOUD-640) [Vanč Levstik]
    Fix a bug with ex_create_multi_value_record method in the Route53 driver only returning a single record. (GITHUB-431, LIBCLOUD-650) [Itxaka Serrano]

Changes with Apache Libcloud 0.16.0
General

    Add new OpenStackIdentity_3_0_Connection class for working with OpenStack Identity (Keystone) service API v3. [Tomaz Muraus]
    Add support for prettifying JSON or XML response body which is printed to a file like object when using LIBCLOUD_DEBUG environment variable. This option can be enabled by setting LIBCLOUD_DEBUG_PRETTY_PRINT_RESPONSE environment variable. [Tomaz Muraus]
    Add support for using an HTTP proxy for outgoing HTTP and HTTPS requests. [Tomaz Muraus, Philip Kershaw]

Compute

    Fix an issue with LIBCLOUD_DEBUG not working correctly with the Linode driver. [Tomaz Muraus, Juan Carlos Moreno] (LIBCLOUD-598, GITHUB-342)

    Add new driver for VMware vSphere (http://www.vmware.com/products/vsphere/) based clouds. [Tomaz Muraus]

    Add two new default node states - NodeState.SUSPENDED and NodeState.ERROR. [Tomaz Muraus]

    Fix to join networks properly in deploy_node in the CloudStack driver. (LIBCLOUD-593, GITUHB-336) [Atsushi Sasaki]

    Create CloudStackFirewallRule class and corresponding methods. (LIBCLOUD-594, GITHUB-337) [Atsushi Sasaki]

    Add support for SSD disks to Google Compute driver. (GITHUB-339) [Eric Johnson]

    Add utility get_regions and get_service_names methods to the OpenStackServiceCatalog class. [Andrew Mann, Tomaz Muraus]

    Fix a bug in ex_get_console_output in the EC2 driver which would cause an exception to be thrown if there was no console output for a particular node.

    Reported by Chris DeRamus. [Tomaz Muraus]

    Add ip_address parameter in CloudStack driver create_node method. (GITHUB-346) [Roeland Kuipers]

    Fix ParamikoSSHClient.run and deploy_node method to work correctly under Python 3. (GITHUB-347) [Eddy Reyes]

    Update OpenStack driver to map more node states to states recognized by Libcloud. [Chris DeRamus]

    Fix a bug with ex_metadata argument handling in the Google Compute Engine driver create_node method. (LIBCLOUD-544, GITHUB-349, GITHUB-353) [Raphael Theberge]

    Add SSH key pair management methods to the Softlayer driver. (GITHUB-321, GITHUB-354) [Itxaka Serrano]

    Correctly categorize node IP addresses into public and private when dealing with OpenStack floating IPs. [Andrew Mann]

    Add new t2 instance types to the EC2 driver. [Tomaz Muraus]

    Add support for Amazon GovCloud to the EC2 driver (us-gov-west-1 region). [Chris DeRamus]

    Allow user to pass "gp2" for "ex_volume_type" argument to the create_volume method in the EC2 driver.

    Reported by Xavier Barbosa. [Tomaz Muraus, Xavier Barbosa]

    Add new driver for ProfitBricks provider. (LIBCLOUD-589, GITHUB-352) [Matt Baldwin]

    Various improvements and bugs fixes in the GCE driver. For a list, see https://github.com/apache/libcloud/pull/360/commits (GITHUB-360) [Evgeny Egorochkin]

    Allow user to specify virtualization type when registering an EC2 image by passing virtualization_type argument to the ex_register_image method. (GITHUB-361) [Andy Grimm]

    Add ex_create_image method to the GCE driver. (GITHUB-358, LIBCLOUD-611) [Katriel Traum]

    Add some methods to CloudStack driver: create_volume_snapshot, list_snapshots, destroy_volume_snapshot create_snapshot_template, ex_list_os_types) (GITHUB-363, LIBCLOUD-616) [Oleg Suharev]

    Added VPC support and Egress Firewall rule support fo CloudStack (GITHUB-363) [Jeroen de Korte]

    Add additional attributes to the extra dictionary of OpenStack StorageVolume object. (GITHUB-366) [Gertjan Oude Lohuis]

    Fix create_volume method in the OpenStack driver to return a created volume object (instance of StorageVolume) on success, instead of a boolean indicating operation success. (GITHUB-365) [Gertjan Oude Lohuis]

    Add optional project parameters for ex_list_networks() to CloudStack driver (GITHUB-367, LIBCLOUD-615) [Rene Moser]

    CLOUDSTACK: option to start VM in a STOPPED state (GITHUB-368) [Roeland Kuipers]

    Support "config_drive" in the OpenStack driver. Allow users to pass ex_config_drive argument to the create_node and ex_rebuild_node method. (GITHUB-370) [Nirmal Ranganathan]

    Add support for service scopes to the create_node method in the GCE driver. (LIBCLOUD-578, GITHUB-373) [Eric Johnson]

    Update GCE driver to allow for authentication with internal metadata service. (LIBCLOUD-625, LIBCLOUD-276, GITHUB-276) [Eric Johnson]

    Fix a bug in Elasticstack node creation method where it would raise exceptions because of missing data in a response, and also fix pulling the IP from the proper data item. (GITHUB-325) [Michael Bennett]

    Fix a bug which prevented user to connect and instantiate multiple EC2 driver instances for different regions at the same time. (GITHUB-325) [Michael Bennett]

    Add methods in CloudStack driver to manage mutiple nics per vm. (GITHUB-369) [Roeland Kuipers]

    Implements VPC network ACLs for CloudStack driver. (GITHUB-371) [Jeroen de Korte]

Storage

    Fix a bug with CDN requests in the CloudFiles driver. [Tomaz Muraus]
    Fix a bug with not being able to specify meta_data / tags when uploading an object using Google Storage driver. (LIBCLOUD-612, GITHUB-356) [Stefan Friesel]

Loadbalancer

    Allow user to specify session affinity algorithm in the GCE driver by passing ex_session_affinity argument to the create_balancer method. (LIBCLOUD-595, GITHUB-341) [Lee Verberne, Eric Johnson]

DNS

    Various fixes in the Google DNS driver. (GITHUB-378) [Franck Cuny]

Changes with Apache Libcloud 0.15.1
Compute

    Allow user to limit a list of subnets which are returned by passing subnet_ids and filters argument to the ex_list_subnets method in the EC2 driver. (LIBCLOUD-571, GITHUB-306) [Lior Goikhburg]

    Allow user to limit a list of internet gateways which are returned by passing gateway_ids and filters argument to the ex_list_internet_gateways method in the EC2 driver. (LIBCLOUD-572, GITHUB-307) [Lior Goikhburg]

    Allow user to filter which nodes are returned by passing ex_filters argument to the list_nodes method in the EC2 driver. (LIBCLOUD-580, GITHUB-320) [Lior Goikhburg]

    Add network_association_id to ex_list_public_ips and CloudstackAddress object (GITHUB-327) [Roeland Kuipers]

    Allow user to specify admin password by passing ex_admin_pass argument to the create_node method in the Openstack driver. (GITHUB-315) [Marcus Devich]

    Fix a possible race condition in deploy_node which would occur if node is online and can be accessed via SSH, but the SSH key we want to use hasn't been installed yet.

    Previously, we would immediately throw if we can connect, but the SSH key hasn't been installed yet. (GITHUB-331) [David Gay]

    Propagate an exception in deploy_node method if user specified an invalid path to the private key file. Previously this exception was silently swallowed and ignored. [Tomaz Muraus]

DNS

    Include a better message in the exception which is thrown when a request in the Rackspace driver ends up in an ERROR state. [Tomaz Muraus]

Changes with Apache Libcloud 0.15.0
General

    Use lxml library (if available) for parsing XML. This should substantially reduce parsing time and memory usage for large XML responses (e.g. retrieving all the available images in the EC2 driver). [Andrew Mann]

    Use --head flag instead of -X HEAD when logging curl lines for HEAD requests in debug mode.

    Reported by Brian Metzler. (LIBCLOUD-552) [Tomaz Muraus]

    Fix Python 3 compatibility bugs in the following functions:
        import_key_pair_from_string in the EC2 driver
        publickey._to_md5_fingerprint
        publickey.get_pubkey_ssh2_fingerprint

    (GITHUB-301) [Csaba Hoch]

    Update CA_CERTS_PATH to also look for CA cert bundle which comes with openssl Homebrew formula on OS x (/usr/local/etc/openssl/cert.pem). (GITHUB-309) [Pedro Romano]

    Update Google drivers to allow simultaneous authornization for all the supported Google Services. (GITHUB-302) [Eric Johnson]

Compute

    Fix create_key_pair method which was not returning private key. (LIBCLOUD-566) [Sebastien Goasguen]

    Map "Stopped" node state in the CloudStack driver to NodeState.STOPPED instead of NodeState.TERMINATED, "Stopping" to NodeState.PENDING instead of NodeState.TERMINATED and "Expunging" to NodeState.PENDING instead of NodeState.TERMINATED. (GITHUB-246) [Chris DeRamus, Tomaz Muraus]

    Add ex_create_tags and ex_delete_tags method to the CloudStack driver. (LIBCLOUD-514, GITHUB-248) [Chris DeRamus]

    Add new G2 instances to the EC2 driver. [Tomaz Muraus]

    Add support for multiple API versions to the Eucalyptus driver and allows user to pass "api_version" argument to the driver constructor. (LIBCLOUD-516, GITHUB-249) [Chris DeRamus]

    Map "Powered Off" state in the vCloud driver from "TERMINATED" to "STOPPED". (GITHUB-251) [Ash Berlin]

    Add ex_rename_node method to the DigitalOcean driver. (GITHUB-252) [Rahul Ranjan]

    Improve error parsing in the DigitalOcean driver.

    Reported by Deni Bertovic. [Tomaz Muraus]

    Add extension methods for the VPC internet gateway management to the EC2 driver. (LIBCLOUD-525, GITHUB-255) [Chris DeRamus]

    Add CloudStackProject class to the CloudStack driver and add option to select project and disk offering on node creation. (LIBCLOUD-526, GITHUB-257) [Jim Divine]

    Fix IP address handling in the OpenStack driver. (LIBCLOUD-503, GITHUB-235) [Markos Gogoulos]

    Ad new ex_delete_image and ex_deprecate_image method to the GCE driver. (GITHUB-260) [Franck Cuny]

    Ad new ex_copy_image method to the GCE driver. (GITHUB-258) [Franck Cuny]

    Ad new ex_set_volume_auto_delete method to the GCE driver. (GITHUB-264) [Franck Cuny]

    Add ex_revoke_security_group_ingress method to the CloudStack driver. [Chris DeRamus, Tomaz Muraus]

    Allow user to pass ex_ebs_optimized argument to the create_node method in the EC2 driver. (GITHUB-272) [zerthimon]

    Add "deprecated" attribute to the Node object in the Google Compute Engine driver. (GITHUB-276) [Chris / bassdread]

    Update Softlayer driver to use "fullyQualifiedDomainName" instead of "hostname" attribute for the node name. (GITHUB-280) [RoelVanNyen]

    Allow user to specify target tags using target_tags attribute when creating a firewall rule in the GCE driver. (GITHUB-278) [zerthimon]

    Add new standard API for image management and initial implementation for the EC2 and Rackspace driver. (GITHUB-277) [Matt Lehman]

    Allow user to specify "displayname" attribute when creating a CloudStack node by passing "ex_displayname" argument to the method.

    Also allow "name" argument to be empty (None). This way CloudStack automatically uses Node's UUID for the name. (GITHUB-289) [Jeff Moody]

    Deprecate "key" argument in the SSHClient class in favor of new "key_files" argument.

    Also add a new "key_material" argument. This argument can contain raw string version of a private key.

    Note 1: "key_files" and "key_material" arguments are mutually exclusive. Note 2: "key_material" argument is not supported in the ShellOutSSHClient.

    Use node id attribute instead of the name for the "lconfig" label in the Linode driver. This way the label is never longer than 48 characters. (GITHUB-287) [earthgecko]

    Add a new driver for Outscale SAS and Outscale INC cloud (http://www.outscale.com). (GITHUB-285, GITHUB-293, LIBCLOUD-536, LIBCLOUD-553) [Benoit Canet]

    Add new driver for HP Public Cloud (Helion) available via Provider.HPCLOUD constant. [Tomaz Muraus]

    Allow user to specify availability zone when creating an OpenStack node by passing "ex_availability_zone" argument to the create_node method. Note: This will only work if the OpenStack installation is running availability zones extension. (GITHUB-295, LIBCLOUD-555) [syndicut]

    Allow user to pass filters to ex_list_networks method in the EC2 driver. (GITHUB-294) [zerthimon]

    Allow user to retrieve container images using ex_get_image method in the Google Compute Engine driver. (GITHUB-299, LIBCLOUD-562) [Magnus Andersson]

    Add new driver for Kili public cloud (http://kili.io/) [Tomaz Muraus]

    Add "timeout" argument to the ParamikoSSHClient.run method. If this argument is specified and the command passed to run method doesn't finish in the defined timeout, SSHCommandTimeoutError is throw and the connection to the remote server is closed.

    Note #1: If timed out happens, this functionality doesn't guarantee that the underlying command will be stopped / killed. The way it works it simply closes a connect to the remote server. [Tomaz Muraus]

    Note #2: "timeout" argument is only available in the Paramiko SSH client.

    Make "cidrs_ips" argument in the ex_authorize_security_group_egress method in the EC2 driver mandatory. (GITHUB-301) [Csaba Hoch]

    Add extension methods for managing floating IPs (ex_get_floating_ip, ex_create_floating_ip, ex_delete_floating_ip) to the Openstack 1.1 driver. (GITHUB-301) [Csaba Hoch]

    Fix bug in RimuHosting driver which caused driver not to work when the provider returned compressed (gzip'ed) response. (LIBCLOUD-569, GITHUB-303) [amastracci]

    Fix issue with overwriting the server memory values in the RimuHosting driver. (GUTHUB-308) [Dustin Oberloh]

    Add ex_all_tenants argument to the list_nodes method in the OpenStack driver. (GITHUB-312) [LIBCLOUD-575, Zak Estrada]

    Add support for network management for advanced zones (ex_list_network_offerings, ex_create_network, ex_delete_network) in the CloudStack driver. (GITHUB-316) [Roeland Kuipers]

    Add extension methods for routes and route table management to the EC2 driver (ex_list_route_tables, ex_create_route_table, ex_delete_route_table, ex_associate_route_table, ex_dissociate_route_table, ex_replace_route_table_association, ex_create_route, ex_delete_route, ex_replace_route) (LIBCLOUD-574, GITHUB-313) [Lior Goikhburg]

    Fix ex_list_snapshots for HP Helion OpenStack based driver. [Tomaz Muraus]

    Allow user to specify volume type and number of IOPS when creating a new volume in the EC2 driver by passing ex_volume_type and ex_iops argument to the create_volume method. [Tomaz Muraus]

    Fix ex_unpause_node method in the OpenStack driver. (GITHUB-317) [Pablo Orduña]

    Allow user to launch EC2 node in a specific VPC subnet by passing ex_subnet argument to the create_node method. (GITHUB-318) [Lior Goikhburg]

Storage

    Fix container name encoding in the iterate_container_objects and get_container_cdn_url method in the CloudFiles driver. Previously, those methods would throw an exception if user passed in a container name which contained a whitespace.

    Reported by Brian Metzler. (LIBCLOUD-552) [Tomaz MUraus]

    Fix a bug in the OpenStack Swift driver which prevented the driver to work with installations where region names in the service catalog weren't upper case. (LIBCLOUD-576, GITHUB-311) [Zak Estrada]

Load Balancer

    Add extension methods for policy managagement to the ELB driver. (LIBCLOUD-522, GITHUB-253) [Rahul Ranjan]

DNS

    Fix update_record method in the Route56 driver so it works correctly for records with multiple values. [Tomaz Muraus]
    Add ex_create_multi_value_record method to the Route53 driver which allows user to create a record with multiple values with a single call. [Tomaz Muraus]
    Add new driver for Google DNS. (GITHUB-269) [Franck Cuny]
2015-02-23 10:46:31 +00:00
..
3proxy
6tunnel Fixes: 2013-04-06 03:45:05 +00:00
adns recursive revbump due to net/adns update 1.4 to 1.5.0 2015-01-29 09:53:29 +00:00
aget Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
aiccu Remove example rc.d scripts from PLISTs. 2014-03-11 14:04:57 +00:00
airport2basestationconfig
airportbasestationconfig
airportmodemutility
amule Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
aoe-vblade
apollo
argus Update to argus 3.7 2014-11-30 10:09:09 +00:00
aria2 Update to 1.18.8 2014-12-31 01:38:11 +00:00
arp-scan updated net/arp-scan to 1.9 2015-01-03 14:44:36 +00:00
arpd
arping Update to 2.15 2015-01-28 00:27:43 +00:00
arpwatch Remove example rc.d scripts from PLISTs. 2014-03-11 14:04:57 +00:00
autonet Fix INIT_SYSTEM handling. 2014-05-06 14:54:51 +00:00
avahi Newer illumos has inotify and the inotify code needs FIONREAD 2015-01-07 13:55:45 +00:00
awhois
balance Sorry, the patch had the $Id: line in unchanging portion. Manually deleted, thanks joerg. 2015-02-11 12:00:01 +00:00
barnyard Bump PKGREVISION for mysql default change to 55. 2013-03-02 20:33:21 +00:00
batchftp Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
bftpd Update to 3.7. Notable changes: 2013-06-01 12:13:04 +00:00
bind99 Update bind99 to 9.9.6pl2 (BIND 9.9.6-P2). 2015-02-19 00:36:27 +00:00
bind910 Update bind910 to 9.10.1pl2 (BIND 9.10.1-P2). 2015-02-19 00:37:17 +00:00
bing
bird Restore inline support to working state. 2015-02-04 20:50:50 +00:00
bird6
bittornado Fix ``Please add a line "# used by foo/bar/Makefile" here.'' warnings. 2014-10-05 16:41:05 +00:00
bittornado-gui Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
bittorrent Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
bittorrent-gui Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
bmon Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
bounce SunOS needs -lsocket -lnsl. 2014-09-23 14:50:03 +00:00
bpalogin Remove example rc.d scripts from PLISTs. 2014-03-11 14:04:57 +00:00
bridged
bsddip Drop pointless pointer compare. 2014-03-06 15:44:21 +00:00
btget Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:17:32 +00:00
btpd Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:17:32 +00:00
bug-buddy Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
bwping SunOS needs -lnsl -lresolv. 2014-09-25 15:21:46 +00:00
cacti Fixes for: 2014-08-23 12:50:25 +00:00
cacti-spine change maintainer 2014-01-30 16:01:27 +00:00
calypso Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
cclive Revbump after updating boost 2014-11-07 19:39:24 +00:00
ccrtp Updated to 2.0.8. From ChangeLog: 2014-04-05 13:55:59 +00:00
cdpd 'For consistency, please add a trailing slash to "http://example.com".' 2013-04-06 12:08:38 +00:00
cftp
chimera bulk build wants openssl 2015-01-18 15:52:05 +00:00
chksniff Reset maintainer, domain no longer exists. 2013-03-28 23:59:03 +00:00
choparp Add USE_TOOLS+=nroff to packages which generate catman pages. 2013-09-12 11:15:12 +00:00
choqok Revbump after updating boost 2014-11-07 19:39:24 +00:00
chrony Remove example rc.d scripts from PLISTs. 2014-03-11 14:04:57 +00:00
cia PKGREVISION bumps for net/libpcap update. 2013-02-06 19:30:54 +00:00
cidr
cisco-mibs
citrix_ica DESTDIR support. 2013-05-07 15:14:46 +00:00
clisp-rawsock
clive Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
cmu-dhcpd
cntlm Remove example rc.d scripts from PLISTs. 2014-03-11 14:04:57 +00:00
coda Per maintainer's wishes, restrict OS support patches to platforms 2015-01-28 13:11:22 +00:00
coherence Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
coilmq Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
connect Update HOMEPAGE (was 'Server not found'). New MASTER_SITES are also 2014-12-21 08:14:11 +00:00
corebird Needs libtool. 2014-12-11 22:14:21 +00:00
corkscrew
couriertcpd Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:17:32 +00:00
csup Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:17:32 +00:00
dante Remove example rc.d scripts from PLISTs. 2014-03-11 14:04:57 +00:00
darkstat Update darkstat to 3.0.718. 2014-12-14 08:39:56 +00:00
DarwinStreamingServer Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
dc_gui2 Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
dcsharp Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
dctc Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
ddclient Add missing files to PLIST, use /bin/sh in place of unnecessary 2014-12-14 15:35:49 +00:00
delegate Remove example rc.d scripts from PLISTs. 2014-03-11 14:04:57 +00:00
dgd Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
dhcpcd Import dhcpcd-6.6.7 with the following changes: 2015-01-07 09:01:01 +00:00
dhcpcd-dbus
dhcpcd-gtk Fix distfile checksum, PR pkg/49552 2015-01-10 12:25:15 +00:00
dhcpcd-icons Fix distfile checksum, PR pkg/49552 2015-01-10 12:25:15 +00:00
dhcpcd-qt Fix distfile checksum, PR pkg/49552 2015-01-10 12:25:15 +00:00
dhcpd-pools Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
dhid SunOS needs -lsocket -lnsl. 2014-09-23 14:50:03 +00:00
dhisd SunOS needs -lsocket -lnsl. 2014-09-23 17:57:04 +00:00
djbdns Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
djbdns-run Based on feedback from joerg@ and riastradh@, don't save a persistent 2014-12-07 04:33:30 +00:00
dlint Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
dnscap PKGREVISION bumps for net/libpcap update. 2013-02-06 19:30:54 +00:00
dnscheck Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
dnsdoctor Refelect change of RUBY_SRCDIR. 2014-03-13 17:06:42 +00:00
dnsmasq Add a patch to unbreak building on Mac OS X. From Sevan Janiyan in 2015-01-17 13:52:12 +00:00
dnstop PKGREVISION bumps for net/libpcap update. 2013-02-06 19:30:54 +00:00
dnstracer Link network libs and always use the gethostbyname2 wrapper on SunOS 2014-02-26 18:17:39 +00:00
docsis
driftnet libungif is not relevant any longer since the GIF relevant patents 2014-05-31 15:56:26 +00:00
drill Update to version 1.6.17. 2014-11-21 09:26:24 +00:00
dtcp Bump PKGREVISION from default ruby version change. 2014-03-15 05:20:51 +00:00
dtcpclient Remove example rc.d scripts from PLISTs. 2014-03-11 14:04:57 +00:00
dtorrent Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:17:32 +00:00
dynipclient Remove example rc.d scripts from PLISTs. 2014-03-11 14:04:57 +00:00
echoping Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:17:32 +00:00
ed2k-gtk-gui Replace g_memmove with the real thing. 2014-09-10 12:22:44 +00:00
edonkey2k
ekiga Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
entropy Bump PKGREVISION for mysql default change to 55. 2013-03-02 20:33:21 +00:00
ether2dns Edited DESCR in the case of: 2013-04-07 20:49:31 +00:00
etherape Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
ettercap Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
ettercap-NG Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:17:32 +00:00
exabgp Update exabgp to version 3.4.7. 2015-02-19 12:23:52 +00:00
ez-ipupdate Remove example rc.d scripts from PLISTs. 2014-03-11 14:04:57 +00:00
fair-identd Reset maintainer for resigned developers. 2013-12-23 11:57:02 +00:00
fetch Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:17:32 +00:00
filezilla Update to 3.10.0.2: 2015-01-19 12:38:08 +00:00
firewalk PKGREVISION bumps for net/libpcap update. 2013-02-06 19:30:54 +00:00
flickcurl Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:17:32 +00:00
flodo PKGREVISION bumps for net/libpcap update. 2013-02-06 19:30:54 +00:00
flow-tools Bump applications PKGREVISIONs for python users that might be using 2014-05-17 16:10:41 +00:00
fmirror
fpdns Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
fping Update to fping 3.10. 2014-05-09 15:28:53 +00:00
fping6
freeDiameter SunOS requires -lsocket -lnsl. 2014-09-26 10:55:32 +00:00
freenet-tools Add socket libraries and inttypes on SunOS. Patch from Sebastian Wiedenroth. 2013-12-10 14:03:30 +00:00
freeradius fixes unusual usage of PLIST_SRC and MESSAGE_SRC. 2014-11-02 05:53:48 +00:00
freeradius2 Fixes unusual usage of MESSAGE_SRC. 2014-11-02 05:55:43 +00:00
freerdp Recursive revbump from audio/pulseaudio. 2015-02-21 23:35:38 +00:00
ftplibpp Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:17:32 +00:00
ftpproxy
gated Remove example rc.d scripts from PLISTs. 2014-03-11 14:04:57 +00:00
GeoIP Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
Geomyidae Remove example rc.d scripts from PLISTs. 2014-03-11 14:04:57 +00:00
get-flash-videos Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
get_iplayer Update get_iplayer to 2.91 2015-01-17 12:33:14 +00:00
gethost Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
gift Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
gift-fasttrack
gift-gnutella
gift-openft
giftcurs
gini
gitso Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
gkrellm-multiping Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
gkrellm-snmp Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
gkrellm-wireless Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
glib-networking Apply additional clang arguments with cwrappers too. 2014-11-29 00:47:35 +00:00
gnapfetch Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
gnet Fix HOMEPAGE. 2013-08-07 12:36:08 +00:00
gnet1
gnetcat makeinfo is required to build. 2014-06-03 07:11:52 +00:00
gnome-netstatus Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
gnome-nettool Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
gnome-vfs-smb Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:17:32 +00:00
gnugk Remove example rc.d scripts from PLISTs. 2014-03-11 14:04:57 +00:00
gofish Remove example rc.d scripts from PLISTs. 2014-03-11 14:04:57 +00:00
gopher
grilo Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
grilo-plugins Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
grilo-testui Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
grive Revbump after updating boost 2014-11-07 19:39:24 +00:00
gsnmp
gssdp Add upstream bug report URL. 2015-01-17 09:35:46 +00:00
gst-plugins0.10-mms
gst-plugins0.10-rtmp Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:17:32 +00:00
gst-plugins0.10-soup Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
gst-plugins1-libnice Update to 0.1.10: 2015-02-01 20:02:42 +00:00
gst-plugins1-mms Reset PKGREVISION for gst-plugins1* update to 1.4.0. 2014-08-08 21:31:06 +00:00
gst-plugins1-rtmp Reset PKGREVISION for gst-plugins1* update to 1.4.0. 2014-08-08 21:31:06 +00:00
gst-plugins1-soup Reset PKGREVISION for gst-plugins1* update to 1.4.0. 2014-08-08 21:31:06 +00:00
gst-rtsp-server Update to 1.4.5. All pkgsrc patches were integrated :-) 2015-01-03 18:09:30 +00:00
gt-itm Help finding libgb without implicit -L${PREFIX}/lib. 2014-12-11 22:14:50 +00:00
gtk-gnutella Fix build on SunOS (needs explicit -lsocket -lnsl -liconv). 2014-08-21 09:48:30 +00:00
gtk-vnc Recursive revbump from audio/pulseaudio. 2015-02-21 23:35:38 +00:00
gtk_wicontrol
gupnp doesn't directly need sqlite3; gets pulled in via libsoup24 bl3.mk 2015-02-22 20:14:08 +00:00
gupnp-av Update to 0.12.7: 2015-01-17 09:25:20 +00:00
gupnp-dlna Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
gupnp-igd Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
gupnp-tools Prepare patch-aa for upstreaming. 2015-01-20 10:28:52 +00:00
haproxy 2014/11/26 : 1.5.9 2014-11-30 15:51:15 +00:00
hesiod
hf6to4
hlfl Remove "Trailing empty lines." and/or "Trailing white-space." 2013-04-08 11:17:08 +00:00
host Remove SunOS BUILDLINK_TRANSFORM instances which remove -Wl,--* GNU ld 2014-08-28 10:58:18 +00:00
howl Remove example rc.d scripts from PLISTs. 2014-03-11 14:04:57 +00:00
hping Fix build on SunOS 2013-10-21 09:01:20 +00:00
hping3 Revbump after updating tcl/tk. 2014-01-11 14:42:00 +00:00
hs-network Bump PKGREVISION for hs-text-1.2.0.3 2014-12-12 22:55:24 +00:00
httping Update 2.3.3 to 2.3.4 2015-01-29 02:27:39 +00:00
httptunnel
iana-etc
icinga-base Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
icsi-finger Fix Solaris detection; should fix Solaris build. 2014-09-11 21:27:09 +00:00
iftop Fix build under Solaris (10 i86pc with GCC 4.5). 2013-03-30 22:28:55 +00:00
IglooFTP
inadyn Remove example rc.d scripts from PLISTs. 2014-03-11 14:04:57 +00:00
iodine Update to 0.7.0, fixing a security issue. 2014-06-26 18:54:09 +00:00
ipcalc Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
ipcheck Bump applications PKGREVISIONs for python users that might be using 2014-05-17 16:10:41 +00:00
iperf Apply patch from upstream's issue 38 to prevent iperf from using 100% CPU 2014-11-28 10:30:52 +00:00
iperf3 If NetBSD has TCP_INFO, display number of retransmits and the 2015-02-07 17:11:23 +00:00
ipgrab Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
iplog Remove example rc.d scripts from PLISTs. 2014-03-11 14:04:57 +00:00
ipv6calc Update ipv6calc to 0.94.1, patches by Sebastian Wiedenroth. 2013-10-21 09:22:43 +00:00
ipw Remove dead home page URL. 2014-07-27 08:38:33 +00:00
irrd Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
irrtoolset5 Be consistent about rslparse. 2013-08-31 08:44:49 +00:00
isc-dhclient4 Update isc-dhcp4 and related packages to 4.3.1. 2014-10-14 13:53:00 +00:00
isc-dhcp4 Make this cross-compile again. 2015-02-14 04:44:43 +00:00
isc-dhcpd4 Update isc-dhcp4 and related packages to 4.3.1. 2014-10-14 13:53:00 +00:00
isc-dhcrelay4 Update isc-dhcp4 and related packages to 4.3.1. 2014-10-14 13:53:00 +00:00
ishell Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
isic
istgt bulk build wants openssl 2015-01-18 15:52:05 +00:00
jftpgw Remove example rc.d scripts from PLISTs. 2014-03-11 14:04:57 +00:00
jigdo Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
jumpgate
jwhois
kdenetwork-filesharing Update to KDE SC 4.14.3 2014-11-13 11:50:26 +00:00
kdenetwork-strigi-analyzers Update to KDE SC 4.14.3 2014-11-13 11:50:26 +00:00
kdenetwork3 Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kftpgrabber Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kget Explicitly disable Nepomuk. 2014-11-30 03:11:12 +00:00
kiax recursive bump for libmng-2.0.2 shlib major bump and dependency change 2013-10-09 17:39:01 +00:00
kismet Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
kmldonkey Revbump after updating boost 2014-11-07 19:39:24 +00:00
kmldonkey-kde3 Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
knock PKGREVISION bumps for net/libpcap update. 2013-02-06 19:30:54 +00:00
knot bulk build wants zlib 2015-01-18 16:00:02 +00:00
kopete Add libotr support. Bump PKGREVISION. 2014-11-30 03:14:45 +00:00
kphone Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:17:32 +00:00
kppp Update to KDE SC 4.14.3 2014-11-13 11:50:26 +00:00
krdc Update to KDE SC 4.14.3 2014-11-13 11:50:26 +00:00
krfb Update to KDE SC 4.14.3 2014-11-13 11:50:26 +00:00
ktorrent Update ktorrent to version 4.3.1 2014-11-17 20:02:20 +00:00
ktorrent-kde3 Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
LaBrea PKGREVISION bumps for net/libpcap update. 2013-02-06 19:30:54 +00:00
lambdamoo Link explicitly against libm. 2013-11-06 13:31:38 +00:00
lambdamoo-core
lambdamoo-doc
latd Fix const use. 2014-08-13 22:35:29 +00:00
ldns Update to version 1.6.17. 2014-11-21 09:19:32 +00:00
lft PKGREVISION bumps for net/libpcap update. 2013-02-06 19:30:54 +00:00
lftp Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
libares
libasyncns
libbind I have no idea why I was maintaining this package. 2014-10-03 11:51:54 +00:00
libcares Don't play games with CFLAGS/CPPFLAGS and munging -isystem, fixes SunOS. 2013-12-13 10:42:57 +00:00
libcmis Bump BUILDLINK_API_DEPENDS. 2015-02-04 18:33:38 +00:00
libdlna Switch to ffmpeg1 instead of ffmpeg. 2014-08-11 23:09:44 +00:00
libdmapsharing Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
libdmapsharing3 Rename libgee to libgee0.6 2014-10-25 19:00:14 +00:00
libdnet
libexosip updated devel/libosip and net/libexosip to 4.1.0 each. 2014-07-12 16:48:26 +00:00
libfetch Ensure we do not try to regenerate the catpage. Fixes occasional timing 2014-08-28 10:46:24 +00:00
libgdata Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
libIDL Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
libktorrent Update libktorrent to version 1.3.1 2014-11-17 19:59:40 +00:00
liblive Update to 20141211. Set LICENSE. 2014-12-13 09:20:02 +00:00
libmms Update to 0.6.4: 2014-04-17 11:15:09 +00:00
libnice Update to 0.1.10: 2015-02-01 20:02:42 +00:00
libnids Symbols for inline functions are not exported when built with clang. 2015-01-26 15:52:18 +00:00
libnipper Add a number of includes hidden by libstdc++'s name space pollution. 2013-04-29 21:31:09 +00:00
libpcap Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
libquvi Revbump after lang/lua51 update. 2014-10-19 22:27:43 +00:00
libquvi-scripts Update to 0.4.21: 2013-12-05 23:31:35 +00:00
libradius Define int types and fix "'struct sockaddr_in' has no member named 'sin_len'" on SunOS 2014-02-24 12:43:11 +00:00
libsoup24 Update to 2.48.1. shlib not bumped despite the interesting changelog 2015-01-17 09:20:54 +00:00
libsscript Reset maintainer for resigned developers. 2013-12-23 11:57:02 +00:00
libtorrent Attempt to fix build problems of "rtorretn" on 32bit platforms like 2014-11-04 08:36:17 +00:00
libtrace Requires USE_TOOLS+=yacc. 2014-09-06 07:40:00 +00:00
libupnp add a workaround for install(1) from GNU coreutils, PR pkg/48685. 2014-03-28 05:51:13 +00:00
libvncserver Recursive PKGREVISION bump for libgcrypt-1.6.0 shlib major bump. 2014-01-01 11:52:02 +00:00
libzrtpcpp Bumping BUILDLINK_ABI_DEPENDS.libzrtpcpp. 2014-04-07 05:34:23 +00:00
linc Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:17:32 +00:00
lldpd Update 0.7.12 to 0.7.13 2015-01-15 13:54:40 +00:00
llnlxdir
llnlxftp Fix return types. 2013-03-02 17:59:40 +00:00
logjam Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
lopster
lua-socket Revbump after lang/lua51 update. 2014-10-19 22:27:43 +00:00
maradns
mbrowse Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
mcast-tools
md-whois Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
mDNSResponder Fix build under OpenBSD/amd64 5.5 2014-05-12 15:06:55 +00:00
mDNSResponder-nss
microdc2 * .include "../../devel/readline/buildlink3.mk" with USE_GNU_READLINE=yes 2013-07-15 02:02:17 +00:00
mikutter Update mikutter to 3.2.2. 2015-01-12 12:03:47 +00:00
mimms (pkgsrc) 2015-01-29 02:46:25 +00:00
miniupnpd Changes 1.9.20141209: 2015-02-11 14:36:21 +00:00
mirall Fix typo in COMMENT. 2014-12-31 08:41:43 +00:00
miredo client-hook isn't an rc.d script, and the binary doesn't look for it in 2014-05-06 14:59:18 +00:00
mirror Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
mitmproxy Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
mldonkey Revbump associated with update of lang/ocaml. 2015-01-20 14:24:34 +00:00
mldonkey-gui Revbump associated with update of lang/ocaml. 2015-01-20 14:24:34 +00:00
modpcap Add socket libraries on SunOS. Patch from Sebastian Wiedenroth. 2013-12-10 14:01:49 +00:00
mono-nat Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
monotorrent Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
monsoon Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
mosh Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
mouse-pppoe Fixes: 2013-04-06 03:45:05 +00:00
mping Fix build on SunOS. Patches from Sebastian Wiedenroth. 2013-12-10 13:59:16 +00:00
mppe-lkm Mark this unavailable on NetBSD 6.0+ until such time as someone ports 2013-06-01 22:42:49 +00:00
mrstat
mrt Don't use IP_PKTINFO on NetBSD. 2013-08-30 22:39:27 +00:00
mrtg Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
msdl Fix inline use. 2012-12-25 21:03:36 +00:00
mtftpd
mtr Remove now unnecessary glib option. Ride update. 2014-12-14 15:57:44 +00:00
mydns-mysql Remove example rc.d scripts from PLISTs. 2014-03-11 14:04:57 +00:00
mydns-pgsql Bump PostgreSQL default version to 9.3. 2014-06-10 14:21:37 +00:00
nagios-base Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
nagios-nrpe Update to 2.15. 2014-10-30 13:17:57 +00:00
nagios-nsca Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
nagios-plugin-dnsrbl Add net/nagios-plugin-dnsrbl, a simple nagios plugin written in C to check 2015-01-07 05:02:37 +00:00
nagios-plugin-dotpid This Nagios plugin cheks that /var/run/*.pid belongs to alive processes 2014-02-05 09:31:47 +00:00
nagios-plugin-dumpdates Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2013-01-27 09:05:10 +00:00
nagios-plugin-fstab Adding net/nagios-plugin-fstab version 0.1 2014-04-26 15:55:12 +00:00
nagios-plugin-ldap Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:17:32 +00:00
nagios-plugin-milter milter monitoring pluging for nagios 2013-10-01 03:37:15 +00:00
nagios-plugin-mysql Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:17:32 +00:00
nagios-plugin-pgsql Bump PostgreSQL default version to 9.3. 2014-06-10 14:21:37 +00:00
nagios-plugin-radius Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
nagios-plugin-raidctl Fix permission for setuid binary 2014-10-14 13:27:45 +00:00
nagios-plugin-snmp Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
nagios-plugin-spamd Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
nagios-plugin-syncrepl This Nagios plugin monitors LDAP replication 2014-07-22 12:52:53 +00:00
nagios-plugins Depends on bind910 instead of old bind96. 2015-02-19 14:45:03 +00:00
nagstamon Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
nam Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
nap Link network libs on SunOS 2014-02-22 14:08:58 +00:00
napshare
nasd Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
nbtscan Add distfile patch: 2014-11-23 00:05:30 +00:00
ncftp3 Update to 3.2.5 2013-06-16 07:37:45 +00:00
nemesis PKGREVISION bumps for net/libpcap update. 2013-02-06 19:30:54 +00:00
net-snmp Fix buiding py-netsnmp 2015-01-09 14:00:00 +00:00
net6 Remove patch-encrypt.cpp, removed from distinfo during 1.3.14 update. 2015-02-05 08:06:22 +00:00
netatalk22 Fix PKGNAME. Now this works. 2014-09-08 16:02:35 +00:00
netatalk30 Fix an fd leak when using appledouble = v2 - from upstream. 2014-06-28 04:41:55 +00:00
netbsd-iscsi-initiator 'You can use "foo" instead of "${WRKSRC}/foo".' 2013-04-06 15:46:33 +00:00
netbsd-iscsi-target 'You can use "foo" instead of "${WRKSRC}/foo".' 2013-04-06 15:46:33 +00:00
netcat Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
netcat-openbsd Do not set FETCH_USING, should not be set in a package Makefile. 2014-01-27 18:41:11 +00:00
netcat6 Hand in maintainership. 2013-04-13 07:55:01 +00:00
netdisco Retire Apache 1.3 and 2.0. 2014-06-10 15:22:13 +00:00
netgroup
netname Revert previous: already fixed in patch-aa 2013-03-14 14:20:58 +00:00
netpipes
nfdump Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
ngrep Fix build with GNU Make 4.0 and newer. 2014-01-14 22:43:19 +00:00
nicotine Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
nicovideo-dl Bump applications PKGREVISIONs for python users that might be using 2014-05-17 16:10:41 +00:00
nidentd Fixes: 2013-04-06 03:45:05 +00:00
nipper
nload Need stdlib for free() 2014-02-24 12:45:44 +00:00
nmap Revbump after lang/lua51 update. 2014-10-19 22:27:43 +00:00
nocol Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
nprobe
ns Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
nsd 4.1.1 2015-02-05 07:06:04 +00:00
nslint
nstx
ntop Bump applications PKGREVISIONs for python users that might be using 2014-05-17 16:10:41 +00:00
ntp4 Create minimum services files on chroot environment as recent 2014-12-27 02:48:27 +00:00
ocaml-ipaddr Updated net/ocaml-ipaddr to version 2.5.0. Changes include: 2015-01-20 16:31:26 +00:00
ocamlnet Updated package to latest version, 3.7.7. The only change is: 2015-02-11 13:25:25 +00:00
ocsinventory-agent Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
ocsync Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
oidentd document NOT_FOR_PLATFORM 2015-01-04 03:41:59 +00:00
oinkmaster Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
omniNotify
omniORB Ensure we set rpath in SunOS build, fixes check-shlibs. 2014-07-25 16:23:35 +00:00
openag prevent hidden dependency on curl, instead of wget, using wget as a tool. 2014-02-15 03:21:43 +00:00
openh323 Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:17:32 +00:00
openntpd Put back implementation of MASTER_SITE_OPENBSD. 2015-02-16 11:03:20 +00:00
openresolv Import openresolv-3.5.7 with the following change: 2014-04-30 09:11:47 +00:00
openslp Remove pkg_views support, second part: infrastructure. 2014-12-30 15:13:19 +00:00
openvmps Remove example rc.d scripts from PLISTs. 2014-03-11 14:04:57 +00:00
openvpn Update to 2.3.6: 2014-12-03 10:09:01 +00:00
openvpn-acct-wtmpx Update checksums for openvpn update. 2014-12-03 10:09:33 +00:00
openvpn-nagios bulk build wants openssl 2015-01-18 16:01:37 +00:00
openwbem Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
ORBit Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
ORBit2 Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
ortp
overnet
p5-Cisco-Abbrev Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-Danga-Socket Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-Data-Stream-Bulk Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-DNS-LDNS bulk build wants openssl 2015-01-18 16:01:37 +00:00
p5-DNS-ZoneParse Remove SVR4_PKGNAME, per discussion on tech-pkg. 2014-10-09 13:44:32 +00:00
p5-eBay-API Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-File-RsyncP Import p5-File-RsyncP-0.74 as net/p5-File-RsyncP. 2015-02-05 16:49:13 +00:00
p5-FusionInventory-Agent Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-FusionInventory-Agent-Task-Network Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-gcap Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-Geo-IP Update 1.40 to 1.45 2015-01-29 04:48:03 +00:00
p5-Geo-IPfree Update 1.132870 to 1.143630 2015-02-20 07:15:29 +00:00
p5-grake Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-IO-Interface Remove SVR4_PKGNAME, per discussion on tech-pkg. 2014-10-09 13:44:32 +00:00
p5-IO-Socket-INET6 Update to 2.72: 2014-09-06 12:11:14 +00:00
p5-IO-Socket-Multicast Remove SVR4_PKGNAME, per discussion on tech-pkg. 2014-10-09 13:44:32 +00:00
p5-IP-Country Update to 2.28 2015-02-20 07:08:51 +00:00
p5-Net Update 1.27 to 3.05 2015-02-20 07:37:23 +00:00
p5-Net-Akismet Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-Net-Amazon Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-Net-Amazon-S3 (pkgsrc) 2015-02-20 14:26:18 +00:00
p5-Net-AMQP Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-Net-Bind Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-Net-Bonjour Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Net-CIDR-Lite Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Net-CIDR-Set Update 0.11 to 0.13 2015-02-20 14:53:53 +00:00
p5-Net-Daemon Remove SVR4_PKGNAME, per discussion on tech-pkg. 2014-10-09 13:44:32 +00:00
p5-Net-DBus Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Net-Dev-MIBLoadOrder Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-Net-DHCP Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-Net-DNS Update to 0.82: 2015-01-21 21:42:21 +00:00
p5-Net-DNS-Resolver-Programmable Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Net-DNS-Zone-Parser Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-Net-DNSServer Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-Net-Domain-TLD Update to 1.73: 2015-02-08 14:14:43 +00:00
p5-Net-eBay Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-Net-Frame Update 1.07 to 1.15 2015-02-20 15:44:08 +00:00
p5-Net-Frame-Dump Update 1.09 to 1.14 2015-02-21 09:47:01 +00:00
p5-Net-Frame-Layer-IPv6 Update 1.03 to 1.07 2015-02-21 11:34:04 +00:00
p5-Net-Frame-Simple Update 1.04 to 1.06 2015-02-21 11:32:02 +00:00
p5-Net-FTPSSL Update 0.22 to 0.26 2015-02-20 15:00:09 +00:00
p5-Net-GitHub Update 0.68 to 0.72 2015-02-21 11:37:52 +00:00
p5-Net-Gnats (pkgsrc) 2015-02-21 12:27:59 +00:00
p5-Net-Google Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-Net-Google-AuthSub Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-Net-Google-Code Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-Net-Ident Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Net-INET6Glue (pkgsrc) 2015-02-21 12:38:15 +00:00
p5-Net-Interface Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Net-IP Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Net-IPv4Addr Revert the MASTER_SITES line, which accidentally untabified. 2015-02-20 15:50:58 +00:00
p5-Net-IPv6Addr Add HOMEPAGE. Swap Paragraph 2 and 3 to follow Makefile-example. 2015-02-20 15:56:23 +00:00
p5-Net-Jifty Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-Net-LDAP-Server Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-Net-Libdnet Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-Net-Libdnet6 Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-Net-LibIDN Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Net-MAC Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-Net-NBName Remove SVR4_PKGNAME, per discussion on tech-pkg. 2014-10-09 13:44:32 +00:00
p5-Net-OAuth Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Net-OpenID-Consumer Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-Net-Packet Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Net-Pcap (pkgsrc) 2015-02-21 09:43:54 +00:00
p5-Net-RabbitFoot Replace HOMEPAGE and MASTER_SITES with appropriate one. 2014-06-02 12:38:27 +00:00
p5-Net-RawIP Remove SVR4_PKGNAME, per discussion on tech-pkg. 2014-10-09 13:44:32 +00:00
p5-Net-Server Remove SVR4_PKGNAME, per discussion on tech-pkg. 2014-10-09 13:44:32 +00:00
p5-Net-Server-Coro Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-Net-Server-SS-PreFork Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-Net-SMTP-TLS Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-Net-SNMP Remove SVR4_PKGNAME, per discussion on tech-pkg. 2014-10-09 13:44:32 +00:00
p5-Net-SNMP-Mixin Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-Net-SSH-Expect Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Net-Telnet Remove SVR4_PKGNAME, per discussion on tech-pkg. 2014-10-09 13:44:32 +00:00
p5-Net-Telnet-Cisco Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-Net-TFTP Remove SVR4_PKGNAME, per discussion on tech-pkg. 2014-10-09 13:44:32 +00:00
p5-Net-Trac Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-Net-Twitter Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-Net-Write Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-Net-XMPP Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-Net-XWhois Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-Net-Z3950-ZOOM Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-NetAddr-IP Remove SVR4_PKGNAME, per discussion on tech-pkg. 2014-10-09 13:44:32 +00:00
p5-NetPacket Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Nmap-Parser Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-POE-Component-Client-DNS Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-POE-Component-Client-Ident Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-POE-Component-SNMP Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-RADIUS Remove SVR4_PKGNAME, per discussion on tech-pkg. 2014-10-09 13:44:32 +00:00
p5-RadiusPerl Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-Regexp-Common-net-CIDR Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-Regexp-IPv6 Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-RPC-XML use base claims to be able to find the named parent module even 2014-07-31 19:53:38 +00:00
p5-RT-Client-REST Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-SNMP-Info Remove SVR4_PKGNAME, per discussion on tech-pkg. 2014-10-09 13:44:32 +00:00
p5-SNMP-MIB-Compiler Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-SNMP_Session Remove SVR4_PKGNAME, per discussion on tech-pkg. 2014-10-09 13:44:32 +00:00
p5-SOAP-Lite Remove p5-constant. Included in perl since 5.004, and current CPAN version 2015-01-31 12:19:55 +00:00
p5-Socket6 Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Test-DNS Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-Test-TCP Update to 2.06 2014-11-06 07:31:00 +00:00
p5-umph Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-Umph-Prompt Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-WebService-Google-Reader Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-WebService-MusicBrainz Import p5-WebService-MusicBrainz-0.93 as net/p5-WebService-MusicBrainz. 2015-01-04 11:57:35 +00:00
p5-X500-DN Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-Zabbix-Sender Add p5-Zabbix-Sender, a pure perl module implementing zabbix-sender. 2014-08-07 14:00:40 +00:00
packit PKGREVISION bumps for net/libpcap update. 2013-02-06 19:30:54 +00:00
paris-traceroute Fix build on SunOS (needs -lsocket -lnsl and strings.h for bzero()). 2014-09-25 16:08:24 +00:00
parpd Remove example rc.d scripts from PLISTs. 2014-03-11 14:04:57 +00:00
partysip Link network libs on SunOS 2014-02-22 14:08:58 +00:00
pchar Fix "abs(int) is ambiguous" and make sure _XOPEN_SOURCE and __EXTENSIONS__ are not both defined 2014-02-24 12:49:56 +00:00
pconsole Update MASTER_SITES, HOMEPAGE. Add gnu-gpl-v2 LICENSE 2015-02-20 05:45:05 +00:00
pear-Net_DIME
pear-Net_IDNA2
pear-Net_LDAP2 Update to 2.1.0 2014-07-19 02:50:41 +00:00
pear-Net_Sieve Update pear-Net_Sieve to 1.3.4. 2015-02-01 16:42:01 +00:00
pear-Net_SMTP Update pear-Net_SMTP to 1.6.2 2013-07-12 00:10:04 +00:00
pear-Net_Socket Changes 1.0.14: 2014-07-23 14:06:10 +00:00
pear-Net_URL
pear-Net_URL2 Import pear-Net_URL2-2.0.8 as net/pear-Net_URL2. 2014-10-08 09:51:28 +00:00
pear-SOAP
pen Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:17:32 +00:00
perlbal Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
pfnet Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
php-ftp Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:17:32 +00:00
php-geoip
php-snmp
php-soap
php-sockets Use -D_XOPEN_SOURCE=500 on SunOS for msghdr extensions. 2014-01-22 12:26:11 +00:00
php-xmlrpc Bump PKGREVISION for php53-xmlrpc update. It also bump php54-xmlrpc and 2014-10-23 16:20:38 +00:00
php-yaz Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
pim6dd Use socklen_t. Don't bail out on K&R promotion warnings for clang. 2013-09-10 14:36:37 +00:00
pim6sd Include stdlib.h for newer yacc 2015-02-10 19:28:29 +00:00
pload Teach the configure script to recognize a bunch more OSes, and remove 2015-01-04 03:57:30 +00:00
podcastdl Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:17:32 +00:00
poink Link network libs on SunOS 2014-02-22 14:16:06 +00:00
polsms Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:17:32 +00:00
poptop Remove example rc.d scripts from PLISTs. 2014-03-11 14:04:57 +00:00
portmap Remove example rc.d scripts from PLISTs. 2014-03-11 14:04:57 +00:00
powerdns Include <machine/endian.h> for NetBSD too, which keeps BYTE_ORDER from 2015-02-17 02:00:07 +00:00
powerdns-ldap Update PowerDNS to 3.4.1. 2014-12-10 14:50:08 +00:00
powerdns-mysql Update PowerDNS to 3.4.1. 2014-12-10 14:50:08 +00:00
powerdns-pgsql Remove -lcrypt on OpenBSD. Fixes build failure on this platform. 2015-02-17 01:55:12 +00:00
powerdns-recursor Add upstream patch to fix CVE-2014-8601. 2014-12-11 20:18:17 +00:00
pppd
pptp
proftpd Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
proxycheck
proxytunnel Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:17:32 +00:00
publicfile Fix various prototypes and missing inclueds. 2013-05-23 14:57:32 +00:00
publicfile-run Add publicfile-run, a package that creates the users and group 2015-01-27 23:01:31 +00:00
puf Update puf to 1.0.0. Changeset from Thomas Merkel. 2013-10-24 11:00:49 +00:00
pure-ftpd Remove example rc.d scripts from PLISTs. 2014-03-11 14:04:57 +00:00
pxe Remove example rc.d scripts from PLISTs. 2014-03-11 14:04:57 +00:00
py-adns recursive revbump due to net/adns update 1.4 to 1.5.0 2015-01-29 09:53:29 +00:00
py-amqp 1.4.6 2014-11-09 20:18:33 +00:00
py-apache-libcloud Updated py-apache-libcloud to 0.17.0 2015-02-23 10:46:31 +00:00
py-beanstalkc Import py27-beanstalkc-0.4.0 as net/py-beanstalkc. 2014-06-08 22:55:51 +00:00
py-boto Fold diffs from www/py-boto into this package. Use ALTERNATIVES for files 2014-06-09 00:49:33 +00:00
py-caldav Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
py-celery 3.1.16 2014-11-09 20:47:58 +00:00
py-dns Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
py-dns3 Mark packages as not ready for python-3.x where applicable; 2014-01-25 10:29:56 +00:00
py-dpkt Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
py-dropbox Fix python interpreter path in installed file. 2013-11-30 09:40:00 +00:00
py-eventlib Dictionary comprehension is not supported by Python 2.6, avoid. 2014-06-06 12:49:23 +00:00
py-foolscap Update to 0.7.0: 2014-10-01 11:43:27 +00:00
py-GeoIP Improve EGG_NAME default to work for packages with '-' in their name. 2014-12-31 13:57:25 +00:00
py-gevent Use __builtin_unreachable on Clang instead of the broken C11 hack. 2014-11-10 18:09:10 +00:00
py-google Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
py-hatop Add ALTERNATIVES for moved bin/${BINARY} to bin/${BINARY}${PYVERSSUFFIX}. 2014-05-03 19:09:48 +00:00
py-IP Update to 0.81 2014-07-28 02:38:24 +00:00
py-irclib Updated to version 8.9 2014-05-09 21:37:03 +00:00
py-junos-eznc Improve EGG_NAME default to work for packages with '-' in their name. 2014-12-31 13:57:25 +00:00
py-kenosis Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
py-kombu 3.0.23 2014-11-09 20:40:01 +00:00
py-libdnet Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
py-libpcap Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
py-medusa Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
py-metar Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
py-ncclient Add py-ncclient, a python library for netconf. 2014-09-02 11:24:37 +00:00
py-netaddr py-netaddr is a Python library for representing and manipulating 2014-09-02 13:48:13 +00:00
py-netifaces Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
py-netlib Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
py-netsnmp Fix buiding py-netsnmp 2015-01-09 14:00:00 +00:00
py-omniORBpy Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
py-ORBit Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
py-pcap Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
py-ptt
py-s3cmd Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
py-simplesoap Import py27-simplesoap-1.10 as net/py-simplesoap. 2014-04-22 00:07:52 +00:00
py-smb Fixes: 2013-04-06 03:45:05 +00:00
py-soaplib Mark packages as not ready for python-3.x where applicable; 2014-01-25 10:29:56 +00:00
py-soappy Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
py-socketpool Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
py-softlayer Drop trailing '/' from DEPENDS lines. Found by Bernhard Riedel. 2015-02-07 22:06:52 +00:00
py-softlayer_messaging Import py27-softlayer_messaging-1.0.3 as net/py-softlayer_messaging. 2014-06-08 23:09:53 +00:00
py-spreadmodule Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
py-suds Improve EGG_NAME default to work for packages with '-' in their name. 2014-12-31 13:57:25 +00:00
py-tweepy Add Tweepy 2.3.0, a python API for Twitter. 2014-06-13 20:11:17 +00:00
py-twisted Update to 15.0.0: 2015-02-01 19:55:19 +00:00
py-twisted-docs Stop using "pax -rw -pe", it doesn't work. Use "-pp" instead. 2014-06-27 00:25:20 +00:00
py-twython Added dependency over security/py-requests-oauthlib needed for Twitter 2014-05-08 15:36:57 +00:00
py-zmq Update py-zmq to 14.4.1. 2014-11-15 02:09:46 +00:00
py-zsi Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
pygopherd Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
qadsl
quagga Note upstream status of patches. 2015-01-26 00:06:49 +00:00
queryperf
quvi Revbump for Lua multiversion support. 2014-05-03 13:14:36 +00:00
ra-rtsp-proxy Remove example rc.d scripts from PLISTs. 2014-03-11 14:04:57 +00:00
rabbiter Allow build with ruby21. 2014-03-26 14:27:22 +00:00
rabbitmq Update rabbitmq to 3.4.2 2014-12-04 12:36:58 +00:00
rabbitmq-c Update rabbitmq-c to 0.5.2. 2014-10-02 10:45:36 +00:00
Radicale Add ldap option, and mark as 2.x only when either option is selected. 2015-01-28 20:39:54 +00:00
radiusclient-ng Remove "Trailing empty lines." and/or "Trailing white-space." 2013-04-08 11:17:08 +00:00
radiusd-cistron Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
radsecproxy Add radsecproxy version 1.6.6 to pkgsrc. 2015-01-20 08:17:09 +00:00
rancid Don't use comments in the middle of a multiline statements. 2014-09-19 08:31:26 +00:00
rbldnsd 0.997a (23 Jul 2013) 2014-05-30 21:06:39 +00:00
rdesktop Add "share/rdesktop/keymaps/sk" to the package list. 2015-02-15 08:52:51 +00:00
rdist6
remmina Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
remmina-plugins Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
rinetd Remove example rc.d scripts from PLISTs. 2014-03-11 14:04:57 +00:00
rootprobe Add socket libraries on SunOS. Patch from Sebastian Wiedenroth. 2013-12-10 12:37:32 +00:00
rp-l2tp
rp-pppoe Remove example rc.d scripts from PLISTs. 2014-03-11 14:04:57 +00:00
rsync The SUNET archive is being decomissioned ( http://ftp.sunet.se/news.html ) 2015-02-07 22:49:31 +00:00
rtmpdump Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:17:32 +00:00
rtorrent Update libtorrent to version 0.13.4 and rtorrent to version 0.9.4. 2014-06-15 22:44:15 +00:00
ruby-addressable Update ruby-addressable to 2.3.6. 2015-02-04 14:19:32 +00:00
ruby-amq-client Update ruby-amq-client to 1.0.4. 2014-03-14 17:35:36 +00:00
ruby-amq-protocol Update ruby-amq-protocol to 1.9.2. 2014-03-14 17:34:03 +00:00
ruby-amqp Update ruby-amqp to 1.5.0. 2015-02-04 15:47:45 +00:00
ruby-dnsruby Update ruby-dnsruby to 1.57.0. 2015-02-04 15:49:30 +00:00
ruby-domain_name Update ruby-domain_name to 0.5.23. 2015-02-04 15:53:50 +00:00
ruby-em-socksify Add ruby-em-socksify pacakge version 0.3.0. 2013-09-15 18:46:56 +00:00
ruby-icmp
ruby-ipaddress Import net/ruby-ipaddress into pkgsrc. 2014-06-03 13:46:00 +00:00
ruby-net-dhcp Import net-dhcp as net/ruby-net-dhcp. 2015-01-19 20:37:07 +00:00
ruby-net-ldap Update ruby-net-ldap to 0.11. 2015-02-04 15:56:48 +00:00
ruby-net-ping Update ruby-net-ping to 1.7.7. 2015-02-04 15:58:00 +00:00
ruby-netaddr
ruby-netrc Add ruby-netrc 0.10.2. 2015-02-07 14:48:34 +00:00
ruby-rubytter Update ruby-rubytter to 1.5.1. 2013-09-15 14:37:54 +00:00
ruby-snmp Update ruby-snmp to 1.2.0. 2015-02-04 16:05:49 +00:00
ruby-soap4r Allow build with ruby21. 2014-03-26 13:27:50 +00:00
ruby-stompserver Remove example rc.d scripts from PLISTs. 2014-03-11 14:04:57 +00:00
ruby-tw Explicitly require ruby-userstream>=1.4.0 for --stream option with ruby200. 2014-12-14 05:46:23 +00:00
ruby-twitter Update ruby-twitter to 5.9.0. 2014-06-01 17:04:15 +00:00
ruby-twitter-stream Relax dependency gem patterm for http_parser.rb. 2014-07-20 01:16:48 +00:00
ruby-userstream Switch to depend ruby-hashie1 package. 2015-02-04 14:06:50 +00:00
samba SunOS inotify requires sys/filio.h for FIONREAD. 2015-02-02 10:42:17 +00:00
samba35 PLIST for SunOS, same as net/samba. 2014-12-21 09:17:11 +00:00
scamper Update scamper to 20141101 (PR pkg/49353) 2014-11-16 05:17:24 +00:00
scapy Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
scdp
scli Fix build against readline 6.3. 2014-04-21 18:13:57 +00:00
sdig Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:17:32 +00:00
sdist Use PKGBASE in config file name (match net/ssync/Makefile). 2013-03-14 17:23:12 +00:00
SDL2_net Recursive bump for SDL2-using packages. 2015-02-09 08:43:13 +00:00
SDL_net
sendfile
ser locks only exists for pthread_mutex_lock and friends, don't use it 2015-02-19 22:27:15 +00:00
sharity-light
sipcalc
sipsak Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:17:32 +00:00
sitescooper Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
slurm
smokeping Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
sniffit Use BROKEN_ON_PLATFORM for "severe LP64 loss" and apply to all 2015-01-04 03:58:57 +00:00
sniproxy Update sniproxy to 0.3.6 2014-10-21 12:04:44 +00:00
snmptt Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
snort Remove example rc.d scripts from PLISTs. 2014-03-11 14:04:57 +00:00
snort-rules
socat Update to latest stable, 1.7.2.4, which is supposed to resolve CVE-2014-0019. 2014-09-07 23:24:56 +00:00
socket++ Partial pkglint cleanup. 2013-01-26 22:14:10 +00:00
socks4 Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
socks5 Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
solaris-tap Fixes malformed conditional for old bmake. 2014-03-14 08:34:45 +00:00
speedtouch Remove example rc.d scripts from PLISTs. 2014-03-11 14:04:57 +00:00
spegla
spread Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
spreadlogd Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
srsh Revive MASTER_SITES. 2013-03-14 16:02:39 +00:00
sslh Not MAKE_JOBS_SAFE. 2015-01-09 14:34:20 +00:00
ssmping
ssync Revive MASTER_SITES. 2013-03-14 16:36:48 +00:00
stripes Don't expect perl to provide p5-CGI, depend on the package instead. 2014-05-31 12:22:42 +00:00
sup libutil is needed on FreeBSD for fparseln. 2014-06-19 07:12:44 +00:00
synergy -Wno-foo for clang 2015-02-21 09:19:17 +00:00
sysmon Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:17:32 +00:00
tacacs Needs bison. Race conditions around library build. Forgotten PLIST 2015-02-20 22:26:13 +00:00
tacacs-shrubbery Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
tcl-scotty Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
tcpdmerge Fix spelling of noreturn to match what any newer GCC compatible compiler 2013-09-10 14:38:22 +00:00
tcpdpriv PKGREVISION bumps for net/libpcap update. 2013-02-06 19:30:54 +00:00
tcpdstat PKGREVISION bumps for net/libpcap update. 2013-02-06 19:30:54 +00:00
tcpdump Update 4.4.0 to 4.6.0 2014-12-13 14:31:10 +00:00
tcpflow PKGREVISION bumps for net/libpcap update. 2013-02-06 19:30:54 +00:00
tcpick Fix inttypes on SunOS. Patch from Sebastian Wiedenroth. 2013-12-10 12:36:35 +00:00
tcpillust Fix signature of main. Fix missing string.h. Request compat from TCL. 2014-02-21 20:31:08 +00:00
tcpreplay Make tcpreplay build on Darwin 2013-11-19 03:07:49 +00:00
tcpslice Update to 1.2a3 (2005). No change log. 2014-08-14 19:44:53 +00:00
tcptrace Fix owin calculation on 64bit machine. These subtraction must be done 2015-01-20 08:29:22 +00:00
tcptraceroute PKGREVISION bumps for net/libpcap update. 2013-02-06 19:30:54 +00:00
teamspeak-client Remove "Trailing empty lines." and/or "Trailing white-space." 2013-04-08 11:17:08 +00:00
teamspeak-server Remove example rc.d scripts from PLISTs. 2014-03-11 14:04:57 +00:00
tigervnc Import tigervnc-1.3.1 as net/tigervnc, packaged for wip by myself 2015-02-08 19:42:09 +00:00
tightvnc Support cwrappers for packages appending arguments in the wrappers. 2014-12-01 12:39:16 +00:00
tightvncviewer
tinc Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:17:32 +00:00
tinyfugue Pick output name that is going to work. Make signal handler test more 2013-05-28 19:03:49 +00:00
tkined Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
tn5250 Link network libs and include filio.h for FIONBIO on SunOS 2014-02-24 13:11:53 +00:00
tnftp Add ssl option that's default-on for systems that provide openssl. 2015-02-18 09:16:52 +00:00
tnftpd Security fix to tnftpd, to bring the version to 20130325. 2013-03-25 04:11:25 +00:00
tor Update to 0.2.5.10. 2014-11-27 12:49:49 +00:00
torrentutils Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
totd
traceroute-as
traceroute-nanog Do not remove __attribute__, at the very least this way leads to bad 2013-01-11 00:04:22 +00:00
trafshow Avoid socket buffering on Solaris, a blank screen is not all that useful. 2013-02-06 20:32:16 +00:00
transmission Simplify PKGNAME. 2015-01-10 20:48:58 +00:00
transmission-gtk Simplify PKGNAME. 2015-01-10 20:48:58 +00:00
transmission-qt Simplify PKGNAME. 2015-01-10 20:48:58 +00:00
trickle added support for MacOS X (which is a BSD-style UNIX system, too) 2014-07-06 12:48:03 +00:00
tsclient Moved the manual page into PKGMANDIR 2014-10-25 00:07:20 +00:00
tsocks "Each sed command should appear in an assignment of its own." 2013-04-06 21:07:31 +00:00
tspc Remove example rc.d scripts from PLISTs. 2014-03-11 14:04:57 +00:00
ttt Honour system CFLAGS. Fix build with TCL 8.6. Bump revision. 2014-02-04 00:19:54 +00:00
twittering-mode Sorry, removing garbage. 2013-06-14 14:03:50 +00:00
twitux Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
u6rd Add u6rd-1.7.1 based on packaging provided in PR#47254 2014-04-19 17:34:01 +00:00
ucarp Add SIOCGLIFHWADDR support on newer SunOS. Bump PKGREVISION. 2013-12-10 17:56:23 +00:00
ucspi-ssl Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
ucspi-tcp Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
udns Upgrade to 0.4: 2014-02-24 19:29:02 +00:00
udpcast Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
udptunnel
uftp Make sure we add an rpath to OpenSSL libraries, fixes check-shlibs-elf.awk 2014-07-25 14:18:18 +00:00
unbound Unbound 1.5.2 2015-02-21 10:53:40 +00:00
unfs3 flex (libfl) is a runtime dependency. 2014-07-24 13:22:36 +00:00
unison Revbump associated with update of lang/ocaml. 2015-01-20 14:24:34 +00:00
unison2.32 Revbump associated with update of lang/ocaml. 2015-01-20 14:24:34 +00:00
unison2.40 Import unison-2.40.102nb22 as net/unison2.40 before updating net/unison. 2015-01-06 12:57:03 +00:00
unworkable Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:18:26 +00:00
upclient Remove example rc.d scripts from PLISTs. 2014-03-11 14:04:57 +00:00
upnpinspector Improve EGG_NAME default to work for packages with '-' in their name. 2014-12-31 13:57:25 +00:00
urlgfe Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
userppp
uucp Provide __COPYRIGHT and __RCSID if missing. This has USE_FEATURES+=cdefs 2014-06-29 19:18:28 +00:00
vcheck Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
vde
vinagre Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
vino Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
vnc Support cwrappers for packages appending arguments in the wrappers. 2014-12-01 12:39:16 +00:00
vncviewer
vnstat Remove example rc.d scripts from PLISTs. 2014-03-11 14:04:57 +00:00
vpnc Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
vsftpd Enable ssl by default, bump PKGREVISION 2014-10-12 10:25:05 +00:00
vtun bulk build complains about yacc 2015-01-25 15:54:30 +00:00
wakeup
walker Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
wap-utils Link network libs on SunOS 2014-02-22 17:40:38 +00:00
waste
wget Update to 1.16.1: 2014-12-12 08:54:21 +00:00
wgetpaste Update 2.20 to 2.25 ChangeLog unknown. 2014-12-13 14:27:35 +00:00
whatmask
whois3 Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
whoson Update 2.03 to 2.05 2014-12-13 14:22:05 +00:00
wide-dhcpv6 Remove example rc.d scripts from PLISTs. 2014-03-11 14:04:57 +00:00
wimon Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
wireshark Update "wireshark" package to version 1.10.12. Changes since 1.10.11: 2015-01-08 18:51:44 +00:00
wistumbler
wistumbler2 Fix ``Please add a line "# used by foo/bar/Makefile" here.'' warnings. 2014-10-05 16:41:05 +00:00
wistumbler2-gtk Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
wmget Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:18:26 +00:00
wminet
wmnd Update to 0.4.17 (released 2012). Changes: 2013-11-16 07:17:24 +00:00
wmnet Use SPECIAL_PERMS on MirBSD, too. Fix build. 2013-12-19 20:27:24 +00:00
wmpload
wol Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
wpa_gui Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:18:26 +00:00
wpa_supplicant Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:18:26 +00:00
wu-ftpd The SUNET archive is being decomissioned ( http://ftp.sunet.se/news.html ) 2015-02-07 22:49:31 +00:00
x2vnc Also add -lnsl on SunOS as reported by bulk build 2014-01-27 23:27:04 +00:00
xfce4-wavelan-plugin Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xfindproxy Update to 1.0.3: 2013-09-08 08:25:44 +00:00
xipdump Needs -lsocket on SunOS. Also required libpcap. 2014-09-25 16:32:03 +00:00
xl2tpd Fix inline use. 2015-02-19 22:27:59 +00:00
xmftp
xnap
xorp Extend removing -Werror to all compilers, not just clang. Fixes build 2014-12-29 07:03:46 +00:00
xrmftp Link network libs on SunOS 2014-02-17 00:24:05 +00:00
xtraceroute Revbump after graphics/jpeg and textproc/icu 2013-01-26 21:36:13 +00:00
xymon fix inode checks for NetBSD 2014-09-21 14:49:45 +00:00
xymonclient Remove example rc.d scripts from PLISTs. 2014-03-11 14:04:57 +00:00
yafc Fix readline use. 2014-04-17 20:27:32 +00:00
yale-tftpd Add USE_TOOLS+=nroff to packages which generate catman pages. 2013-09-12 11:15:12 +00:00
yaz Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
youtube-dl Update to 2015.01.10.2; the usual bugfixes and new extractors. 2015-01-10 20:38:31 +00:00
ytalk "Please write NetBSD.org instead of netbsd.org" 2013-04-06 13:09:24 +00:00
ywho Revive MASTER_SITES. 2013-03-14 17:06:12 +00:00
zeroconf-ioslave Update to KDE SC 4.14.3 2014-11-13 11:50:26 +00:00
zeromq Update zeromq to 4.0.5. 2014-11-15 01:59:37 +00:00
zsync USE_LANGUAGES=c99, fixes build on SunOS. 2013-10-29 10:54:38 +00:00
Makefile Remove bind96 and bind98. 2015-02-19 14:49:52 +00:00