[arch-commits] Commit in lazarus/repos/community-x86_64 (4 files)
Ike Devolder
idevolder at archlinux.org
Wed Aug 15 19:48:12 UTC 2018
Date: Wednesday, August 15, 2018 @ 19:48:11
Author: idevolder
Revision: 371890
archrelease: copy trunk to community-x86_64
Added:
lazarus/repos/community-x86_64/ChangeLog
(from rev 371889, lazarus/trunk/ChangeLog)
lazarus/repos/community-x86_64/PKGBUILD
(from rev 371889, lazarus/trunk/PKGBUILD)
Deleted:
lazarus/repos/community-x86_64/ChangeLog
lazarus/repos/community-x86_64/PKGBUILD
-----------+
ChangeLog | 36 ++++----
PKGBUILD | 256 ++++++++++++++++++++++++++++++------------------------------
2 files changed, 146 insertions(+), 146 deletions(-)
Deleted: ChangeLog
===================================================================
--- ChangeLog 2018-08-15 19:48:04 UTC (rev 371889)
+++ ChangeLog 2018-08-15 19:48:11 UTC (rev 371890)
@@ -1,18 +0,0 @@
-2012-05-15 BlackIkeEagle
- * fix lazcontrols failure
- see: http://doublecmd.sourceforge.net/mantisbt/view.php?id=347
- * add compiled files again
-
-2012-05-08 BlackIkeEagle
- * fix FS#29807
- * should not have removed Makefiles
-
-2012-04-30 BlackIkeEagle
- * split pkgbuild
- * lazarus (can be used for compiling)
- * lazarus-qt (qt ide)
- * lazarus-gtk (gtk ide)
-
-2008-01-21 JJDaNiMoTh <jjdanimoth.aur at gmail.com>
-
- * PKGBUILD: moved man pages to /usr/share
Copied: lazarus/repos/community-x86_64/ChangeLog (from rev 371889, lazarus/trunk/ChangeLog)
===================================================================
--- ChangeLog (rev 0)
+++ ChangeLog 2018-08-15 19:48:11 UTC (rev 371890)
@@ -0,0 +1,18 @@
+2012-05-15 BlackIkeEagle
+ * fix lazcontrols failure
+ see: http://doublecmd.sourceforge.net/mantisbt/view.php?id=347
+ * add compiled files again
+
+2012-05-08 BlackIkeEagle
+ * fix FS#29807
+ * should not have removed Makefiles
+
+2012-04-30 BlackIkeEagle
+ * split pkgbuild
+ * lazarus (can be used for compiling)
+ * lazarus-qt (qt ide)
+ * lazarus-gtk (gtk ide)
+
+2008-01-21 JJDaNiMoTh <jjdanimoth.aur at gmail.com>
+
+ * PKGBUILD: moved man pages to /usr/share
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2018-08-15 19:48:04 UTC (rev 371889)
+++ PKGBUILD 2018-08-15 19:48:11 UTC (rev 371890)
@@ -1,128 +0,0 @@
-# $Id$
-# Maintainer: BlackIkeEagle <ike DOT devolder AT gmail DOT com>
-# Contributor: Sergej Pupykin <pupykin.s+arch at gmail.com>
-# Contributor: Jens Adam <jra at byte.cx>
-
-pkgbase=lazarus
-pkgname=('lazarus' 'lazarus-gtk2' 'lazarus-qt5')
-pkgver=1.8.4
-pkgrel=1
-url='http://www.lazarus.freepascal.org/'
-license=('GPL2' 'MPL' 'custom:modifiedLGPL')
-arch=('x86_64')
-makedepends=('fpc' 'fpc-src' 'gtk2' 'qt5pas' 'rsync')
-options=('!emptydirs' '!makeflags')
-source=("https://downloads.sourceforge.net/project/lazarus/Lazarus%20Zip%20_%20GZip/Lazarus%20${pkgver}/lazarus-$pkgver.tar.gz")
-sha512sums=('82cdc3c32dddf8e67c0bed9292a9a924227bab50f22ca479f5e98ecccbf60dd66c7f886ecb8e2979d9d8fccc3d25462ee8c55fcab085aa4194b4704660e0b95d')
-
-build() {
- cd "$srcdir"/${pkgbase}
-
- # build gtk2 ide
- make FPC=/usr/bin/fpc LCL_PLATFORM=gtk2 clean bigide
- # move gtk binaries
- mv lazarus lazarus-gtk2
- mv startlazarus startlazarus-gtk2
-
- # build qt5 ide
- make FPC=/usr/bin/fpc LCL_PLATFORM=qt5 bigide
- # move qt binaries
- mv lazarus lazarus-qt5
- mv startlazarus startlazarus-qt5
-}
-
-package_lazarus() {
- pkgdesc='Delphi-like IDE for FreePascal common files'
- depends=('fpc' 'fpc-src')
- optdepends=(
- 'perl: to run some scirpts in the tools directory'
- 'gtk2: to compile gtk2 apps'
- 'qt5pas: to compile qt5 apps and use help viewer'
- )
-
- cd "$srcdir"/${pkgbase}
-
- # skip the 'make install' mess completely and do everything manually
- mkdir -p "$pkgdir"/usr/lib/lazarus "$pkgdir"/usr/bin "$pkgdir"/usr/share/man/man1 "$pkgdir"/usr/share/doc
- rsync -a \
- --exclude="CVS" --exclude=".cvsignore" \
- --exclude="*.ppw" --exclude="*.ppl" \
- --exclude="*.ow" --exclude="*.a"\
- --exclude="*.rst" --exclude=".#*" \
- --exclude="*.~*" --exclude="*.bak" \
- --exclude="*.orig" --exclude="*.rej" \
- --exclude=".xvpics" \
- --exclude="killme*" --exclude=".gdb_hist*" \
- --exclude="debian" --exclude="COPYING*" \
- --exclude="*.app" --exclude="tools/install" \
- . "$pkgdir"/usr/lib/lazarus
-
- #remove some stuff, not needed or for in other package
- pushd "$pkgdir"/usr/lib/lazarus
- rm lazarus-*
- rm startlazarus-*
- popd
-
- ln -s /usr/lib/lazarus/lazbuild "$pkgdir"/usr/bin/lazbuild
- cp -R install/man/man1/* "$pkgdir"/usr/share/man/man1/
- mv "$pkgdir"/usr/lib/lazarus/docs "$pkgdir"/usr/share/doc/lazarus
- mkdir -p "$pkgdir"/usr/lib/lazarus/docs
- ln -s /usr/share/doc/lazarus/chm "$pkgdir"/usr/lib/lazarus/docs/html
- ln -s /usr/share/doc/lazarus/lazdoc.css "$pkgdir"/usr/lib/lazarus/docs/lazdoc.css
-
- rm -r "$pkgdir"/usr/lib/lazarus/install
-
- # license files: /usr/lib/lazarus/COPYING*
- install -D -m644 COPYING.modifiedLGPL.txt "$pkgdir"/usr/share/licenses/$pkgname/COPYING.modifiedLGPL
-}
-
-package_lazarus-gtk2() {
- pkgdesc='Delphi-like IDE for FreePascal gtk2 version'
- depends=('lazarus' 'desktop-file-utils' 'gtk2')
- conflicts=('lazarus-qt5')
-
- cd "$srcdir"/${pkgbase}
-
- # install gtk binaries
- install -Dm755 lazarus-gtk2 "$pkgdir"/usr/lib/lazarus/lazarus
- install -Dm755 startlazarus-gtk2 "$pkgdir"/usr/lib/lazarus/startlazarus
- install -dm755 "$pkgdir"/usr/bin
- ln -s /usr/lib/lazarus/lazarus "$pkgdir"/usr/bin/lazarus
- ln -s /usr/lib/lazarus/startlazarus "$pkgdir"/usr/bin/startlazarus
-
- # make 'desktop-file-validate' happy and fix missing .png icon
- sed -e 's|\(Categories\).*|\1=IDE;Development;|' \
- -e 's|\.png|\.xpm|' -i install/lazarus.desktop
- install -Dm644 install/lazarus.desktop "$pkgdir"/usr/share/applications/lazarus.desktop
- install -Dm644 images/ide_icon48x48.png "$pkgdir"/usr/share/pixmaps/lazarus.png
-
- # license files: /usr/lib/lazarus/COPYING*
- install -D -m644 COPYING.modifiedLGPL.txt "$pkgdir"/usr/share/licenses/$pkgname/COPYING.modifiedLGPL
-}
-
-package_lazarus-qt5() {
- pkgdesc='Delphi-like IDE for FreePascal qt5 version'
- depends=('lazarus' 'qt5pas')
- conflicts=('lazarus-gtk2')
- replaces=('lazarus-qt' 'lazarus-qt4')
-
- cd "$srcdir"/${pkgbase}
-
- # install qt binaries
- install -Dm755 lazarus-qt5 "$pkgdir"/usr/lib/lazarus/lazarus
- install -Dm755 startlazarus-qt5 "$pkgdir"/usr/lib/lazarus/startlazarus
- install -dm755 "$pkgdir"/usr/bin
- ln -s /usr/lib/lazarus/lazarus "$pkgdir"/usr/bin/lazarus
- ln -s /usr/lib/lazarus/startlazarus "$pkgdir"/usr/bin/startlazarus
-
- # make 'desktop-file-validate' happy and fix missing .png icon
- sed -e 's|\(Categories\).*|\1=IDE;Development;|' \
- -e 's|\.png|\.xpm|' -i install/lazarus.desktop
- install -Dm644 install/lazarus.desktop "$pkgdir"/usr/share/applications/lazarus.desktop
- install -Dm644 images/ide_icon48x48.png "$pkgdir"/usr/share/pixmaps/lazarus.png
-
- # license files: /usr/lib/lazarus/COPYING*
- install -D -m644 COPYING.modifiedLGPL.txt "$pkgdir"/usr/share/licenses/$pkgname/COPYING.modifiedLGPL
-}
-
-# vim:set ts=2 sts=2 sw=2 et:
Copied: lazarus/repos/community-x86_64/PKGBUILD (from rev 371889, lazarus/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2018-08-15 19:48:11 UTC (rev 371890)
@@ -0,0 +1,128 @@
+# $Id$
+# Maintainer: BlackIkeEagle <ike DOT devolder AT gmail DOT com>
+# Contributor: Sergej Pupykin <pupykin.s+arch at gmail.com>
+# Contributor: Jens Adam <jra at byte.cx>
+
+pkgbase=lazarus
+pkgname=('lazarus' 'lazarus-gtk2' 'lazarus-qt5')
+pkgver=1.8.4
+pkgrel=3
+url='http://www.lazarus.freepascal.org/'
+license=('GPL2' 'MPL' 'custom:modifiedLGPL')
+arch=('x86_64')
+makedepends=('fpc' 'fpc-src' 'gtk2' 'qt5pas' 'rsync')
+options=('!emptydirs' '!makeflags')
+source=("https://downloads.sourceforge.net/project/lazarus/Lazarus%20Zip%20_%20GZip/Lazarus%20${pkgver}/lazarus-$pkgver.tar.gz")
+sha512sums=('82cdc3c32dddf8e67c0bed9292a9a924227bab50f22ca479f5e98ecccbf60dd66c7f886ecb8e2979d9d8fccc3d25462ee8c55fcab085aa4194b4704660e0b95d')
+
+build() {
+ cd "$srcdir"/${pkgbase}
+
+ # build gtk2 ide
+ make FPC=/usr/bin/fpc LCL_PLATFORM=gtk2 clean bigide
+ # move gtk binaries
+ mv lazarus lazarus-gtk2
+ mv startlazarus startlazarus-gtk2
+
+ # build qt5 ide
+ make FPC=/usr/bin/fpc LCL_PLATFORM=qt5 bigide
+ # move qt binaries
+ mv lazarus lazarus-qt5
+ mv startlazarus startlazarus-qt5
+}
+
+package_lazarus() {
+ pkgdesc='Delphi-like IDE for FreePascal common files'
+ depends=('fpc' 'fpc-src')
+ optdepends=(
+ 'perl: to run some scirpts in the tools directory'
+ 'gtk2: to compile gtk2 apps'
+ 'qt5pas: to compile qt5 apps and use help viewer'
+ )
+
+ cd "$srcdir"/${pkgbase}
+
+ # skip the 'make install' mess completely and do everything manually
+ mkdir -p "$pkgdir"/usr/lib/lazarus "$pkgdir"/usr/bin "$pkgdir"/usr/share/man/man1 "$pkgdir"/usr/share/doc
+ rsync -a \
+ --exclude="CVS" --exclude=".cvsignore" \
+ --exclude="*.ppw" --exclude="*.ppl" \
+ --exclude="*.ow" --exclude="*.a"\
+ --exclude="*.rst" --exclude=".#*" \
+ --exclude="*.~*" --exclude="*.bak" \
+ --exclude="*.orig" --exclude="*.rej" \
+ --exclude=".xvpics" \
+ --exclude="killme*" --exclude=".gdb_hist*" \
+ --exclude="debian" --exclude="COPYING*" \
+ --exclude="*.app" --exclude="tools/install" \
+ . "$pkgdir"/usr/lib/lazarus
+
+ #remove some stuff, not needed or for in other package
+ pushd "$pkgdir"/usr/lib/lazarus
+ rm lazarus-*
+ rm startlazarus-*
+ popd
+
+ ln -s /usr/lib/lazarus/lazbuild "$pkgdir"/usr/bin/lazbuild
+ cp -R install/man/man1/* "$pkgdir"/usr/share/man/man1/
+ mv "$pkgdir"/usr/lib/lazarus/docs "$pkgdir"/usr/share/doc/lazarus
+ mkdir -p "$pkgdir"/usr/lib/lazarus/docs
+ ln -s /usr/share/doc/lazarus/chm "$pkgdir"/usr/lib/lazarus/docs/html
+ ln -s /usr/share/doc/lazarus/lazdoc.css "$pkgdir"/usr/lib/lazarus/docs/lazdoc.css
+
+ rm -r "$pkgdir"/usr/lib/lazarus/install
+
+ # license files: /usr/lib/lazarus/COPYING*
+ install -D -m644 COPYING.modifiedLGPL.txt "$pkgdir"/usr/share/licenses/$pkgname/COPYING.modifiedLGPL
+}
+
+package_lazarus-gtk2() {
+ pkgdesc='Delphi-like IDE for FreePascal gtk2 version'
+ depends=('lazarus' 'desktop-file-utils' 'gtk2')
+ conflicts=('lazarus-qt5')
+
+ cd "$srcdir"/${pkgbase}
+
+ # install gtk binaries
+ install -Dm755 lazarus-gtk2 "$pkgdir"/usr/lib/lazarus/lazarus
+ install -Dm755 startlazarus-gtk2 "$pkgdir"/usr/lib/lazarus/startlazarus
+ install -dm755 "$pkgdir"/usr/bin
+ ln -s /usr/lib/lazarus/lazarus "$pkgdir"/usr/bin/lazarus
+ ln -s /usr/lib/lazarus/startlazarus "$pkgdir"/usr/bin/startlazarus
+
+ # make 'desktop-file-validate' happy and fix missing .png icon
+ sed -e 's|\(Categories\).*|\1=IDE;Development;|' \
+ -e 's|\.png|\.xpm|' -i install/lazarus.desktop
+ install -Dm644 install/lazarus.desktop "$pkgdir"/usr/share/applications/lazarus.desktop
+ install -Dm644 images/ide_icon48x48.png "$pkgdir"/usr/share/pixmaps/lazarus.png
+
+ # license files: /usr/lib/lazarus/COPYING*
+ install -D -m644 COPYING.modifiedLGPL.txt "$pkgdir"/usr/share/licenses/$pkgname/COPYING.modifiedLGPL
+}
+
+package_lazarus-qt5() {
+ pkgdesc='Delphi-like IDE for FreePascal qt5 version'
+ depends=('lazarus' 'qt5pas')
+ conflicts=('lazarus-gtk2')
+ replaces=('lazarus-qt' 'lazarus-qt4')
+
+ cd "$srcdir"/${pkgbase}
+
+ # install qt binaries
+ install -Dm755 lazarus-qt5 "$pkgdir"/usr/lib/lazarus/lazarus
+ install -Dm755 startlazarus-qt5 "$pkgdir"/usr/lib/lazarus/startlazarus
+ install -dm755 "$pkgdir"/usr/bin
+ ln -s /usr/lib/lazarus/lazarus "$pkgdir"/usr/bin/lazarus
+ ln -s /usr/lib/lazarus/startlazarus "$pkgdir"/usr/bin/startlazarus
+
+ # make 'desktop-file-validate' happy and fix missing .png icon
+ sed -e 's|\(Categories\).*|\1=IDE;Development;|' \
+ -e 's|\.png|\.xpm|' -i install/lazarus.desktop
+ install -Dm644 install/lazarus.desktop "$pkgdir"/usr/share/applications/lazarus.desktop
+ install -Dm644 images/ide_icon48x48.png "$pkgdir"/usr/share/pixmaps/lazarus.png
+
+ # license files: /usr/lib/lazarus/COPYING*
+ install -D -m644 COPYING.modifiedLGPL.txt "$pkgdir"/usr/share/licenses/$pkgname/COPYING.modifiedLGPL
+}
+
+# vim:set ts=2 sts=2 sw=2 et:
More information about the arch-commits
mailing list