This commit is contained in:
Rmys
2020-01-15 23:33:13 +03:00
parent cb44e975c0
commit 2ef1b965c8
9 changed files with 203794 additions and 203475 deletions
@@ -0,0 +1,47 @@
diff -Nuar a/mkspecs/common/g++-base.conf b/mkspecs/common/g++-base.conf
--- a/mkspecs/common/g++-base.conf 2019-12-07 09:27:07.000000000 +0300
+++ b/mkspecs/common/g++-base.conf 2019-12-22 16:09:06.575953931 +0300
@@ -10,15 +10,19 @@
QMAKE_COMPILER = gcc
-QMAKE_CC = $${CROSS_COMPILE}gcc
+QMAKE_CC = PISILINUX_CC
QMAKE_LINK_C = $$QMAKE_CC
QMAKE_LINK_C_SHLIB = $$QMAKE_CC
-QMAKE_CXX = $${CROSS_COMPILE}g++
+QMAKE_CXX = PISILINUX_CXX
-QMAKE_LINK = $$QMAKE_CXX
-QMAKE_LINK_SHLIB = $$QMAKE_CXX
+QMAKE_LINK = PISILINUX_CXX
+QMAKE_LINK_SHLIB = PISILINUX_CXX
+QMAKE_LINK_C = PISILINUX_CC
+QMAKE_LINK_C_SHLIB = PISILINUX_CC
+
+QMAKE_LFLAGS_RELEASE += PISILINUX_LDFLAGS
QMAKE_PCH_OUTPUT_EXT = .gch
diff -Nuar a/mkspecs/common/g++-unix.conf b/mkspecs/common/g++-unix.conf
--- a/mkspecs/common/g++-unix.conf 2019-12-07 09:27:07.000000000 +0300
+++ b/mkspecs/common/g++-unix.conf 2019-12-22 16:09:48.917950875 +0300
@@ -10,5 +10,5 @@
include(g++-base.conf)
-QMAKE_LFLAGS_RELEASE += -Wl,-O1
+QMAKE_LFLAGS_RELEASE += PISILINUX_LDFLAGS
QMAKE_LFLAGS_NOUNDEF += -Wl,--no-undefined
diff -Nuar a/mkspecs/common/linux.conf b/mkspecs/common/linux.conf
--- a/mkspecs/common/linux.conf 2019-12-07 09:27:07.000000000 +0300
+++ b/mkspecs/common/linux.conf 2019-12-22 16:10:34.108947615 +0300
@@ -48,5 +48,5 @@
QMAKE_NM = nm -P
QMAKE_RANLIB =
-QMAKE_STRIP = strip
+QMAKE_STRIP =
QMAKE_STRIPFLAGS_LIB += --strip-unneeded
+13 -2
View File
@@ -11,7 +11,7 @@
<Summary>Cross platform application and UI framework</Summary>
<Description>Cross platform application and UI development framework</Description>
<License>'GPL3' 'LGPL3' 'FDL' 'custom'</License>
<Archive sha1sum="3e073387a08599641a154de758f729d47db8986f" type="tarxz">http://download.qt.io/official_releases/qt/5.13/5.13.2/submodules/qtbase-everywhere-src-5.13.2.tar.xz</Archive>
<Archive sha1sum="bd1b54cb5cc38bea4a84e18ac1e304b2a8f7fd55" type="tarxz">http://download.qt.io/official_releases/qt/5.14/5.14.0/submodules/qtbase-everywhere-src-5.14.0.tar.xz</Archive>
<AdditionalFiles>
<!-- <AdditionalFile target="qt5-base-nouveau-freeze.patch">qt5-base-nouveau-freeze.patch</AdditionalFile> -->
</AdditionalFiles>
@@ -75,10 +75,11 @@
<Dependency>libXcursor-devel</Dependency>
<Dependency>tslib-devel</Dependency>
<Dependency>shared-mime-info</Dependency>
<Dependency>md4c-devel</Dependency>
</BuildDependencies>
<Patches>
<!-- Pisilinux Patches -->
<Patch>mkspecs.patch</Patch>
<Patch>mkspecs2.patch</Patch>
<!-- <Patch level="1">qtbug-77364.patch</Patch> -->
<!-- <Patch level="1">qtbase-zlib-compression.patch</Patch> -->
<!-- <Patch level="1">virtualbox-focus.patch</Patch> -->
@@ -123,6 +124,9 @@
<Dependency>xcb-util-image</Dependency>
<Dependency>xcb-util-keysyms</Dependency>
<Dependency>xcb-util-renderutil</Dependency>
<Dependency>md4c</Dependency>
<Dependency>mit-kerberos</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
@@ -264,6 +268,13 @@
</Package>-->
<History>
<Update release="22">
<Date>2019-12-22</Date>
<Version>5.14.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="21">
<Date>2019-11-02</Date>
<Version>5.13.2</Version>
+203641 -203471
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -1 +1 @@
fea3095dd171f5c094799524fa4415e900f3086a
bcca9190ad947ac82ad4a151a8cbdd2b9b77327d
BIN
View File
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
05e669b1b6c39ef037950bb103efb2708499d827
1f640ede10cccd8c3f7f99a1ebdf66d053099dae
+21
View File
@@ -0,0 +1,21 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import cmaketools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
cmaketools.configure("-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib")
def build():
cmaketools.make()
def install():
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("CHANGELOG*", "LICENSE*", "README*")
+62
View File
@@ -0,0 +1,62 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>md4c</Name>
<Homepage>https://github.com/mity/md4c</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>MIT</License>
<IsA>library</IsA>
<Summary>C Markdown parser</Summary>
<Description>C Markdown parser</Description>
<Archive sha1sum="0a4be23b39839268dd7158099e03fcb33d68f20b" type="targz">https://github.com/mity/md4c/archive/release-0.4.2.tar.gz</Archive>
<BuildDependencies>
<Dependency>cmake</Dependency>
</BuildDependencies>
<!--
<Patches>
<Patch>md4c.patch</Patch>
<Patch level="1">md4c.patch</Patch>
</Patches>
-->
</Source>
<Package>
<Name>md4c</Name>
<RuntimeDependencies>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>md4c-devel</Name>
<Summary>Development files for md4c</Summary>
<RuntimeDependencies>
<Dependency release="current">md4c</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/cmake</Path>
<Path fileType="library">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2019-12-22</Date>
<Version>0.4.2</Version>
<Comment>First release</Comment>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>md4c</Name>
<Summary xml:lang="tr">C Markdown parser</Summary>
<Description xml:lang="tr">C Markdown parser</Description>
</Source>
</PISI>