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: deskutils/py-send2trash/Makefile

Number of commits found: 21

Tuesday, 18 Jul 2023
00:53 Charlie Li (vishwin) search for other commits by this committer
devel/py-setuptools: convert individual consumers to ${PY_SETUPTOOLS}

Currently a no-op, but in the future outputs the correct setuptools
port depending on whether USES_PYTHON=distutils is specified.

With hat: python
PR: 270510, 270358
commit hash: 9a80a6ee5e8ebf5c279b3d7a9e7e8b7dbabbaf0a commit hash: 9a80a6ee5e8ebf5c279b3d7a9e7e8b7dbabbaf0a commit hash: 9a80a6ee5e8ebf5c279b3d7a9e7e8b7dbabbaf0a commit hash: 9a80a6ee5e8ebf5c279b3d7a9e7e8b7dbabbaf0a 9a80a6e
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
Monday, 5 Jun 2023
18:47 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
deskutils/py-send2trash: Convert to USE_PYTHON=pep517

- Bump PORTREVISION for package change
commit hash: e76fa7f5705b21aa9bb7f749a4a0ee60d5a3f969 commit hash: e76fa7f5705b21aa9bb7f749a4a0ee60d5a3f969 commit hash: e76fa7f5705b21aa9bb7f749a4a0ee60d5a3f969 commit hash: e76fa7f5705b21aa9bb7f749a4a0ee60d5a3f969 e76fa7f
Saturday, 27 May 2023
04:08 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
deskutils/py-send2trash: Update to 1.8.2

