Upstream release 2017.2.3
This commit is contained in:
parent
6a1c388e90
commit
3d0725acf3
24 changed files with 219 additions and 220 deletions
|
@ -1,14 +1,14 @@
|
|||
intellij-idea-community (2017.2.3-1) yakkety; urgency=low
|
||||
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
|
||||
-- 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
|
||||
-- Marcel Kapfer (mmk2410) <marcelmichaelkapfer@gmail.com> Wed, 12 Jul 2017 18:51:50 +0200
|
||||
|
||||
intellij-idea-community (2017.1.4-1) zesty; urgency=low
|
||||
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
Source: intellij-idea-community
|
||||
Section: devel
|
||||
Priority: optional
|
||||
Maintainer: Marcel Michael Kapfer <marcelmichaelkapfer@yahoo.co.nz>
|
||||
Maintainer: Marcel Kapfer <opensource@mmk2410.org>
|
||||
Build-Depends: debhelper (>= 7.0.50~)
|
||||
Standards-Version: 3.9.8
|
||||
Standards-Version: 4.0.0
|
||||
|
||||
|
||||
Package: intellij-idea-community
|
||||
|
|
|
@ -1,2 +0,0 @@
|
|||
intellij-idea-community
|
||||
intellij-idea-community
|
|
@ -1 +1 @@
|
|||
intellij-idea-community_2017.2.3-1_all.deb devel optional
|
||||
intellij-idea-community_2017.2.3-1_source.buildinfo devel optional
|
||||
|
|
|
@ -1,20 +0,0 @@
|
|||
dh_update_autotools_config
|
||||
dh_auto_configure
|
||||
dh_auto_build
|
||||
dh_auto_test
|
||||
dh_prep
|
||||
dh_auto_install
|
||||
dh_install
|
||||
dh_installdocs
|
||||
dh_installchangelogs
|
||||
dh_icons
|
||||
dh_perl
|
||||
dh_link
|
||||
dh_strip_nondeterminism
|
||||
dh_compress
|
||||
dh_fixperms
|
||||
dh_installdeb
|
||||
dh_gencontrol
|
||||
dh_md5sums
|
||||
dh_builddeb
|
||||
dh_builddeb
|
|
@ -1,5 +0,0 @@
|
|||
# Automatically added by dh_icons
|
||||
if which update-icon-caches >/dev/null 2>&1 ; then
|
||||
update-icon-caches /usr/share/icons/intellij-idea-ce.png
|
||||
fi
|
||||
# End automatically added section
|
|
@ -1,5 +0,0 @@
|
|||
# Automatically added by dh_icons
|
||||
if which update-icon-caches >/dev/null 2>&1 ; then
|
||||
update-icon-caches /usr/share/icons/intellij-idea-ce.png
|
||||
fi
|
||||
# End automatically added section
|
|
@ -1,2 +0,0 @@
|
|||
misc:Depends=
|
||||
misc:Pre-Depends=
|
|
@ -1,10 +0,0 @@
|
|||
Package: intellij-idea-community
|
||||
Version: 2017.2.3-1
|
||||
Architecture: all
|
||||
Maintainer: Marcel Michael Kapfer <marcelmichaelkapfer@yahoo.co.nz>
|
||||
Installed-Size: 23
|
||||
Depends: lib32ncurses5, default-jdk | oracle-java7-installer | oracle-java8-installer, libc6-i386, lib32stdc++6, lib32gcc1, lib32z1, lib32z1-dev, unzip
|
||||
Section: devel
|
||||
Priority: optional
|
||||
Description: IntelliJ IDEA Community Edition
|
||||
A intelligent Java IDE by JetBrains
|
|
@ -1,5 +0,0 @@
|
|||
c78f0f0311ecf3b09bb50023b7fc16fb usr/bin/intellij-idea-community
|
||||
671ea3497696d1493f29aac5e256aabd usr/share/applications/intellij-idea-community.desktop
|
||||
14ac736ffa27ffb776cb9d3ababae5ae usr/share/doc/intellij-idea-community/changelog.Debian.gz
|
||||
fc682616b4b2a24f7cf150c09d5cd861 usr/share/doc/intellij-idea-community/copyright
|
||||
1710e9ac5bf00821c195a70246d07d06 usr/share/icons/intellij-idea-ce.png
|
|
@ -1,26 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
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-*
|
||||
|
||||
## Install the .desktop file, if necessary
|
||||
if [ -x "/usr/bin/desktop-file-install" ]; then
|
||||
sudo desktop-file-install /usr/share/applications/intellij-idea-community.desktop
|
||||
fi
|
||||
|
||||
## Automatically added by dh_icons
|
||||
if which update-icon-caches >/dev/null 2>&1 ; then
|
||||
update-icon-caches /usr/share/icons/intellij-idea-ce.png
|
||||
fi
|
||||
# End automatically added section
|
||||
#
|
|
@ -1,13 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
## Remove the program folder
|
||||
sudo rm -rf /opt/intellij-idea-community
|
||||
|
||||
## Automatically added by dh_icons
|
||||
if which update-icon-caches >/dev/null 2>&1 ; then
|
||||
update-icon-caches /usr/share/icons/intellij-idea-ce.png
|
||||
fi
|
||||
# End automatically added section
|
||||
#
|
|
@ -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-2017.2.3.tar.gz
|
||||
|
||||
##
|
|
@ -1,3 +0,0 @@
|
|||
#!/bin/sh
|
||||
export IDEA_JDK=$JAVA_HOME
|
||||
exec /opt/intellij-idea-community/bin/idea.sh "$@"
|
|
@ -1,9 +0,0 @@
|
|||
[Desktop Entry]
|
||||
Name=IntelliJ IDEA Community Edition
|
||||
Comment=Intelligent Java IDE
|
||||
Exec=intellij-idea-community %u
|
||||
Icon=intellij-idea-ce
|
||||
Terminal=false
|
||||
Type=Application
|
||||
Categories=Development;IDE;Java;
|
||||
StartupWMClass=jetbrains-idea
|
Binary file not shown.
|
@ -1,44 +0,0 @@
|
|||
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-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".
|
Binary file not shown.
Before Width: | Height: | Size: 5 KiB |
Loading…
Add table
Add a link
Reference in a new issue