Commit graph

10996 commits

Author SHA1 Message Date
Domen Kožar
72d3ce1431 pythonPackages.eggdeps: disable tests, they've been failing for ages and author is not responding 2014-02-22 18:29:16 +01:00
Matej Cotman
0df7152c8f twmn: add twmn to all-packages.nix 2014-02-22 18:17:19 +01:00
Ricardo Correia
39fbd8f4fb Merge pull request #1771 from thoughtpolice/grsec-tools
grsecurity: add gradm, paxctl, and pax-utils (take #2)
2014-02-22 18:14:57 +01:00
Matej Cotman
e07c7d233b add matejc as maintainer 2014-02-22 18:11:18 +01:00
Matej Cotman
e310dd1774 searx: new package 2014-02-22 18:11:18 +01:00
Vladimír Čunát
351f704091 Merge x-updates into master
There's a major dbus bump (1.6 -> 1.8), and various minor fixes and updates.
2014-02-22 11:28:51 +01:00
Vladimír Čunát
a35d4a9d4e unstable job: don't depend on glib-tested yet (fails) 2014-02-22 10:38:13 +01:00
Peter Simons
6522d4254f haskell-primitive: update to version 0.5.2.1 2014-02-22 09:19:19 +01:00
Peter Simons
864db9c088 haskell-HTTP: update to version 4000.2.11 2014-02-22 09:19:18 +01:00
Domen Kožar
269955a521 pythonPackages.psycopg2: 2.5.1 -> 2.5.2 2014-02-21 23:46:56 +01:00
Peter Simons
5306d974ce haskell-aeson-0.7.x: fix build with older versions of ByteString
Closes <https://github.com/bos/aeson/issues/185>.
Closes <https://github.com/ekmett/lens/issues/397>.
2014-02-21 23:29:33 +01:00
Domen Kožar
40b8b3206e fix remaining broken python packages due to refactoring 2014-02-21 23:27:06 +01:00
Austin Seipp
4631a65c43 grsecurity: add pax-utils-0.7
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-02-21 13:17:56 -06:00
Austin Seipp
c2e4ccd4ad grsecurity: add paxctl-0.7
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-02-21 13:17:53 -06:00
Austin Seipp
f1459cd4b0 grsecurity: add gradm-3.0-201401291757
This also ensures the appropriate udev rules are installed.

Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-02-21 13:14:11 -06:00
Ricardo Correia
308015e213 Merge pull request #1801 from thoughtpolice/kernel-grsec
kernel: stable updates, grsecurity patch updates
2014-02-21 19:23:49 +01:00
Domen Kožar
368839c703 Merge pull request #1467 from iElectric/buildPythonPackage-refactor
buildPythonPackage refactoring
2014-02-21 18:33:48 +01:00
Domen Kožar
f1db57f1fe buildPythonPackage: fix more borken packages 2014-02-21 18:29:57 +01:00
Domen Kožar
68a5b5e5fb add xarchiver: GTK+2 only frontend to 7z,zip,rar,tar,bzip2, gzip,arj, lha, rpm and deb (open and extract only) 2014-02-21 13:19:25 +01:00
Domen Kožar
0ca4f087b3 Merge pull request #1797 from lethalman/empathy
new empathy, folks and clutter-gst packages, with related lib changes
2014-02-21 12:56:51 +01:00
Luca Bruno
3991f590f4 empathy: new package
Messaging program which supports text, voice, video chat,
and file transfers over many different protocols

https://wiki.gnome.org/Apps/Empathy
2014-02-21 11:47:19 +01:00
Luca Bruno
9f5beec66f clutter-gst: new package 2014-02-21 09:52:31 +01:00
Austin Seipp
18f65f3640 grsecurity: stable/testing updates
- stable:  3.0-3.2.55-201402192249 -> 3.0-3.2.55-201402201903
  - testing: 3.0-3.13.3-201402192252 -> 3.0-3.13.4-201402201908

Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-02-20 20:21:16 -06:00
cillianderoiste
f47d6a1314 Merge pull request #1792 from larkery/davmail-and-lxappearance
Add lxappearance and davmail
2014-02-20 23:08:04 +01:00
Vladimír Čunát
ae5d8f6768 Merge master into x-updates 2014-02-20 20:55:31 +01:00
Peter Simons
676f44eb04 Merge pull request #1790 from thoughtpolice/checksec
checksec: version 1.5
2014-02-20 12:03:24 +01:00
Austin Seipp
7411fabd3e checksec: version 1.5
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-02-20 04:26:17 -06:00
Tom Hinton
f6ba040bdc Add me to maintainers list
Add a derivation for davmail
Add a derivation for lxappearance
Add both new derivations to all-packages
2014-02-20 09:49:50 +00:00
Domen Kožar
c72d59881f remove unneeded pytest test skip 2014-02-20 01:19:16 +01:00
Domen Kožar
fae6079a01 adopt rest of the packages that were failing with the buildPythonPackage changes 2014-02-20 01:19:15 +01:00
Domen Kožar
bf5d6fb9b1 Refactor buildPythonPackage to modularize building process.
Before we used `easy_install` command to handle installation
in one shot, now this is split into two phases:

 - buildPhase: python setup.py build
 - installPhase: python setup.py install

Each of those commands have the ability to pass extra
parameters through buildPythonPackage parameters as
`setupPyInstallFlags` and `setupPyBuildFlags`.

Phases now correctly execute post/pre hooks.

In configurePhase we inject setuptools dependency before distutils
is imported to apply monkeypatching by setuptools that is needed
for special features to apply.

We don't have to reorder default phases anymore, as test
phase comes after build and that works.

I rewrote offineDistutils into distutils-cfg with a bit cleaner
syntax and ability to specify extraCfg to the config file.

Plone packages are failing and garbas said he will adopt them to
the new functions. The rest of the packages I fixed and these commits
shouldn't break any package (according to my testings) and they introduce
16 new jobs and fix 38 that were broken before.
2014-02-20 01:19:15 +01:00
Domen Kožar
e9923c6499 pythonPackages: update a bunch of them 2014-02-20 01:19:15 +01:00
Domen Kožar
6cbc1d554f remove unused setuptools/site.nix 2014-02-20 01:19:14 +01:00
Cillian de Róiste
77041cbf45 linuxsampler: fix the build by using bison2 2014-02-19 23:50:24 +01:00
Jaka Hudoklin
5caaa5e0ba pythonPackages: fix and upate graphite, carbon and whisper
Twisted needed downgrade for carbon to start
2014-02-19 16:42:12 +01:00
Eelco Dolstra
7a51e17775 Fix updating of the tarball mirror 2014-02-19 13:58:42 +01:00
Vladimír Čunát
dcf6cbf5b3 glib: add -tested variant, also to the unstable job
Replaces #1753.
2014-02-18 20:27:23 +01:00
Peter Simons
d62001d049 Merge pull request #1768 from klao/nc-indicators
Add nc-indicators-0.1 Haskell package
2014-02-18 18:23:37 +01:00
Sander van der Burg
70798243a2 titaniumsdk: Add 3.2 SDK option 2014-02-18 16:34:34 +01:00
Domen Kožar
810eff6087 Merge pull request #1769 from lethalman/epiphany
Epiphany: new package
2014-02-18 09:10:30 +01:00
Evgeny Egorochkin
64ddd86714 perlPackages.ExceptionClass: update from 1.30 to 1.37 2014-02-18 04:22:27 +02:00
Moritz Ulrich
53b6744646 teensy-loader: New package
Firmware uploader for the teensy microcontroller board family.
2014-02-18 01:02:47 +01:00
Luca Bruno
92f9949e09 epiphany: new package
WebKit based web browser for GNOME

https://wiki.gnome.org/Apps/Epiphany
2014-02-18 00:13:14 +01:00
Mihaly Barasz
668e81ad5a Add nc-indicators-0.1 Haskell package 2014-02-17 23:06:26 +01:00
Bjørn Forsman
493adc9227 Rename 'gnome-terminator' to 'terminator'
Align the package name with what other distros call it.

Other distros: Fedora, Debian, Archlinux, OpenSUSE, Mageia, Slackware
(and probably more).
2014-02-17 20:56:03 +01:00
Bjørn Forsman
0fa9dca362 gnome-terminator: add missing dependencies (for extra features)
Add 'keybinder' and 'python-notify' as dependencies. Fixes this:

  $ terminator
  [...]
  Warning: python-keybinder is not installed. This means the hide_window shortcut will be unavailable
  [...]
  ActivityWatch plugin unavailable: please install python-notify
2014-02-17 20:53:55 +01:00
Bjørn Forsman
1d1667b7b0 keybinder: new package
keybinder is a library for registering global keyboard shortcuts.
keybinder works with GTK-based applications using the X Window System.

https://github.com/engla/keybinder/
2014-02-17 20:50:22 +01:00
Ricardo Correia
09b2365806 Merge pull request #1764 from thoughtpolice/grsec
linux-3.2 & grsecurity updates
2014-02-17 18:32:08 +01:00
Peter Simons
6e28b6ebb8 haskell-text-stream-decode: add version 0.1.0.3 2014-02-17 16:41:08 +01:00
Peter Simons
aaa4d951dd haskell-enclosed-exceptions: add version 1.0.0.1 2014-02-17 16:41:08 +01:00