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: devel/py-gobject3/pkg-plist

Number of commits found: 13

Saturday, 20 Feb 2021
17:13 tcberner search for other commits by this committer
devel/py-gobject3: udpate to 3.38.0

Submitted by:	Greg V (greg@unrelenting.technology) (original version)
Differential Revision:	https://reviews.freebsd.org/D26630
Original commitRevision:566168 
Thursday, 24 Dec 2020
13:22 fluffy search for other commits by this committer
devel/py-gobject3: switch to PYTHON_EXT_SUFFIX
Original commitRevision:559076 
Monday, 1 Oct 2018
06:20 antoine search for other commits by this committer
Cleanup plist handling
Original commitRevision:481001 
Sunday, 30 Sep 2018
11:58 kwm search for other commits by this committer
The FreeBSD GNOME team proudly presents GNOME 3.28 for FreeBSD.

The offical GNOME 3.28 release notes can be found at
https://help.gnome.org/misc/release-notes/3.28/

Thanks to Antoine Brodin for running the exp-runs.

PR:		229761
Original commitRevision:480951 
Tuesday, 9 Dec 2014
19:42 sbruno search for other commits by this committer
Follow up to svn r374402 and restore plist entries to support architectures
where
UNAME_M is required to generate the plist.

PR:	188856, 195342, 195738, 195748
Reviewed by:	kwm
Approved by:	mentor (implicit)
Original commitRevision:374422 
Wednesday, 19 Nov 2014
11:49 kwm search for other commits by this committer
The FreeBSD GNOME team proudly presents GNOME 3.14 and Cinnamon 2.2.
Gnome 3.14.1 and Cinnamon 2.2.16 are supported on FreeBSD 9.3-RELEASE and up.

This commit removes the old GNOME 2 desktop, bindings and some ports that
can't be compiled. A few ports where updated to more recent versions to
allow them to compile with this update.

Apart from updating ports to newer versions

GDM is more integrated with gnome-shell now, and handles several things for
the GNOME desktop such as screen locking. If you want to use GNOME 3 via
startx, you will have to add your own lock screen/screensaver. For example
xscreensaver
can be used for sessions started without GDM.

Shell Extensions can be installed via https://extensions.gnome.org/ , we have
ported a few that can't be installed via this way.
The old gnome-utils and gnome-games ports where split up into single ports
and where converted to meta-ports.
gnome-terminal requires a UTF-8 locale to run, gdm handles this already, but
if you use startx you need to do this yourself.

Upgrade instructions:

Delete the old and conflicting packages:
# pkg delete clutter gnome-utils gnome-panel gnome-keyring vala-vapigen \
    guile gcalctool gnome-media libgnomekbd
# pkg delete gnome-screensaver gnome-applets bug-buddy evolution-exchange \
    evolution-webcal gnome-system-tools seahorse-plugins gnome-control-center

For package users the following lines will be enough:
# pkg upgrade
# pkg install gnome3

For ports users should do the following:
# portmaster -a
# portmaster x11/gnome3

We are currently aware of two issues. The first issue is a bug in the
file monitoring code in the glib20 port. This bug causes glib programs
to crash when files in a monitored directory are added or removed.
Upstream is aware of the problem, but since the problem is quite complex
there is no solution yet. This problem isn't restricted to BSD.

The second issue is that on certain video cards totem will display a
purple/pink overlay on the video. It not clear yet where the issues
comes from.

Major thanks goes to Gustau Perez for being a driving force behind getting
GNOME 3 up to speed again. Also thanks to Antoine Brodin for running the
exp-runs.

This update was also made possible by:
	Joe Maloney
	Kris Moore
	Beeblebrox
	Ryan Lortie
	Antoine Jacoutot
	and everyone I missed
Original commitRevision:372768 
Monday, 27 Oct 2014
10:58 bapt search for other commits by this committer
Cleanup plist
Original commitRevision:371548 
Thursday, 11 Sep 2014
15:04 sbruno search for other commits by this committer
This port does not use ${ARCH} to rename the egg info file that it creates.

