Results 1 to 9 of 9

Thread: Scala 2.8.1 in the the repos?

  1. #1
    Join Date
    Dec 2006
    Location
    Hampshire, England
    Beans
    67
    Distro
    Ubuntu 12.04 Precise Pangolin

    Question Scala 2.8.1 in the the repos?

    Will there be a Scala 2.8.1 release in the distribution repos any time soon? There is currently v2.7.7 available, which is considerably out of date now (it's from December 2009).

    What's the process for getting the Ubuntu repo to hold newer versions of packages?

    Rick
    [Learning Scala and liking it.]

  2. #2
    Join Date
    Dec 2006
    Location
    Hampshire, England
    Beans
    67
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: Scala 2.8.1 in the the repos?

    Hello?

    Does no-one else care about the Scala package being so out of date in Ubuntu?

    Can anyone answer my question on the process of getting package upgrades made?

    Slightly disappointed.
    Rick

  3. #3
    Join Date
    Oct 2010
    Location
    Southern Pines, N.C.
    Beans
    19
    Distro
    Ubuntu 10.10 Maverick Meerkat

    Re: Scala 2.8.1 in the the repos?

    Quote Originally Posted by rickbeton View Post
    Hello?

    Does no-one else care about the Scala package being so out of date in Ubuntu?

    Can anyone answer my question on the process of getting package upgrades made?

    Slightly disappointed.
    Rick
    i am greatly disappointed.

    i am thinking of installing 2.8.1 from the tgz archive, however there are no explicit
    instructions of what files are required and where they are to be located in the
    root directories. i found the following instructions at http://lovehateubuntu.blogspot.com/2...la-part-i.html.

    at the time the code was executed, the repo was installing
    scala 2.3 and the person wanted to upgrade to 2.7.7.
    -----------------------------------------------------------------------------------------------
    wget http://www.scala-lang.org/downloads/....7.7.final.tgz
    tar -zxvf scala-2.7.7.final.tgz
    sudo mv scala-2.7.7.final /usr/share/scala
    sudo ln -s /usr/share/scala/bin/scala /usr/bin/scala
    sudo ln -s /usr/share/scala/bin/scalac /usr/bin/scalacNow you have a working Scala implementation! Make sure to check the most up-to-date version on their website. I'll try and keep this up-to-date, but I'm only human and only check the Scala website every now and then.

    To uninstall:sudo rm -rf /usr/share/scala /usr/bin/scala /usr/bin/scalac
    -------------------------------------------------------

  4. #4
    Join Date
    May 2009
    Beans
    1

    Re: Scala 2.8.1 in the the repos?

    Quote Originally Posted by rickbeton View Post
    Does no-one else care about the Scala package being so out of date in Ubuntu?
    I do care and would like to see those repos updated as well.
    Unfortunately, I have no idea how to help in that respect.

  5. #5
    Join Date
    Sep 2009
    Beans
    3

    Re: Scala 2.8.1 in the the repos?

    Add me to the list. Was hoping Maverick Meerkat would be upgraded to 2.8. Sure, installing it from the tgz is easy enough, but wish it was supported from repository.

    I do however think the package should need to be renamed scala28. While I'm not using 2.7.7 at all, I can see how it could get nasty for somebody who is.
    Last edited by odLott; December 26th, 2010 at 12:33 AM.

  6. #6
    Join Date
    Aug 2007
    Location
    United Kingdom
    Beans
    8
    Distro
    Ubuntu

    Lightbulb Re: Scala 2.8.1 in the the repos?

    Two possible solutions without waiting for Ubuntu to be updated:

    1. http://unki2aut.wordpress.com/2010/1...-ubuntu-10-10/ which basically suggests to install from the .jar install file on the official website

    2. Use Eclipse and install the Eclipse Scala plugin. How to can be found here https://www.assembla.com/wiki/show/s...d_Installation

    I hope this might help.

  7. #7
    Join Date
    Jun 2007
    Beans
    39

    Re: Scala 2.8.1 in the the repos?

    This ppa provides 2.8.0. Not 2.8.1 yet but I prefer this rather than having to install it manually. Also note that the lucid repo works for maverick (Java bytecode).
    Last edited by ivotron; January 31st, 2011 at 11:34 AM. Reason: fixed link

  8. #8
    Join Date
    Dec 2006
    Location
    Hampshire, England
    Beans
    67
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: Scala 2.8.1 in the the repos?

    We're onto Scala 2.9.0.1 now. The Ubuntu repo is even more behind.

    For those who want to use the newer version anyway, please do so by

    1. downloading it from http://www.scala-lang.org/downloads
    (you need the Unix/Macos/Cygwin .tgz version).

    2. unpack it in /opt, or somewhere else if you prefer. The command for this is
    Code:
    cd /opt
    sudo tar zxvf scala-2.9.0.1.tgz
    3. edit your $HOME/.bashrc by adding /opt/scala-2.9.0.1/bin to PATH
    Code:
    PATH=/opt/scala-2.9.0.1/bin:$PATH
    You're likely to need SBT (http://code.google.com/p/simple-build-tool/) too.
    Rick

  9. #9
    Join Date
    Dec 2006
    Location
    Hampshire, England
    Beans
    67
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: Scala 2.8.1 in the the repos?

    SBT is now up to version 0.10 but for some reason I don't understand has moved to another website.

    https://github.com/harrah/xsbt

    Hope that helps,
    Rick

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •