notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine
This referral link gives you 10% off a Fastmail.com account and gives me a discount on my Fastmail account.

Get notified when packages are built

A new feature has been added. FreshPorts already tracks package built by the FreeBSD project. This information is displayed on each port page. You can now get an email when FreshPorts notices a new package is available for something on one of your watch lists. However, you must opt into that. Click on Report Subscriptions on the right, and New Package Notification box, and click on Update.

Finally, under Watch Lists, click on ABI Package Subscriptions to select your ABI (e.g. FreeBSD:14:amd64) & package set (latest/quarterly) combination for a given watch list. This is what FreshPorts will look for.

non port: news/nzbhydra2/Makefile

Number of commits found: 20

Tuesday, 12 Dec 2023
16:38 Muhammad Moinur Rahman (bofh) search for other commits by this committer Author: Kreeblah
news/nzbhydra2: Update version 4.7.4=>5.3.3

Changelog: https://github.com/theotherp/nzbhydra2/releases/tag/v5.3.5

PR:             274418
Approved by:    submitter is maintainer
commit hash: e276e87ae4bf600e4899a21ad0f91984b4f89188 commit hash: e276e87ae4bf600e4899a21ad0f91984b4f89188 commit hash: e276e87ae4bf600e4899a21ad0f91984b4f89188 commit hash: e276e87ae4bf600e4899a21ad0f91984b4f89188 e276e87
Tuesday, 27 Jun 2023
19:34 Rene Ladan (rene) search for other commits by this committer
all: remove explicit versions in USES=python for "3.x+"

The logic in USES=python will automatically convert this to 3.8+ by
itself.

Adjust two ports that only had Python 3.7 mentioned but build fine
on Python 3.8 too.

finance/quickfix: mark BROKEN with PYTHON

libtool: compile:  c++ -DHAVE_CONFIG_H -I. -I../.. -I -I. -I.. -I../.. -I../C++
-DLIBICONV_PLUG -DPYTHON_MAJOR_VERSION=3 -Wno-unused-variable
-Wno-maybe-uninitialized -O2 -pipe -DLIBICONV_PLUG -fstack-protector-strong
-fno-strict-aliasing -DLIBICONV_PLUG -Wall -ansi
-Wno-unused-command-line-argument -Wpointer-arith -Wwrite-strings
-Wno-overloaded-virtual -Wno-deprecated-declarations -Wno-deprecated -std=c++0x
-MT _quickfix_la-QuickfixPython.lo -MD -MP -MF
.deps/_quickfix_la-QuickfixPython.Tpo -c QuickfixPython.cpp  -fPIC -DPIC -o
.libs/_quickfix_la-QuickfixPython.o
warning: unknown warning option '-Wno-maybe-uninitialized'; did you mean
'-Wno-uninitialized'? [-Wunknown-warning-option]
QuickfixPython.cpp:175:11: fatal error: 'Python.h' file not found
          ^~~~~~~~~~
1 warning and 1 error generated.

Reviewed by:	portmgr, vishwin, yuri
Differential Revision:	<https://reviews.freebsd.org/D40568>
commit hash: 3d9a815d9c5acbb71f4bb07738bdeab4879feacb commit hash: 3d9a815d9c5acbb71f4bb07738bdeab4879feacb commit hash: 3d9a815d9c5acbb71f4bb07738bdeab4879feacb commit hash: 3d9a815d9c5acbb71f4bb07738bdeab4879feacb 3d9a815
Thursday, 22 Dec 2022
19:34 Ronald Klop (ronald) search for other commits by this committer Author: Marcel Bischoff
news/nzbhydra2: update to v4.7.4

Summary:
- Add environment variable to suppress update dialog
- Update JDK to v17 to satisfy future requirement
- Maintainer change
- Remove build leftover

Changes: https://github.com/theotherp/nzbhydra2/blob/v4.7.4/changelog.md

