On 19 October 2015 at 02:04, Jonas Smedegaard <d...@jones.dk> wrote:
> Not sure I follow you here: As I understand it, Gadfly is not a
> packaging system but a visualization system?!?

Julia has a built-in package manager [1] which uses git for installing
Julia add-ons.
Gadfly has several dependencies [2]:

julia 0.3
Codecs
Colors 0.3.4
Compat
Compose 0.3.11
Contour
DataFrames 0.4.2
DataStructures
Dates
Distributions
Hexagons
Iterators 0.1.5
JSON
KernelDensity
Loess
Showoff 0.0.3
StatsBase

Installing Gadfly using Julia's package manager pulls in even more
packages (dependencies of dependencies, I guess), see the output
below.
I assume all of these would need to be packaged for Debian as well.
Sébastien, Peter, is this correct?

[1] http://docs.julialang.org/en/release-0.3/manual/packages/
[2] https://github.com/dcjones/Gadfly.jl/blob/master/REQUIRE


julia> Pkg.update()
INFO: Initializing package repository /home/ginggs/.julia/v0.3
INFO: Cloning METADATA from git://github.com/JuliaLang/METADATA.jl
INFO: Updating METADATA...
INFO: Computing changes...
INFO: No packages to install, update or remove

julia> Pkg.add("Gadfly")
INFO: Cloning cache of ArrayViews from
git://github.com/JuliaLang/ArrayViews.jl.git
INFO: Cloning cache of Calculus from
git://github.com/johnmyleswhite/Calculus.jl.git
INFO: Cloning cache of Codecs from git://github.com/dcjones/Codecs.jl.git
INFO: Cloning cache of ColorTypes from
git://github.com/JuliaGraphics/ColorTypes.jl.git
INFO: Cloning cache of Colors from git://github.com/JuliaGraphics/Colors.jl.git
INFO: Cloning cache of Compat from git://github.com/JuliaLang/Compat.jl.git
INFO: Cloning cache of Compose from git://github.com/dcjones/Compose.jl.git
INFO: Cloning cache of Contour from git://github.com/tlycken/Contour.jl.git
INFO: Cloning cache of DataArrays from
git://github.com/JuliaStats/DataArrays.jl.git
INFO: Cloning cache of DataFrames from
git://github.com/JuliaStats/DataFrames.jl.git
INFO: Cloning cache of DataStructures from
git://github.com/JuliaLang/DataStructures.jl.git
INFO: Cloning cache of Dates from git://github.com/quinnj/Dates.jl.git
INFO: Cloning cache of Distances from
git://github.com/JuliaStats/Distances.jl.git
INFO: Cloning cache of Distributions from
git://github.com/JuliaStats/Distributions.jl.git
INFO: Cloning cache of Docile from
git://github.com/MichaelHatherly/Docile.jl.git
INFO: Cloning cache of DualNumbers from
git://github.com/JuliaDiff/DualNumbers.jl.git
INFO: Cloning cache of FixedPointNumbers from
git://github.com/JeffBezanson/FixedPointNumbers.jl.git
INFO: Cloning cache of GZip from git://github.com/JuliaLang/GZip.jl.git
INFO: Cloning cache of Gadfly from git://github.com/dcjones/Gadfly.jl.git
INFO: Cloning cache of Grid from git://github.com/timholy/Grid.jl.git
INFO: Cloning cache of Hexagons from git://github.com/dcjones/Hexagons.jl.git
INFO: Cloning cache of ImmutableArrays from
git://github.com/JuliaGeometry/ImmutableArrays.jl.git
INFO: Cloning cache of Iterators from
git://github.com/JuliaLang/Iterators.jl.git
INFO: Cloning cache of JSON from git://github.com/JuliaLang/JSON.jl.git
INFO: Cloning cache of KernelDensity from
git://github.com/JuliaStats/KernelDensity.jl.git
INFO: Cloning cache of Loess from git://github.com/dcjones/Loess.jl.git
INFO: Cloning cache of NaNMath from git://github.com/mlubin/NaNMath.jl.git
INFO: Cloning cache of Optim from git://github.com/JuliaOpt/Optim.jl.git
INFO: Cloning cache of PDMats from git://github.com/JuliaStats/PDMats.jl.git
INFO: Cloning cache of Reexport from git://github.com/simonster/Reexport.jl.git
INFO: Cloning cache of Showoff from git://github.com/dcjones/Showoff.jl.git
INFO: Cloning cache of SortingAlgorithms from
git://github.com/JuliaLang/SortingAlgorithms.jl.git
INFO: Cloning cache of StatsBase from
git://github.com/JuliaStats/StatsBase.jl.git
INFO: Cloning cache of StatsFuns from
git://github.com/JuliaStats/StatsFuns.jl.git
INFO: Cloning cache of WoodburyMatrices from
git://github.com/timholy/WoodburyMatrices.jl.git
INFO: Installing ArrayViews v0.6.4
INFO: Installing Calculus v0.1.13
INFO: Installing Codecs v0.1.5
INFO: Installing ColorTypes v0.1.7
INFO: Installing Colors v0.5.4
INFO: Installing Compat v0.7.6
INFO: Installing Compose v0.3.17
INFO: Installing Contour v0.0.8
INFO: Installing DataArrays v0.2.19
INFO: Installing DataFrames v0.6.10
INFO: Installing DataStructures v0.3.13
INFO: Installing Dates v0.3.2
INFO: Installing Distances v0.2.1
INFO: Installing Distributions v0.8.7
INFO: Installing Docile v0.5.19
INFO: Installing DualNumbers v0.1.5
INFO: Installing FixedPointNumbers v0.0.12
INFO: Installing GZip v0.2.18
INFO: Installing Gadfly v0.3.17
INFO: Installing Grid v0.3.11
INFO: Installing Hexagons v0.0.4
INFO: Installing ImmutableArrays v0.0.11
INFO: Installing Iterators v0.1.9
INFO: Installing JSON v0.5.0
INFO: Installing KernelDensity v0.1.2
INFO: Installing Loess v0.0.5
INFO: Installing NaNMath v0.1.1
INFO: Installing Optim v0.4.4
INFO: Installing PDMats v0.3.6
INFO: Installing Reexport v0.0.3
INFO: Installing Showoff v0.0.6
INFO: Installing SortingAlgorithms v0.0.6
INFO: Installing StatsBase v0.7.4
INFO: Installing StatsFuns v0.1.4
INFO: Installing WoodburyMatrices v0.1.2
INFO: Package database updated

Reply via email to