nixpkgs/pkgs/development/libraries
Profpatsch bf33c0e62e skawarePackages: Fall 2021 release
Maintainers Notes below.

~~~

 Hello,

 New versions of all the skarnet.org packages are available.

 skalibs has undergone a major update, with a few APIs having disappeared,
and others having changed. Compatibility with previous versions is  *not*
assured.
 Consequently, all the rest of the skarnet.org software has undergone
at least a release bump, in order to build with the new skalibs. But
some packages also have new functionality added (hence, a minor bump),
and others also have their own incompatible changes (hence, a major bump).

 The new versions are the following:

skalibs-2.11.0.0          (major)
nsss-0.2.0.0              (major)
utmps-0.1.0.3             (release)
execline-2.8.1.0          (minor)
s6-2.11.0.0               (major)
s6-rc-0.5.2.3             (release)
s6-portable-utils-2.2.3.3 (release)
s6-linux-utils-2.5.1.6    (release)
s6-linux-init-1.0.6.4     (release)
s6-dns-2.3.5.2            (release)
s6-networking-2.5.0.0     (major)
mdevd-0.1.5.0             (minor)
bcnm-0.0.1.4              (release)
dnsfunnel-0.0.1.2         (release)

Additionally, a new package has been released:
smtpd-starttls-proxy-0.0.1.0

 Dependencies have all been updated to the latest versions. They are,
this time, partially strict: libraries and binaries may build with older
releases of their dependencies, but not across major version bumps. The
safest approach is to upgrade everything at the same time.

 You do not need to recompile your s6-rc service databases or recreate
your s6-linux-init run-images.
 You should restart your supervision tree after upgrading skalibs and s6,
as soon as is convenient for you.

 Details of major and minor package changes follow.

* skalibs-2.11.0.0
  ----------------

 - A lot of obsolete or useless functionality has been removed:
libbiguint, rc4, md5, iobuffer, skasigaction, environ.h and
getpeereid.h headers, various functions that have not proven their
value in a while.
 - Some functions changed signatures or changed names, or both.
 - All custom types ending in _t have been renamed, to avoid treading on
POSIX  namespace. (The same change has not been done yet in other
packages,  but skalibs was the biggest offender by far.)
 - Signal functions have been deeply reworked.
 - cdb has been reworked, the API is now more user-friendly.
 - New functions have been added.

 The deletion of significant portions of code has made skalibs leaner.
libskarnet.so has dropped under 190 kB on x86_64.
 The cdb rewrite on its own has helped reduce an important amount of
boilerplate in cdb-using code.
 All in all, code linked against the new  skalibs should be slightly
smaller and use a tiny bit less RAM.

 https://skarnet.org/software/skalibs/
 git://git.skarnet.org/skalibs

* nsss-0.2.0.0
  ------------

 - Bugfixes.
 - nsss-switch wire protocol slightly modified, which is enough to
warrant a major version bump.
 - _r functions are now entirely thread-safe.
 - Spawned nsssd programs are now persistent and only expire after a
timeout on non-enumeration queries. This saves a lot of forking with
applications that can call  primitives such as getpwnam() repeatedly, as
e.g. mdevd does when  initially parsing its configuration file.
 - New nsssd-switch program, implementing real nsswitch functionality
by dispatching queries to various backends according to a script.
It does not dlopen a single library or read a single config file.

 https://skarnet.org/software/nsss/
 git://git.skarnet.org/nsss

* execline-2.8.1.0
  ----------------

 - Bugfixes.
 - New binary: case. It compares a value against a series of regular
expressions, executing into another command line on the first match.

 https://skarnet.org/software/execline/
 git://git.skarnet.org/execline

* s6-2.11.0.0
  -----------

 - Bugfixes.
 - Some libs6 header names have been simplified.
 - s6-svwait now accepts -r and -R options.
 - s6-supervise now reads an optional lock-fd file in the service
directory; if it finds one, the first action of the service is to take
a blocking lock. This prevents confusion when a controller process dies
while still leaving workers holding resources; it also prevents log
spamming on user mistakes (autobackgrounding services, notably).
 - New binaries: s6-socklog, s6-svlink, s6-svunlink. The former is a
rewrite of smarden.org's socklog program, in order to implement a fully
functional syslogd with only s6 programs. The latter are tools that start
and stop services by symlinking/unlinking service directories from a
scan directory, in order to make it easier to integrate s6-style services
in boot scripts for sequential service managers such as OpenRC.

 https://skarnet.org/software/s6/
 git://git.skarnet.org/s6

* s6-networking-2.5.0.0
  ---------------------

 - Bugfixes.
 - minidentd has been removed. It was an old and somehow still buggy
piece of  code that was only hanging around for nostalgia reasons.
 - Full support for client certificates. Details of the client
certificate are transmitted to the application via environment
variables (or via an environment string in the case of opportunistic
TLS).
 - Full SNI support, including server-side. (That involved a deep dive
into the bearssl internals, which is why it took so long.) The filenames
containing secret keys and certificates for <domain> are read in the
environment variables KEYFILE:<domain> and CERTFILE:<domain>.

 Complete client certificate and SNI support now make the TLS part of
s6-networking a fully viable replacement of stunnel and other similar
TLS tunneling tools. This is most interesting when s6-networking is
built against bearssl, which uses about 1/9 of the resources that OpenSSL
needs.

 https://skarnet.org/software/s6-networking/
 git://git.skarnet.org/s6-networking

* mdevd-0.1.5.0
  -------------

 - A new option to mdevd is available: -O <nlgroups>.
This option makes mdevd rebroadcast uevents to a netlink group (or set
of netlink groups) once they have been handled. This allows applications
to read uevents from a netlink group *after* the device manager is done
with them. This is useful, for instance, when pairing mdevd with
libudev-zero for full udev emulation.
 - The * and & directives, which previously were only triggered by
"add" and "remove" actions, are now triggered by *all* action types.
This gives users full scripting access to any event, which can be
used to implement complex rules similar to udev ones.

 These two changes make it possible to now build a full-featured desktop
system based on mdevd + libudev-zero, without running systemd-udevd or
eudev.

 https://skarnet.org/software/mdevd/
 git://git.skarnet.org/mdevd

* smtpd-starttls-proxy-0.0.1.0
  ----------------------------

 This new package, in conjunction with the latest s6-networking,
implements the STARTTLS functionality for inetd-like mail servers that
do not already support it. (Currently only tested with qmail-smtpd.)
If you have noticed that sending mail to skarnet.org supports STARTTLS
now, it is thanks to this little piece of software.

 https://skarnet.org/software/smtpd-starttls-proxy/
 git://git.skarnet.org/smtpd-starttls-proxy

 Enjoy,
 Bug-reports welcome.

 Laurent
