[packages/enchant2] - updated to 2.2.8 - build nuspell provider - added link patch (when linking with libaspell and libh

2020-03-02 Thread qboosh
commit 49d9329f22da5487cda933659cc1e9a7b3ab4fe1
Author: Jakub Bogusz 
Date:   Mon Mar 2 15:44:22 2020 +0100

- updated to 2.2.8
- build nuspell provider
- added link patch (when linking with libaspell and libhspell, link only 
particular provider module, not everything; inspired by Fedora)
- drop outdated -fpermissive

 enchant2-link.patch | 36 
 enchant2.spec   | 37 -
 2 files changed, 64 insertions(+), 9 deletions(-)
---
diff --git a/enchant2.spec b/enchant2.spec
index 7e3f7f9..8be3263 100644
--- a/enchant2.spec
+++ b/enchant2.spec
@@ -5,22 +5,25 @@
 Summary:   libenchant - generic spell checking library
 Summary(pl.UTF-8): libenchant - ogólna biblioteka sprawdzania pisowni
 Name:  enchant2
-Version:   2.2.7
+Version:   2.2.8
 Release:   1
 License:   LGPL v2+
 Group: Libraries
 Source0:   
https://github.com/AbiWord/enchant/releases/download/v%{version}/enchant-%{version}.tar.gz
-# Source0-md5: 8a6ea1bb143c64e0edf5e49c7e7cb984
+# Source0-md5: c7b9d6a392ecb8758e499f783e8dc883
+Patch0:%{name}-link.patch
 URL:   https://github.com/AbiWord/enchant
 BuildRequires: aspell-devel >= 2:0.50.0
-BuildRequires: autoconf
+BuildRequires: autoconf >= 2.50
 BuildRequires: automake
 BuildRequires: dbus-glib-devel >= 0.62
 BuildRequires: glib2-devel >= 1:2.12.0
 BuildRequires: hspell-devel >= 0.9-3
 BuildRequires: hunspell-devel
-BuildRequires: libtool
+BuildRequires: libstdc++-devel >= 6:4.7
+BuildRequires: libtool >= 2:2
 BuildRequires: libvoikko-devel
+BuildRequires: nuspell-devel
 BuildRequires: pkgconfig
 Requires:  glib2 >= 1:2.12.0
 Suggests:  %{name}-backend
@@ -133,6 +136,19 @@ hunspell provider module for Enchant.
 %description hunspell -l pl.UTF-8
 Moduł obsługujący hunspella dla Enchanta.
 
+%package nuspell
+Summary:   nuspell provider module for Enchant
+Summary(pl.UTF-8): Moduł obsługujący nuspella dla Enchanta
+Group: Libraries
+Requires:  %{name} = %{version}-%{release}
+Provides:  %{name}-backend
+
+%description nuspell
+nuspell provider module for Enchant.
+
+%description nuspell -l pl.UTF-8
+Moduł obsługujący nuspella dla Enchanta.
+
 %package voikko
 Summary:   Voikko provider module for Enchant
 Summary(pl.UTF-8): Moduł obsługujący backend voikko dla Enchanta
@@ -162,22 +178,21 @@ Moduł obsługujący backend zemberek (turecki) dla Enchanta.
 
 %prep
 %setup -q -n enchant-%{version}
+%patch0 -p1
 
 %build
 %{__libtoolize}
 %{__aclocal} -I m4
 %{__autoconf}
 %{__automake}
-export CFLAGS="%{rpmcflags} -fpermissive"
-export CXXFLAGS="%{rpmcxxflags} -fpermissive"
 %configure \
-   --enable-relocatable \
%{!?with_static_libs:--disable-static} \
--with-aspell \
--with-hspell \
-   --with-zemberek \
--with-hunspell \
-   --with-hunspell-dir=/usr/share/myspell
+   --with-hunspell-dir=/usr/share/myspell \
+   --with-nuspell \
+   --with-zemberek
 
 %{__make} \
pkgdatadir=%{_datadir}/enchant-2
@@ -236,6 +251,10 @@ rm -rf $RPM_BUILD_ROOT
 %defattr(644,root,root,755)
 %attr(755,root,root) %{_libdir}/enchant-2/enchant_hunspell.so
 
+%files nuspell
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_libdir}/enchant-2/enchant_nuspell.so
+
 %files voikko
 %defattr(644,root,root,755)
 %attr(755,root,root) %{_libdir}/enchant-2/enchant_voikko.so
