Unofficial .deb packages of IntelliJ IDEA Ultimate Edition.
Go to file
Marcel Kapfer 7cb1281a46
Upstream version 2019.2
2019-07-26 17:40:04 +02:00
intellij-idea-ultimate_2019.2 Upstream version 2019.2 2019-07-26 17:40:04 +02:00
.gitignore extended gitignore 2017-09-18 18:43:43 +02:00
CONTRIBUTORS.txt Updated my mail address 2019-02-27 10:46:41 +01:00
LICENSE Initial Commit; Upstream Version 2016.3.4 2017-02-10 17:14:33 +01:00
README.md Update version to 2018.1.4 2018-05-25 08:09:31 +02:00
intellij-idea-ultimate_2019.2-1_all.deb Upstream version 2019.2 2019-07-26 17:40:04 +02:00
intellij-idea-ultimate_2019.2.orig.tar.gz Upstream version 2019.2 2019-07-26 17:40:04 +02:00
update-new-version.sh Deleted old update script 2019-05-16 12:22:46 +02:00

README.md

intellij-idea-ultimate

.deb Packages of IntelliJ IDEA Ultimate Edition for Ubuntu / Debian

The latest upstream version is 2018.1.4 which is included in the package version 2018.1.4

Adding the PPA

sudo apt-add-repository ppa:mmk2410/intellij-idea
sudo apt-get update
sudo apt-get install intellij-idea-ultimate

Report issues

You can report issues, questions or feedback here on GitLab. Please include which version your using.

Updating the package

To update the version follow the following steps (the old version is here 15.0.1 and the new one 15.0.2):

  1. Fork the repo
  2. Create your own feature branch
git checkout -b version_15.0.2
  1. Rename the following
mv intellij-idea-ultimate_15.0.1 intellij-idea-ultimate_15.0.2
mv intellij-idea-ultimate_15.0.1.orig.tar.gz intellij-idea-ultimate_15.0.2.orig.tar.gz
  1. Edit the README.md and update the version numbers

  2. Go into the build files directory

cd intellij-idea-ultimate_15.0.2/debian
  1. Edit the changelog file and prepend a new changelog entry. You can just copy an old one and update the values in it

  2. Edit the preinst file and update the download URL. Normally this is done by updating the version number

  3. Go one directory back

cd ..
  1. Run the following command to build the package for testing purposes
debuild -us -uc
  1. Go another directory back
cd ..
  1. Remove the old files
rm intellij-idea-ultimate_15.0.1-1*
  1. Install the package to test it
sudo dpkg -i intellij-idea-ultimate_15.0.2-1_all.deb
  1. If everything works, add yourself to the CONTRIBUTORS.txt

  2. Commit your changes

git add -A
git commit -m "Version 15.0.2"
  1. Push to the branch
git push origin version_15.0.2
  1. Create new pull request

Setting up the build environment

Run sudo apt install build-dep debhelper.