Commit Graph

8641 Commits

Author SHA1 Message Date
nia 0c6b3c4d4e flashrom: remove, newer version in HEAD 2020-01-23 01:18:56 +00:00
nia b58eee9249 firefox: remove, newer version in HEAD 2020-01-22 22:07:12 +00:00
nia d09748794b crawl-stone-soup: remove, imported (as games/stone-soup) 2020-01-22 22:05:39 +00:00
nia e7d1d40f40 bitlbee: remove, imported 2020-01-22 22:04:44 +00:00
nia c140c26e82 cataclysm-dda: remove, imported 2020-01-22 22:03:40 +00:00
nia 7cb11fa797 7kaa: remove, newer version in HEAD 2020-01-22 22:01:38 +00:00
nia 01bddc22ae dunelegacy: Removed, imported 2020-01-22 22:00:18 +00:00
nia d2837c423c mousetweaks: Remove, newer version in HEAD 2020-01-22 18:40:59 +00:00
nia 4909d78d8f Remove epiphany, libdazzle - new versions imported 2020-01-21 15:35:06 +00:00
Adam Ciarciński 2892841ef0 ekg2: removed (the homepage is now a porn site) 2020-01-20 18:38:32 +01:00
Adam Ciarciński 79aa1ccaff libgadu: imported to base 2020-01-20 18:38:32 +01:00
Leonardo Taccari 87667c8739 visidata: Import visidata-1.5.2 as wip/visidata
A curses interface for exploring and arranging tabular data
usable via any remote shell which has Python3 installed.

A few interesting commands:
 - Shift-F pushes a frequency analysis of the current column
 - = creates a new column from the given Python expression (use column names to
   refer to their contents)
 - . creates new columns from the match groups of the given regex

Still not working with NetBSD curses(3) due get_wch(3) usage, probably
exposes a more general devel/py-curses problem.
2020-01-20 15:29:28 +01:00
nia 765c04ff08 Remove totem, totem-pl-parser, grilo-plugins, cheese.
Newer versions in HEAD.
2020-01-20 02:36:16 +00:00
Olaf Seibert 051be94173 Add firefox69-2019Q4. 2020-01-18 22:18:08 +01:00
pin 830dd47169 New package, grim-1.3.0
Tool to take screenshots on Wayland compositor
2020-01-18 10:00:41 +01:00
nia 8663ef2639 Remove firefox-webrtc, www/firefox has webrtc now and this is v/old. 2020-01-17 16:58:44 +00:00
pin 3e08b9227a lxqt-common, remove package
Depracated on current lxqt-version.
2020-01-17 10:24:32 +01:00
Pierre Pronchery 620590dc10 Also remove the package for DeforaOS PDFViewer 2020-01-17 07:47:41 +01:00
Frederic Cambus 2b45fa9004 Remove ruby-rouge, pkgsrc has a newer version. 2020-01-16 19:05:08 +01:00
ng0 89a6aff591 Import guile30 as wip/guile30 version 3.0.0
Changelog:

Changes in 3.0.0 (since the stable 2.2 series):

* Notable changes

** Just-in-time code generation

Guile programs now run up to 4 times faster, relative to Guile 2.2,
thanks to just-in-time (JIT) native code generation.  Notably, this
brings the performance of "eval" as written in Scheme back to the level
of "eval" written in C, as in the days of Guile 1.8.

See "Just-In-Time Native Code" in the manual, for more information.  JIT
compilation will be enabled automatically and transparently.  To disable
JIT compilation, configure Guile with `--enable-jit=no' or
`--disable-jit'.  The default is `--enable-jit=auto', which enables the
JIT if it is available.  See `./configure --help' for more.

JIT compilation is enabled by default on x86-64, i686, ARMv7, and
AArch64 targets.

** Lower-level bytecode

Relative to the virtual machine in Guile 2.2, Guile's VM instruction set
is now more low-level.  This allows it to express more advanced
optimizations, for example type check elision or integer
devirtualization, and makes the task of JIT code generation easier.

Note that this change can mean that for a given function, the
corresponding number of instructions in Guile 3.0 may be higher than
Guile 2.2, which can lead to slowdowns when the function is interpreted.
We hope that JIT compilation more than makes up for this slight
slowdown.

** Interleaved internal definitions and expressions allowed

It used to be that internal definitions had to precede all expressions
in their bodies.  This restriction has been relaxed.  If an expression
precedes an internal definition, it is treated as if it were a
definition of an unreferenced variable.  For example, the expression
`(foo)' transforms to the equivalent of `(define _ (begin (foo) #f))',
if it precedes other definitions.

This change improves the readability of Guile programs, as it used to be
that program indentation tended to increase needlessly to allow nested
`let' and `letrec' to re-establish definition contexts after initial
expressions, for example for type-checks on procedure arguments.

** Record unification

Guile used to have a number of implementations of structured data types
in the form of "records": a core facility, SRFI-9 (records), SRFI-35
(condition types -- a form of records) and R6RS records.  These
facilities were not compatible, as they all were built in different
ways.  This had the unfortunate corollary that SRFI-35 conditions were
not compatible with R6RS conditions.  To fix this problem, we have now
added the union of functionality from all of these record types into
core records: single-inheritance subtyping, mutable and immutable
fields, and so on.  See "Records" in the manual, for full details.

R6RS records, SRFI-9 records, and the SRFI-35 and R6RS exception types
have been accordingly "rebased" on top of core records.

** Reimplementation of exceptions

Since Guile's origins 25 years ago, `throw' and `catch' have been the
primary exception-handling primitives.  However these primitives have
two problems.  One is that it's hard to handle exceptions in a
structured way using `catch'.  Few people remember what the
corresponding `key' and `args' are that an exception handler would see
in response to a call to `error', for example.  In practice, this
results in more generic catch-all exception handling than one might
like.

The other problem is that `throw', `catch', and especially
`with-throw-handler' are quite unlike what the rest of the Scheme world
uses.  R6RS and R7RS, for example, have mostly converged on
SRFI-34-style `with-exception-handler' and `raise' primitives, and
encourage the use of SRFI-35-style structured exception objects to
describe the error.  Guile's R6RS layer incorporates an adapter between
`throw'/`catch' and structured exception handling, but it didn't apply
to SRFI-34/SRFI-35, and we would have to duplicate it for R7RS.

In light of these considerations, Guile has now changed to make
`with-exception-handler' and `raise-exception' its primitives for
exception handling and defined a hierarchy of R6RS-style exception types
in its core.  SRFI-34/35, R6RS, and the exception-handling components of
SRFI-18 (threads) have been re-implemented in terms of this core
functionality.  There is also a a compatibility layer that makes it so
that exceptions originating in `throw' can be handled by
`with-exception-hander', and vice-versa for `raise-exception' and
`catch'.

Generally speaking, users will see no difference.  The one significant
difference is that users of SRFI-34 will see more exceptions flowing
through their `with-exception-handler'/`guard' forms, because whereas
before they would only see exceptions thrown by SRFI-34, now they will
see exceptions thrown by R6RS, R7RS, or indeed `throw'.

Guile's situation is transitional.  Most exceptions are still signalled
via `throw'.  These will probably migrate over time to
`raise-exception', while preserving compatibility of course.

See "Exceptions" in the manual, for full details on the new API.

** `guard' no longer unwinds the stack for clause tests

SRFI-34, and then R6RS and R7RS, defines a `guard' form that is a
shorthand for `with-exception-handler'.  The cond-like clauses for the
exception handling are specified to run with the continuation of the
`guard', while any re-propagation of the exception happens with the
continuation of the original `raise'.

In practice, this means that one needs full `call-with-continuation' to
implement the specified semantics, to be able to unwind the stack to the
cond clauses, then rewind if none match.  This is not only quite
expensive, it is also error-prone as one usually doesn't want to rewind
dynamic-wind guards in an exceptional situation.  Additionally, as
continuations bind tightly to the current thread, it makes it impossible
to migrate a subcomputation with a different thread if a `guard' is live
on the stack, as is done in Fibers.

