Unofficial .deb packages of IntelliJ IDEA CE.
Go to file
Marcel Kapfer (mmk2410) e4aa12075e New Upstream Version: 2016.1.2 2016-05-11 17:22:52 +02:00
intellij-idea-community_2016.1.2 New Upstream Version: 2016.1.2 2016-05-11 17:22:52 +02:00
LICENSE Initial commit 2015-03-07 19:45:47 +01:00
README.md Upstream version 15.0.2 2015-12-13 14:17:00 +01:00
intellij-idea-community_2016.1.2-1.debian.tar.xz New Upstream Version: 2016.1.2 2016-05-11 17:22:52 +02:00
intellij-idea-community_2016.1.2-1.dsc New Upstream Version: 2016.1.2 2016-05-11 17:22:52 +02:00
intellij-idea-community_2016.1.2-1_all.deb New Upstream Version: 2016.1.2 2016-05-11 17:22:52 +02:00
intellij-idea-community_2016.1.2-1_amd64.build New Upstream Version: 2016.1.2 2016-05-11 17:22:52 +02:00
intellij-idea-community_2016.1.2-1_amd64.changes New Upstream Version: 2016.1.2 2016-05-11 17:22:52 +02:00
intellij-idea-community_2016.1.2-1_source.build New Upstream Version: 2016.1.2 2016-05-11 17:22:52 +02:00
intellij-idea-community_2016.1.2-1_source.changes New Upstream Version: 2016.1.2 2016-05-11 17:22:52 +02:00
intellij-idea-community_2016.1.2-1_source.ppa.upload New Upstream Version: 2016.1.2 2016-05-11 17:22:52 +02:00
intellij-idea-community_2016.1.2.orig.tar.gz New Upstream Version: 2016.1.2 2016-05-11 17:22:52 +02:00

README.md

intellij-idea-community

.deb Packages of IntelliJ IDEA Community Edition for Ubuntu

The latest upstream version is 15.0.2 which is included in the package version 15.0.2.

Adding the ppa to Ubuntu

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

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-community_15.0.1 intellij-idea-community_15.0.2
mv intellij-idea-community_15.0.1.orig.tar.gz intellij-idea-community_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-community_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-community_15.0.1-1*
  1. Install the package to test it
sudo dpkg -i intellij-idea-community_15.0.2-1_all.deb 
  1. If everything works 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