[arch-commits] Commit in qscintilla-qt5/repos (12 files)

2015-12-07 Thread Antonio Rojas
Date: Monday, December 7, 2015 @ 09:27:02
  Author: arojas
Revision: 149758

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  qscintilla-qt5/repos/community-staging-i686/
  qscintilla-qt5/repos/community-staging-i686/ChangeLog
(from rev 149757, qscintilla-qt5/trunk/ChangeLog)
  qscintilla-qt5/repos/community-staging-i686/PKGBUILD
(from rev 149757, qscintilla-qt5/trunk/PKGBUILD)
  qscintilla-qt5/repos/community-staging-i686/configure.py.patch
(from rev 149757, qscintilla-qt5/trunk/configure.py.patch)
  qscintilla-qt5/repos/community-staging-i686/libname.patch
(from rev 149757, qscintilla-qt5/trunk/libname.patch)
  qscintilla-qt5/repos/community-staging-i686/qtdesigner-include.patch
(from rev 149757, qscintilla-qt5/trunk/qtdesigner-include.patch)
  qscintilla-qt5/repos/community-staging-x86_64/
  qscintilla-qt5/repos/community-staging-x86_64/ChangeLog
(from rev 149757, qscintilla-qt5/trunk/ChangeLog)
  qscintilla-qt5/repos/community-staging-x86_64/PKGBUILD
(from rev 149757, qscintilla-qt5/trunk/PKGBUILD)
  qscintilla-qt5/repos/community-staging-x86_64/configure.py.patch
(from rev 149757, qscintilla-qt5/trunk/configure.py.patch)
  qscintilla-qt5/repos/community-staging-x86_64/libname.patch
(from rev 149757, qscintilla-qt5/trunk/libname.patch)
  qscintilla-qt5/repos/community-staging-x86_64/qtdesigner-include.patch
(from rev 149757, qscintilla-qt5/trunk/qtdesigner-include.patch)

---+
 community-staging-i686/ChangeLog  |   14 +++
 community-staging-i686/PKGBUILD   |   91 
 community-staging-i686/configure.py.patch |   48 ++
 community-staging-i686/libname.patch  |   50 ++
 community-staging-i686/qtdesigner-include.patch   |   12 ++
 community-staging-x86_64/ChangeLog|   14 +++
 community-staging-x86_64/PKGBUILD |   91 
 community-staging-x86_64/configure.py.patch   |   48 ++
 community-staging-x86_64/libname.patch|   50 ++
 community-staging-x86_64/qtdesigner-include.patch |   12 ++
 10 files changed, 430 insertions(+)

Copied: qscintilla-qt5/repos/community-staging-i686/ChangeLog (from rev 149757, 
qscintilla-qt5/trunk/ChangeLog)
===
--- community-staging-i686/ChangeLog(rev 0)
+++ community-staging-i686/ChangeLog2015-12-07 08:27:02 UTC (rev 149758)
@@ -0,0 +1,14 @@
+2.9-3:
+python3.5 rebuild
+
+2.9-2:
+rebuild againist qt-5.5
+
+2.9-1:
+upstream update
+
+2.8.4-2:
+remov conflict with qsctintilla
+
+2.8.4-1:
+move to [community]

