non port: games/aisleriot/Makefile |
Number of commits found: 39 |
Saturday, 10 Feb 2024
|
18:55 Charlie Li (vishwin)
games/aisleriot: update to 3.22.30
Also fix plist with lang/guile3
4f4f38e |
Friday, 12 Jan 2024
|
22:40 Muhammad Moinur Rahman (bofh)
*/*: Sanitize MANPREFIX for meson ports
Approved by: portmgr
9f8f710 |
Saturday, 23 Dec 2023
|
18:14 Nuno Teixeira (eduardo)
*/*: Bump consumers of x11-toolkits/gtk30
New version of gtk3 in tree
3572ca3 |
Sunday, 30 Jul 2023
|
22:59 Robert Clausecker (fuz) Author: Andrew "RhodiumToad" Gierth
*/*: adapt to new guile framework
- change all ports using guile to USES=guile
- flavorize guile-lib, guile-cairo, slib-guile
PR: 260960
Reported by: Martin Neubauer <m.ne@gmx.net>
Approved by: bofh
Differential Revision: https://reviews.freebsd.org/D40194
7edcfae |
Wednesday, 12 Jul 2023
|
18:56 Felix Palmen (zirias)
bsd.sites.mk: Update all ports using USE_GITLAB
Replace GL_COMMIT by GL_TAGNAME in all ports. The new GL_TAGNAME is
backwards-compatible (accepting any commit hash as before), but also
understands an actual tag name. Moving to tag names where appropriate is
left to individual ports' maintainers.
Approved by: portmgr (tcberner, mentor)
Differential Revision: https://reviews.freebsd.org/D37077
7d1faa7 |
Tuesday, 27 Jun 2023
|
19:34 Rene Ladan (rene)
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>
3d9a815 |
Thursday, 2 Mar 2023
|
05:23 Tobias C. Berner (tcberner)
accessibility/at-spi2-core: update to 2.46.0
What's new in at-spi2-core 2.46.0:
* Fix GetInterfaces documentation on org.a11y.atspi.Accessible
interface.
What's new in at-spi2-core 2.45.91:
* Send device event controller events using the same signature as other
events.
* Document the Accessible, Action, and Cache dbus interfaces.
* Fix license of atspi-gmain.c (#87).
What's new in at-spi2-core 2.45.90:
* xml: Add some documentation.
* xml: Fix event arguments.
* xml: Add some missing DeviceEventController methods.
* Bind the AT-SPI bus to the graphical session.
* Mark bus service as belonging to the session slice.
* Add ATSPI_ROLE_PUSH_BUTTON_MENU.
* Add an "announcement" event/signal to allow objects to send
notifications (!63).
* Various code clean-ups and test improvements.
What's new in at-spi2-core 2.45.1:
* Atk and at-spi2-atk are now merged into this project.
* Now requires meson 0.56.2 and glib 2.67.4.
* at-spi2-atk: Expose the accessible hierarchy via dbus introspection.
* Properly escape the AT-SPI bus address; fixes warnings about the address
not containing a colon (!55).
* Add a text value to AtspiValue, so that a value can expose a textual
description, as in the new Atk value API.
* Add atspi_event_listener_register_with_app, to allow an event listener
to be registered only for a given application (!52).
- accessibility/atk and accessibility/at-spi2-atk have been merged into
accessibility/at-spi2-core
- accessibility/at-spi2-core: bump consumers of removed ports atk and
at-spi2-atk
PR: 269704
Exp-run by: antoine
---
fa81a4f |
Sunday, 30 Oct 2022
|
20:03 Daniel Engberg (diizzy)
games/aisleriot: Update to 3.22.25
Use USE_GITLAB to follow Porters Handbook more closely
Upstream doesn't provide changelog(s) between releases
PR: 267067
Approved by: portmgr (maintainer timeout, 2+ weeks)
1ad8b06 |
Wednesday, 7 Sep 2022
|
21:10 Stefan Eßer (se)
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)
b7f0544 |
Tuesday, 9 Aug 2022
|
18:42 Neel Chauhan (nc)
games/aisleriot: Use 'gnome' dir not 'gnome3'
689841c |
Wednesday, 20 Jul 2022
|
14:21 Tobias C. Berner (tcberner)
games: remove 'Created by' lines
A big Thank You to the original contributors of these ports:
* <benlutz@datacomm.ch>
* <janos.mohacsi@bsd.hu>
* Aaron Baugher
* Aaron Dalton <aaron@FreeBSD.org>
* Aaron Dalton <aaron@daltons.ca>
* Aaron VonderHaar <avh4@usa.net>
* Aaron Zauner <az_mail@gmx.at>
* Adam Kranzel (adam@alameda.edu)
* Adam Weinberger <adamw@FreeBSD.org>
* Ade Lovett <ade@FreeBSD.org>
* Akinori MUSHA aka knu <knu@idaemons.org>
* Alejandro Pulver <alejandro@varnet.biz>
* Alejandro Pulver <alepulver@FreeBSD.org>
* Alex Dupre <ale@FreeBSD.org>
* Alex Trull <freebsd.alex@trull.org>
* Alexander G. Chetirbock <bock@bock.nnov.ru>
* Alexander Langer <alex@FreeBSD.org>
* Alexander Logvinov <ports@logvinov.com>
* Alexander Vereeken <Alexander88207@protonmail.com>
* Alexander Yerenkow <yerenkow@gmail.com>
* Alexey Dokuchaev <danfe@FreeBSD.org>
* Alexey Dokuchaev <danfe@regency.nsu.ru>
* Alfonso S. Siciliano <alfix86@gmail.com>
* Alonso Cardenas Marquez <acm@FreeBSD.org>
* Amar Takhar <verm@drunkmonk.net>
* Andreas Klemm <andreas@klemm.gtn.com>
* Andrej Zverev
* Andrew Pantyukhin <infofarmer@FreeBSD.org>
* Andrey Zakhvatov
* Andrey Zakhvatov <andy@icc.surw.chel.su>
* Andy Kosela <akosela@andykosela.com>
* Anton Yudin <toha@FreeBSD.org>
* Arjan van Leeuwen <avleeuwen@piwebs.com>
* Ayumi M <ayu@commun.jp>
* Bartosz Fabianowski <freebsd@chillt.de>
* Beech Rintoul <beech@FreeBSD.org>
* Ben Smithurst <ben@scientia.demon.co.uk>
* Bob Bomar <bob@fly.homeunix.org>
* Brian Buchanan <brian@CSUA.Berkeley.EDU>
* Ceri Davies (ceri@FreeBSD.org)
* Chris D. Faulhaber <jedgar@FreeBSD.org>
* Christian Brueffer <chris@unixpages.org>
* Christoph Mallon <christoph.mallon@gmx.de>
* Christopher Preston <rbg@gayteenresource.org>
* Dag-Erling C. Smørgrav <des@FreeBSD.org>
* Daniel J. O'Connor <darius@dons.net.au>
* Daniel O'Connor <darius@dons.net.au>
* Daniel Roethlisberger <daniel@roe.ch>
* Danilo Egea Gondolfo <danilo@FreeBSD.org>
* Dave Chapeskie <dchapes@ddm.on.ca>
* Dave Walton <dwalton@acm.org>
* David Siebörger <drs@rucus.ru.ac.za>
* Dmitry Marakasov <amdmi3@FreeBSD.org>
* Dom Mitchell <dom@happygiraffe.net>
* Dominic Fandrey
* Dominic Fandrey <kamikaze@bsdforen.de>
* Don Croyle <croyle@gelemna.org>
* Donald Burr <dburr@FreeBSD.org>
* Eckart "Isegrim" Hofmann
* Ed Schouten <ed@fxq.nl>
* Edwin Groothuis
* Edwin Groothuis <edwin@mavetju.org>
* Edwin Mons
* Emanuel Haupt <ehaupt@FreeBSD.org>
* Emanuel Haupt <ehaupt@critical.ch>
* Emmanuel Vadot <manu@FreeBSD.org>
* Eric Anholt
* Eric Anholt <anholt@FreeBSD.org>
* Erik Olson <erikolson@olsonexpress.com>
* Filippo Natali <filippo@widestore.net>
* Frank Laszlo <laszlof@freebsdmatrix.net>
* Frederic Culot <culot@FreeBSD.org>
* Frederic Culot <frederic@culot.org>
* Fredrik Carlsson <fredrik@wasadata.com>
* FreeBSD GNOME Team <gnome@FreeBSD.org>
* FreeBSD GNOME Team <gnome@freebsd.org>
* Ganael Laplanche <ganael.laplanche@martymac.org>
* Gautam Mani <execve@gmail.com>
* Gea-Suan Lin <gslin@gslin.org>
* Ginzburg Oleg
* GreenDog <fiziologus@gmail.com>
* Gustavo Perez Querol <gustau.perez@gmail.com>
* Göran Runfeldt <goranrunfeldt@home.se>
* HIYAMA Takeshi <th@cis.ibaraki.ac.jp>
* HOTARU-YA <hotaru@tail.net>
* Holger Lamm <holger@eit.uni-kl.de>
* Igor Pokrovsky <ip@doom.homeunix.org>
* Igor Pokrovsky <tiamat@comset.net>
* Igor Pokrovsky <tiamat@telegraph.spb.ru>
* Ilya A. Arhipov <admin@gorodkirov.ru>
* Ilya A. Arkhipov <rum1cro@yandex.ru>
* James FitzGibbon <jfitz@FreeBSD.org>
* James Howard <howardj@wam.umd.edu>
* Jan Jungnickel <jan@jungnickel.com>
* Jan Stocker <Jan.Stocker@t-online.de>
* Janni
* Janos Mohacsi <janos.mohacsi@bsd.hu>
* Jason Helfman <jgh@FreeBSD.org>
* Jean-Marc Zucconi <jmz@FreeBSD.org>
* Jean-Yves Lefort <jylefort@FreeBSD.org>
* Jean-Yves Lefort <jylefort@brutele.be>
* Jeremy <karlj000@unbc.ca>
* Jeremy Chadwick <yoshi@parodius.com>
* Jesse Smith <jessefrgsmith@yahoo.ca>
* Jim Mock <jim@FreeBSD.org>
* Joe Marcus Clarke <marcus@FreeBSD.org>
* Joel Sutton <jsutton@bbcon.com.au>
* Joel Sutton <sutton@aardvark.apana.org.au>
* Jordan DeLong <fracture@allusion.net>
* Jordan Irwin <antumdeluge@gmail.com>
* Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe>
* Jose Alonso Cardenas Marquez <acm@FreeBSD.org>
* Josh Tolbert
* Julian Assange
* Juraj Lutter <otis@sk.freebsd.org>
* Kalten <kalten@gmx.at>
* Karsten Brandt <kbrandt@sdf-eu.org>
* Kevin Zheng <kevinz5000@gmail.com>
* Kirill Ponomarew <krion@FreeBSD.org>
* Kirill Ponomarew <ponomarew@oberon.net>
* Klaus Goger <klaus.goger@reflex.at>
* Koop Mast <kwm@FreeBSD.org>
* Kris Kennaway <kris@FreeBSD.org>
* Kuang-che Wu <kcwu@csie.org>
* Kyle Evans <kevans@FreeBSD.org>
* Lars Engels <lars.engels@0x20.net>
* Lars Thegler <lars@thegler.dk>
* Leland Wang <llwang@infor.org>
* Loren M. Lang <lorenl@alzatex.com>
* Mahdi Mokhtari <mokhi64@gmail.com>
* Makoto YAMAKURA <makoto@pinpott.spnet.ne.jp>
* Marc van Woerkom <3d@FreeBSD.org>
* Mark Huizer <xaa+ports@timewasters.nl>
* Mark Murray <markm@FreeBSD.org>
* Mark Pulford <mark@kyne.com.au>
* Martin Kropfinger
* Martin Tournoij <carpetsmoker@xs4all.nl>
* Martin Tournoij <martin@arp242.net>
* Martin Wilke <miwi@FreeBSD.org>
* Mateusz Piotrowski <0mp@FreeBSD.org>
* Matthew Gibson <mdg583@hotmail.com>
* Matthew Hunt <mph@FreeBSD.org>
* Matthew Hunt <mph@pobox.com>
* Max Khon <fjoe@FreeBSD.org>
* Maxim Sobolev <sobomax@FreeBSD.org>
* Maxime Henrion <mux@FreeBSD.org>
* Michael Alyn Miller <malyn@strangeGizmo.com>
* Michael Johnson <ahze@FreeBSD.org>
* Michael L. Hostbaek (mich@freebsdcluster.org)
* Michael Nottebrock <lofi@FreeBSD.org>
* Michael Williams <ports@mgwsoftware.com>
* Miguel Mendez <flynn@energyhq.es.eu.org>
* Neil Blakey-Milner <nbm@FreeBSD.org>
* Nick Johnson <freebsd@spatula.net>
* Nicklas Johnson <freebsd@spatula.net>
* Nicola Vitale <nivit@FreeBSD.org>
* Nik Clayton <nik@FreeBSD.org>
* Nikolai Lifanov <lifanov@mail.lifanov.com>
* Oleg Alexeenkov
* Oliver Lehmann <lehmann@ans-netz.de>
* Patrick Li <pat@FreeBSD.org>
* Patrick Li <pat@databits.net>
* Pav Lucistnik <pav@FreeBSD.org>
* Pawel Pekala <pawel@FreeBSD.org>
* Peter Dunning
* Peter Pentchev <roam@FreeBSD.org>
* Philippe Audeoud <jadawin@tuxaco.net>
* Pierre-Paul Lavoie <ppl@nbnet.nb.ca>
* Piotr Kubaj <pkubaj@FreeBSD.org>
* Piotr Kubaj <pkubaj@anongoth.pl>
* Radim Kolar
* Ralf Becker <ralf@akk.org>
* Raymond Pasco <ray@cultofray.net>
* Robert Gogolok <gogo@cs.uni-sb.de>
* Rozhuk Ivan <rozhuk.im@gmail.com>
* Rusmir Dusko <nemysis@FreeBSD.org>
* Ryo MIYAMOTO
* Sakai Hiroaki <sakai@miya.ee.kagu.sut.ac.jp>
* Sakai Hiroaki <sakai@seki.ee.kagu.sut.ac.jp>
* Satoshi Asami <asami@FreeBSD.org>
* Sean Bruno
* Sean Farley <sean-freebsd@farley.org>
* Seiichirou Hiraoka
* Seiichirou Hiraoka <flathill@flathill.gr.jp>
* Sergey Akifyev
* Shaun Amott <shaun@inerd.com>
* Shinya Esu <esu@yk.rim.or.jp>
* Simon Barner <barner@gmx.de>
* Stas Timokhin <devel@stasyan.com>
* Stas Timokhin <stast@bsdportal.ru>
* Stefan Eggers <seggers@semyam.dinoco.de>
* Stefan Esser <se@FreeBSD.org>
* Stefan Farfeleder <e0026813@stud3.tuwien.ac.at>
* Stefan Jahn <stefan.jahn@nemesis-sektor.de>
* Stefan Zehl <sec@42.org>
* Stephen Hurd <shurd@FreeBSD.org>
* Steve Wills <swills@FreeBSD.org>
* Steven H. Samorodin (samorodi@NUXI.com)
* Steven Wallace <swallace@FreeBSD.org>
* Sugimoto Sadahiro <ixtl@utmc.or.jp>
* Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
* Sven Moeller <smoeller@nichthelfer.de>
* TAKAHASHI Kaoru <kaoru@kaisei.org>
* TAKATSU Tomonari <tota@FreeBSD.org>
* Tatsuya Kuidoh <cdr@ga.xdsl.ne.jp>
* Thomas Gellekum <tg@FreeBSD.org>
* Thomas Vogt <thomas.vogt@bsdunix.ch>
* Tobias Gion
* Tobias Rehbein <tobias.rehbein@web.de>
* Toru YANO <toru@s-fine.co.jp>
* Travis Poppe <tlp@liquidx.org>
* UMENO Takashi
* UMENO Takashi <umeno@rr.iij4u.or.jp>
* Vanilla I. Shu <vanilla@MinJe.com.TW>
* Vasily Postnicov <shamaz.mazum@gmail.com>
* Vladimir Kondratiev <wulf@cicgroup.ru>
* Will Andrews <andrews@technologist.com>
* Wouter Reckman <gennerate@zonnet.nl>
* Ying-Chieh Liao <ijliao@FreeBSD.org>
* Yinghong Liu <relaxbsd@gmail.com>
* Yinghong.Liu <relaxbsd@gmail.com>
* Yonatan <onatan@gmail.com>
* Yuichi Narahara
* Yukihiro Nakai <Nakai@Mlab.t.u-tokyo.ac.jp>
* Yukihiro Nakai <nakai@FreeBSD.org>
* Yukihiro Nakai <nakai@mlab.t.u-tokyo.ac.jp>
* Yuri Victorovich <yuri@rawbw.com>
* aaron@FreeBSD.org
* ada@bsd.org
* alepulver
* arved
* asami
* ayu <ayunyan@gmail.com>
* benlutz@datacomm.ch
* buratello@easy.com
* chinsan
* chinsan <chinsan.tw@gmail.com>
* chris_pressey@yahoo.ca
* driedfruit
* edwin@mavetju.org
* eivind
* elfrink@introcom.nl
* erich@FreeBSD.org
* ericyu@mail2000.com.tw
* glewis@FreeBSD.org
* gmarco@giovannelli.it
* gurkan@phys.ethz.ch
* ijliao
* issei <issei@jp.FreeBSD.org>
* jamie
* janek
* janos.mohacsi@bsd.hu
* jkh
* jmacd
* jmz
* joerg
* joerg@FreeBSD.org
* johans
* johnh@isi.edu
* jseger@scds.com
* krion@FreeBSD.org
* kris@FreeBSD.org
* lightside <lightside@gmx.com>
* loader <loader@freebsdmall.com>
* marina@surferz.net
* markand
* markm
* mdodd
* mek
* michael johnson <ahze@ahze.net>
* minter@lunenburg.org
* nbm
* neuroworker@gmail.com
* nox@jelal.kn-bremen.de
* pat@databits.net
* petef@FreeBSD.org
* pgs (original)
* proff
* pypt
* refugee
* roam@FreeBSD.org
* se
* searle
* sec@42.org
* simonm@dcs.gla.ac.uk
* steve farrell
* swallace
* thierry@pompo.net
* tmartin@andrew.cmu.edu
* verm@drunkmonk.net
* will
* xaa@stack.nl
With hat: portmgr
d56127b |
Monday, 24 Jan 2022
|
12:35 Jan Beich (jbeich)
games/aisleriot: unbreak build with Meson 0.61.0
data/meson.build:20:5: ERROR: Function does not take positional arguments.
PR: 260943
Reported by: antoine (via exp-run)
Regressed by: https://github.com/mesonbuild/meson/commit/61f2866a9fa1
97acc60 |
Tuesday, 23 Nov 2021
|
22:11 Stefan Eßer (se)
*/*: Remove redundant '-[0-9]*' from CONFLICTS_INSTALL
The conflict checks compare the patterns first against the package
names without version (as reported by "pkg query "%n"), then - if
there was no match - agsinst the full package names including the
version (as reported by "pkg query "%n-%v").
Approved by: portmgr (blanket)
5933ac0 |
Sunday, 14 Nov 2021
|
00:42 Jan Beich (jbeich)
games/aisleriot: update to 3.22.19
Changes: https://gitlab.gnome.org/GNOME/aisleriot/-/compare/3.22.18...3.22.19
Reported by: Repology
213837d |
Tuesday, 19 Oct 2021
|
08:36 Tobias Kortkamp (tobik)
*: apply refactor.remove-consecutive-empty-lines
Submitted by: portedit
ce1af7f |
Sunday, 10 Oct 2021
|
19:44 Baptiste Daroussin (bapt)
INSTALLS_ICONS: retire the macro and rework the related dependencies
While here, make sure gtk-update-icon-cache is only on run dependency
where added as a dependency
Enforce gtk3 to depend on gtk-update-icon-cache (previously it was
inheriting the dependency)
2c672a4 |
Wednesday, 6 Oct 2021
|
18:08 Neel Chauhan (nc)
games/aisleriot: Update to 3.22.18
b1a4ee3 |
Saturday, 17 Jul 2021
|
17:34 Tobias C. Berner (tcberner)
games/aisleriot: update to 3.22.17
719b0de |
Tuesday, 6 Apr 2021
|
14:31 Mathieu Arnold (mat)
Remove # $FreeBSD$ from Makefiles.
305f148 |
Saturday, 6 Feb 2021
|
08:51 cmt
fix staging of aisleriot
"FAILED: install script
'/wrkdirs/usr/ports/games/aisleriot/work/aisleriot-3.22.14/data/meson_desktopfile.py
/usr/local/share/applications sol.desktop' exit code 127, stopped"
- explicitly declare build-dependency on python
- shebangfix included python-scripts, as they are referencing "python3",
which we only install with the python3 meta-package (which is not
pulled in when depending on python)
 |
08:13 bapt
Update to 3.22.14
Directly fetch from gitlab
switch to meson
drop the unused gconf2 dependency
 |
Monday, 9 Nov 2020
|
17:08 tcberner
Prefer graphics/ligvrsvg2-rust over graphics/librsvg2
- switch to the more modern version of librsvg2 on architectures
supporting rust
- this will fix some graphical issues on these architectures
PR: 250276
Exp-run by: antoine
Submitted by: tobik
Differential Revision: https://reviews.freebsd.org/D18878
 |
Tuesday, 29 Sep 2020
|
12:07 bapt
First batch at upgrading gnome to 3.36/3.38
Update evolution-dataserver to 3.38.0 and because of ABI breakage update ports
depending on it
Update bijiben to 3.38.0
Update gnome-calendar to 3.38.0
Update gnome-contacts to 3.38
Update gnome-maps to 3.38.0
Patch gnome-todo to work with newer evolution-dataserver (patched obtained from
OpenBSD/Archlinux)
Update evolution to 3.38.0
Update evolution-ews to 3.38.0 (among changes it brings support for office365)
Update folks to 0.14.0
Update cheese to 3.38.0
Update aisleriot to 3.22.9
Update five-or-more to 3.22.2
Update fastream to 0.2.9
Update gnome-control-center to 3.36.4
Update gnmoe-settings-daemon to 3.38.0
Update meld to 3.21.0
Update gnome-desktop to 3.38.0 and because of ABI breakage bump portrevision of
all dependant ports not touched by this update
Update gnome-session to 3.38.0
Update gnome-shell to 3.36.6, now run depends on gdm
Update gnome-shell-extensions to 3.36.3
Update mutter to 3.36.6
 |
Tuesday, 5 Nov 2019
|
22:16 zeising
Add USES=xorg USES=gl, ports categories g
Add USES=xorg and USES=gl to ports in categories starting with 'g'.
While here, try to sprinkle other USES (mostly gnome and sdl) as needed.
 |
Thursday, 27 Jun 2019
|
09:02 danfe
Update Guile to version 2.2.5, modern stable version, and fix dependent
ports to build against it. Most changes are rather minor and mechanical
except for the devel/gdb (obtained via their bugtracker [1], courtesy of
Doug Evans). One port (science/meep) I had to mark BROKEN after fixing
it proved to be very tedious and actually unreliable. It is very old,
there are newer versions available so it should be fixed by updating.
One port (devel/libruin) had revealed a bug in the new Guile code (an
auxiliary script, really) that had to be worked-round; reference to the
problematic upstream commit is provided in the patch.
PR: 229613
Exp-run by: antoine
[1] https://sourceware.org/bugzilla/show_bug.cgi?id=21104#c8
 |
Sunday, 30 Sep 2018
|
11:58 kwm
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
 |
Friday, 31 Aug 2018
|
18:27 fernape
devel/boehm-gc: update to 7.6.8
ChangeLog: https://github.com/ivmai/bdwgc/releases/tag/v7.6.8
* Giving maintainership to yasu@utahime.org
* Bumping PORTREVISION for dependent ports
PR: 230577
Submitted by: yasu@utahime.org
Approved by: tcberner (mentor)
Differential Revision: https://reviews.freebsd.org/D16704
 |
Friday, 1 Jun 2018
|
10:16 cpm
Bump PORTREVISION due upgrade of devel/boehm-gc to 7.6.6
PR: 228597
Approved by: portmgr (antoine)
 |
Saturday, 10 Mar 2018
|
11:22 cpm
Bump PORTREVISION due upgrade of devel/boehm-gc to 7.6.4
PR: 225560
Submitted by: Yasuhiro KIMURA <yasu@utahime@org>
Reviewed by: cpm
Approved by: portmgr (antoine)
 |
Monday, 8 Jan 2018
|
15:20 cpm
Bump PORTREVISION due upgrade of devel/boehm-gc to 7.6.2
Approved by: portmgr (antoine)
 |
Friday, 12 May 2017
|
17:26 rm
games/aisleriot: merge couple of fixes from gnome devel repo
- add missing dependency upon libcanberra (reported by QA)
- change CONFLICTS because it only conflicts on install phase
- bump PORTREVISON because of dependency list change
With hat: gnome
 |
02:47 pi
games/aisleriot: update 3.18.2 -> 3.22.2
https://download.gnome.org/sources/aisleriot/3.20/aisleriot-3.20.0.changes
https://download.gnome.org/sources/aisleriot/3.20/aisleriot-3.20.1.changes
https://download.gnome.org/sources/aisleriot/3.20/aisleriot-3.20.2.changes
https://download.gnome.org/sources/aisleriot/3.22/aisleriot-3.22.0.changes
https://download.gnome.org/sources/aisleriot/3.22/aisleriot-3.22.1.changes
https://download.gnome.org/sources/aisleriot/3.22/aisleriot-3.22.2.changes
PR: 218862
Submitted by: w.schwarzenfeld@utanet.at
Reported by: rkoberman@gmail.com
 |
Friday, 1 Apr 2016
|
14:00 mat
Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.
With hat: portmgr
Sponsored by: Absolight
 |
Sunday, 14 Feb 2016
|
18:57 kwm
The FreeBSD GNOME team proudly presents GNOME 3.18 for FreeBSD.
The offical GNOME 3.18 release notes can be found at
https://help.gnome.org/misc/release-notes/3.18/
This update doesn't contain the glib/gtk c++ bindings which will
be done in a another update due to the requirement on c++11 and the
amount of fallout this probably will give.
GDM is still at version 3.16 due to some issues.
Bump mate-themes to use the gtk 3.18 version of the themes.
Thanks to Antoine Brodin for running the exp-runs.
This release was made possible by the following people:
Gustau Perez
Ting-Wei_Lan
PR: 207006
 |
Sunday, 22 Nov 2015
|
00:52 kwm
Update appstream-glib to 0.5.4.
Switch from custom code to using USES=libarchive.
Adjust BUILD_DEPEND lines in where needed.
 |
Wednesday, 5 Aug 2015
|
19:13 kwm
The FreeBSD GNOME team proudly presents GNOME 3.16 for FreeBSD.
The offical GNOME 3.16 release notes can be found at
https://help.gnome.org/misc/release-notes/3.16/
Upgrade instructions for port users:
Delete the old tracker package with:
# pkg delete -f tracker
And user port upgrade tool of choice to upgrade.
Thanks to Antoine Brodin for running the exp-runs.
This release was made possible by the following people:
Gustau Perez
Ting-Wei_Lan
PR: 201980
 |
Thursday, 15 Jan 2015
|
17:07 kwm
Update aisleriot to 3.14.2.
 |
Saturday, 29 Nov 2014
|
18:22 tijl
Split devel/gettext in devel/gettext-runtime and devel/gettext-tools. The
first contains runtime libraries such as libintl and the latter contains
developer tools such as msgfmt. Ports that use gettext will usually need
a LIB_DEPENDS on gettext-runtime and a BUILD_DEPENDS on gettext-tools.
USES=gettext-runtime can be used to set a LIB/BUILD/RUN_DEPENDS on
devel/gettext-runtime and USES=gettext-tools can be used to set a
BUILD/RUN_DEPENDS on devel/gettext-tools. USES=gettext is now the same
as "USES=gettext-runtime gettext-tools" meaning a LIB_DEPENDS on
devel/gettext-runtime and a BUILD_DEPENDS on devel/gettext-tools.
Update gettext to 0.19.3.
Remove :oldver from converters/libiconv and devel/gettext-runtime. Leave
symlinks with the old library versions to avoid the need to bump
PORTREVISION on a large number of dependent ports. When most of the
dependent ports have had normal version updates, PORTREVISION can be
bumped on the remaining ones (low number) and the links can be removed.
Fix some ports that installed files in lib/locale instead of share/locale.
PR: 194038
Reviewed by: bapt
Exp-run: antoine
Approved by: portmgr (antoine)
 |
Wednesday, 19 Nov 2014
|
11:49 kwm
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 (Only the first 15 lines of the commit message are shown above )
 |
Number of commits found: 39 |