Commit Graph

16920 Commits

Author SHA1 Message Date
Pascal Wittmann
8915ed06b3
networkmanager-fortisslvpn: add license
see issue #43716
2018-08-09 13:03:31 +02:00
Pascal Wittmann
97d28586c1
nixops: add license
see issue #43716
2018-08-09 12:51:48 +02:00
Pascal Wittmann
76ce4751d0
p7zip: add license
see issue #43716
2018-08-09 12:41:06 +02:00
Pascal Wittmann
77d5aff75e
moreutils: add license
see issue #43716
2018-08-06 12:42:49 +02:00
Pascal Wittmann
2e57556e62
multitail: add license
see issue #43716
2018-08-06 12:41:40 +02:00
Pascal Wittmann
934c71f806
riemann-tools: add meta-data
see issue #43716
2018-08-06 12:29:24 +02:00
Pascal Wittmann
94d090ba8c
refind: add license
see issue #43716
2018-08-06 12:21:56 +02:00
Pascal Wittmann
21b81f41ae
renameutils: add license
see issue #43716
2018-08-06 12:20:53 +02:00
Pascal Wittmann
f7be21f4c9
Merge branch 'master' into add-missing-licenses
Conflicts:
	pkgs/development/libraries/exiv2/default.nix
        Set license to gpl2Plus