diff --git a/enchant2-link.patch b/enchant2-link.patch
new file mode 100644
index 000..630510a
--- /dev/null
+++ b/enchant2-link.patch
@@ -0,0 +1,36 @@
+--- enchant-2.2.8/configure.ac.orig2020-02-27 16:32:32.0 +0100
 enchant-2.2.8/configure.ac 2020-03-01 21:32:41.372171295 +0100
+@@ -189,7 +189,7 @@
+   [_enchant_header=m4_default([$6], [$1[].h])
+   AC_CHECK_HEADERS([$_enchant_header], [_header_found=yes], 
[_header_found=no], [])
+   if test "$3" != NOLIB; then
+- AC_CHECK_LIB([$1], [$3],,, [$5])
++ AC_CHECK_LIB([$1], [$3],[:],, [$5])
+   else
+  ac_cv_lib_[]$1[]_[]$3=yes
+   fi
+@@ -201,7 +201,10 @@
+   else
+  with_[]$1=yes
+  build_providers="$build_providers $1"
+- LIBS="$LIBS $5"
++ if test "$3" != NOLIB; then
++ $2[]_LIBS="-l$1 $5"
++ fi
++ AC_SUBST($2[]_LIBS)
+   fi])
+AM_CONDITIONAL(WITH_[]$2, test "x$with_[]$1" = xyes)])
+ 
+--- enchant-2.2.8/providers/Makefile.am.orig   2020-02-27 14:05:18.0 
+0100
 enchant-2.2.8/providers/Makefile.am2020-03-01 21:34:09.391694452 
+0100
+@@ -20,6 +20,10 @@
+ if WITH_HUNSPELL
+ provider_LTLIBRARIES += enchant_hunspell.la
+ endif
++enchant_aspell_la_LIBADD = $(ASPELL_LIBS)
++
++enchant_hspell_la_LIBADD = $(HSPELL_LIBS)
++
+ enchant_hunspell_la_CXXFLAGS = $(AM_CXXFLAGS) $(HUNSPELL_CFLAGS)
+ enchant_hunspell_la_LIBADD = $(HUNSPELL_LIBS)
+ enchant_hunspell_la_SOURCES = enchant_hunspell.cpp

DISTFILES: enchant2: enchant-2.2.8.tar.gz

2020-03-02 Thread qboosh
Request by: qboosh


Files fetched: 1

STORED: 
https://github.com/AbiWord/enchant/releases/download/v2.2.8/enchant-2.2.8.tar.gz
c7b9d6a392ecb8758e499f783e8dc883  enchant-2.2.8.tar.gz
Size: 976715 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/at-spi2-atk] - updated to 2.34.2 - -static is built by default again

2020-03-02 Thread qboosh
commit de7a452ec30e9bcdda5b98ecc216289c791a0b79
Author: Jakub Bogusz 
Date:   Mon Mar 2 16:05:57 2020 +0100

- updated to 2.34.2
- -static is built by default again

 at-spi2-atk.spec | 13 +
 1 file changed, 5 insertions(+), 8 deletions(-)
---
diff --git a/at-spi2-atk.spec b/at-spi2-atk.spec
index 47fe390..7c811fd 100644
--- a/at-spi2-atk.spec
+++ b/at-spi2-atk.spec
@@ -1,16 +1,16 @@
 #
 # Conditional build:
-%bcond_withstatic_libs # static library
+%bcond_without static_libs # static library
 #
 Summary:   A GTK+ module that bridges ATK to D-Bus at-spi
 Summary(pl.UTF-8): Moduł GTK+ łączący ATK z at-spi jako usługą D-Bus
 Name:  at-spi2-atk
-Version:   2.34.1
+Version:   2.34.2
 Release:   1
 License:   LGPL v2.1+
 Group: Libraries
 Source0:   
