Compare commits
No commits in common. "main" and "v2016.3.1" have entirely different histories.
39 changed files with 689 additions and 1108 deletions
9
.gitignore
vendored
9
.gitignore
vendored
|
@ -1,10 +1 @@
|
||||||
*_source.*
|
*_source.*
|
||||||
*.debian.tar.xz
|
|
||||||
*.dsc
|
|
||||||
*.build
|
|
||||||
*.buildinfo
|
|
||||||
*.changes
|
|
||||||
**/debian/files
|
|
||||||
**/debian/.debhelper/
|
|
||||||
**/debian/intellij-idea-community/
|
|
||||||
**/debian/intellij-idea-community.*
|
|
||||||
|
|
|
@ -1,73 +0,0 @@
|
||||||
default:
|
|
||||||
image: registry.gitlab.com/mmk2410/intellij-idea-pkg-image:oracular
|
|
||||||
|
|
||||||
variables:
|
|
||||||
PACKAGE: "intellij-idea-community"
|
|
||||||
TZ: UTC
|
|
||||||
NAME: "Marcel Kapfer"
|
|
||||||
EMAIL: "opensource@mmk2410.org"
|
|
||||||
|
|
||||||
stages:
|
|
||||||
- autoupdate
|
|
||||||
- build
|
|
||||||
- deploy
|
|
||||||
|
|
||||||
update-job:
|
|
||||||
stage: autoupdate
|
|
||||||
script:
|
|
||||||
##
|
|
||||||
## Configure SSH key
|
|
||||||
##
|
|
||||||
- eval $(ssh-agent -s)
|
|
||||||
- chmod 400 "$SSH_PRIVATE_KEY"
|
|
||||||
- ssh-add "$SSH_PRIVATE_KEY"
|
|
||||||
- mkdir ~/.ssh
|
|
||||||
- chmod 700 ~/.ssh
|
|
||||||
- cp "$SSH_KNOWN_HOSTS" ~/.ssh/known_hosts
|
|
||||||
- chmod 644 ~/.ssh/known_hosts
|
|
||||||
|
|
||||||
##
|
|
||||||
## Configure Git setup
|
|
||||||
##
|
|
||||||
- git config user.name "$NAME"
|
|
||||||
- git config user.email "$EMAIL"
|
|
||||||
- git remote set-url origin "$GIT_URL"
|
|
||||||
|
|
||||||
##
|
|
||||||
## Run autoupdate script which handles everything else.
|
|
||||||
##
|
|
||||||
- ./autoupdate.sh
|
|
||||||
rules:
|
|
||||||
- if: $CI_PIPELINE_SOURCE == "schedule"
|
|
||||||
|
|
||||||
build-job:
|
|
||||||
stage: build
|
|
||||||
script:
|
|
||||||
- export VERSION=$(git describe --abbrev=0 --tags | cut -d'v' -f2)
|
|
||||||
- cd "$PACKAGE"_"$VERSION" || exit
|
|
||||||
- debuild -us -uc
|
|
||||||
- export PACKAGE_FILE="$PACKAGE"_"$VERSION"-1_all.deb
|
|
||||||
artifacts:
|
|
||||||
name: $PACKAGE_FILE
|
|
||||||
paths:
|
|
||||||
- ./*.deb
|
|
||||||
rules:
|
|
||||||
- if: $CI_COMMIT_TAG
|
|
||||||
|
|
||||||
deploy-job:
|
|
||||||
image: registry.gitlab.com/mmk2410/intellij-idea-pkg-image:$UBUNTU_VERSION
|
|
||||||
stage: deploy
|
|
||||||
script:
|
|
||||||
- export VERSION=$(git describe --abbrev=0 --tags | cut -d'v' -f2)
|
|
||||||
- echo "$GPG_PRIVATE_KEY" | tr -d '\r' | gpg --import -
|
|
||||||
- echo "$GPG_PUBLIC_KEY" | tr -d '\r' | gpg --import -
|
|
||||||
- cd "$PACKAGE"_"$VERSION" || exit
|
|
||||||
- dch -D $UBUNTU_VERSION -p -l +$UBUNTU_VERSION "Upstream version $VERSION."
|
|
||||||
- debuild -S -sa -k6D289F254B41A009B6AB5AC3122720F932D5CE46
|
|
||||||
- cd ..
|
|
||||||
- dput ppa:mmk2410/intellij-idea "$PACKAGE"_"$VERSION"-1+"$UBUNTU_VERSION"1_source.changes
|
|
||||||
rules:
|
|
||||||
- if: $CI_COMMIT_TAG
|
|
||||||
parallel:
|
|
||||||
matrix:
|
|
||||||
- UBUNTU_VERSION: [trusty, xenial, bionic, focal, jammy, noble, oracular]
|
|
|
@ -1,8 +1,4 @@
|
||||||
Marcel Kapfer (mmk2410) <opensource@mmk2410.org>
|
Marcel Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz>
|
||||||
Bart de Koning <bartdaking@gmail.com>
|
Bart de Koning <bartdaking@gmail.com>
|
||||||
Francesco Levorato (flevour) <git@flevour.net>
|
Francesco Levorato (flevour) <git@flevour.net>
|
||||||
Andy Balaam (andybalaam) <mail@artificialworlds.net>
|
Andy Balaam (andybalaam) <mail@artificialworlds.net>
|
||||||
Patrick Lucas <me@patricklucas.com>
|
|
||||||
Stefan65
|
|
||||||
Ben Webb (benjaminedwardwebb) <benjaminedwardwebb@gmail.com>
|
|
||||||
Danny Trunk (dtrunk90) <dtrunk90@gmail.com>
|
|
||||||
|
|
99
README.md
99
README.md
|
@ -1,35 +1,94 @@
|
||||||
# intellij-idea-community
|
# intellij-idea-community
|
||||||
|
.deb Packages of IntelliJ IDEA Community Edition for Ubuntu
|
||||||
|
|
||||||
Debian packages of IntelliJ IDEA Community Edition for Ubuntu
|
The latest upstream version is 2016.2.4 which is included in the package version 2016.2.4.
|
||||||
|
|
||||||
I also provide a package for the [Ultimate Edition](https://gitlab.com/mmk2410/intellij-idea-ultimate).
|
## Adding the ppa to Ubuntu
|
||||||
|
|
||||||
## Adding the PPA (on Ubuntu)
|
|
||||||
|
|
||||||
```
|
```
|
||||||
sudo apt-add-repository ppa:mmk2410/intellij-idea
|
sudo apt-add-repository ppa:mmk2410/intellij-idea-community
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
sudo apt-get install intellij-idea-community
|
sudo apt-get install intellij-idea-community
|
||||||
```
|
```
|
||||||
|
|
||||||
## Report issues
|
|
||||||
|
|
||||||
You can report issues, questions or feedback concerning the package [on GitLab](https://gitlab.com/mmk2410/intellij-idea-community). If relevant, please include which version
|
|
||||||
|
|
||||||
## Updating the package
|
## Updating the package
|
||||||
|
|
||||||
Since I automated the updating process quite a bit using the `update-new-version.sh` as well as preparations on my local system I no longer accept merge requests for updating the package to a new version. Processing them would take me much more time than doing the update myself.
|
To update the version follow the following steps (the old version is here 15.0.1 and the new one 15.0.2):
|
||||||
|
|
||||||
In case I'm late for an update (over 1-2 weeks), feel free to create an issue [on GitLab](https://gitlab.com/mmk2410/intellij-idea-community). I'm also working on a fully automated system for updating the packages but this will still take a while.
|
1. Fork the repo
|
||||||
|
2. Create your own feature branch
|
||||||
|
|
||||||
### Setting up the build environment
|
```
|
||||||
|
git checkout -b version_15.0.2
|
||||||
|
```
|
||||||
|
|
||||||
|
3. 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
|
||||||
|
```
|
||||||
|
|
||||||
|
4. Edit the README.md and update the version numbers
|
||||||
|
|
||||||
|
5. Go into the build files directory
|
||||||
|
|
||||||
|
```
|
||||||
|
cd intellij-idea-community_15.0.2/debian
|
||||||
|
```
|
||||||
|
|
||||||
|
6. Edit the changelog file and prepend a new changelog entry. You can just copy an old one and update the values in it
|
||||||
|
|
||||||
|
7. Edit the preinst file and update the download url. Normally this is done by updating the version number
|
||||||
|
|
||||||
|
8. Go one directory back
|
||||||
|
|
||||||
|
```
|
||||||
|
cd ..
|
||||||
|
```
|
||||||
|
|
||||||
|
9. Run the following command to build the package for testing purposes
|
||||||
|
|
||||||
|
```
|
||||||
|
debuild -us -uc
|
||||||
|
```
|
||||||
|
|
||||||
|
10. Go another directory back
|
||||||
|
|
||||||
|
```
|
||||||
|
cd ..
|
||||||
|
```
|
||||||
|
|
||||||
|
11. Remove the old files
|
||||||
|
|
||||||
|
```
|
||||||
|
rm intellij-idea-community_15.0.1-1*
|
||||||
|
```
|
||||||
|
|
||||||
|
12. Install the package to test it
|
||||||
|
|
||||||
|
```
|
||||||
|
sudo dpkg -i intellij-idea-community_15.0.2-1_all.deb
|
||||||
|
```
|
||||||
|
|
||||||
|
13. If everything works, add yourself to the CONTRIBUTORS.txt
|
||||||
|
|
||||||
|
14. Commit your changes
|
||||||
|
|
||||||
|
```
|
||||||
|
git add -A
|
||||||
|
git commit -m "Version 15.0.2"
|
||||||
|
```
|
||||||
|
|
||||||
|
15. Push to the branch
|
||||||
|
|
||||||
|
```
|
||||||
|
git push origin version_15.0.2
|
||||||
|
```
|
||||||
|
|
||||||
|
16. Create new pull request
|
||||||
|
|
||||||
|
|
||||||
|
## Setting up the build environment
|
||||||
|
|
||||||
Run `sudo apt install build-dep debhelper`.
|
Run `sudo apt install build-dep debhelper`.
|
||||||
|
|
||||||
It is also necessary to setup Git with your username and email address as explained in numerous tutorials.
|
|
||||||
|
|
||||||
### Updating the package
|
|
||||||
|
|
||||||
Run `./update-new-version.sh "$new-version"`
|
|
||||||
|
|
||||||
Where `$new-version` is in the format `[year].[major].[minor]`.
|
|
||||||
|
|
|
@ -1,33 +0,0 @@
|
||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
set -euo pipefail
|
|
||||||
|
|
||||||
dir="$(find . -maxdepth 1 -type d -name "intellij-idea-*")"
|
|
||||||
pushd "$dir" || exit 1
|
|
||||||
|
|
||||||
set +e
|
|
||||||
check="$(uscan --dehs --no-download)"
|
|
||||||
set -e
|
|
||||||
|
|
||||||
status="$(echo "$check" | xmllint --xpath 'string(/dehs/status)' -)"
|
|
||||||
|
|
||||||
if [[ "$status" != "newer package available" ]]; then
|
|
||||||
echo "No newer package available."
|
|
||||||
exit
|
|
||||||
fi
|
|
||||||
|
|
||||||
new_version="$(echo "$check" | xmllint --xpath 'string(/dehs/upstream-version)' -)"
|
|
||||||
|
|
||||||
popd
|
|
||||||
|
|
||||||
./update-new-version.sh "$new_version"
|
|
||||||
|
|
||||||
git add -A
|
|
||||||
git commit -m "Upstream version $new_version"
|
|
||||||
|
|
||||||
git switch main
|
|
||||||
git merge --ff-only version-"$new_version"
|
|
||||||
git push origin main
|
|
||||||
|
|
||||||
git tag -a v"$new_version" -m "Upstream version $new_version"
|
|
||||||
git push --tags origin main
|
|
BIN
intellij-idea-community_2016.3.1-1.debian.tar.xz
Normal file
BIN
intellij-idea-community_2016.3.1-1.debian.tar.xz
Normal file
Binary file not shown.
39
intellij-idea-community_2016.3.1-1.dsc
Normal file
39
intellij-idea-community_2016.3.1-1.dsc
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
-----BEGIN PGP SIGNED MESSAGE-----
|
||||||
|
Hash: SHA256
|
||||||
|
|
||||||
|
Format: 3.0 (quilt)
|
||||||
|
Source: intellij-idea-community
|
||||||
|
Binary: intellij-idea-community
|
||||||
|
Architecture: all
|
||||||
|
Version: 2016.3.1-1
|
||||||
|
Maintainer: Marcel Michael Kapfer <marcelmichaelkapfer@yahoo.co.nz>
|
||||||
|
Standards-Version: 3.9.6
|
||||||
|
Build-Depends: debhelper (>= 7.0.50~)
|
||||||
|
Package-List:
|
||||||
|
intellij-idea-community deb devel optional arch=all
|
||||||
|
Checksums-Sha1:
|
||||||
|
24860fcf28517431be055b7b8f20b0dea8b08f84 5637 intellij-idea-community_2016.3.1.orig.tar.gz
|
||||||
|
e5d74fea54227398b6ebd33290b392e92af16eb3 5756 intellij-idea-community_2016.3.1-1.debian.tar.xz
|
||||||
|
Checksums-Sha256:
|
||||||
|
41958f809fdb7ce6640143c04c88233d51ab86e66be5c0a9e30e846af332550b 5637 intellij-idea-community_2016.3.1.orig.tar.gz
|
||||||
|
7bc9d1a3efe2b34edb99bcf17ea9029aa657417dd01b0d72fca423858f844214 5756 intellij-idea-community_2016.3.1-1.debian.tar.xz
|
||||||
|
Files:
|
||||||
|
e105950dd78a2260639bd06b848e4f3d 5637 intellij-idea-community_2016.3.1.orig.tar.gz
|
||||||
|
135cc43360d52f8209e758142befa300 5756 intellij-idea-community_2016.3.1-1.debian.tar.xz
|
||||||
|
|
||||||
|
-----BEGIN PGP SIGNATURE-----
|
||||||
|
|
||||||
|
iQIcBAEBCAAGBQJYUFpaAAoJECuF2UqwCcGYw5sQAJEyM36xjWUrPSp968zUzJEg
|
||||||
|
heGY8yC74cUvFJKZi0IhJhI72jLfHxzrQST39QI5NrnPZ3ssq06ywOvtBwV9bPhv
|
||||||
|
DKKoGnNiZqVij4iyRzn8C/s0Ayne1YXseGfTfjnCJHWBwf+wOYlrd3qtvOfybThc
|
||||||
|
C2NY442gBxJUejgg3VMmKyN8rrps7FK5lSPgqF+n69Z1eYqGhW5LpA8ioagb/eKe
|
||||||
|
tJq/op2caV7dN7y+X/I95EZd6K1ZABHAkXg/iPbfLWa9AptVZXrBAZ2/hG26ZKnz
|
||||||
|
7qKgKtSQ7+FJjchOKfhQDmHRo7cOtMsmIE46B7DVArOzeYw5vjdiBiEZEc+EYomt
|
||||||
|
7bI8NV1IfzSF8Ff5Jq/NDhls/3X2mnWesmvE/bn8QHJNlmhPtifamYvxZ6M+5P5h
|
||||||
|
v5wePljqtTqE13EXtE4oE3R2RtZ9YYAFCdosbctgXpLZI3vfcVi82Aw5wpKR7Mgs
|
||||||
|
Dco/DPEbfSe7O394opTOz2xaxIwFW4C27Tm+5k00HfpLbwBlaWFXFT2rCUvomAHt
|
||||||
|
R1YXQ22qc5/0gIJuPrKlg85AeEKS3gNlyMsP7wtWIbAk7wrQFaGcRR+kkyrXXSpy
|
||||||
|
lu5uNC74Zq0QPv3WArD5bxfOtnR21Gx+RIZH2JS0SQjhl8QPUA/2RjC+Lq66dynn
|
||||||
|
LfV8xk62PNeiPZJ6hY6D
|
||||||
|
=/btr
|
||||||
|
-----END PGP SIGNATURE-----
|
BIN
intellij-idea-community_2016.3.1-1_all.deb
Normal file
BIN
intellij-idea-community_2016.3.1-1_all.deb
Normal file
Binary file not shown.
100
intellij-idea-community_2016.3.1-1_amd64.build
Normal file
100
intellij-idea-community_2016.3.1-1_amd64.build
Normal file
|
@ -0,0 +1,100 @@
|
||||||
|
dpkg-buildpackage -rfakeroot -D -us -uc
|
||||||
|
dpkg-buildpackage: warning: debian/changelog(l5): badly formatted trailer line
|
||||||
|
LINE: -- Marcel Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz> Tue, 13 Dec 2016 21:13:17 +0100
|
||||||
|
dpkg-buildpackage: info: source package intellij-idea-community
|
||||||
|
dpkg-buildpackage: info: source version 2016.3.1-1
|
||||||
|
dpkg-buildpackage: info: source distribution yakkety
|
||||||
|
dpkg-buildpackage: info: source changed by Marcel Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz>
|
||||||
|
dpkg-source --before-build intellij-idea-community_2016.3.1
|
||||||
|
dpkg-buildpackage: info: host architecture amd64
|
||||||
|
dpkg-source: warning: intellij-idea-community_2016.3.1/debian/changelog(l5): badly formatted trailer line
|
||||||
|
LINE: -- Marcel Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz> Tue, 13 Dec 2016 21:13:17 +0100
|
||||||
|
fakeroot debian/rules clean
|
||||||
|
dh clean
|
||||||
|
dh_testdir
|
||||||
|
dh_auto_clean
|
||||||
|
dh_clean
|
||||||
|
dpkg-source -b intellij-idea-community_2016.3.1
|
||||||
|
dpkg-source: warning: intellij-idea-community_2016.3.1/debian/changelog(l5): badly formatted trailer line
|
||||||
|
LINE: -- Marcel Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz> Tue, 13 Dec 2016 21:13:17 +0100
|
||||||
|
dpkg-source: info: using source format '3.0 (quilt)'
|
||||||
|
dpkg-source: info: building intellij-idea-community using existing ./intellij-idea-community_2016.3.1.orig.tar.gz
|
||||||
|
dpkg-source: warning: intellij-idea-community_2016.3.1/debian/changelog(l5): badly formatted trailer line
|
||||||
|
LINE: -- Marcel Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz> Tue, 13 Dec 2016 21:13:17 +0100
|
||||||
|
dpkg-source: info: building intellij-idea-community in intellij-idea-community_2016.3.1-1.debian.tar.xz
|
||||||
|
dpkg-source: info: building intellij-idea-community in intellij-idea-community_2016.3.1-1.dsc
|
||||||
|
debian/rules build
|
||||||
|
dh build
|
||||||
|
dh_testdir
|
||||||
|
dh_update_autotools_config
|
||||||
|
dh_auto_configure
|
||||||
|
dh_auto_build
|
||||||
|
dh_auto_test
|
||||||
|
fakeroot debian/rules binary
|
||||||
|
dh binary
|
||||||
|
dh_testroot
|
||||||
|
dh_prep
|
||||||
|
dh_auto_install
|
||||||
|
dh_install
|
||||||
|
dh_installdocs
|
||||||
|
dh_installchangelogs
|
||||||
|
dpkg-parsechangelog: warning: debian/changelog(l5): badly formatted trailer line
|
||||||
|
LINE: -- Marcel Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz> Tue, 13 Dec 2016 21:13:17 +0100
|
||||||
|
dh_icons
|
||||||
|
dh_perl
|
||||||
|
dh_link
|
||||||
|
dh_strip_nondeterminism
|
||||||
|
dh_compress
|
||||||
|
dh_fixperms
|
||||||
|
dh_installdeb
|
||||||
|
dh_gencontrol
|
||||||
|
dpkg-gencontrol: warning: debian/changelog(l5): badly formatted trailer line
|
||||||
|
LINE: -- Marcel Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz> Tue, 13 Dec 2016 21:13:17 +0100
|
||||||
|
dh_md5sums
|
||||||
|
dh_builddeb
|
||||||
|
dpkg-deb: building package 'intellij-idea-community' in '../intellij-idea-community_2016.3.1-1_all.deb'.
|
||||||
|
dpkg-genchanges >../intellij-idea-community_2016.3.1-1_amd64.changes
|
||||||
|
dpkg-genchanges: warning: debian/changelog(l5): badly formatted trailer line
|
||||||
|
LINE: -- Marcel Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz> Tue, 13 Dec 2016 21:13:17 +0100
|
||||||
|
dpkg-genchanges: warning: debian/changelog(l5): badly formatted trailer line
|
||||||
|
LINE: -- Marcel Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz> Tue, 13 Dec 2016 21:13:17 +0100
|
||||||
|
dpkg-genchanges: warning: debian/changelog(l11): badly formatted trailer line
|
||||||
|
LINE: -- Marcel Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz> Thu, 24 Nov 2016 21:21:17 +0100
|
||||||
|
dpkg-genchanges: info: including full source code in upload
|
||||||
|
dpkg-source --after-build intellij-idea-community_2016.3.1
|
||||||
|
dpkg-source: warning: intellij-idea-community_2016.3.1/debian/changelog(l5): badly formatted trailer line
|
||||||
|
LINE: -- Marcel Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz> Tue, 13 Dec 2016 21:13:17 +0100
|
||||||
|
dpkg-buildpackage: info: full upload (original source is included)
|
||||||
|
Now running lintian...
|
||||||
|
W: intellij-idea-community source: maintainer-script-lacks-debhelper-token debian/postinst
|
||||||
|
W: intellij-idea-community source: maintainer-script-lacks-debhelper-token debian/postrm
|
||||||
|
W: intellij-idea-community source: maintainer-script-lacks-debhelper-token debian/preinst
|
||||||
|
W: intellij-idea-community source: syntax-error-in-dep5-copyright line 18: Continuation line outside a paragraph (maybe line 17 should be " .").
|
||||||
|
W: intellij-idea-community source: ancient-standards-version 3.9.6 (current is 3.9.8)
|
||||||
|
W: intellij-idea-community: syntax-error-in-debian-changelog line 5 "badly formatted trailer line"
|
||||||
|
W: intellij-idea-community: syntax-error-in-debian-changelog line 11 "badly formatted trailer line"
|
||||||
|
W: intellij-idea-community: syntax-error-in-debian-changelog line 17 "badly formatted trailer line"
|
||||||
|
W: intellij-idea-community: syntax-error-in-debian-changelog line 23 "badly formatted trailer line"
|
||||||
|
W: intellij-idea-community: syntax-error-in-debian-changelog line 29 "badly formatted trailer line"
|
||||||
|
W: intellij-idea-community: syntax-error-in-debian-changelog line 35 "badly formatted trailer line"
|
||||||
|
W: intellij-idea-community: syntax-error-in-debian-changelog line 41 "badly formatted trailer line"
|
||||||
|
W: intellij-idea-community: syntax-error-in-debian-changelog line 47 "badly formatted trailer line"
|
||||||
|
W: intellij-idea-community: syntax-error-in-debian-changelog line 53 "badly formatted trailer line"
|
||||||
|
W: intellij-idea-community: syntax-error-in-debian-changelog line 59 "badly formatted trailer line"
|
||||||
|
W: intellij-idea-community: syntax-error-in-debian-changelog line 65 "badly formatted trailer line"
|
||||||
|
W: intellij-idea-community: syntax-error-in-debian-changelog line 71 "badly formatted trailer line"
|
||||||
|
W: intellij-idea-community: syntax-error-in-debian-changelog line 77 "badly formatted trailer line"
|
||||||
|
W: intellij-idea-community: syntax-error-in-debian-changelog line 83 "badly formatted trailer line"
|
||||||
|
W: intellij-idea-community: syntax-error-in-debian-changelog line 89 "badly formatted trailer line"
|
||||||
|
W: intellij-idea-community: syntax-error-in-debian-changelog line 96 "badly formatted trailer line"
|
||||||
|
W: intellij-idea-community: syntax-error-in-debian-changelog line 102 "badly formatted trailer line"
|
||||||
|
W: intellij-idea-community: syntax-error-in-debian-changelog line 108 "badly formatted trailer line"
|
||||||
|
E: intellij-idea-community: copyright-file-contains-full-apache-2-license
|
||||||
|
E: intellij-idea-community: description-is-pkg-name IntelliJ IDEA Community
|
||||||
|
W: intellij-idea-community: script-with-language-extension usr/bin/intellij-idea-community.sh
|
||||||
|
W: intellij-idea-community: binary-without-manpage usr/bin/intellij-idea-community.sh
|
||||||
|
W: intellij-idea-community: desktop-command-not-in-package usr/share/applications/intellij-idea-community.desktop intellij-idea-community
|
||||||
|
W: intellij-idea-community: maintainer-script-ignores-errors postinst
|
||||||
|
W: intellij-idea-community: maintainer-script-ignores-errors postrm
|
||||||
|
W: intellij-idea-community: maintainer-script-ignores-errors preinst
|
||||||
|
Finished running lintian.
|
31
intellij-idea-community_2016.3.1-1_amd64.changes
Normal file
31
intellij-idea-community_2016.3.1-1_amd64.changes
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
Format: 1.8
|
||||||
|
Date: Tue, 13 Dec 2016 21:13:17 +0100
|
||||||
|
Source: intellij-idea-community
|
||||||
|
Binary: intellij-idea-community
|
||||||
|
Architecture: source all
|
||||||
|
Version: 2016.3.1-1
|
||||||
|
Distribution: yakkety
|
||||||
|
Urgency: low
|
||||||
|
Maintainer: Marcel Michael Kapfer <marcelmichaelkapfer@yahoo.co.nz>
|
||||||
|
Changed-By: Marcel Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz>
|
||||||
|
Description:
|
||||||
|
intellij-idea-community - IntelliJ IDEA Community
|
||||||
|
Changes:
|
||||||
|
intellij-idea-community (2016.3.1-1) yakkety; urgency=low
|
||||||
|
.
|
||||||
|
* Upstream Version 2016.3.1
|
||||||
|
Checksums-Sha1:
|
||||||
|
76ea63fa9e376bd2b6b9c5ae36ba1eabe4105daa 957 intellij-idea-community_2016.3.1-1.dsc
|
||||||
|
24860fcf28517431be055b7b8f20b0dea8b08f84 5637 intellij-idea-community_2016.3.1.orig.tar.gz
|
||||||
|
e5d74fea54227398b6ebd33290b392e92af16eb3 5756 intellij-idea-community_2016.3.1-1.debian.tar.xz
|
||||||
|
d2bff46e004c8b5d5f1e942b7e70c958e9790cb3 11890 intellij-idea-community_2016.3.1-1_all.deb
|
||||||
|
Checksums-Sha256:
|
||||||
|
d9080b85119efc19a42715d6e14f0e1fa5365d8b9a9d3332a9c2efa84cc91b78 957 intellij-idea-community_2016.3.1-1.dsc
|
||||||
|
41958f809fdb7ce6640143c04c88233d51ab86e66be5c0a9e30e846af332550b 5637 intellij-idea-community_2016.3.1.orig.tar.gz
|
||||||
|
7bc9d1a3efe2b34edb99bcf17ea9029aa657417dd01b0d72fca423858f844214 5756 intellij-idea-community_2016.3.1-1.debian.tar.xz
|
||||||
|
59615f0a12466f15d2112b060dd6bb2658bcbd804330e2dd27854087fd0fde0b 11890 intellij-idea-community_2016.3.1-1_all.deb
|
||||||
|
Files:
|
||||||
|
4a330cd756bd9d1f2798f8c1c869e501 957 devel optional intellij-idea-community_2016.3.1-1.dsc
|
||||||
|
e105950dd78a2260639bd06b848e4f3d 5637 devel optional intellij-idea-community_2016.3.1.orig.tar.gz
|
||||||
|
135cc43360d52f8209e758142befa300 5756 devel optional intellij-idea-community_2016.3.1-1.debian.tar.xz
|
||||||
|
59a559250d8af2527999332f32563e44 11890 devel optional intellij-idea-community_2016.3.1-1_all.deb
|
BIN
intellij-idea-community_2016.3.1.orig.tar.gz
Normal file
BIN
intellij-idea-community_2016.3.1.orig.tar.gz
Normal file
Binary file not shown.
139
intellij-idea-community_2016.3.1/debian/changelog
Normal file
139
intellij-idea-community_2016.3.1/debian/changelog
Normal file
|
@ -0,0 +1,139 @@
|
||||||
|
intellij-idea-community (2016.3.1-1) yakkety; urgency=low
|
||||||
|
|
||||||
|
* Upstream Version 2016.3.1
|
||||||
|
|
||||||
|
-- Marcel Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz> Tue, 13 Dec 2016 21:13:17 +0100
|
||||||
|
|
||||||
|
intellij-idea-community (2016.3-1) yakkety; urgency=low
|
||||||
|
|
||||||
|
* Upstream Version 2016.3
|
||||||
|
|
||||||
|
-- Marcel Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz> Thu, 24 Nov 2016 21:21:17 +0100
|
||||||
|
|
||||||
|
intellij-idea-community (2016.2.5-1) yakkety; urgency=low
|
||||||
|
|
||||||
|
* Upstream Version 2016.2.5
|
||||||
|
|
||||||
|
-- Andy Balaam (andybalaam) <mail@artificialworlds.net> Thu, 20 Oct 2016 09:27:23 +0100
|
||||||
|
|
||||||
|
intellij-idea-community (2016.2.4-1) yakkety; urgency=low
|
||||||
|
|
||||||
|
* Upstream Version 2016.2.4
|
||||||
|
|
||||||
|
-- Francesco Levorato (flevour) <git@flevour.net> Thu, 06 Oct 2016 10:34:00 +0200
|
||||||
|
|
||||||
|
intellij-idea-community (2016.2.3-1) yakkety; urgency=low
|
||||||
|
|
||||||
|
* Upstream Version 2016.2.3
|
||||||
|
|
||||||
|
-- Marcel Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz> Sat, 03 Sep 2016 23:45:30 +0200
|
||||||
|
|
||||||
|
intellij-idea-community (2016.2.2-1) yakkety; urgency=low
|
||||||
|
|
||||||
|
* Upstream Version 2016.2.2
|
||||||
|
|
||||||
|
-- Marcel Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz> Fri, 19 Aug 2016 20:56:30 +0200
|
||||||
|
|
||||||
|
intellij-idea-community (2016.2.1-1) yakkety; urgency=low
|
||||||
|
|
||||||
|
* Upstream Version 2016.2.1
|
||||||
|
|
||||||
|
-- Marcel Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz> Mon, 08 Aug 2016 21:21:30 +0200
|
||||||
|
|
||||||
|
intellij-idea-community (2016.2.0-1) yakkety; urgency=low
|
||||||
|
|
||||||
|
* Upstream Version 2016.2.0
|
||||||
|
|
||||||
|
-- Marcel Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz> Wed, 13 Jul 2016 19:38:30 +0200
|
||||||
|
|
||||||
|
intellij-idea-community (2016.1.3-1) xenial; urgency=low
|
||||||
|
|
||||||
|
* Upstream Version 2016.1.3
|
||||||
|
|
||||||
|
-- Marcel Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz> Tue, 07 Jun 2016 08:49:30 +0200
|
||||||
|
|
||||||
|
intellij-idea-community (2016.1.2-1) xenial; urgency=high
|
||||||
|
|
||||||
|
* Upstream Version 2016.1.2
|
||||||
|
|
||||||
|
-- Marcel Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz> Wed, 11 May 2016 17:12:30 +0200
|
||||||
|
|
||||||
|
intellij-idea-community (2016.1.1-1) wily; urgency=low
|
||||||
|
|
||||||
|
* Upstream Version 2016.1.1
|
||||||
|
|
||||||
|
-- Marcel Michael Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz> Sun, 03 Apr 2016 20:31:50 +0200
|
||||||
|
|
||||||
|
intellij-idea-community (2016.1-1) wily; urgency=low
|
||||||
|
|
||||||
|
* Upstream Version 2016.1
|
||||||
|
|
||||||
|
-- Marcel Michael Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz> Mon, 21 Mar 2016 17:44:50 +0200
|
||||||
|
|
||||||
|
intellij-idea-community (15.0.4-1) wily; urgency=low
|
||||||
|
|
||||||
|
* Upstream Version 15.0.4
|
||||||
|
|
||||||
|
-- Marcel Michael Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz> Tue, 01 Mar 2016 19:44:50 +0200
|
||||||
|
|
||||||
|
intellij-idea-community (15.0.3-1) wily; urgency=low
|
||||||
|
|
||||||
|
* Upstream Version 15.0.3
|
||||||
|
|
||||||
|
-- Marcel Michael Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz> Wed, 20 Jan 2015 15:01:50 +0100
|
||||||
|
|
||||||
|
intellij-idea-community (15.0.2-1) wily; urgency=low
|
||||||
|
|
||||||
|
* Upstream Version 15.0.2
|
||||||
|
|
||||||
|
-- Marcel Michael Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz> Sun, 13 Dec 2015 13:28:50 +0100
|
||||||
|
|
||||||
|
|
||||||
|
intellij-idea-community (15.0.1-1) wily; urgency=low
|
||||||
|
|
||||||
|
* Upstream Version 15.0.1
|
||||||
|
|
||||||
|
-- Bart de Koning <bratdaking@gmail.com> Tue, 08 Dec 2015 11:42:22 +0100
|
||||||
|
|
||||||
|
intellij-idea-community (15.0.0-1) wily; urgency=low
|
||||||
|
|
||||||
|
* Upstream Version 15.0
|
||||||
|
|
||||||
|
-- Marcel Michael Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz> Fri, 06 Nov 2015 14:35:50 +0100
|
||||||
|
|
||||||
|
intellij-idea-community (14.1.4-1) vivid; urgency=low
|
||||||
|
|
||||||
|
* Upstream Version 14.1.4
|
||||||
|
|
||||||
|
-- Marcel Michael Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz> Sun, 05 Jul 2015 21:15:50 +0200
|
||||||
|
|
||||||
|
intellij-idea-community (14.1.3-1) vivid; urgency=low
|
||||||
|
|
||||||
|
* Upstream Vesion 14.1.3
|
||||||
|
|
||||||
|
-- Marcel Michael Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz> Sun, 17 May 2015 11:23:50 +0200
|
||||||
|
|
||||||
|
intellij-idea-community (14.1.2-1) vivid; urgency=low
|
||||||
|
|
||||||
|
* Upstream Vesion 14.1.2
|
||||||
|
|
||||||
|
-- Marcel Michael Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz> Sun, 26 Apr 2015 10:31:50 +0200
|
||||||
|
|
||||||
|
intellij-idea-community (14.1.1-1) vivid; urgency=low
|
||||||
|
|
||||||
|
* Upstream Version 14.1.1
|
||||||
|
|
||||||
|
-- Marcel Michael Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz> Thur, 02 Apr 2015 12:50:50 +0200
|
||||||
|
|
||||||
|
|
||||||
|
intellij-idea-community (1.1-1) vivid; urgency=low
|
||||||
|
|
||||||
|
* Upstream Version 14.1
|
||||||
|
|
||||||
|
-- Marcel Michael Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz> Mon, 30 Mar 2015 08:14:50 +0200
|
||||||
|
|
||||||
|
intellij-idea-community (1.0-1) utopic; urgency=low
|
||||||
|
|
||||||
|
* Initial release.
|
||||||
|
|
||||||
|
-- Marcel Michael Kapfer <marcelmichaelkapfer@yahoo.co.nz> Sat, 07 Mar 2015 19:35:50 +0100
|
1
intellij-idea-community_2016.3.1/debian/compat
Normal file
1
intellij-idea-community_2016.3.1/debian/compat
Normal file
|
@ -0,0 +1 @@
|
||||||
|
9
|
13
intellij-idea-community_2016.3.1/debian/control
Normal file
13
intellij-idea-community_2016.3.1/debian/control
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
Source: intellij-idea-community
|
||||||
|
Section: devel
|
||||||
|
Priority: optional
|
||||||
|
Maintainer: Marcel Michael Kapfer <marcelmichaelkapfer@yahoo.co.nz>
|
||||||
|
Build-Depends: debhelper (>= 7.0.50~)
|
||||||
|
Standards-Version: 3.9.6
|
||||||
|
|
||||||
|
|
||||||
|
Package: intellij-idea-community
|
||||||
|
Architecture: all
|
||||||
|
Depends: ${misc:Depends}, lib32ncurses5 | libncurses5, default-jdk | oracle-java7-installer | oracle-java8-installer, libc6-i386, lib32stdc++6, lib32gcc1, lib32ncurses5, lib32z1, lib32z1-dev, unzip
|
||||||
|
Description: IntelliJ IDEA Community
|
||||||
|
A intelligent Java IDE by JetBrains
|
233
intellij-idea-community_2016.3.1/debian/copyright
Normal file
233
intellij-idea-community_2016.3.1/debian/copyright
Normal file
|
@ -0,0 +1,233 @@
|
||||||
|
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||||
|
Upstream-Name: intellij-idea-community
|
||||||
|
Source: https://github.com/mmk2410/intellij-idea-community
|
||||||
|
|
||||||
|
Files: *
|
||||||
|
Copyright: JetBrains s.r.o.
|
||||||
|
License: Apache 2
|
||||||
|
|
||||||
|
Files: debian/*
|
||||||
|
Copyright: 2015 Marcel Michael Kapfer <marcelmichaelkapfer@yahoo.co.nz>
|
||||||
|
License: GPL-3+
|
||||||
|
|
||||||
|
License: Apache
|
||||||
|
Apache License
|
||||||
|
Version 2.0, January 2004
|
||||||
|
http://www.apache.org/licenses/
|
||||||
|
|
||||||
|
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||||
|
|
||||||
|
1. Definitions.
|
||||||
|
|
||||||
|
"License" shall mean the terms and conditions for use, reproduction,
|
||||||
|
and distribution as defined by Sections 1 through 9 of this document.
|
||||||
|
|
||||||
|
"Licensor" shall mean the copyright owner or entity authorized by
|
||||||
|
the copyright owner that is granting the License.
|
||||||
|
|
||||||
|
"Legal Entity" shall mean the union of the acting entity and all
|
||||||
|
other entities that control, are controlled by, or are under common
|
||||||
|
control with that entity. For the purposes of this definition,
|
||||||
|
"control" means (i) the power, direct or indirect, to cause the
|
||||||
|
direction or management of such entity, whether by contract or
|
||||||
|
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||||
|
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||||
|
|
||||||
|
"You" (or "Your") shall mean an individual or Legal Entity
|
||||||
|
exercising permissions granted by this License.
|
||||||
|
|
||||||
|
"Source" form shall mean the preferred form for making modifications,
|
||||||
|
including but not limited to software source code, documentation
|
||||||
|
source, and configuration files.
|
||||||
|
|
||||||
|
"Object" form shall mean any form resulting from mechanical
|
||||||
|
transformation or translation of a Source form, including but
|
||||||
|
not limited to compiled object code, generated documentation,
|
||||||
|
and conversions to other media types.
|
||||||
|
|
||||||
|
"Work" shall mean the work of authorship, whether in Source or
|
||||||
|
Object form, made available under the License, as indicated by a
|
||||||
|
copyright notice that is included in or attached to the work
|
||||||
|
(an example is provided in the Appendix below).
|
||||||
|
|
||||||
|
"Derivative Works" shall mean any work, whether in Source or Object
|
||||||
|
form, that is based on (or derived from) the Work and for which the
|
||||||
|
editorial revisions, annotations, elaborations, or other modifications
|
||||||
|
represent, as a whole, an original work of authorship. For the purposes
|
||||||
|
of this License, Derivative Works shall not include works that remain
|
||||||
|
separable from, or merely link (or bind by name) to the interfaces of,
|
||||||
|
the Work and Derivative Works thereof.
|
||||||
|
|
||||||
|
"Contribution" shall mean any work of authorship, including
|
||||||
|
the original version of the Work and any modifications or additions
|
||||||
|
to that Work or Derivative Works thereof, that is intentionally
|
||||||
|
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||||
|
or by an individual or Legal Entity authorized to submit on behalf of
|
||||||
|
the copyright owner. For the purposes of this definition, "submitted"
|
||||||
|
means any form of electronic, verbal, or written communication sent
|
||||||
|
to the Licensor or its representatives, including but not limited to
|
||||||
|
communication on electronic mailing lists, source code control systems,
|
||||||
|
and issue tracking systems that are managed by, or on behalf of, the
|
||||||
|
Licensor for the purpose of discussing and improving the Work, but
|
||||||
|
excluding communication that is conspicuously marked or otherwise
|
||||||
|
designated in writing by the copyright owner as "Not a Contribution."
|
||||||
|
|
||||||
|
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||||
|
on behalf of whom a Contribution has been received by Licensor and
|
||||||
|
subsequently incorporated within the Work.
|
||||||
|
|
||||||
|
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||||
|
this License, each Contributor hereby grants to You a perpetual,
|
||||||
|
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||||
|
copyright license to reproduce, prepare Derivative Works of,
|
||||||
|
publicly display, publicly perform, sublicense, and distribute the
|
||||||
|
Work and such Derivative Works in Source or Object form.
|
||||||
|
|
||||||
|
3. Grant of Patent License. Subject to the terms and conditions of
|
||||||
|
this License, each Contributor hereby grants to You a perpetual,
|
||||||
|
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||||
|
(except as stated in this section) patent license to make, have made,
|
||||||
|
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||||
|
where such license applies only to those patent claims licensable
|
||||||
|
by such Contributor that are necessarily infringed by their
|
||||||
|
Contribution(s) alone or by combination of their Contribution(s)
|
||||||
|
with the Work to which such Contribution(s) was submitted. If You
|
||||||
|
institute patent litigation against any entity (including a
|
||||||
|
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||||
|
or a Contribution incorporated within the Work constitutes direct
|
||||||
|
or contributory patent infringement, then any patent licenses
|
||||||
|
granted to You under this License for that Work shall terminate
|
||||||
|
as of the date such litigation is filed.
|
||||||
|
|
||||||
|
4. Redistribution. You may reproduce and distribute copies of the
|
||||||
|
Work or Derivative Works thereof in any medium, with or without
|
||||||
|
modifications, and in Source or Object form, provided that You
|
||||||
|
meet the following conditions:
|
||||||
|
|
||||||
|
(a) You must give any other recipients of the Work or
|
||||||
|
Derivative Works a copy of this License; and
|
||||||
|
|
||||||
|
(b) You must cause any modified files to carry prominent notices
|
||||||
|
stating that You changed the files; and
|
||||||
|
|
||||||
|
(c) You must retain, in the Source form of any Derivative Works
|
||||||
|
that You distribute, all copyright, patent, trademark, and
|
||||||
|
attribution notices from the Source form of the Work,
|
||||||
|
excluding those notices that do not pertain to any part of
|
||||||
|
the Derivative Works; and
|
||||||
|
|
||||||
|
(d) If the Work includes a "NOTICE" text file as part of its
|
||||||
|
distribution, then any Derivative Works that You distribute must
|
||||||
|
include a readable copy of the attribution notices contained
|
||||||
|
within such NOTICE file, excluding those notices that do not
|
||||||
|
pertain to any part of the Derivative Works, in at least one
|
||||||
|
of the following places: within a NOTICE text file distributed
|
||||||
|
as part of the Derivative Works; within the Source form or
|
||||||
|
documentation, if provided along with the Derivative Works; or,
|
||||||
|
within a display generated by the Derivative Works, if and
|
||||||
|
wherever such third-party notices normally appear. The contents
|
||||||
|
of the NOTICE file are for informational purposes only and
|
||||||
|
do not modify the License. You may add Your own attribution
|
||||||
|
notices within Derivative Works that You distribute, alongside
|
||||||
|
or as an addendum to the NOTICE text from the Work, provided
|
||||||
|
that such additional attribution notices cannot be construed
|
||||||
|
as modifying the License.
|
||||||
|
|
||||||
|
You may add Your own copyright statement to Your modifications and
|
||||||
|
may provide additional or different license terms and conditions
|
||||||
|
for use, reproduction, or distribution of Your modifications, or
|
||||||
|
for any such Derivative Works as a whole, provided Your use,
|
||||||
|
reproduction, and distribution of the Work otherwise complies with
|
||||||
|
the conditions stated in this License.
|
||||||
|
|
||||||
|
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||||
|
any Contribution intentionally submitted for inclusion in the Work
|
||||||
|
by You to the Licensor shall be under the terms and conditions of
|
||||||
|
this License, without any additional terms or conditions.
|
||||||
|
Notwithstanding the above, nothing herein shall supersede or modify
|
||||||
|
the terms of any separate license agreement you may have executed
|
||||||
|
with Licensor regarding such Contributions.
|
||||||
|
|
||||||
|
6. Trademarks. This License does not grant permission to use the trade
|
||||||
|
names, trademarks, service marks, or product names of the Licensor,
|
||||||
|
except as required for reasonable and customary use in describing the
|
||||||
|
origin of the Work and reproducing the content of the NOTICE file.
|
||||||
|
|
||||||
|
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||||
|
agreed to in writing, Licensor provides the Work (and each
|
||||||
|
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||||
|
implied, including, without limitation, any warranties or conditions
|
||||||
|
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||||
|
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||||
|
appropriateness of using or redistributing the Work and assume any
|
||||||
|
risks associated with Your exercise of permissions under this License.
|
||||||
|
|
||||||
|
8. Limitation of Liability. In no event and under no legal theory,
|
||||||
|
whether in tort (including negligence), contract, or otherwise,
|
||||||
|
unless required by applicable law (such as deliberate and grossly
|
||||||
|
negligent acts) or agreed to in writing, shall any Contributor be
|
||||||
|
liable to You for damages, including any direct, indirect, special,
|
||||||
|
incidental, or consequential damages of any character arising as a
|
||||||
|
result of this License or out of the use or inability to use the
|
||||||
|
Work (including but not limited to damages for loss of goodwill,
|
||||||
|
work stoppage, computer failure or malfunction, or any and all
|
||||||
|
other commercial damages or losses), even if such Contributor
|
||||||
|
has been advised of the possibility of such damages.
|
||||||
|
|
||||||
|
9. Accepting Warranty or Additional Liability. While redistributing
|
||||||
|
the Work or Derivative Works thereof, You may choose to offer,
|
||||||
|
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||||
|
or other liability obligations and/or rights consistent with this
|
||||||
|
License. However, in accepting such obligations, You may act only
|
||||||
|
on Your own behalf and on Your sole responsibility, not on behalf
|
||||||
|
of any other Contributor, and only if You agree to indemnify,
|
||||||
|
defend, and hold each Contributor harmless for any liability
|
||||||
|
incurred by, or claims asserted against, such Contributor by reason
|
||||||
|
of your accepting any such warranty or additional liability.
|
||||||
|
|
||||||
|
END OF TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
APPENDIX: How to apply the Apache License to your work.
|
||||||
|
|
||||||
|
To apply the Apache License to your work, attach the following
|
||||||
|
boilerplate notice, with the fields enclosed by brackets "[]"
|
||||||
|
replaced with your own identifying information. (Don't include
|
||||||
|
the brackets!) The text should be enclosed in the appropriate
|
||||||
|
comment syntax for the file format. We also recommend that a
|
||||||
|
file or class name and description of purpose be included on the
|
||||||
|
same "printed page" as the copyright notice for easier
|
||||||
|
identification within third-party archives.
|
||||||
|
|
||||||
|
Copyright [yyyy] [name of copyright owner]
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
|
||||||
|
License: GPL-2+
|
||||||
|
This program is free software; you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation; either version 2 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
.
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
.
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this package; if not, write to the Free Software Foundation,
|
||||||
|
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
.
|
||||||
|
On Debian systems, the full text of the GNU General Public
|
||||||
|
License version 2 can be found in the file
|
||||||
|
`/usr/share/common-licenses/GPL-3'.
|
|
@ -1,3 +1,3 @@
|
||||||
intellij-idea-ce.png /usr/share/icons/
|
|
||||||
intellij-idea-community /usr/bin/
|
|
||||||
intellij-idea-community.desktop /usr/share/applications/
|
intellij-idea-community.desktop /usr/share/applications/
|
||||||
|
intellij-idea-ce.png /usr/share/icons/
|
||||||
|
intellij-idea-community.sh /usr/bin/
|
14
intellij-idea-community_2016.3.1/debian/postinst
Normal file
14
intellij-idea-community_2016.3.1/debian/postinst
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
#!/bin/bash
|
||||||
|
cd /opt/
|
||||||
|
|
||||||
|
## Extract the package
|
||||||
|
sudo tar xf /opt/ideaIC-*
|
||||||
|
|
||||||
|
## Rename the directory
|
||||||
|
sudo mv /opt/idea-IC-* /opt/intellij-idea-community
|
||||||
|
|
||||||
|
## Remove the tar.gz package
|
||||||
|
sudo rm /opt/ideaIC-*
|
||||||
|
|
||||||
|
## Make /usr/bin usable
|
||||||
|
sudo mv /usr/bin/intellij-idea-community.sh /usr/bin/intellij-idea-community
|
4
intellij-idea-community_2016.3.1/debian/postrm
Normal file
4
intellij-idea-community_2016.3.1/debian/postrm
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
## Remove the program folder
|
||||||
|
sudo rm -rf /opt/intellij-idea-community
|
5
intellij-idea-community_2016.3.1/debian/preinst
Normal file
5
intellij-idea-community_2016.3.1/debian/preinst
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
#!/bin/bash
|
||||||
|
cd /opt/
|
||||||
|
|
||||||
|
## Download IntelliJ IDEA Community from the jetbrain servers
|
||||||
|
wget http://download-cf.jetbrains.com/idea/ideaIC-2016.3.1.tar.gz
|
BIN
intellij-idea-community_2016.3.1/intellij-idea-ce.png
Normal file
BIN
intellij-idea-community_2016.3.1/intellij-idea-ce.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 5 KiB |
|
@ -6,5 +6,4 @@ Icon=intellij-idea-ce
|
||||||
Terminal=false
|
Terminal=false
|
||||||
Type=Application
|
Type=Application
|
||||||
Categories=Development;IDE;Java;
|
Categories=Development;IDE;Java;
|
||||||
Keywords=intellij;idea;community;java;ide
|
StartupWMClass=jetbrains-idea
|
||||||
StartupWMClass=jetbrains-idea-ce
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
#!/bin/sh
|
||||||
|
export IDEA_JDK=$JAVA_HOME
|
||||||
|
exec /opt/intellij-idea-community/bin/idea.sh "$@"
|
Binary file not shown.
Binary file not shown.
|
@ -1,823 +0,0 @@
|
||||||
intellij-idea-community (2025.1-1) oracular; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2025.1
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Wed, 16 Apr 2025 13:02:18 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2024.3.5-1) oracular; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2024.3.5
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Tue, 18 Mar 2025 14:02:11 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2024.3.4.1-1) oracular; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2024.3.4.1
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Thu, 06 Mar 2025 14:02:13 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2024.3.4-1) oracular; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2024.3.4
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Fri, 28 Feb 2025 14:02:33 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2024.3.3-1) oracular; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2024.3.3
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Thu, 13 Feb 2025 14:02:11 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2024.3.2.2-1) oracular; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2024.3.2.2
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Thu, 30 Jan 2025 14:02:14 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2024.3.2.1-1) oracular; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2024.3.2.1
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Fri, 24 Jan 2025 14:02:14 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2024.3.2-1) oracular; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2024.3.2
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Fri, 17 Jan 2025 14:02:16 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2024.3.1.1-1) oracular; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2024.3.1.1
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Thu, 19 Dec 2024 14:02:02 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2024.3.1-1) oracular; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2024.3.1
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Mon, 09 Dec 2024 14:02:30 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2024.3-1) noble; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2024.3
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Wed, 13 Nov 2024 14:02:08 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2024.2.4-1) noble; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2024.2.4
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Thu, 24 Oct 2024 13:01:57 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2024.2.3-1) noble; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2024.2.3
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Thu, 26 Sep 2024 13:02:05 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2024.2.2-1) noble; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2024.2.2
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Thu, 19 Sep 2024 13:02:11 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2024.2.1-1) noble; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2024.2.1
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Fri, 30 Aug 2024 13:02:05 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2024.2.0.2-1) noble; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2024.2.0.2
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Wed, 21 Aug 2024 13:02:14 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2024.2.0.1-1) noble; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2024.2.0.1
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Wed, 14 Aug 2024 13:02:13 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2024.2-1) noble; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2024.2
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Wed, 07 Aug 2024 13:02:16 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2024.1.5-1) noble; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2024.1.5
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Tue, 06 Aug 2024 13:02:58 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2024.1.4-1) noble; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2024.1.4
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Fri, 21 Jun 2024 13:02:06 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2024.1.3-1) noble; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2024.1.3
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Tue, 11 Jun 2024 13:02:20 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2024.1.2-1) lunar; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2024.1.2
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Thu, 23 May 2024 13:02:32 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2024.1.1-1) lunar; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2024.1.1
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Tue, 30 Apr 2024 13:02:13 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2024.1-1) lunar; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2024.1
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Thu, 04 Apr 2024 13:02:10 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2023.3.6-1) lunar; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2023.3.6
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Fri, 22 Mar 2024 14:02:38 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2023.3.5-1) lunar; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2023.3.5
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Wed, 13 Mar 2024 14:02:14 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2023.3.4-1) lunar; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2023.3.4
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Wed, 14 Feb 2024 14:02:18 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2023.3.3-1) lunar; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2023.3.3
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Fri, 26 Jan 2024 14:02:27 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2023.3.2-1) lunar; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2023.3.2
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Thu, 21 Dec 2023 14:02:13 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2023.3.1-1) lunar; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2023.3.1
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Wed, 13 Dec 2023 14:04:39 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2023.3-1) lunar; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2023.3
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Thu, 07 Dec 2023 14:02:23 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2023.2.5-1) lunar; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2023.2.5
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Fri, 10 Nov 2023 14:01:08 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2023.2.4-1) lunar; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2023.2.4
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Wed, 25 Oct 2023 13:01:18 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2023.2.3-1) lunar; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2023.2.3
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Thu, 12 Oct 2023 13:01:19 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2023.2.2-1) lunar; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2023.2.2
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Thu, 14 Sep 2023 13:01:13 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2023.2.1-1) lunar; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2023.2.1
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Thu, 24 Aug 2023 13:01:12 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2023.2-1) lunar; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2023.2
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Wed, 26 Jul 2023 17:48:37 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2023.1.4-1) lunar; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2023.1.4
|
|
||||||
|
|
||||||
-- autoupdate <opensource@mmk2410.org> Wed, 19 Jul 2023 21:47:07 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2023.1.3-1) lunar; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2023.1.3
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Wed, 21 Jun 2023 14:18:46 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2023.1.2-1) lunar; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2023.1.2
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Thu, 18 May 2023 11:17:25 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2023.1.1-1) lunar; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2023.1.1
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Tue, 02 May 2023 14:59:15 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2023.1-1) kinetic; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2023.1
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Fri, 31 Mar 2023 04:55:05 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2022.3.3-1) kinetic; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2022.3.3
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Mon, 13 Mar 2023 22:14:21 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2022.3.2-1) jammy; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2022.3.2
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Mon, 06 Feb 2023 17:59:49 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2022.3.1-1) jammy; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2022.3.1
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Fri, 23 Dec 2022 07:05:41 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2022.3-1) jammy; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2022.3
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Tue, 06 Dec 2022 17:21:55 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2022.2.4-1) jammy; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2022.2.4
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Wed, 23 Nov 2022 18:54:59 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2022.2.3-1) jammy; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2022.2.3
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Thu, 06 Oct 2022 17:32:56 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2022.2.2-1) jammy; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2022.2.2
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Fri, 16 Sep 2022 12:33:37 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2022.2.1-1) jammy; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2022.2.1
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Fri, 19 Aug 2022 17:42:53 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2022.2-1) jammy; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2022.2
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Mon, 01 Aug 2022 19:36:04 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2022.1.4-1) jammy; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2022.1.4
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Wed, 20 Jul 2022 13:45:38 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2022.1.3-1) impish; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2022.1.3
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Thu, 23 Jun 2022 08:25:24 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2022.1.2-1) impish; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2022.1.2
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Wed, 08 Jun 2022 20:20:13 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2022.1.1-1) impish; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2022.1.1
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Sat, 21 May 2022 14:21:31 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2022.1-1) impish; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2022.1
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Fri, 15 Apr 2022 09:02:45 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2021.3.3-1) impish; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2021.3.3
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Tue, 22 Mar 2022 19:09:30 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2021.3.2-1) impish; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2021.3.2
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Sat, 29 Jan 2022 11:11:44 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2021.3.1-1) impish; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2021.3.1
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Wed, 29 Dec 2021 15:33:20 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2021.3-1) impish; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2021.3
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Thu, 02 Dec 2021 17:37:32 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2021.2.3-1) impish; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2021.2.3
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Fri, 15 Oct 2021 18:06:03 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2021.2.2-1) hirsute; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2021.2.2
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Wed, 22 Sep 2021 19:53:27 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2021.2-1) hirsute; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2021.2
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Wed, 28 Jul 2021 05:52:49 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2021.1.3-1) hirsute; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2021.1.3
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Wed, 30 Jun 2021 07:32:47 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2021.1.2-1) hirsute; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2021.1.2
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Fri, 11 Jun 2021 13:48:22 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2021.1.1-1) groovy; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2021.1.1
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Tue, 04 May 2021 17:04:28 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2021.1-1) groovy; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2021.1
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Wed, 07 Apr 2021 18:08:24 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2020.3.3-1) groovy; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2020.3.3
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Tue, 23 Mar 2021 18:34:25 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2020.3.2-1) groovy; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2020.3.2
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Wed, 27 Jan 2021 21:02:02 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2020.3.1-1) groovy; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2020.3.1
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Fri, 15 Jan 2021 23:01:35 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2020.3-1) groovy; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2020.3
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Wed, 02 Dec 2020 14:48:31 +0100
|
|
||||||
|
|
||||||
intellij-idea-community (2020.2.4-1) focal; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2020.2.4
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Fri, 27 Nov 2020 16:00:46 +0100
|
|
||||||
|
|
||||||
intellij-idea-community (2020.2.2-1) focal; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2020.2.2
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Thu, 17 Sep 2020 13:26:58 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2020.2.1-1) focal; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2020.2.1
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Fri, 28 Aug 2020 20:21:05 +0200
|
|
||||||
|
|
||||||
intellij-idea-community (2020.2-1) focal; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2020.2
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Tue, 28 Jul 2020 19:43:53 +0200
|
|
||||||
|
|
||||||
intellij-idea-community (2020.1.4-1) focal; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2020.1.4
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Fri, 24 Jul 2020 21:37:15 +0200
|
|
||||||
|
|
||||||
intellij-idea-community (2020.1.3-1) focal; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2020.1.3
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Fri, 10 Jul 2020 22:52:52 +0200
|
|
||||||
|
|
||||||
intellij-idea-community (2020.1.2-1) focal; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2020.1.2
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Fri, 26 Jun 2020 18:37:09 +0200
|
|
||||||
|
|
||||||
intellij-idea-community (2019.3.4-1) eoan; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2019.3.4
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Sun, 29 Mar 2020 12:02:07 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2019.2-1) disco; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2019.2
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Fri, 26 Jul 2019 14:57:15 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2019.1.3-1) disco; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2019.1.3
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Wed, 29 May 2019 07:17:09 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2019.1.2-1) disco; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2019.1.2
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Thu, 16 May 2019 07:13:53 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2019.1.1-1) cosmic; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2019.1.1
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Tue, 23 Apr 2019 15:42:59 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2019.1-1) cosmic; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2019.1
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Sat, 13 Apr 2019 21:59:14 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2018.3.5-1) cosmic; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2018.3.5
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Wed, 27 Feb 2019 09:47:13 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2018.3.4-1) cosmic; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2018.3.4
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Mon, 04 Feb 2019 14:12:58 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2018.3.3-1) cosmic; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2018.3.3
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Fri, 11 Jan 2019 16:03:24 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2018.3.2-1) cosmic; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2018.3.2
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Thu, 03 Jan 2019 17:25:15 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2018.3.1-1) cosmic; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2018.3.1
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Sun, 09 Dec 2018 22:14:08 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2018.3-1) cosmic; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2018.3
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Sun, 25 Nov 2018 15:30:50 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2018.2.6-1) cosmic; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2018.2.6
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Sat, 17 Nov 2018 17:01:03 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2018.2.5-1) bionic; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2018.2.5
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Wed, 17 Oct 2018 10:05:18 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2018.2.4-1) bionic; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2018.2.4
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Thu, 20 Sep 2018 07:47:20 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2018.2.3-1) bionic; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2018.2.3
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Tue, 04 Sep 2018 17:01:14 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2018.2.2-1) bionic; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2018.2.2
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Mon, 03 Sep 2018 07:19:21 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2018.1.4-1) bionic; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2018.1.4
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Fri, 25 May 2018 23:37:24 +0200
|
|
||||||
|
|
||||||
intellij-idea-community (2018.1-1) artful; urgency=medium
|
|
||||||
|
|
||||||
* Upstream version 2018.1
|
|
||||||
|
|
||||||
-- Marcel Kapfer <opensource@mmk2410.org> Mon, 02 Apr 2018 06:35:50 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2017.3.5-1) artful; urgency=low
|
|
||||||
|
|
||||||
* Upstream Version 2017.3.5
|
|
||||||
|
|
||||||
-- Marcel Kapfer (mmk2410) <opensource@mmk2410.org> Wed, 14 Mar 2018 12:00:42 +0100
|
|
||||||
|
|
||||||
intellij-idea-community (2017.3.4-1) artful; urgency=low
|
|
||||||
|
|
||||||
* Upstream Version 2017.3.4
|
|
||||||
|
|
||||||
-- Marcel Kapfer (mmk2410) <opensource@mmk2410.org> Wed, 31 Jan 2018 11:05:53 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2017.3.3-1) artful; urgency=low
|
|
||||||
|
|
||||||
* Upstream Version 2017.3.3
|
|
||||||
|
|
||||||
-- Marcel Kapfer (mmk2410) <opensource@mmk2410.org> Sat, 20 Jan 2018 13:45:21 +0100
|
|
||||||
|
|
||||||
intellij-idea-community (2017.3-1) artful; urgency=low
|
|
||||||
|
|
||||||
* Upstream Version 2017.3
|
|
||||||
|
|
||||||
-- Marcel Kapfer (mmk2410) <opensource@mmk2410.org> Fri, 01 Dec 2017 07:17:15 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2017.2.6-1) artful; urgency=low
|
|
||||||
|
|
||||||
* Upstream Version 2017.2.6
|
|
||||||
|
|
||||||
-- Marcel Kapfer (mmk2410) <opensource@mmk2410.org> Fri, 17 Nov 2017 05:38:12 +0000
|
|
||||||
|
|
||||||
intellij-idea-community (2017.2.5-1) artful; urgency=low
|
|
||||||
|
|
||||||
* Upstream Version 2017.2.5
|
|
||||||
|
|
||||||
-- Marcel Kapfer (mmk2410) <opensource@mmk2410.org> Thu, 28 Sep 2017 08:49:17 +0200
|
|
||||||
|
|
||||||
intellij-idea-community (2017.2.4-1) artful; urgency=low
|
|
||||||
|
|
||||||
* Upstream Version 2017.2.4
|
|
||||||
|
|
||||||
-- Bart de Koning (bratdaking) <bratdaking@gmail.com> Thu, 14 Sep 2017 13:35:28 +0200
|
|
||||||
|
|
||||||
intellij-idea-community (2017.2.3-1) artful; urgency=low
|
|
||||||
|
|
||||||
* Upstream Version 2017.2.3
|
|
||||||
|
|
||||||
-- Bart de Koning (bratdaking) <bratdaking@gmail.com> Wed, 30 Aug 2017 11:39:30 +0200
|
|
||||||
|
|
||||||
intellij-idea-community (2017.1.5-1) yakkety; urgency=low
|
|
||||||
|
|
||||||
* Upstream Version 2017.1.5
|
|
||||||
|
|
||||||
-- Marcel Kapfer (mmk2410) <marcelmichaelkapfer@gmail.com> Wed, 12 Jul 2017 18:51:50 +0200
|
|
||||||
|
|
||||||
intellij-idea-community (2017.1.4-1) zesty; urgency=low
|
|
||||||
|
|
||||||
* Upstream Version 2017.1.4
|
|
||||||
|
|
||||||
-- Marcel Kapfer (mmk2410) <marcelmichaelkapfer@gmail.com> Thu, 08 Jun 2017 08:59:53 +0200
|
|
||||||
|
|
||||||
intellij-idea-community (2017.1.3-1) zesty; urgency=low
|
|
||||||
|
|
||||||
* Upstream Version 2017.1.3
|
|
||||||
|
|
||||||
-- Marcel Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz> Sat, 20 May 2017 10:44:29 +0200
|
|
||||||
|
|
||||||
intellij-idea-community (2017.1.2-1) zesty; urgency=low
|
|
||||||
|
|
||||||
* Upstream Version 2017.1.2
|
|
||||||
|
|
||||||
-- Marcel Kapfer (mmk2410) <marcelmichaelkapfer@gmail.com> Sat, 06 May 2017 11:49:03 +0200
|
|
||||||
|
|
||||||
intellij-idea-community (2017.1.1-1) zesty; urgency=low
|
|
||||||
|
|
||||||
* Upstream Version 2017.1.1
|
|
||||||
|
|
||||||
-- Marcel Kapfer (mmk2410) <marcelmichaelkapfer@gmail.com> Fri, 14 Apr 2017 21:50:34 +0100
|
|
||||||
|
|
||||||
intellij-idea-community (2017.1-1) yakkety; urgency=low
|
|
||||||
|
|
||||||
* Upstream Version 2017.1
|
|
||||||
|
|
||||||
-- Marcel Kapfer (mmk2410) <marcelmichaelkapfer@gmail.com> Fri, 24 Mar 2017 14:23:06 +0100
|
|
||||||
|
|
||||||
intellij-idea-community (2016.3.4-1) yakkety; urgency=low
|
|
||||||
|
|
||||||
* Upstream Version 2016.3.4
|
|
||||||
|
|
||||||
-- Marcel Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz> Thu, 02 Feb 2017 12:12:06 +0100
|
|
||||||
|
|
||||||
intellij-idea-community (2016.3.3-1) yakkety; urgency=low
|
|
||||||
|
|
||||||
* Upstream Version 2016.3.3
|
|
||||||
|
|
||||||
-- Marcel Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz> Thu, 19 Jan 2017 19:45:39 +0100
|
|
||||||
|
|
||||||
intellij-idea-community (2016.3.2-1) yakkety; urgency=low
|
|
||||||
|
|
||||||
* Upstream Version 2016.3.2
|
|
||||||
|
|
||||||
-- Marcel Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz> Fri, 30 Dec 2016 23:21:26 +0100
|
|
||||||
|
|
||||||
intellij-idea-community (2016.3.1-1) yakkety; urgency=low
|
|
||||||
|
|
||||||
* Upstream Version 2016.3.1
|
|
||||||
|
|
||||||
-- Marcel Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz> Tue, 13 Dec 2016 21:13:17 +0100
|
|
||||||
|
|
||||||
intellij-idea-community (2016.3-1) yakkety; urgency=low
|
|
||||||
|
|
||||||
* Upstream Version 2016.3
|
|
||||||
|
|
||||||
-- Marcel Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz> Thu, 24 Nov 2016 21:21:17 +0100
|
|
||||||
|
|
||||||
intellij-idea-community (2016.2.5-1) yakkety; urgency=low
|
|
||||||
|
|
||||||
* Upstream Version 2016.2.5
|
|
||||||
|
|
||||||
-- Andy Balaam (andybalaam) <mail@artificialworlds.net> Thu, 20 Oct 2016 09:27:23 +0100
|
|
||||||
|
|
||||||
intellij-idea-community (2016.2.4-1) yakkety; urgency=low
|
|
||||||
|
|
||||||
* Upstream Version 2016.2.4
|
|
||||||
|
|
||||||
-- Francesco Levorato (flevour) <git@flevour.net> Thu, 06 Oct 2016 10:34:00 +0200
|
|
||||||
|
|
||||||
intellij-idea-community (2016.2.3-1) yakkety; urgency=low
|
|
||||||
|
|
||||||
* Upstream Version 2016.2.3
|
|
||||||
|
|
||||||
-- Marcel Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz> Sat, 03 Sep 2016 23:45:30 +0200
|
|
||||||
|
|
||||||
intellij-idea-community (2016.2.2-1) yakkety; urgency=low
|
|
||||||
|
|
||||||
* Upstream Version 2016.2.2
|
|
||||||
|
|
||||||
-- Marcel Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz> Fri, 19 Aug 2016 20:56:30 +0200
|
|
||||||
|
|
||||||
intellij-idea-community (2016.2.1-1) yakkety; urgency=low
|
|
||||||
|
|
||||||
* Upstream Version 2016.2.1
|
|
||||||
|
|
||||||
-- Marcel Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz> Mon, 08 Aug 2016 21:21:30 +0200
|
|
||||||
|
|
||||||
intellij-idea-community (2016.2.0-1) yakkety; urgency=low
|
|
||||||
|
|
||||||
* Upstream Version 2016.2.0
|
|
||||||
|
|
||||||
-- Marcel Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz> Wed, 13 Jul 2016 19:38:30 +0200
|
|
||||||
|
|
||||||
intellij-idea-community (2016.1.3-1) xenial; urgency=low
|
|
||||||
|
|
||||||
* Upstream Version 2016.1.3
|
|
||||||
|
|
||||||
-- Marcel Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz> Tue, 07 Jun 2016 08:49:30 +0200
|
|
||||||
|
|
||||||
intellij-idea-community (2016.1.2-1) xenial; urgency=high
|
|
||||||
|
|
||||||
* Upstream Version 2016.1.2
|
|
||||||
|
|
||||||
-- Marcel Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz> Wed, 11 May 2016 17:12:30 +0200
|
|
||||||
|
|
||||||
intellij-idea-community (2016.1.1-1) wily; urgency=low
|
|
||||||
|
|
||||||
* Upstream Version 2016.1.1
|
|
||||||
|
|
||||||
-- Marcel Michael Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz> Sun, 03 Apr 2016 20:31:50 +0200
|
|
||||||
|
|
||||||
intellij-idea-community (2016.1-1) wily; urgency=low
|
|
||||||
|
|
||||||
* Upstream Version 2016.1
|
|
||||||
|
|
||||||
-- Marcel Michael Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz> Mon, 21 Mar 2016 17:44:50 +0200
|
|
||||||
|
|
||||||
intellij-idea-community (15.0.4-1) wily; urgency=low
|
|
||||||
|
|
||||||
* Upstream Version 15.0.4
|
|
||||||
|
|
||||||
-- Marcel Michael Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz> Tue, 01 Mar 2016 19:44:50 +0200
|
|
||||||
|
|
||||||
intellij-idea-community (15.0.3-1) wily; urgency=low
|
|
||||||
|
|
||||||
* Upstream Version 15.0.3
|
|
||||||
|
|
||||||
-- Marcel Michael Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz> Wed, 20 Jan 2015 15:01:50 +0100
|
|
||||||
|
|
||||||
intellij-idea-community (15.0.2-1) wily; urgency=low
|
|
||||||
|
|
||||||
* Upstream Version 15.0.2
|
|
||||||
|
|
||||||
-- Marcel Michael Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz> Sun, 13 Dec 2015 13:28:50 +0100
|
|
||||||
|
|
||||||
|
|
||||||
intellij-idea-community (15.0.1-1) wily; urgency=low
|
|
||||||
|
|
||||||
* Upstream Version 15.0.1
|
|
||||||
|
|
||||||
-- Bart de Koning <bratdaking@gmail.com> Tue, 08 Dec 2015 11:42:22 +0100
|
|
||||||
|
|
||||||
intellij-idea-community (15.0.0-1) wily; urgency=low
|
|
||||||
|
|
||||||
* Upstream Version 15.0
|
|
||||||
|
|
||||||
-- Marcel Michael Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz> Fri, 06 Nov 2015 14:35:50 +0100
|
|
||||||
|
|
||||||
intellij-idea-community (14.1.4-1) vivid; urgency=low
|
|
||||||
|
|
||||||
* Upstream Version 14.1.4
|
|
||||||
|
|
||||||
-- Marcel Michael Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz> Sun, 05 Jul 2015 21:15:50 +0200
|
|
||||||
|
|
||||||
intellij-idea-community (14.1.3-1) vivid; urgency=low
|
|
||||||
|
|
||||||
* Upstream Vesion 14.1.3
|
|
||||||
|
|
||||||
-- Marcel Michael Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz> Sun, 17 May 2015 11:23:50 +0200
|
|
||||||
|
|
||||||
intellij-idea-community (14.1.2-1) vivid; urgency=low
|
|
||||||
|
|
||||||
* Upstream Vesion 14.1.2
|
|
||||||
|
|
||||||
-- Marcel Michael Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz> Sun, 26 Apr 2015 10:31:50 +0200
|
|
||||||
|
|
||||||
intellij-idea-community (14.1.1-1) vivid; urgency=low
|
|
||||||
|
|
||||||
* Upstream Version 14.1.1
|
|
||||||
|
|
||||||
-- Marcel Michael Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz> Thur, 02 Apr 2015 12:50:50 +0200
|
|
||||||
|
|
||||||
|
|
||||||
intellij-idea-community (1.1-1) vivid; urgency=low
|
|
||||||
|
|
||||||
* Upstream Version 14.1
|
|
||||||
|
|
||||||
-- Marcel Michael Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz> Mon, 30 Mar 2015 08:14:50 +0200
|
|
||||||
|
|
||||||
intellij-idea-community (1.0-1) utopic; urgency=low
|
|
||||||
|
|
||||||
* Initial release.
|
|
||||||
|
|
||||||
-- Marcel Michael Kapfer <marcelmichaelkapfer@yahoo.co.nz> Sat, 07 Mar 2015 19:35:50 +0100
|
|
|
@ -1 +0,0 @@
|
||||||
10
|
|
|
@ -1,18 +0,0 @@
|
||||||
Source: intellij-idea-community
|
|
||||||
Section: devel
|
|
||||||
Priority: optional
|
|
||||||
Maintainer: Marcel Kapfer <opensource@mmk2410.org>
|
|
||||||
Build-Depends: debhelper (>= 9)
|
|
||||||
Standards-Version: 4.2.1
|
|
||||||
|
|
||||||
Package: intellij-idea-community
|
|
||||||
Architecture: all
|
|
||||||
Pre-Depends: wget
|
|
||||||
Depends: ${misc:Depends}
|
|
||||||
Suggests: git, default-jdk
|
|
||||||
Description: IntelliJ IDEA Community Edition
|
|
||||||
Every aspect of IntelliJ IDEA is specifically designed to maximize developer
|
|
||||||
productivity.
|
|
||||||
.
|
|
||||||
Together, the powerful static code analysis and ergonomic design make
|
|
||||||
development not only productive but also an enjoyable experience.
|
|
|
@ -1,44 +0,0 @@
|
||||||
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
|
||||||
Upstream-Name: intellij-idea-community
|
|
||||||
Source: https://gitlab.com/mmk2410/intellij-idea-community
|
|
||||||
|
|
||||||
Files: *
|
|
||||||
Copyright: JetBrains s.r.o.
|
|
||||||
License: Apache-2
|
|
||||||
|
|
||||||
Files: debian/*
|
|
||||||
Copyright: 2015-2017 Marcel Kapfer <opensource@mmk2410.org> and contributors
|
|
||||||
License: GPL-3+
|
|
||||||
|
|
||||||
License: Apache-2
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
you may not use this file except in compliance with the License.
|
|
||||||
You may obtain a copy of the License at
|
|
||||||
.
|
|
||||||
https://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
.
|
|
||||||
Unless required by applicable law or agreed to in writing, software
|
|
||||||
distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
See the License for the specific language governing permissions and
|
|
||||||
limitations under the License.
|
|
||||||
.
|
|
||||||
On Debian systems, the complete text of the Apache version 2.0 license
|
|
||||||
can be found in "/usr/share/common-licenses/Apache-2.0".
|
|
||||||
|
|
||||||
License: GPL-3+
|
|
||||||
This program is free software: you can redistribute it and/or modify
|
|
||||||
it under the terms of the GNU General Public License as published by
|
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
|
||||||
(at your option) any later version.
|
|
||||||
.
|
|
||||||
This package is distributed in the hope that it will be useful,
|
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
GNU General Public License for more details.
|
|
||||||
.
|
|
||||||
You should have received a copy of the GNU General Public License
|
|
||||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
.
|
|
||||||
On Debian systems, the complete text of the GNU General
|
|
||||||
Public License version 3 can be found in "/usr/share/common-licenses/GPL-3".
|
|
|
@ -1 +0,0 @@
|
||||||
intellij-idea-community
|
|
|
@ -1,21 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
cd /opt/
|
|
||||||
|
|
||||||
## Extract the package
|
|
||||||
tar xf /opt/ideaIC-2025.1.tar.gz
|
|
||||||
|
|
||||||
## Rename the directory
|
|
||||||
mv /opt/idea-IC-* /opt/intellij-idea-community
|
|
||||||
|
|
||||||
## Remove the tar.gz package
|
|
||||||
rm /opt/ideaIC-2025.1.tar.gz
|
|
||||||
|
|
||||||
## Install the .desktop file, if necessary
|
|
||||||
if [ -x "/usr/bin/desktop-file-install" ]; then
|
|
||||||
desktop-file-install /usr/share/applications/intellij-idea-community.desktop
|
|
||||||
fi
|
|
||||||
|
|
||||||
##DEBHELPER##
|
|
|
@ -1,8 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
## Remove the program folder
|
|
||||||
rm -rf /opt/intellij-idea-community
|
|
||||||
|
|
||||||
##DEBHELPER##
|
|
|
@ -1,10 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
cd /opt/
|
|
||||||
|
|
||||||
## Download IntelliJ IDEA Community from the JetBrain servers
|
|
||||||
wget -c https://download-cf.jetbrains.com/idea/ideaIC-2025.1.tar.gz
|
|
||||||
|
|
||||||
##DEBHELPER##
|
|
|
@ -1,4 +0,0 @@
|
||||||
version=4
|
|
||||||
opts="searchmode=plain" \
|
|
||||||
https://data.services.jetbrains.com/products/releases?code=IIC&latest=true&type=release \
|
|
||||||
https://download.jetbrains.com/idea/ideaIC-(\d[\d\.]*).tar.gz
|
|
Binary file not shown.
Before Width: | Height: | Size: 5.3 KiB |
|
@ -1,3 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
export IDEA_JDK=$JAVA_HOME
|
|
||||||
exec /opt/intellij-idea-community/bin/idea "$@"
|
|
|
@ -1,44 +1,37 @@
|
||||||
#!/usr/bin/env bash
|
#!/bin/bash
|
||||||
#
|
function main {
|
||||||
# This script intends to decrease the effort of updating the package.
|
local old=$1
|
||||||
|
local new=$2
|
||||||
|
local now=`date -R`
|
||||||
|
local author=`git config --get user.name`
|
||||||
|
local email=`git config --get user.email`
|
||||||
|
local username=`git config --get remote.origin.url | sed 's,.*:\(.*\)/.*,\1,'`
|
||||||
|
local tempfile=`tempfile`
|
||||||
|
|
||||||
set -euo pipefail
|
git checkout -b version-$new
|
||||||
|
|
||||||
# Check if running Ubuntu
|
mv intellij-idea-community_{$old,$new}
|
||||||
grep -q Ubuntu /etc/issue
|
mv intellij-idea-community_{$old,$new}.orig.tar.gz
|
||||||
if [[ $? != 0 ]]; then
|
|
||||||
echo "System is not running Ubuntu. Cancelling build."
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
PACKAGE="intellij-idea-community"
|
echo "intellij-idea-community ($new-1) yakkety; urgency=low
|
||||||
DISTRIBUTION="oracular"
|
|
||||||
|
|
||||||
last_tag=$(git describe --abbrev=0 --tags)
|
* Upstream Version $new
|
||||||
old="${last_tag#?}"
|
|
||||||
new="$1"
|
|
||||||
|
|
||||||
name="$(git config --get user.name)"
|
-- $author ($username) <$email> $now
|
||||||
email="$(git config --get user.email)"
|
" >> $tempfile
|
||||||
|
|
||||||
git checkout -b version-"$new"
|
cat intellij-idea-community_$new/debian/changelog >> $tempfile
|
||||||
|
mv $tempfile intellij-idea-community_$new/debian/changelog
|
||||||
|
|
||||||
mv "$PACKAGE"_"$old" "$PACKAGE"_"$new"
|
sed -i "s/$old/$new/g" intellij-idea-community_$new/debian/preinst
|
||||||
mv "$PACKAGE"_"$old".orig.tar.gz "$PACKAGE"_"$new".orig.tar.gz
|
|
||||||
|
|
||||||
cd "$PACKAGE"_"$new" || exit
|
(cd intellij-idea-community_$new/ && debuild -us -uc )
|
||||||
|
|
||||||
# Update the debian/changelog file with dch
|
rm intellij-idea-community_${old}*
|
||||||
NAME="$name" EMAIL="$email" dch \
|
|
||||||
--newversion "$new"-1 \
|
|
||||||
--distribution "$DISTRIBUTION" \
|
|
||||||
"Upstream version $new"
|
|
||||||
|
|
||||||
sed -i "s/$old/$new/g" ./debian/preinst
|
sudo dpkg -i intellij-idea-community_$new-1_all.deb
|
||||||
sed -i "s/$old/$new/g" ./debian/postinst
|
}
|
||||||
|
|
||||||
debuild -us -uc
|
|
||||||
|
|
||||||
cd ..
|
|
||||||
|
|
||||||
rm "$PACKAGE"_"$old"-*
|
main $1 $2
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue