Commit graph

1851 commits

Author SHA1 Message Date
Eelco Dolstra 205aa93e92 * libxml2 updated to 2.7.3.
svn path=/nixpkgs/branches/stdenv-updates/; revision=13972
2009-02-03 16:14:23 +00:00
Eelco Dolstra debebd8eeb * meta-environment.org seems down.
svn path=/nixpkgs/branches/stdenv-updates/; revision=13970
2009-02-03 10:39:04 +00:00
Eelco Dolstra ef00178834 * Doh.
svn path=/nixpkgs/branches/stdenv-updates/; revision=13967
2009-02-03 08:48:27 +00:00
Eelco Dolstra 37b9b420cb * Sync with trunk. Back to gtkLibs214.
svn path=/nixpkgs/branches/stdenv-updates/; revision=13960
2009-02-02 15:44:04 +00:00
Eelco Dolstra e8358099f5 * Doh.
svn path=/nixpkgs/branches/stdenv-updates/; revision=13959
2009-02-02 15:41:13 +00:00
Eelco Dolstra a68773a3ea * GNU m4: `make check' fails on Darwin:
===
Checking ./219.improved_f
Checking ./stackovf.test
Stack soft limit set to 300K
Failure - m4 aborted unexpectedly
Output from m4:
m4: internal error detected; please report this bug to <bug-m4@gnu.org>: Bus error

Skipped checks were:
  ./116.changeword ./117.changeword ./118.changeword ./119.changeword ./120.changeword ./121.changeword
Failed checks were:
  ./stackovf.test
make[2]: *** [check] Error 1
make[1]: *** [check-recursive] Error 1
===

  So disable the check on Darwin for now.

svn path=/nixpkgs/branches/stdenv-updates/; revision=13958
2009-02-02 15:34:59 +00:00
Ludovic Courtès 2a89f2ea99 Add Pangomm 2.14.1, omitted in previous commits.
svn path=/nixpkgs/trunk/; revision=13953
2009-02-02 14:29:40 +00:00
Eelco Dolstra 436e676cdd * pangomm is missing.
svn path=/nixpkgs/branches/stdenv-updates/; revision=13952
2009-02-02 13:15:13 +00:00
Eelco Dolstra 79a039080c svn path=/nixpkgs/trunk/; revision=13951 2009-02-02 12:44:20 +00:00
Michael Raskin 9dcefd67ec Fix hash for JDK: was duplicate
svn path=/nixpkgs/trunk/; revision=13950
2009-02-02 12:42:00 +00:00
Eelco Dolstra a422ef08e2 svn path=/nixpkgs/branches/stdenv-updates/; revision=13947 2009-02-01 21:46:11 +00:00
Eelco Dolstra 9f3a83f247 svn path=/nixpkgs/branches/stdenv-updates/; revision=13944 2009-02-01 21:30:27 +00:00
Eelco Dolstra c9b6da363f * Hack to prevent a dependency in Glibc on the stdenv-linux bootstrap
tools.

svn path=/nixpkgs/branches/stdenv-updates/; revision=13943
2009-02-01 21:29:39 +00:00
Eelco Dolstra 15258b7f50 * Disable make check.
svn path=/nixpkgs/branches/stdenv-updates/; revision=13937
2009-02-01 21:21:21 +00:00
Eelco Dolstra 0baf685191 * mpfr 2.4.0.
svn path=/nixpkgs/branches/stdenv-updates/; revision=13935
2009-02-01 21:19:24 +00:00
Armijn Hemel 4fc2a64242 version bump to 0.0.22
svn path=/nixpkgs/trunk/; revision=13927
2009-02-01 18:51:15 +00:00
Marc Weber f47649b3db update jre/jdk to 1.6.0_11 cause _6 has known bugs (-> Eclipse FAQ)
svn path=/nixpkgs/trunk/; revision=13924
2009-01-31 22:03:18 +00:00
Eelco Dolstra c584bb878a * Sync with trunk.
svn path=/nixpkgs/branches/stdenv-updates/; revision=13903
2009-01-29 16:33:02 +00:00
Eelco Dolstra 112c86e719 * Typo in the URLs.
svn path=/nixpkgs/branches/stdenv-updates/; revision=13891
2009-01-28 13:44:44 +00:00
Eelco Dolstra da4fb573a7 * Added ATerm 2.8. Also removed some old versions and patches that
were no longer in use.

* A patch for compiling the ATerm library with GCC 4.3.  Without it,
  the code for resizing ATerm tables gets stuck in an infinite loop
  (http://bugzilla.sen.cwi.nl:8080/show_bug.cgi?id=841).  The problem
  is in this bit of code in hash.c, which tries to dynamically figure
  out the maximum signed integer:

    long try_long_max;
    long long_max;
    long delta;

    try_long_max = 1;
    do {
      long_max = try_long_max;
      try_long_max = long_max * 2;
    } while (try_long_max > 0);

  At -O2, GCC 4.3 determines that 1 * 2 * 2 * ... can never be <= 0,
  and so it optimises this into a 1-instruction infinite loop:

    0x0805a782 <keyPut+1282>: jmp  0x805a782 <keyPut+1282>

  Quite beautiful really. ;-)

  The fix is to use the LONG_MAX macro instead.

svn path=/nixpkgs/branches/stdenv-updates/; revision=13888
2009-01-27 17:46:07 +00:00
Nicolas Pierron 507ab31cbe Add ragel: A state machine compiler.
svn path=/nixpkgs/trunk/; revision=13881
2009-01-27 14:00:54 +00:00
Eelco Dolstra cfda61c7c6 * GCC 4.3.3, just in time too :-)
svn path=/nixpkgs/branches/stdenv-updates/; revision=13877
2009-01-27 11:53:35 +00:00
Lluís Batlle i Rossell c5a95e894e Adding opencascade 6.4.0.
svn path=/nixpkgs/trunk/; revision=13874
2009-01-27 08:14:27 +00:00
Lluís Batlle i Rossell 6c2c6d7fe4 Fixing commits I did, which didn't follow well the writing rules.
svn path=/nixpkgs/trunk/; revision=13868
2009-01-25 21:03:07 +00:00
Ludovic Courtès 52474a1f6c C++ bindings of the GTK+ 2.14 libraries.
svn path=/nixpkgs/trunk/; revision=13862
2009-01-25 17:01:29 +00:00
Lluís Batlle i Rossell fb1fd1115f Adding Intel ACPI Compiler (trying to build virtualbox)
svn path=/nixpkgs/trunk/; revision=13845
2009-01-25 14:31:42 +00:00
Lluís Batlle i Rossell e44ec52b45 Adding dev86 (I'll try to get virtualbox built)
svn path=/nixpkgs/trunk/; revision=13844
2009-01-25 14:31:24 +00:00
Ludovic Courtès e8847fd2e7 Cairo: Arrange so that Freetype `-I' flags are propagated.
svn path=/nixpkgs/trunk/; revision=13843
2009-01-25 11:50:29 +00:00
Ludovic Courtès db7f0d3ef5 Cairo: Propagate Freetype, since public headers include it.
svn path=/nixpkgs/trunk/; revision=13837
2009-01-24 22:09:14 +00:00
Ludovic Courtès f5b2036a60 Cairomm 1.7.2.
svn path=/nixpkgs/trunk/; revision=13836
2009-01-24 21:55:16 +00:00
Ludovic Courtès 0b6168c587 Cairo 1.8.6.
svn path=/nixpkgs/trunk/; revision=13835
2009-01-24 21:32:25 +00:00
Lluís Batlle i Rossell aad3e77b44 Adding cdecl-2.5
svn path=/nixpkgs/trunk/; revision=13833
2009-01-24 21:01:27 +00:00
Lluís Batlle i Rossell 50d8df47b2 Making wxGTK-2.8 to provide wxGLCanvas. Adding dependence on mesa.
svn path=/nixpkgs/trunk/; revision=13831
2009-01-24 21:00:53 +00:00
Ludovic Courtès 402a4e3b3a GNU libgcrypt 1.4.4.
svn path=/nixpkgs/trunk/; revision=13828
2009-01-23 15:59:31 +00:00
Ludovic Courtès 7137c6dea8 libcanberra: Use the right GTK+ version, use GThread as well, disable OSS support (recommended).
svn path=/nixpkgs/trunk/; revision=13822
2009-01-22 22:34:06 +00:00
Ludovic Courtès 3e20a89b3d GTK+ 2.14.7 and companion libraries.
svn path=/nixpkgs/trunk/; revision=13821
2009-01-22 22:32:02 +00:00
Eelco Dolstra 581af921ea * Latest OpenSSL, Curl.
svn path=/nixpkgs/branches/stdenv-updates/; revision=13817
2009-01-21 14:11:22 +00:00
Ludovic Courtès 269f914ab7 Add `libcanberra'.
svn path=/nixpkgs/trunk/; revision=13814
2009-01-20 09:50:15 +00:00
Ludovic Courtès 5f8017b492 libvorbis: Propagate `libogg'.
svn path=/nixpkgs/trunk/; revision=13813
2009-01-20 09:50:05 +00:00
Eelco Dolstra 808bf6d34a * Make the nested output patch in GNU Make runtime configurable (by
setting the NIX_INDENT_MAKE variable; disabled by default) so we
  don't need a separate gnumakeNix package.