Changes:	https://github.com/arsenetar/send2trash/releases
commit hash: b92cb5bd7d9aef067b2294441904063cf8a02a65 commit hash: b92cb5bd7d9aef067b2294441904063cf8a02a65 commit hash: b92cb5bd7d9aef067b2294441904063cf8a02a65 commit hash: b92cb5bd7d9aef067b2294441904063cf8a02a65 b92cb5b
Wednesday, 11 Jan 2023
15:58 Dmitry Marakasov (amdmi3) search for other commits by this committer
*/*: rename CHEESESHOP to PYPI in MASTER_SITES

PR:			267994
Differential revision:	D37518
Approved by:		bapt
commit hash: 77d68471aded6907dbbcb5ef50d557e4c69db656 commit hash: 77d68471aded6907dbbcb5ef50d557e4c69db656 commit hash: 77d68471aded6907dbbcb5ef50d557e4c69db656 commit hash: 77d68471aded6907dbbcb5ef50d557e4c69db656 77d6847
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
Wednesday, 20 Jul 2022
14:21 Tobias C. Berner (tcberner) search for other commits by this committer
deskutils: remove 'Created by' lines

A big Thank You to the original contributors of these ports:

  *  Aaron Dalton <aaron@FreeBSD.org>
  *  Alex "lissyara" Keda <admin@lissyara.su>
  *  Alexander Logvinov <ports@logvinov.com>
  *  Alexander Vereeken <Alexander88207@protonmail.com>
  *  Alexey Dokuchaev <danfe@FreeBSD.org>
  *  Andreas Kohn <andreas@syndrom23.de>
  *  Andrew Hsu <ahsu@users.sf.net>
  *  Andrew Pantyukhin <infofarmer@FreeBSD.org>
  *  Andrey Zakhvatov
  *  Andrey Zakhvatov <andy@icc.surw.chel.su>
  *  Anton Berezin <tobez@FreeBSD.org>
  *  Beat Gaetzi <beat@chruetertee.ch>
  *  Chris Piazza <cpiazza@FreeBSD.org>
  *  Christian Brueffer <chris@unixpages.org>
  *  Cyrille Lefevre <clefevre@citeweb.net>
  *  Daniel Eischen <deischen@FreeBSD.org>
  *  Danilo Egea Gondolfo <danilo@FreeBSD.org>
  *  Dean Povey <povey@wedgetail.com>
  *  Dennis Herrmann <dhn@FreeBSD.org>
  *  Edwin Groothuis
  *  Edwin Groothuis <edwin@mavetju.org>
  *  Emanuel Haupt <ehaupt@FreeBSD.org>
  *  Emmanuel Vadot <manu@FreeBSD.org>
  *  Eric L. Hernes <erich@FreeBSD.org>
  *  Eric Turgeon <ericbsd@FreeBSD.org>
  *  Eric Turgeon <ericturgeon@ghostbsd.org>
  *  FreeBSD GNOME Team
  *  George Reid <greid@ukug.uk.freebsd.org>
  *  Guillaume Paquet <amyfoub@gmail.com>
  *  Gustau Perez <gustau.perez@gmail.com>
  *  Gustau Perez i Querol <gustau.perez@gmail.com>
  *  Gvozdikov Veniamin <g.veniamin@googlemail.com>
  *  Herbert J. Skuhra <h.skuhra@gmail.com>
  *  Jason Helfman <jgh@FreeBSD.org>
  *  Jeremy Messenger <mezz@FreeBSD.org>
  *  Jim Mock <jim@FreeBSD.org>
  *  Jimmy Olgeni <olgeni@uli.it>
  *  Joe Marcus Clarke <marcus@FreeBSD.org>
  *  Joey Mingrone <joey@mingrone.org>
  *  Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe>
  *  Joseph Benden <joe@thrallingpenguin.com>
  *  Ken Moore <ken@pcbsd.org>
  *  Koop Mast <kwm@FreeBSD.org>
  *  Kris Kennaway <kris@FreeBSD.org>
  *  Kubilay Kocak <koobs@FreeBSD.org>
  *  Leinier Cruz Salfran <salfrancl@yahoo.es>
  *  Lewis Thompson <purple@lewiz.net>
  *  Loïc Bartoletti <lbartoletti@FreeBSD.org>
  *  Lucas Holt <luke@justjournal.com>
  *  MITA Yoshio <mita@iis.u-tokyo.ac.jp>
  *  Marcin Cieslak <saper@saper.info>
  *  Markus Brueffer <brueffer@phoenix-systems.de>
  *  Markus Brueffer <markus@FreeBSD.org>
  *  Martin Klaffenboeck <martin.klaffenboeck@gmx.at>
  *  Martin Wilke
  *  Mathieu Arnold
  *  Matt Braithwaite <mab@red-bean.com>
  *  Matt Lancereau <matt@rimasec.net>
  *  Matthew Seaman <matthew@FreeBSD.org>
  *  Matthias Andree <mandree@FreeBSD.org>
  *  Nicola Stanislao Vitale <nivit@FreeBSD.org>
  *  Nicola Vitale <nivit@FreeBSD.org>
  *  Olivier Cochard-Labbe <olivier@FreeBSD.org>
  *  Olivier Duchateau
  *  Pav Lucistnik <pav@oook.cz>
  *  Pete Fritchman <petef@databits.net>
  *  Richard Gallamore <ultima@FreeBSD.org>
  *  Rob Evers <rob@debank.tv>
  *  Roman Bogorodskiy <bogorodskiy@inbox.ru>
  *  Rusmir Dusko <nemysis@FreeBSD.org>
  *  Thierry Thomas (<thierry@thomas.as>)
  *  Thierry Thomas <thierry@pompo.net>
  *  Thorsten Greiner <thorsten.greiner@web.de>
  *  Tobias Roth <ports@fsck.ch>
  *  Veniamin Gvozdikov <vg@FreeBSD.org>
  *  alepulver@FreeBSD.org
  *  cartola (Carlos E. G. Carvalho)
  *  che@bein.link
  *  gahr
  *  ijliao
  *  jamrich.majo@gmail.com
  *  joerg
  *  johans
  *  john@jnielsen.net
  *  lightside <lightside@gmx.com>
  *  mi
  *  mi@aldan.ziplink.net
  *  olevole@olevole.ru
  *  shanee@rabbit.augusta.de
  *  stas
  *  thierry@pompo.net

With hat:	portmgr
commit hash: 4dd7a7430ea7a96f6ed2edcc0765d04d79eba40a commit hash: 4dd7a7430ea7a96f6ed2edcc0765d04d79eba40a commit hash: 4dd7a7430ea7a96f6ed2edcc0765d04d79eba40a commit hash: 4dd7a7430ea7a96f6ed2edcc0765d04d79eba40a 4dd7a74
Monday, 27 Sep 2021
15:55 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
deskutils/py-send2trash: Update to 1.8.0

Changes:	https://github.com/arsenetar/send2trash/releases
commit hash: 198ca7503cc71fb005110d8fcc819ce3a86f637f commit hash: 198ca7503cc71fb005110d8fcc819ce3a86f637f commit hash: 198ca7503cc71fb005110d8fcc819ce3a86f637f commit hash: 198ca7503cc71fb005110d8fcc819ce3a86f637f 198ca75
Thursday, 29 Apr 2021
14:23 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
deskutils/py-send2trash: Add CATEGORIES=python
commit hash: f4f266e35a9353a0e67ba734eaf46b50e6e01ab7 commit hash: f4f266e35a9353a0e67ba734eaf46b50e6e01ab7 commit hash: f4f266e35a9353a0e67ba734eaf46b50e6e01ab7 commit hash: f4f266e35a9353a0e67ba734eaf46b50e6e01ab7 f4f266e
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
Sunday, 3 Jan 2021
20:06 sunpoet search for other commits by this committer
Remove DOCS option

- Remove DIST_SUBDIR: move tarball out of python subdir
- Bump PORTREVISION for package change
- Update WWW
- Take maintainership
Original commitRevision:560118 
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 
Tuesday, 6 Mar 2018
06:28 yuri search for other commits by this committer
deskutils/py-send2trash: Add USE_PYTHON=concurrent; Add NO_ARCH=yes; Update to
1.5.0

Port changes while here:
* Changed to DISTVERSION
* Updated WWW (url was dead)

PR:		226361
Submitted by:	owk <freebsd_ports@k-worx.org>
Approved by:	tcberner (mentor, implicit)
Approved by:	portmgr blanket
Original commitRevision:463693 
Friday, 2 Mar 2018
18:52 sunpoet search for other commits by this committer
Convert to options target helper

Approved by:	portmgr (blanket)
Original commitRevision:463438 
Sunday, 19 Oct 2014
08:50 mva search for other commits by this committer
- Convert ports from databases/ and deskutils/ to new USES=python

Approved by:	portmgr (implicit)
Original commitRevision:371173 
Wednesday, 4 Jun 2014
14:14 nemysis search for other commits by this committer
These ports are no longer used or cared for.

Dave Shar <koalative at gmail.com> wishes to maintain these ports
with my help.

deskutils/py-send2trash

- Change Makefile header, use my name and @FreeBSD.org email
- Pass maintainership to koalative at gmail.com
- Change license BSD to BSD3CLAUSE
- Use USE_PYDISTUTILS=yes instead of easy_install
- Remove PYDISTUTILS_PKGNAME and add PYDISTUTILS_AUTOPLIST

graphics/founts

- Change Makefile header, use my name and @FreeBSD.org email
- Pass maintainership to koalative at gmail.com
- Add REINPLACE, fix ELAST
- Change distinfo, remove supplied icon

graphics/py-pyggel

- Pass maintainership to koalative at gmail.com

graphics/radius-engine

- Change Makefile header, use my name and @FreeBSD.org email
- Pass maintainership to koalative at gmail.com

irc/py-fishcrypt

- Pass maintainership to koalative at gmail.com

sysutils/gigolo

- Change Makefile header, use my name and @FreeBSD.org email
- Pass maintainership to koalative at gmail.com
- Use tar:bzip2 instead of USE_BZIP2=yes
- Remove TODO from DOCS
- Remove useless .include <bsd.port.options.mk>
- Change pkg-plist, remove mtree
Original commitRevision:356500 
Monday, 18 Nov 2013
20:50 nemysis search for other commits by this committer
- Change maintainer email to @FreeBSD.org
- Support STAGEDIR
- Change pkg-descr

Approved by:	pawel / wg (mentors, implicit)
Original commitRevision:334263 
Friday, 20 Sep 2013
16:21 bapt search for other commits by this committer
Add NO_STAGE all over the place in preparation for the staging support (cat:
deskutils)
Original commitRevision:327718 
Thursday, 25 Jul 2013
14:25 pawel search for other commits by this committer
- Update to version 1.3.0
- Switch to dynamic plist

PR:		ports/180708
Submitted by:	nemysis <nemysis@gmx.ch> (maintainer)
Original commitRevision:323644 
Monday, 8 Jul 2013
18:24 wg search for other commits by this committer
deskutils/py-send2trash: add missing PKGNAMEPREFIX

- Add missing PKGNAMEPREFIX
- Restrict to python 2.x
Original commitRevision:322528 
18:18 wg search for other commits by this committer
deskutils/py-send2trash: small package that sends files to the Trash

Send2Trash is a small package that sends files to the Trash (or Recycle Bin)
natively and on all platforms.

WWW: http://hg.hardcoded.net/send2trash/

PR:		ports/179604
Submitted by:	nemysis <nemysis@gmx.ch>
Original commitRevision:322527 

Number of commits found: 21