Commit Graph

63205 Commits

Author SHA1 Message Date
Yorick Hardy ad1e284b2c d1x-rebirth: update to d1x-rebirth-20201216
No changelog provided.
2020-12-24 14:59:40 +02:00
Yorick Hardy cd6ee76c77 naev: update to naev-0.8.0
Release announcement:

  * Gameplay
      = Overhaul of the interface to be more sleek and functional
          - Interface is much more slick
          - Dark theme to be more consistent with space
          - Font uses outlines to be more readable
      = New map overlay with adjustable opacity
      = Added rarity indicator to ships and outfits
      = Changed fonts
      = Indicate non-common NPC with exclamation marks
      = Added accessory slot and unique accessory outfits as mission rewards
      = Simple economy model implemented with map visualizations
      = Added travelling merchant who sells unique items
      = Made missiles and fighter bays reload while in space
      = Modified the balancing of missiles
      = Added asteroids and mining
      = Improved player GUI
      = Brushed GUI is now the default
      = Improved and fixed escort system
      = Made Pirates and FLF spawn in a fairer way
      = Made time pass at different rates for different ships ("Time Dilation")
      = Made piracy missions available from any Independent or black market
        planet
      = Substantially increased pay for unique missions (10x in most cases)
      = Made references to the player gender-neutral
      = Made combat music vary from faction to faction
      = Made it so AI ships spawn with cargo
      = Improved AI behaviours
      = Nerfed Quicksilver
      = Added the ability to buy "fake IDs" from pirate strongholds
      = Made jammers into activated outfits that increase cloaking
      = Added Soromid organic ships that level up organs
      = Improved and expanded NPC portraits
      = Commodities can be sold/bought everywhere
      = Added a "slow mode", which runs the game at half speed (like an easy
        mode)
      = Added a ship log which records events
      = Added a "system map" which displays information about known remote
        planets
      = Added support for giving commands to individual escorts
      = New intro images replacing old placeholders
      = Increased pirate name variety for bounty missions
      = Ships now travel with you automatically for free, as with outfits
      = Added map decorators showing locations of factions and the Nebula
      = Added a dogfight aiming helper
      = More music
      = New and/or improved missions
          - New Za'lek mini-campaign
          - Completed the FLF campaign
          - Fixed up the Collective campaign
          - Improved the Shark (Nexus Shipyards) campaign
          - Improved the Dvaered anti-FLF campaign
          - Added and improved piracy missions
          - New minor Soromid campaign, "Coming Out"
          - New tutorial mission at the start of a new game
          - Various newly added and improved generic missions
  * Engine
      = Support for compilation with Meson
      = HiDPI-awareness
      = Support for translations
      = Added shaders to speed up and improve graphics
      = Added support for non-ascii direct character input
      = Added support for map decorators
      = Removed support for Lua 5.0
      = Removed support for SDL 1, only SDL 2 is supported
      = Added support for translating
      = Made the OSD compact itself to avoid showing redundant information
      = Made Autonav able to follow ships
      = Consolidated the effects of cloaking and jammers under cloaking
      = Added workaround for ALSOFT buggy version that crashes
      = Added a polygon-based collision algorithm
      = Added some symbols for partial colorblind accessibility
      = Support #include in shaders
      = Multiple font support
      = Many bugfixes
2020-12-24 14:59:40 +02:00
Yorick Hardy 1d3fe31e87 dosbox-staging: import dosbox-staging-0.76.0 as wip/dosbox-staging
DOSBox Staging is an attempt to revitalize DOSBox's development
process. It's not a rewrite, but a continuation and improvement on
the existing DOSBox codebase while leveraging modern development
tools and practices.
2020-12-24 14:59:39 +02:00
Yorick Hardy 94a2196666 jfsw-git: fix build
perl is now required for the build, and the fluidsynth error
has been fixed upstream.
2020-12-24 14:59:38 +02:00
Yorick Hardy 8f7db7dfe2 opentyrian: fix build
These patches work around some errors when building with gcc.
Bump PKGREVISION because the code behaviour may have changed
with these patches (in which case the unpatched code was probably
incorrect).
2020-12-24 14:59:37 +02:00
Yorick Hardy f81bbe5c8a serious-engine-tfe-git: needs bison to build 2020-12-24 14:59:37 +02:00
Yorick Hardy df9690d4c5 xoreos: add hacks.mk for atomic operations
src/common/uuid.cpp needs 64-bit atomic operations
for a global uint64_t UID. Add a hacks.mk similar
to www/webkit-gtk/hacks.mk
2020-12-24 14:59:36 +02:00
Yorick Hardy 10f4e82273 luakit-git: remove patch, fixed upstream 2020-12-24 14:59:35 +02:00
Yorick Hardy 10e1f9dc46 tex-setspace-doc: fix download 2020-12-24 14:59:35 +02:00
Yorick Hardy 057c3fa43a tex-relsize-doc: fix download 2020-12-24 14:59:34 +02:00
Yorick Hardy 298f133a93 tex-mathtools-doc: fix download 2020-12-24 14:59:33 +02:00
Yorick Hardy 814eb7969f tex-lineno-doc: fix download 2020-12-24 14:59:33 +02:00
Yorick Hardy f48c33d8c2 tex-fancyref-doc: fix download 2020-12-24 14:59:32 +02:00
Yorick Hardy 69d3cd6075 tex-breqn-doc: fix download 2020-12-24 14:59:31 +02:00
Yorick Hardy fa063964d2 tex-attachfile-doc: fix download 2020-12-24 14:59:31 +02:00
Yorick Hardy baba5385e5 urlwatch: update to urlwatch-2.22
Changelog:

