pkgsrc/net
adam ec3fd9f36b py-zeroconf: updated to 0.32.0
0.32.0

This release offers 100% line and branch coverage.

Made ServiceInfo first question QU

We want an immediate response when requesting with ServiceInfo by asking a QU question; most responders will not delay the response and respond right away to our question. This also improves compatibility with split networks as we may not have been able to see the response otherwise. If the responder has not multicast the record recently, it may still choose to do so in addition to responding via unicast

Reduces traffic when there are multiple zeroconf instances running on the network running ServiceBrowsers

If we don't get an answer on the first try, we ask a QM question in the event, we can't receive a unicast response for some reason

This change puts ServiceInfo inline with ServiceBrowser which also asks the first question as QU since ServiceInfo is commonly called from ServiceBrowser callbacks

Limited duplicate packet suppression to 1s intervals

Only suppress duplicate packets that happen within the same second. Legitimate queriers will retry the question if they are suppressed. The limit was reduced to one second to be in line with rfc6762

Made multipacket known answer suppression per interface

The suppression was happening per instance of Zeroconf instead of per interface. Since the same network can be seen on multiple interfaces (usually and wifi and ethernet), this would confuse the multi-packet known answer supression since it was not expecting to get the same data more than once

New ServiceBrowsers now request QU in the first outgoing when unspecified

https://datatracker.ietf.org/doc/html/rfc6762#section-5.4 When we start a ServiceBrowser and zeroconf has just started up, the known answer list will be small. By asking a QU question first, it is likely that we have a large known answer list by the time we ask the QM question a second later (current default which is likely too low but would be a breaking change to increase). This reduces the amount of traffic on the network, and has the secondary advantage that most responders will answer a QU question without the typical delay answering QM questions.

IPv6 link-local addresses are now qualified with scope_id

When a service is advertised on an IPv6 address where the scope is link local, i.e. fe80::/64 (see RFC 4007) the resolved IPv6 address must be extended with the scope_id that identifies through the "%" symbol the local interface to be used when routing to that address. A new API parsed_scoped_addresses() is provided to return qualified addresses to avoid breaking compatibility on the existing parsed_addresses().

Network adapters that are disconnected are now skipped

Fixed listeners missing initial packets if Engine starts too quickly

When manually creating a zeroconf.Engine object, it is no longer started automatically. It must manually be started by calling .start() on the created object.

The Engine thread is now started after all the listeners have been added to avoid a race condition where packets could be missed at startup.

Fixed answering matching PTR queries with the ANY query

Fixed lookup of uppercase names in the registry

If the ServiceInfo was registered with an uppercase name and the query was for a lowercase name, it would not be found and vice-versa.

Fixed unicast responses from any source port

Unicast responses were only being sent if the source port was 53, this prevented responses when testing with dig:

dig -p 5353 @224.0.0.251 media-12.local
The above query will now see a response

Fixed queries for AAAA records not being answered

Removed second level caching from ServiceBrowsers

The ServiceBrowser had its own cache of the last time it saw a service that was reimplementing the DNSCache and presenting a source of truth problem that lead to unexpected queries when the two disagreed.

Fixed server cache not being case-insensitive

If the server name had uppercase chars and any of the matching records were lowercase, and the server would not be found

Fixed cache handling of records with different TTLs

There should only be one unique record in the cache at a time as having multiple unique records will different TTLs in the cache can result in unexpected behavior since some functions returned all matching records and some fetched from the right side of the list to return the newest record. Instead we now store the records in a dict to ensure that the newest record always replaces the same unique record, and we never have a source of truth problem determining the TTL of a record from the cache.

Fixed ServiceInfo with multiple A records

If there were multiple A records for the host, ServiceInfo would always return the last one that was in the incoming packet, which was usually not the one that was wanted.

Fixed stale unique records expiring too quickly

Records now expire 1s in the future instead of instant removal.

tools.ietf.org/html/rfc6762#section-10.2 Queriers receiving a Multicast DNS response with a TTL of zero SHOULD NOT immediately delete the record from the cache, but instead record a TTL of 1 and then delete the record one second later. In the case of multiple Multicast DNS responders on the network described in Section 6.6 above, if one of the responders shuts down and incorrectly sends goodbye packets for its records, it gives the other cooperating responders one second to send out their own response to "rescue" the records before they expire and are deleted.

Fixed exception when unregistering a service multiple times

Added an AsyncZeroconfServiceTypes to mirror ZeroconfServiceTypes to zeroconf.asyncio

Fixed interface_index_to_ip6_address not skiping ipv4 adapters

Added async_unregister_all_services to AsyncZeroconf

Fixed services not being removed from the registry when calling unregister_all_services

There was a race condition where a query could be answered for a service in the registry, while goodbye packets which could result in a fresh record being broadcast after the goodbye if a query came in at just the right time. To avoid this, we now remove the services from the registry right after we generate the goodbye packet

Fixed zeroconf exception on load when the system disables IPv6

Fixed the QU bit missing from for probe queries

The bit should be set per datatracker.ietf.org/doc/html/rfc6762#section-8.1

Fixed the TC bit missing for query packets where the known answers span multiple packets

Fixed packets not being properly separated when exceeding maximum size

Ensure that questions that exceed the max packet size are moved to the next packet. This fixes DNSQuestions being sent in multiple packets in violation of: datatracker.ietf.org/doc/html/rfc6762#section-7.2

Ensure only one resource record is sent when a record exceeds _MAX_MSG_TYPICAL datatracker.ietf.org/doc/html/rfc6762#section-17

Fixed PTR questions asked in uppercase not being answered

Added Support for context managers in Zeroconf and AsyncZeroconf

Implemented an AsyncServiceBrowser to compliment the sync ServiceBrowser

Added async_get_service_info to AsyncZeroconf and async_request to AsyncServiceInfo

Implemented allowing passing in a sync Zeroconf instance to AsyncZeroconf

Fixed IPv6 setup under MacOS when binding to ""

Fixed ZeroconfServiceTypes.find not always cancels the ServiceBrowser

There was a short window where the ServiceBrowser thread could be left running after Zeroconf is closed because the .join() was never waited for when a new Zeroconf object was created

Fixed duplicate packets triggering duplicate updates

If TXT or SRV records update was already processed and then received again, it was possible for a second update to be called back in the ServiceBrowser

Fixed ServiceStateChange.Updated event happening for IPs that already existed

Fixed RFC6762 Section 10.2 paragraph 2 compliance

Reduced length of ServiceBrowser thread name with many types

Fixed empty answers being added in ServiceInfo.request

Fixed ServiceInfo not populating all AAAA records

Use get_all_by_details to ensure all records are loaded into addresses.

Only load A/AAAA records from the cache once in load_from_cache if there is a SRV record present

Move duplicate code that checked if the ServiceInfo was complete into its own function

Fixed a case where the cache list can change during iteration

Return task objects created by AsyncZeroconf

Traffic Reduction:

Added support for handling QU questions

Implements RFC 6762 sec 5.4: Questions Requesting Unicast Responses datatracker.ietf.org/doc/html/rfc6762#section-5.4

Implemented protect the network against excessive packet flooding

Additionals are now suppressed when they are already in the answers section

Additionals are no longer included when the answer is suppressed by known-answer suppression

Implemented multi-packet known answer supression

Implements datatracker.ietf.org/doc/html/rfc6762#section-7.2

Implemented efficient bucketing of queries with known answers

Implemented duplicate question suppression

http://datatracker.ietf.org/doc/html/rfc6762#section-7.3

Technically backwards incompatible:

Update internal version check to match docs (3.6+)

Python version earlier then 3.6 were likely broken with zeroconf already, however, the version is now explicitly checked.

Update python compatibility as PyPy3 7.2 is required

Backwards incompatible:

Drop oversize packets before processing them

Oversized packets can quickly overwhelm the system and deny service to legitimate queriers. In practice, this is usually due to broken mDNS implementations rather than malicious actors.

Guard against excessive ServiceBrowser queries from PTR records significantly lowerthan recommended

We now enforce a minimum TTL for PTR records to avoid ServiceBrowsers generating excessive queries refresh queries. Apple uses a 15s minimum TTL, however, we do not have the same level of rate limit and safeguards, so we use 1/4 of the recommended value.

