Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: f64d21da21e0
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c3f6b46db6b6
Choose a head ref
  • 5 commits
  • 11 files changed
  • 1 contributor

Commits on Jun 3, 2019

  1. pylint: remove pyenchant dependency

    pyenchant is broken on macOS and also no longer actively developed.
    pylint has made this an optional dependency that is no longer part of the
    default test suite.
    
    See this issue for more discussion:
    
    pylint-dev/pylint#1900
    matthewbauer committed Jun 3, 2019
    Copy the full SHA
    eb0d5fc View commit details
  2. Copy the full SHA
    be705d8 View commit details
  3. enchant: 1.6.1 -> 2.2.3

    Moves default enchant to 2.2.3. Release url:
    
    https://github.com/AbiWord/enchant/releases/tag/v2.0.0
    
    Mostly need to verify no breakage occurs for packages using enchant.
    matthewbauer committed Jun 3, 2019
    Copy the full SHA
    3e96aeb View commit details
  4. treewide: handle enchant = enchant2

    patch or provide backup to enchant1 where necessary
    matthewbauer committed Jun 3, 2019
    Copy the full SHA
    ba76fa9 View commit details
  5. Merge pull request #60348 from matthewbauer/enchant-updates

    enchant: 1.6.1 -> 2.2.3
    matthewbauer authored Jun 3, 2019
    Copy the full SHA
    c3f6b46 View commit details