2018-08-06 12:04:52 +02:00
Robert Schütz
c3b1a8178b duply: explicitly use python2 2018-08-06 09:36:55 +02:00
Robert Schütz
3b490c653c ddar: explicitly use python2 2018-08-06 09:28:20 +02:00
Silvan Mosberger
56ac23a19c
Merge pull request #44398 from dotlambda/blueman-python3
bluez: use python3
2018-08-05 23:50:39 +02:00
Silvan Mosberger
08c82ad24c
Merge pull request #44519 from oxij/pkg/biber-cleanup
biber: cleanup
2018-08-05 22:21:29 +02:00
Richard Marko
97ca78687a logrotate: make mailutils overridable (#44504) 2018-08-05 22:19:35 +02:00
Jan Malakhovski
66742ff495 biber: cleanup 2018-08-05 19:45:51 +00:00
Tim Steinbach
76a713bd29
sharutils: Patch CVE-2018-1000097 2018-08-05 14:42:15 -04:00
Vincent Bernat
bf1473f5e0 haproxy: use getaddrinfo() on Linux (#44489)
As per project's README:

> Recent systems can resolve IPv6 host names using getaddrinfo(). This
> primitive is not present in all libcs and does not work in all of
> them either. Support in glibc was broken before 2.3. Some embedded
> libs may not properly work either, thus, support is disabled by
> default, meaning that some host names which only resolve as IPv6
> addresses will not resolve and configs might emit an error during
> parsing. If you know that your OS libc has reliable support for
> getaddrinfo(), you can add USE_GETADDRINFO=1 on the make command
> line to enable it. This is the recommended option for most Linux
> distro packagers since it's working fine on all recent mainstream
> distros. It is automatically enabled on Solaris 8 and above, as it's
> known to work.

Without this option, it is not possible for HAProxy to solve IPv6-only
names. This option is enabled in Debian builds without any notable
adverse effect.
2018-08-05 18:17:27 +02:00
Silvan Mosberger
0aa19ba47a
Merge pull request #44450 from bignaux/squashfuse
squashfuse : unstable-2018-02-20 -> 0.1.103
2018-08-05 17:07:27 +02:00
Vincent Bernat
cc1d82196c haproxy: 1.8.9 -> 1.8.13 (#44487)
The patches previously applied have been included upstream. Upstream
changelog (only MAJOR/MEDIUM):

2018/07/30 : 1.8.13
    - BUG/MEDIUM: h2: don't accept new streams if conn_streams are still in excess
    - BUG/MEDIUM: h2: never leave pending data in the output buffer on close
    - BUG/MEDIUM: h2: make sure the last stream closes the connection after a timeout
    - BUG/MEDIUM: threads: Fix the exit condition of the thread barrier
    - BUG/MEDIUM: stream-int: don't immediately enable reading when the buffer was reportedly full
    - BUG/MEDIUM: stats: don't ask for more data as long as we're responding
    - BUG/MEDIUM: threads/sync: use sched_yield when available
    - BUG/MEDIUM: h2: prevent orphaned streams from blocking a connection forever
    - BUG/MEDIUM: threads: properly fix nbthreads == MAX_THREADS
    - BUG/MEDIUM: threads: unbreak "bind" referencing an incorrect thread number
    - MEDIUM: proxy_protocol: Convert IPs to v6 when protocols are mixed

2018/06/27 : 1.8.12
    - BUG/MAJOR: stick_table: Complete incomplete SEGV fix

2018/06/26 : 1.8.11
    - BUG/MAJOR: Stick-tables crash with segfault when the key is not in the stick-table

2018/06/22 : 1.8.10
    - BUG/MEDIUM: spoe: Flags are not encoded in network order
    - BUG/MEDIUM: contrib/mod_defender: Use network order to encode/decode flags
    - BUG/MEDIUM: contrib/modsecurity: Use network order to encode/decode flags
    - BUG/MEDIUM: cache: don't cache when an Authorization header is present
    - BUG/MEDIUM: dns: Delay the attempt to run a DNS resolution on check failure.
    - BUG/MEDIUM: fd: Only check update_mask against all_threads_mask.
    - BUG/MEDIUM: servers: Add srv_addr default placeholder to the state file
    - BUG/MEDIUM: lua/socket: Length required read doesn't work
    - BUG/MEDIUM: stick-tables: Decrement ref_cnt in table_* converters
    - BUG/MEDIUM: spoe: Return an error when the wrong ACK is received in sync mode
    - BUG/MEDIUM: lua/socket: wrong scheduling for sockets
    - BUG/MAJOR: lua: Dead lock with sockets
    - BUG/MEDIUM: lua/socket: Notification error
    - BUG/MEDIUM: lua/socket: Sheduling error on write: may dead-lock
    - BUG/MEDIUM: lua/socket: Buffer error, may segfault
    - MAJOR: spoe: upgrade the SPOP version to 2.0 and remove the support for 1.0
    - BUG/MEDIUM: threads: handle signal queue only in thread 0
    - BUG/MAJOR: map: fix a segfault when using http-request set-map
    - BUG/MAJOR: ssl: Random crash with cipherlist capture
    - BUG/MAJOR: ssl: OpenSSL context is stored in non-reserved memory slot
    - BUG/MEDIUM: fd: Don't modify the update_mask in fd_dodelete().
    - BUG/MEDIUM: threads: Use the sync point to check active jobs and exit
2018-08-05 16:48:22 +02:00
Pascal Wittmann
e7c9273b87
getmail: add license
see issue #43716
2018-08-05 16:43:09 +02:00
Pascal Wittmann
03b2a4dd79
fondu: add license
see issue #43716
2018-08-05 16:41:49 +02:00
Pascal Wittmann
9119cd2a9e
dosfstools: add license
see issue #43716
2018-08-05 16:34:12 +02:00
jpathy
8a9733361e ccid: 1.4.27 -> 1.4.29 (#44503)
Also update the non-existent homepage and download link.
2018-08-05 16:32:15 +02:00
Pascal Wittmann
9ff03a7716
disper: add license
see issue #43716
2018-08-05 16:29:27 +02:00
Pascal Wittmann
f611b23aee
diskscan: add license
see issue #43716
2018-08-05 16:28:41 +02:00
Pascal Wittmann
31b8aebded
dirmngr: add license
see issue #43716
2018-08-05 16:27:34 +02:00
Vladyslav M
9f9e5d4371 oxipng: 1.0.1 -> 2.1.0 (#44488) 2018-08-05 16:20:38 +02:00
Pascal Wittmann
71caa7c54a
convmv: add license
see issue #43716
2018-08-05 16:14:20 +02:00
Pascal Wittmann
4269eb17dc
brasero: inherit meta in wrapper
see issue #43716
2018-08-05 16:06:55 +02:00
Pascal Wittmann
5c831c7bfe
brasero: correct license, is actually gpl2Plus
see issue #43716
2018-08-05 16:02:07 +02:00
Robert Schütz
ad377b4cba
svtplay-dl: use python3Packages 2018-08-05 10:39:44 +02:00
Robert Schütz
2215834789
simp_le: use python3Packages (#44476) 2018-08-05 01:17:38 +02:00
Jan Tojnar
544f1d471a
Merge pull request #44471 from worldofpeace/elementary-requesites
Various elementary necessaries
2018-08-05 00:49:47 +02:00
worldofpeace
5d95f474d8 scour: init at 0.37 2018-08-04 18:19:25 -04:00
Jesper
0254ae4e80 netdata: 1.9.0 -> 1.10.0 (#44472)
The web_access.patch would no longer apply.
It disabled a check that required the static files
for the web UI to be owned by the user the daemon runs as
(not root, so it doesn't work well with nix).

Besides updating netdata, this commit removes that patch,
changes the netdata service config to set the "web files owner/group"
option to "root" and adds a test that checks that the web UI is being served.

This allows the web files to be owned by root without patching.
2018-08-05 00:05:48 +02:00
xeji
8d184e14e4
Merge pull request #44469 from nyarly/simp_le_090
simp_le: 0.8.0 -> 0.9.0
2018-08-04 23:35:41 +02:00
Judson
fb26b73f11
simp_le: Restricting to platforms.linux 2018-08-04 14:21:19 -07:00
Vladyslav M
2ce2f721b8 ripgrep: 0.8.1 -> 0.9.0 (#44473) 2018-08-04 22:59:33 +02:00
Judson
7ab9e9b15b
(simp_le): (0.8.0 -> 0.9.0) 2018-08-04 12:56:55 -07:00
xeji
8fe5b457a4
Merge pull request #44455 from marsam/feature/update-rtorrent
libtorrent: 20161212 -> 0.13.7, rtorrent: 20161023 -> 0.9.7
2018-08-04 21:19:17 +02:00
Will Dietz
e103ad48ea f2fs-tools: 1.10.0 -> 1.11.0 (#43715) 2018-08-04 20:55:23 +02:00
Pascal Wittmann
1058537c7c
rtorrent: add license
see issue #43716
2018-08-04 19:12:54 +02:00
Pascal Wittmann
2bc6257cfd
sbsigntool: add license
see issue #43716
2018-08-04 18:54:35 +02:00
Pascal Wittmann
3cea40adb3
scrot: add license
see issue #43716
2018-08-04 18:46:28 +02:00
Pascal Wittmann
6482d5c3d1
seccure: add license
see issue #43716
2018-08-04 18:42:30 +02:00
Pascal Wittmann
847e1bd906
setserial: add license
see issue #43716
2018-08-04 18:41:06 +02:00
Pascal Wittmann
58b24cf4d2
shfmt: add license
see issue #43716
2018-08-04 18:38:46 +02:00
Bignaux Ronan
3f0decd822 squashfuse : unstable-2018-02-20 -> 0.1.103 2018-08-04 17:11:41 +02:00
Pascal Wittmann
49a39aac3e
ssss: add license
see issue #43716
2018-08-04 17:00:58 +02:00
Pascal Wittmann
e700483077
sstp: add license
see issue #43716
2018-08-04 16:59:43 +02:00