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: net/py-miniupnpc/Makefile

Number of commits found: 22

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
Wednesday, 29 Sep 2021
19:58 Bernhard Froehlich (decke) search for other commits by this committer
net/py-miniupnpc: Add CPE information

Approved by:	portmgr (blanket)
commit hash: 835fd6ce3a0b940898dcf20ac42244bae7a507a6 commit hash: 835fd6ce3a0b940898dcf20ac42244bae7a507a6 commit hash: 835fd6ce3a0b940898dcf20ac42244bae7a507a6 commit hash: 835fd6ce3a0b940898dcf20ac42244bae7a507a6 835fd6c
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
Monday, 28 Dec 2020
23:02 antoine search for other commits by this committer
Drop python 2.7 support from a few ports

With hat:	portmgr
Original commitRevision:559531 
Thursday, 24 Dec 2020
13:46 kai search for other commits by this committer
Relax hardcoded paths to fix build with Python 3.8.7

Since r558913 Python 3.8 incorporates BPO-42604 [1] which changed the
shared libs naming scheme.  This means "EXT_SUFFIX" is now derived from
SOABI and yields with Python 3.8 to ".cpython-38.so" instead of ".so".

The affected ports strip the libaries in the "post-install" target via
hardcoded path(s) and the build fails at the end because the new extension
is not expected at this place.

Remedy the issue by adding wildcards to these paths.  This should also
prepare the ports for future Python releases, which will use the new shared
libs naming scheme.

[1] https://bugs.python.org/issue42604

PR:		252057
Reported by:	John Kennedy
Reviewed by:	fluffy, koobs
Approved by:	koobs (python)
Original commitRevision:559094 
Wednesday, 9 May 2018
05:37 dinoex search for other commits by this committer
- update to miniupnpc 2.1
PR:		228050
Submitted by:	Hung-Yi Chen

- fix python build
- add LICENSE for slave port
- make portlint happier

- bump PORTREVISION on ports using the shared lib
Original commitRevision:469430 
Saturday, 6 Jan 2018
10:02 mat search for other commits by this committer
Remove the use of submake, and use the parent's port shared library
instead.

While there, remove an obsolete sed line that does not match anything.

Sponsored by:	Absolight
Original commitRevision:458238 
09:02 antoine search for other commits by this committer
Fix after empty FLAVOR as make argument was forbidden
Original commitRevision:458235 
Thursday, 30 Nov 2017
15:50 mat search for other commits by this committer
Convert Python ports to FLAVORS.

  Ports using USE_PYTHON=distutils are now flavored.  They will
  automatically get flavors (py27, py34, py35, py36) depending on what
  versions they support.

  There is also a USE_PYTHON=flavors for ports that do not use distutils
  but need FLAVORS to be set.  A USE_PYTHON=noflavors can be set if
  using distutils but flavors are not wanted.

  A new USE_PYTHON=optsuffix that will add PYTHON_PKGNAMESUFFIX has been
  added to cope with Python ports that did not have the Python
  PKGNAMEPREFIX but are flavored.

  USES=python now also exports a PY_FLAVOR variable that contains the
  current python flavor.  It can be used in dependency lines when the
  port itself is not python flavored.  For example, deskutils/calibre.

  By default, all the flavors are generated.  To only generate flavors
  for the versions in PYTHON2_DEFAULT and PYTHON3_DEFAULT, define
  BUILD_DEFAULT_PYTHON_FLAVORS in your make.conf.

  In all the ports with Python dependencies, the *_DEPENDS entries MUST
  end with the flavor so that the framework knows which to build/use.
  This is done by appending '@${PY_FLAVOR}' after the origin (or
  @${FLAVOR} if in a Python module with Python flavors, as the content
  will be the same).  For example:

    RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR}

PR:		223071
Reviewed by:	portmgr, python
Sponsored by:	Absolight
Differential Revision:	https://reviews.freebsd.org/D12464
Original commitRevision:455210 
Tuesday, 26 Sep 2017
14:14 mat search for other commits by this committer
Fix ports setting WRKDIR themselves to use the new _WRKDIR instead of
the litteral "work".

I think it should be really safe to remove both instances because they
they point to directories that are empty anyway.

With hat:	portmgr
Sponsored by:	Absolight
Original commitRevision:450664 
Friday, 1 Apr 2016
14:16 mat search for other commits by this committer
Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.

With hat:	portmgr
Sponsored by:	Absolight
Original commitRevision:412348 
Sunday, 28 Feb 2016
09:32 dinoex search for other commits by this committer
- Makefile.local for slave ports is included by bsd.port.mk r397519
Original commitRevision:409731 
Thursday, 5 Nov 2015
21:00 amdmi3 search for other commits by this committer
- Switch to USE_PYTHON=autoplist to fix stage-qa problem with .egg-info files
handling

Approved by:	portmgr blanket
Original commitRevision:400869 
Saturday, 11 Oct 2014
09:12 dinoex search for other commits by this committer
- update miniupnpc to 1.9
- bump users of shared lib version
PR:		194031
Original commitRevision:370628 
Saturday, 21 Sep 2013
11:06 dinoex search for other commits by this committer
- fix misplaced NO_STAGE in slaveports and ifdefs
Original commitRevision:327804 
Friday, 20 Sep 2013
22:10 bapt search for other commits by this committer
Add NO_STAGE all over the place in preparation for the staging support (cat:
net)
Original commitRevision:327755 
Saturday, 26 Jan 2013
16:34 dinoex search for other commits by this committer
- cleanup header
Original commitRevision:311027 
Monday, 14 Nov 2011
05:46 dinoex search for other commits by this committer
- fix package after update
PR:             162368
Submitted by:   Jan Beich
Feature safe:   yes
Original commit
Monday, 7 Nov 2011
21:55 pav search for other commits by this committer
- Mark BROKEN: does not package
  Writing /usr/local/lib/python2.7/site-packages/miniupnpc-1.5-py2.7.egg-info
  [..]
  tar: lib/python2.7/site-packages/miniupnpc-1.6-py2.7.egg-info: Cannot stat: No
such file or directory

Reported by:    pointyhat
Original commit
Friday, 14 Aug 2009
07:08 dinoex search for other commits by this committer
- add py-miniupnpc to python category.
PR:             137756
Submitted by:   Anonymous
Original commit
Thursday, 13 Aug 2009
14:55 dinoex search for other commits by this committer
Python module for miniupnpc

The usage of the miniUPnP client library is useful whenever an application
needs to listen for incoming connections.
Examples : P2P applications, FTP clients for active mode, IRC (for DCC)
or IM applications, network games, any server.

WWW: http://miniupnp.free.fr/
PR:             137612
Submitted by:   Anonymous
Original commit

Number of commits found: 22