http://ftp.gnome.org/pub/GNOME/sources/at-spi2-atk/2.34/%{name}-%{version}.tar.xz
-# Source0-md5: e0f99641c5a403041c4214be04722e15
+# Source0-md5: 58cd278574e101363b18d9a8b7053d67
 URL:   https://wiki.linuxfoundation.org/accessibility/d-bus
 BuildRequires: at-spi2-core-devel >= 2.34.0
 BuildRequires: atk-devel >= 1:2.34.0
@@ -85,12 +85,9 @@ Biblioteka statyczna atk-bridge.
 %prep
 %setup -q
 
-%if %{with static_lib}
-%{__sed} -i -e 's/shared_library/library/' atk-adaptor/meson.build
-%endif
-
 %build
-%meson build
+%meson build \
+   %{!?with_static_libs:--default-library shared}
 
 %ninja_build -C build
 


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/at-spi2-atk.git/commitdiff/de7a452ec30e9bcdda5b98ecc216289c791a0b79

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


DISTFILES: at-spi2-atk: at-spi2-atk-2.34.2.tar.xz

2020-03-02 Thread qboosh
Request by: qboosh


Files fetched: 1

STORED: 
http://ftp.gnome.org/pub/GNOME/sources/at-spi2-atk/2.34/at-spi2-atk-2.34.2.tar.xz
58cd278574e101363b18d9a8b7053d67  at-spi2-atk-2.34.2.tar.xz
Size: 96608 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/poldek] up to 0.42.0 (source repo moved to github)

2020-03-02 Thread mis
commit ba183fafa686d410b83e35b8d8d86fd648891d2f
Author: mis 
Date:   Mon Mar 2 10:51:04 2020 +0100

up to 0.42.0 (source repo moved to github)

 multiple-options.patch  | 16 
 pm-hooks.patch  | 18 +-
 poldek.spec | 18 +++---
 rpm.org-system-db.patch | 18 --
 4 files changed, 16 insertions(+), 54 deletions(-)
---
diff --git a/poldek.spec b/poldek.spec
index b879afa..ce813e1 100644
--- a/poldek.spec
+++ b/poldek.spec
@@ -26,18 +26,18 @@
 %definever_rpm 5.4.10
 %endif
 
-%definerel 3
+%definerel 1
 Summary:   RPM packages management helper tool
 Summary(hu.UTF-8): RPM csomagkezelést segítő eszköz
 Summary(pl.UTF-8): Pomocnicze narzędzie do zarządzania pakietami RPM
 Name:  poldek
-Version:   0.40.0
+Version:   0.42.0
 Release:   %{rel}%{?with_snap:.%{SNAP}}
 License:   GPL v2
 Group: Applications/System
 #Source0:  
http://poldek.pld-linux.org/download/snapshots/%{name}-%{version}-cvs%{snap}.tar.bz2
-Source0:   
https://launchpad.net/poldek/master/head/+download/%{name}-%{version}.tar.xz
-# Source0-md5: c88f3ada99799d0e1af78aeda428d041
+Source0:   
https://github.com/poldek-pm/poldek/releases/download/v%{version}/%{name}-%{version}.tar.xz
+# Source0-md5: f224a4f62cdedf0d8bcfe0ce6dd533b2
 Source1:   %{name}.conf
 Source2:   %{name}-multilib.conf
 Source3:   %{name}-config.sh
@@ -55,8 +55,6 @@ Source102:%{name}-debuginfo-snap.conf
 Patch0:%{name}-config.patch
 Patch1:pm-hooks.patch
 Patch2:poldek-ext-down-enable.patch
-Patch3:multiple-options.patch
-Patch4:rpm.org-system-db.patch
 URL:   http://poldek.pld-linux.org/
 BuildRequires: %{db_pkg}-devel >= %{ver_db}-%{ver_db_rel}
 BuildRequires: autoconf
@@ -226,8 +224,6 @@ Moduły języka Python dla poldka.
 %patch0 -p1
 %patch1 -p1
 %patch2 -p1
-%patch3 -p1
-%patch4 -p1
 
 %{__rm} m4/libtool.m4 m4/lt*.m4
 
@@ -485,7 +481,7 @@ fi
 
 %files -f %{name}.lang
 %defattr(644,root,root,755)
-%doc ChangeLog README* NEWS TODO configs
+%doc ChangeLog README* NEWS configs
 %dir %{_sysconfdir}/%{name}
 %dir %{_sysconfdir}/%{name}/pre-install.d
 %{_sysconfdir}/%{name}/pre-install.d/README
