Compare commits

...

12 commits

23 changed files with 69 additions and 9 deletions

View file

@ -1,5 +1,5 @@
default: default:
image: registry.gitlab.com/mmk2410/intellij-idea-pkg-image:noble image: registry.gitlab.com/mmk2410/intellij-idea-pkg-image:oracular
variables: variables:
PACKAGE: "intellij-idea-ultimate" PACKAGE: "intellij-idea-ultimate"
@ -70,4 +70,4 @@ deploy-job:
- if: $CI_COMMIT_TAG - if: $CI_COMMIT_TAG
parallel: parallel:
matrix: matrix:
- UBUNTU_VERSION: [trusty, xenial, bionic, focal, jammy, noble] - UBUNTU_VERSION: [trusty, xenial, bionic, focal, jammy, noble, oracular]

View file

@ -1,3 +0,0 @@
#!/bin/sh
export IDEA_JDK=$JAVA_HOME
exec /opt/intellij-idea-ultimate/bin/idea.sh "$@"

Binary file not shown.

Binary file not shown.

View file

@ -1,3 +1,63 @@
intellij-idea-ultimate (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-ultimate (2024.3.4-1) oracular; urgency=medium
* Upstream version 2024.3.4
-- Marcel Kapfer <opensource@mmk2410.org> Fri, 28 Feb 2025 14:02:31 +0000
intellij-idea-ultimate (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-ultimate (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-ultimate (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-ultimate (2024.3.2-1) oracular; urgency=medium
* Upstream version 2024.3.2
-- Marcel Kapfer <opensource@mmk2410.org> Fri, 17 Jan 2025 14:02:15 +0000
intellij-idea-ultimate (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:01 +0000
intellij-idea-ultimate (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-ultimate (2024.3-1) noble; urgency=medium
* Upstream version 2024.3
-- Marcel Kapfer <opensource@mmk2410.org> Wed, 13 Nov 2024 14:02:09 +0000
intellij-idea-ultimate (2024.2.4-1) noble; urgency=medium
* Upstream version 2024.2.4
-- Marcel Kapfer <opensource@mmk2410.org> Thu, 24 Oct 2024 13:01:54 +0000
intellij-idea-ultimate (2024.2.3-1) noble; urgency=medium intellij-idea-ultimate (2024.2.3-1) noble; urgency=medium
* Upstream version 2024.2.3 * Upstream version 2024.2.3

View file

@ -5,13 +5,13 @@ set -e
cd /opt/ cd /opt/
## Extract the package ## Extract the package
tar xf /opt/ideaIU-2024.2.3.tar.gz tar xf /opt/ideaIU-2024.3.4.1.tar.gz
## Rename the directory ## Rename the directory
mv /opt/idea-IU-* /opt/intellij-idea-ultimate mv /opt/idea-IU-* /opt/intellij-idea-ultimate
## Remove the tar.gz package ## Remove the tar.gz package
rm /opt/ideaIU-2024.2.3.tar.gz rm /opt/ideaIU-2024.3.4.1.tar.gz
## Install the .desktop file, if necessary ## Install the .desktop file, if necessary
if [ -x "/usr/bin/desktop-file-install" ]; then if [ -x "/usr/bin/desktop-file-install" ]; then

View file

@ -5,6 +5,6 @@ set -e
cd /opt/ cd /opt/
## Download IntelliJ IDEA Community from the jetbrain servers ## Download IntelliJ IDEA Community from the jetbrain servers
wget -c https://download-cf.jetbrains.com/idea/ideaIU-2024.2.3.tar.gz wget -c https://download-cf.jetbrains.com/idea/ideaIU-2024.3.4.1.tar.gz
##DEBHELPER## ##DEBHELPER##

View file

Before

Width:  |  Height:  |  Size: 9.5 KiB

After

Width:  |  Height:  |  Size: 9.5 KiB

View file

@ -0,0 +1,3 @@
#!/bin/sh
export IDEA_JDK=$JAVA_HOME
exec /opt/intellij-idea-ultimate/bin/idea "$@"

View file

@ -12,7 +12,7 @@ if [[ $? != 0 ]]; then
fi fi
PACKAGE="intellij-idea-ultimate" PACKAGE="intellij-idea-ultimate"
DISTRIBUTION="noble" DISTRIBUTION="oracular"
last_tag=$(git describe --abbrev=0 --tags) last_tag=$(git describe --abbrev=0 --tags)
old="${last_tag#?}" old="${last_tag#?}"