This causes the pkg-plist to break on architechtures where MACHINE and
MACHINE_ARCH to differ.  Assume that the upstream folks know what they
are doing and create a UNAME_M variable to handle this in the pkg-plist.

PR:		188856
Reviewed by:	koobs
Approved by:	bdrewery (mentor)
Original commitRevision:367946 
Saturday, 9 Aug 2014
15:44 mva search for other commits by this committer
Convert the Python framework bits to USES=python.

Please use USES=python instead of USE_PYTHON.

  USE_PYTHON=yes becomes USES=python
  USE_PYTHON=2.7+ becomes USES=python:2.7+
  USE_PYTHON_BUILD=3.3 becomes USES=python:3.3,build
  ...

A new PYTHON_FEATURES variable was added, which enables certain features for a
port and replaces some knobs at the same time;

  PYTHON_FEATURES=distutils replaces USE_PYDISTUTILS
  PYTHON_FEATURES=autoplist replaces PYDISTUTILS_AUTOPLIST
  PYTHON_FEATURES=py3kplist replaces PYTHON_PY3K_PLIST_HACK
  PYTHON_FEATURES=noegginfo replaces PYDISTUTILS_NOEGGINFO
  PYTHON_FEATURES=concurrent replaces PYTHON_CONCURRENT_INSTALL
  PYTHON_FEATURES=pythonprefix replaces USE_PYTHON_PREFIX

Some knobs have been deprecated and are to be removed in the near future:

  PYTHON_MASTER_SITES - use MASTER_SITE_PYTHON instead
  PYTHON_PKGNAMESUFFIX - use PYTHON_PKGNAMEPREFIX instead
  PYDISTUTILS_INSTALLNOSINGLE - deprecated without replacement

Some knobs have been removed completely:

  PYTHON_MASTER_SITE_SUBDIR
  PYTHON_DISTNAME
  PYTHON_WRKSRC

Several variables specific to the Python framework are no longer passed to the
build environment to avoid polluting dependency builds.

  PYTHON_VERSION is not passed to .MAKEFLAGS anymore
  PYTHON_DEFAULT_VERSION,
  PYTHON_DEFAULT_PORTVERSION and
  PYTHONBASE are not passed to the make environment anymore

The conversion required a couple of ports to be updated to fit the changes and
new requirements. Those included "bsd.python.mk" directly or contained checks
in places, for which the USES framework would fail to provide correct values.

Python modules directly using the upstream Python package (such as py-tkinter
or py-sqlite3) were updated to avoid using the now unnecessary and remmoved
knobs from "bsd.python.mk".

Phabric:	D399
exp-run:	167368 192357
PR:		167368 192357
Reviewed by:	antoine, wg
Exp-run award:	antoine
With hat:	python@
Approved by:	portmgr
Original commitRevision:364450 
Monday, 26 May 2014
10:03 kwm search for other commits by this committer
Replace hardcode OS in plist by OPSYS:tl value. This fixes plist on
DragonFly [1]

Submitted by:	marino@ [1]
Original commitRevision:355295 
Sunday, 25 May 2014
13:47 kwm search for other commits by this committer
Split up py-dbus and py-gobject3 into a -common and a python 2 and 3 port.

Submitted by:	Gustau Perez
Obtained from:	gnome devel repo.
Original commitRevision:355246 
Saturday, 11 May 2013
19:36 kwm search for other commits by this committer
Update to 3.8.1.

While here make sure plist is correct as reported by miwi@

Obtained from:	GNOME devel repo
Original commitRevision:317908 
Monday, 22 Apr 2013
21:54 kwm search for other commits by this committer
Add py-gobject 3.8.0.

This is the next version of the python GLib/GObject/GIO bindings, including
full GObject introspection support.
Original commitRevision:316278 

Number of commits found: 13