@@ -522,8 +518,8 @@ fi
 %attr(755,root,root) %{_libdir}/libtndb.so.*.*.*
 %attr(755,root,root) %{_libdir}/libtrurl.so.*.*.*
 %attr(755,root,root) %{_libdir}/libvfile.so.*.*.*
-%attr(755,root,root) %ghost %{_libdir}/libpoclidek.so.0
-%attr(755,root,root) %ghost %{_libdir}/libpoldek.so.2
+%attr(755,root,root) %ghost %{_libdir}/libpoclidek.so.1
+%attr(755,root,root) %ghost %{_libdir}/libpoldek.so.3
 %attr(755,root,root) %ghost %{_libdir}/libtndb.so.0
 %attr(755,root,root) %ghost %{_libdir}/libtrurl.so.0
 %attr(755,root,root) %ghost %{_libdir}/libvfile.so.0
diff --git a/multiple-options.patch b/multiple-options.patch
deleted file mode 100644
index 7ba67b3..000
--- a/multiple-options.patch
+++ /dev/null
@@ -1,16 +0,0 @@
 poldek-0.32.2/conf.c~  2016-01-30 15:05:57.0 +0100
-+++ poldek-0.32.2/conf.c   2018-08-11 18:43:17.635821800 +0200
-@@ -1226,8 +1226,12 @@ tn_hash *poldek_conf_addlines(tn_hash *h
- n_strdupap(line, );
- 
- if (split_option_line(tmp, , , NULL, 0)) {
-+unsigned add_flags = ADD_PARAM_VALIDATE;
-+// allow multiple rpmdef values
-+if (strcmp(name, "rpmdef") != 0)
-+add_flags |= ADD_PARAM_OVERWRITE;
- if (!add_param(ht_sect, sectnam, name, value,
--   ADD_PARAM_VALIDATE | ADD_PARAM_OVERWRITE, NULL, 0))
-+   add_flags, NULL, 0))
- nerr++;
- }
- }
diff --git a/pm-hooks.patch b/pm-hooks.patch
index 9a7d33b..193addf 100644
--- a/pm-hooks.patch
+++ b/pm-hooks.patch
@@ -2,7 +2,7 @@ this could be handled natively by poldek
 but implement as "pm command" hack for now
 
 --- /dev/null  2015-05-20 12:11:30.089022100 +0300
-+++ poldek/pm-command.sh   2015-05-31 18:21:15.748917981 +0300
 poldek/scripts/pm-command.sh   2015-05-31 18:21:15.748917981 +0300
 @@ -0,0 +1,11 @@
 +#!/bin/sh
 +# wrapper to add pre-install.d and post-install.d support for pm command in 
poldek
@@ -27,18 +27,18 @@ but implement as "pm command" hack for now
 --- poldek-0.30.1/conf/poldek.conf~2015-05-31 18:25:35.0 +0300
 +++ poldek-0.30.1/conf/poldek.conf 2015-05-31 18:26:28.410188923 +0300
 @@ -56,7 +56,7 @@
- #exclude path = 
- 
+ #exclude path =
+
  # Full path name to a PM (rpm for now) binary.
 -#pm command = /bin/rpm
 +pm command = /usr/lib/poldek/pm-command.sh
- 
+
  # Full path name to sudo binary.
  #sudo command = /usr/bin/sudo
 --- poldek-0.30.1/conf/Makefile.am 2015-05-31 18:28:29.319806773 +0300
 +++ poldek-0.30.1/conf/Makefile.am 2015-05-31 19:12:22.206571793 +0300
 @@ -26,6 +26,10 @@
- 
+
  

[packages/poldek] - reenable parallel build/install

2020-03-02 Thread arekm
commit 6c5e6a74edf65b0207900899150512821721c4d3
Author: Arkadiusz Miśkiewicz 
Date:   Mon Mar 2 11:42:36 2020 +0100

- reenable parallel build/install

 poldek.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/poldek.spec b/poldek.spec
