DISTFILES: kernel: ERRORS: linux-4.20.tar.xz patch-4.20.0.xz

2018-12-29 Thread arekm
Request by: arekm

wget -nv --no-iri --no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/8b1cdd67-1c10-4baf-801e-572a9281c15e/1e33e1e7f80f8dbe4a0274ba274626b4/patch-4.20.0.xz
 https://www.kernel.org/pub/linux/kernel/v4.x/patch-4.20.0.xz:
https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/patch-4.20.0.xz:
2018-12-30 05:38:27 ERROR 404: Not Found.


wget -nv --no-iri --no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/8b1cdd67-1c10-4baf-801e-572a9281c15e/1e33e1e7f80f8dbe4a0274ba274626b4/patch-4.20.0.xz
 https://www.kernel.org/pub/linux/kernel/v4.x/patch-4.20.0.xz:
exited with code 8 (0x00)

FATAL: https://www.kernel.org/pub/linux/kernel/v4.x/patch-4.20.0.xz 
(1e33e1e7f80f8dbe4a0274ba274626b4) was not fetched correctly (wget -nv --no-iri 
--no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/8b1cdd67-1c10-4baf-801e-572a9281c15e/1e33e1e7f80f8dbe4a0274ba274626b4/patch-4.20.0.xz
 https://www.kernel.org/pub/linux/kernel/v4.x/patch-4.20.0.xz: 
https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/patch-4.20.0.xz:
2018-12-30 05:38:27 ERROR 404: Not Found.
): file fetched but has 0 length

Files fetched: 0

ALREADY GOT: https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.20.tar.xz
d39dd4ba2d5861c54b90d49be19eaf31  linux-4.20.tar.xz


-- 
Virtually Yours: distfiles.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/kernel] - make xfs memory reclaim configurable; https://github.com/bobrik/linux/pull/2. No behaviour change

2018-12-29 Thread arekm
commit 9a2797cc361cd624ab092ff0b7569e88596b1160
Author: Arkadiusz Miśkiewicz 
Date:   Sun Dec 30 05:37:54 2018 +0100

- make xfs memory reclaim configurable; 
https://github.com/bobrik/linux/pull/2. No behaviour change by default.

 kernel.spec|   2 +
 xfs-reclaim-hack.patch | 164 +
 2 files changed, 166 insertions(+)
---
diff --git a/kernel.spec b/kernel.spec
index f8ca7ac4..cf42a28c 100644
--- a/kernel.spec
+++ b/kernel.spec
@@ -214,6 +214,7 @@ Patch500:   kernel-rt.patch
 Patch2000: kernel-small_fixes.patch
 Patch2001: kernel-pwc-uncompress.patch
 Patch2003: kernel-regressions.patch
+Patch2004: xfs-reclaim-hack.patch
 
 # for rescuecd
 # based on ftp://ftp.leg.uct.ac.za/pub/linux/rip/tmpfs_root-2.6.30.diff.gz
@@ -685,6 +686,7 @@ rm -f localversion-rt
 %patch2000 -p1
 %patch2001 -p1
 #%patch2003 -p1
+%patch2004 -p1
 
 # Do not remove this, please!
 #%%patch5 -p1
diff --git a/xfs-reclaim-hack.patch b/xfs-reclaim-hack.patch
new file mode 100644
index ..05198cb1
--- /dev/null
+++ b/xfs-reclaim-hack.patch
@@ -0,0 +1,164 @@
+; https://github.com/bobrik/linux/pull/2
+From 1910e1157eb4b455b877a813f0a1b786dcbf799c Mon Sep 17 00:00:00 2001
+From: Ivan Babrou 
+Date: Tue, 27 Nov 2018 14:37:25 -0800
+Subject: [PATCH] xfs: add a sysctl to disable memory reclaim participation
+
+XFS may try to flush dirty inodes in reclaim and it slows things down
+considerably, especially in high page cache and slow disk environment.
+
+This sysctl allows to exclude XFS from kswapd and direct reclaim.
+
+See: https://marc.info/?t=15434518723
+---
+ Documentation/filesystems/xfs.txt | 6 ++
+ fs/xfs/xfs_globals.c  | 1 +
+ fs/xfs/xfs_icache.c   | 6 +-
+ fs/xfs/xfs_icache.h   | 6 ++
+ fs/xfs/xfs_linux.h| 1 +
+ fs/xfs/xfs_super.c| 3 +++
+ fs/xfs/xfs_sysctl.c   | 9 +
+ fs/xfs/xfs_sysctl.h   | 2 ++
+ kernel/sysctl_binary.c| 1 +
+ 9 files changed, 34 insertions(+), 1 deletion(-)
+
+diff --git a/Documentation/filesystems/xfs.txt 
b/Documentation/filesystems/xfs.txt
+index 3b9b5c149f322..b33a4822f879c 100644
+--- a/Documentation/filesystems/xfs.txt
 b/Documentation/filesystems/xfs.txt
+@@ -331,6 +331,12 @@ The following sysctls are available for the XFS 
filesystem:
+   is to control the rate at which the allocator moves between
+   allocation groups when allocating extents for new files.
+ 
++  fs.xfs.memory_reclaim   (Min: 0  Default: 2  Max: 2)
++  Set memory reclaim strategy:
++  0: no inode reclaim (background reclaim is still enabled)
++  1: async inode reclaim of clean inodes only
++  2: sync inode reclaim (includes synchronous writes)
++
+ Deprecated Sysctls
+ ==
+ 
+diff --git a/fs/xfs/xfs_globals.c b/fs/xfs/xfs_globals.c
+index 3e1cc3001bcbf..2927cc2b12b57 100644
+--- a/fs/xfs/xfs_globals.c
 b/fs/xfs/xfs_globals.c
+@@ -43,6 +43,7 @@ xfs_param_t xfs_params = {
+   .fstrm_timer= { 1,  30*100, 3600*100},
+   .eofb_timer = { 1,  300,3600*24},
+   .cowb_timer = { 1,  1800,   3600*24},
++  .memory_reclaim = { 0,  2,  2,  },
+ };
+ 
+ struct xfs_globals xfs_globals = {
+diff --git a/fs/xfs/xfs_icache.c b/fs/xfs/xfs_icache.c
+index 544b5211221cd..54fcf1af7e3f5 100644
+--- a/fs/xfs/xfs_icache.c
 b/fs/xfs/xfs_icache.c
+@@ -1380,7 +1380,11 @@ xfs_reclaim_inodes_nr(
+   xfs_reclaim_work_queue(mp);
+   xfs_ail_push_all(mp->m_ail);
+ 
+-  return xfs_reclaim_inodes_ag(mp, SYNC_TRYLOCK | SYNC_WAIT, _to_scan);
++  int flags = SYNC_TRYLOCK;
++  if (xfs_memory_reclaim == XFS_MEMORY_RECLAIM_SYNC)
++  flags |= SYNC_WAIT;
++
++  return xfs_reclaim_inodes_ag(mp, flags, _to_scan);
+ }
+ 
+ /*
+diff --git a/fs/xfs/xfs_icache.h b/fs/xfs/xfs_icache.h
+index bff4d85e54984..2547c0d85e5a1 100644
+--- a/fs/xfs/xfs_icache.h
 b/fs/xfs/xfs_icache.h
+@@ -54,6 +54,12 @@ struct xfs_eofblocks {
+  */
+ #define XFS_AGITER_INEW_WAIT  0x1 /* wait on new inodes */
+ 
++enum {
++  XFS_MEMORY_RECLAIM_NONE = 0,
++  XFS_MEMORY_RECLAIM_ASYNC,
++  XFS_MEMORY_RECLAIM_SYNC,
++};
++
+ int xfs_iget(struct xfs_mount *mp, struct xfs_trans *tp, xfs_ino_t ino,
+uint flags, uint lock_flags, xfs_inode_t **ipp);
+ 
+diff --git a/fs/xfs/xfs_linux.h b/fs/xfs/xfs_linux.h
+index dcd1292664b34..3cddbffaa8cb4 100644
+--- a/fs/xfs/xfs_linux.h
 b/fs/xfs/xfs_linux.h
+@@ -110,6 +110,7 @@ typedef __u32  xfs_nlink_t;
+ #define xfs_fstrm_centisecs   xfs_params.fstrm_timer.val
+ #define xfs_eofb_secs xfs_params.eofb_timer.val
+ #define xfs_cowb_secs xfs_params.cowb_timer.val
++#define xfs_memory_reclaimxfs_params.memory_reclaim.val
+ 
+ #define current_cpu() 

[projects/pld-ftp-admin] fix archive handling when moving packages around

2018-12-29 Thread baggins
commit b28d4942ed66d87bb31dbfa8c424317ba2ee81c3
Author: Jan Rękorajski 
Date:   Sun Dec 30 10:12:50 2018 +0900

fix archive handling when moving packages around

 modules/ftptree.py | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
---
diff --git a/modules/ftptree.py b/modules/ftptree.py
index 70db8a0..e228331 100644
--- a/modules/ftptree.py
+++ b/modules/ftptree.py
@@ -301,7 +301,7 @@ class FtpTree(BaseFtpTree):
 def testmove(self, dsttree, archivetree = None):
 self.__checkbuild(self.marked4moving)
 self.__checkarchs(dsttree, self.marked4moving)
-if not self.treename.count("archive"):
+if not dsttree.treename.count("archive"):
 self.__checkduplicates(self.marked4moving)
 
 self.__checksigns(dsttree, self.marked4moving, test = True)
@@ -310,6 +310,7 @@ class FtpTree(BaseFtpTree):
 
 if not self.treename.count("archive"):
 self.__rmolderfromsrc(test = True)
+if not dsttree.treename.count("archive"):
 self.__rmotherfromdst(dsttree, test = True, archivetree = 
archivetree)
 
 for pkg in self.marked4moving:
@@ -328,6 +329,7 @@ class FtpTree(BaseFtpTree):
 
 if not self.treename.count("archive"):
 self.__rmolderfromsrc()
+if not dsttree.treename.count("archive"):
 self.__rmotherfromdst(dsttree, archivetree = archivetree)
 
 for pkg in self.marked4moving:


 gitweb:

http://git.pld-linux.org/gitweb.cgi/projects/pld-ftp-admin.git/commitdiff/b28d4942ed66d87bb31dbfa8c424317ba2ee81c3

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/mysql] - release 2 (by relup.sh)

2018-12-29 Thread baggins
commit f94089b0986f07dfc292de1c4bd6276be92045d8
Author: Jan Rękorajski 
Date:   Sun Dec 30 10:03:57 2018 +0900

- release 2 (by relup.sh)

 mysql.spec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/mysql.spec b/mysql.spec
index 14bfdf9..30be1d0 100644
--- a/mysql.spec
+++ b/mysql.spec
@@ -36,7 +36,7 @@ Summary(uk.UTF-8):MySQL - швидкий SQL-сервер
 Summary(zh_CN.UTF-8):  MySQL数据库服务器
 Name:  mysql
 Version:   5.7.24
-Release:   1
+Release:   2
 License:   GPL + MySQL FLOSS Exception
 Group: Applications/Databases
 Source0:   
http://cdn.mysql.com/Downloads/MySQL-5.7/%{name}-%{version}.tar.gz


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/mysql.git/commitdiff/f94089b0986f07dfc292de1c4bd6276be92045d8

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/kernel/LINUX_4_19] - no separate line please, it's not a longterm

2018-12-29 Thread baggins
commit df1396c22bdef26d1809a30cf0056db2f1c3e3b0
Author: Jan Rękorajski 
Date:   Sun Dec 30 09:16:47 2018 +0900

- no separate line please, it's not a longterm

 kernel.spec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/kernel.spec b/kernel.spec
index 0ec9d2e2..8f3861a6 100644
--- a/kernel.spec
+++ b/kernel.spec
@@ -72,7 +72,7 @@
 %definepostver .13
 
 # define this to '-%{basever}' for longterm branch
-%defineversuffix   -%{basever}
+%defineversuffix   %{nil}
 
 # __alt_kernel is list of features, empty string if none set
 # _alt kernel is defined as: %{nil}%{?alt_kernel:-%{?alt_kernel}} (defined in 
rpm.macros)


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kernel.git/commitdiff/df1396c22bdef26d1809a30cf0056db2f1c3e3b0

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


DISTFILES: exim: exim-4.91.tar.bz2 exim-html-4.91.tar.bz2 exim4-man-021016.tar.bz2 config.samples.tar.bz2 exim-git.patch

2018-12-29 Thread arekm
Request by: arekm


Files fetched: 1

ALREADY GOT: ftp://ftp.exim.org/pub/exim/exim4/exim-4.91.tar.bz2
e4db1e9013227539acfd662c3cf816d9  exim-4.91.tar.bz2
ALREADY GOT: ftp://ftp.exim.org/pub/exim/exim4/exim-html-4.91.tar.bz2
587e1e9018b593f5c0a19a8205235db9  exim-html-4.91.tar.bz2
ALREADY GOT: no-url://exim4-man-021016.tar.bz2
b552704ebf853a401946038a2b7e8e98  exim4-man-021016.tar.bz2
ALREADY GOT: ftp://ftp.exim.org/pub/exim/exim4/old/config.samples.tar.bz2
4b93321938a800caa6127c48ad60a42b  config.samples.tar.bz2
STORED: no-url://exim-git.patch
c36747c3de1b402ad4f361114f7be5fb  exim-git.patch
Size: 80293 bytes


-- 
Virtually Yours: distfiles.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/exim] - rel 14; upstream fixes

2018-12-29 Thread arekm
commit 0f70f0efef13677e4fd78a57dc255221a421de21
Author: Arkadiusz Miśkiewicz 
Date:   Sat Dec 29 23:42:29 2018 +0100

- rel 14; upstream fixes

 exim.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/exim.spec b/exim.spec
index d2db01d..86bbcb9 100644
--- a/exim.spec
+++ b/exim.spec
@@ -25,7 +25,7 @@ Summary(pl.UTF-8):Agent Transferu Poczty Uniwersytetu w 
Cambridge
 Summary(pt_BR.UTF-8):  Servidor de correio eletrônico exim
 Name:  exim
 Version:   4.91
-Release:   13
+Release:   14
 Epoch: 2
 License:   GPL
 Group: Networking/Daemons/SMTP
@@ -51,7 +51,7 @@ Source15: %{name}4-smtp.pamd
 Source16:  %{name}on.png
 # sh branch.sh
 Patch100:  %{name}-git.patch
-# Patch100-md5:52a865e8c4a6bce58995ca5a272e698d
+# Patch100-md5:c36747c3de1b402ad4f361114f7be5fb
 Patch0:%{name}4-EDITME.patch
 Patch1:%{name}4-monitor-EDITME.patch
 Patch2:%{name}4-cflags.patch


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/exim.git/commitdiff/0f70f0efef13677e4fd78a57dc255221a421de21

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


DISTFILES: glibc: glibc-2.28.tar.xz glibc-man-pages.tar.xz glibc-git.patch

2018-12-29 Thread arekm
Request by: arekm


Files fetched: 1

ALREADY GOT: http://ftp.gnu.org/gnu/glibc/glibc-2.28.tar.xz
c81d2388896379997bc359d4f2084239  glibc-2.28.tar.xz
ALREADY GOT: no-url://glibc-man-pages.tar.xz
78a8f7f8dfc63123f47a614e99136e61  glibc-man-pages.tar.xz
STORED: no-url://glibc-git.patch
9b6b4d90ca7d6edba76adf101fad0694  glibc-git.patch
Size: 312233 bytes


