From 052ce4458848174c04a6fce6f02cc6d6d3ccdbd7 Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Wed, 19 Aug 2026 00:49:04 -0400 Subject: sbolint: python hashed URL warning demoted to note. --- NEWS | 10 +++++++++- sbolint | 2 +- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index 10d3002..cd43811 100644 --- a/NEWS +++ b/NEWS @@ -1,14 +1,22 @@ The real ChangeLog is the git log. This is just a summary of the user-visible changes between releases. -New in 0.9.7: +New in 0.9.8: ============= +- Python hashed URL check now catches pypi.python.org, too. +- Python hashed URL check demoted to a note (too many of them in + the repo currently). + +New in 0.9.7.2: +=============== sbolint: - Check package name ($PRGNAM) against a list of packages included in Slackware. It's an error if $PRGNAM is already included in Slackware. It's a case-insensitive match, so e.g. a user package called "mplayer" would match Slackware's "MPlayer". +- Python URLs (files.pythonhosted.org) with 60-digit hash now trigger + a warning that shows short URL. New in 0.9.6.2: =============== diff --git a/sbolint b/sbolint index d0d9e6e..96c87af 100755 --- a/sbolint +++ b/sbolint @@ -1438,7 +1438,7 @@ sub check_pypi_url { # HTTPS transaction. $newurl = "https://files.pythonhosted.org/packages/source/$initial/$srcnam/$filename"; if($url ne $newurl) { - log_warning("$file: canonical pypi URL should be $newurl"); + log_note("$file: canonical pypi URL should be $newurl"); } } -- cgit v1.2.3