index 037cc08..27cd0ba 100644
--- a/poldek.spec
+++ b/poldek.spec
@@ -260,7 +260,7 @@ CPPFLAGS="%{rpmcppflags} -std=gnu99 -fgnu89-inline 
-D_GNU_SOURCE=1"
--with-pkglibdir=%{_libexecdir} \
--enable-nls \
%{?with_python:--with-python}
-%{__make} -j1
+%{__make}
 #  --enable-trace
 
 %if %{with python}
@@ -275,13 +275,13 @@ CPPFLAGS="%{rpmcppflags} -std=gnu99 -fgnu89-inline 
-D_GNU_SOURCE=1"
 rm -rf $RPM_BUILD_ROOT
 install -d $RPM_BUILD_ROOT/var/cache/%{name}
 
-%{__make} install -j1 \
+%{__make} install \
DESTDIR=$RPM_BUILD_ROOT
 
 install -p %{SOURCE3} $RPM_BUILD_ROOT%{_bindir}/poldek-config
 
 %if %{with python}
-%{__make} -C python -j1 install \
+%{__make} -C python install \
DESTDIR=$RPM_BUILD_ROOT \
py_sitedir=%{py_sitedir}
 %endif


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/poldek.git/commitdiff/6c5e6a74edf65b0207900899150512821721c4d3

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


[packages/poldek] - run tests even if these are failing now

2020-03-02 Thread arekm
commit d090f4be5910b9152c726135b143820ff40fc50f
Author: Arkadiusz Miśkiewicz 
Date:   Mon Mar 2 11:38:08 2020 +0100

- run tests even if these are failing now

 poldek.spec | 5 +
 1 file changed, 5 insertions(+)
---
diff --git a/poldek.spec b/poldek.spec
index ce813e1..037cc08 100644
--- a/poldek.spec
+++ b/poldek.spec
@@ -8,6 +8,7 @@
 %bcond_without python  # don't build python bindings
 %bcond_withsnap# install configs for official Th snapshot
 %bcond_withrpm4# use rpm4 instead of rpm5
+%bcond_without tests   # tests
 
 # current snapshot name
 %defineSNAP2019
@@ -266,6 +267,10 @@ CPPFLAGS="%{rpmcppflags} -std=gnu99 -fgnu89-inline 
-D_GNU_SOURCE=1"
 %{__make} -C python
 %endif
 
+%if %{with tests}
+%{__make} check
+%endif
+
 %install
 rm -rf $RPM_BUILD_ROOT
 install -d $RPM_BUILD_ROOT/var/cache/%{name}


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/poldek.git/commitdiff/d090f4be5910b9152c726135b143820ff40fc50f

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


DISTFILES: poldek: poldek-0.42.0.tar.xz poldek.png

2020-03-02 Thread mis
Request by: mis


Files fetched: 1

STORED: 
https://github.com/poldek-pm/poldek/releases/download/v0.42.0/poldek-0.42.0.tar.xz
f224a4f62cdedf0d8bcfe0ce6dd533b2  poldek-0.42.0.tar.xz
Size: 978048 bytes
ALREADY GOT: no-url://poldek.png
ee487abede50874e9eceb6495d5ee150  poldek.png


-- 
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: opensmtpd: opensmtpd-6.6.4p1.tar.gz

2020-03-02 Thread arekm
Request by: arekm


Files fetched: 1

STORED: https://www.opensmtpd.org/archives/opensmtpd-6.6.4p1.tar.gz
4744943277f9a6dc942e7560dbdb5643  opensmtpd-6.6.4p1.tar.gz
Size: 790754 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/opensmtpd] - up to 6.6.4p1; fixes remote CVE-2020-8794

2020-03-02 Thread arekm
commit 417386e8469313e8398ba9878b58bbf467bdf925
Author: Arkadiusz Miśkiewicz 
Date:   Mon Mar 2 18:20:59 2020 +0100

- up to 6.6.4p1; fixes remote CVE-2020-8794

 opensmtpd.spec | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)
---
diff --git a/opensmtpd.spec b/opensmtpd.spec
index 8898060..831d665 100644
--- a/opensmtpd.spec
+++ b/opensmtpd.spec
@@ -8,12 +8,12 @@
 Summary:   Free implementation of the server-side SMTP protocol as defined 
by RFC 5321
 Summary(pl.UTF-8): Wolnodostępna implementacja strony serwerowej protokołu 
SMTP wg RFC 5321
 Name:  opensmtpd
-Version:   6.6.2p1
-Release:   2
+Version:   6.6.4p1
+Release:   1
 License:   ISC
 Group: Daemons
 Source0:   https://www.opensmtpd.org/archives/%{name}-%{version}.tar.gz
-# Source0-md5: bd29619f56c009a4eb4879304771822b
+# Source0-md5: 4744943277f9a6dc942e7560dbdb5643
 Source1:   %{name}.service
 Source2:   %{name}.init
 Source3:   %{name}.pam
@@ -186,6 +186,7 @@ fi
 
 %dir %{_libexecdir}/%{name}
 %attr(755,root,root) %{_libexecdir}/%{name}/encrypt
+%attr(755,root,root) %{_libexecdir}/%{name}/lockspool
 %attr(755,root,root) %{_libexecdir}/%{name}/mail.lmtp
 %attr(755,root,root) %{_libexecdir}/%{name}/mail.local
 %attr(755,root,root) %{_libexecdir}/%{name}/mail.maildir


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/opensmtpd.git/commitdiff/417386e8469313e8398ba9878b58bbf467bdf925

___
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

2020-03-02 Thread arekm
Author: arekmDate: Tue Mar  3 04:00:25 2020 GMT
Module: PLD-doc   Tag: HEAD
 Log message:
- updated

 Files affected:
PLD-doc:
   PLD-update-TODO (1.2440 -> 1.2441) 

 Diffs:


Index: PLD-doc/PLD-update-TODO
diff -u PLD-doc/PLD-update-TODO:1.2440 PLD-doc/PLD-update-TODO:1.2441
--- PLD-doc/PLD-update-TODO:1.2440  Mon Mar  2 02:02:44 2020
+++ PLD-doc/PLD-update-TODO Tue Mar  3 05:00:20 2020
@@ -1,4 +1,4 @@
-0ad(14) [OLD] r10803 [NEW] r11863-alpha-unix-build
+0ad(14) [OLD] r10803 [NEW] r08832-alpha-unix-build
 3store(12) [OLD] 2.2.22 [NEW] 3.0.7
 4pane(8) [OLD] 0.8.0 [NEW] 6.0
 AfterStep(20) [OLD] 2.2.11 [NEW] 2.2.12
@@ -40,6 +40,7 @@
 Razor(13) [OLD] 2.85 [NEW] 2.152
 SDL2_image(9) [OLD] 2.0.4 [NEW] 2.0.5
 SDL2_ttf(9) [OLD] 2.0.14 [NEW] 2.0.15
+SPIRV-LLVM-Translator(10) [OLD] 9.0.0 [NEW] 9.0.1
 Sman(13) [OLD] 1.03 [NEW] 1.04
 Smarty-plugin-gettext [OLD] 1.4.0 [NEW] 18)
 SystemPreferences(7) [OLD] 1.0.2 [NEW] 1.2.0
@@ -75,6 +76,7 @@
 am-utils(11) [OLD] 6.0.10 [NEW] 6.2a2
 amavisd-milter(9) [OLD] 1.5.0 [NEW] 1.6.1
 amavisd-new(13) [OLD] 2.10.1 [NEW] 20040701
+amiwm(8) [OLD] 0.20pl48 [NEW] 0.21pl2
 amsn(13) [OLD] 0.98.9 [NEW] 0.98.9-src
 amtterm(8) [OLD] 1.3 [NEW] 1.6
 anope(8) [OLD] 1.7.18 [NEW] 1.8.9
@@ -181,7 +183,6 @@
 brlcad(14) [OLD] 7.10.0 [NEW] 7.28.0
 btrfs-progs(16) [OLD] 5.3.1 [NEW] 5.4.1
 bttv(19) [OLD] 0.7.87 [NEW] 0.9.15
-bubblewrap(9) [OLD] 0.3.3 [NEW] 0.4.0
 bugwarrior(11) [OLD] 1.0.2 [NEW] 1.7.0
 bugzilla(11) [OLD] 3.3.3 [NEW] 5.1.2
 buildbot(7) [OLD] 0.8.1 [NEW] 0.8.2
@@ -196,12 +197,14 @@
 c-icap(7) [OLD] 0.5.5 [NEW] 220505
 c-icap-modules(15) [OLD] 0.5.2 [NEW] 0.5.4
 cacao(8) [OLD] 0.98 [NEW] 1.6.2
+cachefilesd(7) [OLD] 0.10.5 [NEW] 0.10.10
+cacti(10) [OLD] 1.2.9 [NEW] 1.2.10
+cacti-spine(12) [OLD] 1.2.9 [NEW] 1.2.10
 cacti-template-php-fpm [OLD] 0.6.0 [NEW] 14
 cairomm(8) [OLD] 1.12.2 [NEW] 1.15.5
 calamaris(12) [OLD] 2.99.4.0 [NEW] 2.99.4.5
 calf [OLD] 0.90.1 [NEW] 0.90.3
 camstream(8) [OLD] 0.26.3 [NEW] 0.27
-cantata(16) [OLD] 2.0.1 [NEW] 2.4.1
 catdoc(8) [OLD] 0.94.2 [NEW] 0.95
 catfish(7) [OLD] 1.4.9 [NEW] 1.4.13
 cbb(9) [OLD] 0.8.1 [NEW] 0.79a
@@ -209,7 +212,6 @@
 ccrypt(8) [OLD] 1.9 [NEW] 1.11
 ccs(9) [OLD] 2.03.11 [NEW] 3.0.7
 cdlabelgen(9) [OLD] 4.0.0 [NEW] 4.3.0
-cdrdao(15) [OLD] 1.2.3 [NEW] 1.2.4
 cdrtools(13) [OLD] 3.00 [NEW] 3.02a09
 celt051(8) [OLD] 0.5.1.3 [NEW] 0.11.3
 centerim(13) [OLD] 4.22.9 [NEW] 4.22.10
@@ -516,7 +518,6 @@
 ffsearch(8) [OLD] 1.1.12 [NEW] 1.1.13
 fftrader(8) [OLD] 0.65 [NEW] 0.66
 fftv(12) [OLD] 0.8.2 [NEW] 0.32
-fftw(13) [OLD] 2.1.5 [NEW] 3.3.8
 fife(12) [OLD] 0.3.5 [NEW] 2007.2
 file-roller(13) [OLD] 3.32.3 [NEW] 3.32.4
 fillets-ng(12) [OLD] 1.0.0 [NEW] 1.0.1
@@ -538,7 +539,7 @@
 fonts-OTF-Adobe-SourceSerifPro [OLD] 1.017 [NEW] 3.001
 fonts-TTF-Google-croscore(8) [OLD] 1.23.0 [NEW] 1.31.0
 fonttools [OLD] 3.44.0 [NEW] 4.4.1
-foomatic-db(10) [OLD] 20190510 [NEW] 20200301
+foomatic-db(10) [OLD] 20190510 [NEW] 20200302
 four-in-a-row(8) [OLD] 3.34.3 [NEW] 3.34.4
 free-sa(9) [OLD] 1.6.2 [NEW] 2.0.0b6p7
 freeciv(28) [OLD] 2.4.4 [NEW] 2.6.2
@@ -634,7 +635,8 @@
 ghc-timezone-series(8) [OLD] 0.1.2 [NEW] 0.1.9
 ghc-utf8-string(8) [OLD] 0.3.7 [NEW] 1.0.1.1
 ghc-xml-types(8) [OLD] 0.3.3 [NEW] 0.3.6
-ghostpdl [OLD] 9.26 [NEW] 9.27
+ghostpdl(16) [OLD] 9.26 [NEW] 9.51rc3
+ghostscript(25) [OLD] 9.50 [NEW] 9.51rc3
 giFT-gnutella(11) [OLD] 0.0.9.2 [NEW] 0.0.11
 giFT-openft(11) [OLD] 0.2.1.5 [NEW] 0.2.1.6
 gif2png(11) [OLD] 2.5.14 [NEW] 3.0.0
@@ -775,7 +777,7 @@
 gtk-iptables(8) [OLD] 0.4.21 [NEW] 0.5.1
 gtk-webkit(18) [OLD] 2.4.11 [NEW] 2.27.91
 gtk-webkit3(22) [OLD] 2.4.11 [NEW] 2.27.91
