| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
| |
PR: 262198
(cherry picked from commit c10ed451d2d743cdbb72172f8f5f9dbb1c2f0166)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Thursday, 3 March 2022
Over 120 individual programs plus dozens of programmer libraries and
feature plugins are released simultaneously as part of KDE Gear.
Today they all get new bugfix source releases with updated translations,
including:
* kcron: Improve temporary file handling
* kio-extras: SFTP can use random access
* kontact: Fix Manager Crash when clicking New
Distro and app store packagers should update their application packages.
Changelog:
https://kde.org/announcements/changelogs/gear/21.12.3/
Release Notes:
https://community.kde.org/KDE_Gear/21.12_Release_notes
(cherry picked from commit d01e18bd2101d3cc6d35c46bb240a15b5a890825)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
In X11-only setups it's still common to have mesa-dri but not vulkan-loader.
However, Veloren defaults to Vulkan on Linux/BSD:
PanicInfo: panicked at 'Failed to select a rendering backend! No compatible backends were found. We currently support vulkan, metal, dx12, and dx11. Installing or updating vulkan drivers may resolve this issue. If the issue persists, please include the operating system and GPU details in your bug report to help us identify the cause.', voxygen/src/main.rs:255:13
Forcing OpenGL via WGPU_BACKEND=opengl is still broken:
PanicInfo: panicked at 'Error in Adapter::request_device: unsupported features were requested: DEPTH_CLAMPING | ADDRESS_MODE_CLAMP_TO_BORDER', .../wgpu-a92b854/wgpu/src/backend/direct.rs:113:9
See also https://veloren.net/devblog-125/
(cherry picked from commit 609b3b168f392f5a36779fe4a33ce9d8ae4f5f46)
|
|
|
|
|
|
| |
GitLab is slow and may mutate LFS export e.g., 27daf983c2f3.
(cherry picked from commit 12e296fafe63c66f916e51e63b5fbfc801572c1d)
|
|
|
|
|
|
|
| |
Changes: https://gitlab.com/veloren/veloren/-/releases/v0.12.0
Reported by: Repology
(cherry picked from commit 7d1aede49dd00ce3ff52184b67bd3a83e6f9fa4e)
|
|
|
|
|
|
|
|
| |
Changes: https://github.com/Novum/vkQuake/releases/tag/1.12.2
PR: 261896
Approved by: Greg V (maintainer)
(cherry picked from commit 2b6b4153dd24a633fdf5a7aeedd56833c36189ca)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Thursday, 3 February 2022
Over 120 individual programs plus dozens of programmer libraries and
feature plugins are released simultaneously as part of KDE Gear.
Today they all get new bugfix source releases with updated translations.
Full changelog:
https://kde.org/announcements/changelogs/gear/21.12.2/
(cherry picked from commit e6e9fd72c47e0ce7398b11c56cd7bbe636de8c7c)
|
|
|
|
|
|
|
|
|
| |
Homepage link http://www.chronocrash.com/ is a permanent redirect to
its HTTPS counterpart https://www.chronocrash.com/ and should be updated.
Reported by: Repology
(cherry picked from commit 3b9d17005e226ebef6aca2baa6c3445da998dcdb)
|
|
|
|
|
|
|
|
| |
This is a recreation of commit
d64a2a380f88ceec8264db6bbc94805f58112ee7
PR: 261449
Security: ee26f513-826e-11ec-8be6-d4c9ef517024
|
|
|
|
| |
(cherry picked from commit 48d98ef9181e828b575f37e1841ad53e5def5987)
|
|
|
|
| |
(cherry picked from commit bc708349c36959040572c22635fb65f6d8ec9aac)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Thursday, 6 January 2022
Over 120 individual programs plus dozens of programmer libraries and
feature plugins are released simultaneously as part of KDE Gear.
Today they all get new bugfix source releases with updated translations.
Distro and app store packagers should update their application packages.
Changelog:
https://kde.org/announcements/changelogs/gear/21.12.1/
(cherry picked from commit 2b5369a28e8313f8b3ed31fb819889c0d4009ef7)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
sdl2 has a namespace pollution where <SDL.h> defines unprefixed HAVE_*
macros often used by autotools, CMake, Meson. As sdl2 now depends on
libinotify for joystick support HAVE_SYS_INOTIFY_H confuses openclonk
which itself fails to detect <sys/inotify.h>. Due to inconsistent macro
visibility and missing -linotify the build breaks. So, force-disable
inotify code as it seems to be only used by editor (e.g., reload scenarios
on changes) which since openclonk 8.0 requires Qt5.
$ rg HAVE_SYS_INOTIFY_H /usr/local/include
/usr/local/include/SDL2/SDL_config.h
223:#define HAVE_SYS_INOTIFY_H 1
$ make
[...]
-- Looking for C++ include sys/inotify.h
-- Looking for C++ include sys/inotify.h - not found
[...]
src/platform/C4FileMonitor.cpp:29:2: error: use of undeclared identifier 'fd'
fd = inotify_init1(IN_CLOEXEC);
^
src/platform/C4FileMonitor.cpp:30:6: error: use of undeclared identifier 'fd'
if (fd == -1) fd = inotify_init();
^
src/platform/C4FileMonitor.cpp:30:16: error: use of undeclared identifier 'fd'
if (fd == -1) fd = inotify_init();
^
src/platform/C4FileMonitor.cpp:31:6: error: use of undeclared identifier 'fd'
if (fd == -1) LogF("inotify_init %s", strerror(errno));
^
src/platform/C4FileMonitor.cpp:42:15: error: use of undeclared identifier 'fd'
while (close(fd) == -1 && errno == EINTR) { }
^
src/platform/C4FileMonitor.cpp:57:29: error: use of undeclared identifier 'fd'
int wd = inotify_add_watch(fd, file, IN_CREATE | IN_MODIFY | IN_MOVED_TO | IN_MOVE_SELF | IN_ONLYDIR);
^
src/platform/C4FileMonitor.cpp:60:2: error: use of undeclared identifier 'watch_descriptors'
watch_descriptors[wd] = file;
^
src/platform/C4FileMonitor.cpp:65:59: error: use of undeclared identifier 'fd'
if ((pfd->revents & pfd->events) != POLLIN || pfd->fd != fd)
^
src/platform/C4FileMonitor.cpp:66:69: error: use of undeclared identifier 'fd'
LogF("C4FileMonitor::Execute unexpectedly called %d %d %hd %hd", fd, pfd->fd, pfd->events, pfd->revents);
^
src/platform/C4FileMonitor.cpp:69:11: error: use of undeclared identifier 'fd'
if (read(fd, buf, sizeof(buf)) > 0)
^
src/platform/C4FileMonitor.cpp:71:23: error: use of undeclared identifier 'watch_descriptors'
const char * file = watch_descriptors[event->wd];
^
src/platform/C4FileMonitor.cpp:99:17: error: use of undeclared identifier 'fd'
pollfd pfd = { fd, POLLIN, 0 };
^
PR: 260885
Reported by: pkg-fallout
Submitted by: Kevin Zheng (maintainer, different commit message)
(cherry picked from commit deb3482f019ce860b2998f0f55475900edd35b9e)
|
|
|
|
|
|
|
|
|
| |
Changelog:
https://github.com/shlomif/PySolFC/blob/pysolfc-2.14.1/NEWS.asciidoc
MFH: 2022Q1
(cherry picked from commit c72673680e44421a66892fffb7562959f5f708ce)
|
|
|
|
|
|
|
|
|
|
| |
* Update pkg-descr while I'm here.
Changelog:
https://downloads.scummvm.org/frs/scummvm/2.5.1/ReleaseNotes.html
MFH: 2022Q1
(cherry picked from commit 6aa9851440bbd69f3fbbcb75bfbb2a5a1e656b9a)
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
2021-10-31 devel/sdl_sge: Upstream no longer maintained
2021-12-31 net/appkonference: Outdated, depends on unsupported version of net/asterisk
2021-12-31 dns/bind911: End of life, please migrate to a newer version of BIND9
2021-12-31 net/zebra: Abandoned upstream, last release in 2005. Consider migrating to net/frr7 or net/bird2
2021-12-31 audio/osalp: Abandoned upstream, listed as beta and no new release since 2008
2021-12-31 games/stransball2: Depends on expired devel/sdl_sge
2021-12-31 devel/rubygem-ruby-sdl-ffi: Depends on expired devel/sdl_sge
2021-12-31 devel/rubygem-rubygame: Depends on expired devel/sdl_sge
2021-12-31 devel/ruby-sdl: Depends on expired devel/sdl_sge
2021-12-31 games/magicmaze: Depends on expired devel/sdl_sge
2021-12-31 games/trophy: Depends on expired devel/clanlib1
2021-12-31 devel/clanlib1: Older than expired and removed devel/clanlib
2021-12-31 www/py-django31: Upgrade to Django 3.2+. Mainstream support ended (April 6, 2021). Extended support ends December 2021. See https://www.djangoproject.com/download/
2021-12-31 www/py-dj31-django-prometheus: Extended support of Django 3.1 ends December 2021, upgrade to the Django 3.2+ version of this port. See https://www.djangoproject.com/download/
2021-12-31 databases/postgis24: Deprecated in favour of databases/postgis3x
2021-12-31 net-im/ekiga: Last release in 2013, not actively maintained
2021-12-31 sysutils/sample: abandoned upstream, incompatible with newer kernels
2021-12-31 www/mediawiki131: Upstream EOL
2021-12-31 www/py-dj31-django-mptt: Extended support of Django 3.1 ends December 2021, upgrade to the Django 3.2+ version of this port. See https://www.djangoproject.com/download/
2021-12-31 net/py-flask-xml-rpc: No longer maintained upstream
2021-12-31 audio/libaacplus: Abandoned upstream, no new release since 2011
2021-12-31 security/obfsclient: https://github.com/Yawning/obfsclient/issues/37
2021-12-31 devel/eric6: Uses EOL Python 2.7 via www/py-qt5-webengine
2021-12-31 www/grafana: No longer maintained upstream, use www/grafana8
2021-12-31 www/py-dj31-django-auth-ldap: Extended support of Django 3.1 ends December 2021, upgrade to the Django 3.2+ version of this port. See https://www.djangoproject.com/download/
2021-12-31 www/py-dj31-django-filter: Extended support of Django 3.1 ends December 2021, upgrade to the Django 3.2+ version of this port. See https://www.djangoproject.com/download/
2021-12-31 www/py-dj31-drf-yasg: Extended support of Django 3.1 ends December 2021, upgrade to the Django 3.2+ version of this port. See https://www.djangoproject.com/download/
2021-12-31 www/py-dj31-django-js-asset: Extended support of Django 3.1 ends December 2021, upgrade to the Django 3.2+ version of this port. See https://www.djangoproject.com/download/
2021-12-31 www/py-dj31-django-timezone-field: Extended support of Django 3.1 ends December 2021, upgrade to the Django 3.2+ version of this port. See https://www.djangoproject.com/download/
2021-12-31 www/py-dj31-django-tables2: Extended support of Django 3.1 ends December 2021, upgrade to the Django 3.2+ version of this port. See https://www.djangoproject.com/download/
2021-12-31 www/py-dj31-django-taggit: Extended support of Django 3.1 ends December 2021, upgrade to the Django 3.2+ version of this port. See https://www.djangoproject.com/download/
2021-12-31 graphics/librasterlite: Deprecated in favour of graphics/librasterlite2
2021-12-31 www/py-dj31-django-cacheops: Extended support of Django 3.1 ends December 2021, upgrade to the Django 3.2+ version of this port. See https://www.djangoproject.com/download/
2021-12-31 net-mgmt/p0f2: newer version available in net-mgmt/p0f
2021-12-31 devel/libhash: Abandoned upstream
2021-12-31 www/py-dj31-django-debug-toolbar: Extended support of Django 3.1 ends December 2021, upgrade to the Django 3.2+ version of this port. See https://www.djangoproject.com/download/
2021-12-31 www/py-dj31-django-cors-headers: Extended support of Django 3.1 ends December 2021, upgrade to the Django 3.2+ version of this port. See https://www.djangoproject.com/download/
2021-12-31 audio/flake: Abandoned upstream, no new release since 2007
2021-12-31 audio/ifp-line: Abandoned upstream, no new release since 2005
2021-12-31 audio/libnjb: Abandoned upstream, no new release since 2011
2021-12-31 audio/lpac: Abandoned upstream in 2003
2021-12-31 multimedia/mmsclient: Abandoned upstream, Microsoft deprecated MMS in 2003
2021-12-31 www/plugger: Uses incompatible plugin interface NPAPI
2021-12-31 audio/mpiosh: Abandoned upstream, no new release since 2004
2021-12-31 audio/rplay: Abandoned upstream, no new releases since 1999
2021-12-31 audio/celt: Deprecated and considered obsolete by upstream in 2016 in favour of (lib)opus
2021-12-31 security/nacl: Unmaintained by upstream, use libsodium instead
2021-12-31 net-mgmt/unifi-poller: Now called unpoller by upstream
2021-12-31 lang/nml: Abandoned upstream, last release 2004-04-19
2021-12-31 audio/mp32ogg: Abandoned upstream and unfetchable from upstream
2021-12-31 net/libstorj: Deprecated in favour of net/storj due to v3 rearchitecture
2021-12-31 devel/yasm-devel: No need to keep the -devel version due to upstream inactivity
2021-12-31 www/py-dj31-django-redis: Extended support of Django 3.1 ends December 2021, upgrade to the Django 3.2+ version of this port. See https://www.djangoproject.com/download/
2021-12-31 devel/py-dj31-django-rq: Extended support of Django 3.1 ends December 2021, upgrade to the Django 3.2+ version of this port. See https://www.djangoproject.com/download/
2021-12-31 graphics/libreatlas: Abandoned upstream, no new release since 2012
2021-12-31 www/py-dj31-djangorestframework: Extended support of Django 3.1 ends December 2021, upgrade to the Django 3.2+ version of this port. See https://www.djangoproject.com/download/
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
| |
Instead of using PATCHFILES, handled backported upstream commit as
a patch under files/, where it is always available, manageable and
where it doesn't break when patch format changes.
Fix fetch because of broken patch.
Pointyhat to: greg@unrelenting.technology
|
|
|
|
|
|
|
|
| |
Instead of using PATCHFILES, handled backported upstream commit as
a patch under files/, where it is always available, manageable and
where it doesn't break when patch format changes.
Pointyhat to: tcberner, jbeich
|
| |
|
|
|
|
| |
PR: 260452
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
After having sent a number of FreeBSD patches to the author, he
updated the project and incorporated them. So this is mainly a
patch release.
Port changes:
- remove patches incorporated by upstream
- unbreak build on FreeBSD 13+
- set LICENSE to MIT
- depend on audio/alsa-utils if audio output is desired
- take up maintainership of this unmaintained port
PR: 260633
Reported by: Robert Clausecker <fuz@fuz.su> (new maintainer)
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
/usr/bin/c++ -DGAME_VERSION=\"1.0.1\" -DLUA_USE_LINUX -DPLATFORM=0 -I/usr/local/include -I/usr/local/include/irrlicht -I/wrkdirs/usr/ports/games/irrlamb/work/irrlamb-1.0.1/src -I/wrkdirs/usr/ports/games/irrlamb/work/irrlamb-1.0.1/src/irrlicht/include -I/wrkdirs/usr/ports/games/irrlamb/work/irrlamb-1.0.1/src/OPCODE -I/wrkdirs/usr/ports/games/irrlamb/work/irrlamb-1.0.1/src/libccd -I/wrkdirs/usr/ports/games/irrlamb/work/irrlamb-1.0.1/src/libccd/custom -I/usr/local/include/freetype2 -I/usr/local/include/AL -O2 -pipe -fstack-protector-strong -fno-strict-aliasing -Wall -Wno-deprecated-declarations -pedantic -std=gnu++11 -msse -mfpmath=sse -O2 -pipe -fstack-protector-strong -fno-strict-aliasing -DdNODEBUG -s -MD -MT CMakeFiles/irrlamb.dir/src/OPCODE/Ice/IceAABB.cpp.o -MF CMakeFiles/irrlamb.dir/src/OPCODE/Ice/IceAABB.cpp.o.d -o CMakeFiles/irrlamb.dir/src/OPCODE/Ice/IceAABB.cpp.o -c /wrkdirs/usr/ports/games/irrlamb/work/irrlamb-1.0.1/src/OPCODE/Ice/IceAABB.cpp
c++: warning: argument unused during compilation: '-msse' [-Wunused-command-line-argument]
c++: warning: argument unused during compilation: '-s' [-Wunused-command-line-argument]
error: unknown FP unit 'sse'
ninja: build stopped: subcommand failed.
Builds fine on i386.
|
|
|
|
|
|
|
|
|
|
|
| |
* Add Russian language support for any version of the game and generate proper letters for French language
* Add additional spell info for spells owned by a hero
* Add a popup dialog for map information
* Fix AI behaviour during castle defence and update logic with road and its movement score
* Fix UI elements rendering and few crashes related to them
* Over 20 bugs fixed since 0.9.10 release
https://github.com/ihhub/fheroes2/releases/tag/0.9.11
|
| |
|
|
|
|
|
| |
PR: 260563
Submitted by: agh@riseup.net
|
|
|
|
|
| |
PR: 260562
Submitted by: agh@riseup.net
|
|
|
|
|
|
|
| |
ChangeLog: https://codeberg.org/Alexander88207/Suyimazu/releases/tag/5.7
PR: 260521
Reported by: Alexander88207@protonmail.com (maintainer)
|
|
|
|
|
| |
PR: 257873
Approved by: greg@unrelenting.technology (maintainer timeout, >4 months)
|
|
|
|
|
| |
PR: 257874
Approved by: Greg V <greg@unrelenting.technology> (maintainer)
|
|
|
|
|
|
| |
Approved by: eduardo (maintainer)
Approved by: philip (mentor), 0mp (mentor)
Differential Revision: https://reviews.freebsd.org/D33563
|
|
|
|
|
|
|
| |
Terminal based replica of the digital rain from The Matrix
Approved by: 0mp (mentor)
Differential Revision: https://reviews.freebsd.org/D33557
|
|
|
|
|
|
|
| |
cmatrix clone with 32-bit color and Unicode support.
Approved by: 0mp (mentor)
Differential Revision: https://reviews.freebsd.org/D33507
|
|
|
|
| |
PR: 255350
|
| |
|
|
|
|
|
|
| |
Release announcement at
https://dot.kde.org/2021/12/17/gcompris-releases-version-20
there's a dozen new activities.
|
|
|
|
|
| |
PR: 260443
Reported by: Daniel Menelkir <menelkir@itroll.org> (maintainer)
|
|
|
|
|
| |
PR: 255487
Reported by: Daniel Menelkir <menelkir@itroll.org> (maintainer)
|
|
|
|
|
| |
PR: 260442
Reported by: Daniel Menelkir <menelkir@itroll.org> (maintainer)
|