Coder Social home page Coder Social logo

elf.jl's Introduction

elf.jl's People

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

elf.jl's Issues

[PkgEval] ELF may have a testing issue on Julia 0.4 (2014-10-08)

PackageEvaluator.jl is a script that runs nightly. It attempts to load all Julia packages and run their tests (if available) on both the stable version of Julia (0.3) and the nightly build of the unstable version (0.4). The results of this script are used to generate a package listing enhanced with testing results.

On Julia 0.4

  • On 2014-10-05 the testing status was No tests, but package loads.
  • On 2014-10-08 the testing status changed to Package doesn't load.

No tests, but package loads. means that PackageEvaluator did not find tests for your package. However, trying to load your package with using worked.

Package doesn't load. means that PackageEvaluator did not find tests for your package. Additionally, trying to load your package with using failed.

Special message from @IainNZ: This change may be due to breaking changes to Dict in JuliaLang/julia#8521

This issue was filed because your testing status became worse. No additional issues will be filed if your package remains in this state, and no issue will be filed if it improves. If you'd like to opt-out of these status-change messages, reply to this message saying you'd like to and @IainNZ will add an exception. If you'd like to discuss PackageEvaluator.jl please file an issue at the repository. For example, your package may be untestable on the test machine due to a dependency - an exception can be added.

Test log:

>>> 'Pkg.add("ELF")' log
INFO: Installing ELF v0.0.0
INFO: Installing StrPack v0.0.1
INFO: Package database updated
INFO: METADATA is out-of-date a you may not have the latest version of ELF
INFO: Use `Pkg.update()` to get the latest versions of your packages

>>> 'using ELF' log

WARNING: deprecated syntax "(Type=>Integer)[]" at /home/idunning/pkgtest/.julia/v0.4/StrPack/src/StrPack.jl:25.
Use "Dict{Type,Integer}()" instead.

WARNING: deprecated syntax "{a=>b, ...}" at /home/idunning/pkgtest/.julia/v0.4/StrPack/src/StrPack.jl:107.
Use "Dict{Any,Any}(a=>b, ...)" instead.

WARNING: deprecated syntax "[a=>b, ...]" at /home/idunning/pkgtest/.julia/v0.4/StrPack/src/StrPack.jl:300.
Use "Dict(a=>b, ...)" instead.

WARNING: deprecated syntax "[a=>b, ...]" at /home/idunning/pkgtest/.julia/v0.4/StrPack/src/StrPack.jl:405.
Use "Dict(a=>b, ...)" instead.
Julia Version 0.4.0-dev+998
Commit e24fac0 (2014-10-07 22:02 UTC)
Platform Info:
  System: Linux (x86_64-unknown-linux-gnu)
  CPU: Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz
  WORD_SIZE: 64
  BLAS: libopenblas (USE64BITINT DYNAMIC_ARCH NO_AFFINITY Sandybridge)
  LAPACK: libopenblas
  LIBM: libopenlibm
  LLVM: libLLVM-3.3

ERROR: `Dict{K,V}` has no method matching Dict{K,V}(::Array{Any,1}, ::Array{Array{Integer,1},1})
 in include at ./boot.jl:245
 in include_from_node1 at ./loading.jl:128
 in reload_path at ./loading.jl:152
 in _require at ./loading.jl:67
 in require at ./loading.jl:52
 in require_3B_3964 at /home/idunning/julia04/usr/bin/../lib/julia/sys.so
 in include at ./boot.jl:245
 in include_from_node1 at loading.jl:128
 in process_options at ./client.jl:293
 in _start at ./client.jl:362
 in _start_3B_3789 at /home/idunning/julia04/usr/bin/../lib/julia/sys.so
while loading /home/idunning/pkgtest/.julia/v0.4/ELF/src/ELF.jl, in expression starting on line 62
while loading /home/idunning/pkgtest/.julia/v0.4/ELF/testusing.jl, in expression starting on line 2

>>> test log
no tests to run
>>> end of log

Package doesn't precompile on 0.6-

I get

julia> using ELF # right after Pkg.add("Gallium")
INFO: Precompiling module ELF...
ERROR: Failed to precompile ELF to /Users/andreasnoack/.julia/lib/v0.6/ELF.ji
 in compilecache(::String) at ./loading.jl:505
 in require(::Symbol) at ./loading.jl:364

julia> Pkg.checkout("ELF")
INFO: Checking out ELF master...
INFO: Pulling ELF latest master...
INFO: No packages to install, update or remove

julia> using ELF
INFO: Precompiling module ELF...
ERROR: Failed to precompile ELF to /Users/andreasnoack/.julia/lib/v0.6/ELF.ji
 in compilecache(::String) at ./loading.jl:505
 in require(::Symbol) at ./loading.jl:364