2021-09-27 14:28:43 +02:00
..
a52dec a52dec: fix homepage 2021-08-22 16:07:38 +02:00
aalib
abseil-cpp abseil-cpp: 20210324.1 -> 20210324.2 2021-09-01 04:20:00 +00:00
accounts-qt
accountsservice
ace ace: 7.0.2 -> 7.0.3 2021-08-05 10:24:19 +00:00
acl
ada gnatcoll-*: init gnatcoll-db at 21.0.0 2021-08-03 14:58:49 +02:00
adns
adslib
afflib various: cleanup of "inherit version;" 2021-07-18 00:19:24 +02:00
aften aften: apple silicon support 2021-08-10 16:13:17 +10:00
agda agdaPackages.functional-linear-algebra 0.3->0.4 2021-07-27 10:14:32 -06:00
agg development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
alembic alembic: 1.8.2 -> 1.8.3 2021-09-14 00:45:49 +00:00
alkimia
allegro allegro5: fix native dialog addon 2021-08-12 22:26:50 +10:00
alure alure: fix homepage 2021-08-22 16:07:40 +02:00
alure2
amdvlk amdvlk: 2021.Q3.2 -> 2021.Q3.4 2021-08-19 15:42:08 +02:00
aml
amrnb development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
amrwb
amtk
AntTweakBar development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
apache-activemq activemq: remove phases 2021-08-04 17:39:00 +02:00
appindicator-sharp
applet-window-buttons libsForQt5.applet-window-buttons: 0.8.1 -> 0.9.0 (#122611) 2021-05-21 20:36:38 +02:00
appstream appstream: 0.14.3 -> 0.14.4 2021-06-24 12:11:32 +00:00
appstream-glib appstream-glib: fix broken build 2021-08-19 20:29:43 -07:00
apr apr: add patch for CVE-2021-35940 2021-08-30 12:34:28 +01:00
apr-util development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
aqbanking
aravis
arb arb: 2.19.0 -> 2.20.0 2021-07-25 10:19:30 -03:00
argp-standalone Merge master into staging-next 2021-07-17 06:01:21 +00:00
argtable
arguments
aribb25
armadillo armadillo: 10.6.1 -> 10.6.2 2021-08-06 11:53:09 +00:00
arpa2common arpa2common: init at 2.2.14 2021-09-02 04:34:41 -04:00
arrayfire
arrow-cpp arrow-cpp: 4.0.1 -> 5.0.0 2021-07-29 21:30:34 +02:00
asio
aspell Merge master into staging-next 2021-08-08 00:01:44 +00:00
assimp
at-spi2-atk
at-spi2-core at-spi2-core: 2.40.2 -> 2.40.3 2021-07-26 01:36:12 +00:00
atk atk: clean up cross-compilation logic 2021-05-27 23:12:47 +02:00
atkmm
attr attr: 2.4.48 -> 2.5.1 2021-07-24 15:08:09 +02:00
aubio Change all alsaLib references to alsa-lib 2021-06-10 01:12:49 -03:00
audiality2
audio libbs2b: support cross-compilation 2021-08-18 21:56:15 +02:00
audiofile Change all alsaLib references to alsa-lib 2021-06-10 01:12:49 -03:00
avahi
avro-c various: cleanup of "inherit version;" 2021-07-17 22:39:35 +02:00
avro-c++ various: cleanup of "inherit version;" 2021-07-17 22:39:35 +02:00
aws-c-cal aws-c-cal: 0.4.5 -> 0.5.11 2021-07-06 11:21:56 +02:00
aws-c-common aws-c-common: disable flaky test 2021-08-19 02:11:52 +09:00
aws-c-event-stream
aws-c-io aws-c-io: 0.9.1 -> 0.10.5 2021-08-14 04:07:19 +03:00
aws-checksums
aws-sdk-cpp aws-sdk-cpp: disabale parallel checking 2021-09-04 10:51:11 +09:00
ayatana-ido
babl babl: 0.1.86 -> 0.1.88 2021-07-03 14:49:06 +02:00
backward-cpp
bamf treewide: switch from pantheon.maintainers to lib.teams.pantheon 2021-09-18 23:07:00 +08:00
bash/bash-preexec bash-preexec: init at 0.4.1 2021-09-16 22:31:49 +02:00
bashup-events
bcg729
bctoolbox bctoolbox: 4.5.20 -> 5.0.0 2021-07-25 10:28:43 +02:00
bearssl various: cleanup of "inherit version;" 2021-07-17 22:39:35 +02:00
beecrypt
beignet
belcard
belle-sip belle-sip: 4.5.3 -> 4.5.14 2021-05-17 13:34:35 -07:00
belr
biblesync
blitz blitz: reinstate at 1.0.1 2021-08-28 16:23:31 -04:00
bobcat bobcat: 5.05.00 -> 5.09.01 2021-08-10 17:37:59 +00:00
boca boca: 1.0.4 -> 1.0.5 2021-06-29 08:44:00 -07:00
boehm-gc
boolstuff boolstuff: fix homepage 2021-08-22 16:08:31 +02:00
boost Merge branch 'staging-next' into staging 2021-08-22 01:13:41 +02:00
boost-process
bootil
boringssl boringssl: 2021-04-18 -> 2021-07-09 2021-07-09 20:39:58 +02:00
botan botan: mark as vulnerable to CVE-2021-40529 2021-09-08 01:00:46 +01:00
box2d box2d: enable on darwin 2021-06-11 23:58:57 -04:00
boxfort boxfort: use python3Packages instead of python37Packages 2021-09-05 15:00:37 +02:00
brigand
buddy development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
bullet
bulletml
bwidget bwidget: replace verbose let/in expression with rec 2021-05-21 15:18:28 -05:00
bzrtp bzrtp: 4.5.10 -> 5.0.0 2021-07-25 10:28:11 +02:00
c-ares c-ares: enable parallel building 2021-08-19 02:16:24 +00:00
c-blosc Merge pull request #109740 from r-ryantm/auto-update/c-blosc 2021-08-26 05:40:29 +02:00
caf caf: 0.18.3 -> 0.18.5 2021-08-11 19:00:00 -05:00
cairo cairo: enable debug info 2021-09-10 08:15:56 +00:00
cairomm cairomm_1_16: 1.16.0 -> 1.16.1 2021-05-22 16:56:55 +02:00
capnproto capnproto: update homepage and correct license 2021-09-20 04:37:30 -04:00
capstone
catch
catch2 catch2: 2.13.4 -> 2.13.7 2021-08-09 14:44:16 +00:00
ccrtp
cctz
cddlib various: cleanup of "inherit version;" 2021-07-17 22:39:35 +02:00
cdk
cdo cdo: 1.9.7.1 -> 1.9.10 2021-09-20 17:11:10 +02:00
cegui
celt
cereal cereal: add patch for CVE-2020-11105 (#121574) 2021-05-22 15:21:54 +02:00
ceres-solver ceres-solver: 2.0.0 propagate dependencies (#130268) 2021-09-17 17:58:24 +02:00
CGAL cgal_5: 5.2.2 -> 5.3 2021-07-09 12:58:47 +00:00
cglm cglm: 0.8.3 -> 0.8.4 2021-08-20 21:26:48 +00:00
cgreen cgreen: init at 1.4.0 2021-05-27 05:26:41 +02:00
cgui
check
chipmunk
chmlib development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
chromaprint
cimg cimg: 2.9.7 -> 2.9.8 2021-07-25 10:23:56 +02:00
civetweb civetweb: 1.14 -> 1.15 2021-09-06 02:59:12 +00:00
cjose
cjson cjson: 1.7.14 -> 1.7.15 2021-08-26 02:09:58 +00:00
cl
clanlib Change all alsaLib references to alsa-lib 2021-06-10 01:12:49 -03:00
classads various: cleanup of "inherit version;" 2021-07-17 22:39:35 +02:00
clearsilver
clfft various: cleanup of "inherit version;" 2021-07-17 22:39:35 +02:00
clipp
clipper
cln
cloog development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
cloog-ppl development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
clucene-core
clutter
clutter-gst
clutter-gtk
cm256cc
cmark cmark: fix libcmark.pc paths 2021-08-16 18:17:29 -04:00
cmark-gfm cmark-gfm: 0.29.0.gfm.1 -> 0.29.0.gfm.2 2021-09-17 02:37:25 +00:00
cminpack
cmocka
cmrt
codec2 codec2: 0.9.2 -> 1.0.0 2021-08-20 22:26:23 +00:00
cogl
coin3d
CoinMP
comedilib
console-bridge
coordgenlibs coordgenlibs: 2.0.3 -> 3.0.0 2021-09-14 04:24:22 +00:00
cosmopolitan
cpp-hocon
cpp-ipfs-api
cpp-netlib
cpp-utilities cpp-utilities: 5.11.0 -> 5.11.1 2021-09-14 05:01:15 +00:00
cppcms
cppdb
cpptest
cppunit
cpputest
cppzmq cppzmq: 4.7.1 -> 4.8.0 2021-09-06 03:50:29 +00:00
cracklib
crc32c
crcpp
cre2
criterion criterion: use python3Packages instead of python37Packages 2021-09-05 15:00:37 +02:00
croaring
crypto++
csfml csfml: 2.5 -> 2.5.1 2021-07-24 20:25:22 -07:00
ctl
ctpl
ctpp2
ctypes_sh
cudd
curlcpp
curlpp
cutee
cutelyst
cwiid
cxx-prettyprint
cxxopts
cxxtest
cxxtools
cyrus-sasl
czmq
dav1d dav1d: 0.9.1 -> 0.9.2 2021-09-04 11:28:07 +02:00
db
dbus dbus: fix eval on BSD 2021-06-09 21:40:03 +00:00
dbus-cplusplus
dbus-glib dbus-glib: update license 2021-05-18 20:07:34 +02:00
dbus-sharp
dbus-sharp-glib
dbxml treewide: remove danieldk as maintainer from a set of packages 2021-09-12 14:42:12 +00:00
dclib
dclxvi
dconf
dee
directfb
discord-rpc
dleyna-connector-dbus
dleyna-core
dleyna-renderer
dleyna-server
dlib
docopt_cpp
doctest
dotconf
dotnetfx35 development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
dotnetfx40 development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
double-conversion
dqlite dqlite: 1.8.0 -> 1.9.0 2021-08-08 06:00:00 -05:00
draco
drogon drogon: 1.7.1 -> 1.7.2 2021-08-26 00:05:13 -04:00
drumstick libsForQt5.drumstick: 2.2.1 -> 2.3.1 2021-08-10 02:58:51 +00:00
dssi Change all alsaLib references to alsa-lib 2021-06-10 01:12:49 -03:00
duckdb duckdb: 0.2.8 -> 0.2.9 2021-09-14 06:06:39 +00:00
dxflib
dyncall dyncall: subsitute version 2021-08-11 17:27:50 +02:00
easyloggingpp
eccodes Merge branch 'master' into staging-next 2021-09-23 18:43:00 -07:00
eclib various: cleanup of "inherit version;" 2021-07-17 22:39:35 +02:00
editline editline: 1.17.0 -> 1.17.1 and add patch to fix Home and End key in tmux (#124853) 2021-06-01 18:31:31 +02:00
egl-wayland egl-wayland: 1.1.6 -> 1.1.7 2021-07-09 15:04:42 +02:00
eigen eigen: 3.3.7 -> 3.3.9 2021-07-02 01:05:30 -07:00
elementary-cmake-modules
elf-header
embree embree: 3.13.0 -> 3.13.1 2021-08-14 05:48:59 +00:00
enchant Merge branch 'staging-next' into staging 2021-08-17 18:52:37 +02:00
enet development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
entt entt: 3.8.0 -> 3.8.1 2021-08-08 10:46:14 +00:00
epoxy
ethash ethash: 0.7.0 -> 0.7.1 2021-08-27 03:47:03 +00:00
eventlog eventlog: cleanup 2021-07-27 08:14:56 -07:00
exempi exempi: disable tests for i686 2021-05-24 23:21:03 -07:00
exiv2 exiv2: fix for darwin by providing libiconv 2021-07-17 13:04:41 +01:00
exosip
expat expat: Fix cmake config files 2021-07-03 19:30:35 -04:00
faac
faad2
farbfeld
farstream development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
fast-cpp-csv-parser
fastjson
fastpbkdf2 development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
faudio faudio: 21.08 -> 21.09 2021-09-06 06:24:45 +00:00
fcft fcft: 2.4.4 -> 2.4.5 2021-08-14 13:51:14 +02:00
fcgi
fcl fcl: 0.6.1 -> 0.7.0 2021-09-12 23:36:24 -04:00
fcppt
fdk-aac fdk-aac: cleanup, format 2021-08-13 17:11:25 +02:00
fflas-ffpack various: cleanup of "inherit version;" 2021-07-17 22:39:35 +02:00
ffmpeg ffmpeg: patch CVE-2021-38171 and CVE-2021-38291 2021-09-22 14:28:33 +00:00
ffmpeg-full ffmpeg-full: enable basic tests 2021-08-18 23:52:00 +01:00
ffmpeg-sixel
ffmpegthumbnailer
ffms
fftw fftw: allow for optional MPI build 2021-09-07 18:21:30 +02:00
filter-audio
flann flann: refactor (#129491) 2021-07-13 15:44:08 +02:00
flatbuffers treewide: ensure pre/post phase hooks are strings 2021-08-20 19:08:42 -04:00
flatcc
flatpak
flint flint: cleanup 2021-07-26 00:59:36 +02:00
flite Change all alsaLib references to alsa-lib 2021-06-10 01:12:49 -03:00
fltk fltk*: Refactor, fltk14: 1.4.x-r13121 -> 1.4.x-2021-07-04 2021-07-12 12:22:15 +02:00
fmt fmt_8: init at 8.0.1 (#129378) 2021-07-07 03:08:35 +02:00
folks folks: 0.15.2 -> 0.15.3 2021-07-20 21:12:48 +02:00
folly folly: 2021.09.13.00 -> 2021.09.20.00 2021-09-22 06:36:53 +00:00
fontconfig fontconfig: 2.13.93 -> 2.13.94 2021-07-08 23:53:26 +01:00
forge
fox various: cleanup of "inherit version;" 2021-07-17 22:39:35 +02:00
fplll various: cleanup of "inherit version;" 2021-07-18 00:19:24 +02:00
frame
freealut
freeglut various: cleanup of "inherit version;" 2021-07-18 00:19:24 +02:00
freeimage freeimage: support cross-compilation 2021-09-06 12:09:53 +02:00
freenect various: cleanup of "inherit version;" 2021-07-17 22:39:35 +02:00
freetds freetds: 1.2.21 -> 1.3 2021-07-20 16:56:31 +00:00
freetts development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
freetype freetype: format (#133165) 2021-08-16 14:54:29 -04:00
frei0r frei0r-plugins: 1.6.1 -> 1.7.0 2021-09-01 16:56:42 -04:00
fribidi
fstrcmp
fstrm
ftgl
ftxui ftxui: init at unstable-2021-08-13 2021-08-19 17:16:50 +02:00
funambol development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
g2o
gaia
galario pythonPackages: deprecate pytestcov alias 2021-07-21 13:32:17 +02:00
gamenetworkingsockets
gamin
ganv
garmintools development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
gbenchmark gbenchmark: 1.5.6 -> 1.6.0 2021-09-14 07:43:23 +00:00
gcab gcab: enable build on darwin 2021-07-28 14:42:08 +02:00
gcc treewide: convert all links git.archlinux.org to github.com/archlinux/svntogit-* 2021-07-14 03:35:21 +02:00
gcr
gd
gdal gdal: 3.3.1 -> 3.3.2 2021-09-14 07:52:34 +00:00
gdata-sharp
gdbm gdbm: 1.19 -> 1.20 2021-06-18 18:54:04 +00:00
gdcm gdcm: python is only used when called from python-packages.nix 2021-07-27 20:37:04 +02:00
gdk-pixbuf gdk-pixbuf: support cross-compilation by disabling introspection and gtk_doc 2021-05-25 21:24:10 +02:00
gdl gdl: 3.34.0 -> 3.40.0 2021-09-11 16:53:35 +00:00
gdome2
gecode
gegl gegl: drop the old 0.2 version, make gegl 0.4 default 2021-07-03 14:31:52 +02:00
geis
genann
gensio gensio: 2.2.8 -> 2.2.9 2021-09-11 17:03:34 +00:00
geoclue
geocode-glib
geoip
geos
getdata getdata: add security patch from Debian (#124713) 2021-05-30 04:04:45 +02:00
getdns
gettext
gexiv2 gexiv2: 0.12.2 -> 0.12.3 2021-09-11 21:00:45 +02:00
gf2x
gfbgraph
gflags
ggz_base_libs
ghc_filesystem ghc_filesystem: 1.5.4 -> 1.5.6 2021-05-24 16:06:17 +02:00
giblib
giflib
gio-sharp
git2 libgit2: 1.1.0 -> 1.1.1 2021-07-24 15:38:14 +02:00
givaro various: cleanup of "inherit version;" 2021-07-17 22:39:35 +02:00
gjs gjs: 1.68.2 -> 1.68.3 2021-09-11 21:01:10 +02:00
gl2ps
glbinding
gle
glew glew: support cross-compilation 2021-08-18 22:00:19 +02:00
glfw glfw: add version with wayland support (#129367) 2021-07-14 12:45:21 +02:00
glib glib: 2.68.3 -> 2.68.4 2021-08-30 20:26:53 +02:00
glib-networking glib-networking: 2.68.1 -> 2.68.2 2021-08-06 18:32:56 +00:00
glib-testing
glibc Merge branch 'master' into staging-next 2021-09-23 18:43:00 -07:00
glibmm Merge remote-tracking branch 'origin/master' into staging-next 2021-05-22 18:19:10 -07:00
glm glm: 0.9.8.5 -> 0.9.9.8 2021-09-16 17:54:52 -03:00
globalarrays globalarrays: move gfortran to nativeBuildInputs 2021-09-03 13:33:32 +02:00
globalplatform
glog
gloox various: cleanup of "inherit version;" 2021-07-18 00:19:24 +02:00
glpk
glpng
glui
gmime
gmm
gmp
gmtk
gnet development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
gnome-menus
gnome-online-accounts
gnome-sharp
gnome-video-effects
gnu-config
gnu-efi Revert "gnu-efi: 3.0.11 -> 3.0.13" 2021-08-26 19:41:17 +02:00
gnutls Merge staging-next into staging 2021-06-16 18:04:48 +00:00
gnutls-kdh
gobject-introspection
goffice goffice: 0.10.49 -> 0.10.50 2021-06-16 14:06:31 -07:00
gom
goocanvas goocanvas3: init at 3.0.0 2021-08-05 19:15:35 +08:00
goocanvasmm
google-cloud-cpp
gperftools
gpgme gpgme: move flaky patch URLs to local files. 2021-08-18 14:06:08 -07:00
grail
grantlee
graphene graphene: fix nixos test 2021-06-06 21:48:48 +02:00
graphene-hardened-malloc graphene-hardened-malloc: 2 -> 8 2021-08-14 11:52:11 +01:00
grib-api
grilo grilo: add patch for CVE-2021-39365 2021-08-30 11:43:07 +01:00
grilo-plugins
grpc grpc: add patch to revert alias to abseil mutex 2021-09-11 17:00:00 -05:00
gsasl development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
gsettings-desktop-schemas gsettings-desktop-schemas: support cross-compilation 2021-07-18 10:40:17 +02:00
gsettings-qt
gsignond
gsl development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
gsm
gsmlib
gsoap
gsound
gspell gspell: Enable building on Darwin 2021-06-21 12:53:23 +02:00
gss
gssdp
gstreamer Merge master into staging-next 2021-09-07 00:01:32 +00:00
gtdialog
gtest gtest: 1.10.0 -> 1.11.0 2021-07-29 10:53:12 +02:00
gthree
gtk gtk3: replace bugzilla patch with local file. 2021-08-13 14:10:18 -07:00
gtk-engine-bluecurve
gtk-engine-murrine
gtk-engines
gtk-frdp
gtk-layer-shell
gtk-mac-integration
gtk-sharp gtk-sharp: fix build 2021-05-19 10:25:50 -07:00
gtk-sharp-beans
gtkd Made GTK-D compile again 2021-08-31 15:40:16 +03:00
gtkdatabox gtkdatabox: adjusted license type 2021-08-27 16:25:07 +03:00
gtkextra gtkextra: init at 3.3.4 2021-08-05 14:17:53 +02:00
gtkimageview gtkimageview: fix url and use pname&version 2021-06-29 23:22:56 +02:00
gtkmathview
gtkmm gtkmm4: 4.0.1 -> 4.2.0 2021-06-17 18:05:48 +00:00
gtksourceview
gtksourceviewmm gtksourceviewmm: Enable building on Darwin 2021-06-21 12:53:23 +02:00
gtkspell development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
gtkspellmm
gts
gumbo
gupnp gupnp: 1.2.4 -> 1.2.7 2021-06-27 19:33:19 +02:00
gupnp-av
gupnp-dlna
gupnp-igd
gusb gusb: 0.3.5 -> 0.3.7 2021-08-11 17:56:09 +02:00
gvfs
gvm-libs gvm-libs: 21.4.1 -> 21.4.2 2021-09-12 21:54:58 +02:00
half half: 2.1.0 -> 2.2.0 2021-08-14 12:54:38 +03:00
hamlib hamlib: 3.3 -> 4.2 2021-07-23 20:08:40 +01:00
harfbuzz harfbuzz: switch to pname + version (#135529) 2021-08-24 23:35:35 +02:00
hawknl development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
hdf5-blosc
herqq
hidapi
highfive various: cleanup of "inherit version;" 2021-07-18 00:19:24 +02:00
hiredis
hiredis-vip
hivex hivex: 1.3.20 -> 1.3.21 2021-08-04 23:18:01 +00:00
hotpatch
howard-hinnant-date howard-hinnant-date: unstable-2020-03-09 -> 3.0.1 2021-08-27 23:09:53 -07:00
hpx
hspell
htmlcxx
http-parser various: cleanup of "inherit version;" 2021-07-17 22:39:35 +02:00
hunspell hunspell: remove phases 2021-08-04 17:43:16 +02:00
hwloc hwloc: 2.4.1 -> 2.5.0 (#127077) 2021-06-18 11:45:01 +02:00
hyena
hyperscan
hyphen
icu
id3lib development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
idnkit
igraph igraph: 0.9.3 -> 0.9.4 2021-06-01 12:49:32 +02:00
ijs
iksemel
ilbc
ilixi ilixi: use github sources and use pname&version 2021-06-29 23:25:46 +02:00
ilmbase
imath imath: 3.1.2 -> 3.1.3 2021-09-06 10:48:37 +00:00
iml various: cleanup of "inherit version;" 2021-07-17 22:39:35 +02:00
imlib development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
imlib2 imlib2: 1.7.2 -> 1.7.3 2021-08-23 10:07:15 +02:00
impy
inchi
incrtcl incrtcl: Simplify package with tcl.mkTclDerivation 2021-05-21 15:18:04 -05:00
indicator-application
inih
iniparser
intel-gmmlib intel-gmmlib: 21.2.2 -> 21.3.1 2021-09-17 23:18:40 +02:00
intel-media-driver intel-media-driver: 21.3.2 -> 21.3.3 2021-09-04 11:32:10 +02:00
intel-media-sdk intel-media-sdk: 21.2.3 -> 21.3.1 2021-08-14 14:47:21 +03:00
iodash
ip2location-c ip2location-c: 7.0.2 -> 8.4.0 2021-08-30 13:23:35 +02:00
irrlicht
isl
iso-codes
itk itk: 5.2.0 -> 5.2.1 2021-08-18 09:58:00 -04:00
itktcl itktcl: Simplify package with tcl.mkTclDerivation 2021-05-21 15:18:05 -05:00
jabcode
jama
jansson development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
jasper
java lombok: 1.18.16 -> 1.18.20 2021-08-09 12:05:55 +00:00
jbig2dec
jbigkit development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
jcal
jemalloc
jitterentropy
jose
json-c
json-glib
jsoncpp various: cleanup of "inherit version;" 2021-07-17 22:39:35 +02:00
jsonrpc-glib
judy development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
jxrlib jxrlib; support cross-compilation 2021-07-08 19:10:05 +02:00
kcolorpicker kcolorpicker: init at 0.1.6 2021-07-12 12:45:15 +02:00
kdb
kddockwidgets kddockwidgets: init at 1.4.0 2021-09-03 18:56:46 +10:00
kde-frameworks kio: add util-linux for libmount dependency 2021-09-01 10:00:18 -03:00
kdiagram
kdsoap kdsoap: format 2021-08-07 22:49:29 +02:00
kerberos heimdal: install compile_et for cross-compilation 2021-06-27 23:30:31 -04:00
keybinder
keybinder3
keystone
kf5gpgmepp
khronos-ocl-icd-loader treewide: remove lib.{lists,string}.optional* 2021-07-29 14:15:12 +02:00
kimageannotator ksnip: Use existing packages for dependencies 2021-09-17 08:11:09 +02:00
kissfft
kmsxx kmsxx: 2020-08-04 -> 2021-07-26 unbreak 2021-08-07 22:37:56 -07:00
kpeoplevcard
kpmcore
kproperty
kquickimageedit
kreport
kronosnet
kyotocabinet kyotocabinet: 1.2.76 -> 1.2.79 (#126836) 2021-06-16 02:58:52 +02:00
l-smash l-smash: fix darwin build 2021-05-17 14:02:41 -07:00
lame
languagemachines
lasem
lasso lasso: 2.6.1 -> 2.7.0 2021-06-02 16:09:31 +02:00
LAStools
LASzip
lcms
lcms2 development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
ldacbt
ldb
ldns
ldutils
leatherman leatherman: 1.12.5 -> 1.12.6 2021-07-20 07:37:10 +00:00
lemon-graph lemon-graph: init at 1.3.1 2021-08-01 11:55:48 -04:00
lensfun
leptonica leptonica: 1.81.0 -> 1.81.1 2021-06-16 14:32:56 +00:00
lesstif development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
leveldb
levmar development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
lib2geom lib2geom: update 2020-03-12 -> 1.1 2021-05-26 00:20:44 -07:00
lib3ds
lib3mf lib3mf: 2.1.1 -> 2.2.0 2021-08-25 07:32:11 +00:00
libaacs
libaal
libabigail
libabw
libaccounts-glib
libadwaita libadwaita: 1.0.0-alpha.1 -> 1.0.0-alpha.2 2021-09-14 16:25:29 -07:00
libaec libaec: 1.0.4 -> 1.0.5 2021-06-29 23:44:47 -07:00
libAfterImage libAfterImage: compile against libX11 2021-05-19 07:52:19 -04:00
libagar
libamqpcpp
libantlr3c libantlr3c: fix build on non x86 platforms 2021-08-21 19:21:09 +02:00
libao Change all alsaLib references to alsa-lib 2021-06-10 01:12:49 -03:00
libaom Merge remote-tracking branch 'origin/master' into staging-next 2021-09-11 02:29:58 +02:00
libaosd
libappindicator
libarchive libarchive: 3.5.1 -> 3.5.2 2021-08-24 08:14:52 +00:00
libarchive-qt libarchive-qt 2.0.4 -> 2.0.6 2021-09-26 16:15:26 +07:00
libargon2
libargs libargs: init at 6.2.6 2021-08-13 21:51:48 +02:00
libasr
libass libass: remove enca as dependency 2021-06-10 08:55:19 +02:00
libassuan
libast
libasyncns development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
libatomic_ops libatomic_ops: 7.6.10 -> 7.6.12 2021-09-14 14:14:45 +00:00
libaudclient development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
libaudec libaudec: 0.2.4 -> 0.3.4 2021-08-09 09:01:48 +00:00
libav
libavc1394 development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
libavif libavif: 0.9.1 -> 0.9.2 2021-06-25 03:07:52 +00:00
libayatana-appindicator treewide: remove lib.{lists,string}.optional* 2021-07-29 14:15:12 +02:00
libayatana-indicator treewide: remove lib.{lists,string}.optional* 2021-07-29 14:15:12 +02:00
libb2
libb64 various: cleanup of "inherit version;" 2021-07-17 22:39:35 +02:00
libbacktrace
libbap
libbaseencode libbaseencode: init at 1.0.11 2021-07-03 09:53:17 +02:00
libbdplus
libbencodetools libbencodetools: init at unstable-2021-04-15 2021-06-12 16:02:17 +02:00
libbfd libbfd: add libintl dependency for darwin. 2021-09-22 09:33:08 -07:00
libbladeRF various: cleanup of "inherit version;" 2021-07-18 00:19:24 +02:00
libblockdev
libblocksruntime development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
libbluedevil
libbluray libbluray: 1.2.1 -> 1.3.0 2021-07-24 15:41:34 +02:00
libbsd
libbson
libbtbb
libburn
libbytesize libbytesize: 2.5 -> 2.6 2021-07-24 15:37:34 +02:00
libcaca
libcacard
libcamera libcamera: init at unstable-2021-06-02 2021-07-07 19:25:11 +01:00
libcanberra libcanberra/libcanberra-gtk2: fix build on darwin 2021-07-31 19:35:48 -04:00
libcangjie
libcbor
libccd libccd: fix pkgconfig file paths 2021-05-30 14:23:54 -04:00
libcdaudio
libcddb development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
libcdio
libcdio-paranoia
libcdr development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
libcec various: cleanup of "inherit version;" 2021-07-18 00:19:24 +02:00
libcef libcef: support i686 2021-08-11 01:16:34 +00:00
libcello
libcerf
libchamplain
libchardet
libchewing
libchop
libcint
libck libck: 0.7.0 -> 0.7.1 2021-06-03 21:52:44 +00:00
libclc llvmPackages_11.libclc: 2019-06-09 -> 11.0.1 (#111065) 2021-07-20 17:25:02 +02:00
libcli
libcloudproviders
libclthreads
libclxclient
libcmis
libcollectdclient
libcommuni
libconfig Update pkgs/development/libraries/libconfig/default.nix 2021-07-15 23:51:27 +02:00
libconfuse
libcork
libcotp libcotp: init at 1.2.3 2021-07-03 09:53:17 +02:00
libcouchbase libcouchbase: 3.2.0 -> 3.2.1 2021-08-22 05:25:57 +00:00
libcprime libcprime: fix application dirs 2021-07-28 15:45:01 +03:00
libcrafter
libcredis development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
libcrossguid
libcryptui
libcsptr
libcsys libcsys: init at 4.2.0 2021-07-22 18:37:44 +07:00
libctb
libctemplate
libcue
libcutl
libcyaml libcyaml: 1.1.0 -> 1.2.0 2021-07-07 10:12:59 -07:00
libdaemon development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
libdap
libdatrie
libdazzle
libdbi development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
libdbi-drivers
libdbusmenu
libdbusmenu-qt
libdc1394
libde265
libdeflate
libdeltachat libdeltachat: fix pkg-config file 2021-09-09 09:32:17 -07:00
libdevil
libdigidoc
libdigidocpp libdigidocpp: 3.14.6 -> 3.14.7 2021-09-23 19:58:16 +08:00
libdiscid
libdivecomputer libdivecomputer: 0.6.0 -> 0.7.0 2021-05-17 13:25:32 -07:00
libdivsufsort development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
libdmapsharing
libdmtx
libdnet
libdrm libdrm: 2.4.106 -> 2.4.107 2021-07-02 16:40:25 +02:00
libdv
libdvbpsi
libdvdcss libdvdcss: 1.4.2 -> 1.4.3 2021-07-24 15:32:16 +02:00
libdvdnav libdvdnav: 6.1.0 -> 6.1.1 2021-06-21 07:01:25 +02:00
libdvdread libdvdread: 6.1.1 -> 6.1.2 2021-07-24 15:32:02 +02:00
libdwarf
libdwg
libdynd various: cleanup of "inherit version;" 2021-07-18 00:19:24 +02:00
libe57format libe57format: 2.1 -> 2.2.0 2021-08-31 11:01:23 +02:00
libe-book
libeatmydata
libeb
libebml libebml: upstream fix for gcc-11 2021-09-20 19:24:59 +01:00
libebur128
libechonest
libedit libedit: 20210522-3.1 -> 20210714-3.1 2021-07-24 13:10:42 +00:00
libee
libelf libelf: fix build on NetBSD 2021-07-27 09:18:33 +00:00
libelf-freebsd
libelfin treewide: remove ma27 from the maintainer-list of a few packages 2021-08-27 22:28:49 +02:00
libemf2svg libemf2svg: init at 1.1.0 2021-08-19 16:58:42 +02:00
libepc
liberfa liberfa: 1.7.1 -> 2.0.0 2021-08-14 08:33:56 +03:00
liberio
libesmtp
libestr development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
libetpan
libev
libevdev
libevdevplus
libevent
libewf various: cleanup of "inherit version;" 2021-07-17 22:39:35 +02:00
libexecinfo
libexif libexif: 0.6.22 -> 0.6.23 2021-09-12 21:40:55 +02:00
libexsid
libextractor libextractor: use ffmpeg instead of ffmpeg_3 (#123344) 2021-05-21 00:43:21 +02:00
libexttextcat development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
libf2c development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
libfabric libfabric: meta.platforms = lib.platforms.all and 1.13.0 -> 1.13.1 (#138780) 2021-09-21 21:06:24 +02:00
libfakekey
libfaketime
libfann
libff
libffcall
libffi libffi: disable new static trampolines feature 2021-08-13 14:23:09 -07:00
libfido2
libfilezilla libfilezilla: 0.30.0 -> 0.31.1 2021-08-13 20:20:53 +03:00
libfishsound development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
libfive
libfixposix libfixposix: add support for darwin 2021-05-25 18:25:37 +02:00
libfm treewide: ensure pre/post phase hooks are strings 2021-08-20 19:08:42 -04:00
libfprint libfprint: 1.90.7 -> 1.92.1 2021-07-27 22:41:04 -04:00
libfprint-2-tod1-goodix
libfprint-2-tod1-vfs0090 libfprint-2-tod1-vfs0090: init at 0.8.5 2021-06-10 14:24:58 +02:00
libfprint-tod
libfpx development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
libfreeaptx libfreeaptx: init at 0.1.1 2021-08-06 13:33:04 +03:00
libfreefare
libfsm
libftdi development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
libfyaml
libgadu
libgaminggear
libgcrypt libgcrypt: 1.9.3 -> 1.9.4 2021-09-07 20:55:37 +01:00
libgda
libgdamm
libgdata
libgdiplus
libgee
libgeotiff
libgepub
libgig libgig: 4.2.0 -> 4.3.0 2021-05-17 13:37:42 -07:00
libgit2-glib
libgksu
libglvnd libglvnd: 1.3.3 -> 1.3.4 2021-08-24 22:19:38 +02:00
libgmpris libgmpris: init at 2.2.1-8 2021-06-10 21:42:16 -07:00
libgnome-keyring
libgnomekbd
libgnt pidgin: bring back text-mode UI 2021-07-16 08:25:43 +02:00
libgnurl
libgpg-error libgpgerror: fix cross-compilation 2021-08-14 22:38:25 -07:00
libgphoto2
libgpiod
libgpod
libgringotts
libgroove
libgrss libgrss: pname + version 2021-08-06 17:15:33 +02:00
libgsf
libgssglue development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
libgtop
libgudev libgudev: support cross-compilation by disabling introspection and vala 2021-05-23 14:48:17 +02:00
libguestfs libguestfs: change license to gpl2Plus and lgpl21Plus 2021-08-28 10:53:44 +00:00
libgumath
libgweather
libgxps libgxps: support cross-compilation 2021-07-17 21:42:50 +02:00
libhandy libhandy: 1.2.3 -> 1.4.0 2021-09-12 04:58:22 +00:00
libhangul development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
libharu libharu: use fetchFromGitHub and switch to pname 2021-06-09 17:19:59 +02:00
libhdhomerun libhdhomerun: 20210224 -> 20210624 2021-07-30 04:02:17 +00:00
libheif
libhsts
libhttpseverywhere
libhugetlbfs
libHX development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
libiberty
libibmad development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
libibumad development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
libical
libicns
libiconv
libid3tag
libidn libidn: 1.37 -> 1.38 2021-07-29 10:51:54 +02:00
libidn2 libidn2: 2.3.1 -> 2.3.2 2021-07-24 13:00:24 +00:00
libiec61883
libieee1284
libiio libiio: fix build with wrong libxml2 find_package 2021-05-31 02:27:56 -04:00
libimagequant Merge staging-next into staging 2021-06-08 12:04:39 +00:00
libime libime: 1.0.3 -> 1.0.7 2021-06-08 00:43:17 +08:00
libimobiledevice libimobiledevice: 1.3.0 -> unstable-2021-06-02 2021-06-05 20:54:27 +08:00
libindicator
libinfinity
libinjection
libinklevel
libinotify-kqueue
libinput libinput: 1.16.4 -> 1.18.1 2021-08-10 06:34:07 +00:00
libinsane
libint libint: make enableFMA default dependent of hostPlatform flags 2021-09-03 14:15:37 +02:00
libiodbc development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
libipfix
libipt
libiptcdata development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
libircclient
libirecovery
libiscsi pkgsMusl.libiscsi: fix build 2021-08-30 07:42:01 +00:00
libisds
libisoburn
libisofs
libite libite: 2.2.0 -> 2.4.0 2021-08-14 11:54:05 +00:00
libivykis
libixp-hg various: cleanup of "inherit version;" 2021-07-17 22:39:35 +02:00
libjcat libjcat: 0.1.6 -> 0.1.7 2021-05-17 13:51:13 -07:00
libjpeg libjpeg: modernize 2021-07-27 11:22:09 +02:00
libjpeg-turbo Merge master into staging-next 2021-06-10 00:06:41 +00:00
libjreen
libjson various: cleanup of "inherit version;" 2021-07-18 00:19:24 +02:00
libjson-rpc-cpp
libjwt
libjxl libjxl: fix for hydra's darwin builder 2021-09-05 22:13:54 +01:00
libkate development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
libkeyfinder libkeyfinder: 2.2.4 -> 2.2.5 2021-07-21 07:08:34 +00:00
libkml
libksba libksba: 1.5.0 -> 1.5.1 2021-05-17 14:27:13 -07:00
libksi
libktorrent
liblangtag liblangtag: enable on darwin 2021-06-12 11:31:01 -04:00
libLAS
liblastfm
liblastfmSF development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
liblaxjson
liblcf
libliftoff libliftoff: init at 0.1.0 2021-07-01 14:55:30 +02:00
liblinear treewide: remove danieldk as maintainer from a set of packages 2021-09-12 14:42:12 +00:00
liblinphone liblinphone: 4.5.15 -> 4.5.17 2021-05-22 16:37:13 -07:00
liblo development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
liblockfile
liblogging
liblognorm
liblouis liblouis: 3.18.0 -> 3.19.0 2021-09-06 12:49:13 +00:00
liblqr-1 liblqr-1: darwin add missing carbon framework 2021-08-25 20:18:45 +09:00
liblscp
libltc development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
liblxi
libmad
libmanette
libmatchbox
libmatheval
libmatroska
libmaxminddb
libmbim libmbim: update license to gpl2Plus 2021-08-02 22:07:10 +02:00
libmcrypt development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
libmd
libmediaart
libmediainfo {lib-}mediainfo: 21.03 -> 21.09 2021-09-23 17:30:23 +01:00
libmemcached development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
libmesode
libmhash
libmicrodns
libmicrohttpd
libmikmod Change all alsaLib references to alsa-lib 2021-06-10 01:12:49 -03:00
libmilter
libminc
libmkv
libmms
libmng development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
libmnl development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
libmodbus
libmodplug various: cleanup of "inherit version;" 2021-07-18 00:19:24 +02:00
libmodule
libmodulemd libmodulemd: 2.12.1 -> 2.13.0 2021-07-10 15:50:56 +00:00
libmongo-client development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
libmowgli
libmp3splt development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
libmpack
libmpc various: cleanup of "inherit version;" 2021-07-18 00:19:24 +02:00
libmpcdec development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
libmpeg2
libmrss development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
libmspack
libmtp
libmusicbrainz development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
libmwaw libmwaw: enableParallelBuilding 2021-07-22 08:00:44 -07:00
libmx
libmypaint
libmysqlconnectorcpp
libnabo
libnatpmp libnatpmp: make files in $out/lib executable 2021-09-26 01:40:32 +03:00
libnats-c
libnatspec development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
libnbd libnbd: 1.9.3 -> 1.9.5 2021-09-13 01:39:30 +05:30
libndctl libndctl: build docs with asciidoc instead of asciidoctor 2021-05-19 16:14:19 +02:00
libndp libndp: 1.7 -> 1.8 2021-07-24 15:28:21 +02:00
libndtypes
libnest2d
libnet
libnetfilter_acct treewide: fix redirected URLs 2021-08-01 00:01:50 +07:00
libnetfilter_conntrack
libnetfilter_cthelper treewide: fix redirected URLs 2021-08-01 00:01:50 +07:00
libnetfilter_cttimeout
libnetfilter_log
libnetfilter_queue treewide: fix redirected URLs 2021-08-01 00:01:50 +07:00
libnfc
libnfnetlink treewide: fix redirected URLs 2021-08-01 00:01:50 +07:00
libnfs
libnftnl libnftnl: 1.1.9 -> 1.2.0 2021-05-25 14:55:34 +02:00
libngspice
libnice
libnih
libnixxml
libnotify
libnsl
libnxml
liboauth development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
libodfgen
libofa various: cleanup of "inherit version;" 2021-07-17 22:39:35 +02:00
libofx libofx: 0.10.1 -> 0.10.2 2021-05-20 10:07:34 -07:00
libogg libogg: 1.3.4 -> 1.3.5 2021-09-16 10:06:45 +02:00
liboggz development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
liboil
libomxil-bellagio
liboop
libopcodes
libopenaptx libopenaptx: 0.2.0 -> 0.2.1 2021-09-23 19:42:33 +08:00
liboping development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
libopus libopus: disable tests on armv7l 2021-08-17 19:35:45 +10:00
libopusenc various: cleanup of "inherit version;" 2021-07-18 00:19:24 +02:00
libosinfo
libosmium
libosmscout
libossp-uuid various: cleanup of "inherit version;" 2021-07-18 00:19:24 +02:00
libotr
libow
libowfat development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
libowlevelzs
libp11
libpam-wrapper
libpaper
libpar2 various: cleanup of "inherit version;" 2021-07-17 22:39:35 +02:00
libpcap libpcap: 1.10.0 -> 1.10.1 2021-06-16 11:32:22 +00:00
libpeas
libpfm
libpg_query libpg_query: 13-2.0.5 -> 13-2.0.7 2021-08-14 12:09:16 +00:00
libpgf
libphonenumber
libpinyin
libpipeline
libplacebo libplacebo: 3.120.3 -> 4.157.0 2021-09-07 21:44:14 +02:00
libplctag libplctag: 2.3.7 -> 2.4.0 2021-09-23 02:44:14 +00:00
libplist
libpng
libpointmatcher
libportal
libpostal
libpqxx libpqxx: 7.5.2 -> 7.6.0 2021-08-14 12:14:23 +00:00
libproxy libproxy: Make JavaScript optional 2021-07-13 18:22:41 -07:00
libpseudo
libpsl Use lib.meta.availableOn for optional Valgrind dependency 2021-06-12 23:17:13 -07:00
libpst
libpwquality
libqalculate libqalculate: 3.19.0 -> 3.20.1 2021-08-14 12:25:09 +00:00
libqb
libqglviewer
libqmi libqmi: 1.28.6 -> 1.28.8 2021-08-05 18:38:24 +02:00
libqrtr-glib
libqtav Change all alsaLib references to alsa-lib 2021-06-10 01:12:49 -03:00
libquotient libquotient: 0.6.8 -> 0.6.9 2021-09-14 15:19:48 +00:00
libr3
libraspberrypi libraspberrypi: unstable-2021-03-17 -> unstable-2021-06-23 2021-08-05 09:59:11 -07:00
libraw
libraw1394 development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
librdf treewide: fix redirected URLs 2021-08-01 00:01:50 +07:00
libre various: cleanup of "inherit version;" 2021-07-17 22:39:35 +02:00
librealsense librealsense: enable build on aarch64-darwin and aarch64-linux 2021-06-20 12:37:28 +02:00
libredwg
librelp
librem
librep
libresample development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
libressl libressl: remove vulnerable libressl_3_1 2021-08-14 02:10:03 +00:00
librest
librevenge
librevisa development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
librime librime: 1.7.2 -> 1.7.3 2021-06-16 17:53:31 -07:00
libroxml treewide: fix redirected URLs 2021-08-01 00:01:50 +07:00
librsb
librseq
librsvg librsvg: 2.50.6 -> 2.50.7 2021-07-05 14:43:31 +02:00
librsync librsync_0_9: drop 2021-07-24 22:27:14 +00:00
librtlsdr
librtprocess
librttopo librttopo: init at 1.1.0 2021-05-27 09:35:56 +02:00
libs3 development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
libsamplerate development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
libsass libsass: 3.6.4 -> 3.6.5 2021-05-21 01:28:19 +00:00
libschrift
libscrypt
libsearpc
libseccomp
libsecret
libserdes libserdes: init at 6.2.0 2021-06-14 20:01:58 +03:00
libserialport development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
libshout development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
libsidplayfp libsidplayfp: 2.2.1 -> 2.2.2 2021-09-09 21:18:36 +02:00
libsieve
libsigcxx Revert "Merge pull request #137479 from r-ryantm/auto-update/libsigcxx" 2021-09-17 18:16:06 -05:00
libsignal-protocol-c
libsignon-glib
libsigsegv
libsixel libsixel: 1.8.6 -> 1.10.1 2021-09-20 09:51:08 +02:00
libskk
libslirp libslirp: 4.6.0 -> 4.6.1 2021-06-19 09:18:22 +10:00
libsmartcols
libsmi
libsnark
libsndfile libsndfile: 1.0.30 -> 1.0.31 2021-08-04 20:37:40 +02:00
libsodium libsodium: Don't fortify on mingw 2021-08-11 08:13:13 -04:00
libsolv
libsoundio Change all alsaLib references to alsa-lib 2021-06-10 01:12:49 -03:00
libsoup libsoup: support cross by disabling gobject-introspection and vala 2021-05-19 20:11:34 +02:00
libspatialindex various: cleanup of "inherit version;" 2021-07-18 00:19:24 +02:00
libspatialite libspatialite: 4.3.0a -> 5.0.1 2021-05-27 09:35:56 +02:00
libspectre development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
libspectrum development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
libspf2 libspf2: Fix CVE-2021-20314 2021-08-11 20:06:30 +02:00
libspiro
libspnav nixos/spacenavd: run as user service 2021-05-22 12:48:12 +02:00
libspng libspng: enable tests 2021-09-08 12:50:47 +09:00
libspotify Change all alsaLib references to alsa-lib 2021-06-10 01:12:49 -03:00
libsrs2
libssh libssh: 0.8.9 -> 0.9.6 2021-08-26 21:16:20 +02:00
libssh2 Merge staging-next into staging 2021-09-13 12:01:47 +00:00
libstatgrab Merge pull request #127003 from Stunkymonkey/3pname&name 2021-07-02 08:29:36 +07:00
libstemmer
libstroke development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
libstrophe
libsurvive
libsvm
libsystemtap libsystemtap: python2 is needed 2021-07-27 20:37:05 +02:00
libtap
libtar
libtasn1
libtcod
libtelnet
libtermkey
libthai
libtheora development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
libthreadar
libticables2
libticalcs2
libticonv
libtiff libtiff: revert to previous version on aarch64-darwin 2021-07-20 10:50:50 +02:00
libtifiles2
libtiger
libtins libtins: fix gtest subproject 2021-08-16 17:28:35 +09:00
libtomcrypt
libtommath
libtorrent-rasterbar
libtoxcore
libtsm
libu2f-host
libu2f-server development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
libubox libubox, ubus, uci, netifd: update (#121543) 2021-06-10 09:32:50 +02:00
libuchardet
libucl
libuecc
libui
libuinputplus
libuldaq libuldaq: init at 1.2.0 2021-07-08 14:12:47 +02:00
libunarr
libunibreak
libuninameslist
libunique
libunistring
libunity
libunwind nongnu-libunwind: Disable package for RISC-V 2021-06-04 20:44:38 -07:00
liburcu liburcu: 0.12.2 -> 0.13.0 2021-08-14 15:37:36 +00:00
liburing liburing: 2.0 -> 2.1 2021-09-09 13:52:15 -05:00
libusb1
libusb-compat
libusbmuxd libusbmuxd: 2.0.2 -> unstable-2021-02-06 2021-06-03 02:25:29 +08:00
libutempter
libuv libuv: 1.41.1 -> 1.42.0 2021-07-20 04:20:00 +00:00
libuvc
libva libva: load driver from Debian directories 2021-08-31 19:08:05 +02:00
libvarlink libvarlink: init at 22 2021-07-29 16:48:56 +03:00
libvdpau
libvdpau-va-gl libvdpau-va-gl: drop obsolete ffmpeg_3 dependency (#123757) 2021-05-20 14:44:14 -07:00
libversion
libviper
libvirt libvirt: fix build on darwin 2021-09-13 04:20:00 +00:00
libvirt-glib development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
libvisio
libvisio2svg libvisio2svg: init at 0.5.5 2021-08-19 16:58:58 +02:00
libvisual development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
libvmaf libvmaf: 2.2.0 -> 2.2.1 2021-09-23 03:00:54 +00:00
libvmi treewide: fix redirected URLs 2021-08-01 00:01:50 +07:00
libvncserver libvncserver: fix darwin build 2021-05-17 14:13:50 -07:00
libvorbis development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
libvori libvori: init at 210412 (#127373) 2021-06-18 20:36:10 +02:00
libvpx libvpx: fix cross-compilation 2021-06-16 22:31:40 +02:00
libvterm development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
libvterm-neovim
libwacom libwacom: 1.11 -> 1.12 2021-09-16 18:41:09 +02:00
libwebp
libwebsockets libwebsockets: 4.2.0 -> 4.2.1 2021-08-26 12:52:13 +02:00
libwhereami
libwmf
libwnck libwnck: make 3.36.0 default 2021-06-24 18:04:30 +03:00
libwpd
libwpe libwpe: 1.10.0 -> 1.10.1 2021-06-16 13:05:04 -07:00
libwpg development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
libwps
libx86 development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
libx86emu
libxc Merge staging-next into staging 2021-09-08 18:01:37 +00:00
libxcomp
libxcrypt
libxdg-basedir
libxkbcommon libxkbcommon: 1.3.0 -> 1.3.1 2021-09-11 22:38:19 +02:00
libxklavier libxklavier: Update git repository URL 2021-09-11 01:05:46 +00:00
libxl
libxls
libxlsxwriter libxlsxwriter: 1.1.1 -> 1.1.3 2021-08-14 14:14:55 +00:00
libxmi development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
libxml2 libxml2: add strictDeps = true 2021-08-19 09:30:47 +02:00
libxmlb
libxmlxx
libxmp development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
libxnd
libxslt
libxsmm libxsmm: 1.16.1 -> 1.16.2 2021-09-06 13:11:12 +00:00
libyaml
libyaml-cpp libyamlcpp: 0.6.3 -> 0.7.0 2021-08-14 08:41:12 +00:00
libykclient
libykneomgr development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
libytnef
libyubikey development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
libzapojit
libzdb
libzen
libzip libzip: 1.7.3 -> 1.8.0 2021-06-23 12:31:57 +02:00
libzmf various: cleanup of "inherit version;" 2021-07-18 00:19:24 +02:00
libzra
lief lief: 0.11.4 -> 0.11.5 2021-05-24 20:17:02 +00:00
lightning
lightstep-tracer-cpp
lime lime: 4.5.14 -> 5.0.0 2021-08-01 09:37:51 +00:00
linbox various: cleanup of "inherit version;" 2021-07-17 22:39:35 +02:00
linenoise
linenoise-ng
liquid-dsp
liquidfun
lirc development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
live555 live555: fix eval on unsupported platforms (#133732) 2021-08-13 13:31:56 +02:00
lmdb
lmdbxx
log4cplus
log4cpp development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
log4cxx
log4shib
loki
loudmouth
lrdf
luabind
lucene++ lucenepp: use fetchFromGitHub 2021-06-09 21:52:55 +00:00
luksmeta
lyra
lzo lzo: add strictDeps = true; 2021-08-19 09:30:47 +02:00
mac
maeparser
mailcore2
malcontent
mapbox-gl-native
mapbox-gl-qml
mapnik Merge pull request #131719 from FRidh/python2-to-3 2021-07-29 10:49:00 +02:00
marisa
marl
martyr
matio development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
mauikit libsForQt5.mauikit: 2.0.1 -> 2.0.2 2021-09-25 10:05:53 -07:00
mauikit-filebrowsing libsForQt5.mauikit-filebrowsing: 2.0.1 -> 2.0.2 2021-09-25 10:05:53 -07:00
maxflow
mbedtls treewide: ensure pre/post phase hooks are strings 2021-08-20 19:08:42 -04:00
md4c md4c: fix generated pkg-config .pc files 2021-09-17 16:20:39 +02:00
mdds various: cleanup of "inherit version;" 2021-07-17 22:39:35 +02:00
medfile
mediastreamer Change all alsaLib references to alsa-lib 2021-06-10 01:12:49 -03:00
memorymapping memorymapping: constrain to darwin (fails on linux) (#138404) 2021-09-18 15:03:00 -04:00
memstream memstream: init at 0.1 2021-08-24 18:21:40 -04:00
menu-cache
mesa mesa: 21.2.1 -> 21.2.2 2021-09-21 23:49:01 +02:00
mesa-glu libGLU: 9.0.1 -> 9.0.2 2021-07-24 15:21:16 +02:00
metal
microsoft_gsl maintainers: xwvvvvwx -> d-xo 2021-08-08 19:11:45 +02:00
mimalloc mimalloc: revert doCheck enable 2021-06-29 04:30:57 +03:00
mimetic
miniball miniball: deprecate phases 2021-08-04 17:43:19 +02:00
minixml
minizip
minizip2
mlt Merge branch 'staging-next' into staging 2021-08-15 10:45:11 +02:00
mm-common mm-common: 1.0.2 -> 1.0.3 2021-09-12 06:35:05 +00:00
mongoc
mono-addins
motif
movit
mp4v2 treewide: convert all links git.archlinux.org to github.com/archlinux/svntogit-* 2021-07-14 03:35:21 +02:00
mpfi various: cleanup of "inherit version;" 2021-07-17 22:39:35 +02:00
mpfr
mpich mpich: move gfortran to nativeBuildInputs 2021-09-03 13:33:32 +02:00
mpir various: cleanup of "inherit version;" 2021-07-17 22:39:35 +02:00
mps
msgpack msgpack: 3.2.0 -> 3.3.0 2021-08-30 09:22:16 +02:00
msgpuck
msilbc development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
mtdev development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
mtxclient
multipart-parser-c
mumlib
muparser
muparserx
mustache-hpp
mutest
mvapich mvapich: move gfortran to nativeBuildInputs 2021-09-03 13:33:32 +02:00
mygui
mypaint-brushes
mysocketw development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
mythes
nanoflann
nanomsg
nanopb treewide: convert phases that contain ":" to dont* = true (#130500) 2021-07-18 23:42:48 +02:00
nco nco: 4.9.8 -> 5.0.1 2021-08-15 12:26:15 +00:00
ncurses ncurses: fix build on NetBSD 2021-06-13 13:52:01 +00:00
ndi ndi: 4.6.0 -> 4.6.2 2021-08-05 12:13:15 -04:00
ndn-cxx
ndpi ndpi: 3.4 -> 4.0 2021-08-21 12:37:36 +01:00
neardal
neatvnc
nemo-qml-plugin-dbus
neon
netcdf netcdf: 4.7.4 -> 4.8.0 2021-08-18 00:11:43 +02:00
netcdf-cxx4
netcdf-fortran netcdf-fortran: move gfortran to nativeBuildInputs 2021-09-03 13:33:33 +02:00
nettle nettle: 3.7.2 -> 3.7.3 2021-06-08 17:40:34 +01:00
networking-ts-cxx
newt newt: support cross-compilation 2021-07-30 19:23:42 +02:00
nghttp2
ngt
nix-plugins various: cleanup of "inherit version;" 2021-07-17 22:39:35 +02:00
nlohmann_json nlohmann_json: enable checkPhase 2021-09-15 11:19:01 +08:00
nlopt
notcurses notcurses: 2.3.8 -> 2.4.1 2021-09-20 10:18:51 +02:00
notify-sharp
npapi-sdk
npth
NSPlist development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
nspr nspr: format, cleanup 2021-08-10 13:01:28 +02:00
nss nss: Add updateScript 2021-09-16 09:33:38 -04:00
nss_wrapper nss_wrapper: switch to pname + version 2021-08-10 13:01:56 +02:00
nsss skawarePackages: Fall 2021 release 2021-09-27 14:28:43 +02:00
ntbtls
ntdb
ntirpc
ntl
ntrack various: cleanup of "inherit version;" 2021-07-17 22:39:35 +02:00
nuraft nuraft: 1.2.0 -> 1.3.0 2021-08-17 10:41:53 -07:00
nuspell nuspell: 4.2.0 -> 5.0.0 2021-07-28 22:21:26 +02:00
nv-codec-headers nv-codec-headers-10: init at 10.0.26.2 2021-05-24 22:07:52 -07:00
nvidia-optical-flow-sdk nvidia-optical-flow-sdk: 1.0 -> 2.0 2021-06-13 22:51:52 -07:00
nvidia-texture-tools
nvidia-video-sdk development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
oatpp
ocl-icd
octomap octomap: 1.9.6 -> 1.9.7 2021-05-21 16:29:30 -07:00
ode ode: 0.12 -> 0.16.2 2021-07-19 11:29:51 -04:00
odpic odpic: 4.1.0 -> 4.2.1 2021-08-15 13:37:48 +00:00
ogdf
ogre
ogrepaged
ois
olm olm: 3.2.2 -> 3.2.4 2021-06-10 22:05:03 +02:00
oneDNN oneDNN: 2.2.1 -> 2.3.2 2021-08-15 14:46:27 +00:00
oniguruma
opae
openal-soft openal-soft: cleanup, remove ? null from inputs 2021-08-21 19:10:37 +02:00
openbabel
openbr
openbsm
opencascade
opencascade-occt
opencl-clang opencl-clang: fix darwin build 2021-05-18 11:11:53 +02:00
opencl-clhpp
opencl-headers
opencollada
opencolorio opencolorio: 2.0.1 -> 2.0.2 2021-09-14 18:23:44 +00:00
opencore-amr various: cleanup of "inherit version;" 2021-07-17 22:39:35 +02:00
opencsg
openct
opencv Merge #138353: opencv3: fix build (into staging-next) 2021-09-20 12:32:03 +02:00
opendbx
opendht opendht: 2.2.0 -> 2.3.1 2021-09-16 15:13:36 +00:00
opendkim
opendmarc
openexr openexr_3: 3.0.5 -> 3.1.1 2021-08-24 20:16:00 -07:00
openexrid-unstable
openfst
openfx
opengrm-ngram
openh264
openhmd
openimagedenoise openimagedenoise: 1.4.0 -> 1.4.1 2021-08-17 10:38:58 -07:00
openjpeg
openldap
openmpi openmpi: move gfortran to nativeBuildInputs 2021-09-03 13:33:33 +02:00
openpa
openpam
opensaml-cpp
openscenegraph
openslide
openslp
openssl Revert "Revert "openssl: 1.1.1k -> 1.1.1l" (#135999)" 2021-08-28 16:58:44 +02:00
opensubdiv
opentracing-cpp
openvdb
openvino openvino: fix build with protobuf 3.18+ 2021-09-23 01:30:17 -07:00
openwsman various: cleanup of "inherit version;" 2021-07-17 22:39:35 +02:00
openxr-loader openxr-loader: 1.0.18 -> 1.0.19 2021-08-25 10:17:08 +00:00
openzwave
optparse-bash optparse-bash: init at 2021-06-13 2021-07-16 08:09:07 +08:00
oracle-instantclient oracle-instantclient: add tools 2021-07-11 00:24:06 -04:00
orcania orcania: 2.2.0 -> 2.2.1 2021-08-17 10:34:07 -07:00
orocos-kdl orocos-kdl: 1.5.0 -> 1.5.1 2021-09-16 16:01:22 -04:00
ortp
osip various: cleanup of "inherit version;" 2021-07-17 22:39:35 +02:00
osm-gps-map
p11-kit p11-kit: 0.23.22 -> 0.24.0 2021-07-29 10:55:30 +02:00
packr
pagmo2
pango Merge master into staging-next 2021-07-04 12:01:06 +00:00
pangolin
pangomm pangomm_2_48: 2.48.0 -> 2.48.1 2021-09-12 22:54:12 +00:00
pangoxsl
parquet-cpp
partio
pc-ble-driver pc-ble-driver: 4.1.1 -> 4.1.4 2021-05-19 10:03:25 +02:00
pcaudiolib Change all alsaLib references to alsa-lib 2021-06-10 01:12:49 -03:00
pcg-c
pcl pcl: 1.12.0 propagation fix 2021-09-09 20:21:08 +00:00
pcmsolver pcmsolver: init at 1.3.0 2021-05-27 11:14:37 +02:00
pcre
pcre2
pdal pdal: 2.2.0 -> 2.3.0 2021-08-17 19:56:57 +02:00
pdf2xml
pe-parse
phash various: cleanup of "inherit version;" 2021-07-18 00:19:24 +02:00
phonetisaurus
phonon backends: format 2021-08-10 10:19:32 +02:00
physfs physfs_2: fix darwin build 2021-05-18 11:44:38 +02:00
physics Merge staging-next into staging 2021-09-15 18:01:59 +00:00
pico-sdk pico-sdk: init at 1.2.0 2021-06-06 14:39:23 +03:00
pipewire pipewire: 0.3.35 -> 0.3.36 2021-09-16 18:52:08 +03:00
pixman pixman: enable debug info 2021-09-14 06:39:51 +00:00
pkcs11helper
pkger
plasma-wayland-protocols plasma-wayland-protocols: 1.2.1 -> 1.3.0 2021-08-05 17:01:19 +09:00
plib development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
PlistCpp development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
plplot
pmdk pmdk: 1.7 -> 1.9.2 2021-05-17 23:21:04 -07:00
pmix various: cleanup of "inherit version;" 2021-07-17 22:39:35 +02:00
png++
pocketsphinx
poco poco: propagate dependencies imported by CMake scripts 2021-09-17 17:51:25 -04:00
podofo
polkit polkit: 0.118 -> 0.119 2021-06-28 07:46:34 -07:00
polkit-qt-1
poly2tri-c
poppler poppler: 21.05.0 -> 21.06.1 2021-06-22 18:33:23 -03:00
popt popt: use upstream source; add homepage; adopt 2021-06-11 13:30:03 +00:00
portaudio portaudio: remove Werror (#136060) 2021-08-30 09:12:52 +01:00
portmidi portmidi: 217 -> 234 2021-08-12 08:36:20 +10:00
ppl
precice precice: 2.2.0 -> 2.2.1 2021-08-17 14:56:49 +00:00
presage
prime-server
prison
proj Revert "proj: 7.2.1 -> 8.0.1" + patch the test 2021-07-20 11:38:05 +02:00
proj-datumgrid
prometheus-client-c
prometheus-cpp
properties-cpp
protobuf protobuf3_18: init at 3.18.0 2021-09-15 04:20:00 +00:00
protobufc
protolock
prototypejs
protozero
pslib
psol
psqlodbc development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
pstreams
ptex
pth
pugixml
pulseaudio-qt
pupnp libupnp: 1.14.8 -> 1.14.10 2021-08-24 08:34:31 +00:00
pxlib
py3c
pyotherside
pystring pystring: Use CMake build 2021-06-23 19:12:38 -05:00
python-qt
qca2
qca-qt5
qgnomeplatform qgnomeplatform: 0.6.1 → 0.8.0 2021-08-29 04:25:07 +02:00
qhull qhull: add fixDarwinDylibNames 2021-05-27 04:54:05 -04:00
qimageblitz
qjson
qmlbox2d treewide: remove unnecessary enableParallelBuilding when using qmake 2021-07-20 10:32:58 +07:00
qmltermwidget treewide: remove unnecessary enableParallelBuilding when using qmake 2021-07-20 10:32:58 +07:00
qoauth qoauth: use fetchFromGitHub and pname&version 2021-06-29 23:22:56 +02:00
qpdf qpdf: 10.3.1 -> 10.3.2 2021-08-17 16:25:00 +00:00
qrcodegen qrcodegen: 1.6.0 -> 1.7.0 2021-08-17 16:35:15 +00:00
qrencode
qrupdate qrupdate: move gfortran to nativeBuildInputs 2021-09-03 13:33:33 +02:00
qscintilla treewide: remove unnecessary enableParallelBuilding when using qmake 2021-07-20 10:32:58 +07:00
qt-4.x/4.8 treewide: fix redirected URLs 2021-08-01 00:01:50 +07:00
qt-5 qt512: fixup build of qtwayland 2021-09-23 01:39:24 +02:00
qt-mobility
qtfeedback
qtinstaller treewide: remove unnecessary enableParallelBuilding when using qmake 2021-07-20 10:32:58 +07:00
qtkeychain qtkeychain: 0.9.1 -> 0.12.0 (#132457) 2021-08-05 09:26:28 +02:00
qtpbfimageplugin
qtscriptgenerator
qtstyleplugin-kvantum libsForQt5.qtstyleplugin-kvantum: 0.20.0 -> 0.20.1 2021-07-22 08:58:05 -03:00
qtstyleplugin-kvantum-qt4
qtstyleplugins
qtutilities libsForQt5.qtutilities: 6.3.3 -> 6.5.0 2021-09-14 11:55:27 +00:00
qtwebkit-plugins development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
quazip
quesoglc
quickder
quickfix
qwt development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
qxmpp qxmpp: init at 1.4.0 2021-06-14 23:32:10 +02:00
qxt
rabbitmq-c
rabbitmq-java-client
raft-canonical raft-canonical: 0.10.1 -> 0.11.2 2021-08-08 06:00:00 -05:00
randomx
rang
range-v3 maintainers: xwvvvvwx -> d-xo 2021-08-08 19:11:45 +02:00
rapidcheck
rapidjson
rapidxml
rarian
raylib treewide: fix redirected URLs 2021-08-01 00:01:50 +07:00
rdkafka rdkafka: 1.7.0 -> 1.8.0 2021-09-18 20:15:13 +09:00
re2
readline
readosm development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
relibc
rep-gtk
reproc reproc: 14.2.2 -> 14.2.3 2021-08-17 18:45:16 +00:00
resolv_wrapper
retro-gtk retro-gtk: init at 1.0.2 2021-06-14 19:41:58 +02:00
rinutils
rlog
rlottie rlottie: 0.1 -> 0.2 2021-06-06 14:15:36 +03:00
rnnoise
rnnoise-plugin
robin-map
rocclr rocclr: add update script 2021-09-09 15:42:07 +02:00
rocksdb rocksdb: 6.23.2 -> 6.23.3 2021-08-15 14:00:52 +03:00
rocm-comgr rocm-comgr: add update script 2021-09-09 13:38:57 +02:00
rocm-device-libs rocm-device-libs: add update script 2021-09-09 13:38:51 +02:00
rocm-opencl-icd rocm-opencl-icd: add lovesegfault as maintainer 2021-09-02 13:08:47 -07:00
rocm-opencl-runtime treewide: remove danieldk as maintainer from a set of packages 2021-09-12 14:42:12 +00:00
rocm-runtime treewide: remove danieldk as maintainer from a set of packages 2021-09-12 14:42:12 +00:00
rocm-thunk rocm-thunk: add update script 2021-09-09 13:38:27 +02:00
rote
rttr
rubberband
rustc-demangle rustc-demangle: init at 0.1.20 2021-09-03 18:56:37 +10:00
s2geometry
s2n-tls s2n-tls: 1.0.16 -> 1.0.17 2021-08-27 11:46:04 +00:00
safefile various: cleanup of "inherit version;" 2021-07-17 22:39:35 +02:00
sbc development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
sblim-sfcc various: cleanup of "inherit version;" 2021-07-17 22:39:35 +02:00
schroedinger development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
science Merge pull request #136655 from samuela/samuela/cudatoolkit 2021-09-24 12:20:40 -07:00
scmccid development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
scriptaculous
SDL Merge pull request #127278 from r-burns/sdl-hashes 2021-07-03 16:21:29 +07:00
SDL2 Change all alsaLib references to alsa-lib 2021-06-10 01:12:49 -03:00
SDL2_gfx
SDL2_image SDL2_image: ensure image libraries are statically linked 2021-08-10 20:47:20 +10:00
SDL2_mixer
SDL2_net
SDL2_ttf
SDL_gfx
SDL_gpu
SDL_image SDL: fix hashes 2021-06-17 17:21:36 -07:00
SDL_mixer
SDL_net
SDL_Pango SDL_Pango: fix darwin build 2021-05-26 07:34:06 +02:00
SDL_sixel
SDL_sound
SDL_stretch
SDL_ttf
seasocks
sentencepiece treewide: remove danieldk as maintainer from a set of packages 2021-09-12 14:42:12 +00:00
sentry-native sentry-native: 0.4.11 -> 0.4.12 2021-08-15 19:46:07 +03:00
serd
serf
serialdv
sfml various: cleanup of "inherit version;" 2021-07-17 22:39:35 +02:00
sfsexp
shapelib
sharness
shhmsg
shhopt development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
shibboleth-sp
signond
silgraphite graphite2: fixup build on aarch64-darwin after PR #123420 2021-09-14 19:50:55 +02:00
simdjson simdjson: 0.9.7 -> 1.0.0 2021-09-14 06:02:47 +00:00
simgear simgear: 2020.3.8 -> 2020.3.11 2021-08-28 00:22:39 +00:00
simpleitk
skalibs skawarePackages: Fall 2021 release 2021-09-27 14:28:43 +02:00
slang
slib development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
smarty3
smarty3-i18n
smesh
smooth smooth: 0.9.6 -> 0.9.8 2021-06-29 08:44:00 -07:00
smpeg
smpeg2
snack treewide: fix redirected URLs 2021-08-01 00:01:50 +07:00
snap7
snappy
soci
socket_wrapper socket_wrapper: switch to pname+version 2021-09-14 11:39:44 +02:00
sofia-sip
soil
sonic
sope sope: 5.1.1 -> 5.2.0 2021-08-19 17:22:41 +02:00
soprano development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
soqt
sord
soundtouch
soxt
spandsp spandsp: support cross-compilation 2021-08-18 21:35:41 +02:00
sparsehash
spatialite-tools spatialite_tools: 5.0.0 -> 5.0.1 2021-05-31 01:00:54 +02:00
spdk Merge pull request #122588 from Mic92/dpdk 2021-05-24 08:15:17 +01:00
spdlog
speech-tools Change all alsaLib references to alsa-lib 2021-06-10 01:12:49 -03:00
speechd Change all alsaLib references to alsa-lib 2021-06-10 01:12:49 -03:00
speex
speexdsp development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
spglib spglib: 1.16.1 -> 1.16.2 2021-08-11 23:31:28 +02:00
sphinxbase
spice spice: 0.14.2 -> 0.15.0 2021-06-17 18:01:54 +09:00
spice-gtk
spice-protocol
spirv-headers
sqlcipher sqlcipher: fix static build 2021-08-04 01:10:25 +02:00
sqlite Merge pull request #135175 from r-ryantm/auto-update/sqlite 2021-09-12 16:21:45 +02:00
sqlitecpp
srt srt: Switch website to Github. 2021-06-23 14:16:31 +02:00
srtp srtp: 2.3.0 -> 2.4.0, switch to meson 2021-08-27 23:04:49 -07:00
startup-notification Merge master into staging-next 2021-07-18 00:01:24 +00:00
stb
stfl
stlport development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
stxxl
subunit subunit: use python3 2021-07-27 20:37:05 +02:00
sundials sundials: move gfortran to nativeBuildInputs 2021-09-03 13:33:34 +02:00
svrcore
swiften
swiftshader
sword
sycl-info
symengine symengine: 0.7.0 -> 0.8.1 2021-09-14 00:06:49 +00:00
szip
t1lib treewide: ensure pre/post phase hooks are strings 2021-08-20 19:08:42 -04:00
tachyon various: cleanup of "inherit version;" 2021-07-17 22:39:35 +02:00
taglib
taglib-extras development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
taglib-sharp
tagparser
talloc talloc: 2.3.2 -> 2.3.3 2021-08-22 04:20:15 +00:00
tbb
tclap tclap: 1.2.3 -> 1.2.4 2021-08-19 20:43:37 +00:00
tcllib tcllib: Simplify package with tcl.mkTclDerivation 2021-05-21 15:18:06 -05:00
tcltls tcltls: 1.7.21 -> 1.7.22 2021-08-22 02:40:32 +00:00
tclx tclx: fix undefined variable error 2021-05-21 15:18:31 -05:00
tdb tdb: fix cross-compilation 2021-06-27 23:30:31 -04:00
tdlib
tecla
telepathy
template-glib
tepl
termbox
tevent
tezos-rust-libs Fix tezos-rust-libs to work with tezos-sapling 2021-07-23 13:33:59 +02:00
theft
thrift thrift: Move from Python 2 to Python 3 2021-08-22 14:16:29 -04:00
ti-rpc
ticpp
tidyp tidyp: document autoreconf issues with a source tarball 2021-07-21 20:35:43 -04:00
tiledb tiledb: 2.2.9 -> 2.3.3 2021-08-26 15:17:46 +00:00
timezonemap
tinycbor tinycbor: 0.5.3 -> 0.5.4 2021-09-22 21:22:32 +00:00
tinycdb
tinyobjloader tinyobjloader: 1.0.6 -> 1.0.7 2021-08-21 21:52:32 +00:00
tinyxml
tinyxml-2
tix tix: fix build on darwin 2021-09-23 02:24:58 -07:00
tk tk: fix missing definition in macOS header 2021-09-23 00:45:23 -07:00
tkrzw tkrzw: 0.9.3 -> 0.9.51 2021-08-12 15:32:56 +02:00
tl-expected
tllist tllist: refactor derivation 2021-08-08 12:26:07 -04:00
tnt
tntdb
tntnet
tokyo-cabinet development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
tokyo-tyrant
totem-pl-parser totem-pl-parser: 3.26.5 -> 3.26.6 2021-08-15 00:25:36 +02:00
tpm2-tss systemd: 247.6 -> 249.4 2021-09-12 23:45:49 +02:00
tracker
tracker-miners tracker-miners: drop libgrss 2021-08-07 00:04:54 +02:00
tre development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
tremor
trompeloeil trompeloeil: 40 -> 41 2021-08-17 19:21:13 +00:00
tsocks
tweeny
twolame
ubus libubox, ubus, uci, netifd: update (#121543) 2021-06-10 09:32:50 +02:00
uci libubox, ubus, uci, netifd: update (#121543) 2021-06-10 09:32:50 +02:00
ucl
ucommon development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
ucx ucx: 1.11.0 -> 1.11.1 2021-09-14 13:30:52 +02:00
udns
udunits udunits: meta.platforms = lib.platforms.all 2021-09-25 15:22:33 +08:00
uhttpmock
uid_wrapper
umockdev
unibilium
unicap
unicorn unicorn: 1.0.2 -> 1.0.3 2021-08-08 22:40:05 +01:00
unittest-cpp
unixODBC unixODBC: Add additional URL 2021-08-23 12:23:59 -07:00
unixODBCDrivers
unqlite
urdfdom
urdfdom-headers
uri
uriparser
usbredir usbredir: fix cross 2021-08-31 12:27:03 +00:00
usrsctp
ustr
utf8cpp
utf8proc
uthash various: cleanup of "inherit version;" 2021-07-17 22:39:35 +02:00
uthenticode
utmps skawarePackages: Fall 2021 release 2021-09-27 14:28:43 +02:00
v8
vaapi-intel
vaapi-intel-hybrid
vaapi-vdpau
valhalla valhalla: fix build with protobuf 3.18+ 2021-09-23 01:21:47 -07:00
vapoursynth vapoursynth: R54 -> R55 2021-09-20 09:02:31 -06:00
vapoursynth-mvtools
vc vc: 1.4.1 -> 1.4.2 2021-08-15 11:16:32 +03:00
vcdimager development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
vcg
vid-stab
vigra
virglrenderer virglrenderer: 0.8.2 -> 0.9.1 2021-06-30 14:21:18 +00:00
vmime
vmmlib
vo-aacenc
vo-amrwbenc
volk volk: fix darwin build 2021-06-28 20:47:28 +02:00
volume-key various: cleanup of "inherit version;" 2021-07-17 22:39:35 +02:00
vrb
vrpn
vsqlite
vte
vtk vtk_9: 9.0.1 -> 9.0.3 2021-09-11 19:06:41 -03:00
vulkan-headers vulkan: 1.2.176 -> 1.2.182 2021-07-24 11:35:21 +08:00
vulkan-loader vulkan: 1.2.176 -> 1.2.182 2021-07-24 11:35:21 +08:00
vxl development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
waffle
wasilibc
wavpack
wayland wayland-protocols: 1.22 -> 1.23 2021-09-16 00:39:21 +02:00
waylandpp
webkit2-sharp
webkitgtk webkitgtk: 2.32.3 -> 2.32.4 2021-09-21 00:28:12 +02:00
webrtc-audio-processing webrtc-audio-processing: Enable RISC-V 2021-06-12 11:18:40 -07:00
websocket++
wiiuse
wildmidi wildmidi: 0.4.3 -> 0.4.4 and use fetchFromGitHub and pname&version 2021-06-29 23:27:50 +02:00
wiredtiger
wlroots wlroots: 0.14.0 -> 0.14.1 2021-07-08 17:57:37 +02:00
wolfssl wolfssl: remove myself from maintainers 2021-08-09 10:07:10 +01:00
wt wt: 4.2.0 -> 4.5.0 2021-05-20 14:11:01 -07:00
wtk development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
wxsqlite3 wxsqlite3: format, cleanup 2021-08-10 10:19:31 +02:00
wxsqliteplus
wxSVG
wxwidgets various: cleanup of "inherit version;" 2021-07-17 22:39:35 +02:00
x264 x264: 20191217-2245 -> unstable-2021-06-13 (#121385) 2021-09-04 10:56:22 -04:00
x265
xalanc
xapian
xavs
Xaw3d
xbase development: /s/name/pname&version/ 2021-07-02 00:03:10 +02:00
xcb-imdkit xcb-imdkit: 1.0.2 -> 1.0.3 2021-06-08 00:59:28 +08:00
xcb-util-cursor
xdg-dbus-proxy
xdg-desktop-portal
xdg-desktop-portal-gtk
xdg-desktop-portal-wlr xdg-desktop-portal-wlr: 0.3.0 -> 0.4.0 2021-06-16 11:50:49 +02:00
xed
xercesc
xgboost
xine-lib Change all alsaLib references to alsa-lib 2021-06-10 01:12:49 -03:00
xlibs-wrapper xlibsWrapper: preserve meta 2021-07-20 16:56:14 +00:00
xlslib
xml-security-c
xml-tooling-c
xmlrpc-c development: /s/name/pname&version/ 2021-06-30 09:45:11 +02:00
xmlsec xmlsec: 1.2.31 -> 1.2.32 2021-08-14 07:32:48 +00:00
xsd
xsimd
xtensor xtensor: init at 0.23.10 2021-06-04 05:43:36 -04:00
xtl xtl: init at 0.7.2 2021-06-01 07:40:08 -04:00
xvidcore xvidcore: 1.3.5 -> 1.3.7 2021-07-24 15:30:32 +02:00
xxHash
xylib
yajl yajl: use fetchFromGitHub and pname&version 2021-06-29 23:27:50 +02:00
yder yder: 1.4.12 -> 1.4.14 2021-08-21 18:22:29 +00:00
yojimbo
yubico-pam yubico-pam: unstable-2019-07-01 -> 2.27 2021-08-23 20:06:30 +02:00
zchunk zchunk: format 2021-08-02 10:58:45 +02:00
zeitgeist
zeroc-ice zeroc-ice: enable tests 2021-08-22 00:01:38 -04:00
zeromq
zimg zimg: 3.0.2 -> 3.0.3 2021-09-09 01:34:21 +02:00
zimlib zimlib: 6.3.0 -> 6.3.2 2021-06-16 12:01:42 +00:00
zlib pkgsStatic: Inline more of static overlay 2021-08-19 21:55:06 +00:00
zlib-ng zlib-ng: 2.0.2 -> 2.0.5 2021-08-14 12:59:11 +00:00
zlog
zmqpp
zookeeper_mt
zxcvbn-c
zxing-cpp
zydis
zziplib