RecordUpdateListener now uses async_update_records instead of update_record

This allows the listener to receive all the records that have been updated in a single transaction such as a packet or cache expiry.

update_record has been deprecated in favor of async_update_records A compatibility shim exists to ensure classes that use RecordUpdateListener as a base class continue to have update_record called, however, they should be updated as soon as possible.

A new method async_update_records_complete is now called on each listener when all listeners have completed processing updates and the cache has been updated. This allows ServiceBrowsers to delay calling handlers until they are sure the cache has been updated as its a common pattern to call for ServiceInfo when a ServiceBrowser handler fires.

The async_ prefix was chosen to make it clear that these functions run in the eventloop and should never do blocking I/O. Before 0.32+ these functions ran in a select() loop and should not have been doing any blocking I/O, but it was not clear to implementors that I/O would block the loop.

Pass both the new and old records to async_update_records

Pass the old_record (cached) as the value and the new_record (wire) to async_update_records instead of forcing each consumer to check the cache since we will always have the old_record when generating the async_update_records call. This avoids the overhead of multiple cache lookups for each listener.
2021-07-02 09:54:09 +00:00
..
3proxy
6tunnel 6tunnel: Update to 0.13 2020-01-09 20:09:34 +00:00
adns adns: Update to 1.6.0 2021-02-11 11:25:51 +00:00
aget Update to 0.4.1 2020-10-25 03:34:42 +00:00
aiccu revbump for boost-libs 2021-04-21 13:24:06 +00:00
amazon-ecs-cli Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
amule amule: updated to 2.3.3 2021-06-05 13:05:56 +00:00
aoe-vblade *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
apollo all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
argus *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
aria2 revbump for boost-libs 2021-04-21 13:24:06 +00:00
arp-scan *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
arpd *: remove dead download link 2021-04-25 06:47:52 +00:00
arping arping: Remove DEPENDS, fixed in libnet bl3. 2021-01-30 08:24:07 +00:00
arpwatch
autonet
avahi avahi: Bump PKGREVISION for previous. 2021-01-08 23:47:54 +00:00
avahi-ui avahi-ui: Explicit dependency on avahi. 2021-01-15 12:24:17 +00:00
awhois
aws-sdk-go Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
balance
bandcamp-dl bandcamp-dl: Update to 0.0.10 2021-01-21 18:10:05 +00:00
barnyard Revbump for MySQL default change 2021-06-23 20:33:06 +00:00
batchftp
bbk_cli revbump for boost-libs 2021-04-21 13:24:06 +00:00
beanstalkd beanstalkd: simplify the Makefile 2021-04-06 23:46:53 +00:00
bftpd bftpd: Update to 5.7 2021-06-12 08:10:52 +00:00
bind911 Revbump for MySQL default change 2021-06-23 20:33:06 +00:00
bind916 Revbump for MySQL default change 2021-06-23 20:33:06 +00:00
bing
bird all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
bird6
bmon bmon: Update to 4.0 2021-03-04 10:42:09 +00:00
bounce
bridged
bsddip
btget revbump for boost-libs 2021-04-21 13:24:06 +00:00
btpd *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
bwm-ng all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
bwping all: migrate some SourceForge homepage URLs back from https to http 2020-01-26 05:26:08 +00:00
cacti *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
cacti-spine Revbump for MySQL default change 2021-06-23 20:33:06 +00:00
calypso Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
cclive revbump for boost-libs 2021-04-21 13:24:06 +00:00
ccrtp revbump for boost-libs 2021-04-21 13:24:06 +00:00
cdpd
chksniff
choparp *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
choqok *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
chrony chrony: update to 4.1 2021-06-12 08:38:01 +00:00
cia
cidr
cisco-mibs Update cisco-mibs to 20170101, latest available tar files from Cisco 2020-01-05 18:45:58 +00:00
citrix_ica citrix_ica: remove dead download link 2021-04-24 00:04:27 +00:00
clisp-rawsock
clive *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
cmu-dhcpd
cntlm *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
coda *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
coherence Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
coilmq coilmq: updated to 1.0.1 2021-05-12 04:56:54 +00:00
connect
corebird revbump for textproc/icu 2021-04-21 11:40:12 +00:00
corkscrew
couriertcpd net/couriertcpd: remove ipv6 option 2020-05-21 19:21:17 +00:00
coursera-dl Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
csup update master sites 2020-12-03 13:04:11 +00:00
dante dante: updated to 1.4.3 2021-06-01 07:42:08 +00:00
daq Updated net/daq to version 2.0.7. 2020-10-01 19:11:03 +00:00
darkstat
DarwinStreamingServer *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
dbip-asn-lite dbip-asn-lite: update to 2021-07. 2021-07-01 17:07:45 +00:00
dbip-city-lite dbip-city-lite: update to 2021-07. 2021-07-01 17:08:39 +00:00
dbip-country-lite dbip-country-lite: update to 2021-07. 2021-07-01 17:09:53 +00:00
dc_gui2 revbump for boost-libs 2021-04-21 13:24:06 +00:00
dctc *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
ddclient *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
deforaos-vncviewer revbump for boost-libs 2021-04-21 13:24:06 +00:00
delegate net/delegate: fix potential endless loop in CGI part 2020-05-03 17:22:50 +00:00
dgd Uses tar as tool 2020-03-30 19:39:05 +00:00
dhcpcd dhcpcd: update to 9.4.0 2021-02-18 17:09:33 +00:00
dhcpcd-dbus update master site 2020-12-03 15:01:47 +00:00
dhcpcd-gtk *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
dhcpcd-icons Import dhcpcd-ui-0.7.7 with the following changes: 2019-12-03 15:40:05 +00:00
dhcpcd-qt revbump for textproc/icu 2021-04-21 11:40:12 +00:00
dhcpd-pools *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
dhid all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
dhisd all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
djbdns Remove DJB_RESTRICTED, no longer used. 2020-11-19 09:35:38 +00:00
djbdns-run Remove a stray dot missed in previous. 2020-10-16 09:42:01 +00:00
djbdnscurve6 Update to 37. From the changelog: 2021-02-17 19:52:22 +00:00
dlint *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
dnscap
dnscheck *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
dnscrypt-proxy2 Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
dnsdist net/dnsdist: Update to 1.5.1 2020-10-01 10:27:58 +00:00
dnsmasq dnsmasq: updated to 2.85 2021-04-12 10:06:45 +00:00
dnstop
dnstracer *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
docsis *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
doh revbump for boost-libs 2021-04-21 13:24:06 +00:00
driftnet *: Apply revbump for graphics/giflib API change. 2020-06-05 12:48:58 +00:00
drill Update to version 1.7.1, included in ldns. 2021-01-01 12:34:49 +00:00
dtcp
dtcpclient *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
dtorrent *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
dynipclient
echoping *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
ed2k-gtk-gui *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
edonkey2k
enet enet: Update to 1.3.17 2020-11-26 15:36:59 +00:00
entropy Revbump for MySQL default change 2021-06-23 20:33:06 +00:00
erlang-esip erlang-esip: Update to 1.0.39 2021-01-16 13:04:42 +00:00
erlang-idna erlang-idna: Install unicode_compat_util (which was built) 2021-06-03 12:34:28 +00:00
erlang-stun erlang-stun: Remove useless variable from MAKE_ENV 2021-05-21 10:50:08 +00:00
erlang-xmpp erlang-xmpp: Update to 1.5.3 2021-05-20 14:18:43 +00:00
ether2dns
etherape *: Use the tools framework for itstool 2021-05-02 10:24:47 +00:00
ettercap revbump for boost-libs 2021-04-21 13:24:06 +00:00
ettercap-gtk revbump for boost-libs 2021-04-21 13:24:06 +00:00
exabgp *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
ez-ipupdate
fair-identd
fastd add net/fastd 2021-06-24 14:01:31 +00:00
fehqlibs Update to 17. From the changelog: 2021-04-03 19:33:28 +00:00
fetch *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
filezilla revbump for boost-libs 2021-04-21 13:24:06 +00:00
firewalk
flickcurl revbump for boost-libs 2021-04-21 13:24:06 +00:00
flodo
flow-tools Revbump for MySQL default change 2021-06-23 20:33:06 +00:00
fmirror
fpdns *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
fping fping: updated to 4.4 2020-08-03 11:51:47 +00:00
freeDiameter Revbump for MySQL default change 2021-06-23 20:33:06 +00:00
freenet-tools
freeradius (net/freeradius) Fix package, adding REPLACE_PERL 2021-06-30 22:20:32 +00:00
freeradius-freetds freeradius: updated to 3.0.23 2021-06-25 11:42:48 +00:00
freeradius-iodbc
freeradius-krb5
freeradius-ldap freeradius: updated to 3.0.21 2020-04-08 09:42:05 +00:00
freeradius-memcached
freeradius-mysql Revbump for MySQL default change 2021-06-23 20:33:06 +00:00
freeradius-perl freeradius: updated to 3.0.23 2021-06-25 11:42:48 +00:00
freeradius-pgsql
freeradius-python
freeradius-rest freeradius: updated to 3.0.23 2021-06-25 11:42:48 +00:00
freeradius-sqlite3 freeradius: updated to 3.0.23 2021-06-25 11:42:48 +00:00
freeradius-unixodbc
freeradius-yubikey
freerdp2 regen distinfo and remove unneeded WRKSRC override - seems I happened 2021-05-04 18:52:51 +00:00
frr (net/frr) regen PLIST 2021-06-05 02:48:21 +00:00
fstrm *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
ftplibpp Fix <functional> vs BSD socket conflict 2020-03-26 02:30:26 +00:00
ftpproxy all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
fwknop fwknop: update to version 2.6.10 2021-05-29 22:39:45 +00:00
gallery-dl gallery-dl: Update to 1.17.4 2021-05-09 09:00:32 +00:00
gcloud-golang-metadata Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
GeoIP GeoIP: force-fail gethostbyname_r configure check. 2021-04-19 07:22:30 +00:00
Geomyidae *: Stop listing OS names in package descriptions 2021-06-14 21:08:05 +00:00
get-flash-videos *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
get_iplayer get_iplayer: Update to 3.27 2021-02-16 10:12:18 +00:00
gethost
gh Update gh to 1.12.1. 2021-07-01 07:04:15 +00:00
gift *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
gift-fasttrack gift-fasttrack: needs zlib 2021-05-14 13:13:21 +00:00
gift-gnutella revbump for textproc/icu 2021-04-21 11:40:12 +00:00
gift-openft *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
giftcurs *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
gini *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
gitso Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
gkrellm-multiping *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
gkrellm-snmp *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
gkrellm-wireless *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
glib-networking revbump for boost-libs 2021-04-21 13:24:06 +00:00
gnapfetch *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
gnet *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
gnet1 *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
gnetcat *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
gnome-nettool *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
gnome-online-accounts *: Use the tools framework for gdbus-codegen 2021-05-02 11:06:12 +00:00
gnome-vfs-smb revbump for textproc/icu 2021-04-21 11:40:12 +00:00
gnugk *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
go-dns Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-dnstap Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-net Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-tcplisten Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-websocket Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
gofish *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
gopher
grilo revbump for boost-libs 2021-04-21 13:24:06 +00:00
grilo-plugins *: Use the tools framework for gdbus-codegen 2021-05-02 11:06:12 +00:00
grive2 revbump for boost-libs 2021-04-21 13:24:06 +00:00
grpc grpc: remove upstream URL, it was not applied and closed 2021-06-28 18:20:30 +00:00
gsnmp *: remove dead download link 2021-04-24 11:40:49 +00:00
gssdp revbump for textproc/icu 2021-04-21 11:40:12 +00:00
gssdp12 revbump for textproc/icu 2021-04-21 11:40:12 +00:00
gst-plugins0.10-mms revbump for textproc/icu 2021-04-21 11:40:12 +00:00
gst-plugins0.10-rtmp revbump for boost-libs 2021-04-21 13:24:06 +00:00
gst-plugins0.10-soup revbump for textproc/icu 2021-04-21 11:40:12 +00:00
gst-plugins1-libnice revbump for boost-libs 2021-04-21 13:24:06 +00:00
gst-plugins1-mms *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
gst-plugins1-rtmp revbump for boost-libs 2021-04-21 13:24:06 +00:00
gst-plugins1-soup revbump for textproc/icu 2021-04-21 11:40:12 +00:00
gst-rtsp-server Fix portability 2020-03-26 02:29:37 +00:00
gt-itm
gtk-gnutella revbump for boost-libs 2021-04-21 13:24:06 +00:00
gtk-vnc revbump for boost-libs 2021-04-21 13:24:06 +00:00
gtk_wicontrol
guacamole-server *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
gunison Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
gupnp gupnp: do not define pre-configure target in buildlink3.mk 2021-05-03 08:34:17 +00:00
gupnp-av gupnp-av: needs vala 2021-05-14 13:12:06 +00:00
gupnp-dlna gupnp-dlna: needs vala 2021-05-14 13:11:38 +00:00
gupnp-igd revbump for textproc/icu 2021-04-21 11:40:12 +00:00
gupnp-tools revbump for textproc/icu 2021-04-21 11:40:12 +00:00
gupnp12 gupnp12: needs vala 2021-05-14 13:12:29 +00:00
haproxy haproxy: updated to 2.4.1 2021-06-24 09:32:52 +00:00
hdl-dump Add net/hdl-dump. 2020-12-13 15:47:17 +00:00
hesiod
hf6to4
hlfl
hoogle Import warp-tls-3.3.0 2021-05-05 16:51:43 +00:00
host
howl
hping
hping3
hs-connection *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-iproute *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-mime-types *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-network *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-network-byte-order Import network-byte-order-0.1.6 2021-05-05 14:58:58 +00:00
hs-network-info Import network-info-0.2.0.10 2021-05-05 09:29:16 +00:00
hs-network-uri *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-resolv *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-simple-sendfile Import simple-sendfile-0.2.30 2021-05-05 15:43:54 +00:00
hs-socks *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
httping *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
httpstat Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
httptunnel
hub Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
iana-etc
icinga-base Revbump for MySQL default change 2021-06-23 20:33:06 +00:00
icinga2 Revbump for MySQL default change 2021-06-23 20:33:06 +00:00
icingaweb2 Switch to use lang/php/json.mk. 2021-03-07 13:21:56 +00:00
icsi-finger
iftop
IglooFTP net/IglooFTP: fix potential endless loop for long passwords 2020-05-03 14:38:36 +00:00
inadyn all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
inetutils inetutils: Fix path to cp(1) and setuid perms. 2020-11-11 16:50:17 +00:00
iodine all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
ipcalc *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
ipcheck Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
iperf2 net/iperf2: Add URLs for upstream bug reports 2021-03-15 17:00:06 +00:00
iperf3 iperf3: updated to 3.10.1 2021-06-03 19:06:19 +00:00
ipgrab *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
iplog *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
ipv6calc all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
ipw
irrd *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
irrtoolset5 Don't mess up include guards of system headers. 2020-05-14 19:15:41 +00:00
isc-dhclient4 isc-dhcp: update ISC DHCP to 4.4.2 2020-01-23 08:11:27 +00:00
isc-dhcp4 net/isc-dhcp4: update to 4.4.2p1 2021-05-27 14:10:12 +00:00
isc-dhcpd4 isc-dhcp: update ISC DHCP to 4.4.2 2020-01-23 08:11:27 +00:00
isc-dhcrelay4 isc-dhcp: update ISC DHCP to 4.4.2 2020-01-23 08:11:27 +00:00
ishell *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
isic *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
istgt net/istgt: remove no-op SUBST block 2020-04-27 04:43:47 +00:00
jftpgw net/jftpgw: remove no-op SUBST block 2020-04-27 04:47:32 +00:00
jigdo revbump for boost-libs 2021-04-21 13:24:06 +00:00
jumpgate
jwhois Reset maintainer as requested. 2020-04-12 23:59:41 +00:00
kdenetwork-filesharing revbump for boost-libs 2021-04-21 13:24:06 +00:00
kdenetwork-strigi-analyzers revbump for boost-libs 2021-04-21 13:24:06 +00:00
kdnssd revbump for textproc/icu 2021-04-21 11:40:12 +00:00
kdsoap revbump for textproc/icu 2021-04-21 11:40:12 +00:00
kget revbump for boost-libs 2021-04-21 13:24:06 +00:00
kismet *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
kmldonkey *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
knewstuff revbump for textproc/icu 2021-04-21 11:40:12 +00:00
knock all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
knot knot: needs editline 2021-05-14 13:08:10 +00:00
kopete revbump for boost-libs 2021-04-21 13:24:06 +00:00
kppp revbump for boost-libs 2021-04-21 13:24:06 +00:00
krdc revbump for boost-libs 2021-04-21 13:24:06 +00:00
krfb revbump for boost-libs 2021-04-21 13:24:06 +00:00
ktorrent *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
kubectl Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
kxmlrpcclient revbump for textproc/icu 2021-04-21 11:40:12 +00:00
LaBrea *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
lambdamoo
lambdamoo-core
lambdamoo-doc
latd
ldns *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
lft lft: Update to 3.80 2020-03-24 14:40:56 +00:00
lftp *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
libares
libasr *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
libasyncns
libbind
libcares libcares: update to 1.17.1. 2020-11-23 15:47:19 +00:00
libcmis revbump for boost-libs 2021-04-21 13:24:06 +00:00
libdlna *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:17:15 +00:00
libdmapsharing3 revbump for textproc/icu 2021-04-21 11:40:12 +00:00
libdnet
libexosip updated net/libexosip to 5.2.0 2020-12-06 23:40:21 +00:00
libfetch *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
libfilezilla revbump for boost-libs 2021-04-21 13:24:06 +00:00
libgdata bgdata: bump PKGREVISION for dependency removal 2021-04-29 09:47:30 +00:00
libgdata0.6 revbump for textproc/icu 2021-04-21 11:40:12 +00:00
libIDL *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
libiscsi libiscsi: don't build ld_iscsi.so 2020-03-22 12:42:41 +00:00
libktorrent *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
liblive
libmicrodns libmicrodns: set PYTHON_FOR_BUILD_ONLY 2021-04-12 13:09:42 +00:00
libmms
libnice revbump for boost-libs 2021-04-21 13:24:06 +00:00
libnids *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
libnipper Fix const use with standard compliant C++ string.h. 2020-03-26 02:28:58 +00:00
libpcap all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
libquic *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
libquvi revbump for boost-libs 2021-04-21 13:24:06 +00:00
libquvi-scripts *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
libradius
librsync *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
libslirp net: Add libslirp 2020-10-03 10:12:53 +00:00
libsoup revbump for textproc/icu 2021-04-21 11:40:12 +00:00
libsscript
libtelnet libtelnet: don't accidentally find doxygen outside of pbulk sandboxes 2020-06-17 17:06:55 +00:00
libtorrent *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
libtorrent-rasterbar libtorrent-rasterbar: needs atomic64 2021-06-23 08:34:39 +00:00
libtrace revbump for boost-libs 2021-04-21 13:24:06 +00:00
libupnp libupnp: updated to 1.14.7 2021-06-04 18:56:40 +00:00
libvncserver revbump for boost-libs 2021-04-21 13:24:06 +00:00
libzrtpcpp revbump for boost-libs 2021-04-21 13:24:06 +00:00
linc *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
lldpd *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
llnlxdir
llnlxftp
lopster *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
lua-copas Add 'lua' category to Lua modules. 2020-07-02 10:26:16 +00:00
lua-socket Add LUA_LINKER_MAGIC variable that centrally sets LDFLAGS on Darwin, 2020-07-11 15:14:29 +00:00
maguro net/maguro: import package 2021-05-01 14:40:11 +00:00
maradns
mate-user-share *: Use the tools framework for itstool 2021-05-02 10:24:47 +00:00
mbrowse *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
mcast-tools
md-whois *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
mDNSResponder
mDNSResponder-nss Avoid complex version logic for obsolete NetBSD versions 2020-04-29 19:57:51 +00:00
megatools revbump for boost-libs 2021-04-21 13:24:06 +00:00
microdc2 revbump for textproc/icu 2021-04-21 11:40:12 +00:00
mikutter mikutter: update to 4.1.5. 2021-05-01 18:09:42 +00:00
mikutter-plugins-twitter mikutter-plugins-twitter: sync with mikutter 4.1.x. 2020-09-20 15:13:03 +00:00
mimms Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
minitube revbump for textproc/icu 2021-04-21 11:40:12 +00:00
miniupnpc miniupnpc: Hack around build failure on NetBSD 2021-06-10 16:45:22 +00:00
miniupnpd
miredo miredo: ensure translations are consistently installed 2021-05-15 07:01:31 +00:00
mirror *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
miruo
mitmproxy mitmproxy: Add missing dependency to py-sqlite3 2021-02-26 08:47:03 +00:00
mkvserver_mk2 mkvserver_mk2: Respect CFLAGS/LDFLAGS. Requires pkg-config. 2020-12-01 11:48:48 +00:00
mldonkey *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
mldonkey-gui revbump for textproc/icu 2021-04-21 11:40:12 +00:00
modpcap
mono-nat revbump for textproc/icu 2021-04-21 11:40:12 +00:00
monotorrent revbump for textproc/icu 2021-04-21 11:40:12 +00:00
mosh *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
mosquitto net/mosquitto: Disable plugins 2021-06-15 22:29:46 +00:00
mouse-pppoe *: add updated download link 2021-04-21 22:23:53 +00:00
mping all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
mrstat
mrt mrt: remove dead links 2021-04-24 20:04:28 +00:00
mrtg *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
msdl *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
mtftpd
mtr mtr: update to 0.94. 2020-10-02 09:19:59 +00:00
mydns-mysql Revbump for MySQL default change 2021-06-23 20:33:06 +00:00
mydns-pgsql *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
nagios-base Revbump for MySQL default change 2021-06-23 20:33:06 +00:00
nagios-nrpe *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
nagios-nsca *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
nagios-plugin-dnsmaster all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
nagios-plugin-dnsrbl all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
nagios-plugin-dotpid all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
nagios-plugin-dumpdates all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
nagios-plugin-fstab all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
nagios-plugin-gfbricks all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
nagios-plugin-ldap *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
nagios-plugin-milter all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
nagios-plugin-mysql Revbump for MySQL default change 2021-06-23 20:33:06 +00:00
nagios-plugin-mysqlslave Revbump for MySQL default change 2021-06-23 20:33:06 +00:00
nagios-plugin-pgsql *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
nagios-plugin-printer *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
nagios-plugin-radius *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
nagios-plugin-raidctl nagios-plugin-raidctl: pkglint 2021-06-29 00:09:57 +00:00
nagios-plugin-snmp *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
nagios-plugin-snmp_environment *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
nagios-plugin-spamd *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
nagios-plugin-syncrepl nagios-plugin-syncrepl: needs openldap-client 2021-05-14 13:05:45 +00:00
nagios-plugins *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
nagstamon revbump for textproc/icu 2021-04-21 11:40:12 +00:00
nam *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
nanomsg all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
nanomsgxx
nanotodon revbump for boost-libs 2021-04-21 13:24:06 +00:00
nap *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
napshare *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
nasd *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
nats-server Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
nbtscan
ncdc ncdc: actually wants ncursesw 2021-05-14 13:04:15 +00:00
ncftp3 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
ncgopher revbump for textproc/icu 2021-04-21 11:40:12 +00:00
ndiff nmap ndiff zenmap: updated to 7.91 2021-04-16 06:55:33 +00:00
ndpi ndpi: updated to 3.4 2021-06-23 19:31:49 +00:00
nemesis
net-snmp *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
net6 revbump for boost-libs 2021-04-21 13:24:06 +00:00
netatalk3 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
netatalk22 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
netbsd-iscsi-initiator netbsd-iscsi-initiator: needs fuse 2021-05-14 12:34:11 +00:00
netbsd-iscsi-target
netcat all: migrate some SourceForge homepage URLs back from https to http 2020-01-26 05:26:08 +00:00
netcat-openbsd all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
netcat6 net/netcat6: Fix -t short option lost from optstring. 2020-08-27 14:24:08 +00:00
netdisco *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
netgroup
netname Switch to new site in MASTER_SITES, and set MAINTAINER to pkgsrc-users. 2019-12-01 05:18:55 +00:00
netpipes
nfdump revbump for textproc/icu 2021-04-21 11:40:12 +00:00
ngrep *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
nicotine-plus add net/nicotine-plus. 2021-01-01 16:35:23 +00:00
nicovideo-dl Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
nidentd
nipper
nload
nmap nmap ndiff zenmap: updated to 7.91 2021-04-16 06:55:33 +00:00
nng nng: add a buildlink3.mk file 2021-05-13 18:57:27 +00:00
nocol *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
nprobe
ns *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
nsca-ng *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
nsd nsd: Update to 4.3.5 2021-02-27 18:54:27 +00:00
nslint all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
nstx
ntop revbump for textproc/icu 2021-04-21 11:40:12 +00:00
ntopng Revbump for MySQL default change 2021-06-23 20:33:06 +00:00
ntp4 net/ntp4: Drop MESSAGE (as pointer to docs) 2021-06-04 11:55:45 +00:00
nyx nyx: add missing dependency on py-curses 2021-06-15 15:28:22 +00:00
obfs4proxy Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
ocaml-conduit Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-domain-name Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-ipaddr Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-protocol_version_header Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocamlnet revbump for boost-libs 2021-04-21 13:24:06 +00:00
ocsinventory-agent *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
ocsync revbump for boost-libs 2021-04-21 13:24:06 +00:00
oidentd
oinkmaster *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
omniNotify *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
omniORB Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
openag mark packages that fail with -Werror=char-subscripts 2020-05-20 06:09:03 +00:00
openconnect revbump for textproc/icu 2021-04-21 11:40:12 +00:00
openh323 *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
openntpd
openresolv update master site 2020-12-03 14:10:12 +00:00
openrrcp Add OpenRRCP 0.2.1 2020-04-28 15:22:42 +00:00
openrsync
openslp *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
opentracker opentracker: needs zlib 2021-05-14 12:28:10 +00:00
openvmps *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
openvpn Recursive revbump for security/mbedtls 2021-05-02 08:16:40 +00:00
openvpn-acct-wtmpx openvpn: updated to 2.5.2 2021-04-22 13:53:15 +00:00
openvpn-nagios openvpn: updated to 2.5.2 2021-04-22 13:53:15 +00:00
ORBit2 *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
ortp *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
overnet
owncloudclient revbump for textproc/icu 2021-04-21 11:40:12 +00:00
p5-Cisco-Abbrev *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Danga-Socket *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Data-Stream-Bulk *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-DNS-LDNS *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-DNS-ZoneParse *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-File-Rsync *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-File-RsyncP *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-FusionInventory-Agent *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Geo-IP *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Geo-IPfree *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-GeoIP2 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-IO-Interface *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-IO-SessionData *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-IO-Socket-INET6 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-IO-Socket-Multicast *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-IO-Socket-Timeout *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-IP-Country *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MaxMind-DB-Common *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MaxMind-DB-Reader *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MaxMind-DB-Writer *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-Akismet *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-Amazon *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-Amazon-S3 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-AMQP *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-Bind *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-Bonjour *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-CIDR-Lite *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-CIDR-Set *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-Daemon *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-DBus *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-Dev-MIBLoadOrder *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-DHCP *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-DNS *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-DNS-Resolver-Mock *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-DNS-Resolver-Programmable *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-DNS-Zone-Parser *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-DNSServer *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-Domain-TLD *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-DRI *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-eBay *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-Frame *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-Frame-Device *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-Frame-Dump *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-Frame-Layer-ICMPv6 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-Frame-Layer-IPv6 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-Frame-Simple *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-FTPSSL *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-GitHub *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-Google-AuthSub *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-Google-Code *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-Ident *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-INET6Glue *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-Interface *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-IP *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-IPv4Addr *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-IPv6Addr *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-Jifty *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-LDAP-Server *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-Libdnet *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-Libdnet6 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-LibIDN *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-MAC *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-NBName *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-OAuth *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-OpenID-Common *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-OpenID-Consumer *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-Packet *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-Patricia *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-Pcap *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-RawIP *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-Server *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-Server-SS-PreFork *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-SFTP-Foreign *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-SMTP-TLS *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-SNMP *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-SNMP-Mixin *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-SSH-Expect *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-Stomp *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-Telnet *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-Telnet-Cisco *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-TFTP *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-Trac *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-Twitter *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-Works *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-Write *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-XMPP *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-XWhois *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-Z3950-ZOOM *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-NetAddr-IP *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-NetAddr-MAC *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-NetPacket *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Nmap-Parser *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-POE-Component-Client-DNS *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-POE-Component-Client-Ident *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-POE-Component-SNMP *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-RADIUS *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-RadiusPerl *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Regexp-Common-net-CIDR *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Regexp-IPv6 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-RPC-XML *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-RT-Client-REST *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-SNMP-Info *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-SNMP-MIB-Compiler *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-SNMP_Session *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-SOAP-Lite *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Socket6 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-DNS *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-RequiresInternet *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-TCP *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-WebService-Google-Reader *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-WebService-MusicBrainz *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-X500-DN *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-XML-RPC *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-XMLRPC-Lite *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Zabbix-Sender *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
packit *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
paris-traceroute Rename log to mylog to avoid conflict with math.h. 2020-03-27 20:52:19 +00:00
parpd
partysip all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
pchar *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
pconsole
pear-Net_DIME
pear-Net_IDNA2
pear-Net_LDAP2
pear-Net_LDAP3
pear-Net_Sieve net/pear-Net_Sieve: update to 1.4.5 2021-06-02 15:39:05 +00:00
pear-Net_SMTP net/pear-Net_SMTP: update to 1.10.0 2021-03-21 03:30:04 +00:00
pear-Net_Socket
pear-Net_URL revert previous because the master site produces mutable output for 2020-08-16 23:00:10 +00:00
pear-Net_URL2
pear-SOAP
pen *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
perlbal *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
pfnet *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
phetch net/phetch: update to 1.1.0 2020-11-17 11:52:41 +00:00
php-baikal Switch to use lang/php/json.mk. 2021-03-07 13:21:56 +00:00
php-ftp php-ftp: php7 requirement to build with SSL 2020-05-05 14:08:15 +00:00
php-geoip
php-snmp *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
php-soap revbump for textproc/icu 2021-04-21 11:40:12 +00:00
php-sockets
php-xmlrpc revbump for textproc/icu 2021-04-21 11:40:12 +00:00
php-yaz revbump for textproc/icu 2021-04-21 11:40:12 +00:00
pim6dd Mark some warnings as non-fatal for clang. 2020-03-18 17:59:20 +00:00
pim6sd Mark some warnings as non-fatal for clang. 2020-03-18 17:59:20 +00:00
pload Reset maintainer as requested. 2020-04-12 23:59:41 +00:00
podcastdl revbump for boost-libs 2021-04-21 13:24:06 +00:00
poink
poptop
portmap
powerdns revbump for boost-libs 2021-04-21 13:24:06 +00:00
powerdns-geoip
powerdns-ldap net/powerdns-ldap: Fix dependency on mit-krb5 2020-07-03 12:33:14 +00:00
powerdns-mysql Revbump for MySQL default change 2021-06-23 20:33:06 +00:00
powerdns-odbc net/powerdns-odbc: Fix PLIST after update to 4.3.0 2020-07-03 11:31:22 +00:00
powerdns-pgsql net/powerdns-pgsql: Update for PowerDNS 4.3.0 2020-07-02 13:03:56 +00:00
powerdns-recursor net/powerdns-recursor: Update to 4.4.2 2020-12-14 11:18:25 +00:00
pppd *: remove dead download sites 2021-04-21 15:37:12 +00:00
pptp *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
proftpd *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
proftpd-geoip
proftpd-ldap *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
proftpd-memcached
proftpd-mysql Revbump for MySQL default change 2021-06-23 20:33:06 +00:00
proftpd-odbc
proftpd-postgresql
proftpd-sqlite revbump for textproc/icu 2021-04-21 11:40:12 +00:00
proxycheck all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
proxytunnel proxytunnel: Fix build with OpenSSL 1.1 2020-03-01 18:20:33 +00:00
publicfile Only a few djb-nonlicense packages remain. Retire DJB_RESTRICTED, 2020-11-19 08:11:18 +00:00
publicfile-run
puf *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
pulledpork *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
pure-ftpd Revbump for MySQL default change 2021-06-23 20:33:06 +00:00
pxe
py-adns
py-aio-pika py-aio-pika: updated to 6.7.1 2020-12-04 14:13:32 +00:00
py-aioresponses py-aioresponses: updated to 0.7.2 2021-05-19 11:03:46 +00:00
py-aiormq py-aiormq: updated to 3.2.3 2020-07-29 10:07:54 +00:00
py-aiorpcX Give up maintainership of net/py-aiorpcX 2020-10-17 14:09:25 +00:00
py-amqp py-amqp: updated to 5.0.6 2021-05-07 17:58:09 +00:00
py-apache-libcloud py-apache-libcloud: updated to 3.0.0 2020-05-17 19:06:47 +00:00
py-asyncio-nats-client net/py-asyncio-nats-client: Import version 0.10.0 2020-01-08 17:06:50 +00:00
py-awscli py-awscli: updated to 1.19.93 2021-06-14 13:16:03 +00:00
py-beanstalkc
py-bonjour
py-boto
py-boto3 py-boto3: updated to 1.17.93 2021-06-14 13:13:28 +00:00
py-botocore py-botocore: updated to 1.20.93 2021-06-14 13:11:45 +00:00
py-caldav
py-cares
py-celery py-celery: updated to 5.0.5 2021-05-07 18:02:57 +00:00
py-cymruwhois
py-digitalocean py-digitalocean: updated to 1.16.0 2021-02-09 07:24:38 +00:00
py-dns py-dns: remove falsely added requests and requests-toolbelt 2020-04-30 12:23:24 +00:00
py-dnsdiag py-dnsdiag: updated to 1.7.0 2020-08-03 14:11:32 +00:00
py-dpkt py-dpkt: update to version 1.9.4 2020-09-29 02:40:24 +00:00
py-dropbox py-dropbox: specific versions for test-runner dependency 2021-04-22 09:46:37 +00:00
py-ec2instanceconnectcli net/py-ec2instanceconnectcli: Import py-ec2instanceconnectcli-1.0.2 2021-06-10 08:16:49 +00:00
py-flower py-flower: updated to 0.9.7 2021-05-08 06:00:00 +00:00
py-foolscap all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
py-gandi.cli Explicitly read file as UTF-8 2020-05-31 20:50:18 +00:00
py-gcs-oauth2-boto-plugin Update py-gcs-oauth2-boto-plugin to 2.7. 2020-10-16 07:00:57 +00:00
py-GeoIP
py-gevent
py-geventhttpclient
py-google *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
py-google-cloud-sdk py-google-cloud-sdk: Depends on py-sqlite3. 2020-11-27 20:32:51 +00:00
py-grpcio py-grpcio py-grpcio-testing py-grpcio-tools: updated to 1.38.1 2021-06-29 13:32:42 +00:00
py-grpcio-testing py-grpcio py-grpcio-testing py-grpcio-tools: updated to 1.38.1 2021-06-29 13:32:42 +00:00
py-grpcio-tools py-grpcio py-grpcio-testing py-grpcio-tools: updated to 1.38.1 2021-06-29 13:32:42 +00:00
py-gsutil Update py-gsutil to 4.53. 2020-10-16 07:41:10 +00:00
py-hatop
py-hpack py-hpack: remove patch removed from distinfo in 4.0.0 update 2020-10-08 07:47:02 +00:00
py-ifaddr (net/py-ifaddr) fix build for py3, Explicitly read file as UTF-8, tks joerg@ 2020-06-20 02:08:55 +00:00
py-impacket py-impacket: updated to 0.9.22 2021-01-20 09:08:46 +00:00
py-IP py-IP: updated to 1.01 2021-01-03 21:52:16 +00:00
py-ipaddress
py-ipcalc py-ipcalc: Sort PLIST 2020-05-26 21:43:05 +00:00
py-irclib py-irclib: remove handling for now unsupported Python versions 2021-02-24 01:17:24 +00:00
py-junos-eznc *: switch to versioned_dependencies.mk for py-setuptools 2020-08-31 23:07:00 +00:00
py-kenosis *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
py-kombu py-kompu: shuffle PYTHON_VERSIONS_INCOMPATIBLE 2021-05-08 06:01:18 +00:00
py-ldapdomaindump py-ldapdomaindump: updated to 0.9.3 2020-06-18 17:02:45 +00:00
py-lexicon py-lexicon: updated to 3.6.1 2021-07-02 09:49:42 +00:00
py-libdnet
py-libpcap *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
py-magic-wormhole py-magic-wormhole: add missing test dependencies 2021-06-27 16:37:18 +00:00
py-magic-wormhole-mailbox-server py-magic-wormhole-mailbox-server: does not support python 2.7 2021-06-28 07:09:54 +00:00
py-magic-wormhole-transit-relay net/py-magic-wormhole-transit-relay: import py-magic-wormhole-transit-relay-0.2.1 2021-06-27 16:25:23 +00:00
py-medusa
py-metar
py-moto
py-namecheap
py-ncclient py-ncclient: updated to 0.6.10 2021-03-07 07:46:01 +00:00
py-netaddr py-netaddr: updated to 0.8.0 2020-07-07 05:33:30 +00:00
py-netifaces py-netifaces: updated to 0.11.0 2021-06-01 05:10:05 +00:00
py-netsnmp
py-nyx
py-omniORBpy *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
py-onionbalance *: switch to versioned_dependencies.mk for py-setuptools 2020-08-31 23:07:00 +00:00
py-ORBit *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
py-paho-mqtt net/py-paho-mqtt: Update to 1.5.1 2020-10-15 20:22:48 +00:00
py-pamqp py-pamqp: updated to 3.0.1 2020-09-14 19:36:16 +00:00
py-pcap
py-pika py-pika: updated to 1.2.0 2021-02-05 22:19:25 +00:00
py-portend pytest from versioned depends 2020-05-16 18:00:31 +00:00
py-prometheus_client py-prometheus_client: updated to 0.10.1 2021-05-08 05:51:42 +00:00
py-ptt all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
py-pychromecast py-pychromecast: add PYTHON_VERSIONS_INCOMPATIBLE for 2.7 2020-02-02 00:17:23 +00:00
py-pyftpdlib py-pyftpdlib: updated to 1.5.6 2020-02-17 11:41:48 +00:00
py-pylint-celery
py-pynng py-pynng: add more missing dependencies. 2021-05-20 06:16:28 +00:00
py-pypiserver py-pypiserver: updated to 1.4.2 2021-01-11 10:31:59 +00:00
py-pysendfile py-pysendfile: not for NetBSD 2020-08-18 05:32:56 +00:00
py-python-socks py-python-socks: updated to 1.2.4 2021-03-31 09:21:26 +00:00
py-requestbuilder
py-responses py-responses: updated to 0.13.3 2021-04-28 09:58:03 +00:00
py-rpyc py-rpyc: update to version 4.1.2 2020-09-30 00:38:48 +00:00
py-rt py-rt: Update to 2.1.1 2021-04-17 09:43:54 +00:00
py-s3cmd all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
py-s3transfer py-s3transfer: updated to 0.4.2 2021-05-14 07:04:48 +00:00
py-sbws
py-scp py-scp: updated to 0.13.3 2020-12-09 16:51:17 +00:00
py-simplesoap
py-smb py-smb: updated to 1.2.7 2021-06-05 07:15:36 +00:00
py-smbc revbump for boost-libs 2021-04-21 13:24:06 +00:00
py-soaplib
py-soappy
py-socketpool
py-Socks py-Socks: updated to 1.7.1 2019-12-11 14:49:15 +00:00
py-socksipy-branch
py-softlayer py-softlayer: updated to 5.9.5 2021-06-10 07:33:32 +00:00
py-softlayer_messaging
py-stone py-stone: make py-test-runner a build dependency 2021-01-30 10:15:15 +00:00
py-subunit *: use py-hypothesis via versioned_dependencies.mk 2020-10-06 10:51:21 +00:00
py-tldextract py-tldextract: updated to 3.1.0 2020-11-27 19:36:27 +00:00
py-tweepy py-tweepy: updated to 3.10.0 2021-03-07 17:20:00 +00:00
py-twine *: switch to versioned_dependencies.mk for py-setuptools 2020-08-31 23:07:00 +00:00
py-twisted *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
py-twisted-docs
py-twython No longer supports Python 2.7 2020-05-14 19:16:23 +00:00
py-txamqp py-txamqp: updated to 0.8.2 2019-12-03 17:19:01 +00:00
py-txtorcon py-txtorcon: updated to 20.0.0 2020-05-16 17:55:38 +00:00
py-xandikos py-xandikos: updated to 0.2.6 2021-03-21 07:50:52 +00:00
py-xmm7360 py-xmm7360: Convert to PYTHON_VERSIONS_INCOMPATIBLE 2020-12-30 12:32:41 +00:00
py-zeep py-zeep: updated to 4.0.0 2020-12-07 15:38:29 +00:00
py-zeroconf py-zeroconf: updated to 0.32.0 2021-07-02 09:54:09 +00:00
py-zmq py-zmq: updated to 19.0.2 2020-08-03 13:41:49 +00:00
pygopherd Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
qadsl
qbittorrent qbittorrent: updated to 4.3.6 2021-07-02 09:24:30 +00:00
quagga *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
queryperf queryperf: remove dead links 2021-04-24 20:09:45 +00:00
quvi revbump for boost-libs 2021-04-21 13:24:06 +00:00
R-pbdZMQ
R-pingr (net/R-pingr) Correct PATH for tex-inconsolata 2020-08-01 13:11:51 +00:00
ra-rtsp-proxy
rabbiter Remove RUBY_VERSIONS_INCOMPATIBLE for ruby24. 2020-05-21 16:04:21 +00:00
rabbitmq rabbitmq: updated to 3.8.18 2021-06-29 06:48:05 +00:00
rabbitmq-c rabbitmq-c: updated to 0.11.0 2021-04-05 11:48:43 +00:00
Radicale Radicale: include rationale for python3, fix pkglint warning about 2021-01-16 20:24:16 +00:00
Radicale2 Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
radiusclient-ng
radsecproxy (net/radsecproxy) regen PLIST 2021-06-05 02:35:52 +00:00
rancid *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
rbldnsd all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
rclone Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
rdesktop revbump for boost-libs 2021-04-21 13:24:06 +00:00
rdist6
remmina remmina: Update to 1.4.17 2021-05-30 05:09:50 +00:00
restclient-ui
rinetd
rootprobe
rp-l2tp
rp-pppoe rp-pppoe: create OPSYS PLISTs 2021-05-15 06:51:16 +00:00
rsync rsync: updated to 3.2.3 2020-08-07 08:33:37 +00:00
rt4-cli *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
rtmpdump revbump for boost-libs 2021-04-21 13:24:06 +00:00
rtorrent revbump for boost-libs 2021-04-21 13:24:06 +00:00
ruby-addressable net/ruby-addressable: add "USE_LANGUAGES= # none" 2020-06-21 15:48:47 +00:00
ruby-amq-client
ruby-amq-protocol net/ruby-amq-protocol: update to 2.3.2 2020-09-14 13:28:15 +00:00
ruby-amqp
ruby-connection_pool net/ruby-connection_pool: update to 2.2.5 2021-05-09 04:37:23 +00:00
ruby-dnsruby net/ruby-dnsruby: update to 1.61.5 2021-01-11 14:10:25 +00:00
ruby-domain_name
ruby-em-socksify
ruby-ffi-rzmq Add "USE_LANGUAGES= # none" for pure Ruby packages. 2020-09-20 15:44:03 +00:00
ruby-ffi-rzmq-core Add "USE_LANGUAGES= # none" for pure Ruby packages. 2020-09-20 15:44:03 +00:00
ruby-icmp
ruby-ipaddress
ruby-net-dhcp
ruby-net-ldap net/ruby-net-ldap: update to 0.17.0 2021-01-11 14:13:01 +00:00
ruby-net-ping net/ruby-net-ping: update to 2.0.8 2020-06-18 16:26:43 +00:00
ruby-netaddr net/ruby-netaddr: update to 2.0.4 2020-03-24 15:06:30 +00:00
ruby-netrc
ruby-network_interface
ruby-nio4r net/ruby-nio4r: update to 2.5.7 2021-03-07 09:52:59 +00:00
ruby-pcaprub Mark these packages Ruby 3.0 incompatible 2021-02-14 15:09:29 +00:00
ruby-pluggaloid net/ruby-pluggaloid: add USE_LANGUAGES 2020-09-14 16:57:38 +00:00
ruby-proxifier
ruby-public_suffix net/ruby-public_suffix: update to 4.0.6 2020-09-14 13:37:58 +00:00
ruby-recog net/ruby-recog: update to 2.3.20 2021-05-30 11:14:15 +00:00
ruby-ruby_smb net/ruby-ruby_smb: update to 2.0.10 2021-05-30 11:24:41 +00:00
ruby-rubytter
ruby-slack-api
ruby-snmp net/ruby-snmp: update to 1.3.2 2020-03-24 15:30:10 +00:00
ruby-soap4r
ruby-stompserver
ruby-train-core net/ruby-train-core: update to 3.7.2 2021-05-30 11:27:04 +00:00
ruby-train-winrm net/ruby-train-winrm: update to 0.2.12 2021-02-03 14:29:18 +00:00
ruby-tw all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
ruby-twitter net/ruby-twitter: update to 7.0.0 2020-06-21 15:26:53 +00:00
ruby-twitter-stream
ruby-twitter-text net/ruby-twitter-text: update to 3.1.0 2020-06-21 15:24:49 +00:00
ruby-twitter-text-simpleidn
ruby-winrm net/ruby-winrm: update to 2.3.6 2021-02-03 14:35:28 +00:00
ruby-winrm-elevated net/ruby-winrm-elevated: add package version 1.2.3 2021-02-03 14:32:24 +00:00
ruby-winrm-fs net/ruby-winrm-fs: update to 1.3.5 2020-09-14 13:51:20 +00:00
ruby-xdr net/ruby-xdr: update to 3.0.2 2021-01-13 15:08:19 +00:00
s6-dns Update to 2.3.5.1. From the changelog: 2021-04-26 15:05:09 +00:00
s6-networking Update to 2.4.1.1. From the changelog: 2021-04-26 15:05:30 +00:00
sacc sacc: Update to 1.03 2021-01-06 14:26:03 +00:00
samba *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
samba4 samba4: downgrade to 4.13.9, as discussed on netbsd-users@ 2021-06-22 09:36:41 +00:00
sayaka sayaka: needs libbsd on non-bsd systems 2021-05-14 12:11:55 +00:00
scamper all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
scapy scapy: update DESCR 2021-05-16 19:58:17 +00:00
scdp
scli *: remove dead download link 2021-04-24 11:40:49 +00:00
sdig *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
sdist Switch to new site in MASTER_SITES, and set MAINTAINER to pkgsrc-users. 2019-12-01 05:18:55 +00:00
SDL2_net *: revbump for libsndfile 2020-08-18 17:57:24 +00:00
SDL_net all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
sendfile all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
ser Revbump for MySQL default change 2021-06-23 20:33:06 +00:00
sharity-light
sipcalc all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
siproxd siproxd: needs sqlite3 2021-05-14 12:10:53 +00:00
sipsak *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
sitescooper *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
slurm update master sites 2020-12-03 13:04:11 +00:00
smokeping *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
sniffit
sniproxy
snmptt *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
snort revbump for boost-libs 2021-04-21 13:24:06 +00:00
socat net/socat: Update to 1.7.4.1 2021-01-10 22:07:28 +00:00
socket++
socks4
solaris-tap
speedtest-cli speedtest-cli: Update to 2.1.3 2021-04-08 16:53:01 +00:00
speedtouch
spegla *: remove dead download link 2021-04-25 06:47:52 +00:00
spread *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
spreadlogd *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
srsh Switch to new site in MASTER_SITES, and set MAINTAINER to pkgsrc-users. 2019-12-01 05:18:55 +00:00
sslh net/sslh: update to 1.21 2021-06-13 12:04:21 +00:00
ssmping
ssync Switch to new site in MASTER_SITES, and set MAINTAINER to pkgsrc-users. 2019-12-01 05:18:55 +00:00
stagit-gopher stagit-gopher: Update to 0.9.5 2021-03-14 19:10:46 +00:00
statzone statzone: update to 1.1.0. 2021-04-01 16:07:32 +00:00
stund *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
sup
syncffsd syncffsd: only for NetBSD 2020-03-16 13:42:15 +00:00
syncthing Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
syncthing-gtk revbump for textproc/icu 2021-04-21 11:40:12 +00:00
synergy synergy: clang build fix 2021-06-27 08:51:34 +00:00
sysmon *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
tacacs *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
tacacs-shrubbery *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
taskserver revbump for boost-libs 2021-04-21 13:24:06 +00:00
tcl-scotty *: remove dead download link 2021-04-24 11:40:49 +00:00
tcpdmerge
tcpdpriv
tcpdstat
tcpdump tcpdump: requires libpcap>=1.9.1 2020-06-14 19:35:38 +00:00
tcpflow revbump for boost-libs 2021-04-21 13:24:06 +00:00
tcpick *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
tcpillust *: remove dead links 2021-04-25 06:05:21 +00:00
tcpreplay tcpreplay: update to 4.3.4 2021-06-12 06:22:09 +00:00
tcpslice
tcptrace
tcptraceroute Update MAINTAINER 2020-01-07 10:37:04 +00:00
tcptraceroute6 tcptraceroute6: include signal.h for kill() 2020-11-30 12:49:23 +00:00
teamspeak-client all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
teamspeak-server all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
terraform Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
terraform-provider-archive Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
terraform-provider-aws Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
terraform-provider-kubernetes Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
terraform-provider-local Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
terraform-provider-null Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
terraform-provider-random Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
terraform-provider-template Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
terraform-provider-vultr Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
tigervnc tigervnc: fix dependency 2021-05-27 06:59:22 +00:00
tightvnc *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
tightvncviewer all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
tinc tinc: update to 1.0.36 2021-06-12 06:32:02 +00:00
tinydyndns Remove DJB_RESTRICTED, no longer used. 2020-11-19 09:35:38 +00:00
tinydyndns-run Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
tinyfugue tinyfugue: remove dead download link 2021-04-25 06:39:47 +00:00
tkined *: remove dead download link 2021-04-24 11:40:49 +00:00
tn5250
tnftp tnftp: Move editline support to a non-default option. 2020-06-02 12:17:20 +00:00
tnftpd tnftpd: Update to 20200704 2021-01-25 11:18:45 +00:00
tor tor: update to 0.4.6.6. 2021-07-01 07:42:38 +00:00
torrentutils *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
torsocks
totd
traceroute-as traceroute-as: remove dead download link 2021-04-24 20:08:28 +00:00
traceroute-nanog updated MASTER_SITES 2020-04-01 19:23:21 +00:00
trafshow
transmission revbump for boost-libs 2021-04-21 13:24:06 +00:00
transmission-gtk revbump for boost-libs 2021-04-21 13:24:06 +00:00
transmission-qt revbump for boost-libs 2021-04-21 13:24:06 +00:00
trickle trickle: disable FORTIFY to fix build 2021-04-22 09:43:31 +00:00
tsocks tsocks: Add support for Darwin. 2020-11-11 16:22:54 +00:00
tspc
ttt *: remove dead links 2021-04-25 06:05:21 +00:00
tvnjviewer all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
twittering-mode
u6rd
ucarp ucarp: remove dead links 2021-04-25 06:16:28 +00:00
ucspi-ipc *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
ucspi-proxy Fix SunOS build: add -lsocket. 2020-11-27 18:45:53 +00:00
ucspi-ssl *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
ucspi-tcp Remove DJB_RESTRICTED, no longer used. 2020-11-19 09:35:38 +00:00
ucspi-tcp6 Update to 1.12.3. From the changelog: 2021-04-03 19:34:06 +00:00
ucspi-tools ucspi: Fix build on NetBSD. 2020-11-30 12:41:41 +00:00
ucspi-unix Remove DJB_RESTRICTED, no longer used. 2020-11-19 09:35:38 +00:00
udns *: reset maintainer 2021-04-24 08:37:49 +00:00
udpcast *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
udptunnel udptunnel: update download link 2021-04-24 10:37:33 +00:00
uftp uftp: Update to 5.0 2020-11-24 13:25:14 +00:00
unbound revbump for boost-libs 2021-04-21 13:24:06 +00:00
unfs3 *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
unifi net/unii: Declare intention not to update to 6.2 right now 2021-06-01 15:04:12 +00:00
unison-snapshot net/unison-snapshot: Take MAINTAINERship 2021-06-24 15:16:09 +00:00
unison2.51 net/unison2.51: Update to 2.51.4 2021-06-24 15:24:56 +00:00
unworkable unworkable: Fix build with OpenSSL 1.1 2020-03-06 13:10:02 +00:00
upclient all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
upnpinspector Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
urlgfe revbump for boost-libs 2021-04-21 13:24:06 +00:00
userppp userppp: Disable werror again 2020-05-25 12:01:20 +00:00
uucp
vcheck *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
vde *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
vinagre *: Use the tools framework for itstool 2021-05-02 10:24:47 +00:00
vino *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
vnc *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
vncviewer
vnstat *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
vpnc *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
vpnc-script Update to 20210401. From the changelog: 2021-05-22 09:12:05 +00:00
vsftpd net/vsftpd: migrate homepage from http to https 2020-02-09 20:58:37 +00:00
vtun vtun: update to 3.0.4 2021-04-21 07:36:24 +00:00
wakeup
walker *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
wap-utils
waste
websocketpp
wget *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
wgetpaste all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
whatmask
whois3 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
whoson *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
wide-dhcpv6 net/wide-dhcpv6: clean up SUBST_FILES 2020-05-10 14:20:43 +00:00
wimon
wireguard-tools net/wireguard-tools: Fix minor issues 2020-09-18 14:58:14 +00:00
wireshark wireshark: updated to 3.4.6 2021-06-05 13:07:21 +00:00
wistumbler
wistumbler2 *: remove dead download location 2021-04-21 08:48:43 +00:00
wistumbler2-gtk *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
wmget revbump for boost-libs 2021-04-21 13:24:06 +00:00
wminet wminet: remove dead download link 2021-04-24 10:59:57 +00:00
wmnd wmnd: Update to 0.4.18 2020-11-24 11:41:23 +00:00
wmnet
wmpload
wol *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
wpa_gui revbump for textproc/icu 2021-04-21 11:40:12 +00:00
wpa_supplicant all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
x2vnc all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
xfce4-wavelan-plugin *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
xipdump
xl2tpd
xmftp
xorp Fix C++ code 2020-04-17 00:20:45 +00:00
xrmftp
xtraceroute
xymon revbump for textproc/icu 2021-04-21 11:40:12 +00:00
xymonclient update xymon and xymonclient to version 4.3.30 2021-03-14 14:26:12 +00:00
yafc Fix shell portability in m4 comment. 2020-03-26 21:53:31 +00:00
yale-tftpd
yaydl net/yaydl: update to 0.6.6 2021-06-21 07:11:55 +00:00
yaz revbump for textproc/icu 2021-04-21 11:40:12 +00:00
youtube-dl youtube-dl: Update to 20210606 2021-06-06 09:03:31 +00:00
ytalk all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
ywho Switch to new site in MASTER_SITES, and set MAINTAINER to pkgsrc-users. 2019-12-01 05:18:55 +00:00
zenmap nmap ndiff zenmap: updated to 7.91 2021-04-16 06:55:33 +00:00
zeroconf-ioslave revbump for boost-libs 2021-04-21 13:24:06 +00:00
zeromq Fix portability. 2020-03-18 17:59:51 +00:00
zsync
Makefile go-framestream: remove 2021-07-01 06:03:40 +00:00