Guile now works around these issues by running the test portion of the
guard expressions within the original `raise' continuation, and only
unwinding once a test matches.  This is an incompatible semantic change
but we think the situation is globally much better, and we expect that
very few people will be affected by the change.

** Optimization of top-level bindings within a compilation unit

At optimization level 2 and above, Guile's compiler is now allowed to
inline top-level definitions within a compilation unit.  See
"Declarative Modules" in the manual, for full details.  This change can
improve the performance of programs with many small top-level
definitions by quite a bit!

At optimization level 3 and above, Guile will assume that any top-level
binding in a declarative compilation unit that isn't exported from a
module can be completely inlined into its uses.  (Prior to this change,
-O3 was the same as -O2.)  Note that with this new
`seal-private-bindings' pass, private declarative bindings are no longer
available for access from the first-class module reflection API.  The
optimizations afforded by this pass can be useful when you need a speed
boost, but having them enabled at optimization level 3 means they are
not on by default, as they change Guile's behavior in ways that users
might not expect.

** By default, GOOPS classes are not redefinable

It used to be that all GOOPS classes were redefinable, at least in
theory.  This facility was supported by an indirection in all "struct"
instances, even though only a subset of structs would need redefinition.
We wanted to remove this indirection, in order to speed up Guile
records, allow immutable Guile records to eventually be described by
classes, and allow for some optimizations in core GOOPS classes that
shouldn't be redefined anyway.

Thus in GOOPS now there are classes that are redefinable and classes
that aren't.  By default, classes created with GOOPS are not
redefinable.  To make a class redefinable, it should be an instance of
`<redefinable-class>'.  See "Redefining a Class" in the manual for more
information.

** Define top-level bindings for aux syntax: `else', `=>', `...', `_'

These auxiliary syntax definitions are specified to be defined in the
R6RS and the R7RS.  They were previously unbound, even in the R6RS
modules.  This change is not anticipated to cause any incompatibility
with existing Guile code, and improves things for R6RS and R7RS users.

** Conventional gettext alias is now `G_'

Related to the last point, since the "Fix literal matching for
module-bound literals" change in the 2.2 series, it was no longer
possible to use the conventional `_' binding as an alias for `gettext',
because a local `_' definition would prevent `_' from being recognized
as auxiliary syntax for `match', `syntax-rules', and similar.  The new
recommended conventional alias for `gettext' is `G_'.

** Add --r6rs command-line option

The new `install-r6rs!' procedure adapts Guile's defaults to be more
R6RS-compatible.  This procedure is called if the user passes `--r6rs'
as a command-line argument.  See "R6RS Incompatibilities" in the manual,
for full details.

** Add support for R7RS

Thanks to Göran Weinholt and OKUMURA Yuki, Guile now implements the R7RS
modules.  As the R7RS library syntax is a subset of R6RS, to use R7RS
you just `(import (scheme base))' and off you go.  As with R6RS also,
there are some small lexical incompatibilities regarding hex escapes;
see "R6RS Support" in the manual, for full details.

Also as with R6RS, there is an `install-r7rs!' procedure and a `--r7rs'
command-line option.

** Add #:re-export-and-replace argument to `define-module'

This new keyword specifies a set of bindings to re-export, but also
marks them as intended to replace core bindings.  See "Creating Guile
Modules" in the manual, for full details.

Note to make this change, we had to change the way replacement flags are
stored, to being associated with modules instead of individual variable
objects.  This means that users who #:re-export an imported binding that
was already marked as #:replace by another module will now see warnings,
as they need to use #:re-export-and-replace instead.

** `define-module' #:autoload no longer pulls in the whole module

One of the ways that a module can use another is "autoloads".  For
example:

  (define-module (a) #:autoload (b) (make-b))

In this example, module `(b)' will only be imported when the `make-b'
identifier is referenced.  However besides the imprecision about when a
given binding is actually referenced, this mechanism used to cause the
whole imported module to become available, not just the specified
bindings.  This has now been changed to only import the specified bindings.

This is a backward-incompatible change.  The fix is to mention all
bindings of interest in the autoload clause.  Feedback is welcome.

** Improve SRFI-43 vector-fill!