julia> versioninfo()
Julia Version 0.6.0-dev.16
Commit 3e00217* (2016-08-04 23:55 UTC)
Platform Info:
  System: Darwin (x86_64-apple-darwin16.0.0)
  CPU: Intel(R) Core(TM) i7-4870HQ CPU @ 2.50GHz
  WORD_SIZE: 64
  BLAS: libopenblas (USE64BITINT NO_AFFINITY HASWELL)
  LAPACK: libopenblas64_
  LIBM: libopenlibm
  LLVM: libLLVM-3.7.1 (ORCJIT, haswell)

[PackageEvaluator.jl] Your package ELF may have a testing issue.

This issue is being filed by a script, but if you reply, I will see it.

PackageEvaluator.jl is a script that runs nightly. It attempts to load all Julia packages and run their test (if available) on both the stable version of Julia (0.2) and the nightly build of the unstable version (0.3).

The results of this script are used to generate a package listing enhanced with testing results.

The status of this package, ELF, on...

  • Julia 0.2 is 'No tests, but package loads.' PackageEvaluator.jl
  • Julia 0.3 is 'No tests, but package loads.' PackageEvaluator.jl

'No tests, but package loads.' can be due to their being no tests (you should write some if you can!) but can also be due to PackageEvaluator not being able to find your tests. Consider adding a test/runtests.jl file.

'Package doesn't load.' is the worst-case scenario. Sometimes this arises because your package doesn't have BinDeps support, or needs something that can't be installed with BinDeps. If this is the case for your package, please file an issue and an exception can be made so your package will not be tested.

This automatically filed issue is a one-off message. Starting soon, issues will only be filed when the testing status of your package changes in a negative direction (gets worse). If you'd like to opt-out of these status-change messages, reply to this message.

ELF references unknown @__struct_init__

I'm trying to build ELF.jl, but I get stuck on something that seems like an absent StrPack feature ?

$ ./julia 
               _
   _       _ _(_)_     |  A fresh approach to technical computing
  (_)     | (_) (_)    |  Documentation: http://docs.julialang.org
   _ _   _| |_  __ _   |  Type "?help" for help.
  | | | | | | |/ _` |  |
  | | |_| | | | (_| |  |  Version 0.5.0-dev+1594 (2015-12-04 05:49 UTC)
 _/ |\__'_|_|_|\__'_|  |  Commit 79356b8 (0 days old master)
|__/                   |  x86_64-linux-gnu

julia> using ELF
INFO: Precompiling module ELF...
INFO: Recompiling stale cache file /home/ethomag/.julia/lib/v0.5/StrPack.ji for module StrPack.
INFO: Recompiling stale cache file /home/ethomag/.julia/lib/v0.5/Compat.ji for module Compat.
 < .... snip .... >
INFO: Recompiling stale cache file /home/ethomag/.julia/lib/v0.5/FileIO.ji for module FileIO.
INFO: Recompiling stale cache file /home/ethomag/.julia/lib/v0.5/ObjFileBase.ji for module ObjFileBase.
ERROR: LoadError: UndefVarError: @__struct_init__ not defined
 in include at ./boot.jl:260
 in include_from_node1 at ./loading.jl:392
 [inlined code] from boot.jl:263
 in anonymous at no file:0
 in eval at ./boot.jl:263
 [inlined code] from ./sysimg.jl:14
 in process_options at ./client.jl:254
 in _start at ./client.jl:377
while loading /home/ethomag/.julia/v0.5/ELF/src/ELF.jl, in expression starting on line 41
ERROR: Failed to precompile ELF to /home/ethomag/.julia/lib/v0.5/ELF.ji
 in error at ./error.jl:21
 in compilecache at loading.jl:471
 in require at ./loading.jl:339
 in eval at ./boot.jl:263

julia> for p = ["ELF", "ObjFileBase", "StrPack", "FileIO"]
         Pkg.status(p)
       end
 - ELF                           0.0.0+             master
 - ObjFileBase                   0.0.0-             master (unregistered)
 - StrPack                       0.0.1+             master
 - FileIO                        0.0.3+             master

Info about upcoming removal of packages in the General registry

As described in https://discourse.julialang.org/t/ann-plans-for-removing-packages-that-do-not-yet-support-1-0-from-the-general-registry/ we are planning on removing packages that do not support 1.0 from the General registry. This package has been detected to not support 1.0 and is thus slated to be removed. The removal of packages from the registry will happen approximately a month after this issue is open.

To transition to the new Pkg system using Project.toml, see https://github.com/JuliaRegistries/Registrator.jl#transitioning-from-require-to-projecttoml.
To then tag a new version of the package, see https://github.com/JuliaRegistries/Registrator.jl#via-the-github-app.

If you believe this package has erroneously been detected as not supporting 1.0 or have any other questions, don't hesitate to discuss it here or in the thread linked at the top of this post.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.