Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions Formula/h/hfsutils.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ class Hfsutils < Formula
sha256 "bc9d22d6d252b920ec9cdf18e00b7655a6189b3f34f42e58d5bb152957289840"
license "GPL-2.0-or-later"

livecheck do
url "ftp://ftp.mars.org/pub/hfs/"
regex(/hfsutils[._-]v?(\d+(?:\.\d+)+)\.t/i)
strategy :page_match
end

no_autobump! because: :requires_manual_review

bottle do
Expand Down
7 changes: 6 additions & 1 deletion Formula/i/icon-naming-utils.rb
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
class IconNamingUtils < Formula
desc "Script to handle icon names in desktop icon themes"
homepage "https://specifications.freedesktop.org/icon-naming-spec/icon-naming-spec-latest.html"
homepage "https://specifications.freedesktop.org/icon-naming/latest/"
# Upstream seem to have enabled by default SSL/TLS across whole domain which
# is problematic when the cert is for www rather than a wildcard or similar.
# url "http://tango.freedesktop.org/releases/icon-naming-utils-0.8.90.tar.gz"
url "https://deb.debian.org/debian/pool/main/i/icon-naming-utils/icon-naming-utils_0.8.90.orig.tar.gz"
sha256 "044ab2199ed8c6a55ce36fd4fcd8b8021a5e21f5bab028c0a7cdcf52a5902e1c"
license "GPL-2.0-or-later"

livecheck do
url :homepage
regex(/Version\s+v?(\d+(?:\.\d+)+)/i)
end

no_autobump! because: :requires_manual_review

bottle do
Expand Down
5 changes: 0 additions & 5 deletions Formula/m/mikutter.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,6 @@ class Mikutter < Formula
license "MIT"
head "git://mikutter.hachune.net/mikutter.git", branch: "master"

livecheck do
url "https://mikutter.hachune.net/download"
regex(/href=.*?mikutter.?v?(\d+(?:\.\d+)+)\.t/i)
end

no_autobump! because: :requires_manual_review

bottle do
Expand Down
6 changes: 2 additions & 4 deletions Formula/r/rpm.rb
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,9 @@ class Rpm < Formula
end
end

# Upstream uses a 90+ patch to indicate prerelease versions (e.g., the
# tarball for "RPM 4.19 ALPHA" is `rpm-4.18.90.tar.bz2`).
livecheck do
url "https://rpm.org/download.html"
regex(/href=.*?rpm[._-]v?(\d+\.\d+(?:\.(?:\d|[1-8]\d+)(?:\.\d+)*))\.t/i)
url "https://rpm.org/releases/"
regex(/RPM\s+v?(\d+(?:\.\d+)+)/i)
end

no_autobump! because: :requires_manual_review
Expand Down
Loading