PR:	268430
Approved by: pkubaj (mentor)
Differential Revision: https://reviews.freebsd.org/D37782
commit hash: 07e39d15a1c2589b2103f58aaaa6dd1640c2f7a8 commit hash: 07e39d15a1c2589b2103f58aaaa6dd1640c2f7a8 commit hash: 07e39d15a1c2589b2103f58aaaa6dd1640c2f7a8 commit hash: 07e39d15a1c2589b2103f58aaaa6dd1640c2f7a8 07e39d1
Thursday, 15 Dec 2022
08:35 Ronald Klop (ronald) search for other commits by this committer Author: Marcel Bischoff
news/nzbhydra2: update to 4.7.2

Summary:
* maintainer timeout on 15-dec-2022
* builds fine on aarch64

PR: 	267666
Approved by: rene (mentor)
Differential Revision: https://reviews.freebsd.org/D37632
commit hash: 57b24ef5db1faaccab5f09eb1f2c27978d000faa commit hash: 57b24ef5db1faaccab5f09eb1f2c27978d000faa commit hash: 57b24ef5db1faaccab5f09eb1f2c27978d000faa commit hash: 57b24ef5db1faaccab5f09eb1f2c27978d000faa 57b24ef
Wednesday, 7 Sep 2022
21:10 Stefan Eßer (se) search for other commits by this committer
Add WWW entries to port Makefiles

It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.

Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.

There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.

This commit implements such a proposal and moves one of the WWW: entries
of each pkg-descr file into the respective port's Makefile. A heuristic
attempts to identify the most relevant URL in case there is more than
one WWW: entry in some pkg-descr file. URLs that are not moved into the
Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr
files in order to preserve them.

There are 1256 ports that had no WWW: entries in pkg-descr files. These
ports will not be touched in this commit.

The portlint port has been adjusted to expect a WWW entry in each port
Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as
deprecated.

Approved by:		portmgr (tcberner)
commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 b7f0544
Tuesday, 12 Apr 2022
15:44 Tobias C. Berner (tcberner) search for other commits by this committer Author: Daniel Shafer
news/nzbhydra2: Update to 4.3.0

Changelog can be viewed at:
	https://github.com/theotherp/nzbhydra2/blob/master/changelog.md

Removed wrapper file as the upstream copy works with FreeBSD
without modification now.

Based on version by:	kreeblah@gmail.com
Differential Revision:	https://reviews.freebsd.org/D34808
commit hash: 0a1b3d8a13908c0a1244c610db2af29aa85ff1d4 commit hash: 0a1b3d8a13908c0a1244c610db2af29aa85ff1d4 commit hash: 0a1b3d8a13908c0a1244c610db2af29aa85ff1d4 commit hash: 0a1b3d8a13908c0a1244c610db2af29aa85ff1d4 0a1b3d8
Wednesday, 7 Apr 2021
08:09 Mathieu Arnold (mat) search for other commits by this committer
One more small cleanup, forgotten yesterday.
Reported by:	lwhsu
commit hash: cf118ccf875508b9a1c570044c93cfcc82bd455c commit hash: cf118ccf875508b9a1c570044c93cfcc82bd455c commit hash: cf118ccf875508b9a1c570044c93cfcc82bd455c commit hash: cf118ccf875508b9a1c570044c93cfcc82bd455c cf118cc
Tuesday, 6 Apr 2021
14:31 Mathieu Arnold (mat) search for other commits by this committer
Remove # $FreeBSD$ from Makefiles.
commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb 305f148
Saturday, 20 Mar 2021
07:57 tcberner search for other commits by this committer
news/nzbhydra2: Update to 3.13.1

Changelog:
	https://github.com/theotherp/nzbhydra2/blob/master/changelog.md

Submitted by:	Daniel Shafer <daniel@shafer.cc> (maintainer)
Differential Revision:	https://reviews.freebsd.org/D29344
Original commitRevision:568850 
Sunday, 17 Jan 2021
01:44 pkubaj search for other commits by this committer
news/nzbhydra2: enable on powerpc64le
Original commitRevision:561783 
Friday, 15 Jan 2021
20:30 pkubaj search for other commits by this committer
news/nzbhydra2: enable on powerpc64