SRFI-43 vector-fill! now has the same performance whether an optional
range is provided or not, and is also provided in core.  As a side
effect, vector-fill! and vector_fill_x no longer work on non-vector
rank-1 arrays.  Such cases were handled incorrectly before; for example,
prior to this change:

  (define a (make-vector 10 'x))
  (define b (make-shared-array a (lambda (i) (list (* 2 i))) 5))
  (vector-fill! b 'y)

  => #1(y y y x x)

This is now an error.  Instead, use array-fill!.

** `iota' in core and SRFI-1 `iota' are the same

Previously, `iota' in core would not accept start and step arguments and
would return an empty list for negative count. Now there is only one
`iota' function with the extended semantics of SRFI-1.  Note that as an
incompatible change, core `iota' no longer accepts a negative count.

** Improved Transport Layer Security (TLS) support in (web client)

`http-request', `http-get', and related procedures from (web client) are
able to access content over TLS ("HTTPS") since Guile 2.2.  However,
that support lacked important facilities, which are now available.

First, these procedures now have a #:verify-certificates?  parameter to
enable or disable the verification of X.509 server certificates.  The
new `x509-certificate-directory' SRFI-39 parameter specifies X.509
certificates are searched for.  Second, HTTPS proxies are now supported
(in addition to HTTP proxies) and the new `current-https-proxy'
parameter controls that.  See "Web Client" in the manual for details.

* New deprecations

** scm_t_uint8, etc deprecated in favor of C99 stdint.h

It used to be that Guile defined its own `scm_t_uint8' because C99
`uint8_t' wasn't widely enough available.  Now Guile finally made the
change to use C99 types, both internally and in Guile's public headers.

Note that this also applies to SCM_T_UINT8_MAX, SCM_T_INT8_MIN, for intN
and uintN for N in 8, 16, 32, and 64.  Guile also now uses ptrdiff_t
instead of scm_t_ptrdiff, and similarly for intmax_t, uintmax_t,
intptr_t, and uintptr_t.

** The two-argument form of `record-constructor'

Calling `record-constructor' with two arguments (the record type and a
list of field names) is deprecated.  Instead, call with just one
argument, and provide a wrapper around that constructor if needed.

* Incompatible changes

** All deprecated code removed

All code deprecated in Guile 2.2 has been removed.  See older NEWS, and
check that your programs can compile without linker warnings and run
without runtime warnings.  See "Deprecation" in the manual.

In particular, the function `scm_generalized_vector_get_handle' which
was deprecated in 2.0.9 but remained in 2.2, has now finally been
removed. As a replacement, use `scm_array_get_handle' to get a handle
and `scm_array_handle_rank' to check the rank.

** Remove "self" field from vtables and "redefined" field from classes

These fields were used as part of the machinery for class redefinition
and is no longer needed.

** VM hook manipulation simplified

The low-level mechanism to instrument a running virtual machine for
debugging and tracing has been simplified.  See "VM Hooks" in the
manual, for more.

* Changes to the distribution

** New effective version

The "effective version" of Guile is now 3.0, which allows parallel
installation with other effective versions (for example, the older Guile
2.2).  See "Parallel Installations" in the manual for full details.
Notably, the `pkg-config' file is now `guile-3.0', and there are new
`guile-3' and `guile-3.0' features for `cond-expand'.
2020-01-15 23:27:00 +00:00
nia ae95765a80 jumpnbump: remove, newer version in head 2020-01-14 13:37:01 +00:00
pin 875c77179c qterminal-0.14.1, new package
Thanks to David H. Gutteridge.
2020-01-14 09:40:22 +01:00
Benny Siegert 28e636b3bd +xpipe 2020-01-13 13:36:24 +00:00
Pierre Pronchery 1f487ccecf Also remove the package for DeforaOS Mixer 2020-01-13 02:25:04 +01:00
nia fb61c888f8 imv: Remove, imported 2020-01-12 13:43:59 +00:00
Tiago Seco 6b766b02d8 fix sorting 2020-01-11 21:27:36 +00:00
Tiago Seco 91f232388f prosody: update to version 0.11.3 2020-01-11 21:11:02 +00:00
Pierre Pronchery 199a60e120 Also remove the package for DeforaOS Mailer 2020-01-12 10:08:42 +01:00
Pierre Pronchery be689cefe6 Also remove the package for DeforaOS Keyboard 2020-01-12 08:07:05 +01:00
nia 419a0aff5d Add imv.
imv is a command line image viewer intended for use with tiling
window managers.

Features
--------

* Native Wayland and X11 support
* Support for dozens of image formats including:
  * PNG
  * JPEG
  * Animated GIFs
  * SVG
  * TIFF
  * Various RAW formats
  * Photoshop PSD files
* Configurable key bindings and behaviour
* Highly scriptable with IPC via imv-msg
2020-01-11 14:43:31 +00:00
Pierre Pronchery 36be964ac0 Also remove the package for DeforaOS Player 2020-01-11 09:29:40 +01:00
Pierre Pronchery b3696f0c72 Remove DeforaOS packages with Gtk+ 3 support upstream 2020-01-11 08:46:18 +01:00
Iku Iwasa 3759018973 Makefile: + eyeD3 2020-01-11 11:16:53 +09:00
Pierre Pronchery d126eab9a9 Remove DeforaOS packages with Gtk+ 3 support upstream 2020-01-11 02:36:10 +01:00
nia 8841d6fbb5 vvvvvv: imported 2020-01-10 23:07:28 +00:00
nia c619b1454f Add vvvvvv.
VVVVVV is a platform game all about exploring one simple mechanical idea -
what if you reversed gravity instead of jumping?

The game is designed not to artificially gate your progress. In VVVVVV there
are no locks, no power-ups, no switches, nothing to stop you progressing
except the challenges themselves.
2020-01-10 17:33:00 +00:00
pin 9746bfec08 lxqt-sudo, new package
Fails to build, see TODO.
2020-01-10 12:25:32 +01:00
pin 2264eec70b qtermwidget, new package
Package fails to build, see TODO.
Might need some help with this one.
2020-01-10 11:24:32 +01:00
Jason High 110e236688 GluserFS Version 7.1
* Tested: build, install, volume management, client access on NetBSD 8.x
2020-01-09 16:38:45 -06:00
Thomas Klausner 9333dac5d3 halfempty: remove, imported to pkgsrc 2020-01-09 13:16:49 +01:00
Thomas Klausner ad64f818be Makefile: + Aseprite 2020-01-08 20:43:25 +01:00
Thomas Klausner 93dbde98c7 Makefile: add TT2020-ttf-git 2020-01-08 17:56:06 +01:00
Thomas Klausner bb71802a72 Makefile: + halfempty 2020-01-08 17:39:12 +01:00
Thomas Klausner 01d88cde31 Makefile: sync 2020-01-08 17:19:34 +01:00
pin 23544d8e6b "New package" - muparser, update to 2.2.6
Update muparser to 2.2.6
The version in pkgsrc is 200.2.2.2
The project moved from SourceForge to Github in 2016.

Package builds and installs without the patches applied
on the pkgsrc version.

Please review the need or, not of these patches.
Also, review the buildlink3.mk, as they differ.

I only needed this package as a build dependency and don't
know if testes are needed.
2020-01-08 12:48:14 +01:00
Charlotte Koch cbab95b8ba Import libtheorafile, the version maintained by the FNA developers 2020-01-07 22:49:42 -08:00
pin 5f1a1c3762 New package, pavucontrol-qt
pavucontrol-qt is the Qt port of volume control pavucontrol
of sound server PulseAudio. As such it can be used to adjust
all controls provided by PulseAudio as well as some additional settings.
The software belongs to the LXQt project but its usage
isn't limited to this desktop environment.
2020-01-07 14:42:44 +01:00
pin 6fcc4b2887 New package, screengrab
ScreenGrab - A program for fast creating screenshots,
and easily publishing them on internet image hosting services.

ScreenGrab uses the Qt framework and thus,
it is independent from any desktop environment.
Screenshot tool for the LXQt desktop.
2020-01-07 13:21:48 +01:00
pin a246820a8b New package, lxqt-themes 2020-01-07 09:56:49 +01:00
ng0 3b4bf79d78 remove remake, imported as devel/remake 2020-01-06 17:39:43 +00:00