Merge branch 'master' into staging-next

Hydra: ?compare=1468896
This commit is contained in:
Vladimír Čunát
2018-07-14 18:15:30 +02:00
721 changed files with 20508 additions and 20874 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
{ stdenv, fetchFromGitHub, cmake, boost165, pkgconfig, guile,
eigen3_3, libpng, python, mesa_glu, qt4, openexr, openimageio,
eigen3_3, libpng, python, libGLU, qt4, openexr, openimageio,
opencolorio, xercesc, ilmbase, osl, seexpr
}:
@@ -17,7 +17,7 @@ in stdenv.mkDerivation rec {
};
buildInputs = [
cmake pkgconfig boost_static guile eigen3_3 libpng python
mesa_glu qt4 openexr openimageio opencolorio xercesc
libGLU qt4 openexr openimageio opencolorio xercesc
osl seexpr
];
@@ -1,7 +1,7 @@
{ stdenv, fetchFromGitHub, cmake, boost165, pkgconfig, python35
, tbb, openimageio, libjpeg, libpng, zlib, libtiff, ilmbase
, freetype, openexr, libXdmcp, libxkbcommon, epoxy, at-spi2-core
, dbus, doxygen, qt5, c-blosc, mesa_glu, gnome3, pcre
, dbus, doxygen, qt5, c-blosc, libGLU, gnome3, pcre
, bison, flex, libpthreadstubs, libX11
, embree2, makeWrapper, gsettings_desktop_schemas, glib
, withOpenCL ? true , opencl-headers, ocl-icd, opencl-clhpp
@@ -27,7 +27,7 @@ in stdenv.mkDerivation rec {
buildInputs =
[ embree2 pkgconfig cmake zlib boost_static libjpeg
libtiff libpng ilmbase freetype openexr openimageio
tbb qt5.full c-blosc mesa_glu pcre bison
tbb qt5.full c-blosc libGLU pcre bison
flex libX11 libpthreadstubs python35 libXdmcp libxkbcommon
epoxy at-spi2-core dbus doxygen
# needed for GSETTINGS_SCHEMAS_PATH
+7 -6
View File
@@ -1,13 +1,14 @@
{ stdenv, fetchgit, pkgconfig, libpng, zlib, lcms2 }:
{ stdenv, fetchFromGitHub, pkgconfig, libpng, zlib, lcms2 }:
stdenv.mkDerivation rec {
name = "pngquant-${version}";
version = "2.11.7";
version = "2.12.1";
src = fetchgit {
url = "https://www.github.com/pornel/pngquant.git";
rev = "refs/tags/${version}";
sha256 = "1qr5qr2wznzp0v9xwyz4r3982rcm9kys913w8gwmv7qd1akvx2qh";
src = fetchFromGitHub {
owner = "pornel";
repo = "pngquant";
rev = version;
sha256 = "0jdvry3kvmmxcgwf5a3zbfz0idl6yl3700ag7pf8sk4lg4qp0llp";
fetchSubmodules = true;
};
+5
View File
@@ -11,6 +11,11 @@ stdenv.mkDerivation rec {
sha256 = "147jkgvm9n6mbkl6ndqnm9x74x5y9agbxkfwj0jrw6yxyhxx2cdd";
};
#
# Turn on "-rdb" option (REALLYDELAYBIND) by default to ensure compatibility with gs-9.22
#
patches = [ ./pstoedit-gs-9.22-compat.patch ];
outputs = [ "out" "dev" ];
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ zlib ghostscript imagemagick plotutils gd libjpeg libwebp ]
@@ -0,0 +1,13 @@
diff --git a/src/pstoeditoptions.h b/src/pstoeditoptions.h
index 7846883..0fb6a6f 100755
--- a/src/pstoeditoptions.h
+++ b/src/pstoeditoptions.h
@@ -453,7 +453,7 @@ private:
"Later versions of Ghostscript will probably support -dDELAYBIND again. "
"But also in that case the security risk remains. So be careful with what "
"files you process with pstoedit and Ghostscript.",
- false), //
+ true), //
#endif
pagetoextract (true, "-page","page number",g_t,"extract a specific page: 0 means all pages",
"Select a single page from a multi-page PostScript or PDF file.",
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, qt4, qmake4Hook, unzip, mesa_glu, makeWrapper }:
{ stdenv, fetchurl, qt4, qmake4Hook, unzip, libGLU, makeWrapper }:
stdenv.mkDerivation rec {
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
sha256 = "1kiammx46719az6jzrav8yrwz82nk4m72ybj0kpbnvp9wfl3swbb";
};
buildInputs = [ qt4 unzip mesa_glu makeWrapper ];
buildInputs = [ qt4 unzip libGLU makeWrapper ];
nativeBuildInputs = [ qmake4Hook ];
# Thanks to https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=672000#15:
+1 -1
View File
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "LunarG Vulkan loader";
homepage = "http://www.lunarg.com";
homepage = https://www.lunarg.com;
platforms = platforms.linux;
license = licenses.asl20;
maintainers = [ maintainers.ralith ];