-gtk-webkit4(23) [OLD] 2.26.2 [NEW] 2.27.91
+gtk-webkit4(23) [OLD] 2.26.4 [NEW] 2.27.91
 gtk2hs(17) [OLD] 0.9.12 [NEW] 0.10.1
 gtkatlantic(8) [OLD] 0.4.2 [NEW] 0.4.4
 gtkdatabox(8) [OLD] 0.9.1.3 [NEW] 0.9.3.1
@@ -816,7 +818,7 @@
 httpie(7) [OLD] 0.7.2 [NEW] 2.0.0
 httrack(11) [OLD] 3.44.1 [NEW] 3.49.2
 hugin(8) [OLD] 2019.0.0 [NEW] 2019.2.0
-hwdata [OLD] 0.323 [NEW] 9.5
+hwdata [OLD] 0.323 [NEW] 0.333
 hwinfo(12) [OLD] 21.12 [NEW] 21.68
 hydra [OLD] 8.6 [NEW] 8.6.tar.gz">redirected.
 hylafax(8) [OLD] 6.0.6 [NEW] 6.0.7
@@ -938,9 +940,8 @@
 java-xmlgraphics-fop(19) [OLD] 1.0 [NEW] 2.4
 java-xmlunit(19) [OLD] 1.3 [NEW] 1.6
 java-xom(14) [OLD] 1.1 [NEW] 1.2.11
-jbig2dec [OLD] 0.17 [NEW] 9.27
 jemalloc [OLD] 5.2.0 [NEW] 5.2.1
-jenkins [OLD] 2.107.1 [NEW] 2.107.3
+jenkins [OLD] 2.107.1 [NEW] 2.164.1
 jhead(8) [OLD] 3.00 [NEW] 3.04
 jimtcl [OLD] 0.76 [NEW] 0.79
 joe(19) [OLD] 3.7 [NEW] 4.6
@@ -1061,7 +1062,7 @@
 libcacard(12) [OLD] 2.5.3 [NEW] 2.7.0
 libcangjie(13) [OLD] 1.3 [NEW] 1.3.tar.xz.sha256.txt
 libcanlock(8) [OLD] 3.1.0 [NEW] 3.1.1
-libcap(17) [OLD] 2.31 [NEW] 2.32
+libcap(17) [OLD] 2.31 [NEW] 2.33
 libcdio-paranoia/libcdio-paranoia.spec:16: impossible substitution: 
https://ftp.gnu.org/gnu/libcdio/libcdio-paranoia-10.2+2.0.1+%{subver}.tar.bz2

[packages/libical] - updated to 3.0.7

2020-03-02 Thread qboosh
commit 3b54d891252c7895186e1cb99432d4955d6fca0d
Author: Jakub Bogusz 
Date:   Mon Mar 2 21:01:31 2020 +0100

- updated to 3.0.7

 libical.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/libical.spec b/libical.spec
index c490ea5..6e17a1c 100644
--- a/libical.spec
+++ b/libical.spec
@@ -6,13 +6,13 @@
 Summary:   libical library
 Summary(pl.UTF-8): Biblioteka libical
 Name:  libical
-Version:   3.0.6
+Version:   3.0.7
 Release:   1
 License:   MPL v1.0 or LGPL v2.1
 Group: Libraries
 #Source0Download: https://github.com/libical/libical/releases
 Source0:   
https://github.com/libical/libical/archive/v%{version}/%{name}-%{version}.tar.gz
-# Source0-md5: b4c441549fdaf054611c6244a5900bdc
+# Source0-md5: a36faa9bdd50a71c59bd8dbb3a3250bd
 Patch0:%{name}-cmake-python.patch
 Patch1:%{name}-python.patch
 Patch2:%{name}-gtkdocdir.patch


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/libical.git/commitdiff/3b54d891252c7895186e1cb99432d4955d6fca0d

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


DISTFILES: libical: libical-3.0.7.tar.gz

2020-03-02 Thread qboosh
Request by: qboosh


Files fetched: 1

STORED: https://github.com/libical/libical/archive/v3.0.7/libical-3.0.7.tar.gz
a36faa9bdd50a71c59bd8dbb3a3250bd  libical-3.0.7.tar.gz
Size: 881352 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