Copied: qscintilla-qt5/repos/community-staging-i686/PKGBUILD (from rev 149757, 
qscintilla-qt5/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-07 08:27:02 UTC (rev 149758)
@@ -0,0 +1,91 @@
+# $Id$
+# Maintainer: Evgeniy Alekseev 
+# Maintainer: Ilya87 
+
+pkgbase=qscintilla-qt5
+pkgname=('qscintilla-qt5' 'python-qscintilla-qt5' 'python2-qscintilla-qt5'
+ 'python-qscintilla-qt5-common')
+pkgver=2.9
+pkgrel=4
+license=('GPL')
+arch=('i686' 'x86_64')
+url="http://www.riverbankcomputing.co.uk/software/qscintilla/intro";
+makedepends=('python2-pyqt5' 'python-pyqt5' 'qt5-tools' 'chrpath')
+options=('!buildflags')
+source=("http://downloads.sourceforge.net/project/pyqt/QScintilla2/QScintilla-${pkgver}/QScintilla-gpl-${pkgver}.tar.gz";
+'configure.py.patch'
+'libname.patch'
+'qtdesigner-include.patch')
+changelog=ChangeLog
+md5sums=('24659879edf9786f41a9b9268ce3c817'
+ '196ba01efe8bf18f3f2e10826c577a11'
+ '1ac0fea53f72b0146e0820912ae8c48c'
+ 'd4591875037808b87acff66bae47f7eb')
+
+prepare() {
+  cd "QScintilla-gpl-${pkgver}"
+
+  patch -Np1 -i "${srcdir}/configure.py.patch"
+  patch -Np1 -i "${srcdir}/libname.patch"
+  patch -Np1 -i "${srcdir}/qtdesigner-include.patch"
+
+  cp -r Python{,2}
+  find "Python2" -name '*.py' -type f -exec \
+   sed -i 's|env python|env python2|' {} \;
+}
+
+build() {
+  cd "QScintilla-gpl-${pkgver}/Qt4Qt5"
+  qmake qscintilla.pro
+  make
+
+  cd "../designer-Qt4Qt5"
+  qmake designer.pro INCLUDEPATH+=../Qt4Qt5 QMAKE_LIBDIR+=../Qt4Qt5
+  make
+
+  cd "../Python"
+  python3 configure.py -n ../Qt4Qt5/ -o ../Qt4Qt5/ -c --pyqt=PyQt5 
--pyqt-sipdir=/usr/share/sip/PyQt5 --qsci-sipdir=/usr/share/sip/PyQt5  --qmake 
/usr/bin/qmake
+  make
+
+  cd "../Python2"
+  python2 configure.py -n ../Qt4Qt5/ -o ../Qt4Qt5/ -c --pyqt=PyQt5 
--pyqt-sipdir=/usr/share/sip/PyQt5 --qsci-sipdir=/usr/share/sip/PyQt5 --qmake 
/usr/bin/qmake
+  make
+}
+
+package_qscintilla-qt5() {
+  pkgdesc="A port to Qt5 of Neil Hodgson's Scintilla C++ editor class"
+  depends=('qt5-base')
+
+  cd "QScintil

[arch-commits] Commit in qscintilla-qt5/repos (12 files)

2015-09-20 Thread Evgeniy Alekseev
Date: Sunday, September 20, 2015 @ 12:15:56
  Author: arcanis
Revision: 141231

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  qscintilla-qt5/repos/community-staging-i686/
  qscintilla-qt5/repos/community-staging-i686/ChangeLog
(from rev 141230, qscintilla-qt5/trunk/ChangeLog)
  qscintilla-qt5/repos/community-staging-i686/PKGBUILD
(from rev 141230, qscintilla-qt5/trunk/PKGBUILD)
  qscintilla-qt5/repos/community-staging-i686/configure.py.patch
(from rev 141230, qscintilla-qt5/trunk/configure.py.patch)
  qscintilla-qt5/repos/community-staging-i686/libname.patch
(from rev 141230, qscintilla-qt5/trunk/libname.patch)
  qscintilla-qt5/repos/community-staging-i686/qtdesigner-include.patch
(from rev 141230, qscintilla-qt5/trunk/qtdesigner-include.patch)
  qscintilla-qt5/repos/community-staging-x86_64/
  qscintilla-qt5/repos/community-staging-x86_64/ChangeLog
(from rev 141230, qscintilla-qt5/trunk/ChangeLog)
  qscintilla-qt5/repos/community-staging-x86_64/PKGBUILD
(from rev 141230, qscintilla-qt5/trunk/PKGBUILD)
  qscintilla-qt5/repos/community-staging-x86_64/configure.py.patch
(from rev 141230, qscintilla-qt5/trunk/configure.py.patch)
  qscintilla-qt5/repos/community-staging-x86_64/libname.patch
(from rev 141230, qscintilla-qt5/trunk/libname.patch)
  qscintilla-qt5/repos/community-staging-x86_64/qtdesigner-include.patch
(from rev 141230, qscintilla-qt5/trunk/qtdesigner-include.patch)

---+
 community-staging-i686/ChangeLog  |   14 +++
 community-staging-i686/PKGBUILD   |   91 
 community-staging-i686/configure.py.patch |   48 ++
 community-staging-i686/libname.patch  |   50 ++
 community-staging-i686/qtdesigner-include.patch   |   12 ++
 community-staging-x86_64/ChangeLog|   14 +++
 community-staging-x86_64/PKGBUILD |   91 
 community-staging-x86_64/configure.py.patch   |   48 ++
 community-staging-x86_64/libname.patch|   50 ++
 community-staging-x86_64/qtdesigner-include.patch |   12 ++
 10 files changed, 430 insertions(+)

Copied: qscintilla-qt5/repos/community-staging-i686/ChangeLog (from rev 141230, 
qscintilla-qt5/trunk/ChangeLog)
===
--- community-staging-i686/ChangeLog(rev 0)
+++ community-staging-i686/ChangeLog2015-09-20 10:15:56 UTC (rev 141231)
@@ -0,0 +1,14 @@
+2.9-3:
+python3.5 rebuild
+
+2.9-2:
+rebuild againist qt-5.5
+
+2.9-1:
+upstream update
+
+2.8.4-2:
+remov conflict with qsctintilla
+
+2.8.4-1:
+move to [community]

Copied: qscintilla-qt5/repos/community-staging-i686/PKGBUILD (from rev 141230, 
qscintilla-qt5/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-09-20 10:15:56 UTC (rev 141231)
@@ -0,0 +1,91 @@
+# $Id$
+# Maintainer: Evgeniy Alekseev 
+# Maintainer: Ilya87 
+
+pkgbase=qscintilla-qt5
+pkgname=('qscintilla-qt5' 'python-qscintilla-qt5' 'python2-qscintilla-qt5'
+ 'python-qscintilla-qt5-common')
+pkgver=2.9
+pkgrel=3
+license=('GPL')
+arch=('i686' 'x86_64')
+url="http://www.riverbankcomputing.co.uk/software/qscintilla/intro";
+makedepends=('python2-pyqt5' 'python-pyqt5' 'qt5-tools' 'chrpath')
+options=('!buildflags')
+source=("http://downloads.sourceforge.net/project/pyqt/QScintilla2/QScintilla-${pkgver}/QScintilla-gpl-${pkgver}.tar.gz";
+'configure.py.patch'
+'libname.patch'
+'qtdesigner-include.patch')
+changelog=ChangeLog
+md5sums=('24659879edf9786f41a9b9268ce3c817'
+ '196ba01efe8bf18f3f2e10826c577a11'
+ '1ac0fea53f72b0146e0820912ae8c48c'
+ 'd4591875037808b87acff66bae47f7eb')
+
+prepare() {
+  cd "QScintilla-gpl-${pkgver}"
+
+  patch -Np1 -i "${srcdir}/configure.py.patch"
+  patch -Np1 -i "${srcdir}/libname.patch"
+  patch -Np1 -i "${srcdir}/qtdesigner-include.patch"
+
+  cp -r Python{,2}
+  find "Python2" -name '*.py' -type f -exec \
+   sed -i 's|env python|env python2|' {} \;
+}
+
+build() {
+  cd "QScintilla-gpl-${pkgver}/Qt4Qt5"
+  qmake qscintilla.pro
+  make
+
+  cd "../designer-Qt4Qt5"
+  qmake designer.pro INCLUDEPATH+=../Qt4Qt5 QMAKE_LIBDIR+=../Qt4Qt5
+  make
+
+  cd "../Python"
+  python3 configure.py -n ../Qt4Qt5/ -o ../Qt4Qt5/ -c --pyqt=PyQt5 
--pyqt-sipdir=/usr/share/sip/PyQt5 --qsci-sipdir=/usr/share/sip/PyQt5  --qmake 
/usr/bin/qmake
+  make
+
+  cd "../Python2"
+  python2 configure.py -n ../Qt4Qt5/ -o ../Qt4Qt5/ -c --pyqt=PyQt5 
--pyqt-sipdir=/usr/share/sip/PyQt5 --qsci-sipdir=/usr/share/sip/PyQt5 --qmake 
/usr/bin/qmake
+  make
+}
+
+package_qscintilla-qt5() {
+  pkgdesc="A port to Qt5 of Neil Hodgson's Scintilla C++ editor class"
+  depends=('qt5-base')
+
+  cd "QScin