Dan Peebles
b7b2019e62
proot: fix static build
2016-08-19 21:41:21 +00:00
Matthew Bauer
cf69e6d870
yeshup: only build on linux
...
It uses the linux-only sys/prctl.h header.
2016-08-16 19:25:46 +00:00
Matthew Bauer
c92227f5cc
smartmontools: fix darwin build
...
needs IOKit
2016-08-16 19:25:46 +00:00
Matthew Bauer
1138b5dc7e
tm: fix darwin build
2016-08-16 19:25:44 +00:00
Matthew Bauer
51085c0681
hardlink: fix darwin build
2016-08-16 19:25:41 +00:00
Matthew Bauer
738b0a39d7
dog: fix darwin build
2016-08-16 19:25:41 +00:00
Franz Pletz
bd4490e277
Merge branch 'master' into hardened-stdenv
2016-08-13 16:59:55 +02:00
Luca Bruno
909b036b47
Merge pull request #16610 from leenaars/datefudge
...
Datefudge
2016-08-12 22:10:59 +01:00
zimbatm
c2302f2f45
Merge pull request #17677 from kamilchm/no-go-libs-json
...
buildGoPackage: remove Go deps file `libs.json`
2016-08-12 18:13:29 +01:00
Robin Gloster
b7787d932e
Merge remote-tracking branch 'upstream/master' into hardened-stdenv
2016-08-12 09:46:53 +00:00
Kamil Chmielewski
da3ddd48e4
buildGoPackage: remove Go deps file libs.json
...
After #16017 there were a lot
of comments saying that `nix` would be better than `JSON`
for Go packages dependency sets.
As said in https://github.com/NixOS/nixpkgs/pull/16017#issuecomment-229624046
> Because of the content-addressable store, if two programs have the
> same dependency it will already result in the same derivation in
> the
> store. Git also has compression in the pack files so it won't make
> much difference to duplicate the dependencies on disk. And finally
> most users will just use the binary builds so it won't make any
> differences to them.
This PR removes `libs.json` file and puts all package dependencies in
theirs `deps.json`.
2016-08-11 23:07:09 +02:00
Michael Raskin
beaee69795
freeipmi: 1.5.2 -> 1.5.3
2016-08-11 17:57:35 +02:00
Michiel Leenaars
b250898855
datefudge: init at 1.2.1
2016-08-09 14:58:16 +02:00
Robert Helgesson
28f17215b9
wsmancli: fix compilation
...
Without this the package build fails with a linking error. Fixes #14872 .
2016-08-07 19:28:51 +02:00
Franz Pletz
a3f6ca6d17
collectd: 5.5.1 -> 5.5.2 (security)
...
Fixes CVE-2016-6254.
2016-08-05 04:07:31 +02:00
Robin Gloster
1b979d8384
Merge remote-tracking branch 'upstream/master' into hardened-stdenv
2016-08-03 13:34:44 +00:00
Tuomas Tynkkynen
21f17d69f6
treewide: Add lots of meta.platforms
...
Build-tested on x86_64 Linux & Mac.
2016-08-02 21:42:43 +03:00
Robin Gloster
1be4907ca2
Merge remote-tracking branch 'upstream/master' into hardened-stdenv
2016-08-02 13:46:36 +00:00
Matthew Justin Bauer
2ae5dbbf3b
acct: only build on linux
2016-08-01 15:12:31 -05:00
Robin Gloster
f222d98746
Merge remote-tracking branch 'upstream/master' into hardened-stdenv
2016-07-25 12:47:13 +00:00
mimadrid
0a9eba2aa4
htop: 2.0.1 -> 2.0.2
2016-07-23 00:03:34 +02:00
Robin Gloster
1f04b4a566
Merge remote-tracking branch 'upstream/master' into hardened-stdenv
2016-07-21 00:56:43 +00:00
Tuomas Tynkkynen
584b667efc
ddrescue: lzip is a nativeBuildInput
2016-07-20 02:38:10 +03:00
Robin Gloster
5185bc1773
Merge remote-tracking branch 'upstream/master' into hardened-stdenv
2016-07-15 14:41:01 +00:00
Kranium Gikos Mendoza
121a8c0646
stress-ng: 0.06.01 -> 0.06.11
2016-07-15 00:06:54 +08:00
joachifm
03a7fa9104
Merge pull request #16840 from womfoo/bump/leatherman-0.7.5-facter-3.1.8
...
Bump leatherman: 0.7.0 -> 0.7.5 and sole dependency facter 3.1.6 -> 3.1.8
2016-07-12 16:20:51 +02:00
Kranium Gikos Mendoza
356b3ae546
facter: 3.1.6 -> 3.1.8
2016-07-10 23:37:05 +08:00
Tobias Geerinckx-Rice
0385abbc70
di: 4.37 -> 4.42; trim meta.description
2016-07-05 09:29:42 +02:00
Joachim Fasting
966c75ef0c
evemu: add meta.platforms
2016-07-05 00:54:12 +02:00
Damien Cassou
0b80e03904
evemu: 2.0.0 -> 2.4.0
2016-07-04 15:19:03 +02:00
Christian Kauhaus
0c0f068f35
cron: fix crontab(5) and cron job PATH
...
Switch off HAVE_SAVED_UIDS since it activates a code path for temporary
privilege dropping which does not work on NixOS.
Vixie-cron's sources ship with two implementations. Unfortunately, the
one activated by HAVE_SAVED_UIDS (using setuid()) does not work on
NixOS. Saved UIDs work only if the program which is using them has the
setuid bit set on its own executable, not if called from a setuid
wrapper (as we do it in NixOS). The other implementation (using
setreuid()) works without problems.
Quote from
<http://stackoverflow.com/questions/8499296/realuid-saved-uid-effective-uid-whats-going-on >:
If you're euid is root and you change the uid, the privileges gets
dropped permanently.If effective user id is not root then saved user
id is never touched and you can regain the root privilege back
anytime you want in your program.
Also extend the default PATH with NixOS-specific bin directories as
vixie-cron's default is not really usable on NixOS.
Re #16518
Closes #16522
2016-07-02 00:09:07 +02:00
Arseniy Seroka
188ecd633e
Merge pull request #16489 from mimadrid/update/fio-2.12
...
fio: 2.9 -> 2.12
2016-06-25 13:37:31 +03:00
mimadrid
49902897f2
fio: 2.9 -> 2.12
2016-06-25 11:06:16 +02:00
Kyle McKean
544d9a7620
collectd: add snmp support
2016-06-23 16:54:28 +02:00
Bjørn Forsman
bd01fad0ed
Captialize meta.description of all packages
...
In line with the Nixpkgs manual.
A mechanical change, done with this command:
find pkgs -name "*.nix" | \
while read f; do \
sed -e 's/description\s*=\s*"\([a-z]\)/description = "\u\1/' -i "$f"; \
done
I manually skipped some:
* Descriptions starting with an abbreviation, a user name or package name
* Frequently generated expressions (haskell-packages.nix)
2016-06-20 13:55:52 +02:00
Benjamin Staffin
68689f4d8e
hiera-eyaml: init at 2.1.0
2016-06-15 20:19:06 -04:00
Joachim Fasting
70c5ab532f
Merge pull request #16110 from womfoo/augeas
...
augeas: 1.2.0 -> 1.5.0
2016-06-13 16:46:08 +02:00
Robin Gloster
8031cba2ab
Merge remote-tracking branch 'upstream/master' into hardened-stdenv
2016-06-10 09:27:04 +00:00
Kranium Gikos Mendoza
cc05622761
augeas: 1.2.0 -> 1.5.0
2016-06-10 10:23:44 +08:00
rushmorem
6e709b180e
storebrowse: mark broken
...
`storebrowse` depends on https://code.google.com/archive/p/gosqlite/
which leads to gosqlite.googlecode.com/hg/sqlite which now 404s.
2016-06-09 22:09:07 +02:00
Kamil Chmielewski
8cd1d4cda5
buildGoPackage: use Go 1.6 by default
2016-06-09 13:08:10 +02:00
Kamil Chmielewski
734d152977
buildGo16Packages: fetchgit -> fetchFromGitHub
2016-06-09 13:08:10 +02:00
Kamil Chmielewski
bbc37e0eb7
Moving from fetchgit generated by go2nix to fetchFromGitHub where rev is
...
a tag
2016-06-09 13:08:10 +02:00
Kamil Chmielewski
7eb671ebcd
no more goPackages
2016-06-09 13:08:00 +02:00
Kamil Chmielewski
9e273d5b29
consul--template: extracted from goPackages
2016-06-09 11:22:02 +02:00
Kamil Chmielewski
abcec97b1e
confd: extracted from goPackages
2016-06-09 11:22:02 +02:00
Tuomas Tynkkynen
bac26e08db
Fix lots of fetchgit hashes (fallout from #15469 )
2016-06-03 17:17:08 +03:00
michael bishop
85b87796ae
runit: fix closure size
2016-06-03 06:46:54 -03:00
Robin Gloster
2d382f3d98
Merge remote-tracking branch 'upstream/master' into hardened-stdenv
2016-05-30 19:39:34 +00:00
Frederik Rietdijk
373455e237
Merge pull request #15613 from womfoo/facter
...
facter: 3.1.5 -> 3.1.6 (add ruby support) and dependency leatherman: 0.4.2 -> 0.7.0
2016-05-28 15:29:31 +02:00
Vladimír Čunát
81039713fa
Merge branch 'master' into staging
...
... to get the systemd update (rebuilding ~7k jobs).
2016-05-26 16:50:22 +02:00
Michael Raskin
cfdf0d5a79
freeipmi: 1.5.1 -> 1.5.2
2016-05-25 16:00:57 +02:00
Vladimír Čunát
0b192a0976
Merge branch 'master' into staging
...
That's to get mesa rebuild from master, as it's nontrivial.
2016-05-23 09:02:10 +02:00
Eelco Dolstra
64f22ddd64
pciutils: 3.4.1 -> 3.5.1
2016-05-22 23:05:25 +02:00
Kranium Gikos Mendoza
ccb3ade7c2
facter: ruby support
2016-05-22 18:44:54 +08:00
Kranium Gikos Mendoza
7c4438dcf9
facter: 3.1.5 -> 3.1.6
2016-05-22 18:44:54 +08:00
Vladimír Čunát
c4661e9643
Merge: make dev output references explicit
...
This is a rebase of most commits from #14766 ,
resolving conflicts and a few other evaluation problems.
2016-05-22 12:09:23 +02:00
Tuomas Tynkkynen
2a73de6e6c
treewide: Make explicit that 'dev' output of openssl is used
2016-05-19 10:02:23 +02:00
Franz Pletz
f8d481754c
Merge remote-tracking branch 'origin/master' into hardened-stdenv
2016-05-18 17:10:02 +02:00
Domen Kožar
b49bf121b8
rename iElectric to domenkozar to match GitHub
2016-05-17 13:00:47 +01:00
Franz Pletz
e98a0bc9e0
Merge pull request #15476 from matthiasbeyer/update-unmaintained
...
Update unmaintained packages
2016-05-16 23:45:11 +02:00
Peter Simons
8e462995ba
Bring my stdenv.lib.maintainers user name in line with my github nick.
2016-05-16 22:49:55 +02:00
Matthias Beyer
5f76761dc2
daemonize: 1.7.6 -> 1.7.7
2016-05-16 16:12:18 +02:00
Vladimír Čunát
e5d40c6fa3
Merge branch 'staging'
...
Hydra is only half-finished, but we'd better get secure glibc fast.
2016-05-16 10:15:28 +02:00
Joachim Fasting
ca730d4452
fio: 2.2.11 -> 2.9
...
This fixes the build against linux 4.4 headers; see
https://hydra.nixos.org/build/35697941/log/raw
Also set `platforms.unix` per what upstream claims.
2016-05-16 01:06:00 +02:00
Michael Raskin
916c6cf1ad
ipmiutil: 2.9.8 -> 2.9.9
2016-05-15 23:49:44 +02:00
Joachim Fasting
a11b0bc515
efivar: fix build against linux 4.4 headers
2016-05-15 19:39:18 +02:00
Joachim Fasting
0a8d1627ec
Revert "efivar: fix build after #15449 "
...
This reverts commit 21d09bcb71
.
2016-05-15 19:30:39 +02:00
Vladimír Čunát
21d09bcb71
efivar: fix build after #15449
...
I don't know why it matters here; the error was:
linux.c:25:24: fatal error: linux/nvme.h: No such file or directory
2016-05-15 18:21:06 +02:00
Tobias Geerinckx-Rice
45f70fcb06
stress-ng: 0.06.00 -> 0.06.01
2016-05-08 19:42:49 +02:00
Tobias Geerinckx-Rice
519d99f975
thinkfan: 0.9.2 -> 0.9.3; add myself as a maintainer
...
CC maintainer @iElectric.
2016-05-08 00:44:49 +02:00
Tobias Geerinckx-Rice
39421df56a
stress-ng: 0.05.25 -> 0.06.00
...
Changes: https://launchpad.net/ubuntu/+source/stress-ng/0.06.00-1 .
2016-05-06 19:17:07 +02:00
Tobias Geerinckx-Rice
d6e4c1b750
thinkfan: install manual, README and examples
...
READMEs usually just waste those precious kilobytes, but both the
manual page and --help output refer to this one quite a bit.
2016-05-04 00:39:51 +02:00
Franz Pletz
4825d4033e
ddrescue: 1.20 -> 1.21
2016-05-03 16:15:20 +02:00
Franz Pletz
b5fdb8585b
di: 4.36 -> 4.37
2016-05-03 16:15:20 +02:00
Franz Pletz
47a7b42d51
collectd: 5.5.0 -> 5.5.1
2016-05-03 16:15:20 +02:00
Tobias Geerinckx-Rice
95aab50e81
efivar: 0.21 -> 0.23
2016-05-03 03:50:13 +02:00
Robin Gloster
c92bca56f8
Merge remote-tracking branch 'upstream/master' into hardened-stdenv
2016-05-02 22:58:02 +00:00
Nikolay Amiantov
7a37ac15b3
runit: fix build
2016-04-30 05:32:28 +03:00
Nikolay Amiantov
bf0a3b4ba8
thermald: 1.4.3 -> 1.5.3
2016-04-30 03:12:34 +03:00
Nikolay Amiantov
938d64f1f3
quote URLs in my packages to ease opening them from urxvt
2016-04-30 03:12:32 +03:00
Tobias Geerinckx-Rice
d51a55366e
stress-ng: 0.05.00 -> 0.05.25
2016-04-29 21:42:35 +02:00
Vladimír Čunát
3748cdc791
awstats: fix build after closure-size merge
2016-04-26 11:15:28 +02:00
Robin Gloster
0fdde5efd0
rowhammer-test.isi686-linux: no Werror for format
2016-04-19 12:33:01 +00:00
Robin Gloster
d020caa5b2
Merge remote-tracking branch 'upstream/master' into hardened-stdenv
2016-04-18 13:49:22 +00:00
Kranium Gikos Mendoza
ca7f93a668
facter: 3.1.3 -> 3.1.5
2016-04-18 01:31:41 +08:00
Luca Bruno
627b7185b9
netdata: fix patch
2016-04-17 11:36:33 +02:00
Luca Bruno
07221cf39f
netdata: patch nonsense when serving static files
2016-04-17 11:16:33 +02:00
Luca Bruno
0876c2f4ac
netdata: init at 1.0.0
2016-04-14 23:43:01 +02:00
Vladimír Čunát
30f14243c3
Merge branch 'master' into closure-size
...
Comparison to master evaluations on Hydra:
- 1255515 for nixos
- 1255502 for nixpkgs
2016-04-10 11:17:52 +02:00
Robin Gloster
3e68106afd
Merge remote-tracking branch 'upstream/master' into hardened-stdenv
2016-04-07 21:52:26 +00:00
Vladimír Čunát
d1df28f8e5
Merge 'staging' into closure-size
...
This is mainly to get the update of bootstrap tools.
Otherwise there were mysterious segfaults:
https://github.com/NixOS/nixpkgs/pull/7701#issuecomment-203389817
2016-04-07 14:40:51 +02:00
Tim Steinbach
158558e091
rsyslog: 8.14.0 -> 8.17.0
2016-04-04 14:31:01 -04:00
Robin Gloster
696d85a62d
Merge remote-tracking branch 'upstream/master' into hardened-stdenv
2016-04-03 11:01:57 +00:00
Peter Simons
90d0b08237
Merge pull request #14371 from pmahoney/skarnet
...
Update skarnet.org packages
2016-04-01 17:59:14 +02:00
Patrick Mahoney
fc1f5d2cf1
set target for darwin binary compat in skarnet.org packages
...
skalibs:
execline:
s6-dns:
s6-networking:
s6-portable-utils:
s6-rc:
s6:
The above software uses the target triplet from `cc -dumpmachine` as a
binary compatibility check. However, on darwin, the output includes the
darwin version number, which leads to build failures against a binary
skalibs package built a different version of darwin than the current
system.
Explicitly setting target ensures code can be compiled against a skalibs
binary built on a different version of darwin.
See http://www.skarnet.org/cgi-bin/archive.cgi?1:mss:623:heiodchokfjdkonfhdph
2016-04-01 10:39:37 -05:00
Patrick Mahoney
e0c225857f
update skarnet.org packages
...
skalibs: 2.4.7.0 -> 2.3.9.0
execline: 2.1.4.0 -> 2.1.4.5
s6: 2.2.1.0 -> 2.2.4.3
s6-rc: 0.0.1.0 -> 0.0.2.1
s6-portable-utils: 2.0.5.2 -> 2.0.5.3
s6-linux-utils: 2.0.2.0 -> 2.0.2.3
s6-dns: 2.0.0.4 -> 2.0.0.7
s6-networking: 2.1.0.1 -> 2.1.0.4
2016-04-01 10:38:58 -05:00
Vladimír Čunát
ab15a62c68
Merge branch 'master' into closure-size
...
Beware that stdenv doesn't build. It seems something more will be needed
than just resolution of merge conflicts.
2016-04-01 10:06:01 +02:00
Franz Pletz
2e08d8234e
Merge remote-tracking branch 'origin/master'
2016-03-31 10:06:30 +02:00
Bob van der Linden
0e882ccf74
hwinfo: 21.12 -> 21.23
2016-03-30 20:06:58 +02:00
Robin Gloster
f60c9df0ba
Merge remote-tracking branch 'upstream/master' into hardened-stdenv
2016-03-28 15:16:29 +00:00
zimbatm
61c3ad7d2b
Merge pull request #14067 from zimbatm/foreman-0.78.0
...
foreman: init at 0.78.0
2016-03-22 23:26:44 +00:00
Mitch Tishmack
db6dff75bd
htop: fix build on darwin
2016-03-21 14:05:01 -05:00
Aneesh Agrawal
16ed322928
htop: fix platforms attribute
...
See comments at
57dd725e85
.
These values are already lists and need to be concatenated together
instead of placed in another list.
2016-03-20 17:27:34 -04:00
zimbatm
57dd725e85
htop: fix supported platforms list
2016-03-20 19:35:59 +00:00
zimbatm
a6c1481c66
foreman: init at 0.78.0
2016-03-19 22:47:52 +00:00
zimbatm
d9e60e4d43
htop: merge both implementations
...
htop 2.0+ is now cross-platform
2016-03-19 22:20:20 +00:00
Lluís Batlle i Rossell
41c05b47a0
Updating ts to 0.7.6.
2016-03-19 12:23:54 +01:00
Sheena Artrip
0bffa2f1a9
libcollectdclient: make client derive from collectd package
...
collectd: split version and name
libcollectdclient: make client derive from collectd package
2016-03-17 23:26:09 -04:00
Robin Gloster
3f45f0948d
Merge remote-tracking branch 'upstream/master' into hardened-stdenv
2016-03-15 01:44:24 +00:00
Lluís Batlle i Rossell
e026b5c243
Adding rowhammer test.
2016-03-11 14:29:56 +01:00
Luca Bruno
370c318eb0
Merge pull request #13812 from obadz/go-upower-notify
...
add go-upower-notify
2016-03-11 12:34:11 +01:00
obadz
71ac0cd55e
yeshup: init at 5461a8f
2016-03-11 11:24:41 +00:00
Vladimír Čunát
6f9fe31b42
awstats: init at 7.4, including a simple service
2016-03-11 10:37:06 +01:00
Thomas Tuegel
3ef7671cea
ncurses: combine $lib and $out outputs
...
The $lib output refers to the terminfo database in $out, which is about
10x larger than the ncurses shared library. Splitting these outputs
saves a small amount of space for any derivations that use the terminfo
database but not the ncurses library, but we do not have evidence that
any such exist.
2016-03-08 11:35:24 -06:00
Vladimír Čunát
09af15654f
Merge master into closure-size
...
The kde-5 stuff still didn't merge well.
I hand-fixed what I saw, but there may be more problems.
2016-03-08 09:58:19 +01:00
Franz Pletz
cb3d27df93
Merge remote-tracking branch 'origin/master' into hardened-stdenv
2016-03-05 18:55:30 +01:00
Franz Pletz
aff1f4ab94
Use general hardening flag toggle lists
...
The following parameters are now available:
* hardeningDisable
To disable specific hardening flags
* hardeningEnable
To enable specific hardening flags
Only the cc-wrapper supports this right now, but these may be reused by
other wrappers, builders or setup hooks.
cc-wrapper supports the following flags:
* fortify
* stackprotector
* pie (disabled by default)
* pic
* strictoverflow
* format
* relro
* bindnow
2016-03-05 18:55:26 +01:00
Emery
d07d94b97c
amtterm: initial package at 1.4
...
https://www.kraxel.org/cgit/amtterm/
2016-03-04 14:47:47 +01:00
Robin Gloster
3b4765c9e5
Merge remote-tracking branch 'upstream/master' into hardened-stdenv
2016-02-28 16:32:57 +00:00
zimbatm
6a518e51dd
Merge pull request #13475 from rimmington/collectd-no-mysql
...
collectd: allow mysql to be null
2016-02-27 22:24:57 +00:00
Rhys
ac94a5d86c
collectd: allow mysql to be null
2016-02-27 12:02:44 +11:00
Robin Gloster
3477e662e6
Merge remote-tracking branch 'upstream/master' into hardened-stdenv
2016-02-27 00:08:08 +00:00
Robin Gloster
87e64f153b
cron: enable pie hardening
2016-02-26 17:27:28 +00:00
Tobias Geerinckx-Rice
d9f5e94bae
proot: 4.0.3 -> 5.1.0
...
New features
------------
* Processes under PRoot now appear with their real names, that is,
they are not renamed ld-linux.so or prooted-... anymore.
* Own ELF loader.
Fixes
-----
* Most bugs related to shebang support -- ie. #! at the beginning of
a program -- were fixed.
* It is now possible to use GDB against multi-threaded programs under
PRoot x86_64 and x86.
* It is possible to execute x86_64 programs from x86 programs again.
* It is possible to use x86 ptrace-based programs (strace, gdb, ...)
under PRoot x86_64 again.
* The loader is now built with the build-id linker option explicitly
disabled. This special section might interfere with loaded
programs.
* The loader can now load relocatable objects that have a predefined
base address.
2016-02-25 16:21:47 +01:00
Tobias Geerinckx-Rice
ebc9ba92d2
proot: generate and install manual page
2016-02-25 16:21:46 +01:00
Robin Gloster
402d57ee8e
bootstrap env: disable stackprotector hardening until gcc >=4.9
2016-02-22 18:32:53 +00:00
Robin Gloster
289599367d
stress-ng: 0.05.00 -> 0.05.18
...
fixes build after broken hash
2016-02-21 10:23:57 +00:00
Robin Gloster
3fead71a0e
facter: remove obsolete PIC handling (default now)
2016-02-21 10:01:22 +00:00
Robin Gloster
cdb220fd6f
rsyslog: turn off format hardening
2016-02-19 21:15:59 +00:00
Frederik Rietdijk
4d06bf70f4
buildPythonApplication: use new function for Python applications
2016-02-19 13:16:41 +01:00
Vladimír Čunát
d039c87984
Merge branch 'master' into closure-size
2016-02-14 08:33:51 +01:00
Robin Gloster
b4e77c34e7
foremost: turn off format hardening
2016-02-10 23:37:25 +00:00
Robin Gloster
5969a59052
Merge remote-tracking branch 'upstream/master' into hardened-stdenv
2016-02-09 16:28:44 +00:00
Charles Strahan
4faeca0cbd
nq: init at 0.1
...
Unix command line queue utility.
2016-02-08 17:28:24 -05:00
Charles Strahan
5691a2a498
xe: init at 0.5
...
Simple xargs and apply replacement.
2016-02-08 17:27:44 -05:00
Robin Gloster
371b57a716
lr: init at 0.2
2016-02-08 16:30:29 +00:00
Robin Gloster
49d77a685f
gdmap: turn off format hardening
2016-02-07 20:43:42 +00:00
Vladimír Čunát
ae74c356d9
Merge recent 'staging' into closure-size
...
Let's get rid of those merge conflicts.
2016-02-03 16:57:19 +01:00
Vladimír Čunát
2cc537bd06
Merge #11597 : various multiple-output fixes
2016-01-28 13:05:30 +01:00
Alexander V. Nikolaev
61020943d1
syslog-ng: add explicit pcre build dependency
2016-01-27 15:37:19 +02:00
Tobias Geerinckx-Rice
ac33b4724a
More version attribute tidying where maintainers |= nckx
2016-01-25 20:08:34 +01:00
Tobias Geerinckx-Rice
9fb8020e4e
Add version attribute where maintainers |= nckx
...
This will probably be mandatory soon, and is a step in the right
direction. Removes the deprecated meta.version, and move some meta
sections to the end of the file where I should have put them in
the first place.
2016-01-25 17:35:21 +01:00
Tuomas Tynkkynen
d91c7347d1
treewide: Mass replace 'openssl}/lib' to refer the 'out' output
2016-01-24 10:03:38 +02:00
Tuomas Tynkkynen
8eb5d7d037
treewide: Mass replace 'ncurses}/lib' to refer the 'lib' output
2016-01-24 10:03:38 +02:00
Vladimír Čunát
716aac2519
Merge branch 'staging' into closure-size
2016-01-19 09:55:31 +01:00
Vladimír Čunát
36e7b376eb
pciutils: minor update 3.4.0 -> 3.4.1
2016-01-07 00:17:59 +01:00
Arseniy Seroka
16223a4c65
Merge pull request #12057 from womfoo/facter
...
facter: 3.0.2 -> 3.1.3
2016-01-01 20:54:38 +03:00
Michael Raskin
247c419427
ipmiutil: 2.9.6 -> 2.9.8
2016-01-01 12:30:17 +03:00
Kranium Gikos Mendoza
6c34b9c2ad
facter: 3.0.2 -> 3.1.3
2016-01-01 15:47:44 +08:00