Compare commits

...

3 commits

Author SHA1 Message Date
Marcel Kapfer 6d0cb5cb3d 🔧 Update supported Ubuntu versions 2024-05-29 18:52:46 +02:00
Marcel Kapfer e24f3637af Upstream version 2024.1.2 2024-05-23 13:02:36 +00:00
Marcel Kapfer 2bf29008d6 Upstream version 2024.1.1 2024-04-30 13:02:17 +00:00
21 changed files with 18 additions and 6 deletions

View file

@ -1,5 +1,5 @@
default: default:
image: registry.gitlab.com/mmk2410/intellij-idea-pkg-image:lunar image: registry.gitlab.com/mmk2410/intellij-idea-pkg-image:noble
variables: variables:
PACKAGE: "intellij-idea-community" PACKAGE: "intellij-idea-community"
@ -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, lunar] - UBUNTU_VERSION: [trusty, xenial, bionic, focal, jammy, mantic, noble]

Binary file not shown.

View file

@ -1,3 +1,15 @@
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 intellij-idea-community (2024.1-1) lunar; urgency=medium
* Upstream version 2024.1 * Upstream version 2024.1

View file

@ -5,13 +5,13 @@ set -e
cd /opt/ cd /opt/
## Extract the package ## Extract the package
tar xf /opt/ideaIC-2024.1.tar.gz tar xf /opt/ideaIC-2024.1.2.tar.gz
## Rename the directory ## Rename the directory
mv /opt/idea-IC-* /opt/intellij-idea-community mv /opt/idea-IC-* /opt/intellij-idea-community
## Remove the tar.gz package ## Remove the tar.gz package
rm /opt/ideaIC-2024.1.tar.gz rm /opt/ideaIC-2024.1.2.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/ideaIC-2024.1.tar.gz wget -c https://download-cf.jetbrains.com/idea/ideaIC-2024.1.2.tar.gz
##DEBHELPER## ##DEBHELPER##

View file

Before

Width:  |  Height:  |  Size: 5.3 KiB

After

Width:  |  Height:  |  Size: 5.3 KiB

View file

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