== [2.22] -- 2020-12-19

=== Added

- Added 'wait_until' option to browser jobs to configure how long
  the headless browser will wait for pages to load.
- Jobs now have an optional `treat_new_as_changed` (default `false`)
  key that can be set, and will treat newly-found pages as changed,
  and display a diff from the empty string (useful for `diff_tool`
  or `diff_filter` with side effects)
- New reporters: `discord`, `mattermost`
- New key `user_visible_url` for URL jobs that can be used to show
  a different URL in reports (useful if the watched URL is a REST API
  endpoint, but the report should link to the corresponding web page)
- The Markdown reporter now supports limiting the report length via the
  `max_length` parameter of the `submit` method. The length limiting logic is
  smart in the sense that it will try trimming the details first, followed by
  omitting them completely, followed by omitting the summary. If a part of the
  report is omitted, a note about this is added to the report. (PR#572, by
  Denis Kasak)

=== Changed

- Diff output is now generated more uniformly, independent of whether
  the input data has a trailing newline or not; if this behavior is not
  intended, use an external `diff_tool` (PR#550, by Adam Goldsmith)
- The `--test-diff-filter` output now properly reports timestamps from
  the history entry instead of the current date and time (Fixes #573)
- Unique GUIDs for jobs are now enforced at load time, append "#1",
  "#2", ... to the URLs to make them unique if you have multiple
  different jobs that share the same request URL (Fixes #586)
- When a config, urls file or hooks file does not exist and should be
  edited or inited, its parent folders will be created (previously
  only the urlwatch configuration folder was created; Fixes #594)
- Auto-matched filters now always get `None` supplied as subfilter;
  any custom filters must accept a `subfilter` parameter after the
  existing `data` parameter
- Drop support for Python 3.5

== Fixed

- Make imports thread-safe: This might increase startup times a bit,
  as dependencies are imported on bootup instead of when first used.
  Importing in Python is not (yet) thread-safe, so we cannot import
  new modules from the worker threads reliably (Fixes #559, #601)

- The Matrix reporter was improved in several ways (PR#572, by Denis Kasak):

  - The maximum length of the report was increase from 4096 to 16384.
  - The report length limiting is now implemented via the new length limiting
    functionality of the Markdown reporter. Previously, the report was simply
    trimmed at the end which could break the diff blocks and make them render
    incorrectly.
  - The diff code blocks are now tagged as diffs which will allow the diffs to
    be syntax highlighted as such. This doesn't yet work in Element, pending on
    the resolution of trentm/python-markdown2#370.
2020-12-24 14:59:30 +02:00
Yorick Hardy d21cf81d10 commandergenius: update to Commander-Genius-2.7.3
Changelog:

v2.7.3:
-------
- Smarter Game store. Catalogue entries can be read later at runtime and in the background

v2.7.2:
-------
- Disc color now is white
- Touch buttons give feedback when pressed/touched
- Improved overall direction and buttons control
- No more ugly vpad background

v2.7.1:
-------
- Added disc to the virtual dpad and improved overlay controls
- Using a newer SDL2 mixer function for creating the audio device
2020-12-24 14:59:29 +02:00
Yorick Hardy 04f648ad69 naev: sync with games/naev 2020-12-24 14:59:25 +02:00
Olaf Seibert 73f17cbdfb pan2-git: adjust PLIST and patches. 2020-12-24 12:43:50 +01:00
Jason Bacon 9500d9b310 munge: Limit logrotate and systemd to Linux, test on NetBSD 2020-12-23 09:09:56 -06:00
Jason W Bacon 4ce55511f0 munge: Configure CONF_FILES without hacking build system 2020-12-23 09:05:39 -06:00
Jason W Bacon da3506f8eb munge: Fix CONF_FILES and PLIST 2020-12-22 22:33:54 -06:00
Charlotte Koch 3f50046878 Import reproc 14.2.1 2020-12-22 18:38:22 -08:00
Jason W Bacon 4a3b27fcf2 munge: Work on utilizing CONF_FILES 2020-12-22 20:21:51 -06:00
Charlotte Koch 4383459ee3 Import libaudec 0.2.4 2020-12-22 17:59:42 -08:00
Charlotte Koch 3734eaccb3 Import libcyaml 1.1.0 2020-12-22 17:36:03 -08:00
K.I.A.Derouiche 8a4286d0d8 Import py-pyspark-3.0.1 to wip 2020-12-22 23:18:09 +01:00
K.I.A.Derouiche 20e944ddae Import go-godot-1.3.2 to wip 2020-12-22 21:45:33 +01:00
Jason W Bacon 52e4b4b6b0 spcm: Use rsync to distribute Joyent pkgsrc installation 2020-12-22 13:32:12 -06:00
Jason W Bacon d6c9d52126 spcm: Fix script typo 2020-12-22 12:17:42 -06:00
Jason W Bacon acf20e3a83 ape: Add destdir support and fix man path 2020-12-22 11:48:32 -06:00
Jason W Bacon 21fa5566e4 libpare: Add destdir support and fix man path 2020-12-22 11:44:17 -06:00
Amitai Schleier 2bb0d96067 Update to 0.3. From the changelog:
- Makefile now builds a shared library in addition to the static
  library. (This doesn't build on my macOS dev system, so I've not
  enabled it yet in pkgsrc-wip.)
- A fallback implementation of explicit_bzero was added for systems
  that lack it.
- Fix NULL dereference when a server is configured without any
  certificates.
2020-12-22 16:28:27 +01:00
Frédéric Fauberteau 353214ce79 go-bindata: Update to 4.0.0 2020-12-22 13:52:59 +00:00
Dan Cîrnaț f6b7e0eb98 flag: Simplify Makefile for wip/flag (github options) 2020-12-22 14:43:27 +01:00
Dan Cîrnaț 318d781796 Import flag-0.1 as wip/flag
flag is a wrapper for conveniently installing packages from pkgsrc
2020-12-22 13:49:22 +01:00
pin f6cc2b8ded import bk 2020-12-22 12:53:10 +01:00
Jason W Bacon 9ef7451736 spcm: Fix SPCM update scripts for pkgsrc-based platforms 2020-12-21 20:41:36 -06:00
Jason W Bacon c1fa269ea8 spcm: Fix auto-admin dep version 2020-12-21 15:02:54 -06:00
Benny Siegert bdf5da9406 New package for gnome-calculator-3.38.x
This does not build at the moment -- there are issues with vala not
finding gtksourceview4 and msgfmt errors.
2020-12-21 19:25:09 +01:00
Jason W Bacon f7ec9a4bf9 spcm: cluster-diagnostics: Fix missing esac 2020-12-21 10:54:15 -06:00
Leonardo Taccari 1bfeb57498 sfeed_curses-git: Bump PKGVERSION to current upstream one 2020-12-21 16:00:09 +01:00
Michael Baeuerle 9dbe6b8fe1 doomlegacy-devel: Update to SVN revision 1567
- Support for second mouse
- Fixes for blockmap import from WAD
- Fixes for GCC 10
2020-12-21 12:14:12 +01:00
K.I.A.Derouiche 9cbec00dec py-zlmdb: Update to 20.12.1 2020-12-21 11:32:17 +01:00
Leonardo Taccari 8625528906 py-bandit: Update to 1.7.0
Changes:
1.7.0
-----
  * Remove blacklist call to input() (#662) @ericwb
  * Create CODEOWNERS (#661) @ericwb
  * Remove universal support on the wheel (#655) @ericwb
  * Give some tips on how to resolve B101 in the doc (#616) @xuhdev

1.6.3
-----
  * Add workflow to publish to PyPI (#653) @ericwb
  * GitHub Action to publish to Test PyPI (#652) @ericwb
  * Fix # noqa rendering in docs (#645) @DrGFreeman
  * Don't show progress information on --quiet (#641) @fniessink
  * Add skip configuration to assert_used (#633) @wilbertom
  * Drop Python2 build, test, and install (#615) @ericwb
  * Add release notes project URL (#610) @scop
  * [FIX] blacklist: fix typo in import_ftplib (#601) @Yenthe666
  * Resolve 'NoneType' object has no attribute 'id'Traceback in
    django_mark_safe (#598) @ehooo
  * Update CODE_OF_CONDUCT.md (#591) @ericwb
  * Fix typo for activating venv (#590) @bavedarnow
  * Bump pyyaml (#588) @dosisod
  * Fix colorama not being disabled after being used (#586) @adambenali
  * Cleanup some typos in recent contributor guide (#585) @ericwb
  * [DOC] Support python3 venv creation (#583) @look4regev
  * Fix contributing typo (#582) @Glyphack
  * Add contributing file (#572) @Glyphack
  * Add push and pull request to GH Action trigger (#567) @ericwb
  * Use GitHub Actions to run CI (#565) @ericwb
  * Add sha1 to the list of insecure hashes (#561) @ericwb
  * replace 'then' with 'than' (#557) @pwoolvett
  * Fix docs for B610,B611,B703 (#555) @amacfie
  * Add a section explaining "nosec" (#554) @exhuma
  * Add official support of Python 3.8 (#547) @ericwb
  * Ignore common directories by default (#544) @ericwb
  * Add shelve to the pickle blacklists (#542) @auscompgeek
  * Add more missing ini options (#541) @ericwb
  * Revert "Revert "Update python documentation links for version 3
    counterparts"" (#540) @ericwb
  * Remove unused bindep.txt file (#539) @ericwb
  * Remove obsolete "sudo" keyword. (#538) @jugmac00
  * Update test requirements to latest versions (#535) @ericwb
  * Fix readme file on Extending Bandit on list things (#534) @Aurel10
  * fix the documentation file README.rst (#533) @Aurel10
  * Cleanup comments after #510 (#532) @florczakraf
  * Use SPDX license identifier instead of bulky headers (#530) @ericwb
  * fix B603 docstring (#524) @graingert
  * Add type checking to name node of hashlib_new (#516) @teeann
  * --exit-zero option (#510) @maciejstromich
  * Fix 3.8 errors (#509) @tylerwince
  * Add several ini options for .bandit file (#508) @vuolter
  * get_url returns different urls calling twice (bug #506) (#507) @ehooo
  * Replace setattr (#493) @tylerwince
2020-12-21 10:30:49 +01:00
Jason W Bacon bc28782c3a spcm: Standardize unsupported OS message 2020-12-20 12:13:38 -06:00
Jason W Bacon c2eb1fde9f auto-admin: Remove redundant auto-wheel-check 2020-12-20 12:04:36 -06:00
Olaf Seibert 38ad4175c4 ruby-asciidoctor: update to 2.0.12
v2.0.12 @mojavelinux released this on Nov 10 2020

This is a minor patch release that fixes some regressions that were
introduced during the long release cycle of 2.0.11. We strongly
recommend upgrading to this version instead of using 2.0.11.

Notable changes include restoring the type and target on unresolved
footnotes (so they display properly), fixing a crash when an extension
set a numeric width or height on an SVG image when using opts=inline,
resetting the word wrap behavior to normal on tables to avoid aggressive
word breaks, reverting the use of a Ruby 2.3 construct that prevented
Asciidoctor from working on CentOS, including the role on an inline
image in the DocBook output, and passing through the explicit width and
height values on an SVG image as is when using opts=inline.

Please note that it will not be possible to use Asciidoctor on Ruby <
2.3 after the 2.0.x release line. Those versions are already
unsupported. However, since we had not yet made a change that prevented
them from working, we'll wait until
2.1.x to do so.

v2.0.11 @mojavelinux released this on Nov 3 2020

This is a big patch release that fixes a slew of issues that have been
discovered from heavy usage. It's a larger release than we had planned
because we're in the process of rewriting the docs and have been holding
minor releases until the docs were merged. Unfortunately, that has taken
longer than expected. But we're nearly there. In the meantime, we're
putting out this patch release to publish the fixes that have
accumulated in the meantime.

Notable changes include fixing two infinite loop scenarios, applying
text formatting to cells in the implicit table head row when the column
has the "a" or "l" style, restoring compatibility with Rouge >= 3.4 (by
defining entry point API methods as class methods instead of module
functions), fix bottom margin collapsing on an AsciiDoc table cell,
removing excess hard line breaks in multi-line AsciiMath blocks,
preserving repeating blackslashes in manpage output, move style tags for
syntax highlighters into head of HTML output, for wrapping to avoid
overflow in HTML output, fix cell borders for colspan or rowspan cells
when frame and grid attribute values are congruent, and allow the
encoding of the include file to be specified using the encoding
attribute.
2020-12-20 17:12:43 +01:00
Leonardo Taccari eafa7eda5b sfeed_curses-git: Bump PKGVERSION to match upstream one 2020-12-20 12:10:38 +01:00
Jason W Bacon 7310d24a70 auto-admin: Standardize remaining unsupported OS messages 2020-12-19 20:20:11 -06:00