svn path=/nixpkgs/branches/stdenv-updates/; revision=13807
2009-01-19 18:49:58 +00:00
Eelco Dolstra f7ad184041 * ncurses: don't do make check because it doesn't have one.
svn path=/nixpkgs/branches/stdenv-updates/; revision=13804
2009-01-19 11:01:20 +00:00
Eelco Dolstra d8f6e06ae4 * Latest gmp, mpfr libraries.
svn path=/nixpkgs/branches/stdenv-updates/; revision=13803
2009-01-19 10:45:46 +00:00
Andres Löh 8a1fb2e075 Updated URIs of old ghc-6.8.2.
svn path=/nixpkgs/trunk/; revision=13802
2009-01-18 14:04:34 +00:00
Ludovic Courtès 8bf27945c6 GNU aDNS: Disable the test suite for now.
svn path=/nixpkgs/trunk/; revision=13799
2009-01-17 20:19:54 +00:00
Eelco Dolstra c1579d2e78 * stdenv branch: synced with the trunk.
svn path=/nixpkgs/branches/stdenv-updates/; revision=13785
2009-01-16 10:59:27 +00:00
Marc Weber e6ab06e3fa python wrapper: install pydoc as well
svn path=/nixpkgs/trunk/; revision=13767
2009-01-14 16:23:17 +00:00
Peter Simons 6fb297513a Committing Lluís Batlle's submissions from mailing list posting
<45219fb00901110456i6f21db35tbd1894eaea2146ff@mail.gmail.com>:

 * nixpkgs-ccrypt-1.7-new.patch
 * nixpkgs-cmake-add-ccmake.patch
 * nixpkgs-cpufrequtils-005-new.patch
 * nixpkgs-dwm-5.1-fix.patch
 * nixpkgs-freeimage-3.11.0-new.patch
 * nixpkgs-proxychains-3.1-new.patch
 * nixpkgs-psi-to-0.12.patch
 * nixpkgs-skype-to-2.0.0.72.patch
 * nixpkgs-truecrypt-6.1a-fix.patch
 * nixpkgs-vxl-1.11.0-new.patch
 * nixpkgs-xkb-popular-esperanto-symbols.patch
 * nixpkgs-xorg-via-video-fix.patch

svn path=/nixpkgs/trunk/; revision=13751
2009-01-12 21:12:07 +00:00
Ludovic Courtès 0d579bfcda Libgpg-error 1.7.
svn path=/nixpkgs/trunk/; revision=13748
2009-01-12 19:13:34 +00:00
Ludovic Courtès c50a4146c6 Libassuan 1.0.5.
svn path=/nixpkgs/trunk/; revision=13747
2009-01-12 19:06:35 +00:00
Ludovic Courtès c18603c3b3 GDB: Use the system Readline library.
svn path=/nixpkgs/trunk/; revision=13746
2009-01-12 18:06:32 +00:00