-- 
Virtually Yours: distfiles.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/glibc] - rel 10; update git patch; drop electron hack which is bad (https://bugzilla.redhat.com/show_bug.cg

2018-12-29 Thread arekm
commit 87893ff83e3310c7e5c1ad10dcaf128366635e93
Author: Arkadiusz Miśkiewicz 
Date:   Sat Dec 29 23:39:10 2018 +0100

- rel 10; update git patch; drop electron hack which is bad 
(https://bugzilla.redhat.com/show_bug.cgi?id=1653832#c3) and apps bundling 
electron had few months to be fixed

 ...Correct-absolute-SHN_ABS-symbol-run-time-.patch | 195 -
 glibc.spec |   7 +-
 2 files changed, 2 insertions(+), 200 deletions(-)
---
diff --git a/glibc.spec b/glibc.spec
index 0ec5628..65fd2a9 100644
--- a/glibc.spec
+++ b/glibc.spec
@@ -45,7 +45,7 @@ Summary(tr.UTF-8):GNU libc
 Summary(uk.UTF-8): GNU libc версії
 Name:  glibc
 Version:   %{core_version}
-Release:   9
+Release:   10
 Epoch: 6
 License:   LGPL v2.1+
 Group: Libraries
@@ -62,7 +62,7 @@ Source7:  %{name}-LD-path.c
 Source9:   nscd.tmpfiles
 # use branch.sh to update glibc-git.patch
 Patch0:glibc-git.patch
-# Patch0-md5:  edef1f874229fd5a24b9d553fc6bd842
+# Patch0-md5:  9b6b4d90ca7d6edba76adf101fad0694
 # against GNU TP (libc domain)
 #Patch1:   %{name}-pl.po-update.patch
 Patch2:%{name}-pld.patch
@@ -92,8 +92,6 @@ Patch27:  %{name}-c-utf8-locale.patch
 
 Patch29:   %{name}-arm-alignment-fix.patch
 Patch30:   glibc-rh1124987.patch
-# electron is broken but we have no way to fix it so for now lets break glibc 
again
-Patch31:   0001-Revert-elf-Correct-absolute-SHN_ABS-symbol-run-time-.patch
 URL:   http://www.gnu.org/software/libc/
 %{?with_selinux:BuildRequires: audit-libs-devel}
 BuildRequires: autoconf >= 2.69
@@ -972,7 +970,6 @@ exit 1
 
 %patch29 -p1
 %patch30 -p1
-%patch31 -p1
 
 # cleanup backups after patching
 find '(' -name '*~' -o -name '*.orig' ')' -print0 | xargs -0 -r -l512 rm -f
diff --git a/0001-Revert-elf-Correct-absolute-SHN_ABS-symbol-run-time-.patch 
b/0001-Revert-elf-Correct-absolute-SHN_ABS-symbol-run-time-.patch
deleted file mode 100644
index f26c346..000
--- a/0001-Revert-elf-Correct-absolute-SHN_ABS-symbol-run-time-.patch
+++ /dev/null
@@ -1,195 +0,0 @@
-From 2cbf10ae2ea9e378ff91b8f5c4d8cb77ed05378e Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Bart=C5=82omiej=20Piotrowski?= 
-Date: Fri, 10 Aug 2018 14:12:40 +
-Subject: [PATCH] Revert "elf: Correct absolute (SHN_ABS) symbol run-time
- calculation [BZ #19818]"
-
-This reverts commit e7feec374c635b6a29d65c39ae5e1855528fed39.

- elf/Makefile | 14 ++---
- elf/dl-addr.c|  2 --
- elf/tst-absolute-sym-lib.c   | 25 
- elf/tst-absolute-sym-lib.lds | 19 --
- elf/tst-absolute-sym.c   | 38 
- sysdeps/generic/ldsodefs.h   |  3 +--
- 6 files changed, 3 insertions(+), 98 deletions(-)
- delete mode 100644 elf/tst-absolute-sym-lib.c
- delete mode 100644 elf/tst-absolute-sym-lib.lds
- delete mode 100644 elf/tst-absolute-sym.c
-
-diff --git a/elf/Makefile b/elf/Makefile
-index cd0771307f..5084ba4f6f 100644
 a/elf/Makefile
-+++ b/elf/Makefile
-@@ -186,7 +186,7 @@ tests += restest1 preloadtest loadfail multiload origtest 
resolvfail \
-tst-tlsalign tst-tlsalign-extern tst-nodelete-opened \
-tst-nodelete2 tst-audit11 tst-audit12 tst-dlsym-error tst-noload \
-tst-latepthread tst-tls-manydynamic tst-nodelete-dlclose \
--   tst-debug1 tst-main1 tst-absolute-sym tst-absolute-zero tst-big-note
-+   tst-debug1 tst-main1
- #  reldep9
- tests-internal += loadtest unload unload2 circleload1 \
-neededtest neededtest2 neededtest3 neededtest4 \
-@@ -272,9 +272,7 @@ modules-names = testobj1 testobj2 testobj3 testobj4 
testobj5 testobj6 \
-   tst-audit12mod1 tst-audit12mod2 tst-audit12mod3 tst-auditmod12 \
-   tst-latepthreadmod $(tst-tls-many-dynamic-modules) \
-   tst-nodelete-dlclose-dso tst-nodelete-dlclose-plugin \
--  tst-main1mod tst-libc_dlvsym-dso tst-absolute-sym-lib \
--  tst-absolute-zero-lib tst-big-note-lib
--
-+  tst-main1mod tst-libc_dlvsym-dso
- ifeq (yes,$(have-mtls-dialect-gnu2))
- tests += tst-gnu2-tls1
- modules-names += tst-gnu2-tls1mod
-@@ -1465,14 +1463,6 @@ tst-main1-no-pie = yes
- LDLIBS-tst-main1 = $(libsupport)
- tst-main1mod.so-no-z-defs = yes
- 
--LDLIBS-tst-absolute-sym-lib.so = tst-absolute-sym-lib.lds
--$(objpfx)tst-absolute-sym-lib.so: $(LDLIBS-tst-absolute-sym-lib.so)
--$(objpfx)tst-absolute-sym: $(objpfx)tst-absolute-sym-lib.so
--
--LDLIBS-tst-absolute-zero-lib.so = tst-absolute-zero-lib.lds
--$(objpfx)tst-absolute-zero-lib.so: $(LDLIBS-tst-absolute-zero-lib.so)
--$(objpfx)tst-absolute-zero: $(objpfx)tst-absolute-zero-lib.so
--
- # Both the main program and the DSO for tst-libc_dlvsym need to link
- # against libdl.
- $(objpfx)tst-libc_dlvsym: $(libdl)
-diff --git a/elf/dl-addr.c b/elf/dl-addr.c
-index e6c7d02094..2250617a73 100644
 

[packages/kernel/LINUX_4_9] - up to 4.9.148

2018-12-29 Thread arekm
commit 65e0465953ba11eb15bd514778910538d7a03667
Author: Arkadiusz Miśkiewicz 
Date:   Sat Dec 29 23:31:12 2018 +0100

- up to 4.9.148

 kernel.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/kernel.spec b/kernel.spec
index ae4d1e5b..cfacbc71 100644
--- a/kernel.spec
+++ b/kernel.spec
@@ -73,7 +73,7 @@
 
 %definerel 1
 %definebasever 4.9
-%definepostver .147
+%definepostver .148
 
 # define this to '-%{basever}' for longterm branch
 %defineversuffix   -%{basever}
@@ -125,7 +125,7 @@ Source0:
https://www.kernel.org/pub/linux/kernel/v4.x/linux-%{basever}.tar.xz
 # Source0-md5: 0a68ef3615c64bd5ee54a3320e46667d
 %if "%{postver}" != ".0"
 Patch0:
https://www.kernel.org/pub/linux/kernel/v4.x/patch-%{version}.xz
-# Patch0-md5:  c3a26d684627944206eac9a182fdff3b
+# Patch0-md5:  93eac8650f9f825d07193dcd86b27a90
 %endif
 Source1:   kernel.sysconfig
 


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kernel.git/commitdiff/65e0465953ba11eb15bd514778910538d7a03667

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


DISTFILES: kernel: linux-4.9.tar.xz patch-4.9.148.xz

2018-12-29 Thread arekm
Request by: arekm


Files fetched: 1

ALREADY GOT: https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.9.tar.xz
0a68ef3615c64bd5ee54a3320e46667d  linux-4.9.tar.xz
STORED: https://www.kernel.org/pub/linux/kernel/v4.x/patch-4.9.148.xz
93eac8650f9f825d07193dcd86b27a90  patch-4.9.148.xz
Size: 2486820 bytes


-- 
Virtually Yours: distfiles.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


DISTFILES: kernel: linux-4.14.tar.xz patch-4.14.91.xz

2018-12-29 Thread arekm
Request by: arekm


Files fetched: 1

ALREADY GOT: https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.14.tar.xz
bacdb9ffdcd922aa069a5e1520160e24  linux-4.14.tar.xz
STORED: https://www.kernel.org/pub/linux/kernel/v4.x/patch-4.14.91.xz
50a849ec318cb340db0f700f253db04d  patch-4.14.91.xz
Size: 2115220 bytes


-- 
Virtually Yours: distfiles.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/kernel/LINUX_4_14] - up to 4.14.91

2018-12-29 Thread arekm
commit 51728af02e09334ce6dd43ad59d483e198515aa7
Author: Arkadiusz Miśkiewicz 
Date:   Sat Dec 29 23:29:52 2018 +0100

- up to 4.14.91

 kernel.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/kernel.spec b/kernel.spec
index 2d14a866..56a96e46 100644
--- a/kernel.spec
+++ b/kernel.spec
@@ -68,9 +68,9 @@
 %definehave_pcmcia 0
 %endif
 
-%definerel 2
+%definerel 1
 %definebasever 4.14
-%definepostver .90
+%definepostver .91
 
 # define this to '-%{basever}' for longterm branch
 %defineversuffix   -%{basever}
@@ -122,7 +122,7 @@ Source0:
https://www.kernel.org/pub/linux/kernel/v4.x/linux-%{basever}.tar.xz
 # Source0-md5: bacdb9ffdcd922aa069a5e1520160e24
 %if "%{postver}" != ".0"
 Patch0:
https://www.kernel.org/pub/linux/kernel/v4.x/patch-%{version}.xz
-# Patch0-md5:  021abc8d53596a22e2f59288044efbbb
+# Patch0-md5:  50a849ec318cb340db0f700f253db04d
 %endif
 Source1:   kernel.sysconfig
 


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kernel.git/commitdiff/51728af02e09334ce6dd43ad59d483e198515aa7

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


DISTFILES: fonts-TTF-RedHat-liberation: liberation-fonts-2.00.4.tar.gz

2018-12-29 Thread qboosh
Request by: qboosh


Files fetched: 1

STORED: 
https://github.com/liberationfonts/liberation-fonts/files/2579282/liberation-fonts-2.00.4.tar.gz
4953c1305b19e08158ea8827ad082aea  liberation-fonts-2.00.4.tar.gz
Size: 4923668 bytes


-- 
Virtually Yours: distfiles.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/fonts-TTF-RedHat-liberation] - new URLs, updated to 2.00.4

2018-12-29 Thread qboosh
commit 173daf371923b19239530db2b24a0d3caee53ea0
Author: Jakub Bogusz 
Date:   Sat Dec 29 22:49:45 2018 +0100

- new URLs, updated to 2.00.4

 fonts-TTF-RedHat-liberation.spec | 15 ---
 1 file changed, 8 insertions(+), 7 deletions(-)
---
diff --git a/fonts-TTF-RedHat-liberation.spec b/fonts-TTF-RedHat-liberation.spec
index 53cdfc4..54241d6 100644
--- a/fonts-TTF-RedHat-liberation.spec
+++ b/fonts-TTF-RedHat-liberation.spec
@@ -1,19 +1,20 @@
 Summary:   Fonts to replace commonly used Microsoft Windows Fonts
 Summary(pl.UTF-8): Fonty zastępujące popularne fonty z Microsoft Windows
 Name:  fonts-TTF-RedHat-liberation
-Version:   2.00.1
-Release:   5
+Version:   2.00.4
+Release:   1
 Epoch: 1
 License:   OFL
 Group: Fonts
-Source0:   
https://releases.pagure.org/liberation-fonts/liberation-fonts-%{version}.tar.gz
-# Source0-md5: a0dfdcffcd0398afe5f57269198846e9
+#Source0Download: https://github.com/liberationfonts/liberation-fonts/releases
+Source0:   
https://github.com/liberationfonts/liberation-fonts/files/2579282/liberation-fonts-%{version}.tar.gz
+# Source0-md5: 4953c1305b19e08158ea8827ad082aea
 Source1:   30-0-liberation-mono.conf
 Source2:   30-0-liberation-sans.conf
 Source3:   30-0-liberation-serif.conf
-URL:   https://pagure.io/liberation-fonts
+URL:   https://github.com/liberationfonts/liberation-fonts
 BuildRequires: fontforge >= 20090923
-BuildRequires: fonttools
+BuildRequires: python3-fonttools
 Suggests:  fontpostinst
 Obsoletes: liberation-fonts-ttf
 Conflicts: fontconfig < 1:2.10.1
@@ -47,7 +48,7 @@ Bitstream Vera Sans Mono).
 
 %build
 %{__make}