MFH:		2021Q1
Original commitRevision:561666 
Thursday, 1 Oct 2020
16:13 tcberner search for other commits by this committer
news/nzbhydra2: Update to 2.29.1

Changelog can be viewed at:
	https://github.com/theotherp/nzbhydra2/blob/master/changelog.md

Submitted by:	Daniel Shafer <daniel@shafer.cc> (maintainer)
Differential Revision:	https://reviews.freebsd.org/D26625
Original commitRevision:550848 
Wednesday, 15 Jul 2020
15:47 tcberner search for other commits by this committer
news/nzbhydra2: Update to to 2.25.0

Changelog can be viewed at:
	https://github.com/theotherp/nzbhydra2/blob/master/changelog.md

nzbhydra2wrapper.py has been replaced with the updated nzbhydra2wrapperPy3.py
script
supporting Python 3.5 or higher and removing Python 2 support.

Submitted by:	Daniel Shafer <daniel@shafer.cc> (maintainer)
Differential Revision:	https://reviews.freebsd.org/D25674
Original commitRevision:542267 
Sunday, 8 Mar 2020
17:01 antoine search for other commits by this committer
Deprecate some ports using deprecated version of python

With hat:	portmgr
Original commitRevision:528058 
Wednesday, 9 Oct 2019
01:01 glewis search for other commits by this committer
* Update to 2.7.2
* Use DISTVERSION in the packing list
* Update JAVA_VERSION to not use deprecated versions

PR:		241108
Submitted by:	Daniel Shafer <daniel@shafer.cc> (maintainer)
Original commitRevision:514109 
Friday, 10 May 2019
04:31 tcberner search for other commits by this committer
news/nzbhydra2: Update to 2.6.2

- USE flag for python changed to python:2.7
  as 3.x is not supported at this time.

Changelog can be viewed at:
	https://github.com/theotherp/nzbhydra2/blob/master/changelog.md

Submitted by:	Daniel Shafer <daniel shafer cc> (maintainer)
Differential Revision:	https://reviews.freebsd.org/D20164
Original commitRevision:501152 
Sunday, 17 Mar 2019
07:31 tcberner search for other commits by this committer
news/nzbhydra2: Update to 2.3.16

- All updates between 2.3.6 and 2.3.16 are breaks and fixes for better SSL
support.

Submitted by:	Daniel Shafer <daniel shafer cc> (maintainer)
Differential Revision:	https://reviews.freebsd.org/D19609
Original commitRevision:496017 
Friday, 8 Feb 2019
22:45 tcberner search for other commits by this committer
news/nzbhydra2: update to 2.3.6

- while here, also address the issue of the missing data directory

PR:		235545
Submitted by:	Daniel Shafer <daniel@shafer.cc> (maintainer)
Differential Revision:	https://reviews.freebsd.org/D19091
Original commitRevision:492464 
Sunday, 3 Feb 2019
09:48 tcberner search for other commits by this committer
news/nzbhydra2: update to 2.3.4

* Fix: Move cancel button in dialog shown while searching because you're all too
slow to click it.
* Fix: Prevent database trace file becoming too large
* Fix: Keep less gclog files in the log folder

Submitted by:	Daniel Shafer <daniel shafer cc>
Differential Revision:	https://reviews.freebsd.org/D19069
Original commitRevision:492038 
Tuesday, 29 Jan 2019
20:14 tcberner search for other commits by this committer
[NEW PORT] news/nzbhydra2: Usenet meta search

NZBHydra 2 is a meta search for NZB indexers. It provides easy access to a
number of raw and newznab based indexers. You can search all your indexers
from one place and use it as an indexer source for tools like Sonarr,
Radarr or CouchPotato.

WWW: https://github.com/theotherp/nzbhydra2

PR:		234537
Submitted by:	Daniel Shafer <daniel shafer cc>
Differential_Revision:	https://reviews.freebsd.org/D18704
Original commitRevision:491596 

Number of commits found: 20