Merge pull request #73474 from matthuszagh/asymptote-2.60

asymptote: 2.47 -> 2.60
This commit is contained in:
Daniel Schaefer 2019-11-20 09:35:55 +01:00 committed by GitHub
commit d901b2a166
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 50 additions and 50 deletions

View File

@ -1,74 +1,74 @@
{stdenv, fetchurl, fetchpatch { stdenv, fetchFromGitHub, fetchurl
, freeglut, ghostscriptX, imagemagick, fftw , autoreconfHook, bison, glm, yacc, flex
, boehmgc, libGLU, libGL, mesa, ncurses, readline, gsl, libsigsegv , freeglut, ghostscriptX, imagemagick, fftw
, python, zlib, perl, texLive, texinfo, xz , boehmgc, libGLU, libGL, mesa, ncurses, readline, gsl, libsigsegv
, python3Packages
, zlib, perl
, texLive, texinfo
, darwin , darwin
}: }:
let stdenv.mkDerivation rec {
s = # Generated upstream information version = "2.60";
rec { pname = "asymptote";
baseName="asymptote";
version="2.47";
name="${baseName}-${version}";
hash="0zc24n2vwzxdfmcppqfk3fkqlb4jmvswzi3bz232kxl7dyiyb971";
url="https://freefr.dl.sourceforge.net/project/asymptote/2.47/asymptote-2.47.src.tgz";
sha256="0zc24n2vwzxdfmcppqfk3fkqlb4jmvswzi3bz232kxl7dyiyb971";
};
buildInputs = [
ghostscriptX imagemagick fftw
boehmgc ncurses readline gsl libsigsegv
python zlib perl texLive texinfo xz ]
++ stdenv.lib.optionals stdenv.isLinux
[ freeglut libGLU libGL mesa.osmesa ]
++ stdenv.lib.optionals stdenv.isDarwin
(with darwin.apple_sdk.frameworks; [ OpenGL GLUT Cocoa ])
;
in
stdenv.mkDerivation {
inherit (s) name version;
inherit buildInputs;
src = fetchurl { src = fetchFromGitHub {
inherit (s) url sha256; owner = "vectorgraphics";
repo = pname;
rev = version;
sha256 = "1sr31r80jfswlx9a0p5bn85p6h7mq28fw8ihhnlbhphii6w8z2j9";
}; };
patches = [ nativeBuildInputs = [
# Remove when updating from 2.47 to 2.48 autoreconfHook
# Compatibility with BoehmGC 7.6.8 bison
(fetchpatch { flex
url = "https://github.com/vectorgraphics/asymptote/commit/38a59370dc5ac720c29e1424614a10f7384b943f.patch"; yacc
sha256 = "0c3d11hzxxaqh24kfw9y8zvlid54kk40rx2zajx7jwl12gga05s1"; texinfo
})
]; ];
buildInputs = [
ghostscriptX imagemagick fftw
boehmgc ncurses readline gsl libsigsegv
zlib perl
texLive
] ++ (with python3Packages; [
python
pyqt5
]);
propagatedBuildInputs = [
glm
] ++ stdenv.lib.optionals stdenv.isLinux [
freeglut libGLU libGL mesa.osmesa
] ++ stdenv.lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
OpenGL GLUT Cocoa
]);
preConfigure = '' preConfigure = ''
export HOME="$PWD" HOME=$TMP
patchShebangs .
sed -e 's@epswrite@eps2write@g' -i runlabel.in
xz -d < ${texinfo.src} | tar --wildcards -x texinfo-'*'/doc/texinfo.tex
cp texinfo-*/doc/texinfo.tex doc/
rm *.tar.gz
configureFlags="$configureFlags --with-latex=$out/share/texmf/tex/latex --with-context=$out/share/texmf/tex/context/third"
''; '';
configureFlags = [
"--with-latex=$out/share/texmf/tex/latex"
"--with-context=$out/share/texmf/tex/context/third"
];
NIX_CFLAGS_COMPILE = [ "-I${boehmgc.dev}/include/gc" ]; NIX_CFLAGS_COMPILE = [ "-I${boehmgc.dev}/include/gc" ];
postInstall = '' postInstall = ''
mv -v "$out/share/info/asymptote/"*.info $out/share/info/ mv $out/share/info/asymptote/*.info $out/share/info/
sed -i -e 's|(asymptote/asymptote)|(asymptote)|' $out/share/info/asymptote.info sed -i -e 's|(asymptote/asymptote)|(asymptote)|' $out/share/info/asymptote.info
rmdir $out/share/info/asymptote rmdir $out/share/info/asymptote
rm $out/share/info/dir rm -f $out/share/info/dir
rm -rfv "$out"/share/texmf rm -rf $out/share/texmf
mkdir -pv "$out"/share/emacs/site-lisp/${s.name} install -Dt $out/share/emacs/site-lisp/${pname} $out/share/asymptote/*.el
mv -v "$out"/share/asymptote/*.el "$out"/share/emacs/site-lisp/${s.name}
''; '';
enableParallelBuilding = true; enableParallelBuilding = true;
meta = with stdenv.lib; { meta = with stdenv.lib; {
inherit (s) version;
description = "A tool for programming graphics intended to replace Metapost"; description = "A tool for programming graphics intended to replace Metapost";
license = licenses.gpl3Plus; license = licenses.gpl3Plus;
maintainers = [ maintainers.raskin maintainers.peti ]; maintainers = [ maintainers.raskin maintainers.peti ];

View File

@ -664,7 +664,7 @@ in
asciiquarium = callPackage ../applications/misc/asciiquarium {}; asciiquarium = callPackage ../applications/misc/asciiquarium {};
asymptote = callPackage ../tools/graphics/asymptote { asymptote = callPackage ../tools/graphics/asymptote {
texLive = texlive.combine { inherit (texlive) scheme-small epsf cm-super; }; texLive = texlive.combine { inherit (texlive) scheme-small epsf cm-super texinfo; };
gsl = gsl_1; gsl = gsl_1;
}; };