-mv liberation-fonts-ttf-%{version}/* .
+%{__mv} liberation-fonts-ttf-%{version}/* .
 
 %install
 rm -rf $RPM_BUILD_ROOT


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/fonts-TTF-RedHat-liberation.git/commitdiff/173daf371923b19239530db2b24a0d3caee53ea0

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/fonttools] - updated to 3.34.2 - removed optional packages from Requires

2018-12-29 Thread qboosh
commit 6c07898f2e78b8ad7dd2e5f29f068bd86ad2c609
Author: Jakub Bogusz 
Date:   Sat Dec 29 22:45:58 2018 +0100

- updated to 3.34.2
- removed optional packages from Requires

 fonttools.spec | 22 --
 1 file changed, 12 insertions(+), 10 deletions(-)
---
diff --git a/fonttools.spec b/fonttools.spec
index 92724a2..a594433 100644
--- a/fonttools.spec
+++ b/fonttools.spec
@@ -8,15 +8,15 @@
 Summary:   A tool to convert TrueType/OpenType fonts to XML and back
 Summary(pl.UTF-8): Narzędzie do konwersji fontów TrueType/OpenType do/z 
XML-a
 Name:  fonttools
-Version:   3.24.1
-Release:   2
+Version:   3.34.2
+Release:   1
 # basic license is BSD
 # FontTools includes Adobe AGL & AGLFN, which is under 3-clauses BSD license
 License:   MIT, BSD
 Group: Development/Tools
 #Source0Download: https://github.com/fonttools/fonttools/releases
 Source0:   
https://github.com/fonttools/fonttools/archive/%{version}/%{name}-%{version}.tar.gz
-# Source0-md5: 4e807a6b0dd9aad6fec202e73b6db7c2
+# Source0-md5: e70418b1d9175a29e7574cd3a7988ccd
 URL:   https://github.com/fonttools/fonttools
 %if %(locale -a | grep -q '^C\.utf8$'; echo $?)
 BuildRequires: glibc-localedb-all
@@ -26,15 +26,19 @@ BuildRequires:  python-devel >= 1:2.7
 BuildRequires: python-setuptools
 %if %{with tests}
 BuildRequires: python-pytest >= 3.0
+BuildRequires: python-unicodedata2 >= 11.0.0
 %endif
 %if %{with doc}
-BuildRequires: sphinx-pdg-2
+BuildRequires: sphinx-pdg-2 >= 1.5.5
 %endif
 %endif
 %if %{with python3}
 BuildRequires: python3-devel >= 1:3.4
 %if %{with tests}
 BuildRequires: python3-pytest >= 3.0
+%if "%{py3_ver}" < "3.7"
+BuildRequires: python3-unicodedata2 >= 11.0.0
+%endif
 %endif
 %endif
 BuildRequires: rpmbuild(macros) >= 1.714
@@ -66,9 +70,7 @@ Summary:  Python 2 tools to manipulate font files
 Summary(pl.UTF-8): Narzędzia do manipulacji na plikach fontów dla Pythona 2
 Group: Libraries/Python
 Requires:  python-modules >= 1:2.7
-Requires:  python-brotli >= 1.0.1
-Requires:  python-munkres >= 1.0.10
-Requires:  python-unicodedata2 >= 10.0.0
+Requires:  python-unicodedata2 >= 11.0.0
 
 %description -n python-fonttools
 Python 2 tools to manipulate font files.
@@ -92,9 +94,9 @@ Summary:  Python 3 tools to manipulate font files
 Summary(pl.UTF-8): Narzędzia do manipulacji na plikach fontów dla Pythona 3
 Group: Libraries/Python
 Requires:  python3-modules >= 1:3.4
-Requires:  python3-brotli >= 1.0.1
-Requires:  python3-munkres >= 1.0.10
-Requires:  python3-unicodedata2 >= 10.0.0
+%if "%{py3_ver}" < "3.7"
+Requires:  python3-unicodedata2 >= 11.0.0
+%endif
 
 %description -n python3-fonttools
 Python 3 tools to manipulate font files.


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/fonttools.git/commitdiff/6c07898f2e78b8ad7dd2e5f29f068bd86ad2c609

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


DISTFILES: ka5-kdepim-addons: kdepim-addons-18.12.0.tar.xz

2018-12-29 Thread witekfl
Request by: witekfl


Files fetched: 1

STORED: 
http://download.kde.org/stable/applications/18.12.0/src/kdepim-addons-18.12.0.tar.xz
c3b5590b75ecc8b005f89efa9f850777  kdepim-addons-18.12.0.tar.xz
Size: 2038112 bytes


-- 
Virtually Yours: distfiles.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


DISTFILES: fonttools: fonttools-3.34.2.tar.gz

2018-12-29 Thread qboosh
Request by: qboosh


Files fetched: 1

STORED: 
https://github.com/fonttools/fonttools/archive/3.34.2/fonttools-3.34.2.tar.gz
e70418b1d9175a29e7574cd3a7988ccd  fonttools-3.34.2.tar.gz
Size: 1436638 bytes


-- 
Virtually Yours: distfiles.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/ka5-kdepim-addons] Created branch master

2018-12-29 Thread witekfl
The branch 'master' was created.

Summary of new commits:

  bd460b2... - updated to 18.12.0
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/ka5-kdepim-addons] - updated to 18.12.0

2018-12-29 Thread witekfl
commit bd460b270a6c0c59a3f46fd7317fb6163266996b
Author: Witold Filipczyk 
Date:   Sat Dec 29 22:19:51 2018 +0100

- updated to 18.12.0

 ka5-kdepim-addons.spec | 234 +
 1 file changed, 234 insertions(+)
---
diff --git a/ka5-kdepim-addons.spec b/ka5-kdepim-addons.spec
new file mode 100644
index 000..ebc3c51
--- /dev/null
+++ b/ka5-kdepim-addons.spec
@@ -0,0 +1,234 @@
+%definekdeappsver  18.12.0
+%defineqtver   5.9.0
+%definekaname  kdepim-addons
+Summary:   kdepim addons
+Name:  ka5-%{kaname}
+Version:   18.12.0
+Release:   1
+License:   GPL v2+/LGPL v2.1+
+Group: X11/Libraries
+Source0:   
http://download.kde.org/stable/applications/%{kdeappsver}/src/%{kaname}-%{version}.tar.xz
+# Source0-md5: c3b5590b75ecc8b005f89efa9f850777
+URL:   http://www.kde.org/
+BuildRequires: Qt5Core-devel >= %{qtver}
+BuildRequires: Qt5Gui-devel
+BuildRequires: Qt5Network-devel >= 5.11.1
+BuildRequires: Qt5Positioning-devel >= 5.11.1
+BuildRequires: Qt5PrintSupport-devel >= 5.11.1
+BuildRequires: Qt5Qml-devel >= 5.11.1
+BuildRequires: Qt5Quick-devel >= 5.11.1
+BuildRequires: Qt5Test-devel
+BuildRequires: Qt5WebChannel-devel >= 5.11.1
+BuildRequires: Qt5WebEngine-devel
+BuildRequires: Qt5Widgets-devel
+BuildRequires: cmake >= 2.8.12
+BuildRequires: gettext-devel
+BuildRequires: gpgme-qt5-devel >= 1.8.0
+BuildRequires: ka5-akonadi-calendar-devel >= 18.12.0
+BuildRequires: ka5-akonadi-contacts-devel >= 18.12.0
+BuildRequires: ka5-akonadi-devel >= 18.12.0
+BuildRequires: ka5-akonadi-notes-devel >= 18.12.0
+BuildRequires: ka5-calendarsupport-devel >= 18.12.0
+BuildRequires: ka5-eventviews-devel >= 18.12.0
+BuildRequires: ka5-grantleetheme-devel >= 18.12.0
+BuildRequires: ka5-incidenceeditor-devel >= 18.12.0
+BuildRequires: ka5-kcalutils-devel >= 18.12.0
+BuildRequires: ka5-kdepim-apps-libs-devel >= 18.12.0
+BuildRequires: ka5-kidentitymanagement-devel
+BuildRequires: ka5-kimap-devel >= 18.12.0
+BuildRequires: ka5-kitinerary-devel >= 18.12.0
+BuildRequires: ka5-kmailtransport-devel >= 18.12.0
+BuildRequires: ka5-kpimtextedit-devel >= 18.12.0
+BuildRequires: ka5-kpkpass-devel >= 18.12.0
+BuildRequires: ka5-ktnef-devel >= 18.12.0
+BuildRequires: ka5-libgravatar-devel >= 18.12.0
+BuildRequires: ka5-libkdepim-devel >= 18.12.0
+BuildRequires: ka5-libkleo-devel >= 18.12.0
+BuildRequires: ka5-libksieve-devel >= 18.12.0
+BuildRequires: ka5-mailcommon-devel >= 18.12.0
+BuildRequires: ka5-mailimporter-devel >= 18.12.0
+BuildRequires: ka5-messagelib-devel >= 18.12.0
+BuildRequires: ka5-pimcommon-devel >= 18.12.0
+BuildRequires: kf5-extra-cmake-modules >= 5.53.0
+BuildRequires: kf5-kconfig-devel >= 5.51.0
+BuildRequires: kf5-kdbusaddons-devel >= 5.51.0
+BuildRequires: kf5-kdeclarative-devel >= 5.51.0
+BuildRequires: kf5-kholidays-devel >= 5.51.0
+BuildRequires: kf5-ki18n-devel >= 5.51.0
+BuildRequires: kf5-kiconthemes-devel >= 5.51.0
+BuildRequires: kf5-kio-devel >= 5.51.0
+BuildRequires: kf5-kparts-devel >= 5.51.0
+BuildRequires: kf5-kxmlgui-devel >= 5.51.0
+BuildRequires: kf5-prison-devel >= 5.51.0
+BuildRequires: kf5-syntax-highlighting-devel >= 5.51.0
+BuildRequires: qt5-build >= %{qtver}
+BuildRequires: rpmbuild(macros) >= 1.164
+BuildRequires: shared-mime-info
+BuildRequires: tar >= 1:1.22
+BuildRequires: xz
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+Addons for KDE PIM applications, such as extensions for KMail,
+additional themes, and plugins providing extra or advanced
+functionality.
+
+%prep
+%setup -q -n %{kaname}-%{version}
+
+%build
+install -d build
+cd build
+%cmake \
+   -DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+   ..
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+%{__make} -C build install \
+   DESTDIR=$RPM_BUILD_ROOT
+
+%find_lang %{kaname} --all-name --with-kde
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post  -p /sbin/ldconfig
+%postun-p /sbin/ldconfig
+
+%files -f %{kaname}.lang
+%defattr(644,root,root,755)
+/etc/xdg/kdepim-addons.categories
+/etc/xdg/kdepim-addons.renamecategories
+/etc/xdg/kmail.antispamrc
+/etc/xdg/kmail.antivirusrc
+%attr(755,root,root) %{_bindir}/akonadimailreader
+%attr(755,root,root) %{_bindir}/coisceim
+%attr(755,root,root) %{_bindir}/etm_usage
+%attr(755,root,root) %{_bindir}/kmail_antivir.sh
+%attr(755,root,root) %{_bindir}/kmail_clamav.sh
+%attr(755,root,root) %{_bindir}/kmail_fprot.sh
+%attr(755,root,root) %{_bindir}/kmail_sav.sh
+%dir %{_libdir}/contacteditor
+%dir %{_libdir}/contacteditor/editorpageplugins
+%attr(755,root,root) 
%{_libdir}/contacteditor/editorpageplugins/cryptopageplugin.so
+%attr(755,root,root) %ghost %{_libdir}/libadblocklibprivate.so.5
+%attr(755,root,root) %{_libdir}/libadblocklibprivate.so.5.*.*
+%attr(755,root,root) %ghost %{_libdir}/libcoisceim_widget.so.5
+%attr(755,root,root) %{_libdir}/libcoisceim_widget.so.5.*.*
+%attr(755,root,root) %ghost 

DISTFILES: python-unicodedata2: unicodedata2-11.0.0.tar.gz

2018-12-29 Thread qboosh
Request by: qboosh


Files fetched: 1

STORED: 
https://files.pythonhosted.org/packages/source/u/unicodedata2/unicodedata2-11.0.0.tar.gz
29ff83dca5c6910e763b6df09f3a3ad9  unicodedata2-11.0.0.tar.gz
Size: 1088736 bytes


-- 
Virtually Yours: distfiles.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/python-unicodedata2] - updated to 11.0.0

2018-12-29 Thread qboosh
commit 9b55e7da25e7a98adc5db8d720ce19e2685761bb
Author: Jakub Bogusz 
Date:   Sat Dec 29 21:52:10 2018 +0100

- updated to 11.0.0

 python-unicodedata2.spec | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)
---
diff --git a/python-unicodedata2.spec b/python-unicodedata2.spec
index 336c646..1273927 100644
--- a/python-unicodedata2.spec
+++ b/python-unicodedata2.spec
@@ -6,12 +6,13 @@
 Summary:   Unicodedata backport/updates to Python 2.x
 Summary(pl.UTF-8): Uaktualnienia danych Unicode dla Pythona 2.x
 Name:  python-unicodedata2
-Version:   10.0.0.post2
-Release:   2
+Version:   11.0.0
+Release:   1
 License:   Apache v2.0
 Group: Libraries/Python
+#Source0Download: https://pypi.org/simple/unicodedata2/
 Source0:   
https://files.pythonhosted.org/packages/source/u/unicodedata2/unicodedata2-%{version}.tar.gz
-# Source0-md5: 8d5e55787a4b89502ac0cb460564fd2b
+# Source0-md5: 29ff83dca5c6910e763b6df09f3a3ad9
 URL:   https://pypi.python.org/pypi/unicodedata2
 BuildRequires: rpm-pythonprov
 BuildRequires: rpmbuild(macros) >= 1.714


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/python-unicodedata2.git/commitdiff/9b55e7da25e7a98adc5db8d720ce19e2685761bb

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


DISTFILES: libe-book: libe-book-0.1.3.tar.xz

2018-12-29 Thread qboosh
Request by: qboosh


Files fetched: 1

STORED: http://downloads.sourceforge.net/libebook/libe-book-0.1.3.tar.xz
2956f1c5e7950b0018979a132165da8b  libe-book-0.1.3.tar.xz
Size: 416268 bytes


-- 
Virtually Yours: distfiles.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/libe-book] - updated to 0.1.3 - removed obsolete boost-1.59,css patches

2018-12-29 Thread qboosh
commit 73643fbcc0c126c19dd5f407dc3cee161145773e
Author: Jakub Bogusz 
Date:   Sat Dec 29 21:07:42 2018 +0100

- updated to 0.1.3
- removed obsolete boost-1.59,css patches

 boost-1.59.patch| 10 --
 libe-book-css.patch | 28 
 libe-book.spec  | 16 +++-
 3 files changed, 7 insertions(+), 47 deletions(-)
---
diff --git a/libe-book.spec b/libe-book.spec
index d6fc4e8..f395d0b 100644
--- a/libe-book.spec
+++ b/libe-book.spec
@@ -5,15 +5,13 @@
 Summary:   Library and tools for reading and converting various non-HTML 
reflowable e-book formats
 Summary(pl.UTF-8): Biblioteka i narzedzia do odczytu i konwersji różnych 
formatów e-booków
 Name:  libe-book
-Version:   0.1.2
-Release:   10
+Version:   0.1.3
+Release:   1
 License:   LGPL v2.1+ or MPL v2.0+
 Group: Libraries
 Source0:   
http://downloads.sourceforge.net/libebook/%{name}-%{version}.tar.xz
-# Source0-md5: 19d84f4a97aab32d350d1f47ea3da0b3
+# Source0-md5: 2956f1c5e7950b0018979a132165da8b
 Patch0:%{name}-missing.patch
-Patch1:boost-1.59.patch
-Patch2:%{name}-css.patch
 URL:   http://libebook.sourceforge.net/
 BuildRequires: boost-devel
 BuildRequires: cppunit-devel
@@ -22,10 +20,11 @@ BuildRequires:  gperf
 BuildRequires: libCSS-devel >= 0.6.0
 BuildRequires: libhubbub-devel >= 0.3.0
 BuildRequires: libicu-devel
+BuildRequires: liblangtag-devel
 BuildRequires: libmspack-devel
 BuildRequires: libparserutils-devel
 BuildRequires: librevenge-devel >= 0.0
-BuildRequires: libstdc++-devel
+BuildRequires: libstdc++-devel >= 6:4.7
 BuildRequires: libwapcaplet-devel
 BuildRequires: libxml2-devel >= 2.0
 BuildRequires: pkgconfig >= 1:0.20
@@ -74,9 +73,10 @@ Requires:%{name} = %{version}-%{release}
 Requires:  libCSS-devel >= 0.6.0
 Requires:  libhubbub-devel >= 0.3.0
 Requires:  libicu-devel
+Requires:  liblangtag-devel
 Requires:  libmspack-devel
 Requires:  librevenge-devel >= 0.0
-Requires:  libstdc++-devel
+Requires:  libstdc++-devel >= 6:4.7
 Requires:  libxml2-devel >= 2.0
 Requires:  zlib-devel
 
@@ -129,8 +129,6 @@ obsługiwane są HTML, tekst i format surowy.
 %prep
 %setup -q
 %patch0 -p1
-%patch1 -p1
-%patch2 -p1
 
 %build
 export CXXFLAGS="%{rpmcxxflags} -Wno-unused-function"
diff --git a/boost-1.59.patch b/boost-1.59.patch
deleted file mode 100644
index 6cddf04..000
--- a/boost-1.59.patch
+++ /dev/null
@@ -1,10 +0,0 @@
 libe-book-0.1.2/src/lib/Makefile.am~   2014-12-31 09:32:41.0 
+0100
-+++ libe-book-0.1.2/src/lib/Makefile.am2015-11-17 08:45:38.235881735 
+0100
-@@ -46,6 +46,7 @@
-   $(XML_LIBS) \
-   $(ICU_LIBS) \
-   $(ZLIB_LIBS) \
-+  -lboost_system \
-   @LIBEBOOK_WIN32_RESOURCE@
- 
- if ENABLE_EXPERIMENTAL
diff --git a/libe-book-css.patch b/libe-book-css.patch
deleted file mode 100644
index af6e644..000
--- a/libe-book-css.patch
+++ /dev/null
@@ -1,28 +0,0 @@
 libe-book-0.1.2/src/lib/XMLTreeWalker.cpp.orig 2014-12-31 
09:00:16.0 +0100
-+++ libe-book-0.1.2/src/lib/XMLTreeWalker.cpp  2016-05-18 16:12:03.744754212 
+0200
-@@ -318,7 +318,7 @@
-  lwc_string *lang, bool *match);
- 
-   css_error css_node_presentational_hint(void *pw, void *node,
-- uint32_t property, css_hint *hint);
-+ uint32_t *nhints, css_hint **hints);
- 
-   css_error css_ua_default_for_property(void *pw, uint32_t property,
- css_hint *hint);
-@@ -1055,13 +1055,13 @@
- return CSS_OK;
-   }
- 
--  css_error css_node_presentational_hint(void *pw, void *const node, const 
uint32_t property, css_hint *const hint)
-+  css_error css_node_presentational_hint(void *pw, void *const node, uint32_t 
*nhints, css_hint **const hints)
-   {
- // TODO: implement me
- (void) pw;
- (void) node;
--(void) property;
--(void) hint;
-+(void) nhints;
-+(void) hints;
- 
- return CSS_PROPERTY_NOT_SET;
-   }


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/libe-book.git/commitdiff/73643fbcc0c126c19dd5f407dc3cee161145773e

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


DISTFILES: ka5-kitinerary: kitinerary-18.12.0.tar.xz

2018-12-29 Thread witekfl
Request by: witekfl


Files fetched: 1

STORED: 
http://download.kde.org/stable/applications/18.12.0/src/kitinerary-18.12.0.tar.xz
f718dce9543effd386f40ed7adf859fc  kitinerary-18.12.0.tar.xz
Size: 651688 bytes


-- 
Virtually Yours: distfiles.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/ka5-kitinerary] - updated to 18.12.0

2018-12-29 Thread witekfl
commit b665048bef5de2c93fd8208fffd0ab7e54e286a1
Author: Witold Filipczyk 
Date:   Sat Dec 29 20:54:24 2018 +0100

- updated to 18.12.0

 ka5-kitinerary.spec | 89 +
 1 file changed, 89 insertions(+)
---
diff --git a/ka5-kitinerary.spec b/ka5-kitinerary.spec
new file mode 100644
index 000..b501461
--- /dev/null
+++ b/ka5-kitinerary.spec
@@ -0,0 +1,89 @@
+%definekdeappsver  18.12.0
+%defineqtver   5.9.0
+%definekaname  kitinerary
+Summary:   kitinerary
+Name:  ka5-%{kaname}
+Version:   18.12.0
+Release:   1
+License:   GPL v2+/LGPL v2.1+
+Group: X11/Libraries
+Source0:   
http://download.kde.org/stable/applications/%{kdeappsver}/src/%{kaname}-%{version}.tar.xz
+# Source0-md5: f718dce9543effd386f40ed7adf859fc
+URL:   http://www.kde.org/
+BuildRequires: gettext-devel
+BuildRequires: Qt5Core-devel >= %{qtver}
+BuildRequires: Qt5Gui-devel
+BuildRequires: Qt5Gui-devel
+BuildRequires: Qt5Network-devel >= 5.11.1
+BuildRequires: Qt5Qml-devel
+BuildRequires: Qt5Test-devel
+BuildRequires: Qt5Test-devel
+BuildRequires: cmake >= 2.8.12
+BuildRequires: ka5-kcalcore-devel >= 18.12.0
+BuildRequires: ka5-kcontacts-devel >= 18.12.0
+BuildRequires: ka5-kmime-devel >= 18.12.0
+BuildRequires: ka5-kpkpass-devel
+BuildRequires: kf5-extra-cmake-modules >= 5.53.0
+BuildRequires: kf5-karchive-devel >= 5.51.0
+BuildRequires: kf5-ki18n-devel >= 5.51.0
+BuildRequires: libxml2-devel
+BuildRequires: qt5-build >= %{qtver}
+BuildRequires: rpmbuild(macros) >= 1.164
+BuildRequires: shared-mime-info
+BuildRequires: tar >= 1:1.22
+BuildRequires: xz
+BuildRequires: zlib-devel
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+Kitinerary is a library which provides a data model and a system to
+extract information from travel reservations.
+
+%package devel
+Summary:   Header files for %{kaname} development
+Summary(pl.UTF-8): Pliki nagłówkowe dla programistów używających %{kaname}
+Group: X11/Development/Libraries
+Requires:  %{name} = %{version}-%{release}
+
+%description devel
+Header files for %{kaname} development.
+
+%description devel -l pl.UTF-8
+Pliki nagłówkowe dla programistów używających %{kaname}.
+
+%prep
+%setup -q -n %{kaname}-%{version}
+
+%build
+install -d build
+cd build
+%cmake \
+   -DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+   ..
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+%{__make} -C build install \
+   DESTDIR=$RPM_BUILD_ROOT
+
+%find_lang %{kaname} --all-name --with-kde
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post  -p /sbin/ldconfig
+%postun-p /sbin/ldconfig
+
+%files -f %{kaname}.lang
+%defattr(644,root,root,755)
+/etc/xdg/org_kde_kitinerary.categories
+%attr(755,root,root) %ghost %{_libdir}/libKPimItinerary.so.5
+%attr(755,root,root) %{_libdir}/libKPimItinerary.so.5.*.*
+
+%files devel
+%defattr(644,root,root,755)
+%{_includedir}/KPim/KItinerary
+%{_includedir}/KPim/kitinerary
+%{_libdir}/cmake/KPimItinerary
+%attr(755,root,root) %{_libdir}/libKPimItinerary.so


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/ka5-kitinerary.git/commitdiff/b665048bef5de2c93fd8208fffd0ab7e54e286a1

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/ka5-kitinerary] Created branch master

2018-12-29 Thread witekfl
The branch 'master' was created.

Summary of new commits:

  b665048... - updated to 18.12.0
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


DISTFILES: ka5-kpkpass: kpkpass-18.12.0.tar.xz

2018-12-29 Thread witekfl
Request by: witekfl


Files fetched: 1

STORED: 
http://download.kde.org/stable/applications/18.12.0/src/kpkpass-18.12.0.tar.xz
0a9f867aa3ba9373e96db932fe2d3aec  kpkpass-18.12.0.tar.xz
Size: 23220 bytes


-- 
Virtually Yours: distfiles.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/ka5-kpkpass] - updated to 18.12.0

2018-12-29 Thread witekfl
commit 8a6e1d3f2092107c3ade75630c14c0276b13c0b9
Author: Witold Filipczyk 
Date:   Sat Dec 29 20:34:05 2018 +0100

- updated to 18.12.0

 ka5-kpkpass.spec | 76 
 1 file changed, 76 insertions(+)
---
diff --git a/ka5-kpkpass.spec b/ka5-kpkpass.spec
new file mode 100644
index 000..a30e0b3
--- /dev/null
+++ b/ka5-kpkpass.spec
@@ -0,0 +1,76 @@
+%definekdeappsver  18.12.0
+%defineqtver   5.9.0
+%definekaname  kpkpass
+Summary:   kpkpass
+Name:  ka5-%{kaname}
+Version:   18.12.0
+Release:   1
+License:   GPL v2+/LGPL v2.1+
+Group: X11/Libraries
+Source0:   
http://download.kde.org/stable/applications/%{kdeappsver}/src/%{kaname}-%{version}.tar.xz
+# Source0-md5: 0a9f867aa3ba9373e96db932fe2d3aec
+URL:   http://www.kde.org/
+BuildRequires: Qt5Core-devel >= %{qtver}
+BuildRequires: Qt5Gui-devel
+BuildRequires: Qt5Test-devel
+BuildRequires: cmake >= 2.8.12
+BuildRequires: kf5-extra-cmake-modules >= 5.53.0
+BuildRequires: kf5-karchive-devel >= 5.51.0
+BuildRequires: qt5-build >= %{qtver}
+BuildRequires: rpmbuild(macros) >= 1.164
+BuildRequires: shared-mime-info
+BuildRequires: tar >= 1:1.22
+BuildRequires: xz
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+Library to deal with Apple Wallet pass files. Apple Wallet files are
+essentially ZIP files containing a JSON description of the pass,
+translated message catalogs and graphical assets to render the pass.
+
+%package devel
+Summary:   Header files for %{kaname} development
+Summary(pl.UTF-8): Pliki nagłówkowe dla programistów używających %{kaname}
+Group: X11/Development/Libraries
+Requires:  %{name} = %{version}-%{release}
+
+%description devel
+Header files for %{kaname} development.
+
+%description devel -l pl.UTF-8
+Pliki nagłówkowe dla programistów używających %{kaname}.
+
+%prep
+%setup -q -n %{kaname}-%{version}
+
+%build
+install -d build
+cd build
+%cmake \
+   -DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+   ..
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+%{__make} -C build install \
+   DESTDIR=$RPM_BUILD_ROOT
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post  -p /sbin/ldconfig
+%postun-p /sbin/ldconfig
+
+%files
+%defattr(644,root,root,755)
+/etc/xdg/org_kde_kpkpass.categories
+%attr(755,root,root) %ghost %{_libdir}/libKPimPkPass.so.5
+%attr(755,root,root) %{_libdir}/libKPimPkPass.so.5.*.*
+%{_datadir}/mime/packages/application-vnd-apple-pkpass.xml
+
+%files devel
+%defattr(644,root,root,755)
+%{_includedir}/KPim/KPkPass
+%{_libdir}/cmake/KPimPkPass
+%attr(755,root,root) %{_libdir}/libKPimPkPass.so


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/ka5-kpkpass.git/commitdiff/8a6e1d3f2092107c3ade75630c14c0276b13c0b9

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/ka5-kpkpass] Created branch master

2018-12-29 Thread witekfl
The branch 'master' was created.

Summary of new commits:

  8a6e1d3... - updated to 18.12.0
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


DISTFILES: kernel: linux-4.19.tar.xz patch-4.19.13.xz

2018-12-29 Thread arekm
Request by: arekm


Files fetched: 1

ALREADY GOT: https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.19.tar.xz
740a90cf810c2105df8ee12e5d0bb900  linux-4.19.tar.xz
STORED: https://www.kernel.org/pub/linux/kernel/v4.x/patch-4.19.13.xz
b5f166c561bcfde69ff7ede0862745e2  patch-4.19.13.xz
Size: 414680 bytes


-- 
Virtually Yours: distfiles.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


DISTFILES: ka5-akonadi-import-wizard: akonadi-import-wizard-18.12.0.tar.xz

2018-12-29 Thread witekfl
Request by: witekfl


Files fetched: 1

STORED: 
http://download.kde.org/stable/applications/18.12.0/src/akonadi-import-wizard-18.12.0.tar.xz
3c198b94a981b5acd25833ec1143769d  akonadi-import-wizard-18.12.0.tar.xz
Size: 439196 bytes


-- 
Virtually Yours: distfiles.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


DISTFILES: ka5-libksieve: libksieve-18.12.0.tar.xz

2018-12-29 Thread witekfl
Request by: witekfl


Files fetched: 1

STORED: 
http://download.kde.org/stable/applications/18.12.0/src/libksieve-18.12.0.tar.xz
32c67fd52ebc45d1e4a1ad411e6bf600  libksieve-18.12.0.tar.xz
Size: 550536 bytes


-- 
Virtually Yours: distfiles.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/kernel/LINUX_4_19] - up to 4.19.13

2018-12-29 Thread arekm
commit 49f32312f6e895b73680e67e88f5f5cbb57b5e23
Author: Arkadiusz Miśkiewicz 
Date:   Sat Dec 29 20:05:21 2018 +0100

- up to 4.19.13

 kernel.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/kernel.spec b/kernel.spec
index 90171bac..0ec9d2e2 100644
--- a/kernel.spec
+++ b/kernel.spec
@@ -67,9 +67,9 @@
 %definehave_pcmcia 0
 %endif
 
-%definerel 2
+%definerel 1
 %definebasever 4.19
-%definepostver .12
+%definepostver .13
 
 # define this to '-%{basever}' for longterm branch
 %defineversuffix   -%{basever}
@@ -121,7 +121,7 @@ Source0:
https://www.kernel.org/pub/linux/kernel/v4.x/linux-%{basever}.tar.xz
 # Source0-md5: 740a90cf810c2105df8ee12e5d0bb900
 %if "%{postver}" != ".0"
 Patch0:
https://www.kernel.org/pub/linux/kernel/v4.x/patch-%{version}.xz
-# Patch0-md5:  1e33e1e7f80f8dbe4a0274ba274626b4
+# Patch0-md5:  b5f166c561bcfde69ff7ede0862745e2
 %endif
 Source1:   kernel.sysconfig
 


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kernel.git/commitdiff/49f32312f6e895b73680e67e88f5f5cbb57b5e23

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/ka5-akonadi-import-wizard] - updated to 18.12.0

2018-12-29 Thread witekfl
commit 8e297c423c1bb8b4fd4758233abfaa9ed226fd1e
Author: Witold Filipczyk 
Date:   Sat Dec 29 20:23:43 2018 +0100

- updated to 18.12.0

 ka5-akonadi-import-wizard.spec | 111 +
 1 file changed, 111 insertions(+)
---
diff --git a/ka5-akonadi-import-wizard.spec b/ka5-akonadi-import-wizard.spec
new file mode 100644
index 000..f82ef27
--- /dev/null
+++ b/ka5-akonadi-import-wizard.spec
@@ -0,0 +1,111 @@
+%definekdeappsver  18.12.0
+%defineqtver   5.9.0
+%definekaname  akonadi-import-wizard
+Summary:   Akonadi import wizard
+Name:  ka5-%{kaname}
+Version:   18.12.0
+Release:   1
+License:   GPL v2+/LGPL v2.1+
+Group: X11/Libraries
+Source0:   
http://download.kde.org/stable/applications/%{kdeappsver}/src/%{kaname}-%{version}.tar.xz
+# Source0-md5: 3c198b94a981b5acd25833ec1143769d
+URL:   http://www.kde.org/
+BuildRequires: Qt5Core-devel >= %{qtver}
+BuildRequires: Qt5Gui-devel
+BuildRequires: Qt5Widgets-devel
+BuildRequires: cmake >= 2.8.12
+BuildRequires: gettext-devel
+BuildRequires: ka5-akonadi-devel >= 18.12.0
+BuildRequires: ka5-kcontacts-devel >= 18.12.0
+BuildRequires: ka5-kidentitymanagement-devel >= 18.12.0
+BuildRequires: ka5-kmailtransport-devel >= 18.12.0
+BuildRequires: ka5-libkdepim-devel >= 18.12.0
+BuildRequires: ka5-mailcommon-devel >= 18.12.0
+BuildRequires: ka5-mailimporter-devel >= 18.12.0
+BuildRequires: ka5-messagelib-devel >= 18.12.0
+BuildRequires: ka5-pimcommon-devel >= 18.12.0
+BuildRequires: kf5-extra-cmake-modules >= 5.51.0
+BuildRequires: kf5-kauth-devel >= 5.51.0
+BuildRequires: kf5-kconfig-devel >= 5.51.0
+BuildRequires: kf5-kcrash-devel >= 5.51.0
+BuildRequires: kf5-kdbusaddons-devel >= 5.51.0
+BuildRequires: kf5-kdoctools-devel >= 5.51.0
+BuildRequires: kf5-kio-devel >= 5.51.0
+BuildRequires: kf5-kwallet-devel >= 5.51.0
+BuildRequires: qt5-build >= %{qtver}
+BuildRequires: rpmbuild(macros) >= 1.164
+BuildRequires: shared-mime-info
+BuildRequires: tar >= 1:1.22
+BuildRequires: xz
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+Assistant to import PIM data from other applications into Akonadi for
+use in KDE PIM applications.
+
+%package devel
+Summary:   Header files for %{kaname} development
+Summary(pl.UTF-8): Pliki nagłówkowe dla programistów używających %{kaname}
+Group: X11/Development/Libraries
+Requires:  %{name} = %{version}-%{release}
+
+%description devel
+Header files for %{kaname} development.
+
+%description devel -l pl.UTF-8
+Pliki nagłówkowe dla programistów używających %{kaname}.
+
+%prep
+%setup -q -n %{kaname}-%{version}
+
+%build
+install -d build
+cd build
+%cmake \
+   -DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+   ..
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+%{__make} -C build install \
+   DESTDIR=$RPM_BUILD_ROOT
+
+%find_lang %{kaname} --all-name --with-kde
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post  -p /sbin/ldconfig
+%postun-p /sbin/ldconfig
+
+%files -f %{kaname}.lang
+%defattr(644,root,root,755)
+/etc/xdg/importwizard.categories
+/etc/xdg/importwizard.renamecategories
+%attr(755,root,root) %{_bindir}/akonadiimportwizard
+%attr(755,root,root) %ghost %{_libdir}/libKPimImportWizard.so.5
+%attr(755,root,root) %{_libdir}/libKPimImportWizard.so.5.*.*
+%dir %{_libdir}/qt5/plugins/importwizard
+%attr(755,root,root) %{_libdir}/qt5/plugins/importwizard/balsaimporterplugin.so
+%attr(755,root,root) 
%{_libdir}/qt5/plugins/importwizard/clawsmailimporterplugin.so
+%attr(755,root,root) 
%{_libdir}/qt5/plugins/importwizard/evolutionv3importerplugin.so
+%attr(755,root,root) 
%{_libdir}/qt5/plugins/importwizard/icedoveimporterplugin.so
+%attr(755,root,root) 
%{_libdir}/qt5/plugins/importwizard/seamonkeyimporterplugin.so
+%attr(755,root,root) 
%{_libdir}/qt5/plugins/importwizard/sylpheedimporterplugin.so
+%attr(755,root,root) 
%{_libdir}/qt5/plugins/importwizard/thunderbirdimporterplugin.so
+%attr(755,root,root) 
%{_libdir}/qt5/plugins/importwizard/trojitaimporterplugin.so
+%{_desktopdir}/org.kde.akonadiimportwizard.desktop
+%{_iconsdir}/hicolor/128x128/apps/kontact-import-wizard.png
+%{_iconsdir}/hicolor/256x256/apps/kontact-import-wizard.png
+%{_iconsdir}/hicolor/64x64/apps/kontact-import-wizard.png
+%{_datadir}/importwizard
+%{_datadir}/kconf_update/importwizard-15.08-kickoff.sh
+%{_datadir}/kconf_update/importwizard.upd
+
+%files devel
+%defattr(644,root,root,755)
+%{_includedir}/KF5/KPim
+%{_includedir}/KPim
+%{_libdir}/cmake/KPimImportWizard
+%{_libdir}/libKPimImportWizard.so


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/ka5-akonadi-import-wizard.git/commitdiff/8e297c423c1bb8b4fd4758233abfaa9ed226fd1e

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org

[packages/ka5-akonadi-import-wizard] Created branch master

2018-12-29 Thread witekfl
The branch 'master' was created.

Summary of new commits:

  8e297c4... - updated to 18.12.0
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/ka5-libksieve] - updated to 18.12.0

2018-12-29 Thread witekfl
commit dec8bfbb27c3aab2a7d0f322833cff1b33a9b5ea
Author: Witold Filipczyk 
Date:   Sat Dec 29 20:02:26 2018 +0100

- updated to 18.12.0

 ka5-libksieve.spec | 117 +
 1 file changed, 117 insertions(+)
---
diff --git a/ka5-libksieve.spec b/ka5-libksieve.spec
new file mode 100644
index 000..2f97736
--- /dev/null
+++ b/ka5-libksieve.spec
@@ -0,0 +1,117 @@
+%definekdeappsver  18.12.0
+%defineqtver   5.9.0
+%definekaname  libksieve
+Summary:   Libksieve
+Name:  ka5-%{kaname}
+Version:   18.12.0
+Release:   1
+License:   GPL v2+/LGPL v2.1+
+Group: X11/Libraries
+Source0:   
http://download.kde.org/stable/applications/%{kdeappsver}/src/%{kaname}-%{version}.tar.xz
+# Source0-md5: 32c67fd52ebc45d1e4a1ad411e6bf600
+URL:   http://www.kde.org/
+BuildRequires: Qt5Core-devel >= %{qtver}
+BuildRequires: Qt5Gui-devel
+BuildRequires: Qt5Network-devel >= 5.11.1
+BuildRequires: Qt5Positioning-devel >= 5.11.1
+BuildRequires: Qt5PrintSupport-devel
+BuildRequires: Qt5Qml-devel >= 5.11.1
+BuildRequires: Qt5Quick-devel >= 5.11.1
+BuildRequires: Qt5Test-devel
+BuildRequires: Qt5WebChannel-devel >= 5.11.1
+BuildRequires: Qt5WebEngine-devel
+BuildRequires: Qt5Widgets-devel
+BuildRequires: cmake >= 2.8.12
+BuildRequires: cyrus-sasl-devel
+BuildRequires: gettext-devel
+BuildRequires: ka5-kidentitymanagement-devel >= 18.12.0
+BuildRequires: ka5-kimap-devel >= 18.12.0
+BuildRequires: ka5-kmailtransport-devel >= 18.12.0
+BuildRequires: ka5-kmime-devel >= 18.12.0
+BuildRequires: ka5-kpimtextedit-devel >= 18.12.0
+BuildRequires: ka5-libkdepim-devel >= 18.12.0
+BuildRequires: ka5-pimcommon-devel >= 18.12.0
+BuildRequires: kf5-extra-cmake-modules >= 5.53.0
+BuildRequires: kf5-karchive-devel >= 5.51.0
+BuildRequires: kf5-kdoctools-devel >= 5.51.0
+BuildRequires: kf5-ki18n-devel >= 5.51.0
+BuildRequires: kf5-kiconthemes-devel >= 5.51.0
+BuildRequires: kf5-kio-devel >= 5.51.0
+BuildRequires: kf5-knewstuff-devel >= 5.51.0
+BuildRequires: kf5-kwindowsystem-devel >= 5.51.0
+BuildRequires: kf5-syntax-highlighting-devel >= 5.51.0
+BuildRequires: qt5-build >= %{qtver}
+BuildRequires: rpmbuild(macros) >= 1.164
+BuildRequires: shared-mime-info
+BuildRequires: tar >= 1:1.22
+BuildRequires: xz
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+This lib manages sieve support.
+
+%package devel
+Summary:   Header files for %{kaname} development
+Summary(pl.UTF-8): Pliki nagłówkowe dla programistów używających %{kpname}
+Group: X11/Development/Libraries
+Requires:  %{name} = %{version}-%{release}
+
+%description devel
+Header files for %{kaname} development.
+
+%description devel -l pl.UTF-8
+Pliki nagłówkowe dla programistów używających %{kaname}.
+
+%prep
+%setup -q -n %{kaname}-%{version}
+
+%build
+install -d build
+cd build
+%cmake \
+   -DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+   ..
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+%{__make} -C build install \
+   DESTDIR=$RPM_BUILD_ROOT
+
+%find_lang %{kaname} --all-name --with-kde
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post  -p /sbin/ldconfig
+%postun-p /sbin/ldconfig
+
+%files -f %{kaname}.lang
+%defattr(644,root,root,755)
+/etc/xdg/ksieve_script.knsrc
+/etc/xdg/libksieve.categories
+/etc/xdg/libksieve.renamecategories
+%attr(755,root,root) %ghost %{_libdir}/libKF5KManageSieve.so.5
+%attr(755,root,root) %{_libdir}/libKF5KManageSieve.so.5.*.*
+%attr(755,root,root) %ghost %{_libdir}/libKF5KSieve.so.5
+%attr(755,root,root) %{_libdir}/libKF5KSieve.so.5.*.*
+%attr(755,root,root) %ghost %{_libdir}/libKF5KSieveUi.so.5
+%attr(755,root,root) %{_libdir}/libKF5KSieveUi.so.5.*.*
+%attr(755,root,root) %{_libdir}/qt5/plugins/kf5/kio/sieve.so
+%{_datadir}/kservices5/sieve.protocol
+%{_datadir}/sieve
+
+%files devel
+%defattr(644,root,root,755)
+%{_includedir}/KF5/KManageSieve
+%{_includedir}/KF5/KSieveUi
+%{_includedir}/KF5/kmanagesieve
+%{_includedir}/KF5/ksieveui
+%{_includedir}/KF5/libksieve_version.h
+%{_libdir}/cmake/KF5LibKSieve
+%attr(755,root,root) %{_libdir}/libKF5KManageSieve.so
+%attr(755,root,root) %{_libdir}/libKF5KSieve.so
+%attr(755,root,root) %{_libdir}/libKF5KSieveUi.so
+%{_libdir}/qt5/mkspecs/modules/qt_KManageSieve.pri
+%{_libdir}/qt5/mkspecs/modules/qt_KSieve.pri
+%{_libdir}/qt5/mkspecs/modules/qt_KSieveUi.pri


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/ka5-libksieve.git/commitdiff/dec8bfbb27c3aab2a7d0f322833cff1b33a9b5ea

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/ka5-libksieve] Created branch master

2018-12-29 Thread witekfl
The branch 'master' was created.

Summary of new commits:

  dec8bfb... - updated to 18.12.0
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


DISTFILES: ka5-eventviews: eventviews-18.12.0.tar.xz

2018-12-29 Thread witekfl
Request by: witekfl


Files fetched: 1

STORED: 
http://download.kde.org/stable/applications/18.12.0/src/eventviews-18.12.0.tar.xz
d9840f1af87ca727367d51e1be9b0a2b  eventviews-18.12.0.tar.xz
Size: 443136 bytes


-- 
Virtually Yours: distfiles.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/ka5-incidenceeditor] - packaged files

2018-12-29 Thread witekfl
commit 055f8cff4488dd649e8cb7c16841c2fb73faf2cc
Author: Witold Filipczyk 
Date:   Sat Dec 29 19:32:31 2018 +0100

- packaged files

 ka5-incidenceeditor.spec | 30 ++
 1 file changed, 30 insertions(+)
---
diff --git a/ka5-incidenceeditor.spec b/ka5-incidenceeditor.spec
index cc653f7..648c7b2 100644
--- a/ka5-incidenceeditor.spec
+++ b/ka5-incidenceeditor.spec
@@ -11,8 +11,27 @@ Source0: 
http://download.kde.org/stable/applications/%{kdeappsver}/src/%{kaname}
 # Source0-md5: e9fdda4650d2a6c4de728100dd1b7967
 URL:   http://www.kde.org/
 BuildRequires: Qt5Core-devel >= %{qtver}
+BuildRequires: Qt5Gui-devel >= 5.11.1
+BuildRequires: Qt5Widgets-devel
 BuildRequires: cmake >= 2.8.12
+BuildRequires: gettext-devel
+BuildRequires: ka5-akonadi-devel >= 18.12.0
+BuildRequires: ka5-akonadi-mime-devel >= 18.12.0
+BuildRequires: ka5-calendarsupport-devel >= 18.12.0
+BuildRequires: ka5-eventviews-devel >= 18.12.0
+BuildRequires: ka5-kcalcore-devel >= 18.12.0
+BuildRequires: ka5-kcalutils-devel >= 18.12.0
+BuildRequires: ka5-kdepim-apps-libs-devel >= 18.12.0
+BuildRequires: ka5-kldap-devel >= 18.12.0
+BuildRequires: ka5-kmailtransport-devel >= 18.12.0
+BuildRequires: ka5-kmime-devel >= 18.12.0
+BuildRequires: ka5-libkdepim-devel >= 18.12.0
+BuildRequires: kdiagram-devel >= 1.4.0
 BuildRequires: kf5-extra-cmake-modules >= 5.53.0
+BuildRequires: kf5-kcodecs-devel >= 5.51.0
+BuildRequires: kf5-ki18n-devel >= 5.51.0
+BuildRequires: kf5-kiconthemes-devel >= 5.51.0
+BuildRequires: kf5-kio-devel >= 5.51.0
 BuildRequires: qt5-build >= %{qtver}
 BuildRequires: rpmbuild(macros) >= 1.164
 BuildRequires: shared-mime-info
@@ -61,6 +80,17 @@ rm -rf $RPM_BUILD_ROOT
 
 %files -f %{kaname}.lang
 %defattr(644,root,root,755)
+/etc/xdg/incidenceeditor.categories
+/etc/xdg/incidenceeditor.renamecategories
+%attr(755,root,root) %{_bindir}/kincidenceeditor
+%attr(755,root,root) %ghost %{_libdir}/libKF5IncidenceEditor.so.5
+%attr(755,root,root) %{_libdir}/libKF5IncidenceEditor.so.5.*.*
 
 %files devel
 %defattr(644,root,root,755)
+%{_includedir}/KF5/IncidenceEditor
+%{_includedir}/KF5/incidenceeditor
+%{_includedir}/KF5/incidenceeditor_version.h
+%{_libdir}/cmake/KF5IncidenceEditor
+%attr(755,root,root) %{_libdir}/libKF5IncidenceEditor.so
+%{_libdir}/qt5/mkspecs/modules/qt_IncidenceEditor.pri


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/ka5-incidenceeditor.git/commitdiff/055f8cff4488dd649e8cb7c16841c2fb73faf2cc

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/ka5-eventviews] - updated to 18.12.0

2018-12-29 Thread witekfl
commit e86c30c96a1bfd4da2246b3b06aa4172eb154fb5
Author: Witold Filipczyk 
Date:   Sat Dec 29 19:13:22 2018 +0100

- updated to 18.12.0

 ka5-eventviews.spec | 97 +
 1 file changed, 97 insertions(+)
---
diff --git a/ka5-eventviews.spec b/ka5-eventviews.spec
new file mode 100644
index 000..ac78aa6
--- /dev/null
+++ b/ka5-eventviews.spec
@@ -0,0 +1,97 @@
+%definekdeappsver  18.12.0
+%defineqtver   5.9.0
+%definekaname  eventviews
+Summary:   Library for creating events
+Name:  ka5-%{kaname}
+Version:   18.12.0
+Release:   1
+License:   GPL v2+/LGPL v2.1+
+Group: X11/Libraries
+Source0:   
http://download.kde.org/stable/applications/%{kdeappsver}/src/%{kaname}-%{version}.tar.xz
+# Source0-md5: d9840f1af87ca727367d51e1be9b0a2b
+URL:   http://www.kde.org/
+BuildRequires: Qt5Core-devel >= %{qtver}
+BuildRequires: Qt5Gui-devel >= 5.11.1
+BuildRequires: Qt5Test-devel
+BuildRequires: Qt5UiTools-devel
+BuildRequires: Qt5Widgets-devel
+BuildRequires: cmake >= 2.8.12
+BuildRequires: gettext-devel
+BuildRequires: ka5-akonadi-calendar-devel >= 18.12.0
+BuildRequires: ka5-akonadi-devel >= 18.12.0
+BuildRequires: ka5-calendarsupport-devel >= 18.12.0
+BuildRequires: ka5-kcalcore-devel >= 18.12.0
+BuildRequires: ka5-kcalutils-devel >= 18.12.0
+BuildRequires: ka5-kmime-devel >= 18.12.0
+BuildRequires: ka5-libkdepim-devel >= 18.12.0
+BuildRequires: kdiagram-devel >= 1.4.0
+BuildRequires: kf5-extra-cmake-modules >= 5.53.0
+BuildRequires: kf5-kcodecs-devel >= 5.51.0
+BuildRequires: kf5-kcompletion-devel >= 5.51.0
+BuildRequires: kf5-kguiaddons-devel >= 5.51.0
+BuildRequires: kf5-kholidays-devel >= 5.51.0
+BuildRequires: kf5-ki18n-devel >= 5.51.0
+BuildRequires: kf5-kiconthemes-devel >= 5.51.0
+BuildRequires: kf5-kservice-devel >= 5.51.0
+BuildRequires: qt5-build >= %{qtver}
+BuildRequires: rpmbuild(macros) >= 1.164
+BuildRequires: shared-mime-info
+BuildRequires: tar >= 1:1.22
+BuildRequires: xz
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+It contains lib for creating events.
+
+%package devel
+Summary:   Header files for %{kaname} development
+Summary(pl.UTF-8): Pliki nagłówkowe dla programistów używających %{kaname}
+Group: X11/Development/Libraries
+Requires:  %{name} = %{version}-%{release}
+
+%description devel
+Header files for %{kaname} development.
+
+%description devel -l pl.UTF-8
+Pliki nagłówkowe dla programistów używających %{kaname}.
+
+%prep
+%setup -q -n %{kaname}-%{version}
+
+%build
+install -d build
+cd build
+%cmake \
+   -DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+   ..
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+%{__make} -C build install \
+   DESTDIR=$RPM_BUILD_ROOT
+
+%find_lang %{kaname} --all-name --with-kde
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post  -p /sbin/ldconfig
+%postun-p /sbin/ldconfig
+
+%files -f %{kaname}.lang
+%defattr(644,root,root,755)
+/etc/xdg/eventviews.categories
+/etc/xdg/eventviews.renamecategories
+%attr(755,root,root) %ghost %{_libdir}/libKF5EventViews.so.5
+%attr(755,root,root) %{_libdir}/libKF5EventViews.so.5.*.*
+%{_datadir}/kservicetypes5/calendardecoration.desktop
+
+%files devel
+%defattr(644,root,root,755)
+%{_includedir}/KF5/EventViews
+%{_includedir}/KF5/eventviews
+%{_includedir}/KF5/eventviews_version.h
+%{_libdir}/cmake/KF5EventViews
+%attr(755,root,root) %{_libdir}/libKF5EventViews.so
+%{_libdir}/qt5/mkspecs/modules/qt_EventViews.pri


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/ka5-eventviews.git/commitdiff/e86c30c96a1bfd4da2246b3b06aa4172eb154fb5

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/ka5-eventviews] Created branch master

2018-12-29 Thread witekfl
The branch 'master' was created.

Summary of new commits:

  e86c30c... - updated to 18.12.0
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/libCSS] - added restrict patch (use __restrict instead of restrict in public headers to allow use in C++) -

2018-12-29 Thread qboosh
commit 9a69bacd70cf2b33ff9de266f6e0b3d7cedb6998
Author: Jakub Bogusz 
Date:   Sat Dec 29 19:17:02 2018 +0100

- added restrict patch (use __restrict instead of restrict in public 
headers to allow use in C++)
- release 2

 libCSS-restrict.patch | 19 +++
 libCSS.spec   |  4 +++-
 2 files changed, 22 insertions(+), 1 deletion(-)
---
diff --git a/libCSS.spec b/libCSS.spec
index 52be88a..ad1fab5 100644
--- a/libCSS.spec
+++ b/libCSS.spec
@@ -6,11 +6,12 @@ Summary:  CSS parser and selection engine
 Summary(pl.UTF-8): Silnik analizujący i wybierający CSS
 Name:  libCSS
 Version:   0.8.0
-Release:   1
+Release:   2
 License:   MIT
 Group: Libraries
 Source0:   
http://download.netsurf-browser.org/libs/releases/libcss-%{version}-src.tar.gz
 # Source0-md5: b7cebcc75fd78f8b9b0702b8ff5eea3f
+Patch0:%{name}-restrict.patch
 URL:   http://www.netsurf-browser.org/projects/libcss/
 BuildRequires: libparserutils-devel >= 0.2.4
 BuildRequires: libwapcaplet-devel >= 0.4.1
@@ -75,6 +76,7 @@ Statyczna biblioteka libCSS.
 
 %prep
 %setup -q -n libcss-%{version}
+%patch0 -p1
 
 # create "gen" target just to execute PRE_TARGETS
 printf '\ngen: $(PRE_TARGETS)\n' >> Makefile
diff --git a/libCSS-restrict.patch b/libCSS-restrict.patch
new file mode 100644
index 000..69e9497
--- /dev/null
+++ b/libCSS-restrict.patch
@@ -0,0 +1,19 @@
+--- libcss-0.8.0/include/libcss/computed.h.orig2018-08-22 
15:27:44.0 +0200
 libcss-0.8.0/include/libcss/computed.h 2018-12-29 19:02:55.633399014 
+0100
+@@ -79,13 +79,13 @@
+ css_error css_computed_style_destroy(css_computed_style *style);
+ 
+ css_error css_computed_style_compose(
+-  const css_computed_style *restrict parent,
+-  const css_computed_style *restrict child,
++  const css_computed_style *__restrict parent,
++  const css_computed_style *__restrict child,
+   css_error (*compute_font_size)(void *pw,
+   const struct css_hint *parent,
+   struct css_hint *size),
+   void *pw,
+-  css_computed_style **restrict result);
++  css_computed_style **__restrict result);
+ 
+ 
/**
+  * Property accessors below here  
*


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/libCSS.git/commitdiff/9a69bacd70cf2b33ff9de266f6e0b3d7cedb6998

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


DISTFILES: kdiagram: kdiagram-2.6.1.tar.xz

2018-12-29 Thread witekfl
Request by: witekfl


Files fetched: 1

STORED: http://download.kde.org/stable/kdiagram/2.6.1/kdiagram-2.6.1.tar.xz
d0f8624a2decad2ba6a871e13799da23  kdiagram-2.6.1.tar.xz
Size: 674016 bytes


-- 
Virtually Yours: distfiles.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/kdiagram] - new

2018-12-29 Thread witekfl
commit 1a9057e15da4ce26281dff66b68b7ba106a3c29f
Author: Witold Filipczyk 
Date:   Sat Dec 29 18:55:25 2018 +0100

- new

 kdiagram.spec | 76 +++
 1 file changed, 76 insertions(+)
---
diff --git a/kdiagram.spec b/kdiagram.spec
new file mode 100644
index 000..b990cd5
--- /dev/null
+++ b/kdiagram.spec
@@ -0,0 +1,76 @@
+%defineqtver   5.9.0
+Summary:   KDiagram
+Name:  kdiagram
+Version:   2.6.1
+Release:   1
+License:   GPL v2+/LGPL v2.1+
+Group: X11/Libraries
+Source0:   
http://download.kde.org/stable/kdiagram/%{version}/%{name}-%{version}.tar.xz
+# Source0-md5: d0f8624a2decad2ba6a871e13799da23
+URL:   http://www.kde.org/
+BuildRequires: Qt5Core-devel >= %{qtver}
+BuildRequires: cmake >= 2.8.12
+BuildRequires: qt5-build >= %{qtver}
+BuildRequires: rpmbuild(macros) >= 1.164
+BuildRequires: shared-mime-info
+BuildRequires: tar >= 1:1.22
+BuildRequires: xz
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+
+%package devel
+Summary:   Header files for %{name} development
+Summary(pl.UTF-8): Pliki nagłówkowe dla programistów używających %{name}
+Group: X11/Development/Libraries
+Requires:  %{name} = %{version}-%{release}
+
+%description devel
+Header files for %{name} development.
+
+%description devel -l pl.UTF-8
+Pliki nagłówkowe dla programistów używających %{name}.
+
+%prep
+%setup -q
+
+%build
+install -d build
+cd build
+%cmake \
+   -DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+   ..
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+%{__make} -C build install \
+   DESTDIR=$RPM_BUILD_ROOT
+
+%find_lang %{name} --all-name --with-qm
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post  -p /sbin/ldconfig
+%postun-p /sbin/ldconfig
+
+%files -f %{name}.lang
+%defattr(644,root,root,755)
+%attr(755,root,root) %ghost %{_libdir}/libKChart.so.2
+%attr(755,root,root) %{_libdir}/libKChart.so.2.6.1
+%attr(755,root,root) %ghost %{_libdir}/libKGantt.so.2
+%attr(755,root,root) %{_libdir}/libKGantt.so.2.6.1
+
+%files devel
+%defattr(644,root,root,755)
+%{_includedir}/KChart
+%{_includedir}/KGantt
+%{_includedir}/kchart_version.h
+%{_includedir}/kgantt_version.h
+%{_libdir}/cmake/KChart
+%{_libdir}/cmake/KGantt
+%attr(755,root,root) %{_libdir}/libKChart.so
+%attr(755,root,root) %{_libdir}/libKGantt.so
+%{_libdir}/qt5/mkspecs/modules/qt_KChart.pri
+%{_libdir}/qt5/mkspecs/modules/qt_KGantt.pri


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kdiagram.git/commitdiff/1a9057e15da4ce26281dff66b68b7ba106a3c29f

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/kdiagram] Created branch master

2018-12-29 Thread witekfl
The branch 'master' was created.

Summary of new commits:

  1a9057e... - new
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


DISTFILES: ka5-akonadi-notes: akonadi-notes-18.12.0.tar.xz

2018-12-29 Thread witekfl
Request by: witekfl


Files fetched: 1

STORED: 
http://download.kde.org/stable/applications/18.12.0/src/akonadi-notes-18.12.0.tar.xz
28a6bf8971e51ee9f77d97fd081d9e8a  akonadi-notes-18.12.0.tar.xz
Size: 24472 bytes


-- 
Virtually Yours: distfiles.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/ka5-akonadi-notes] Created branch master

2018-12-29 Thread witekfl
The branch 'master' was created.

Summary of new commits:

  7a17678... - updated to 18.12.0
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/ka5-akonadi-notes] - updated to 18.12.0

2018-12-29 Thread witekfl
commit 7a17678d207293470e5789eeb35ebb71e28e0766
Author: Witold Filipczyk 
Date:   Sat Dec 29 18:19:58 2018 +0100

- updated to 18.12.0

 ka5-akonadi-notes.spec | 81 ++
 1 file changed, 81 insertions(+)
---
diff --git a/ka5-akonadi-notes.spec b/ka5-akonadi-notes.spec
new file mode 100644
index 000..4ade01c
--- /dev/null
+++ b/ka5-akonadi-notes.spec
@@ -0,0 +1,81 @@
+%definekdeappsver  18.12.0
+%defineqtver   5.9.0
+%definekaname  akonadi-notes
+Summary:   Akonadi Notes
+Name:  ka5-%{kaname}
+Version:   18.12.0
+Release:   1
+License:   GPL v2+/LGPL v2.1+
+Group: X11/Libraries
+Source0:   
http://download.kde.org/stable/applications/%{kdeappsver}/src/%{kaname}-%{version}.tar.xz
+# Source0-md5: 28a6bf8971e51ee9f77d97fd081d9e8a
+URL:   http://www.kde.org/
+BuildRequires: Qt5Core-devel >= %{qtver}
+BuildRequires: Qt5Gui-devel >= 5.11.1
+BuildRequires: Qt5Test-devel >= 5.9.0
+BuildRequires: Qt5Xml-devel >= 5.9.0
+BuildRequires: cmake >= 2.8.12
+BuildRequires: gettext-devel
+BuildRequires: ka5-akonadi-devel >= 5.10.0
+BuildRequires: ka5-kmime-devel >= 5.10.0
+BuildRequires: kf5-extra-cmake-modules >= 5.51.0
+BuildRequires: kf5-ki18n-devel >= 5.51.0
+BuildRequires: qt5-build >= %{qtver}
+BuildRequires: rpmbuild(macros) >= 1.164
+BuildRequires: shared-mime-info
+BuildRequires: tar >= 1:1.22
+BuildRequires: xz
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+Library for akonadi notes integration.
+
+%package devel
+Summary:   Header files for %{kaname} development
+Summary(pl.UTF-8): Pliki nagłówkowe dla programistów używających %{kaname}
+Group: X11/Development/Libraries
+Requires:  %{name} = %{version}-%{release}
+
+%description devel
+Header files for %{kaname} development.
+
+%description devel -l pl.UTF-8
+Pliki nagłówkowe dla programistów używających %{kaname}.
+
+%prep
+%setup -q -n %{kaname}-%{version}
+
+%build
+install -d build
+cd build
+%cmake \
+   -DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+   ..
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+%{__make} -C build install \
+   DESTDIR=$RPM_BUILD_ROOT
+
+%find_lang %{kaname} --all-name --with-kde
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post  -p /sbin/ldconfig
+%postun-p /sbin/ldconfig
+
+%files -f %{kaname}.lang
+%defattr(644,root,root,755)
+%attr(755,root,root) %ghost %{_libdir}/libKF5AkonadiNotes.so.5
+%attr(755,root,root) %{_libdir}/libKF5AkonadiNotes.so.5.*.*
+
+%files devel
+%defattr(644,root,root,755)
+%{_includedir}/KF5/Akonadi/Notes
+%{_includedir}/KF5/akonadi-notes_version.h
+%{_includedir}/KF5/akonadi/notes
+%{_libdir}/cmake/KF5AkonadiNotes
+%attr(755,root,root) %{_libdir}/libKF5AkonadiNotes.so
+%{_libdir}/qt5/mkspecs/modules/qt_AkonadiNotes.pri


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/ka5-akonadi-notes.git/commitdiff/7a17678d207293470e5789eeb35ebb71e28e0766

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


DISTFILES: kdenlive: kdenlive-18.12.0.tar.xz

2018-12-29 Thread witekfl
Request by: witekfl


Files fetched: 1

STORED: 
http://download.kde.org/stable/applications/18.12.0/src/kdenlive-18.12.0.tar.xz
28e8c79216d3393eb50d90dd8d36e019  kdenlive-18.12.0.tar.xz
Size: 10196100 bytes


-- 
Virtually Yours: distfiles.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/kdenlive] - updated to 18.12.0

2018-12-29 Thread witekfl
commit 4428191a7fb7034e4c616cb09822d1f20021feff
Author: Witold Filipczyk 
Date:   Sat Dec 29 18:07:06 2018 +0100

- updated to 18.12.0

 kdenlive.spec | 17 +++--
 1 file changed, 11 insertions(+), 6 deletions(-)
---
diff --git a/kdenlive.spec b/kdenlive.spec
index 1fb0e83..f5c3441 100644
--- a/kdenlive.spec
+++ b/kdenlive.spec
@@ -1,12 +1,15 @@
+%definekdeappsver  18.12.0
+%defineqtver   5.9.0
+%definekaname  kdenlive
 Summary:   KDE movie editor
 Summary(pl.UTF-8): Edytor filmów dla KDE
 Name:  kdenlive
-Version:   17.08.3
+Version:   18.12.0
 Release:   1
 License:   GPL
 Group: X11/Applications/Multimedia
-Source0:   https://github.com/KDE/kdenlive/archive/v%{version}.tar.gz
-# Source0-md5: fec06528009c1fa64f9661f4b6694b33
+Source0:   
http://download.kde.org/stable/applications/%{kdeappsver}/src/%{kaname}-%{version}.tar.xz
+# Source0-md5: 28e8c79216d3393eb50d90dd8d36e019
 URL:   http://kdenlive.org/
 BuildRequires: Qt5Concurrent-devel
 BuildRequires: Qt5Core-devel
@@ -93,6 +96,7 @@ Obsługiwany jest zapis/odczyt pełnego projektu.
 mkdir build
 cd build
 %cmake .. \
+   -DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
-DPLUGIN_INSTALL_DIR=%{_libdir}/qt5/plugins
 
 %{__make}
@@ -100,14 +104,15 @@ cd build
 %install
 rm -rf $RPM_BUILD_ROOT
 
-cd build
-%{__make} install \
+%{__make} -C build install \
DESTDIR=$RPM_BUILD_ROOT
 
+%find_lang %{kaname} --all-name --with-kde
+
 %clean
 rm -rf $RPM_BUILD_ROOT
 
-%files
+%files -f %{kaname}.lang
 %defattr(644,root,root,755)
 %attr(755,root,root) %{_bindir}/%{name}*
 %attr(755,root,root) %{_libdir}/qt5/plugins/mltpreview.so


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kdenlive.git/commitdiff/4428191a7fb7034e4c616cb09822d1f20021feff

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


DISTFILES: ka5-kdegraphics-thumbnailers: kdegraphics-thumbnailers-18.12.0.tar.xz

2018-12-29 Thread witekfl
Request by: witekfl


Files fetched: 1

STORED: 
http://download.kde.org/stable/applications/18.12.0/src/kdegraphics-thumbnailers-18.12.0.tar.xz
921bc1ad68c3a3f4b97423dac8651efb  
kdegraphics-thumbnailers-18.12.0.tar.xz
Size: 41288 bytes


-- 
Virtually Yours: distfiles.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/ka5-kdegraphics-thumbnailers] Created branch master

2018-12-29 Thread witekfl
The branch 'master' was created.

Summary of new commits:

  28d35c3... - updated to 18.12.0
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


DISTFILES: libmspack: libmspack-0.9.1alpha.tar.gz

2018-12-29 Thread qboosh
Request by: qboosh


Files fetched: 1

STORED: https://www.cabextract.org.uk/libmspack/libmspack-0.9.1alpha.tar.gz
9602ae4a6b0468d9aaef6359c1e90657  libmspack-0.9.1alpha.tar.gz
Size: 494651 bytes


-- 
Virtually Yours: distfiles.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


DISTFILES: ka5-kdegraphics-mobipocket: kdegraphics-mobipocket-18.12.0.tar.xz

2018-12-29 Thread witekfl
Request by: witekfl


Files fetched: 1

STORED: 
http://download.kde.org/stable/applications/18.12.0/src/kdegraphics-mobipocket-18.12.0.tar.xz
ad21b72ee1b9622cc3d2cd03b466b8a7  kdegraphics-mobipocket-18.12.0.tar.xz
Size: 13452 bytes


-- 
Virtually Yours: distfiles.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/ka5-kdegraphics-thumbnailers] - updated to 18.12.0

2018-12-29 Thread witekfl
commit 28d35c31bf571ce347596aa0d66bc275dc2dea9f
Author: Witold Filipczyk 
Date:   Sat Dec 29 17:06:53 2018 +0100

- updated to 18.12.0

 ka5-kdegraphics-thumbnailers.spec | 54 +++
 1 file changed, 54 insertions(+)
---
diff --git a/ka5-kdegraphics-thumbnailers.spec 
b/ka5-kdegraphics-thumbnailers.spec
new file mode 100644
index 000..bd1fb3a
--- /dev/null
+++ b/ka5-kdegraphics-thumbnailers.spec
@@ -0,0 +1,54 @@
+%definekdeappsver  18.12.0
+%defineqtver   5.9.0
+%definekaname  kdegraphics-thumbnailers
+Summary:   KDE graphics thumbnailers
+Name:  ka5-%{kaname}
+Version:   18.12.0
+Release:   1
+License:   GPL v2+/LGPL v2.1+
+Group: X11/Libraries
+Source0:   
http://download.kde.org/stable/applications/%{kdeappsver}/src/%{kaname}-%{version}.tar.xz
+# Source0-md5: 921bc1ad68c3a3f4b97423dac8651efb
+URL:   http://www.kde.org/
+BuildRequires: Qt5Core-devel >= %{qtver}
+BuildRequires: Qt5Gui-devel
+BuildRequires: cmake >= 2.8.12
+BuildRequires: ka5-libkdcraw-devel
+BuildRequires: ka5-libkexiv2-devel
+BuildRequires: kf5-kio-devel
+BuildRequires: qt5-build >= %{qtver}
+BuildRequires: rpmbuild(macros) >= 1.164
+BuildRequires: tar >= 1:1.22
+BuildRequires: xz
+BuildRequires: zlib-devel
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+These plugins allow KDE software to create thumbnails for several
+advanced graphic file formats (PS, RAW).
+
+%prep
+%setup -q -n %{kaname}-%{version}
+
+%build
+install -d build
+cd build
+%cmake \
+   -DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+   ..
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+%{__make} -C build install \
+   DESTDIR=$RPM_BUILD_ROOT
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_libdir}/qt5/plugins/gsthumbnail.so
+%attr(755,root,root) %{_libdir}/qt5/plugins/rawthumbnail.so
+%{_datadir}/kservices5/gsthumbnail.desktop
+%{_datadir}/kservices5/rawthumbnail.desktop


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/ka5-kdegraphics-thumbnailers.git/commitdiff/28d35c31bf571ce347596aa0d66bc275dc2dea9f

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/libmspack] - updated to 0.9.1alpha - updated deps,headers patches - added progs patch (still install 4 useful u

2018-12-29 Thread qboosh
commit 1a2499b0438ea6f79c6807eaad2ace44c51556c4
Author: Jakub Bogusz 
Date:   Sat Dec 29 17:10:54 2018 +0100

- updated to 0.9.1alpha
- updated deps,headers patches
- added progs patch (still install 4 useful utilities, even though they are 
not production ready)

 libmspack-deps.patch| 103 +++-
 libmspack-headers.patch |  15 ---
 libmspack-progs.patch   |  16 
 libmspack.spec  |  10 +++--
 4 files changed, 79 insertions(+), 65 deletions(-)
---
diff --git a/libmspack.spec b/libmspack.spec
index 6795ef3..aa5b892 100644
--- a/libmspack.spec
+++ b/libmspack.spec
@@ -5,17 +5,18 @@
 Summary:   A library for Microsoft compression formats
 Summary(pl.UTF-8): Biblioteka do formatów kompresji używanych przez 
Microsoft
 Name:  libmspack
-Version:   0.8alpha
-Release:   5
+Version:   0.9.1alpha
+Release:   1
 License:   LGPL v2.1
 Group: Libraries
 Source0:   
https://www.cabextract.org.uk/libmspack/%{name}-%{version}.tar.gz
-# Source0-md5: be4ed61868c6c1ecc173b678ce3459be
+# Source0-md5: 9602ae4a6b0468d9aaef6359c1e90657
 Patch0:%{name}-deps.patch
 Patch1:%{name}-headers.patch
+Patch2:%{name}-progs.patch
 URL:   https://www.cabextract.org.uk/libmspack/
 BuildRequires: autoconf >= 2.59
-BuildRequires: automake
+BuildRequires: automake >= 1:1.11
 BuildRequires: gcc >= 5:3.0
 BuildRequires: libtool >= 2:2
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
@@ -76,6 +77,7 @@ Microsoftu.
 %setup -q
 %patch0 -p1
 %patch1 -p1
+%patch2 -p1
 
 %build
 %{__libtoolize}
diff --git a/libmspack-deps.patch b/libmspack-deps.patch
index 0d991d7..ae66f84 100644
--- a/libmspack-deps.patch
+++ b/libmspack-deps.patch
@@ -1,56 +1,53 @@
 libmspack-0.7.1alpha/Makefile.am.orig  2018-08-09 10:29:14.0 
+0200
-+++ libmspack-0.7.1alpha/Makefile.am   2018-10-12 19:31:46.296437020 +0200
-@@ -60,39 +60,39 @@
-   mspack/readbits.h mspack/readhuff.h
- libmschmd_la_LDFLAGS =-export-symbols-regex '^mspack_'
+--- libmspack-0.9.1alpha/Makefile.am.orig  2018-12-29 09:12:11.633803722 
+0100
 libmspack-0.9.1alpha/Makefile.am   2018-12-29 11:02:49.790394594 +0100
+@@ -56,36 +56,36 @@
+ mspack/readbits.h mspack/readhuff.h
+ libmschmd_la_LDFLAGS =  -export-symbols-regex '^mspack_'
  
--examples_cabd_memory_SOURCES =examples/cabd_memory.c libmscabd.la
-+examples_cabd_memory_SOURCES =examples/cabd_memory.c
- examples_cabd_memory_LDADD =  libmscabd.la
--examples_multifh_SOURCES =examples/multifh.c libmscabd.la
-+examples_multifh_SOURCES =examples/multifh.c
- examples_multifh_LDADD =  libmscabd.la
+-examples_cabd_memory_SOURCES =  examples/cabd_memory.c libmscabd.la
++examples_cabd_memory_SOURCES =  examples/cabd_memory.c
+ examples_cabd_memory_LDADD =libmscabd.la
+-examples_cabrip_SOURCES =   examples/cabrip.c libmspack.la
++examples_cabrip_SOURCES =   examples/cabrip.c
+ examples_cabrip_LDADD = libmspack.la
+-examples_chmextract_SOURCES =   examples/chmextract.c test/error.h 
libmspack.la
++examples_chmextract_SOURCES =   examples/chmextract.c test/error.h
+ examples_chmextract_LDADD = libmspack.la
+-examples_msexpand_SOURCES = examples/msexpand.c test/error.h libmspack.la
++examples_msexpand_SOURCES = examples/msexpand.c test/error.h
+ examples_msexpand_LDADD =   libmspack.la
+-examples_multifh_SOURCES =  examples/multifh.c libmscabd.la
++examples_multifh_SOURCES =  examples/multifh.c
+ examples_multifh_LDADD =libmscabd.la
+-examples_oabextract_SOURCES =   examples/oabextract.c test/error.h 
libmspack.la
++examples_oabextract_SOURCES =   examples/oabextract.c test/error.h
+ examples_oabextract_LDADD = libmspack.la
  
--src_cabrip_SOURCES =  src/cabrip.c libmspack.la
-+src_cabrip_SOURCES =  src/cabrip.c
- src_cabrip_LDADD =libmspack.la
--src_chmextract_SOURCES =  src/chmextract.c src/error.h libmspack.la
-+src_chmextract_SOURCES =  src/chmextract.c src/error.h
- src_chmextract_LDADD =libmspack.la
--src_msexpand_SOURCES =src/msexpand.c src/error.h libmspack.la
-+src_msexpand_SOURCES =src/msexpand.c src/error.h
- src_msexpand_LDADD =  libmspack.la
--src_oabextract_SOURCES =  src/oabextract.c src/error.h libmspack.la
-+src_oabextract_SOURCES =  src/oabextract.c src/error.h
- src_oabextract_LDADD =libmspack.la
+-test_cabd_md5_SOURCES = test/cabd_md5.c test/md5.c test/md5.h 
test/md5_fh.h test/error.h libmscabd.la
++test_cabd_md5_SOURCES = test/cabd_md5.c test/md5.c test/md5.h 
test/md5_fh.h test/error.h
+ test_cabd_md5_LDADD =   libmscabd.la
+-test_chmd_find_SOURCES =test/chmd_find.c test/error.h libmschmd.la
++test_chmd_find_SOURCES =test/chmd_find.c test/error.h

DISTFILES: ka5-kdenetwork-filesharing: kdenetwork-filesharing-18.12.0.tar.xz

2018-12-29 Thread witekfl
Request by: witekfl


Files fetched: 1

STORED: 
http://download.kde.org/stable/applications/18.12.0/src/kdenetwork-filesharing-18.12.0.tar.xz
e112f2173532e578e196dc73e5e614fd  kdenetwork-filesharing-18.12.0.tar.xz
Size: 312764 bytes


-- 
Virtually Yours: distfiles.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/ka5-kdenetwork-filesharing] Created branch master

2018-12-29 Thread witekfl
The branch 'master' was created.

Summary of new commits:

  986f506... - updated to 18.12.0
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/ka5-kdenetwork-filesharing] - updated to 18.12.0

2018-12-29 Thread witekfl
commit 986f5069819e00f72b66e2d6b37499ed0b321c84
Author: Witold Filipczyk 
Date:   Sat Dec 29 17:16:19 2018 +0100

- updated to 18.12.0

 ka5-kdenetwork-filesharing.spec | 57 +
 1 file changed, 57 insertions(+)
---
diff --git a/ka5-kdenetwork-filesharing.spec b/ka5-kdenetwork-filesharing.spec
new file mode 100644
index 000..aeec9bc
--- /dev/null
+++ b/ka5-kdenetwork-filesharing.spec
@@ -0,0 +1,57 @@
+%definekdeappsver  18.12.0
+%defineqtver   5.9.0
+%definekaname  kdenetwork-filesharing
+Summary:   KDENetwork file sharing
+Name:  ka5-%{kaname}
+Version:   18.12.0
+Release:   1
+License:   GPL v2+/LGPL v2.1+
+Group: X11/Libraries
+Source0:   
http://download.kde.org/stable/applications/%{kdeappsver}/src/%{kaname}-%{version}.tar.xz
+# Source0-md5: e112f2173532e578e196dc73e5e614fd
+URL:   http://www.kde.org/
+BuildRequires: Qt5Core-devel >= %{qtver}
+BuildRequires: Qt5Gui-devel >= 5.11.1
+BuildRequires: Qt5Widgets-devel
+BuildRequires: cmake >= 2.8.12
+BuildRequires: gettext-devel
+BuildRequires: kf5-kcoreaddons-devel >= 5.7.0
+BuildRequires: kf5-kdoctools-devel >= 5.7.0
+BuildRequires: kf5-ki18n-devel >= 5.7.0
+BuildRequires: kf5-kio-devel >= 5.7.0
+BuildRequires: kf5-kwidgetsaddons-devel >= 5.7.0
+BuildRequires: qt5-build >= %{qtver}
+BuildRequires: rpmbuild(macros) >= 1.164
+BuildRequires: tar >= 1:1.22
+BuildRequires: xz
+BuildRequires: zlib-devel
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+kcontrol filesharing config module for SMB.
+
+%prep
+%setup -q -n %{kaname}-%{version}
+
+%build
+install -d build
+cd build
+%cmake \
+   -DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+   ..
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+%{__make} -C build install \
+   DESTDIR=$RPM_BUILD_ROOT
+
+%find_lang %{kaname} --all-name --with-kde
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files -f %{kaname}.lang
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_libdir}/qt5/plugins/sambausershareplugin.so
+%{_datadir}/kservices5/sambausershareplugin.desktop


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/ka5-kdenetwork-filesharing.git/commitdiff/986f5069819e00f72b66e2d6b37499ed0b321c84

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/ka5-kdegraphics-mobipocket] - updated to 18.12.0

2018-12-29 Thread witekfl
commit 0154c5e3e95fd7e85fcd55ba20140f4b98f4ef4f
Author: Witold Filipczyk 
Date:   Sat Dec 29 16:58:26 2018 +0100

- updated to 18.12.0

 ka5-kdegraphics-mobipocket.spec | 73 +
 1 file changed, 73 insertions(+)
---
diff --git a/ka5-kdegraphics-mobipocket.spec b/ka5-kdegraphics-mobipocket.spec
new file mode 100644
index 000..c6c8157
--- /dev/null
+++ b/ka5-kdegraphics-mobipocket.spec
@@ -0,0 +1,73 @@
+%definekdeappsver  18.12.0
+%defineqtver   5.9.0
+%definekaname  kdegraphics-mobipocket
+Summary:   KDE graphics mobipocket
+Name:  ka5-%{kaname}
+Version:   18.12.0
+Release:   1
+License:   GPL v2+/LGPL v2.1+
+Group: X11/Libraries
+Source0:   
http://download.kde.org/stable/applications/%{kdeappsver}/src/%{kaname}-%{version}.tar.xz
+# Source0-md5: ad21b72ee1b9622cc3d2cd03b466b8a7
+URL:   http://www.kde.org/
+BuildRequires: Qt5Core-devel >= %{qtver}
+BuildRequires: Qt5Gui-devel
+BuildRequires: cmake >= 2.8.12
+BuildRequires: gettext-tools
+BuildRequires: kf5-kio-devel
+BuildRequires: qt5-build >= %{qtver}
+BuildRequires: rpmbuild(macros) >= 1.164
+BuildRequires: tar >= 1:1.22
+BuildRequires: xz
+BuildRequires: zlib-devel
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+Library to support mobipocket ebooks.
+
+%package devel
+Summary:   Header files for %{kaname} development
+Summary(pl.UTF-8): Pliki nagłówkowe dla programistów używających %{kaname}
+Group: X11/Development/Libraries
+Requires:  %{name} = %{version}-%{release}
+
+%description devel
+Header files for %{kaname} development.
+
+%description devel -l pl.UTF-8
+Pliki nagłówkowe dla programistów używających %{kaname}.
+
+%prep
+%setup -q -n %{kaname}-%{version}
+
+%build
+install -d build
+cd build
+%cmake \
+   -DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+   ..
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+%{__make} -C build install \
+   DESTDIR=$RPM_BUILD_ROOT
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post  -p /sbin/ldconfig
+%postun-p /sbin/ldconfig
+
+%files
+%defattr(644,root,root,755)
+%attr(755,root,root) %ghost %{_libdir}/libqmobipocket.so.2
+%attr(755,root,root) %{_libdir}/libqmobipocket.so.2.0.0
+%attr(755,root,root) %{_libdir}/qt5/plugins/mobithumbnail.so
+%{_datadir}/kservices5/mobithumbnail.desktop
+
+%files devel
+%defattr(644,root,root,755)
+%{_includedir}/qmobipocket
+%{_libdir}/cmake/QMobipocket
+%attr(755,root,root) %{_libdir}/libqmobipocket.so


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/ka5-kdegraphics-mobipocket.git/commitdiff/0154c5e3e95fd7e85fcd55ba20140f4b98f4ef4f

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/ka5-kdegraphics-mobipocket] Created branch master

2018-12-29 Thread witekfl
The branch 'master' was created.

Summary of new commits:

  0154c5e... - updated to 18.12.0
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


DISTFILES: ka5-kdebugsettings: kdebugsettings-18.12.0.tar.xz

2018-12-29 Thread witekfl
Request by: witekfl


Files fetched: 1

STORED: 
http://download.kde.org/stable/applications/18.12.0/src/kdebugsettings-18.12.0.tar.xz
2abf080511aa5911602221a6fbad5bad  kdebugsettings-18.12.0.tar.xz
Size: 55024 bytes


-- 
Virtually Yours: distfiles.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/ka5-kde-dev-utils] - updated to 18.12.0

2018-12-29 Thread witekfl
commit e41acb3c8139ca5a53435c073922e6502a77c955
Author: Witold Filipczyk 
Date:   Sat Dec 29 16:29:43 2018 +0100

- updated to 18.12.0

 ka5-kde-dev-utils.spec | 70 ++
 1 file changed, 70 insertions(+)
---
diff --git a/ka5-kde-dev-utils.spec b/ka5-kde-dev-utils.spec
new file mode 100644
index 000..fdd30a3
--- /dev/null
+++ b/ka5-kde-dev-utils.spec
@@ -0,0 +1,70 @@
+%definekdeappsver  18.12.0
+%defineqtver   5.9.0
+%definekaname  kde-dev-utils
+Summary:   Kde dev utils
+Name:  ka5-%{kaname}
+Version:   18.12.0
+Release:   1
+License:   GPL v2+/LGPL v2.1+
+Group: X11/Libraries
+Source0:   
http://download.kde.org/stable/applications/%{kdeappsver}/src/%{kaname}-%{version}.tar.xz
+# Source0-md5: 5128692254c3d3b7536ce453b78c872b
+URL:   http://www.kde.org/
+BuildRequires: Qt5Core-devel >= %{qtver}
+BuildRequires: cmake >= 2.8.12
+BuildRequires: gettext-devel
+BuildRequires: kf5-extra-cmake-modules >= 5.53.0
+BuildRequires: kf5-kcoreaddons-devel
+BuildRequires: kf5-ki18n-devel
+BuildRequires: kf5-kio-devel
+BuildRequires: kf5-kparts-devel
+BuildRequires: kf5-kwidgetsaddons-devel
+BuildRequires: qt5-build >= %{qtver}
+BuildRequires: rpmbuild(macros) >= 1.164
+BuildRequires: shared-mime-info
+BuildRequires: tar >= 1:1.22
+BuildRequires: xz
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+Small utilities for developers using KDE/Qt libs/frameworks.
+
+%prep
+%setup -q -n %{kaname}-%{version}
+
+%build
+install -d build
+cd build
+%cmake \
+   -DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+   ..
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+%{__make} -C build install \
+   DESTDIR=$RPM_BUILD_ROOT
+
+%find_lang %{kaname} --all-name --with-kde
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files -f %{kaname}.lang
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_bindir}/kpartloader
+%attr(755,root,root) %{_bindir}/kuiviewer
+%attr(755,root,root) %{_libdir}/qt5/plugins/kuiviewerpart.so
+%attr(755,root,root) %{_libdir}/qt5/plugins/quithumbnail.so
+%{_desktopdir}/org.kde.kuiviewer.desktop
+%{_iconsdir}/hicolor/128x128/apps/kuiviewer.png
+%{_iconsdir}/hicolor/16x16/apps/kuiviewer.png
+%{_iconsdir}/hicolor/32x32/apps/kuiviewer.png
+%{_iconsdir}/hicolor/48x48/apps/kuiviewer.png
+%{_iconsdir}/hicolor/64x64/apps/kuiviewer.png
+%{_iconsdir}/hicolor/scalable/apps/kuiviewer.svg
+%{_datadir}/kservices5/designerthumbnail.desktop
+%{_datadir}/kservices5/kuiviewer_part.desktop
+%{_datadir}/kxmlgui5/kpartloader
+%{_datadir}/kxmlgui5/kuiviewer
+%{_datadir}/kxmlgui5/kuiviewerpart


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/ka5-kde-dev-utils.git/commitdiff/e41acb3c8139ca5a53435c073922e6502a77c955

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/ka5-kdebugsettings] Created branch master

2018-12-29 Thread witekfl
The branch 'master' was created.

Summary of new commits:

  493e3c1... - updated to 18.12.0
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/ka5-kdebugsettings] - updated to 18.12.0

2018-12-29 Thread witekfl
commit 493e3c13bdabbb20c9179796f0f3656641817e26
Author: Witold Filipczyk 
Date:   Sat Dec 29 16:49:14 2018 +0100

- updated to 18.12.0

 ka5-kdebugsettings.spec | 63 +
 1 file changed, 63 insertions(+)
---
diff --git a/ka5-kdebugsettings.spec b/ka5-kdebugsettings.spec
new file mode 100644
index 000..8078253
--- /dev/null
+++ b/ka5-kdebugsettings.spec
@@ -0,0 +1,63 @@
+%definekdeappsver  18.12.0
+%defineqtver   5.9.0
+%definekaname  kdebugsettings
+Summary:   Kdebugettings
+Name:  ka5-%{kaname}
+Version:   18.12.0
+Release:   1
+License:   GPL v2+/LGPL v2.1+
+Group: X11/Libraries
+Source0:   
http://download.kde.org/stable/applications/%{kdeappsver}/src/%{kaname}-%{version}.tar.xz
+# Source0-md5: 2abf080511aa5911602221a6fbad5bad
+URL:   http://www.kde.org/
+BuildRequires: Qt5Core-devel >= %{qtver}
+BuildRequires: Qt5Gui-devel >= 5.11.1
+BuildRequires: Qt5Test-devel
+BuildRequires: Qt5Widgets-devel
+BuildRequires: cmake >= 2.8.12
+BuildRequires: gettext-devel
+BuildRequires: kf5-extra-cmake-modules >= 5.53.0
+BuildRequires: kf5-kcompletion-devel >= 5.46.0
+BuildRequires: kf5-kconfig-devel >= 5.46.0
+BuildRequires: kf5-kcoreaddons-devel >= 5.46.0
+BuildRequires: kf5-kdbusaddons-devel >= 5.46.0
+BuildRequires: kf5-ki18n-devel >= 5.46.0
+BuildRequires: kf5-kitemviews-devel >= 5.46.0
+BuildRequires: kf5-kwidgetsaddons-devel >= 5.46.0
+BuildRequires: qt5-build >= %{qtver}
+BuildRequires: rpmbuild(macros) >= 1.164
+BuildRequires: shared-mime-info
+BuildRequires: tar >= 1:1.22
+BuildRequires: xz
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+An application to enable/disable qCDebug.
+
+%prep
+%setup -q -n %{kaname}-%{version}
+
+%build
+install -d build
+cd build
+%cmake \
+   -DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+   ..
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+%{__make} -C build install \
+   DESTDIR=$RPM_BUILD_ROOT
+
+%find_lang %{kaname} --all-name --with-kde
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files -f %{kaname}.lang
+%defattr(644,root,root,755)
+/etc/xdg/kde.categories
+/etc/xdg/kde.renamecategories
+%attr(755,root,root) %{_bindir}/kdebugsettings
+%{_desktopdir}/org.kde.kdebugsettings.desktop


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/ka5-kdebugsettings.git/commitdiff/493e3c13bdabbb20c9179796f0f3656641817e26

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


DISTFILES: ka5-kde-dev-utils: kde-dev-utils-18.12.0.tar.xz

2018-12-29 Thread witekfl
Request by: witekfl


Files fetched: 1

STORED: 
http://download.kde.org/stable/applications/18.12.0/src/kde-dev-utils-18.12.0.tar.xz
5128692254c3d3b7536ce453b78c872b  kde-dev-utils-18.12.0.tar.xz
Size: 61100 bytes


-- 
Virtually Yours: distfiles.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/ka5-kde-dev-utils] Created branch master

2018-12-29 Thread witekfl
The branch 'master' was created.

Summary of new commits:

  e41acb3... - updated to 18.12.0
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


DISTFILES: ka5-kde-dev-scripts: kde-dev-scripts-18.12.0.tar.xz

2018-12-29 Thread witekfl
Request by: witekfl


Files fetched: 1

STORED: 
http://download.kde.org/stable/applications/18.12.0/src/kde-dev-scripts-18.12.0.tar.xz
298015db189e51ca4acaa3cf613fbf65  kde-dev-scripts-18.12.0.tar.xz
Size: 378220 bytes


-- 
Virtually Yours: distfiles.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


DISTFILES: ka5-kdav: kdav-18.12.0.tar.xz

2018-12-29 Thread witekfl
Request by: witekfl


Files fetched: 1

STORED: 
http://download.kde.org/stable/applications/18.12.0/src/kdav-18.12.0.tar.xz
4f47b76dd647a9f0cb2cd565b68b9504  kdav-18.12.0.tar.xz
Size: 49564 bytes


-- 
Virtually Yours: distfiles.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/ka5-kde-dev-scripts] - updated to 18.12.0

2018-12-29 Thread witekfl
commit 1f412cd2a3d14497cae490e2ecbbdd20126cf3ed
Author: Witold Filipczyk 
Date:   Sat Dec 29 16:19:13 2018 +0100

- updated to 18.12.0

 ka5-kde-dev-scripts.spec | 342 +++
 1 file changed, 342 insertions(+)
---
diff --git a/ka5-kde-dev-scripts.spec b/ka5-kde-dev-scripts.spec
new file mode 100644
index 000..e5eb9e7
--- /dev/null
+++ b/ka5-kde-dev-scripts.spec
@@ -0,0 +1,342 @@
+%definekdeappsver  18.12.0
+%defineqtver   5.9.0
+%definekaname  kde-dev-scripts
+Summary:   Kde dev scripts
+Name:  ka5-%{kaname}
+Version:   18.12.0
+Release:   1
+License:   GPL v2+/LGPL v2.1+
+Group: X11/Libraries
+Source0:   
http://download.kde.org/stable/applications/%{kdeappsver}/src/%{kaname}-%{version}.tar.xz
+# Source0-md5: 298015db189e51ca4acaa3cf613fbf65
+URL:   http://www.kde.org/
+BuildRequires: Qt5Core-devel >= %{qtver}
+BuildRequires: cmake >= 2.8.12
+BuildRequires: gettext-devel
+BuildRequires: kf5-extra-cmake-modules >= 5.53.0
+BuildRequires: qt5-build >= %{qtver}
+BuildRequires: rpmbuild(macros) >= 1.164
+BuildRequires: shared-mime-info
+BuildRequires: tar >= 1:1.22
+BuildRequires: xz
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+Scripts and setting files useful during development of KDE software.
+
+%prep
+%setup -q -n %{kaname}-%{version}
+
+%build
+install -d build
+cd build
+%cmake \
+   -DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+   ..
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+%{__make} -C build install \
+   DESTDIR=$RPM_BUILD_ROOT
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_bindir}/adddebug
+%attr(755,root,root) %{_bindir}/build-progress.sh
+%attr(755,root,root) %{_bindir}/cheatmake
+%attr(755,root,root) %{_bindir}/c++-rename-class-and-file
+%attr(755,root,root) %{_bindir}/c++-copy-class-and-file
+%attr(755,root,root) %{_bindir}/create_cvsignore
+%attr(755,root,root) %{_bindir}/create_makefiles
+%attr(755,root,root) %{_bindir}/create_svnignore
+%attr(755,root,root) %{_bindir}/cvsaddcurrentdir
+%attr(755,root,root) %{_bindir}/cvsbackport
+%attr(755,root,root) %{_bindir}/cvsforwardport
+%attr(755,root,root) %{_bindir}/cvslastlog
+%attr(755,root,root) %{_bindir}/cvsrevertlast
+%attr(755,root,root) %{_bindir}/cvsversion
+%attr(755,root,root) %{_bindir}/findmissingcrystal
+%attr(755,root,root) %{_bindir}/fix-include.sh
+%attr(755,root,root) %{_bindir}/kdedoc
+%attr(755,root,root) %{_bindir}/krazy-licensecheck
+%attr(755,root,root) %{_bindir}/optimizegraphics
+%attr(755,root,root) %{_bindir}/nonsvnlist
+%attr(755,root,root) %{_bindir}/pruneemptydirs
+%attr(755,root,root) %{_bindir}/qtdoc
+%attr(755,root,root) %{_bindir}/svnbackport
+%attr(755,root,root) %{_bindir}/svnforwardport
+%attr(755,root,root) %{_bindir}/svnchangesince
+%attr(755,root,root) %{_bindir}/svngettags
+%attr(755,root,root) %{_bindir}/svnlastlog
+%attr(755,root,root) %{_bindir}/svnrevertlast
+%attr(755,root,root) %{_bindir}/uncrustify-kf5
+%attr(755,root,root) %{_bindir}/wcgrep
+%attr(755,root,root) %{_bindir}/draw_lib_dependencies
+%dir %{_datadir}/uncrustify
+%{_datadir}/uncrustify/uncrustify-kf5.cfg
+%{_datadir}/uncrustify/uncrustify-qt.cfg
+%attr(755,root,root) %{_bindir}/create_makefile
+%attr(755,root,root) %{_bindir}/makeobj
+%attr(755,root,root) %{_bindir}/cvscheck
+%attr(755,root,root) %{_bindir}/cvslastchange
+%attr(755,root,root) %{_bindir}/noncvslist
+%attr(755,root,root) %{_bindir}/cvs-clean
+%attr(755,root,root) %{_bindir}/cvsblame
+%attr(755,root,root) %{_bindir}/colorsvn
+%attr(755,root,root) %{_bindir}/svn-clean
+%attr(755,root,root) %{_bindir}/svnlastchange
+%attr(755,root,root) %{_bindir}/svnversions
+%attr(755,root,root) %{_bindir}/extractrc
+%attr(755,root,root) %{_bindir}/extractattr
+%attr(755,root,root) %{_bindir}/zonetab2pot.py
+%attr(755,root,root) %{_bindir}/fixkdeincludes
+%attr(755,root,root) %{_bindir}/fixuifiles
+%attr(755,root,root) %{_bindir}/includemocs
+%attr(755,root,root) %{_bindir}/cxxmetric
+%attr(755,root,root) %{_bindir}/extend_dmalloc
+%attr(755,root,root) %{_bindir}/kdekillall
+%attr(755,root,root) %{_bindir}/kdelnk2desktop.py
+%attr(755,root,root) %{_bindir}/package_crystalsvg
+%attr(755,root,root) %{_bindir}/png2mng.pl
+%attr(755,root,root) %{_bindir}/kdemangen.pl
+%attr(755,root,root) %{_bindir}/svnintegrate
+%attr(755,root,root) %{_bindir}/kde_generate_export_header
+%attr(755,root,root) %{_bindir}/kde-systemsettings-tree.py
+%attr(755,root,root) %{_bindir}/reviewboard-am
+%attr(755,root,root) %{_bindir}/grantlee_strings_extractor.py
+%lang(ca) %{_mandir}/ca/man1/adddebug.1*
+%lang(ca) %{_mandir}/ca/man1/cheatmake.1*
+%lang(ca) %{_mandir}/ca/man1/create_cvsignore.1*
+%lang(ca) %{_mandir}/ca/man1/create_makefile.1*
+%lang(ca) %{_mandir}/ca/man1/create_makefiles.1*
+%lang(ca) %{_mandir}/ca/man1/cvscheck.1*
+%lang(ca) 

[packages/ka5-kde-dev-scripts] Created branch master

2018-12-29 Thread witekfl
The branch 'master' was created.

Summary of new commits:

  1f412cd... - updated to 18.12.0
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/ka5-kdav] Created branch master

2018-12-29 Thread witekfl
The branch 'master' was created.

Summary of new commits:

  493e06f... - updated to 18.12.0
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/ka5-kdav] - updated to 18.12.0

2018-12-29 Thread witekfl
commit 493e06f6d7dd1cebd8cfae7c3e4208c033a89741
Author: Witold Filipczyk 
Date:   Sat Dec 29 15:59:27 2018 +0100

- updated to 18.12.0

 ka5-kdav.spec | 84 +++
 1 file changed, 84 insertions(+)
---
diff --git a/ka5-kdav.spec b/ka5-kdav.spec
new file mode 100644
index 000..c533f86
--- /dev/null
+++ b/ka5-kdav.spec
@@ -0,0 +1,84 @@
+%definekdeappsver  18.12.0
+%defineqtver   5.9.0
+%definekaname  kdav
+Summary:   Kdav
+Name:  ka5-%{kaname}
+Version:   18.12.0
+Release:   1
+License:   GPL v2+/LGPL v2.1+
+Group: X11/Libraries
+Source0:   
http://download.kde.org/stable/applications/%{kdeappsver}/src/%{kaname}-%{version}.tar.xz
+# Source0-md5: 4f47b76dd647a9f0cb2cd565b68b9504
+URL:   http://www.kde.org/
+BuildRequires: Qt5Core-devel >= %{qtver}
+BuildRequires: Qt5Gui-devel
+BuildRequires: Qt5Network-devel >= 5.11.1
+BuildRequires: Qt5Test-devel
+BuildRequires: Qt5XmlPatterns-devel
+BuildRequires: cmake >= 2.8.12
+BuildRequires: gettext-devel
+BuildRequires: kf5-extra-cmake-modules >= 5.53.0
+BuildRequires: kf5-kcoreaddons-devel >= 5.51.0
+BuildRequires: kf5-ki18n-devel >= 5.51.0
+BuildRequires: kf5-kio-devel >= 5.51.0
+BuildRequires: qt5-build >= %{qtver}
+BuildRequires: rpmbuild(macros) >= 1.164
+BuildRequires: shared-mime-info
+BuildRequires: tar >= 1:1.22
+BuildRequires: xz
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+A DAV protocoll implemention with KJobs.
+
+%package devel
+Summary:   Header files for %{kaname} development
+Summary(pl.UTF-8): Pliki nagłówkowe dla programistów używających %{kaname}
+Group: X11/Development/Libraries
+Requires:  %{name} = %{version}-%{release}
+
+%description devel
+Header files for %{kaname} development.
+
+%description devel -l pl.UTF-8
+Pliki nagłówkowe dla programistów używających %{kaname}.
+
+
+%prep
+%setup -q -n %{kaname}-%{version}
+
+%build
+install -d build
+cd build
+%cmake \
+   -DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+   ..
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+%{__make} -C build install \
+   DESTDIR=$RPM_BUILD_ROOT
+
+%find_lang %{kaname} --all-name --with-kde
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post  -p /sbin/ldconfig
+%postun-p /sbin/ldconfig
+
+%files -f %{kaname}.lang
+%defattr(644,root,root,755)
+/etc/xdg/kdav.categories
+%attr(755,root,root) %ghost %{_libdir}/libKPimKDAV.so.5
+%attr(755,root,root) %{_libdir}/libKPimKDAV.so.5.*.*
+
+%files devel
+%defattr(644,root,root,755)
+%{_includedir}/KPim/KDAV
+%{_includedir}/KPim/kdav
+%{_includedir}/KPim/kpimkdav_version.h
+%{_libdir}/cmake/KPimKDAV
+%attr(755,root,root) %{_libdir}/libKPimKDAV.so
+%{_libdir}/qt5/mkspecs/modules/qt_kdav.pri


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/ka5-kdav.git/commitdiff/493e06f6d7dd1cebd8cfae7c3e4208c033a89741

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/curl] - release 2 (by relup.sh)

2018-12-29 Thread baggins
commit 465439f9ee37fa1533c4004f07ad9389eef08fc0
Author: Jan Rękorajski 
Date:   Sat Dec 29 20:58:16 2018 +0900

- release 2 (by relup.sh)

 curl.spec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/curl.spec b/curl.spec
index a552fb5..5bfed3a 100644
--- a/curl.spec
+++ b/curl.spec
@@ -23,7 +23,7 @@ Summary(ru.UTF-8):Утилита для получения файлов с се
 Summary(uk.UTF-8): Утиліта для отримання файлів з серверів FTP, HTTP та 
інших
 Name:  curl
 Version:   7.63.0
-Release:   1
+Release:   2
 License:   MIT-like
 Group: Applications/Networking
 Source0:   https://curl.haxx.se/download/%{name}-%{version}.tar.xz


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/curl.git/commitdiff/465439f9ee37fa1533c4004f07ad9389eef08fc0

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/kernel/LINUX_4_19] - keep as separate line (it's 'stable')

2018-12-29 Thread arekm
commit 4414a549037f8325ab76408fc30f16affbde1f82
Author: Arkadiusz Miśkiewicz 
Date:   Sat Dec 29 12:02:47 2018 +0100

- keep as separate line (it's 'stable')

 kernel.spec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/kernel.spec b/kernel.spec
index 021b7d7f..90171bac 100644
--- a/kernel.spec
+++ b/kernel.spec
@@ -72,7 +72,7 @@
 %definepostver .12
 
 # define this to '-%{basever}' for longterm branch
-%defineversuffix   %{nil}
+%defineversuffix   -%{basever}
 
 # __alt_kernel is list of features, empty string if none set
 # _alt kernel is defined as: %{nil}%{?alt_kernel:-%{?alt_kernel}} (defined in 
rpm.macros)


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kernel.git/commitdiff/4414a549037f8325ab76408fc30f16affbde1f82

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


DISTFILES: strace: strace-4.26.tar.xz

2018-12-29 Thread arekm
Request by: arekm


Files fetched: 1

STORED: 
https://github.com/strace/strace/releases/download/v4.26/strace-4.26.tar.xz
daa51acc0c7c696221ec03cf0b30a7af  strace-4.26.tar.xz
Size: 1444216 bytes


-- 
Virtually Yours: distfiles.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/strace] - up to 4.26

2018-12-29 Thread arekm
commit 6867b52d33839851dbe7deba5da2ea5de3ee0138
Author: Arkadiusz Miśkiewicz 
Date:   Sat Dec 29 12:01:19 2018 +0100

- up to 4.26

 strace.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/strace.spec b/strace.spec
index 6ecffbd..19f14a4 100644
--- a/strace.spec
+++ b/strace.spec
@@ -16,12 +16,12 @@ Summary(ru.UTF-8):  Отслеживает и показывает системн
 Summary(tr.UTF-8): Çalışan bir sürecin yaptığı sistem çağrılarını listeler
 Summary(uk.UTF-8): Відслідковує та показує системні виклики, пов'язані із 
запущеним процесом
 Name:  strace
-Version:   4.25
+Version:   4.26
 Release:   1
-License:   BSD-like
+License:   LGPL v2.1+
 Group: Development/Debuggers
 Source0:   
https://github.com/strace/strace/releases/download/v%{version}/%{name}-%{version}.tar.xz
-# Source0-md5: fa5ac841e9ce6af133061822898d49a9
+# Source0-md5: daa51acc0c7c696221ec03cf0b30a7af
 Source1:   %{name}.1.pl
 URL:   https://strace.io/
 # acl and libaio for headers only


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/strace.git/commitdiff/6867b52d33839851dbe7deba5da2ea5de3ee0138

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


PLD-doc: PLD-update-TODO - updated

2018-12-29 Thread arekm
Author: arekmDate: Sat Dec 29 09:40:55 2018 GMT
Module: PLD-doc   Tag: HEAD
 Log message:
- updated

 Files affected:
PLD-doc:
   PLD-update-TODO (1.2313 -> 1.2314) 

 Diffs:


Index: PLD-doc/PLD-update-TODO
diff -u PLD-doc/PLD-update-TODO:1.2313 PLD-doc/PLD-update-TODO:1.2314
--- PLD-doc/PLD-update-TODO:1.2313  Wed Dec 26 16:18:20 2018
+++ PLD-doc/PLD-update-TODO Sat Dec 29 10:40:49 2018
@@ -1,4 +1,4 @@
-0ad(14) [OLD] r10803 [NEW] r09786
+0ad(14) [OLD] r10803 [NEW] r09049
 3store(12) [OLD] 2.2.22 [NEW] 3.0.7
 4pane(8) [OLD] 0.8.0 [NEW] 5.0
 AppStream(15) [OLD] 0.12.3 [NEW] 0.12.4
@@ -6,8 +6,6 @@
 CGAL [OLD] 4.7 [NEW] 4.13
 CImg(8) [OLD] 1.7.9 [NEW] 2.4.3
 CodeIgniter [OLD] 2.2.2 [NEW] 3.1.9
-CoinOsi(15) [OLD] 0.106.10 [NEW] 0.107.9
-CoinUtils(13) [OLD] 2.9.17 [NEW] 2.10.14
 Collage [OLD] 1.6.0 [NEW] 1.7.0
 ConsoleKit2(7) [OLD] 1.0.2 [NEW] 1.2.1
 ElectricFence(26) [OLD] 2.2.4 [NEW] 2.2.5
@@ -43,6 +41,7 @@
 Smarty-plugin-gettext [OLD] 1.4.0 [NEW] 13)
 SysVinit(19) [OLD] 2.90 [NEW] 2.93
 SystemPreferences(7) [OLD] 1.0.2 [NEW] 1.2.0
+TeXmacs(8) [OLD] 1.0.7 [NEW] 1.0.7.18
 Thunar(13) [OLD] 1.8.0 [NEW] 1.8.2
 Thunar-volman(9) [OLD] 0.9.0 [NEW] 0.9.1
 WebGUI(9) [OLD] 7.3.20 [NEW] 7.10.31
@@ -138,6 +137,8 @@
 atanks(9) [OLD] 5.2 [NEW] 6.5
 atlas(13) [OLD] 3.7.10 [NEW] 3.11.41
 aubio(13) [OLD] 0.4.3 [NEW] 0.4.8
+audacious(14) [OLD] 3.10 [NEW] 3.10.1
+audacious-plugins(16) [OLD] 3.10 [NEW] 3.10.1
 augeas(8) [OLD] 1.10.1 [NEW] 1.11.0
 autoconf-archive(8) [OLD] 2017.09.28 [NEW] 2018.03.13
 autoconf2_13(17) [OLD] 2.13 [NEW] 2.69
@@ -176,7 +177,7 @@
 bitlbee(15) [OLD] 3.2 [NEW] 3.5.1
 blitz(8) [OLD] 0.9 [NEW] 0.10
 bluefish(10) [OLD] 2.2.2 [NEW] 2.2.10
-blueman [OLD] 2.0.5 [NEW] 2.0.7
+blueman [OLD] 2.0.5 [NEW] 2.1.alpha3
 bluemindo(10) [OLD] 0.3 [NEW] 1.0rc1
 bmon [OLD] 3.6 [NEW] 4.0
 bochs(14) [OLD] 2.3 [NEW] 2.6.9
@@ -449,9 +450,10 @@
 efax-gtk(8) [OLD] 3.0.10 [NEW] 3.2.13
 efivar(14) [OLD] 36 [NEW] 37
 efl(37) [OLD] 1.10.3 [NEW] 1.21.1
-eggdrop(12) [OLD] 1.8.3 [NEW] 1.8.4rc3
+eggdrop(12) [OLD] 1.8.3 [NEW] 1.8.4
 egl-wayland [OLD] 1.0.3 [NEW] 1.1.1
 eiciel(8) [OLD] 0.9.8.1 [NEW] 0.9.12.1
+ejabberd(16) [OLD] 18.12 [NEW] 18.12.1
 electron(11) [OLD] 1.4.3 [NEW] 4.0.0
 elektra(34) [OLD] 0.8.23 [NEW] 0.8.25
 elementary(24) [OLD] 1.10.3 [NEW] 1.17.1
@@ -532,7 +534,7 @@
 fonts-TTF-Google-croscore(8) [OLD] 1.23.0 [NEW] 1.31.0
 fonts-thai-scalable(12) [OLD] 0.6.5 [NEW] 0.7.1
 fonttools [OLD] 3.24.1 [NEW] 3.34.2
-foomatic-db(11) [OLD] 20110615 [NEW] 20181225
+foomatic-db(11) [OLD] 20110615 [NEW] 20181228
 foomatic-db-engine(10) [OLD] 4.0.9 [NEW] 4.0.13
 four-in-a-row(8) [OLD] 3.22.1 [NEW] 3.22.2
 free-sa(9) [OLD] 1.6.2 [NEW] 2.0.0b6p7
@@ -583,7 +585,6 @@
 geeqie(19) [OLD] 1.3 [NEW] 1.4
 gentoo(8) [OLD] 0.15.5 [NEW] 0.20.7
 geoclue(12) [OLD] 0.12.99 [NEW] 1.99.0
-geos(12) [OLD] 3.6.2 [NEW] 3.7.1
 getdp(11) [OLD] 1.2.1 [NEW] 3.0.4
 getty_ps(11) [OLD] 2.0.7j [NEW] 2.1.0b
 gexiv2(13) [OLD] 0.10.7 [NEW] 0.10.9
@@ -635,13 +636,13 @@
 gl-117(9) [OLD] 1.3.2 [NEW] 1.2-src
 glabels(8) [OLD] 3.4.0 [NEW] 3.4.1
 glade3(14) [OLD] 3.8.5 [NEW] 3.8.6
-glew(8) [OLD] 1.13.0 [NEW] 20181010
+glew(8) [OLD] 2.1.0 [NEW] 20181010
 glew1(12) [OLD] 1.13.0 [NEW] 20181010
 glfw2(11) [OLD] 2.7.9 [NEW] 3.2.1
 glib-openssl(8) [OLD] 2.50.3 [NEW] 2.50.8
 global(21) [OLD] 6.3.4 [NEW] 6.6.3
 globulation2(10) [OLD] 0.9.1 [NEW] 0.9.4.1
-gloox(8) [OLD] 1.0 [NEW] 1.0.21
+gloox(8) [OLD] 1.0 [NEW] 1.0.x
 glparchis(8) [OLD] 20061101 [NEW] 20181020
 glpi [OLD] 9.3.0 [NEW] 9.4.0
 glpk(8) [OLD] 4.64 [NEW] 4.65
@@ -698,13 +699,14 @@
 gnomint(8) [OLD] 1.0.0 [NEW] 1.3.0
 gnote(8) [OLD] 3.24.0 [NEW] 3.24.1
 gnotime(12) [OLD] 2.3.0 [NEW] 2.4.1
+gnuastro(12) [OLD] 0.7 [NEW] 0.8
 gnubiff(12) [OLD] 2.2.13 [NEW] 2.2.17
 gnubik(8) [OLD] 2.4 [NEW] 2.4.3
 gnucash/gnucash.spec:28: impossible substitution: 
https://sourceforge.net/projects/gnucash/files/gnucash\ 
%28stable%29/2.6.21/gnucash-2.6.21.tar.bz2
 gnuitar(8) [OLD] 0.3.1 [NEW] 0.3.2
 gnumeric(26) [OLD] 1.12.2 [NEW] 1.12.44
 gnupg(19) [OLD] 1.4.23 [NEW] 2.2.12
-gnuplot(24) [OLD] 4.6.6 [NEW] 5.2.5a
+gnuplot(24) [OLD] 4.6.6 [NEW] 5.2.6a
 gnuradio(12) [OLD] 3.7.9.2 [NEW] 3.7.13.4
 gnurobbo(8) [OLD] 0.66 [NEW] 0.68
 gnusound(8) [OLD] 0.7.1 [NEW] 0.7.5
@@ -717,7 +719,7 @@
 gnustep-make-libFoundation(19) [OLD] 1.11.0 [NEW] 2.7.0
 go-md2man [OLD] 1.0.5 [NEW] 1.0.8
 gofish(8) [OLD] 0.22 [NEW] 1.2
-golang-github-shurcooL-sanitized_anchor_name [OLD] 0 [NEW] Release
+golang-github-shurcooL-sanitized_anchor_name [OLD] 0 [NEW] v1.0.0
 goobox(8) [OLD] 3.4.2 [NEW] 3.4.3
 goocanvas2(8) [OLD] 2.0.2 [NEW] 2.0.4
 goptical(13) [OLD] 0.90 [NEW] 0.92
@@ -739,7 +741,6 @@
 grantlee(13) [OLD] 0.5.1 [NEW] 5.1.0
 grap(8) [OLD] 1.43 [NEW] 1.45
 graphite-web [OLD] 0.9.15 [NEW] 1.1.5
-graphite2(8) [OLD] 1.3.12 [NEW] 1.3.13
 grass(17) [OLD] 7.4.0 [NEW] 7.4.3
 graylog-collector-sidecar(10) [OLD] 0.1.4 [NEW] 1.0.0
 grcm(8) [OLD]