4 changes: 2 additions & 2 deletions pkgs/applications/networking/irc/hexchat/default.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{ stdenv, fetchFromGitHub, pkgconfig, gtk2, lua, perl, python2
, libtool, pciutils, dbus-glib, libcanberra-gtk2, libproxy
, libsexy, enchant, libnotify, openssl, intltool
, libsexy, enchant1, libnotify, openssl, intltool
, desktop-file-utils, hicolor-icon-theme
, autoconf, automake, autoconf-archive
}:
@@ -30,7 +30,7 @@ stdenv.mkDerivation rec {

#hexchat and heachat-text loads enchant spell checking library at run time and so it needs to have route to the path
patchPhase = ''
sed -i "s,libenchant.so.1,${enchant}/lib/libenchant.so.1,g" src/fe-gtk/sexy-spell-entry.c
sed -i "s,libenchant.so.1,${enchant1}/lib/libenchant.so.1,g" src/fe-gtk/sexy-spell-entry.c
'';

preConfigure = ''
4 changes: 2 additions & 2 deletions pkgs/desktops/gnome-2/default.nix
Original file line number Diff line number Diff line change
@@ -47,9 +47,9 @@ lib.makeScope pkgs.newScope (self: with self; {

libbonoboui = callPackage ./platform/libbonoboui { };

gtkhtml = callPackage ./platform/gtkhtml { };
gtkhtml = callPackage ./platform/gtkhtml { enchant = pkgs.enchant1; };

gtkhtml4 = callPackage ./platform/gtkhtml/4.x.nix { };
gtkhtml4 = callPackage ./platform/gtkhtml/4.x.nix { enchant = pkgs.enchant1; };

gtkglext = callPackage ./platform/gtkglext { };

4 changes: 2 additions & 2 deletions pkgs/desktops/gnome-2/platform/gtkhtml/4.x.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{ stdenv, fetchurl, pkgconfig, gtk3, intltool,
GConf, enchant, isocodes, gnome_icon_theme, gsettings-desktop-schemas }:
{ stdenv, fetchurl, pkgconfig, gtk3, intltool, fetchpatch
, GConf, enchant, isocodes, gnome_icon_theme, gsettings-desktop-schemas }:

stdenv.mkDerivation rec {
version = "4.10.0";
2 changes: 1 addition & 1 deletion pkgs/desktops/gnome-3/default.nix
Original file line number Diff line number Diff line change
@@ -347,7 +347,7 @@ lib.makeScope pkgs.newScope (self: with self; {

pidgin-im-gnome-shell-extension = callPackage ./misc/pidgin { };

gtkhtml = callPackage ./misc/gtkhtml { };
gtkhtml = callPackage ./misc/gtkhtml { enchant = pkgs.enchant1; };

pomodoro = callPackage ./misc/pomodoro { };

2 changes: 1 addition & 1 deletion pkgs/desktops/gnome-3/misc/gtkhtml/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, pkgconfig, gtk3, intltool
{ stdenv, fetchurl, pkgconfig, gtk3, intltool, fetchpatch
, gnome3, enchant, isocodes, gsettings-desktop-schemas }:

stdenv.mkDerivation rec {
File renamed without changes.
6 changes: 3 additions & 3 deletions pkgs/development/libraries/gtkspell/3.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{stdenv, fetchurl, gtk3, aspell, pkgconfig, enchant2, isocodes, intltool, gobject-introspection, vala}:
{stdenv, fetchurl, gtk3, aspell, pkgconfig, enchant, isocodes, intltool, gobject-introspection, vala}:

stdenv.mkDerivation rec {
name = "gtkspell-${version}";
@@ -12,8 +12,8 @@ stdenv.mkDerivation rec {
};

nativeBuildInputs = [ pkgconfig intltool gobject-introspection vala ];
buildInputs = [ aspell gtk3 enchant2 isocodes ];
propagatedBuildInputs = [ enchant2 ];
buildInputs = [ aspell gtk3 enchant isocodes ];
propagatedBuildInputs = [ enchant ];

configureFlags = [
"--enable-introspection"
5 changes: 3 additions & 2 deletions pkgs/development/python-modules/pyenchant/default.nix
Original file line number Diff line number Diff line change
@@ -13,10 +13,10 @@ buildPythonPackage rec {
sha256 = "fc31cda72ace001da8fe5d42f11c26e514a91fa8c70468739216ddd8de64e2a0";
};

propagatedBuildInputs = [ pkgs.enchant ];
propagatedBuildInputs = [ pkgs.enchant1 ];

patchPhase = let
path_hack_script = "s|LoadLibrary(e_path)|LoadLibrary('${pkgs.enchant}/lib/' + e_path)|";
path_hack_script = "s|LoadLibrary(e_path)|LoadLibrary('${pkgs.enchant1}/lib/' + e_path)|";
in ''
sed -i "${path_hack_script}" enchant/_enchant.py
@@ -31,6 +31,7 @@ buildPythonPackage rec {
description = "pyenchant: Python bindings for the Enchant spellchecker";
homepage = https://pythonhosted.org/pyenchant/;
license = licenses.lgpl21;
badPlatforms = [ "x86_64-darwin" ];
};

}
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/pylint/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{ stdenv, lib, buildPythonPackage, fetchPypi, python, pythonOlder, astroid,
isort, mccabe, pytest, pytestrunner, pyenchant }:
isort, mccabe, pytest, pytestrunner }:

buildPythonPackage rec {
pname = "pylint";
@@ -14,7 +14,7 @@ buildPythonPackage rec {

nativeBuildInputs = [ pytestrunner ];

checkInputs = [ pytest pyenchant ];
checkInputs = [ pytest ];

propagatedBuildInputs = [ astroid isort mccabe ];

4 changes: 2 additions & 2 deletions pkgs/tools/inputmethods/fcitx/unwrapped.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{ stdenv, fetchurl, pkgconfig, cmake, intltool, gettext
, libxml2, enchant, isocodes, icu, libpthreadstubs
, libxml2, enchant1, isocodes, icu, libpthreadstubs
, pango, cairo, libxkbfile, libXau, libXdmcp, libxkbcommon
, dbus, gtk2, gtk3, qt4, extra-cmake-modules
, xkeyboard_config, pcre, libuuid
@@ -69,7 +69,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ cmake extra-cmake-modules intltool pkgconfig pcre ];

buildInputs = [
xkeyboard_config enchant gettext isocodes icu libpthreadstubs libXau libXdmcp libxkbfile
xkeyboard_config enchant1 gettext isocodes icu libpthreadstubs libXau libXdmcp libxkbfile
libxkbcommon libxml2 dbus cairo gtk2 gtk3 pango qt4 libuuid
];

12 changes: 8 additions & 4 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -10197,9 +10197,10 @@ in

elastix = callPackage ../development/libraries/science/biology/elastix { };

enchant = callPackage ../development/libraries/enchant { };
enchant1 = callPackage ../development/libraries/enchant/1.x.nix { };

enchant2 = callPackage ../development/libraries/enchant/2.x.nix { };
enchant = enchant2;

enet = callPackage ../development/libraries/enet { };

@@ -10797,7 +10798,7 @@ in

gtksourceviewmm4 = callPackage ../development/libraries/gtksourceviewmm/4.x.nix { };

gtkspell2 = callPackage ../development/libraries/gtkspell { };
gtkspell2 = callPackage ../development/libraries/gtkspell { enchant = enchant1; };

gtkspell3 = callPackage ../development/libraries/gtkspell/3.nix { };

@@ -13277,7 +13278,7 @@ in

subdl = callPackage ../applications/video/subdl { };

subtitleeditor = callPackage ../applications/video/subtitleeditor { };
subtitleeditor = callPackage ../applications/video/subtitleeditor { enchant = enchant1; };

suil = callPackage ../development/libraries/audio/suil { };

@@ -20991,7 +20992,9 @@ in

xmind = callPackage ../applications/misc/xmind { };

xneur = callPackage ../applications/misc/xneur { };
xneur = callPackage ../applications/misc/xneur {
enchant = enchant1;
};

gxneur = callPackage ../applications/misc/gxneur {
inherit (gnome2) libglade GConf;
@@ -21002,6 +21005,7 @@ in
inherit (gnome2) libglade scrollkeeper;
gtkhtml = gnome2.gtkhtml4;
python = python27;
enchant = enchant1;
};

xournal = callPackage ../applications/graphics/xournal {