qupzilla:add repo
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/copyleft/gpl.txt
|
||||
|
||||
from pisi.actionsapi import qt5
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
qt5.configure(parameters="USE_WEBGL=true \
|
||||
QUPZILLA_PREFIX=/usr/ \
|
||||
GNOME_INTEGRATION=true \
|
||||
KDE_INTEGRATION=true \
|
||||
NO_X11=true")
|
||||
|
||||
def build():
|
||||
qt5.make()
|
||||
|
||||
def install():
|
||||
qt5.install("INSTALL_ROOT=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("AUTHORS", "BUILDING*", "CHANGELOG", "COPYRIGHT", "FAQ", "GPLv3", "README*")
|
||||
@@ -0,0 +1,48 @@
|
||||
--- src/lib/data/data/bookmarks.json.orig 2014-02-14 04:53:19.000000000 -0500
|
||||
+++ src/lib/data/data/bookmarks.json 2014-03-03 20:18:08.031463865 -0500
|
||||
@@ -3,41 +3,17 @@
|
||||
"bookmark_bar": {
|
||||
"children": [
|
||||
{
|
||||
- "description": "Source code of QupZilla",
|
||||
- "keyword": "qz-git",
|
||||
- "name": "QupZilla Git",
|
||||
- "type": "url",
|
||||
- "url": "https://github.com/QupZilla/qupzilla",
|
||||
- "visit_count": 0
|
||||
- },
|
||||
- {
|
||||
- "description": "",
|
||||
- "keyword": "qz-wiki",
|
||||
- "name": "QupZilla Wiki",
|
||||
- "type": "url",
|
||||
- "url": "https://github.com/QupZilla/qupzilla/wiki",
|
||||
- "visit_count": 0
|
||||
- },
|
||||
- {
|
||||
- "description": "GitHub Issue Tracker for QupZilla",
|
||||
- "keyword": "qz-issues",
|
||||
- "name": "QupZilla Issues",
|
||||
+ "description": "Pisilinux Homepage",
|
||||
+ "keyword": "Pisilinux",
|
||||
+ "name": "Pisilinux",
|
||||
"type": "url",
|
||||
- "url": "https://github.com/QupZilla/qupzilla/issues",
|
||||
+ "url": "http://www.pisilinux.org",
|
||||
"visit_count": 0
|
||||
},
|
||||
{
|
||||
"type": "separator"
|
||||
},
|
||||
{
|
||||
- "description": "Blog with development updates",
|
||||
- "keyword": "qz-blog",
|
||||
- "name": "QupZilla Blog",
|
||||
- "type": "url",
|
||||
- "url": "http://blog.qupzilla.com/",
|
||||
- "visit_count": 0
|
||||
- },
|
||||
- {
|
||||
"description": "QupZilla Homepage",
|
||||
"keyword": "qz-home",
|
||||
"name": "QupZilla Home",
|
||||
@@ -0,0 +1,11 @@
|
||||
--- src/lib/app/browserwindow.cpp.orig 2016-03-16 16:30:21.000000000 -0400
|
||||
+++ src/lib/app/browserwindow.cpp 2016-03-18 21:49:40.833636454 -0400
|
||||
@@ -419,7 +419,7 @@
|
||||
|
||||
//Url settings
|
||||
settings.beginGroup("Web-URL-Settings");
|
||||
- m_homepage = settings.value("homepage", "qupzilla:start").toUrl();
|
||||
+ m_homepage = settings.value("homepage", "qupzilla:speeddial").toUrl();
|
||||
settings.endGroup();
|
||||
|
||||
//Browser Window settings
|
||||
@@ -0,0 +1,10 @@
|
||||
--- src/defines.pri 2013-12-07 17:03:03.000000000 -0500
|
||||
+++ src/defines_new.pri 2013-12-11 13:30:42.211002583 -0500
|
||||
@@ -4,6 +4,8 @@
|
||||
RCC_DIR = $$PWD/../build
|
||||
UI_DIR = $$PWD/../build
|
||||
|
||||
+CONFIG += debug
|
||||
+
|
||||
# workaround for #849: see https://bugreports.qt-project.org/browse/QTBUG-23196
|
||||
mocinclude.CONFIG *= fix_target
|
||||
@@ -0,0 +1,11 @@
|
||||
--- src/lib/preferences/preferences.cpp.orig 2014-11-18 17:52:54.635782052 -0500
|
||||
+++ src/lib/preferences/preferences.cpp 2014-11-18 17:52:55.129103922 -0500
|
||||
@@ -140,7 +140,7 @@
|
||||
Settings settings;
|
||||
//GENERAL URLs
|
||||
settings.beginGroup("Web-URL-Settings");
|
||||
- m_homepage = settings.value("homepage", QUrl(QSL("qupzilla:start"))).toUrl();
|
||||
+ m_homepage = settings.value("homepage", QUrl(QSL("qupzilla:speeddial"))).toUrl();
|
||||
m_newTabUrl = settings.value("newTabUrl", QUrl(QSL("qupzilla:speeddial"))).toUrl();
|
||||
ui->homepage->setText(m_homepage.toEncoded());
|
||||
ui->newTabUrl->setText(m_newTabUrl.toEncoded());
|
||||
@@ -0,0 +1,26 @@
|
||||
--- src/lib/plugins/speeddial.cpp 2016-02-29 11:18:45.000000000 -0500
|
||||
+++ src/lib/plugins/speeddial.cpp 2016-03-04 17:25:39.726171052 -0500
|
||||
@@ -58,15 +58,18 @@
|
||||
setBackgroundImage(settings.value("background", QString()).toString());
|
||||
m_backgroundImageSize = settings.value("backsize", "auto").toString();
|
||||
m_maxPagesInRow = settings.value("pagesrow", 4).toInt();
|
||||
- m_sizeOfSpeedDials = settings.value("sdsize", 231).toInt();
|
||||
+ m_sizeOfSpeedDials = settings.value("sdsize", 225).toInt();
|
||||
m_sdcentered = settings.value("sdcenter", false).toBool();
|
||||
settings.endGroup();
|
||||
|
||||
if (allPages.isEmpty()) {
|
||||
- allPages = "url:\"https://www.qupzilla.com\"|title:\"QupZilla\";"
|
||||
- "url:\"http://blog.qupzilla.com\"|title:\"QupZilla Blog\";"
|
||||
- "url:\"https://github.com/QupZilla/qupzilla\"|title:\"QupZilla GitHub\";"
|
||||
- "url:\"https://duckduckgo.com\"|title:\"DuckDuckGo\";";
|
||||
+ allPages = "url:\"http://www.pisilinux.org\"|title:\"Pisilinux - Hoşgeldiniz\";"
|
||||
+ "url:\"http://forum.pisilinux.org\"|title:\"Forum\";"
|
||||
+ "url:\"http://wiki.pisilinux.org\"|title:\"Pisilinux Wiki\";"
|
||||
+ "url:\"http://www.youtube.com/html5\"|title:\"YouTube-html5\";"
|
||||
+ "url:\"http://www.google.com\"|title:\"Google\";"
|
||||
+ "url:\"http://www.qupzilla.com\"|title:\"QupZilla\";"
|
||||
+ "url:\"https://github.com/pisilinux\"|title:\"Github\";";
|
||||
}
|
||||
changed(allPages);
|
||||
|
||||
@@ -0,0 +1,94 @@
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>qupzilla</Name>
|
||||
<Homepage>http://www.qupzilla.com/</Homepage>
|
||||
<Packager>
|
||||
<Name>Alihan Öztürk</Name>
|
||||
<Email>alihan@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv3</License>
|
||||
<IsA>app:gui</IsA>
|
||||
<Summary>Cross-platform QtWebKit browser</Summary>
|
||||
<Description>QupZilla is a new and very fast QtWebEngine browser.</Description>
|
||||
<Archive type="tarxz" sha1sum="db05bb206999b782df4d6ae96c6df24cba81944a">https://github.com/QupZilla/qupzilla/releases/download/v2.0.1/QupZilla-2.0.1.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>openssl-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
<Dependency>qt5-webkit-devel</Dependency>
|
||||
<Dependency>qt5-webengine-devel</Dependency>
|
||||
<Dependency>qt5-x11extras-devel</Dependency>
|
||||
<Dependency>qt5-svg-devel</Dependency>
|
||||
<Dependency>qt5-sql-sqlite</Dependency>
|
||||
<Dependency>qt5-declarative-devel</Dependency>
|
||||
<Dependency>qt5-xmlpatterns-devel</Dependency>
|
||||
<Dependency>qt5-phonon-devel</Dependency>
|
||||
<Dependency>qt5-sensors-devel</Dependency>
|
||||
<Dependency>qt5-script-devel</Dependency>
|
||||
<Dependency>qt5-designer-devel</Dependency>
|
||||
<Dependency>qt5-webchannel-devel</Dependency>
|
||||
<Dependency>qt5-location-devel</Dependency>
|
||||
<Dependency>qt5-imageformats</Dependency>
|
||||
<Dependency>qt5-linguist</Dependency>
|
||||
<Dependency>xcb-util-devel</Dependency>
|
||||
<Dependency>libvpx-devel</Dependency>
|
||||
<Dependency>libgnome-keyring-devel</Dependency>
|
||||
<Dependency>kdelibs4-support-devel</Dependency>
|
||||
<Dependency>kwallet-devel</Dependency>
|
||||
<Dependency>hunspell-devel</Dependency>
|
||||
<Dependency>gdb-devel</Dependency>
|
||||
<Dependency>libmng-devel</Dependency>
|
||||
<Dependency>lcms2-devel</Dependency>
|
||||
<Dependency>tiff-devel</Dependency>
|
||||
<Dependency>jbigkit-devel</Dependency>
|
||||
<Dependency>nss-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="0">speeddial.diff</Patch>
|
||||
<Patch level="0">preferences.diff</Patch>
|
||||
<Patch level="0">browserwindow.diff</Patch>
|
||||
<Patch level="0">defines.diff</Patch>
|
||||
<Patch level="0">bookmarks_json.diff</Patch>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>qupzilla</Name>
|
||||
<Summary>Cross-platform QtWebKit browser</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>libxcb</Dependency>
|
||||
<Dependency>openssl</Dependency>
|
||||
<Dependency>qt5-base</Dependency>
|
||||
<Dependency>qt5-webengine</Dependency>
|
||||
<Dependency>qt5-x11extras</Dependency>
|
||||
<Dependency>qt5-webchannel</Dependency>
|
||||
<Dependency>qt5-declarative</Dependency>
|
||||
<Dependency>hunspell</Dependency>
|
||||
<Dependency>kwallet</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="library">/usr/qupzilla</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="data">/usr/share/appdata</Path>
|
||||
<Path fileType="data">/usr/share/applications</Path>
|
||||
<Path fileType="data">/usr/share/bash-completion</Path>
|
||||
<Path fileType="data">/usr/share/icons</Path>
|
||||
<Path fileType="data">/usr/share/pixmaps</Path>
|
||||
<Path fileType="data">/usr/share/qupzilla</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2016-06-18</Date>
|
||||
<Version>2.0.1</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Alihan Öztürk</Name>
|
||||
<Email>alihan@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>qupzilla</Name>
|
||||
<Summary xml:lang="en">A fast open source browser based on WebKit core, written in Qt Framework, wayland port</Summary>
|
||||
<Description xml:lang="en">A fast open source browser based on WebKit core, written in Qt Framework, wayland port</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user