Merge branch 'master' of github.com:pisilinux/main

This commit is contained in:
Ertuğrul Erata
2018-02-24 08:39:55 +03:00
21 changed files with 246 additions and 32 deletions
@@ -0,0 +1,50 @@
From 8a6cc8b5069265e1e92e22def985e22c5955e503 Mon Sep 17 00:00:00 2001
From: Morris Hafner <mmha@users.noreply.github.com>
Date: Mon, 13 Feb 2017 17:46:46 +0100
Subject: [PATCH] Add missing <functional> includes (#5630)
---
src/core/mergedproxymodel.cpp | 1 +
src/devices/giolister.cpp | 1 +
src/library/groupbydialog.cpp | 2 ++
3 files changed, 4 insertions(+)
diff --git a/src/core/mergedproxymodel.cpp b/src/core/mergedproxymodel.cpp
index 56217f6fd..8c210d391 100644
--- a/src/core/mergedproxymodel.cpp
+++ b/src/core/mergedproxymodel.cpp
@@ -23,6 +23,7 @@
#include <QStringList>
+#include <functional>
#include <limits>
// boost::multi_index still relies on these being in the global namespace.
diff --git a/src/devices/giolister.cpp b/src/devices/giolister.cpp
index aa3bddb34..5f63ef248 100644
--- a/src/devices/giolister.cpp
+++ b/src/devices/giolister.cpp
@@ -17,6 +17,7 @@
#include "config.h"
+#include <functional>
#include <memory>
#include <QFile>
diff --git a/src/library/groupbydialog.cpp b/src/library/groupbydialog.cpp
index 5efdc9f36..e5f711b34 100644
--- a/src/library/groupbydialog.cpp
+++ b/src/library/groupbydialog.cpp
@@ -20,6 +20,8 @@
#include <QPushButton>
+#include <functional>
+
// boost::multi_index still relies on these being in the global namespace.
using std::placeholders::_1;
using std::placeholders::_2;
--
2.13.4
@@ -0,0 +1,25 @@
diff --git a/src/internet/spotify/spotifyblobdownloader.cpp b/src/internet/spotify/spotifyblobdownloader.cpp
index e34577f5d..045aeeb8a 100644
--- a/src/internet/spotify/spotifyblobdownloader.cpp
+++ b/src/internet/spotify/spotifyblobdownloader.cpp
@@ -189,7 +189,7 @@ bool SpotifyBlobDownloader::CheckSignature(
try {
CryptoPP::ByteQueue bytes;
- bytes.Put(reinterpret_cast<const byte*>(public_key_data.constData()),
+ bytes.Put(reinterpret_cast<const CryptoPP::byte*>(public_key_data.constData()),
public_key_data.size());
bytes.MessageEnd();
@@ -204,9 +204,9 @@ bool SpotifyBlobDownloader::CheckSignature(
actual_filename.remove(kSignatureSuffix);
const bool result = verifier.VerifyMessage(
- reinterpret_cast<const byte*>(file_data[actual_filename].constData()),
+ reinterpret_cast<const CryptoPP::byte*>(file_data[actual_filename].constData()),
file_data[actual_filename].size(),
- reinterpret_cast<const byte*>(
+ reinterpret_cast<const CryptoPP::byte*>(
file_data[signature_filename].constData()),
file_data[signature_filename].size());
qLog(Debug) << "Verifying" << actual_filename << "against"
+11
View File
@@ -59,6 +59,10 @@
</BuildDependencies>
<Patches>
<Patch level="1">tokenizer.diff</Patch>
<!-- <Patch level="1">clementine-gcc6.patch</Patch> -->
<Patch level="1">add-missing-functional-includes-5630.patch</Patch>
<!-- <Patch level="1">clementine-1.3.1-chromaprint-1.4.0.patch</Patch> -->
<Patch level="1">clementine-cryptopp6.patch</Patch>
</Patches>
</Source>
@@ -93,6 +97,13 @@
</Package>
<History>
<Update release="3">
<Date>2018-02-22</Date>
<Version>1.3.1</Version>
<Comment>Rebuild.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="2">
<Date>2017-03-08</Date>
<Version>1.3.1</Version>
+3 -1
View File
@@ -15,7 +15,9 @@ def build():
def install():
pythonmodules.install(pyVer="3")
pisitools.insinto("/usr/share/vim/vimfiles", "syntax-highlighting/vim/*")
pisitools.insinto("/usr/share/vim/vimfiles", "data/syntax-highlighting/vim/*")
pisitools.insinto("/usr/share/emacs/site-lisp", "data/syntax-highlighting/emacs/*")
pisitools.insinto("/usr/share/zsh/site-functions", "data/shell-completions/zsh/*")
pisitools.remove("/usr/share/vim/vimfiles/README")
pisitools.dodoc("COPYING", "README*")
+9 -2
View File
@@ -12,13 +12,13 @@
<IsA>app:console</IsA>
<Summary>High productivity build system</Summary>
<Description>Yüksek verimli üretme sistemi</Description>
<Archive sha1sum="e11f6d5c84ebec8debe1c8ae15f6e7759db2d962" type="targz">https://github.com/mesonbuild/meson/releases/download/0.43.0/meson-0.43.0.tar.gz</Archive>
<Archive sha1sum="12d1d0466955da4f9a7ef158a23d4e37d985d667" type="targz">https://github.com/mesonbuild/meson/releases/download/0.44.1/meson-0.44.1.tar.gz</Archive>
<BuildDependencies>
<Dependency>python3-devel</Dependency>
<Dependency>python3-setuptools</Dependency>
</BuildDependencies>
<Patches>
<Patch level="1">fix-tests.patch</Patch>
<!-- <Patch level="1">fix-tests.patch</Patch> -->
</Patches>
</Source>
<Package>
@@ -37,6 +37,13 @@
</Files>
</Package>
<History>
<Update release="2">
<Date>2018-02-22</Date>
<Version>0.44.1</Version>
<Comment>Version bump</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="1">
<Date>2017-12-07</Date>
<Version>0.43.0</Version>
+8 -1
View File
@@ -12,7 +12,7 @@
<IsA>app:console</IsA>
<Summary>library that handles input devices for display servers and other applications that need to directly deal with input devices.</Summary>
<Description>It provides device detection, device handling, input device event processing and abstraction so minimize the amount of custom input code the user of libinput need to provide the common set of functionality that users expect.</Description>
<Archive sha1sum="1325ede21844a49ca2b714edeabbccbccf54899a" type="tarxz">https://www.freedesktop.org/software/libinput/libinput-1.9.4.tar.xz</Archive>
<Archive sha1sum="26cbca90655d04bf2161ac58c91e797996cfabb0" type="tarxz">https://www.freedesktop.org/software/libinput/libinput-1.10.0.tar.xz</Archive>
<BuildDependencies>
<Dependency>meson</Dependency>
<Dependency>gtk3-devel</Dependency>
@@ -60,6 +60,13 @@
</Package>
<History>
<Update release="8">
<Date>2018-02-22</Date>
<Version>1.10.0</Version>
<Comment>Version bump</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="7">
<Date>2017-12-24</Date>
<Version>1.9.4</Version>
+9 -2
View File
@@ -12,7 +12,7 @@
<IsA>library</IsA>
<Summary>New portable threads library</Summary>
<Description>is a non-preemptive threads implementation using an API very similar to the one known from GNU Pth. It has been designed as a replacement of GNU Pth for non-ancient operating systems.</Description>
<Archive sha1sum="1b21507cfa3f58bdd19ef2f6800ab4cb67729972" type="tarbz2">ftp://ftp.gnupg.org/gcrypt/npth/npth-1.3.tar.bz2</Archive>
<Archive sha1sum="93ddf1a3bdbca00fb4cf811498094ca61bbb8ee1" type="tarbz2">ftp://ftp.gnupg.org/gcrypt/npth/npth-1.5.tar.bz2</Archive>
</Source>
<Package>
@@ -38,6 +38,13 @@
</Package>
<History>
<Update release="4">
<Date>2018-02-21</Date>
<Version>1.5</Version>
<Comment>Version Bump</Comment>
<Name>Mustafa Cianasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="3">
<Date>2017-03-05</Date>
<Version>1.3</Version>
@@ -60,4 +67,4 @@
<Email>ertugrulerata@gmail.com</Email>
</Update>
</History>
</PISI>
</PISI>
+4 -9
View File
@@ -10,19 +10,14 @@ from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import get
def setup():
cmaketools.configure("-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_INSTALL_PREFIX=/usr \
-DBUILD_SHARED=ON \
-DBUILD_STATIC=OFF \
-DBUILD_TESTING=OFF \
-DCMAKE_INSTALL_LIBDIR=lib")
pisitools.dosed("cryptopp.pc", "@VERSION@", get.srcVERSION())
def build():
pisitools.dosed("cryptopp.pc", "@VERSION@", get.srcVERSION())
cmaketools.make()
def install():
cmaketools.rawInstall("PREFIX=/usr DESTDIR=%s" % get.installDIR())
+8 -1
View File
@@ -12,7 +12,7 @@
<IsA>library</IsA>
<Summary>Public domain C++ class library of cryptographic schemes</Summary>
<Description>crypto++ is a free C++ class library of cryptographic schemes. One purpose of Crypto++ is to act as a repository of public domain (not copyrighted) source code. Although the library is copyrighted as a compilation, the individual files in it are in the public domain.</Description>
<Archive sha1sum="3aa4f2fcfee05ed304c6614325c90eba0dc75f16" type="targz">https://github.com/weidai11/cryptopp/archive/CRYPTOPP_5_6_5.tar.gz</Archive>
<Archive sha1sum="1ed9f1ced89ed301a0cf8c7a2b7bf25efb68aac3" type="targz">https://github.com/weidai11/cryptopp/archive/CRYPTOPP_6_0_0.tar.gz</Archive>
<AdditionalFiles>
<AdditionalFile target="cryptopp.pc" permission="0644" owner="root">cryptopp.pc</AdditionalFile>
</AdditionalFiles>
@@ -47,6 +47,13 @@
</Package>
<History>
<Update release="2">
<Date>2018-02-22</Date>
<Version>6.0.0</Version>
<Comment>Version Bump</Comment>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2017-01-04</Date>
<Version>5.6.5</Version>
+8 -1
View File
@@ -12,7 +12,7 @@
<IsA>library</IsA>
<Summary>GNU TLS Library</Summary>
<Description>gnutls is a project that aims to develop a library which provides a secure layer, over a reliable transport layer. Currently the GnuTLS library implements the proposed standards by the IETF's TLS working group.</Description>
<Archive sha1sum="238d5e62f9bb078101131dd2f4c7f2c1ac13e813" type="tarxz">http://gd.tuwien.ac.at/pub/gnupg/gnutls/v3.5/gnutls-3.5.8.tar.xz</Archive>
<Archive sha1sum="24e5a416ce320945a2515619f3c2f0f6f2290ddc" type="tarxz">http://gd.tuwien.ac.at/pub/gnupg/gnutls/v3.6/gnutls-3.6.2.tar.xz</Archive>
<BuildDependencies>
<Dependency>gc-devel</Dependency>
<Dependency>gmp-devel</Dependency>
@@ -98,6 +98,13 @@
</Package>
<History>
<Update release="6">
<Date>2018-02-21</Date>
<Version>3.6.2</Version>
<Comment>Version Bump</Comment>
<Name>Mustafa Cianasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="5">
<Date>2017-02-18</Date>
<Version>3.5.8</Version>
+8 -1
View File
@@ -14,7 +14,7 @@
<IsA>app:console</IsA>
<Summary>Linux key management utilities</Summary>
<Description>keyutils contains utilities to control the kernel key management facility and to provide a mechanism by which the kernel call back to userspace to get a key instantiated.</Description>
<Archive sha1sum="cf040adebe25eb466760f34752f4100fd5acb5e7" type="tarbz2">http://people.redhat.com/~dhowells/keyutils/keyutils-1.5.9.tar.bz2</Archive>
<Archive sha1sum="c139dc6f86d772dc608e4572d67c6e023a34a783" type="tarbz2">http://people.redhat.com/~dhowells/keyutils/keyutils-1.5.10.tar.bz2</Archive>
</Source>
<Package>
@@ -33,6 +33,13 @@
</Package>
<History>
<Update release="4">
<Date>2018-02-22</Date>
<Version>1.5.10</Version>
<Comment>Release Bump</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2017-02-17</Date>
<Version>1.5.9</Version>
+8 -1
View File
@@ -12,7 +12,7 @@
<IsA>library</IsA>
<Summary>ASN.1 library used in GNUTLS</Summary>
<Description>libtasn1 is the ASN.1 library which provides ASN.1 structures parsing capabilities for use with GNUTLS.</Description>
<Archive sha1sum="c7b36fa50866bbc889f7503c7fd1e9f9d7c52a64" type="targz">http://ftp.gnu.org/gnu/libtasn1/libtasn1-4.10.tar.gz</Archive>
<Archive sha1sum="a84afb4cd8187c1fa5901c6bc1cf1486eea66635" type="targz">http://ftp.gnu.org/gnu/libtasn1/libtasn1-4.13.tar.gz</Archive>
</Source>
<Package>
@@ -54,6 +54,13 @@
</Package>
<History>
<Update release="5">
<Date>2018-02-22</Date>
<Version>4.13</Version>
<Comment>Version Bump</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="4">
<Date>2017-01-25</Date>
<Version>4.10</Version>
+11 -3
View File
@@ -13,9 +13,9 @@
<PartOf>util.crypt</PartOf>
<Summary>Library to work with PKCS#11 modules</Summary>
<Description>The p11-kit package Provides a way to load and enumerate PKCS #11 (a Cryptographic Token Interface Standard) modules.</Description>
<Archive sha1sum="4da0d7b47935b6cb0f321dd00358b063ae42df71" type="targz">https://p11-glue.freedesktop.org/releases/p11-kit-0.23.2.tar.gz</Archive>
<Archive sha1sum="1c67633736301707d7d0b2b0cf35f9240259deb3" type="targz">https://github.com/p11-glue/p11-kit/releases/download/0.23.9/p11-kit-0.23.9.tar.gz</Archive>
<BuildDependencies>
<Dependency versionFrom="4.10">libtasn1-devel</Dependency>
<Dependency versionFrom="4.13">libtasn1-devel</Dependency>
<Dependency>libffi-devel</Dependency>
</BuildDependencies>
</Source>
@@ -23,11 +23,12 @@
<Package>
<Name>p11-kit</Name>
<RuntimeDependencies>
<Dependency versionFrom="4.10">libtasn1</Dependency>
<Dependency versionFrom="4.13">libtasn1</Dependency>
<Dependency>libffi</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="executable">/usr/libexec</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="doc">/usr/share/gtk-doc</Path>
<Path fileType="doc">/usr/share/p11-kit</Path>
@@ -69,6 +70,13 @@
</Package>
<History>
<Update release="5">
<Date>2018-02-22</Date>
<Version>0.23.9</Version>
<Comment>Version Bump</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="4">
<Date>2017-02-17</Date>
<Version>0.23.2</Version>
+14 -2
View File
@@ -12,7 +12,7 @@
<IsA>app:console</IsA>
<Summary>Collection of simple PIN or passphrase entry dialogs which utilize the Assuan protocol</Summary>
<Description>Pinentry is a collection of simple PIN or passphrase entry dialogs which utilize the Assuan protocol as described by the aegypten project.</Description>
<Archive sha1sum="85d9ac81ebad3fb082514c505c90c39a0456f1f6" type="tarbz2">ftp://ftp.gnupg.org/gcrypt/pinentry/pinentry-1.0.0.tar.bz2</Archive>
<Archive sha1sum="693bdf9f48dfb3e040d92f50b1bb464e268b9fb0" type="tarbz2">ftp://ftp.gnupg.org/gcrypt/pinentry/pinentry-1.1.0.tar.bz2</Archive>
<BuildDependencies>
<Dependency>libsecret-devel</Dependency>
<Dependency>libgpg-error-devel</Dependency>
@@ -22,6 +22,8 @@
<Dependency>libcap-devel</Dependency>
<Dependency>ncurses-devel</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>gcr-devel</Dependency>
<Dependency>fltk-devel</Dependency>
</BuildDependencies>
<Patches>
<!--<Patch level="1">moreSecureMemoryForPinentry-qt.diff</Patch>-->
@@ -36,6 +38,9 @@
<Path fileType="doc">/usr/share/doc</Path>
</Files>
<RuntimeDependencies>
<Dependency>gcr</Dependency>
<Dependency>fltk</Dependency>
<Dependency>libgcc</Dependency>
<Dependency>glib2</Dependency>
<Dependency>libassuan</Dependency>
<Dependency>libsecret</Dependency>
@@ -81,6 +86,13 @@
</Package>
<History>
<Update release="4">
<Date>2018-02-22</Date>
<Version>1.1.0</Version>
<Comment>Version Bump</Comment>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2017-02-17</Date>
<Version>1.0.0</Version>
@@ -103,4 +115,4 @@
<Email>ertugrulerata@gmail.com</Email>
</Update>
</History>
</PISI>
</PISI>
+8 -1
View File
@@ -12,7 +12,7 @@
<IsA>library</IsA>
<Summary>X.Org Xcursor library</Summary>
<Description>libXcursor is the X Cursor management library. It allows using different mouse skins and modifying of the text cursor.</Description>
<Archive sha1sum="89870756758439f9216ddf5f2d3dca56570fc6b7" type="tarbz2">mirrors://xorg/individual/lib/libXcursor-1.1.14.tar.bz2</Archive>
<Archive sha1sum="3e19f991f244b7fa31566adce7ead078424296cf" type="tarbz2">mirrors://xorg/individual/lib/libXcursor-1.1.15.tar.bz2</Archive>
<BuildDependencies>
<Dependency>util-macros</Dependency>
<Dependency>libX11-devel</Dependency>
@@ -75,6 +75,13 @@
</Package>
<History>
<Update release="4">
<Date>2018-02-22</Date>
<Version>1.1.15</Version>
<Comment>Version bump</Comment>
<Name>PisiLinux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2017-02-02</Date>
<Version>1.1.14</Version>
+9 -1
View File
@@ -12,13 +12,14 @@
<IsA>library</IsA>
<Summary>X.Org Xfont library</Summary>
<Description>libXfont is the Xorg library that allows using various types of fonts.</Description>
<Archive sha1sum="a9470774f271622c1b425826d1c8836ed96e4a96" type="tarbz2">mirrors://xorg/individual/lib/libXfont-1.5.2.tar.bz2</Archive>
<Archive sha1sum="9db050f63b9c4cb19e0dbb40575558ccb95719ca" type="tarbz2">mirrors://xorg/individual/lib/libXfont-1.5.4.tar.bz2</Archive>
<BuildDependencies>
<Dependency>libfontenc-devel</Dependency>
<Dependency>util-macros</Dependency>
<Dependency>freetype-devel</Dependency>
<Dependency>xorg-proto</Dependency>
<Dependency>xtrans</Dependency>
<Dependency>xmlto</Dependency>
<Dependency>zlib-devel</Dependency>
</BuildDependencies>
</Source>
@@ -51,6 +52,13 @@
</Package>
<History>
<Update release="4">
<Date>2018-02-22</Date>
<Version>1.5.4</Version>
<Comment>Version bump.</Comment>
<Name>PisiLinux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2017-02-02</Date>
<Version>1.5.2</Version>
+9 -1
View File
@@ -12,13 +12,14 @@
<IsA>library</IsA>
<Summary>X.Org Xfont library</Summary>
<Description>libXfont is the Xorg library that allows using various types of fonts.</Description>
<Archive sha1sum="4cf056ab00bf631649e040051cf8e2b096cc245b" type="tarbz2">http://xorg.freedesktop.org/archive/individual/lib/libXfont2-2.0.1.tar.bz2</Archive>
<Archive sha1sum="1110f1ad4061d9e8131ecb941757480e3e32bca0" type="tarbz2">http://xorg.freedesktop.org/archive/individual/lib/libXfont2-2.0.3.tar.bz2</Archive>
<BuildDependencies>
<Dependency>libfontenc-devel</Dependency>
<Dependency>util-macros</Dependency>
<Dependency>freetype-devel</Dependency>
<Dependency>xorg-proto</Dependency>
<Dependency>xtrans</Dependency>
<Dependency>xmlto</Dependency>
<Dependency>zlib-devel</Dependency>
</BuildDependencies>
</Source>
@@ -51,6 +52,13 @@
</Package>
<History>
<Update release="2">
<Date>2018-02-22</Date>
<Version>2.0.3</Version>
<Comment>Version bump.</Comment>
<Name>PisiLinux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2017-03-02</Date>
<Version>2.0.1</Version>
+3 -2
View File
@@ -22,6 +22,7 @@ def setup():
options += "-DVGL_LIBDIR=/usr/lib32 \
-DCMAKE_INSTALL_PREFIX=/emul32 \
-DCMAKE_INSTALL_LIBDIR=/usr/lib32 \
-DVGL_BINDIR=/emul32/bin \
-DTJPEG_LIBRARY=/usr/lib32/libturbojpeg.so \
-DVGL_FAKELIBDIR=/usr/lib32/fakelib \
@@ -29,9 +30,9 @@ def setup():
elif get.ARCH() == "x86_64":
options += "-DVGL_LIBDIR=/usr/lib \
-DCMAKE_INSTALL_PREFIX=/usr/share \
-DCMAKE_INSTALL_LIBDIR=/usr/lib \
-DCMAKE_INSTALL_PREFIX=/usr \
-DVGL_FAKELIBDIR=/usr/lib/fakelib \
-DCMAKE_INSTALL_PREFIX=/usr/share \
-DTJPEG_LIBRARY=/usr/lib/libturbojpeg.so \
-DVGL_BINDIR=/usr/bin"
+8 -1
View File
@@ -13,7 +13,7 @@
<IsA>app:console</IsA>
<Summary>A toolkit for displaying OpenGL applications to thin clients</Summary>
<Description>Redirects 3D commands from an OpenGL application onto a server-side 3D graphics card.</Description>
<Archive sha1sum="20ec8daa09d2bd5bb2437628a2416f9a4ca0fa63" type="targz">https://sourceforge.net/projects/virtualgl/files/2.5.1/VirtualGL-2.5.1.tar.gz</Archive>
<Archive sha1sum="c2e08aa0d8991f4b6984f2d0acb9d4170e034ae0" type="targz">https://sourceforge.net/projects/virtualgl/files/2.5.2/VirtualGL-2.5.2.tar.gz</Archive>
<BuildDependencies>
<Dependency>cmake</Dependency>
<Dependency>fltk-devel</Dependency>
@@ -89,6 +89,13 @@
</Package>
<History>
<Update release="5">
<Date>2018-02-22</Date>
<Version>2.5.2</Version>
<Comment>Version bump</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="4">
<Date>2017-02-16</Date>
<Version>2.5.1</Version>
@@ -0,0 +1,24 @@
From 9a5cecf64ffc427a6a5a7c9a061992c32e5b8a4f Mon Sep 17 00:00:00 2001
From: Gunnar Hjalmarsson <gunnarhj@ubuntu.com>
Date: Thu, 1 Feb 2018 15:37:46 +0100
Subject: [PATCH] Fix typo in Polish symbols file
https://bugs.freedesktop.org/show_bug.cgi?id=104904
---
symbols/pl | 1 -
1 file changed, 1 deletion(-)
diff --git a/symbols/pl b/symbols/pl
index 52e7959..800cb85 100644
--- a/symbols/pl
+++ b/symbols/pl
@@ -497,7 +497,6 @@ partial alphanumeric_keys
include "sun_vndr/pl(sun_type6)"
};
-------------------------------
//Glagolica
partial alphanumeric_keys
xkb_symbols "glagolica"
--
2.16.1
+9 -2
View File
@@ -1,4 +1,3 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
@@ -13,7 +12,7 @@
<IsA>data</IsA>
<Summary>X keyboard configuration database</Summary>
<Description>xkeyboard-config aims to provide consistent and well-structured X keyboard configuration data for X Window System implementations.</Description>
<Archive sha1sum="fe36dc8259571721776f885ba66060e0b5a0616c" type="tarbz2">mirrors://xorg/individual/data/xkeyboard-config/xkeyboard-config-2.20.tar.bz2</Archive>
<Archive sha1sum="184c9ce35f4fa44188acbf549f80d36407697ac3" type="tarbz2">mirrors://xorg/individual/data/xkeyboard-config/xkeyboard-config-2.23.1.tar.bz2</Archive>
<BuildDependencies>
<Dependency>intltool</Dependency>
<Dependency>xorg-proto</Dependency>
@@ -23,6 +22,7 @@
</BuildDependencies>
<Patches>
<Patch level="1">xkeyboard-config-1.4-jp-tilde.patch</Patch>
<Patch>fix_typo_in_polish.patch</Patch>
</Patches>
</Source>
@@ -49,6 +49,13 @@
</Package>
<History>
<Update release="5">
<Date>2018-02-22</Date>
<Version>2.23.1</Version>
<Comment>Version bump</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="4">
<Date>2017-02-16</Date>
<Version>2.20</Version>