[packages/lxsession] - build using libayatana-indicator and libayatana-appindicator - force regeneration of .c files with

2024-04-22 Thread hawk
commit c25660810d5f239c0819aa87a4968d691289849f
Author: Marcin Krol 
Date:   Tue Apr 23 03:02:35 2024 +0200

- build using libayatana-indicator and libayatana-appindicator
- force regeneration of .c files with valac
- fix building with gtk3

 libayatana.patch | 34 ++
 lxsession.spec   | 23 +++
 2 files changed, 53 insertions(+), 4 deletions(-)
---
diff --git a/lxsession.spec b/lxsession.spec
index bc8f31a..70f1730 100644
--- a/lxsession.spec
+++ b/lxsession.spec
@@ -7,11 +7,12 @@ Summary:  Default session manager for LXDE
 Summary(pl.UTF-8): Domyślny zarząda sesji dla LXDE
 Name:  lxsession
 Version:   0.5.5
-Release:   1
+Release:   2
 License:   GPL v2+
 Group: X11/Applications
 Source0:   https://downloads.sourceforge.net/lxde/%{name}-%{version}.tar.xz
 # Source0-md5: e8380acef215ee7c99c067a2241c2c7b
+Patch0:libayatana.patch
 URL:   http://www.lxde.org/
 BuildRequires: dbus-devel
 BuildRequires: dbus-glib-devel
@@ -22,14 +23,21 @@ BuildRequires:  glib2-devel >= 1:2.28.0
 %{!?with_gtk3:BuildRequires:   gtk+2-devel >= 2:2.12.0}
 %{?with_gtk3:BuildRequires:gtk+3-devel >= 3.0.0}
 BuildRequires: intltool >= 0.40.0
-%{?with_notify:BuildRequires:  libappindicator-gtk2-devel >= 0.1}
-%{?with_notify:BuildRequires:  libindicator-devel >= 0.4.93}
-%{?with_notify:BuildRequires:  libnotify-devel}
+%if %{with notify}
+%{!?with_gtk3:BuildRequires:   libayatana-appindicator-gtk2-devel}
+%{?with_gtk3:BuildRequires:libayatana-appindicator-gtk3-devel}
+BuildRequires: libayatana-indicator-devel
+BuildRequires: libnotify-devel
+%endif
 BuildRequires: libxslt-progs
 BuildRequires: pkgconfig
 BuildRequires: polkit-devel
 BuildRequires: tar >= 1:1.22
 BuildRequires: vala >= 2:0.16.0
+%if %{with notify}
+%{!?with_gtk3:BuildRequires:   vala-libayatana-appindicator-gtk2}
+%{?with_gtk3:BuildRequires:vala-libayatana-appindicator-gtk3}
+%endif
 BuildRequires: xorg-lib-libX11-devel
 BuildRequires: xz
 %{!?with_gtk3:Requires:gtk+2 >= 2:2.12.0}
@@ -58,12 +66,19 @@ uruchomić je ponownie przy kolejnym zalogowaniu tego 
użytkownika.
 
 %prep
 %setup -q
+%patch0 -p1
 
 %build
+%{__libtoolize}
+%{__aclocal} -I m4
+%{__autoconf}
+%{__automake}
 %configure \
%{?with_notify:--enable-advanced-notifications} \
%{?with_gtk3:--enable-gtk3} \
--disable-silent-rules
+# Delete bundled .c files to force regeneration using valac
+%{__make} clean-generic
 %{__make}
 
 %install
diff --git a/libayatana.patch b/libayatana.patch
new file mode 100644
index 000..9a0b045
--- /dev/null
+++ b/libayatana.patch
@@ -0,0 +1,34 @@
+diff -ur lxsession-0.5.5.orig/configure.ac lxsession-0.5.5/configure.ac
+--- lxsession-0.5.5.orig/configure.ac  2020-02-29 17:29:36.0 +0100
 lxsession-0.5.5/configure.ac   2024-04-23 02:02:29.782055165 +0200
+@@ -117,7 +117,11 @@
+ AM_CONDITIONAL(USE_ADVANCED_NOTIFICATIONS, test "$use_advanced_notifications" 
= "yes")
+ 
+ if test "$use_advanced_notifications" = "yes"; then
+-  PKG_CHECK_MODULES(INDICATORS, [indicator-0.4 >= 0.4.93 appindicator-0.1])
++  if test "$enable_gtk3" = "yes"; then
++PKG_CHECK_MODULES(INDICATORS, [ayatana-indicator-0.4 
ayatana-appindicator3-0.1])
++  else
++PKG_CHECK_MODULES(INDICATORS, [ayatana-indicator-0.4 
ayatana-appindicator-0.1])
++  fi
+   AC_SUBST(INDICATORS_CFLAGS)
+   AC_SUBST(INDICATORS_LIBS)
+ 
+diff -ur lxsession-0.5.5.orig/Makefile.am lxsession-0.5.5/Makefile.am
+--- lxsession-0.5.5.orig/Makefile.am   2020-02-29 15:15:59.0 +0100
 lxsession-0.5.5/Makefile.am2024-04-23 01:59:56.536039201 +0200
+@@ -459,8 +459,13 @@
+ $(GTK_LIBS)
+ 
+ if USE_ADVANCED_NOTIFICATIONS
++if USE_GTK3
++GTKVER=3
++else
++GTKVER=
++endif
+ lxsession_lxsession_VALAFLAGS += \
+---pkg appindicator-0.1 \
++--pkg ayatana-appindicator$(GTKVER)-0.1 \
+ --pkg libnotify \
+ -D USE_ADVANCED_NOTIFICATIONS
+ 


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/lxsession.git/commitdiff/c25660810d5f239c0819aa87a4968d691289849f

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


[packages/lxsession] - build with gtk3 by default

2024-04-22 Thread hawk
commit 82f70f429bd88e443a0ab6b4e08f7b80d32e069a
Author: Marcin Krol 
Date:   Tue Apr 23 00:43:49 2024 +0200

- build with gtk3 by default

 lxsession.spec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/lxsession.spec b/lxsession.spec
index ed9c028..bc8f31a 100644
--- a/lxsession.spec
+++ b/lxsession.spec
@@ -1,6 +1,6 @@
 #
 # Conditional build:
-%bcond_withgtk3# use GTK+3 instead of GTK+2
+%bcond_without gtk3# use GTK+3 instead of GTK+2
 %bcond_without notify  # libnotify/indicators based notification
 
 Summary:   Default session manager for LXDE


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/lxsession.git/commitdiff/c25660810d5f239c0819aa87a4968d691289849f

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


[packages/openbox] - make openbox-xdg-autostart python3 compatible (patch from Debian)

2024-04-22 Thread hawk
commit 0a56e224ab9940c6a458fbb672a709e9c541dedd
Author: Marcin Krol 
Date:   Tue Apr 23 01:02:51 2024 +0200

- make openbox-xdg-autostart python3 compatible (patch from Debian)

 openbox.spec  |   6 +--
 python3.patch | 120 ++
 2 files changed, 123 insertions(+), 3 deletions(-)
---
diff --git a/openbox.spec b/openbox.spec
index 219f1e3..0cdc60c 100644
--- a/openbox.spec
+++ b/openbox.spec
@@ -6,13 +6,14 @@ Summary:  Small and fast window manger for the X Window
 Summary(pl.UTF-8): Mały i szybki zarządca okien dla X Window
 Name:  openbox
 Version:   3.6.1
-Release:   6
+Release:   7
 Epoch: 1
 License:   GPL v2+
 Group: X11/Window Managers
 #Source0Download: http://openbox.org/wiki/Openbox:Download
 Source0:   http://openbox.org/dist/openbox/%{name}-%{version}.tar.xz
 # Source0-md5: 46bf5f1edda0eda0d9e824b585988be9
+Patch0:python3.patch
 URL:   http://openbox.org/
 BuildRequires: autoconf >= 2.54
 BuildRequires: automake >= 1:1.11
@@ -239,8 +240,7 @@ Motyw Syscrash dla Openboksa.
 
 %prep
 %setup -q
-
-%{__sed} -i -e '1s,/usr/bin/env python$,%{__python},' 
data/autostart/openbox-xdg-autostart
+%patch0 -p1
 
 %build
 %{__libtoolize}
diff --git a/python3.patch b/python3.patch
new file mode 100644
index 000..dc62821
--- /dev/null
+++ b/python3.patch
@@ -0,0 +1,120 @@
+diff -ur openbox-3.6.1.orig/data/autostart/openbox-xdg-autostart 
openbox-3.6.1/data/autostart/openbox-xdg-autostart
+--- openbox-3.6.1.orig/data/autostart/openbox-xdg-autostart2013-04-17 
14:27:27.0 +0200
 openbox-3.6.1/data/autostart/openbox-xdg-autostart 2024-04-23 
00:59:58.692750755 +0200
+@@ -1,4 +1,4 @@
+-#!/usr/bin/env python
++#!/usr/bin/python3
+ 
+ # openbox-xdg-autostart runs things based on the XDG autostart specification
+ # Copyright (C) 2008   Dana Jansens
+@@ -28,9 +28,7 @@
+ from xdg.DesktopEntry import DesktopEntry
+ from xdg.Exceptions import ParsingError
+ except ImportError:
+-print
+-print >>sys.stderr, "ERROR:", ME, "requires PyXDG to be installed"
+-print
++sys.stderr.write("\nERROR: %s requires PyXDG to be installed\n" % ME)
+ sys.exit(1)
+ 
+ def main(argv=sys.argv):
+@@ -51,7 +49,7 @@
+ try:
+ autofile = AutostartFile(path)
+ except ParsingError:
+-print "Invalid .desktop file: " + path
++print("Invalid .desktop file: " + path)
+ else:
+ if not autofile in files:
+ files.append(autofile)
+@@ -99,9 +97,9 @@
+ 
+ def _alert(self, str, info=False):
+ if info:
+-print "\t ", str
++print("\t ", str)
+ else:
+-print "\t*", str
++print("\t*", str)
+ 
+ def _showInEnvironment(self, envs, verbose=False):
+ default = not self.de.getOnlyShowIn()
+@@ -146,14 +144,14 @@
+ 
+ def display(self, envs):
+ if self._shouldRun(envs):
+-print "[*] " + self.de.getName()
++print("[*] " + self.de.getName())
+ else:
+-print "[ ] " + self.de.getName()
++print("[ ] " + self.de.getName())
+ self._alert("File: " + self.path, info=True)
+ if self.de.getExec():
+ self._alert("Executes: " + self.de.getExec(), info=True)
+ self._shouldRun(envs, True)
+-print
++print()
+ 
+ def run(self, envs):
+ here = os.getcwd()
+@@ -165,34 +163,34 @@
+ os.chdir(here)
+ 
+ def show_help():
+-print "Usage:", ME, "[OPTION]... [ENVIRONMENT]..."
+-print
+-print "This tool will run xdg autostart .desktop files"
+-print
+-print "OPTIONS"
+-print "  --listShow a list of the files which would be run"
+-print "Files which would be run are marked with an 
asterix"
+-print "symbol [*].  For files which would not be run,"
+-print "information is given for why they are excluded"
+-print "  --helpShow this help and exit"
+-print "  --version Show version and copyright information"
+-print
+-print "ENVIRONMENT specifies a list of environments for which to run 
autostart"
+-print "applications.  If none are specified, only applications which do 
not "
+-print "limit themselves to certain environments will be run."
+-print
+-print "ENVIRONMENT can be one or more of:"
+-print "  GNOME Gnome Desktop"
+-print "  KDE   KDE Desktop"
+-print "  ROX   ROX Desktop"
+-print "  XFCE  XFCE Desktop"
+-print "  Old   Legacy systems"
+-print
++print("Usage:", ME, "[OPTION]... [ENVIRONMENT]...")
++print()
++print("This tool will run xdg autostart .desktop files")
++print()
++print("OPTIONS")
++print("  --listShow a list of the files which would be 

[packages/libdbusmenu] - port dbusmenu-bench to python3 (patch from Debian, rediffed)

2024-04-22 Thread hawk
commit e4a6fb741cdd1823669e95f33052b64f80945e7e
Author: Marcin Krol 
Date:   Mon Apr 22 23:57:32 2024 +0200

- port dbusmenu-bench to python3 (patch from Debian, rediffed)

 libdbusmenu.spec |  6 ++--
 python3.patch| 90 
 2 files changed, 93 insertions(+), 3 deletions(-)
---
diff --git a/libdbusmenu.spec b/libdbusmenu.spec
index ac3c2ba..3c71300 100644
--- a/libdbusmenu.spec
+++ b/libdbusmenu.spec
@@ -11,11 +11,12 @@ Summary:DBus Menu Library
 Summary(pl.UTF-8): Biblioteka DBus Menu
 Name:  libdbusmenu
 Version:   16.04.0
-Release:   1
+Release:   2
 License:   GPL v3, LGPL v2.1, LGPL v3
 Group: Libraries
 Source0:   
https://launchpad.net/libdbusmenu/16.04/%{version}/+download/%{name}-%{version}.tar.gz
 # Source0-md5: 3c05d53053b3ea69384b5f93d7a4c7c4
+Patch0:python3.patch
 URL:   https://launchpad.net/libdbusmenu
 BuildRequires: atk-devel
 BuildRequires: autoconf >= 2.62
@@ -269,6 +270,7 @@ Dokumentacja API biblioteki libdbusmenu-gtk (zarówno w 
wersji dla GTK+
 
 %prep
 %setup -q
+%patch0 -p1
 
 %{__sed} -i -e 's/-Werror//' \
libdbusmenu-glib/Makefile.am \
@@ -276,8 +278,6 @@ Dokumentacja API biblioteki libdbusmenu-gtk (zarówno w 
wersji dla GTK+
tools/Makefile.am \
tools/testapp/Makefile.am
 
-%{__sed} -i -e '1s,/usr/bin/env python$,%{__python},' tools/dbusmenu-bench
-
 %build
 %{__intltoolize}
 %{__libtoolize}
diff --git a/python3.patch b/python3.patch
new file mode 100644
index 000..9089f77
--- /dev/null
+++ b/python3.patch
@@ -0,0 +1,90 @@
+diff -ur libdbusmenu-16.04.0.orig/tools/dbusmenu-bench 
libdbusmenu-16.04.0/tools/dbusmenu-bench
+--- libdbusmenu-16.04.0.orig/tools/dbusmenu-bench  2016-02-27 
19:58:43.0 +0100
 libdbusmenu-16.04.0/tools/dbusmenu-bench   2024-04-22 23:54:25.748827260 
+0200
+@@ -1,4 +1,4 @@
+-#!/usr/bin/env python
++#!/usr/bin/python3
+ # encoding: utf-8
+ """
+ A library to communicate a menu object set accross DBus and
+@@ -60,8 +60,8 @@
+ 
+ 
+ def dump_properties(properties, prepend=""):
+-for key, value in properties.items():
+-print "%s- %s: %s" % (prepend, key, value)
++for key, value in list(properties.items()):
++print("%s- %s: %s" % (prepend, key, value))
+ 
+ 
+ def run_test_sequence(menu, dump=False):
+@@ -74,9 +74,9 @@
+ revision, layout = menu.GetLayout(dbus.Int32(0))
+ times["GetLayout"] = chrono.elapsed()
+ if dump:
+-print "revision:", revision
+-print "layout:"
+-print layout
++print("revision:", revision)
++print("layout:")
++print(layout)
+ 
+ # Get ids
+ tree = ET.fromstring(layout)
+@@ -89,27 +89,27 @@
+ children = menu.GetChildren(dbus.Int32(root_id), property_names)
+ times["GetChildren"] = chrono.elapsed()
+ if dump:
+-print "children:"
++print("children:")
+ for child in children:
+ id, properties = child
+-print "- %d:" % id
++print("- %d:" % id)
+ dump_properties(properties, prepend=" ")
+ 
+ chrono.restart()
+ properties = menu.GetProperties(dbus.Int32(child_id), property_names)
+ times["GetProperties"] = chrono.elapsed()
+ if dump:
+-print "properties:"
++print("properties:")
+ dump_properties(properties)
+ 
+ return times
+ 
+ def create_timing_dict():
+-return dict(zip(PROBES, itertools.repeat(0)))
++return dict(list(zip(PROBES, itertools.repeat(0
+ 
+ def print_probe(prefix, name, value, timestamp):
+ value = int(value * 100)
+-print "%(prefix)s.%(name)s:%(value)d@%(timestamp)d" % locals()
++print("%(prefix)s.%(name)s:%(value)d@%(timestamp)d" % locals())
+ 
+ def main():
+ parser = OptionParser(usage = "%prog [options]")
+@@ -134,7 +134,7 @@
+ max_timings = create_timing_dict()
+ for x in range(options.count):
+ timings = run_test_sequence(menu)
+-for name, timing in timings.items():
++for name, timing in list(timings.items()):
+ cumulated_timings[name] += timing
+ if min_timings[name] == 0 or min_timings[name] > timing:
+ min_timings[name] = timing
+@@ -142,11 +142,11 @@
+ max_timings[name] = timing
+ 
+ timestamp = int(time.time())
+-for name, timing in cumulated_timings.items():
++for name, timing in list(cumulated_timings.items()):
+ print_probe("average", name, timing / options.count, timestamp)
+-for name, timing in min_timings.items():
++for name, timing in list(min_timings.items()):
+ print_probe("min", name, timing, timestamp)
+-for name, timing in max_timings.items():
++for name, timing in list(max_timings.items()):
+ print_probe("max", name, timing, timestamp)
+ 
+ return 0


 gitweb:


[packages/lxde-common] - added patch to fix session handling, R: ConsoleKit - R: fonts-TTF-DejaVu

2024-04-22 Thread hawk
commit b5d1d2b93ade20b84896e644625450d5c31c17a9
Author: Marcin Krol 
Date:   Mon Apr 22 23:34:44 2024 +0200

- added patch to fix session handling, R: ConsoleKit
- R: fonts-TTF-DejaVu

 lxde-common.spec |  6 +-
 session.patch| 13 +
 2 files changed, 18 insertions(+), 1 deletion(-)
---
diff --git a/lxde-common.spec b/lxde-common.spec
index 7846b2d..a81d5f4 100644
--- a/lxde-common.spec
+++ b/lxde-common.spec
@@ -2,14 +2,17 @@ Summary:  Default configuration for LXDE
 Summary(pl.UTF-8): Domyślna konfiguracja LXDE
 Name:  lxde-common
 Version:   0.99.2
-Release:   1
+Release:   2
 License:   GPL v2+
 Group: X11/Applications
 Source0:   https://downloads.sourceforge.net/lxde/%{name}-%{version}.tar.xz
 # Source0-md5: 14a9d19c4576dc15d985453ccb8ca9f6
+Patch0:session.patch
 URL:   http://www.lxde.org/
 BuildRequires: tar >= 1:1.22
 BuildRequires: xz
+Requires:  ConsoleKit
+Requires:  fonts-TTF-DejaVu
 Requires:  openbox
 Requires:  xorg-app-xprop
 BuildArch: noarch
@@ -24,6 +27,7 @@ LXDE.
 
 %prep
 %setup -q
+%patch0 -p1
 
 %build
 %configure
diff --git a/session.patch b/session.patch
new file mode 100644
index 000..51d4723
--- /dev/null
+++ b/session.patch
@@ -0,0 +1,13 @@
+diff -ur lxde-common-0.99.2.orig/startlxde.in lxde-common-0.99.2/startlxde.in
+--- lxde-common-0.99.2.orig/startlxde.in   2016-11-21 22:59:09.0 
+
 lxde-common-0.99.2/startlxde.in2018-07-05 09:56:38.521863200 +
+@@ -44,4 +44,8 @@
+ export XDG_CURRENT_DESKTOP="LXDE"
+ 
+ # Start the LXDE session
+-exec @prefix@/bin/lxsession -s LXDE -e LXDE
++if which ck-launch-session >/dev/null; then
++  exec ck-launch-session @prefix@/bin/lxsession -s LXDE -e LXDE
++else
++  exec @prefix@/bin/lxsession -s LXDE -e LXDE
++fi


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/lxde-common.git/commitdiff/b5d1d2b93ade20b84896e644625450d5c31c17a9

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


[packages/lxappearance-obconf] - build with gtk3 by default

2024-04-22 Thread hawk
commit d8aa0a8f413988e0ce1827e9f5dae507263bfa33
Author: Marcin Krol 
Date:   Mon Apr 22 23:21:31 2024 +0200

- build with gtk3 by default

 lxappearance-obconf.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/lxappearance-obconf.spec b/lxappearance-obconf.spec
index 14950f9..33b44b2 100644
--- a/lxappearance-obconf.spec
+++ b/lxappearance-obconf.spec
@@ -1,12 +1,12 @@
 #
 # Conditional build:
-%bcond_withgtk3# use GTK+3 instead of GTK+2
+%bcond_without gtk3# use GTK+3 instead of GTK+2
 
 Summary:   LXAppearance ObConf plugin
 Summary(pl.UTF-8): Wtyczka ObConf dla LXAppearance
 Name:  lxappearance-obconf
 Version:   0.2.3
-Release:   1
+Release:   2
 License:   GPL v2+
 Group: X11/Applications
 Source0:   https://downloads.sourceforge.net/lxde/%{name}-%{version}.tar.xz


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/lxappearance-obconf.git/commitdiff/d8aa0a8f413988e0ce1827e9f5dae507263bfa33

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


[packages/imlib2] - added bcond to allow building without HEIF support

2024-04-22 Thread hawk
commit 57ddbfd9eb2c02b9b4b05c2fb0359a2478d77c9c
Author: Marcin Krol 
Date:   Mon Apr 22 23:17:26 2024 +0200

- added bcond to allow building without HEIF support

 imlib2.spec | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
---
diff --git a/imlib2.spec b/imlib2.spec
index b14fe37..32bbf5c 100644
--- a/imlib2.spec
+++ b/imlib2.spec
@@ -1,6 +1,7 @@
 #
 # Conditional build:
 %bcond_without jxl # JPEG XL loader
+%bcond_without heif# HEIF loader
 %bcond_withps  # enable postscript support
 %bcond_without static_libs # static library
 
@@ -20,7 +21,7 @@ BuildRequires:bzip2-devel
 BuildRequires: doxygen
 BuildRequires: freetype-devel >= 2.1
 BuildRequires: giflib-devel
-BuildRequires: libheif-devel
+%{?with_heif:BuildRequires:libheif-devel}
 BuildRequires: libid3tag-devel
 BuildRequires: libjpeg-devel >= 6b-18
 %{?with_jxl:BuildRequires: libjxl-devel}
@@ -123,6 +124,7 @@ touch test/Makefile.am
 %ifarch %{x8664}
--enable-amd64 \
 %endif
+   %{!?with_heif:--without-heif} \
%{!?with_jxl:--without-jxl}
 
 %{__make}


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/imlib2.git/commitdiff/57ddbfd9eb2c02b9b4b05c2fb0359a2478d77c9c

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


[packages/lxappearance] - build with gtk3 by default

2024-04-22 Thread hawk
commit 1b67286d36c1d6289a9bdd416bf550dc4a3b9ab2
Author: Marcin Krol 
Date:   Mon Apr 22 23:01:10 2024 +0200

- build with gtk3 by default

 lxappearance.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/lxappearance.spec b/lxappearance.spec
index 7f1e90a..96db5d7 100644
--- a/lxappearance.spec
+++ b/lxappearance.spec
@@ -1,12 +1,12 @@
 #
 # Conditional build:
-%bcond_withgtk3# use GTK+3 instead of GTK+2
+%bcond_without gtk3# use GTK+3 instead of GTK+2
 
 Summary:   Desktop-independent theme switcher for GTK+
 Summary(pl.UTF-8): Niezależny od środowiska przełącznik motywów dla GTK+
 Name:  lxappearance
 Version:   0.6.3
-Release:   2
+Release:   3
 License:   GPL v3
 Group: X11/Applications
 Source0:   http://downloads.sourceforge.net/lxde/%{name}-%{version}.tar.xz


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/lxappearance.git/commitdiff/1b67286d36c1d6289a9bdd416bf550dc4a3b9ab2

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


[packages/lxpanel] - fix building with gtk3, build with gtk3 by default

2024-04-22 Thread hawk
commit ae2b683dceefc70b96fecdb39ebecd54d8ec0439
Author: Marcin Krol 
Date:   Mon Apr 22 22:58:41 2024 +0200

- fix building with gtk3, build with gtk3 by default

 lxpanel.spec | 10 ++
 1 file changed, 6 insertions(+), 4 deletions(-)
---
diff --git a/lxpanel.spec b/lxpanel.spec
index de885e9..9c32428 100644
--- a/lxpanel.spec
+++ b/lxpanel.spec
@@ -1,6 +1,6 @@
 #
 # Conditional build:
-%bcond_withgtk3# use GTK+3 instead of GTK+2
+%bcond_without gtk3# use GTK+3 instead of GTK+2
 %bcond_without appindicator# libindicator support (only GTK+2 variant 
supported)
 
 %if %{with gtk3}
@@ -10,7 +10,7 @@ Summary:  LXPanel - a lightweight X11 desktop panel
 Summary(pl.UTF-8): LXPanel - lekki panel pulpitu X11
 Name:  lxpanel
 Version:   0.10.1
-Release:   1
+Release:   2
 License:   GPL v2+
 Group: X11/Applications
 Source0:   https://downloads.sourceforge.net/lxde/%{name}-%{version}.tar.xz
@@ -31,7 +31,8 @@ BuildRequires:libfm-devel >= 1.2.0
 %{?with_appindicator:BuildRequires:libindicator-devel >= 0.3.0}
 BuildRequires: libiw-devel
 BuildRequires: libtool >= 2:2.2
-BuildRequires: libwnck2-devel
+%{!?with_gtk3:BuildRequires:   libwnck2-devel}
+%{?with_gtk3:BuildRequires:libwnck-devel}
 BuildRequires: libxml2-devel >= 2.0
 BuildRequires: menu-cache-devel
 BuildRequires: pkgconfig
@@ -90,7 +91,8 @@ Pliki nagłówkowe dla wtyczek lxpanelu.
 %{__automake}
 %configure \
%{?with_appindicator:--enable-indicator-support} \
-   --disable-silent-rules
+   --disable-silent-rules \
+   %{?with_gtk3:--enable-gtk3}
 
 %{__make}
 


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/lxpanel.git/commitdiff/ae2b683dceefc70b96fecdb39ebecd54d8ec0439

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


[packages/gnome-common] - rediffed

2024-04-22 Thread hawk
commit 4ceaba53ea9ee3ef871b5be7854d91c8c4cf8098
Author: Marcin Krol 
Date:   Mon Apr 22 22:44:52 2024 +0200

- rediffed

 disable-too-pedantic-Werror.patch | 9 +
 1 file changed, 5 insertions(+), 4 deletions(-)
---
diff --git a/disable-too-pedantic-Werror.patch 
b/disable-too-pedantic-Werror.patch
index ce15d5c..66b636e 100644
--- a/disable-too-pedantic-Werror.patch
+++ b/disable-too-pedantic-Werror.patch
@@ -1,10 +1,11 @@
 gnome-common-3.14.0/macros2/gnome-compiler-flags.m4~   2014-09-22 
13:32:01.0 +0200
-+++ gnome-common-3.14.0/macros2/gnome-compiler-flags.m42015-03-24 
00:20:00.725525499 +0100
-@@ -47,7 +47,6 @@
+diff -urNp -x '*.orig' gnome-common-3.18.0.org/macros2/gnome-compiler-flags.m4 
gnome-common-3.18.0/macros2/gnome-compiler-flags.m4
+--- gnome-common-3.18.0.org/macros2/gnome-compiler-flags.m42015-01-27 
19:59:24.0 +0100
 gnome-common-3.18.0/macros2/gnome-compiler-flags.m42024-04-22 
22:43:26.872914798 +0200
+@@ -47,7 +47,6 @@ AU_DEFUN([GNOME_COMPILE_WARNINGS],[
  -Werror=pointer-arith \
  -Werror=init-self \
  -Werror=format-security \
 --Werror=format=2 \
  -Werror=missing-include-dirs \
+ -Werror=return-type \
  "
- 


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/gnome-common.git/commitdiff/4ceaba53ea9ee3ef871b5be7854d91c8c4cf8098

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


[packages/libfm] - build with gtk3 by default

2024-04-22 Thread hawk
commit e92e943aaf247ad97ee1a614b9285502459722d6
Author: Marcin Krol 
Date:   Mon Apr 22 22:23:43 2024 +0200

- build with gtk3 by default

 libfm.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/libfm.spec b/libfm.spec
index 4a11e9c..ecd2392 100644
--- a/libfm.spec
+++ b/libfm.spec
@@ -1,7 +1,7 @@
 #
 # Conditional build:
 %bcond_without apidocs # disable gtk-doc
-%bcond_withgtk3# use GTK+ 3.x instead of 2.x
+%bcond_without gtk3# use GTK+ 3.x instead of 2.x
 %bcond_withextra_only  # build only libfm-extra
 %bcond_withbootstrap   # synonym for extra_only (to break 
libfm<>menu-cache loop)
 
@@ -12,7 +12,7 @@ Summary:  Helper library for pcmanfm
 Summary(pl.UTF-8): Biblioteka pomocnicza do pcmanfm
 Name:  libfm
 Version:   1.3.2
-Release:   1
+Release:   2
 License:   GPL v2+
 Group: Libraries
 Source0:   
http://downloads.sourceforge.net/pcmanfm/%{name}-%{version}.tar.xz


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/libfm.git/commitdiff/e92e943aaf247ad97ee1a614b9285502459722d6

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


[packages/lxhotkey] - build with gtk3 by default

2024-04-22 Thread hawk
commit fdcc14bae65be796bf171f51ee90016248285257
Author: Marcin Krol 
Date:   Mon Apr 22 22:22:19 2024 +0200

- build with gtk3 by default

 lxhotkey.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/lxhotkey.spec b/lxhotkey.spec
index 2e35eb8..66bdfa9 100644
--- a/lxhotkey.spec
+++ b/lxhotkey.spec
@@ -1,12 +1,12 @@
 #
 # Conditional build:
-%bcond_withgtk3# use GTK+3 instead of GTK+2
+%bcond_without gtk3# use GTK+3 instead of GTK+2
 
 Summary:   A lightweight global keyboard shortcuts configurator
 Summary(pl.UTF-8): Lekki konfigurator globalnych skrótów klawiaturowych
 Name:  lxhotkey
 Version:   0.1.1
-Release:   1
+Release:   2
 License:   GPL v2+
 Group: X11/Applications
 Source0:   https://downloads.sourceforge.net/lxde/%{name}-%{version}.tar.xz


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/lxhotkey.git/commitdiff/fdcc14bae65be796bf171f51ee90016248285257

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


[packages/lxterminal] - build with gtk3 by default

2024-04-22 Thread hawk
commit 0d33e386aff12b7f1befa49eca3334d0ed076b8c
Author: Marcin Krol 
Date:   Mon Apr 22 22:20:45 2024 +0200

- build with gtk3 by default

 lxterminal.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/lxterminal.spec b/lxterminal.spec
index 1cf233c..5536a71 100644
--- a/lxterminal.spec
+++ b/lxterminal.spec
@@ -1,12 +1,12 @@
 #
 # Conditional build:
-%bcond_withgtk3# use GTK+3 instead of GTK+2
+%bcond_without gtk3# use GTK+3 instead of GTK+2
 
 Summary:   LXTerminal - the standard terminal emulator of LXDE
 Summary(pl.UTF-8): LXTerminal - standardowy emulator terminala dla LXDE
 Name:  lxterminal
 Version:   0.4.0
-Release:   1
+Release:   2
 License:   GPL v2
 Group: X11/Applications
 Source0:   https://downloads.sourceforge.net/lxde/%{name}-%{version}.tar.xz


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/lxterminal.git/commitdiff/0d33e386aff12b7f1befa49eca3334d0ed076b8c

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


[packages/gpicview] - build with gtk3 by default

2024-04-22 Thread hawk
commit 12668154281bd2257d1d75db187f53eb8bfc0d76
Author: Marcin Krol 
Date:   Mon Apr 22 22:04:50 2024 +0200

- build with gtk3 by default

 gpicview.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/gpicview.spec b/gpicview.spec
index 503b865..3ee9a4c 100644
--- a/gpicview.spec
+++ b/gpicview.spec
@@ -1,12 +1,12 @@
 #
 # Conditional build:
-%bcond_withgtk3# use GTK+3 instead of GTK+2
+%bcond_without gtk3# use GTK+3 instead of GTK+2
 
 Summary:   GPicView: Picture viewer of LXDE
 Summary(pl.UTF-8): GPicView - przeglądarka obrazków dla LXDE
 Name:  gpicview
 Version:   0.2.5
-Release:   1
+Release:   2
 License:   GPL v2+
 Group: X11/Applications
 Source0:   https://downloads.sourceforge.net/lxde/%{name}-%{version}.tar.xz


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/gpicview.git/commitdiff/12668154281bd2257d1d75db187f53eb8bfc0d76

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


[packages/perl-PPIx-QuoteLike] - fix interpreter shebang in examples

2024-04-22 Thread hawk
commit 78edf1cd8c8b45a9c9c7215e120f4ca50d61c671
Author: Marcin Krol 
Date:   Mon Apr 22 18:38:23 2024 +0200

- fix interpreter shebang in examples

 perl-PPIx-QuoteLike.spec | 3 +++
 1 file changed, 3 insertions(+)
---
diff --git a/perl-PPIx-QuoteLike.spec b/perl-PPIx-QuoteLike.spec
index 47ff3b2..2a227c8 100644
--- a/perl-PPIx-QuoteLike.spec
+++ b/perl-PPIx-QuoteLike.spec
@@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT
 install -d $RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version}
 cp -a eg $RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version}
 
+%{__sed} -i -e '1s,/usr/bin/env perl,/usr/bin/perl,' \
+   $RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version}/eg/pqldump
+
 %clean
 rm -rf $RPM_BUILD_ROOT
 


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/perl-PPIx-QuoteLike.git/commitdiff/78edf1cd8c8b45a9c9c7215e120f4ca50d61c671

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


[packages/perl-PPIx-Regexp] - cosmetics

2024-04-22 Thread hawk
commit c679d86c2d262e47942213aab1b26f1cc942042c
Author: Marcin Krol 
Date:   Mon Apr 22 18:37:11 2024 +0200

- cosmetics

 perl-PPIx-Regexp.spec | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
---
diff --git a/perl-PPIx-Regexp.spec b/perl-PPIx-Regexp.spec
index 56a60ba..e3d642b 100644
--- a/perl-PPIx-Regexp.spec
+++ b/perl-PPIx-Regexp.spec
@@ -56,8 +56,9 @@ rm -rf $RPM_BUILD_ROOT
 
 install -d $RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version}
 cp -a eg/* $RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version}
+
 %{__sed} -i -e '1s,/usr/bin/env perl,/usr/bin/perl,' \
-$RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version}/preslurp
+   $RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version}/preslurp
 
 %clean
 rm -rf $RPM_BUILD_ROOT


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/perl-PPIx-Regexp.git/commitdiff/c679d86c2d262e47942213aab1b26f1cc942042c

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


[packages/perl-PPIx-Regexp] - fix interpreter shebang in examples

2024-04-22 Thread hawk
commit 2ab869724bfa4e71dc13e8c161d6b381e0f87a18
Author: Marcin Krol 
Date:   Mon Apr 22 18:27:33 2024 +0200

- fix interpreter shebang in examples

 perl-PPIx-Regexp.spec | 2 ++
 1 file changed, 2 insertions(+)
---
diff --git a/perl-PPIx-Regexp.spec b/perl-PPIx-Regexp.spec
index 335f362..56a60ba 100644
--- a/perl-PPIx-Regexp.spec
+++ b/perl-PPIx-Regexp.spec
@@ -56,6 +56,8 @@ rm -rf $RPM_BUILD_ROOT
 
 install -d $RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version}
 cp -a eg/* $RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version}
+%{__sed} -i -e '1s,/usr/bin/env perl,/usr/bin/perl,' \
+$RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version}/preslurp
 
 %clean
 rm -rf $RPM_BUILD_ROOT


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/perl-PPIx-Regexp.git/commitdiff/2ab869724bfa4e71dc13e8c161d6b381e0f87a18

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


[packages/perl-Sys-Hostname-Long] - disable debug packages

2024-04-22 Thread hawk
commit 4395b56956ea2194a4d2b476c02ad21296079b56
Author: Marcin Krol 
Date:   Mon Apr 22 18:17:02 2024 +0200

- disable debug packages

 perl-Sys-Hostname-Long.spec | 2 ++
 1 file changed, 2 insertions(+)
---
diff --git a/perl-Sys-Hostname-Long.spec b/perl-Sys-Hostname-Long.spec
index 6b2a483..8e5fc62 100644
--- a/perl-Sys-Hostname-Long.spec
+++ b/perl-Sys-Hostname-Long.spec
@@ -18,6 +18,8 @@ BuildRequires:perl-devel >= 1:5.8.0
 BuildRequires: rpm-perlprov >= 4.1-13
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
+%define_debugsource_packages   0
+
 %description
 Sys::Hostname::Long - Try every conceivable way to get full hostname.
 


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/perl-Sys-Hostname-Long.git/commitdiff/4395b56956ea2194a4d2b476c02ad21296079b56

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


[packages/libpwquality] - disable python buildings, we are building it outside "make" - make python 2.x bindings optional

2024-04-04 Thread hawk
commit 8a81ac5326af143967bbc0b39ad97fed730a18eb
Author: Marcin Krol 
Date:   Fri Apr 5 01:43:53 2024 +0200

- disable python buildings, we are building it outside "make"
- make python 2.x bindings optional

 libpwquality.spec | 10 +-
 1 file changed, 9 insertions(+), 1 deletion(-)
---
diff --git a/libpwquality.spec b/libpwquality.spec
index e0cce8e..e291d41 100644
--- a/libpwquality.spec
+++ b/libpwquality.spec
@@ -1,5 +1,6 @@
 #
 # Conditional build
+%bcond_without python2 # Python 2 module
 %bcond_without python3 # Python 3 module
 %bcond_without static_libs # static library
 
@@ -21,7 +22,7 @@ BuildRequires:gettext-tools >= 0.18.2
 BuildRequires: libtool
 BuildRequires: pam-devel
 BuildRequires: pkgconfig
-BuildRequires: python-devel >= 2
+%{?with_python2:BuildRequires: python-devel >= 2}
 %{?with_python3:BuildRequires: python3-devel >= 1:3.2}
 Suggests:  cracklib-dicts >= 2.8
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
@@ -108,14 +109,17 @@ Wiązania Pythona 3 do biblioteki libpwquality.
 %{__automake}
 %configure \
--with-securedir=/%{_lib}/security \
+   --disable-python-bindings \
%{__enable_disable static_libs static}
 
 %{__make}
 
+%if %{with python2}
 cd python
 CFLAGS="%{rpmcflags} -fno-strict-aliasing"
 %py_build
 cd ..
+%endif
 
 %if %{with python3}
 cd python
@@ -128,9 +132,11 @@ rm -rf $RPM_BUILD_ROOT
 %{__make} install \
DESTDIR=$RPM_BUILD_ROOT
 
+%if %{with python2}
 cd python
 %py_install
 cd ..
+%endif
 
 %if %{with python3}
 cd python
@@ -182,12 +188,14 @@ rm -rf $RPM_BUILD_ROOT
 %{_libdir}/libpwquality.a
 %endif
 
+%if %{with python2}
 %files -n python-pwquality
 %defattr(644,root,root,755)
 %attr(755,root,root) %{py_sitedir}/pwquality.so
 %if "%{py_ver}" > "2.4"
 %{py_sitedir}/pwquality-%{version}-py*.egg-info
 %endif
+%endif
 
 %if %{with python3}
 %files -n python3-pwquality


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/libpwquality.git/commitdiff/8a81ac5326af143967bbc0b39ad97fed730a18eb

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


[packages/samba] - don't try to stop nmbd or check its status if it is disabled

2024-04-04 Thread hawk
commit 8e0e313533b357ede87b194bdaa838e3b08cb182
Author: Marcin Krol 
Date:   Thu Apr 4 21:22:41 2024 +0200

- don't try to stop nmbd or check its status if it is disabled

 smb.init | 16 +++-
 1 file changed, 11 insertions(+), 5 deletions(-)
---
diff --git a/smb.init b/smb.init
index 9b7f923..ded9c30 100755
--- a/smb.init
+++ b/smb.init
@@ -73,8 +73,11 @@ stop() {
msg_stopping "Samba SMB/CIFS Server"
killproc --pidfile $smbd_pidfile smbd
 
-   msg_stopping "Samba NetBIOS Name Server"
-   killproc --pidfile $nmbd_pidfile nmbd
+   NMBD_DISABLED=`testparm -s --parameter-name='disable netbios' 
2>/dev/null`
+   if [ "$NMBD_DISABLED" != Yes ]; then
+   msg_stopping "Samba NetBIOS Name Server"
+   killproc --pidfile $nmbd_pidfile nmbd
+   fi
rm -f /var/lock/subsys/$lockname >/dev/null 2>&1
 }
 
@@ -104,9 +107,12 @@ condrestart() {
 rc_status() {
status smbd
RETVAL=$?
-   status nmbd
-   RET=$?
-   [ $RETVAL -eq 0 ] && RETVAL=$RET
+   NMBD_DISABLED=`testparm -s --parameter-name='disable netbios' 
2>/dev/null`
+   if [ "$NMBD_DISABLED" != Yes ]; then
+   status nmbd
+   RET=$?
+   [ $RETVAL -eq 0 ] && RETVAL=$RET
+   fi
 }
 
 RETVAL=0


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/samba.git/commitdiff/8e0e313533b357ede87b194bdaa838e3b08cb182

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


DISTFILES: elogind: elogind-252.23.tar.gz

2024-04-03 Thread hawk
Request by: hawk


Files fetched: 1

STORED: https://github.com/elogind/elogind/archive/v252.23/elogind-252.23.tar.gz
7e93e0df7348edac3c9fb1223a7deda8  elogind-252.23.tar.gz
Size: 1934450 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/elogind] - updated to 252.23, added BRs required to build all man pages

2024-04-03 Thread hawk
commit 40543ed7695237c5ee913fba7b612614acd6601d
Author: Marcin Krol 
Date:   Thu Apr 4 00:11:55 2024 +

- updated to 252.23, added BRs required to build all man pages

 elogind.spec | 9 ++---
 1 file changed, 6 insertions(+), 3 deletions(-)
---
diff --git a/elogind.spec b/elogind.spec
index 1a3f8ea..ac1f5b0 100644
--- a/elogind.spec
+++ b/elogind.spec
@@ -1,17 +1,19 @@
 Summary:   Elogind User, Seat and Session Manager
 Summary(pl.UTF-8): Elogind - zarządca użytkowników, stanowisk i sesji
 Name:  elogind
-Version:   252.9
-Release:   2
+Version:   252.23
+Release:   1
 License:   LGPL v2.1+
 Group: Daemons
 # Source0Download: https://github.com/elogind/elogind/releases
 Source0:   
https://github.com/elogind/elogind/archive/v%{version}/%{name}-%{version}.tar.gz
-# Source0-md5: 2be2c43298e2fc41c5bee33dde605f01
+# Source0-md5: 7e93e0df7348edac3c9fb1223a7deda8
 URL:   https://github.com/elogind/elogind
 BuildRequires: acl-devel
 BuildRequires: audit-libs-devel
 BuildRequires: dbus-devel >= 1.4.0
+BuildRequires: docbook-dtd42-xml
+BuildRequires: docbook-dtd45-xml
 BuildRequires: gcc >= 5:3.2
 BuildRequires: gettext-tools
 # checked, but finally not used
@@ -25,6 +27,7 @@ BuildRequires:meson >= 0.53.2
 BuildRequires: ninja
 BuildRequires: pam-devel >= 1:1.1.2
 BuildRequires: pcre2-8-devel
+BuildRequires: python3-lxml
 BuildRequires: rpm-build >= 4.6
 BuildRequires: rpmbuild(macros) >= 1.727
 BuildRequires: udev-devel >= 1:185


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/elogind.git/commitdiff/40543ed7695237c5ee913fba7b612614acd6601d

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


[packages/polkit] - drop elogind.patch, applied upstream

2024-04-03 Thread hawk
commit b872ca5664b2cbdf656210950cd569abfe89ec44
Author: Marcin Krol 
Date:   Thu Apr 4 01:28:14 2024 +0200

- drop elogind.patch, applied upstream

 elogind.patch | 24 
 polkit.spec   |  4 
 2 files changed, 28 deletions(-)
---
diff --git a/polkit.spec b/polkit.spec
index 131e176..3bd966a 100644
--- a/polkit.spec
+++ b/polkit.spec
@@ -19,7 +19,6 @@ Group:Libraries
 Source0:   
https://gitlab.freedesktop.org/polkit/polkit/-/archive/%{version}/%{name}-%{version}.tar.bz2
 # Source0-md5: 5cb95118e21d0cf2348069847c3879e8
 Patch0:systemd-fallback.patch
-Patch1:elogind.patch
 URL:   https://www.freedesktop.org/wiki/Software/polkit
 BuildRequires: dbus-devel
 BuildRequires: docbook-dtd412-xml
@@ -115,9 +114,6 @@ Pliki nagłówkowe PolicyKit.
 %if %{with consolekit} && (%{with systemd} || %{with elogind})
 %patch0 -p1
 %endif
-%if %{with elogind}
-%patch1 -p1
-%endif
 
 %build
 %meson build \
diff --git a/elogind.patch b/elogind.patch
deleted file mode 100644
index 2eb5ce4..000
--- a/elogind.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-diff -ur polkit-122.orig/data/meson.build polkit-122/data/meson.build
 polkit-122.orig/data/meson.build   2022-10-26 14:12:24.0 +0200
-+++ polkit-122/data/meson.build2023-07-22 13:01:22.590545340 +0200
-@@ -26,7 +26,7 @@
-   )
- endif
- 
--if enable_logind
-+if session_tracking == 'libsystemd-login'
-   configure_file(
- input: 'polkit.service.in',
- output: '@BASENAME@',
-diff -ur polkit-122.orig/meson.build polkit-122/meson.build
 polkit-122.orig/meson.build2022-10-26 14:12:24.0 +0200
-+++ polkit-122/meson.build 2023-07-22 13:00:31.328819850 +0200
-@@ -204,7 +204,7 @@
- 
-   # systemd unit / service files
-   systemd_systemdsystemunitdir = get_option('systemdsystemunitdir')
--  if systemd_systemdsystemunitdir == ''
-+  if systemd_systemdsystemunitdir == '' and session_tracking == 
'libsystemd-login'
- systemd_dep = dependency('systemd', not_found_message: 'systemd required 
but not found, please provide a valid systemd user unit dir or disable it')
- # FIXME: systemd.pc file does not use variables with relative paths, so 
`define_variable` cannot be used
- systemd_systemdsystemunitdir = 
systemd_dep.get_pkgconfig_variable('systemdsystemunitdir')


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/polkit.git/commitdiff/b872ca5664b2cbdf656210950cd569abfe89ec44

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


DISTFILES: shaderc: shaderc-2024.0.tar.gz

2024-04-03 Thread hawk
Request by: hawk


Files fetched: 1

STORED: https://github.com/google/shaderc/archive/v2024.0/shaderc-2024.0.tar.gz
c29fbe8f3c10fc0097e04327e1f64a73  shaderc-2024.0.tar.gz
Size: 227125 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/shaderc] - updated to 2024.0

2024-04-03 Thread hawk
commit 704ab2b8412f5104782fbf0958a7c0fb497404d0
Author: Marcin Krol 
Date:   Thu Apr 4 01:13:18 2024 +0200

- updated to 2024.0

 shaderc-shared.patch  | 45 -
 shaderc-system-libs.patch | 25 ++---
 shaderc.spec  |  4 ++--
 3 files changed, 40 insertions(+), 34 deletions(-)
---
diff --git a/shaderc.spec b/shaderc.spec
index d29574f..081688d 100644
--- a/shaderc.spec
+++ b/shaderc.spec
@@ -2,13 +2,13 @@
 Summary:   Collection of tools, libraries and tests for shader compilation
 Summary(pl.UTF-8): Zestaw narzędzi, bibliotek i testów do kompilacji 
shaderów
 Name:  shaderc
-Version:   2023.8
+Version:   2024.0
 Release:   1
 License:   Apache v2.0
 Group: Libraries
 #Source0Download: https://github.com/google/shaderc/tags
 Source0:   
https://github.com/google/shaderc/archive/v%{version}/%{name}-%{version}.tar.gz
-# Source0-md5: 28051b01db5b263f015ad363977ba610
+# Source0-md5: c29fbe8f3c10fc0097e04327e1f64a73
 Patch0:%{name}-system-libs.patch
 Patch1:%{name}-shared.patch
 URL:   https://github.com/google/shaderc
diff --git a/shaderc-shared.patch b/shaderc-shared.patch
index 3d9f321..ff7577d 100644
--- a/shaderc-shared.patch
+++ b/shaderc-shared.patch
@@ -1,16 +1,17 @@
 shaderc-2021.0/libshaderc/CMakeLists.txt.orig  2021-04-28 
20:30:58.667969817 +0200
-+++ shaderc-2021.0/libshaderc/CMakeLists.txt   2021-04-28 20:31:43.873665942 
+0200
-@@ -41,7 +41,7 @@ target_compile_definitions(shaderc_share
- PRIVATE SHADERC_IMPLEMENTATION
- PUBLIC SHADERC_SHAREDLIB
- )
--set_target_properties(shaderc_shared PROPERTIES SOVERSION 1)
-+set_target_properties(shaderc_shared PROPERTIES OUTPUT_NAME shaderc SOVERSION 
1)
+diff -urNp -x '*.orig' shaderc-2024.0.org/CMakeLists.txt 
shaderc-2024.0/CMakeLists.txt
+--- shaderc-2024.0.org/CMakeLists.txt  2024-04-04 01:12:49.909224636 +0200
 shaderc-2024.0/CMakeLists.txt  2024-04-04 01:12:49.953225227 +0200
+@@ -158,6 +158,6 @@ function(define_pkg_config_file NAME LIB
+   endif()
+ endfunction()
  
- if(SHADERC_ENABLE_INSTALL)
-   install(
 shaderc-2023.8/glslc/CMakeLists.txt.orig   2024-01-03 18:45:00.0 
+0100
-+++ shaderc-2023.8/glslc/CMakeLists.txt2024-02-18 10:19:55.923036871 
+0100
+-define_pkg_config_file(shaderc -lshaderc_shared)
++define_pkg_config_file(shaderc -lshaderc)
+ define_pkg_config_file(shaderc_static "-lshaderc 
${EXTRA_STATIC_PKGCONFIG_LIBS} -lshaderc_util")
+ define_pkg_config_file(shaderc_combined -lshaderc_combined)
+diff -urNp -x '*.orig' shaderc-2024.0.org/glslc/CMakeLists.txt 
shaderc-2024.0/glslc/CMakeLists.txt
+--- shaderc-2024.0.org/glslc/CMakeLists.txt2024-03-08 19:52:40.0 
+0100
 shaderc-2024.0/glslc/CMakeLists.txt2024-04-04 01:12:49.953225227 
+0200
 @@ -30,7 +30,7 @@ add_library(glslc STATIC
  )
  
@@ -40,13 +41,15 @@
  add_dependencies(glslc_exe build-version)
  
  shaderc_add_tests(
 shaderc-2021.0/CMakeLists.txt.orig 2021-05-02 21:59:17.590975179 +0200
-+++ shaderc-2021.0/CMakeLists.txt  2021-05-02 22:00:32.646136904 +0200
-@@ -150,6 +150,6 @@
-   endif()
- endfunction()
+diff -urNp -x '*.orig' shaderc-2024.0.org/libshaderc/CMakeLists.txt 
shaderc-2024.0/libshaderc/CMakeLists.txt
+--- shaderc-2024.0.org/libshaderc/CMakeLists.txt   2024-03-08 
19:52:40.0 +0100
 shaderc-2024.0/libshaderc/CMakeLists.txt   2024-04-04 01:12:49.953225227 
+0200
+@@ -41,7 +41,7 @@ target_compile_definitions(shaderc_share
+ PRIVATE SHADERC_IMPLEMENTATION
+ PUBLIC SHADERC_SHAREDLIB
+ )
+-set_target_properties(shaderc_shared PROPERTIES SOVERSION 1)
++set_target_properties(shaderc_shared PROPERTIES OUTPUT_NAME shaderc SOVERSION 
1)
  
--define_pkg_config_file(shaderc -lshaderc_shared)
-+define_pkg_config_file(shaderc -lshaderc)
- define_pkg_config_file(shaderc_static "-lshaderc 
${EXTRA_STATIC_PKGCONFIG_LIBS} -lshaderc_util")
- define_pkg_config_file(shaderc_combined -lshaderc_combined)
+ if(SHADERC_ENABLE_INSTALL)
+   install(
diff --git a/shaderc-system-libs.patch b/shaderc-system-libs.patch
index f3d8272..2f58704 100644
--- a/shaderc-system-libs.patch
+++ b/shaderc-system-libs.patch
@@ -1,6 +1,7 @@
 shaderc-2021.0/CMakeLists.txt.orig 2021-04-21 23:13:25.0 +0200
-+++ shaderc-2021.0/CMakeLists.txt  2021-04-28 20:29:52.644518932 +0200
-@@ -112,7 +112,8 @@ endif(MSVC)
+diff -urNp -x '*.orig' shaderc-2024.0.org/CMakeLists.txt 
shaderc-2024.0/CMakeLists.txt
+--- shaderc-2024.0.org/CMakeLists.txt  2024-03-08 19:52:40.0 +0100
 shaderc-2024.0/CMakeLists.txt  2024-04-04 01:12:30.772967746 +0200
+@@ -120,7 +120,8 @@ endif(MSVC)
  
  # Configure subdirectories.
  # We depend on these for later projects, so they should come first.
@@ -10,28 +11,30 @@
  
  add_subdirectory(libshaderc_util)
  add_subdirectory(libshaderc)
-@@ -124,7 +125,7 @@ endif()
+@@ -132,7 +133,7 @@ endif()
  

[packages/libqb] - allow building on systems without systemd

2024-04-03 Thread hawk
commit c2c741a9b858974133740d9efa862eaf4e5c7a0d
Author: Marcin Krol 
Date:   Wed Apr 3 23:49:08 2024 +0200

- allow building on systems without systemd

 libqb.spec | 6 --
 1 file changed, 4 insertions(+), 2 deletions(-)
---
diff --git a/libqb.spec b/libqb.spec
index 3530252..08f3981 100644
--- a/libqb.spec
+++ b/libqb.spec
@@ -1,6 +1,7 @@
 #
 # Conditional build:
 %bcond_without static_libs # static library
+%bcond_without systemd # systemd
 %bcond_withtests   # "make check" call
 #
 Summary:   libqb - high performance client server reusable features
@@ -19,7 +20,7 @@ BuildRequires:doxygen
 BuildRequires: glib2-devel >= 2.0
 BuildRequires: libxml2-devel >= 2.0
 BuildRequires: pkgconfig
-BuildRequires: systemd-devel >= 1:209
+%{?with_systemd:BuildRequires: systemd-devel >= 1:209}
 BuildRequires: tar >= 1:1.22
 BuildRequires: xz
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
@@ -64,7 +65,8 @@ Statyczna biblioteka libqb.
 %build
 %configure \
--disable-silent-rules \
-   %{!?with_static_libs:--disable-static}
+   %{!?with_static_libs:--disable-static} \
+   %{!?with_systemd:--disable-systemd-journal}
 %{__make}
 
 %if %{with tests}


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/libqb.git/commitdiff/c2c741a9b858974133740d9efa862eaf4e5c7a0d

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


[packages/libproxy] - bcond for NetworkManager module

2024-04-03 Thread hawk
commit b3eb14b2b7429f531d8fe7ac7d2adbce24167c91
Author: Marcin Krol 
Date:   Wed Apr 3 21:24:34 2024 +

- bcond for NetworkManager module

 libproxy.spec | 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)
---
diff --git a/libproxy.spec b/libproxy.spec
index f4ad6dc..a92c86b 100644
--- a/libproxy.spec
+++ b/libproxy.spec
@@ -5,6 +5,7 @@
 # Conditional build:
 %bcond_without duktape # Duktape pacrunner plugin
 %bcond_without kde # KDE 4/5 config plugin
+%bcond_without nm  # NetworkManager pacrunner plugin
 %bcond_without mono# Mono C# bindings
 %bcond_without mozjs   # MozJS pacrunner plugin
 %bcond_withnatus   # Natus pacrunner plugin [doesn't build with 
natus 0.2.1]
@@ -27,7 +28,7 @@ Source0:  
https://github.com/libproxy/libproxy/archive/%{version}/%{name}-%{versi
 # Source0-md5: 21d13e5d699c3c21ab5eb2260ed9247a
 Patch0:%{name}-pac-modules.patch
 URL:   https://libproxy.github.io/libproxy/
-BuildRequires: NetworkManager-devel
+%{?with_nm:BuildRequires:  NetworkManager-devel}
 BuildRequires: cmake >= 2.6
 BuildRequires: dbus-devel
 %{?with_duktape:BuildRequires: duktape-devel}
@@ -274,6 +275,7 @@ cd build
%{!?with_duktape:-DWITH_DUKTAPE=OFF} \
%{!?with_kde:-DWITH_KDE=OFF} \
%{?with_mozjs:-DWITH_MOZJS=ON} \
+   %{!?with_nm:-DWITH_NM=OFF} \
-DWITH_VALA=ON \
%{!?with_webkit:-DWITH_WEBKIT=OFF} \
%{?with_webkit:-DWITH_WEBKIT3=ON}
@@ -354,9 +356,11 @@ rm -rf $RPM_BUILD_ROOT
 %defattr(644,root,root,755)
 %{_datadir}/vala/vapi/libproxy-1.0.vapi
 
+%if %{with kde}
 %files networkmanager
 %defattr(644,root,root,755)
 %attr(755,root,root) 
%{_libdir}/%{name}/%{version}/modules/network_networkmanager.so
+%endif
 
 %files gnome
 %defattr(644,root,root,755)


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/libproxy.git/commitdiff/b3eb14b2b7429f531d8fe7ac7d2adbce24167c91

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


[packages/libproxy] - bconds for python2/python3 bindings

2024-04-03 Thread hawk
commit 5355ff44aee1db84fd4d1a7c1e3cfa4d9d24ea92
Author: Marcin Krol 
Date:   Wed Apr 3 23:17:43 2024 +0200

- bconds for python2/python3 bindings

 libproxy.spec | 24 ++--
 1 file changed, 18 insertions(+), 6 deletions(-)
---
diff --git a/libproxy.spec b/libproxy.spec
index 38a86f6..f4ad6dc 100644
--- a/libproxy.spec
+++ b/libproxy.spec
@@ -3,12 +3,14 @@
 # - ruby binding (not finished as of 0.4.8 - no buildsystem)
 #
 # Conditional build:
-%bcond_without kde # KDE 4/5 config plugin
 %bcond_without duktape # Duktape pacrunner plugin
+%bcond_without kde # KDE 4/5 config plugin
+%bcond_without mono# Mono C# bindings
 %bcond_without mozjs   # MozJS pacrunner plugin
 %bcond_withnatus   # Natus pacrunner plugin [doesn't build with 
natus 0.2.1]
+%bcond_without python2 # Python 2.x bindings
+%bcond_without python3 # Python 3.x bindings
 %bcond_without webkit  # WebKit pacrunner plugin
-%bcond_without mono# Mono C# bindings
 
 %ifarch x32
 %undefine  with_mono
@@ -37,10 +39,10 @@ BuildRequires:  libstdc++-devel >= 6:7
 %{?with_natus:BuildRequires:   natus-devel}
 BuildRequires: perl-devel >= 1:5.8.0
 BuildRequires: pkgconfig
-BuildRequires: python-devel >= 1:2.5
-BuildRequires: python-modules >= 1:2.5
-BuildRequires: python3-devel >= 1:3.2
-BuildRequires: python3-modules >= 1:3.2
+%{?with_python2:BuildRequires: python-devel >= 1:2.5}
+%{?with_python2:BuildRequires: python-modules >= 1:2.5}
+%{?with_python3:BuildRequires: python3-devel >= 1:3.2}
+%{?with_python3:BuildRequires: python3-modules >= 1:3.2}
 BuildRequires: rpm-perlprov >= 4.1-13
 BuildRequires: rpm-pythonprov
 BuildRequires: rpmbuild(macros) >= 1.752
@@ -265,7 +267,9 @@ cd build
-DLIBEXEC_INSTALL_DIR=%{_libdir}/libproxy \
-DPERL_VENDORINSTALL=ON \
-DPYTHON2_SITEPKG_DIR=%{py_sitescriptdir} \
+   %{!?with_python2:-DPYTHON2=OFF} \
-DPYTHON3_SITEPKG_DIR=%{py3_sitescriptdir} \
+   %{!?with_python3:-DPYTHON3=OFF} \
%{?with_mono:-DWITH_DOTNET=ON -DGMCS_EXECUTABLE=/usr/bin/mcs} \
%{!?with_duktape:-DWITH_DUKTAPE=OFF} \
%{!?with_kde:-DWITH_KDE=OFF} \
@@ -282,12 +286,16 @@ rm -rf $RPM_BUILD_ROOT
 %{__make} -C build install \
DESTDIR=$RPM_BUILD_ROOT
 
+%if %{with python2}
 %py_comp $RPM_BUILD_ROOT%{py_sitescriptdir}
 %py_ocomp $RPM_BUILD_ROOT%{py_sitescriptdir}
 %py_postclean
+%endif
 
+%if %{with python3}
 %py3_comp $RPM_BUILD_ROOT%{py3_sitescriptdir}
 %py3_ocomp $RPM_BUILD_ROOT%{py3_sitescriptdir}
+%endif
 
 %clean
 rm -rf $RPM_BUILD_ROOT
@@ -329,14 +337,18 @@ rm -rf $RPM_BUILD_ROOT
 %dir %{perl_vendorarch}/auto/Net/Libproxy
 %attr(755,root,root) %{perl_vendorarch}/auto/Net/Libproxy/Libproxy.so
 
+%if %{with python2}
 %files -n python-libproxy
 %defattr(644,root,root,755)
 %{py_sitescriptdir}/libproxy.py[co]
+%endif
 
+%if %{with python2}
 %files -n python3-libproxy
 %defattr(644,root,root,755)
 %{py3_sitescriptdir}/libproxy.py
 %{py3_sitescriptdir}/__pycache__/libproxy.cpython-*.py[co]
+%endif
 
 %files -n vala-libproxy
 %defattr(644,root,root,755)


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/libproxy.git/commitdiff/5355ff44aee1db84fd4d1a7c1e3cfa4d9d24ea92

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


[packages/libcgroup] - allow building without python bindings (which are still experimental even in newest 3.x release)

2024-04-03 Thread hawk
commit e2916cc6c3ed152e38d096ef2743c6258382c2a2
Author: Marcin Krol 
Date:   Wed Apr 3 22:39:49 2024 +0200

- allow building without python bindings (which are still experimental
  even in newest 3.x release)

 libcgroup.spec | 10 --
 1 file changed, 8 insertions(+), 2 deletions(-)
---
diff --git a/libcgroup.spec b/libcgroup.spec
index f5f2a08..1399d4b 100644
--- a/libcgroup.spec
+++ b/libcgroup.spec
@@ -1,3 +1,5 @@
+%bcond_without python  # python bindings
+
 Summary:   Tools and library to control and monitor control groups
 Summary(pl.UTF-8): Narzędzia i biblioteka do kontrolowania i monitorowania 
grup kontroli
 Name:  libcgroup
@@ -29,7 +31,7 @@ BuildRequires:flex
 BuildRequires: libstdc++-devel
 BuildRequires: libtool >= 2:2
 BuildRequires: pam-devel
-BuildRequires: python-devel >= 2
+%{?with_python:BuildRequires:  python-devel >= 2}
 BuildRequires: rpmbuild(macros) >= 1.626
 BuildRequires: swig-python
 Requires(post,preun):  /sbin/chkconfig
@@ -133,7 +135,7 @@ Wiązania Pythona do biblioteki libcgroup.
--sbindir=/sbin \
--disable-silent-rules \
--disable-static \
-   --enable-bindings \
+   %{?with_python:--enable-bindings} \
--enable-initscript-install \
--enable-opaque-hierarchy="name=systemd" \
--enable-pam-module-dir=/%{_lib}/security
@@ -161,8 +163,10 @@ ln -snf ../../%{_lib}/$(basename 
$RPM_BUILD_ROOT/%{_lib}/libcgroup.so.*.*.*) $RP
 
 %{__rm} $RPM_BUILD_ROOT%{_libdir}/libcgroupfortesting.*
 
+%if %{with python}
 install -d $RPM_BUILD_ROOT%{py_sitedir}
 %{__mv} $RPM_BUILD_ROOT%{_libdir}/_libcgroup.so $RPM_BUILD_ROOT%{py_sitedir}
+%endif
 %{__rm} $RPM_BUILD_ROOT/%{_lib}/security/pam_cgroup.la
 %{__rm} $RPM_BUILD_ROOT%{_libdir}/*.la
 
@@ -270,6 +274,8 @@ fi
 %{_includedir}/libcgroup.h
 %{_pkgconfigdir}/libcgroup.pc
 
+%if %{with python}
 %files -n python-libcgroup
 %defattr(644,root,root,755)
 %attr(755,root,root) %{py_sitedir}/_libcgroup.so
+%endif


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/libcgroup.git/commitdiff/e2916cc6c3ed152e38d096ef2743c6258382c2a2

___
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-core] - allow building on systems without systemd

2024-04-02 Thread hawk
commit 2d754e37cce830b4eb1feb8e2f2c224d776c581a
Author: Marcin Krol 
Date:   Tue Apr 2 18:46:24 2024 +0200

- allow building on systems without systemd

 at-spi2-core.spec | 6 ++
 1 file changed, 6 insertions(+)
---
diff --git a/at-spi2-core.spec b/at-spi2-core.spec
index fba5c19..9fc664c 100644
--- a/at-spi2-core.spec
+++ b/at-spi2-core.spec
@@ -2,6 +2,7 @@
 # Conditional build:
 %bcond_without apidocs # API documentation
 %bcond_without static_libs # static library
+%bcond_without systemd # systemd
 
 Summary:   Protocol definitions and daemon for D-Bus at-spi
 Summary(pl-UTF-8): Definicje protokołu oraz demon at-spi dla usługi D-Bus
@@ -256,8 +257,13 @@ Dokumentacja API ATK.
 %meson build \
%{!?with_static_libs:--default-library='shared'} \
-Ddbus_daemon=/usr/bin/dbus-daemon \
+%if %{with systemd}
-Ddbus_broker=/usr/bin/dbus-broker-launch \
-Ddefault_bus=dbus-broker \
+%else
+   -Ddefault_bus=dbus-daemon \
+   -Duse_systemd=false \
+%endif
%{?with_apidocs:-Ddocs=true} \
-Dx11=enabled
 


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/at-spi2-core.git/commitdiff/2d754e37cce830b4eb1feb8e2f2c224d776c581a

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


DISTFILES: rsyslog: rsyslog-8.2402.0.tar.gz

2024-04-01 Thread hawk
Request by: hawk


Files fetched: 1

STORED: https://www.rsyslog.com/files/download/rsyslog/rsyslog-8.2402.0.tar.gz
422b7d457f184134a872a5a519d3884e  rsyslog-8.2402.0.tar.gz
Size: 3404026 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/rsyslog] - updated to 8.2402.0

2024-04-01 Thread hawk
commit 90e04b60d90159afd9048a2dfe8ee67da4cd94ca
Author: Marcin Krol 
Date:   Tue Apr 2 00:35:19 2024 +

- updated to 8.2402.0

 rsyslog.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/rsyslog.spec b/rsyslog.spec
index ff53e9a..585bb07 100644
--- a/rsyslog.spec
+++ b/rsyslog.spec
@@ -33,13 +33,13 @@ Summary(pl.UTF-8):  Programy logujące zdarzenia w systemie 
i jądrze Linuksa
 Summary(pt_BR.UTF-8):  Registrador de log do sistema linux
 Summary(tr.UTF-8): Linux sistem ve çekirdek kayıt süreci
 Name:  rsyslog
-Version:   8.2010.0
-Release:   2
+Version:   8.2402.0
+Release:   1
 License:   GPL v3+
 Group: Daemons
 #Source0Download: https://www.rsyslog.com/downloads/download-v8-stable/
 Source0:   
https://www.rsyslog.com/files/download/rsyslog/%{name}-%{version}.tar.gz
-# Source0-md5: 1203496f5fd57fbdc54426838de7dbfa
+# Source0-md5: 422b7d457f184134a872a5a519d3884e
 Source1:   %{name}.init
 Source2:   %{name}.conf
 Source3:   %{name}.sysconfig


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/rsyslog.git/commitdiff/90e04b60d90159afd9048a2dfe8ee67da4cd94ca

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


[packages/czmq] - allow building without systemd

2024-04-01 Thread hawk
commit 5af5d923c7304a2a5de9954b9b85b6734a730bd2
Author: Marcin Krol 
Date:   Tue Apr 2 02:10:01 2024 +0200

- allow building without systemd

 czmq.spec | 10 ++
 1 file changed, 6 insertions(+), 4 deletions(-)
---
diff --git a/czmq.spec b/czmq.spec
index 5c98939..d4eba51 100644
--- a/czmq.spec
+++ b/czmq.spec
@@ -2,6 +2,7 @@
 # Conditional build:
 %bcond_without python2 # CPython 2.x module
 %bcond_without python3 # CPython 3.x module
+%bcond_without systemd # systemd
 
 Summary:   High-level C binding for 0MQ
 Summary(pl.UTF-8): Wysokopoziomowe wiązania C dla 0MQ
@@ -33,11 +34,11 @@ BuildRequires:  python3-setuptools
 %endif
 BuildRequires: rpm-pythonprov
 BuildRequires: rpmbuild(macros) >= 1.714
-BuildRequires: systemd-devel >= 1:200
+%{?with_systemd:BuildRequires: systemd-devel >= 1:200}
 BuildRequires: xmlto
 BuildRequires: zeromq-devel >= 4
 Requires:  curl-libs >= 7.28.0
-Requires:  systemd-libs >= 1:200
+%{?with_systemd:Requires:  systemd-libs >= 1:200}
 Requires:  zeromq >= 4
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
@@ -56,7 +57,7 @@ Requires: curl-devel >= 7.28.0
 Requires:  libmicrohttpd-devel
 Requires:  libuuid-devel
 Requires:  lz4-devel
-Requires:  systemd-devel >= 1:200
+%{?with_systemd:Requires:  systemd-devel >= 1:200}
 Requires:  zeromq-devel >= 4
 
 %description devel
@@ -116,7 +117,8 @@ Wiązania Pythona 3 do CZMQ - wysokopoziomowego wiązania C 
do 0MQ.
--enable-bindings-python \
--enable-drafts \
--disable-silent-rules \
-   --includedir=%{_includedir}/czmq
+   --includedir=%{_includedir}/czmq \
+   %{!?with_systemd:--with-libsystemd=no}
 %{__make}
 
 cd bindings/python


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/czmq.git/commitdiff/5af5d923c7304a2a5de9954b9b85b6734a730bd2

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


[packages/perl-XML-SAX] - rediffed

2024-04-01 Thread hawk
commit 8d6ecd103a1815152e201841653f679264543561
Author: Marcin Krol 
Date:   Tue Apr 2 01:29:04 2024 +0200

- rediffed

 perl-XML-SAX-noalter.patch | 9 +
 1 file changed, 5 insertions(+), 4 deletions(-)
---
diff --git a/perl-XML-SAX-noalter.patch b/perl-XML-SAX-noalter.patch
index 7bb995b..12e06ae 100644
--- a/perl-XML-SAX-noalter.patch
+++ b/perl-XML-SAX-noalter.patch
@@ -1,7 +1,8 @@
 XML-SAX-1.00/Makefile.PL.orig  2018-09-29 22:48:19.110360595 +0200
-+++ XML-SAX-1.00/Makefile.PL   2018-09-29 22:49:23.560359858 +0200
-@@ -13,42 +13,3 @@
- },
+diff -urNp -x '*.orig' XML-SAX-1.02.org/Makefile.PL XML-SAX-1.02/Makefile.PL
+--- XML-SAX-1.02.org/Makefile.PL   2019-06-14 01:33:42.0 +0200
 XML-SAX-1.02/Makefile.PL   2024-04-02 01:28:46.729057228 +0200
+@@ -23,42 +23,3 @@ WriteMakefile(
+ },
  );
  
 -sub MY::install {


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/perl-XML-SAX.git/commitdiff/8d6ecd103a1815152e201841653f679264543561

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


[packages/gcc-dirs] - empty debugsource, disable it

2024-04-01 Thread hawk
commit 83de2d09bbaada5940d57bfaa42460d9ad8293db
Author: Marcin Krol 
Date:   Mon Apr 1 21:49:01 2024 +0200

- empty debugsource, disable it

 gcc-dirs.spec | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
---
diff --git a/gcc-dirs.spec b/gcc-dirs.spec
index 6dc2b49..34adbc1 100644
--- a/gcc-dirs.spec
+++ b/gcc-dirs.spec
@@ -2,13 +2,15 @@ Summary:  Common dirs for GCC compilers and crosscompilers
 Summary(pl.UTF-8): Katalogi wspólne dla kompilatorów zwykłych i skrośnych 
z kolekcji GNU
 Name:  gcc-dirs
 Version:   1.0
-Release:   6
+Release:   7
 License:   free
 Group: Base
 Requires:  FHS
 Conflicts: gcc < 5:3.4.0
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
+%define_debugsource_packages   0
+
 %description
 Common dirs for GNU collection of compilers and crosscompilers.
 


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/gcc-dirs.git/commitdiff/83de2d09bbaada5940d57bfaa42460d9ad8293db

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


[packages/logcheck] - rediffed

2024-04-01 Thread hawk
commit 72eb62e97415e9617f9340d630101bd295c6eb46
Author: Marcin Krol 
Date:   Mon Apr 1 17:58:18 2024 +0200

- rediffed

 logcheck-command_correct.patch | 21 +++--
 logcheck-pld.patch |  5 +++--
 2 files changed, 14 insertions(+), 12 deletions(-)
---
diff --git a/logcheck-command_correct.patch b/logcheck-command_correct.patch
index a487cb2..406a3d4 100644
--- a/logcheck-command_correct.patch
+++ b/logcheck-command_correct.patch
@@ -1,24 +1,25 @@
 logcheck-1.2.47.orig/src/logcheck  2006-07-06 10:16:42.0 +
-+++ logcheck-1.2.47/src/logcheck   2006-10-08 22:30:26.0 +
-@@ -73,7 +73,7 @@
- STATEDIR="/var/lib/logcheck"
+diff -urNp -x '*.orig' logcheck.org/src/logcheck logcheck/src/logcheck
+--- logcheck.org/src/logcheck  2019-03-01 22:42:31.0 +0100
 logcheck/src/logcheck  2024-04-01 17:57:58.482699080 +0200
+@@ -75,7 +75,7 @@ STATEDIR="/var/lib/logcheck"
  LOGFILES_LIST="/etc/logcheck/logcheck.logfiles"
+ LOGFILES_LIST_D="/etc/logcheck/logcheck.logfiles.d"
  LOGFILE_FALLBACK="/var/log/syslog"
 -LOGTAIL="/usr/sbin/logtail2"
 +LOGTAIL="/usr/bin/logtail2"
  CAT="/bin/cat"
  SYSLOG_SUMMARY="/usr/bin/syslog-summary"
  
-@@ -205,7 +205,7 @@
+@@ -214,7 +214,7 @@ cleanrules() {
  
- if [ -d $dir ]; then 
+ if [ -d "$dir" ]; then
  if [ ! -d "$cleaned" ]; then
 -  mkdir "$cleaned" \
 +  install -d "$cleaned" \
|| error "Could not make dir $cleaned for cleaned rulefiles."
fi
# run-parts doesn't include files which are not readable. Use this
-@@ -623,7 +623,7 @@
+@@ -633,7 +633,7 @@ trap 'cleanup' 0
  
  debug "Trying to get lockfile: $LOCKFILE.lock"
  if [ ! -d "$LOCKDIR" ]; then
@@ -27,12 +28,12 @@
  fi
  lockfile-create --retry 1 "$LOCKFILE" > /dev/null 2>&1
  
-@@ -661,7 +661,7 @@
+@@ -676,7 +676,7 @@ fi
  
  # Get the list of log files from config file
  # Handle log rotation correctly, idea taken from Wiktor Niesiobedzki.
 -mkdir "$TMPDIR/logoutput" \
 +install -d "$TMPDIR/logoutput" \
  || error "Could not mkdir for log files"
- if [ ! $LOGFILE ] && [ -r $LOGFILES_LIST ]; then
- for file in $(egrep --text -v "(^#|^[[:space:]]*$)" $LOGFILES_LIST); do
+ LOGFILES=$(ls -1d "$LOGFILES_LIST" "$LOGFILES_LIST_D"/*.logfiles 2>/dev/null)
+ if [ ! "$LOGFILE" ] && [ -n "$LOGFILES" ]; then
diff --git a/logcheck-pld.patch b/logcheck-pld.patch
index 39d1059..f7b29bb 100644
--- a/logcheck-pld.patch
+++ b/logcheck-pld.patch
@@ -1,5 +1,6 @@
 logcheck-1.2.46/etc/logcheck.logfiles~ 2004-04-19 21:22:03.0 
+0300
-+++ logcheck-1.2.46/etc/logcheck.logfiles  2006-07-19 00:33:46.063944582 
+0300
+diff -urNp -x '*.orig' logcheck.org/etc/logcheck.logfiles 
logcheck/etc/logcheck.logfiles
+--- logcheck.org/etc/logcheck.logfiles 2015-12-10 19:14:10.0 +0100
 logcheck/etc/logcheck.logfiles 2024-04-01 17:57:58.254695929 +0200
 @@ -1,4 +1,4 @@
  # these files will be checked by logcheck
  # This has been tuned towards a default syslog install


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/logcheck.git/commitdiff/72eb62e97415e9617f9340d630101bd295c6eb46

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


DISTFILES: perl-Module-Build-Tiny: Module-Build-Tiny-0.047.tar.gz

2024-04-01 Thread hawk
Request by: hawk


Files fetched: 1

STORED: 
http://www.cpan.org/modules/by-module/Module/Module-Build-Tiny-0.047.tar.gz
de9814b3c22825837438fc70adad58ac  Module-Build-Tiny-0.047.tar.gz
Size: 22193 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/perl-Module-Build-Tiny] - updated to 0.047

2024-04-01 Thread hawk
commit 5337aab9ec106e33b7795f0d9cb96affa1e9809c
Author: Marcin Krol 
Date:   Mon Apr 1 17:42:20 2024 +0200

- updated to 0.047

 perl-Module-Build-Tiny.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/perl-Module-Build-Tiny.spec b/perl-Module-Build-Tiny.spec
index 31980ad..92be344 100644
--- a/perl-Module-Build-Tiny.spec
+++ b/perl-Module-Build-Tiny.spec
@@ -7,13 +7,13 @@
 Summary:   Module::Build::Tiny - A tiny replacement for Module::Build
 Summary(pl.UTF-8): Module::Build::Tiny - mały zamiennik systemu 
Module::Build
 Name:  perl-Module-Build-Tiny
-Version:   0.039
-Release:   3
+Version:   0.047
+Release:   1
 # same as perl
 License:   GPL v1+ or Artistic
 Group: Development/Languages/Perl
 Source0:   
http://www.cpan.org/modules/by-module/Module/%{pdir}-%{pnam}-%{version}.tar.gz
-# Source0-md5: 2332c90c17454107fea3f2614e11a3a9
+# Source0-md5: de9814b3c22825837438fc70adad58ac
 URL:   https://metacpan.org/release/Module-Build-Tiny
 BuildRequires: perl-Module-Build
 BuildRequires: perl-devel >= 1:5.8.0


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/perl-Module-Build-Tiny.git/commitdiff/5337aab9ec106e33b7795f0d9cb96affa1e9809c

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


[packages/rsync] - allow running multiple daemons with separate config files (based on openvpn.spec)

2024-04-01 Thread hawk
commit f18e8c7b73cbb79e61b60fa26a9da3e66c84414d
Author: Marcin Krol 
Date:   Mon Apr 1 13:36:50 2024 +0200

- allow running multiple daemons with separate config files
  (based on openvpn.spec)

 rsync.init   | 125 +++
 rsync.spec   |   3 +-
 rsync.sysconfig  |   4 ++
 rsyncd.logrotate |   2 +-
 4 files changed, 106 insertions(+), 28 deletions(-)
---
diff --git a/rsync.spec b/rsync.spec
index 8023f15..573f42b 100644
--- a/rsync.spec
+++ b/rsync.spec
@@ -198,7 +198,7 @@ cp -f /usr/share/automake/config.sub .
 
 %install
 rm -rf $RPM_BUILD_ROOT
-install -d 
$RPM_BUILD_ROOT{%{_sysconfdir},/etc/{sysconfig/rc-inetd,rc.d/init.d,logrotate.d,env.d},/var/log}
+install -d 
$RPM_BUILD_ROOT{%{_sysconfdir},/etc/{sysconfig/rc-inetd,rc.d/init.d,logrotate.d,env.d},/var/{log,run/rsyncd}}
 
 %{__make} install \
prefix=$RPM_BUILD_ROOT%{_prefix} \
@@ -288,4 +288,5 @@ fi
 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) 
/etc/logrotate.d/rsyncd
 %attr(640,root,root) %ghost /var/log/rsyncd.log
 %attr(754,root,root) /etc/rc.d/init.d/rsyncd
+%dir /var/run/rsyncd
 %{_mandir}/man5/rsyncd.conf.5*
diff --git a/rsync.init b/rsync.init
index 6f0ba5e..86f46e4 100644
--- a/rsync.init
+++ b/rsync.init
@@ -6,9 +6,22 @@
 # description: rsync daemon
 # processname: rsync
 #
-# pidfile: /var/run/rsyncd.pid
 
-# Source function library.
+# Get service config
+[ -f /etc/sysconfig/rsyncd ] && . /etc/sysconfig/rsyncd
+
+[ -n "$2" ] && DAEMONS="$2"
+
+# no daemons. exit silently
+if [ -z "$DAEMONS" ]; then
+   case "$1" in
+   start|stop|restart|reload|force-reload)
+   exit 0
+   ;;
+   esac
+fi
+
+# Source function library
 . /etc/rc.d/init.d/functions
 
 # Source networking configuration.
@@ -24,30 +37,66 @@ else
exit 0
 fi
 
-# Get service configuration
-[ -f /etc/sysconfig/rsyncd ] && . /etc/sysconfig/rsyncd
+# check if the daemon $1 is up
+daemonup() {
+   local daemon="$1"
+   local pidfile=/var/run/rsyncd/$daemon.pid
+   local pid=$(cat $pidfile 2>/dev/null)
+   kill -0 $pid 2>/dev/null
+   return $?
+}
+
+# check if all the configured daemons are up
+daemonsup() {
+local daemon
+ret=0
+for daemon in $DAEMONS; do
+daemonup $daemon && continue
+ret=1
+done
+return $ret
+}
 
 start() {
-   # Start daemons.
-   if [ ! -f /var/lock/subsys/rsyncd ]; then
-   msg_starting rsyncd
-   daemon /usr/bin/rsync --daemon 
--dparam=pidfile=/var/run/rsync.pid ${RSYNC_OPTIONS}
-   RETVAL=$?
-   [ $RETVAL -eq 0 ] && touch /var/lock/subsys/rsyncd
-   else
-   msg_already_running rsyncd
-   fi
+   msg_starting "rsyncd"; started
+   for daemon in $DAEMONS; do
+   config="/etc/rsyncd/$daemon.conf"
+   if [ ! -f "$config" ]; then
+   nls "Invalid daemon \`%s': missing config: %s" $daemon 
"$config"
+   fail
+   RET=1
+   else
+   daemonup $daemon && continue
+   show "Starting Rsync daemon %s" "$daemon"; busy
+   daemon /usr/bin/rsync --daemon --config=$config 
--dparam=pidfile=/var/run/rsyncd/$daemon.pid ${RSYNC_OPTIONS}
+   RET=$?
+   fi
+   [ $RETVAL -eq 0 ] && RETVAL=$RET
+   done
+   [ $RETVAL -eq 0 ] && touch /var/lock/subsys/rsyncd
 }
 
 stop() {
-   # Stop daemons.
-   if [ -f /var/lock/subsys/rsyncd ]; then
-   msg_stopping rsyncd
-   killproc rsync
-   rm -f /var/lock/subsys/rsyncd >/dev/null 2>&1
-   else
-   msg_not_running rsyncd
-   fi
+   msg_stopping "rsyncd"; started
+   for daemon in $DAEMONS; do
+   pidfile=/var/run/rsyncd/$daemon.pid
+   [ -f "$pidfile" ] || continue
+   pid=`cat "$pidfile"`
+   show "Stopping Rsync daemon %s" "$daemon"; busy
+   killproc --pidfile rsyncd/$daemon.pid || err=1
+   done
+   rm -f /var/lock/subsys/rsyncd >/dev/null 2>&1
+}
+
+reload() {
+   msg_reloading "rsyncd"; started
+   for daemon in $DAEMONS; do
+   pidfile=/var/run/rsyncd/$daemon.pid
+   [ -f "$pidfile" ] || continue
+   show "Reloading Rsync daemon %s" "$daemon"
+   killproc --pidfile rsyncd/$daemon.pid rsyncd -HUP
+   [ $? -ne 0 -a $RETVAL -eq 0 ] && RETVAL=7
+   done
 }
 
 condrestart() {
@@ -60,17 +109,41 @@ condrestart() {
fi
 }
 
+status() {
+   nls "Configured daemons:"
+   echo " $DAEMONS"
+   nls "Currently active daemons:"
+   for pidfile in /var/run/rsyncd/*.pid; do
+   [ -f "$pidfile" ] || continue
+   daemon=${pidfile#/var/run/rsyncd/}
+   

DISTFILES: llvm-libclc: libclc-17.0.4.src.tar.xz

2024-04-01 Thread hawk
Request by: hawk


Files fetched: 1

STORED: 
https://github.com/llvm/llvm-project/releases/download/llvmorg-17.0.4/libclc-17.0.4.src.tar.xz
8848371d2951d20f886529e084972a55  libclc-17.0.4.src.tar.xz
Size: 126400 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/llvm-libclc] - updated to LLVM 17.0.4

2024-04-01 Thread hawk
commit c53c56e6daf26176c8fd9c78c66b554133308181
Author: Marcin Krol 
Date:   Mon Apr 1 13:09:02 2024 +0200

- updated to LLVM 17.0.4

 llvm-libclc.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/llvm-libclc.spec b/llvm-libclc.spec
index 6f7317a..db46dbc 100644
--- a/llvm-libclc.spec
+++ b/llvm-libclc.spec
@@ -2,7 +2,7 @@ Summary:OpenCL C programming language library 
implementation
 Summary(pl.UTF-8): Implementacja biblioteki języka programowania OpenCL C
 Name:  llvm-libclc
 Version:   0.2.0
-%definellvm_ver11.0.1
+%definellvm_ver17.0.4
 %definellvm_dver   %(echo %{llvm_ver} | tr . _)
 %definerel 2
 Release:   1.llvm%{llvm_dver}.%{rel}
@@ -10,12 +10,12 @@ License:BSD-like or MIT
 Group: Libraries
 #Source0Download: https://github.com/llvm/llvm-project/releases/
 Source0:   
https://github.com/llvm/llvm-project/releases/download/llvmorg-%{llvm_ver}/libclc-%{llvm_ver}.src.tar.xz
-# Source0-md5: a441404cab86a1dd92be69ac8faa1dc7
+# Source0-md5: 8848371d2951d20f886529e084972a55
 URL:   https://libclc.llvm.org/
 BuildRequires: clang >= 3.9
 BuildRequires: cmake >= 3.9.2
 BuildRequires: llvm-devel >= 3.9
-BuildRequires: python >= 1:2.7
+BuildRequires: python3
 BuildRequires: rpmbuild(macros) >= 1.446
 Requires:  llvm-libs >= 3.9
 BuildArch: noarch


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/llvm-libclc.git/commitdiff/c53c56e6daf26176c8fd9c78c66b554133308181

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


Re: [sympy] Re: Improving .subs() method issue

2024-03-30 Thread HAWK
Thank you sangyub for such detailed explanation, I really appreciate it. I
think you are right if we implement such algo for .subs(), it will just
make things complex. But was thinking that if we could try such things may
be it would make way better and I think there is a way to make it work. I
will write you back if I can make things work like I explained.

On Sat, 30 Mar 2024 at 20:30, Sangyub Lee  wrote:

> I may give the step-by-step technical explanation why eq.subs works this
> way:
>
> - The subexpressions of x**2 + 5 are x**2, and 5, which is eq.args
> - The subexpressions of x**2 are x and 2, which is (x**2).args
> - There are no subexpressions of 5, because 5 is an atom.
> - There are no subexpressions of 2, because 2 is an atom.
> - There are no subexpressions of x, because x is an atom.
>
> And the subs, (reasonably) works when the expression that is substituted,
> is equal to the expression, or its subexpressions.
> x is recursively the subexpression of x**2 + 5, so eq.subs(x, 1) works,
> however, x+1 is not the subexpression of  x**2 + 5, so eq.subs(x+1,2)
> works.
>
> Although this is not 100% everything about how subs works, however, I
> think that it explains fairly most of the logic about the subs,
> and I hope it can be useful for your programming experience with subs.
> The reason that subs(x+1, 2) does not work, is debatable that it should be
> a bug, or it should be intended part of the design,
>
> However, I'm weighted towards the opinion that it shouldn't be part of the
> design,
> because it is much more complicated and opens up much more rooms for
> extension or incompleteness, if we adopt that as part of the design.
> For example, if subs(x+1, 2) works, then we should also think of how
> subs(x**2 + 1, 2), or how subs(x**3 + 1, 2) works,
> and I'm afraid that such discussions like this clearly gets into
> discussing very complicated mathematics that you or me are not familiar
> with.
>
> On Friday, March 29, 2024 at 10:04:03 AM UTC+1 thakur.ompra...@gmail.com
> wrote:
>
>> Hello SymPy community,
>> I want to ask if you guys allow me I would like to raise a issue or we
>> can say improvement. I found .subs() amusing but I think we can upgrade
>> that. For reference when we have a equation eq=x**2+5 and then we use
>> eq.subs(x,1) it means x is replaced by 1(x-->1), that gives a simple answer
>> 6. That's totally fine but if I want to substitute a expression with
>> something, it won't work let's take the previous example, eq=x**2+5 and
>> then we use eq.subs(x+1,2) this gives old equation back, but it was
>> supposed to replace x+1 to 2 that means same as before (x-->1) and answer
>> supposed to be 6 as in real mathematics.
>> [image: Screenshot 2024-03-29 141816.png]
>>
> --
> You received this message because you are subscribed to the Google Groups
> "sympy" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to sympy+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/sympy/8ab1f6bc-55c1-462a-837e-400341c8d0e7n%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"sympy" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sympy+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/sympy/CAG2MUzs4kYijrQC9Zq88mWBc2XjF4ss-gRSCFcj%3DLw83-Ct4hw%40mail.gmail.com.


[sympy] GSoC'24 proposal review and feedback

2024-03-29 Thread HAWK
Hello SymPy Community,
I am Om Prakash Singh, currently persuing my bachelor's degree from Army 
Institute of Technology, India. I am writing to express my interest in 
contributing to Sympy as part of GSoC’24.I would like to work on solverset 
project and have attached every thing in proposal.
I would be grateful if any mentor would like to extend the discussion on 
this and on a positive note, help me strengthen my proposal for the same.
Regards,
Om Prakash Singh

-- 
You received this message because you are subscribed to the Google Groups 
"sympy" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sympy+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/sympy/240d0541-e2df-4529-8e6d-f7d8f12905ebn%40googlegroups.com.


GSoC_SymPy.docx
Description: MS-Word 2007 document


[sympy] Improving .subs() method issue

2024-03-29 Thread HAWK
Hello SymPy community,
I want to ask if you guys allow me I would like to raise a issue or we can 
say improvement. I found .subs() amusing but I think we can upgrade that. 
For reference when we have a equation eq=x**2+5 and then we use 
eq.subs(x,1) it means x is replaced by 1(x-->1), that gives a simple answer 
6. That's totally fine but if I want to substitute a expression with 
something, it won't work let's take the previous example, eq=x**2+5 and 
then we use eq.subs(x+1,2) this gives old equation back, but it was 
supposed to replace x+1 to 2 that means same as before (x-->1) and answer 
supposed to be 6 as in real mathematics.
[image: Screenshot 2024-03-29 141816.png]

-- 
You received this message because you are subscribed to the Google Groups 
"sympy" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sympy+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/sympy/df05d166-eec3-4b50-b878-f8e19d02da43n%40googlegroups.com.


pulling out hair connecting to postgres server

2024-03-21 Thread doc hawk via use-livecode
I'm near pulling out my hair on this.

I set this up, and haven't used it for so long that I can't seem to
remember everything.

Postrgres 9.5 is installed on this machine, and appears to be running and
accepting connections:

sudo -u postgres /Library/PostgreSQL/9.5/bin/pg_ctl restart -m fast -D
/Library/PostgreSQL/9.5/data/

sharpshin:hawk>2024-03-08 15:48:39 PST LOG:  redirecting log output to
logging collector process
2024-03-08 15:48:39 PST HINT:  Future log output will appear in directory
"pg_log".






-- 
Dr. Richard E. Hawkins, Esq.
(702) 508-8462
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: We lost an Angle

2024-01-14 Thread doc hawk via use-livecode
Please add my prayers and condolences.
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


[packages/samba] - dropped unused virsufilter (in previous commit), updated TODO

2024-01-08 Thread hawk
commit 640397a8247c84e5e58b2832204c1dd89d9901e0
Author: Marcin Krol 
Date:   Mon Jan 8 22:04:27 2024 +0100

- dropped unused virsufilter (in previous commit), updated TODO

 samba.spec | 1 -
 1 file changed, 1 deletion(-)
---
diff --git a/samba.spec b/samba.spec
index f815ceb..592569b 100644
--- a/samba.spec
+++ b/samba.spec
@@ -1,5 +1,4 @@
 # TODO:
-# - bcond/subpackage for Spotlight tracker backend (BR: glib2-devel 
tracker-devel >= 2.0)?
 # - gpfs.h (nfs-ganesha?)
 #
 # Note:


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/samba.git/commitdiff/640397a8247c84e5e58b2832204c1dd89d9901e0

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


[packages/samba] - *.service files not available when building w/o systemd - %{_datadir}/samba/mdssvc not available w

2024-01-08 Thread hawk
commit 516b7c1aa79d82afb11a1e51dbb0c021c1c07e3b
Author: Marcin Krol 
Date:   Mon Jan 8 21:54:02 2024 +0100

- *.service files not available when building w/o systemd
- %{_datadir}/samba/mdssvc not available when building w/o spotlight

 samba.spec | 11 ---
 1 file changed, 8 insertions(+), 3 deletions(-)
---
diff --git a/samba.spec b/samba.spec
index 076f46b..f815ceb 100644
--- a/samba.spec
+++ b/samba.spec
@@ -42,7 +42,6 @@
 
 
 # NOTE: packages order is: server + additions, common, clients, libs+devel, 
ldap
-%definevirusfilter_version 0.1.4
 Summary:   Samba Active Directory and SMB server
 Summary(pl.UTF-8): Serwer Samba Active Directory i SMB
 Name:  samba
@@ -61,8 +60,6 @@ Source6:  smb.conf
 Source7:   winbind.init
 Source8:   winbind.sysconfig
 Source9:   samba.init
-Source10:  
https://bitbucket.org/fumiyas/samba-virusfilter/downloads/samba-virusfilter-%{virusfilter_version}.tar.bz2
-# Source10-md5:4bef017601d87f52f8c82819a3ff56ee
 Patch0:system-heimdal.patch
 Patch1:%{name}-c++-nofail.patch
 Patch2:%{name}-lprng-no-dot-printers.patch
@@ -883,9 +880,11 @@ fi
 %config(noreplace) %verify(not md5 mtime size) /etc/env.d/LDB_MODULES_PATH
 %attr(754,root,root) /etc/rc.d/init.d/samba
 %attr(754,root,root) /etc/rc.d/init.d/smb
+%if %{with systemd}
 %{systemdunitdir}/nmb.service
 %{systemdunitdir}/smb.service
 %{systemdunitdir}/samba.service
+%endif
 %{systemdtmpfilesdir}/samba.conf
 %attr(755,root,root) %{_bindir}/dumpmscat
 %attr(755,root,root) %{_bindir}/oLschema2ldif
@@ -1045,7 +1044,9 @@ fi
 %{_datadir}/samba/admx/samba.admx
 %lang(en) %{_datadir}/samba/admx/en-US
 %lang(ru) %{_datadir}/samba/admx/ru-RU
+%if %{with spotlight}
 %{_datadir}/samba/mdssvc
+%endif
 %{_datadir}/samba/setup
 %{_mandir}/man1/oLschema2ldif.1*
 %{_mandir}/man1/profiles.1*
@@ -1203,7 +1204,9 @@ fi
 %defattr(644,root,root,755)
 %attr(754,root,root) /etc/rc.d/init.d/winbind
 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) 
/etc/sysconfig/winbind
+%if %{with systemd}
 %{systemdunitdir}/winbind.service
+%endif
 %attr(755,root,root) %{_bindir}/ntlm_auth
 %attr(755,root,root) %{_bindir}/samba-log-parser
 %attr(755,root,root) %{_bindir}/wbinfo
@@ -1698,7 +1701,9 @@ fi
 %{_sysconfdir}/ctdb/debug_locks.sh
 %dir %{_localstatedir}/lib/ctdb
 
+%if %{with systemd}
 %{systemdunitdir}/ctdb.service
+%endif
 
 %dir %{_sysconfdir}/ctdb
 %{_sysconfdir}/ctdb/statd-callout


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/samba.git/commitdiff/516b7c1aa79d82afb11a1e51dbb0c021c1c07e3b

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


[packages/samba] - bconds for fam, lttng and spotlight

2024-01-07 Thread hawk
commit a4b168e0e56c6b352a659b97c841343546b8382a
Author: Marcin Krol 
Date:   Mon Jan 8 03:30:05 2024 +0100

- bconds for fam, lttng and spotlight

 samba.spec | 14 ++
 1 file changed, 10 insertions(+), 4 deletions(-)
---
diff --git a/samba.spec b/samba.spec
index c2693c9..076f46b 100644
--- a/samba.spec
+++ b/samba.spec
@@ -15,6 +15,9 @@
 %bcond_without ldap# LDAP support
 %bcond_without avahi   # Avahi support
 %bcond_without dmapi   # DMAPI support
+%bcond_without fam # FAM support
+%bcond_without lttng   # lttng-ust support
+%bcond_without spotlight   # Spotlight tracker support
 %bcond_without systemd # systemd integration
 %bcond_without winexe  # winexe tool
 %bcond_withsystem_heimdal  # Use system Heimdal libraries [since samba 
4.4.x build fails with heimdal 1.5.x/7.x]
@@ -88,7 +91,7 @@ BuildRequires:dbus-devel
 BuildRequires: docbook-style-xsl-nons
 BuildRequires: flex
 # just FAM API
-BuildRequires: gamin-devel
+%{?with_fam:BuildRequires: gamin-devel}
 BuildRequires: gettext-tools
 BuildRequires: glib2-devel >= 2.0
 # new features up to 7.9
@@ -118,7 +121,7 @@ BuildRequires:  libtirpc-devel
 BuildRequires: libunwind-devel
 BuildRequires: liburing-devel
 BuildRequires: libxslt-progs
-BuildRequires: lttng-ust-devel
+%{?with_lttng:BuildRequires:   lttng-ust-devel}
 BuildRequires: make >= 1:3.81
 BuildRequires: ncurses-devel >= 5.2
 BuildRequires: ncurses-ext-devel >= 5.2
@@ -149,7 +152,7 @@ BuildRequires:  rpmbuild(macros) >= 2.025
 BuildRequires: sed >= 4.0
 BuildRequires: subunit-devel
 %{?with_systemd:BuildRequires: systemd-devel}
-BuildRequires: tracker-devel >= 2.0
+%{?with_spotlight:BuildRequires:   tracker-devel >= 2.0}
 BuildRequires: xfsprogs-devel
 BuildRequires: zlib-devel >= 1.2.3
 %if %{with system_libs}
@@ -631,8 +634,10 @@ CPPFLAGS="${CPPFLAGS:-%rpmcppflags}" \
%{?with_ctdb_pcp:--enable-pmda} \
--with-automount \
--with%{!?with_dmapi:out}-dmapi \
+   --with%{!?with_fam:out}-fam \
--with-iconv \
--with%{!?with_ldap:out}-ldap \
+   --with%{!?with_lttng:out}-lttng \
--with-pam \
--with-quotas \
--with-regedit \
@@ -651,7 +656,8 @@ CPPFLAGS="${CPPFLAGS:-%rpmcppflags}" \
--%{?with_avahi:en}%{!?with_avahi:dis}able-avahi \
--enable-cups \
%{__enable_disable glusterfs} \
-   --enable-iprint
+   --enable-iprint \
+   %{__enable_disable spotlight}
 
 %{__make} V=1
 


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/samba.git/commitdiff/a4b168e0e56c6b352a659b97c841343546b8382a

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


[packages/samba] - fix winbindd init script

2024-01-07 Thread hawk
commit 8309b9ebc40eda7c9313bd5836aa15db8d1e10c3
Author: Marcin Krol 
Date:   Mon Jan 8 03:25:21 2024 +0100

- fix winbindd init script

 winbind.init | 7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)
---
diff --git a/winbind.init b/winbind.init
index c33bcca..6917b8f 100755
--- a/winbind.init
+++ b/winbind.init
@@ -5,6 +5,7 @@
 #  user and group information from a NT domain controller to linux.
 #
 # config:  /etc/samba/smb.conf
+# processname: winbindd
 
 export PATH=/bin:/sbin:/usr/bin:/usr/sbin
 
@@ -14,6 +15,8 @@ export PATH=/bin:/sbin:/usr/bin:/usr/sbin
 # Source networking configuration.
 . /etc/sysconfig/network
 
+winbindd_pidfile="/var/run/samba/winbindd.pid"
+
 # Daemon specific configuration.
 . /etc/sysconfig/winbind
 
@@ -49,7 +52,7 @@ start() {
 stop() {
if [ -f /var/lock/subsys/winbind ]; then
msg_stopping winbindd
-   killproc winbindd
+   killproc --pidfile $winbindd_pidfile winbindd
rm -f /var/lock/subsys/winbind >/dev/null 2>&1
else
msg_not_running winbindd
@@ -82,7 +85,7 @@ case "$1" in
   reload|force-reload)
if [ -f /var/lock/subsys/winbind ]; then
msg_reloading winbindd
-   killproc winbindd -HUP
+   killproc --pidfile $winbindd_pidfile winbindd -HUP
RETVAL=$?
else
msg_not_running winbindd


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/samba.git/commitdiff/a4b168e0e56c6b352a659b97c841343546b8382a

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


[packages/samba] - /var/log/samba/cores/winbindd is required to run winbind

2024-01-07 Thread hawk
commit 24cf9cdb7eb5e6665df249bd56ed542ffb9762f4
Author: Marcin Krol 
Date:   Mon Jan 8 03:23:16 2024 +0100

- /var/log/samba/cores/winbindd is required to run winbind

 samba.spec | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
---
diff --git a/samba.spec b/samba.spec
index d0e2a92..c2693c9 100644
--- a/samba.spec
+++ b/samba.spec
@@ -666,7 +666,7 @@ cd pidl
 rm -rf $RPM_BUILD_ROOT
 install -d 
$RPM_BUILD_ROOT/etc/{logrotate.d,rc.d/init.d,pam.d,security,sysconfig/rc-inetd,ld.so.conf.d,env.d}
 \
$RPM_BUILD_ROOT{/var/{log/archive,spool}/samba,/var/lib/samba/printing} 
\
-   $RPM_BUILD_ROOT/var/log/samba/cores/{smbd,nmbd} \
+   $RPM_BUILD_ROOT/var/log/samba/cores/{smbd,nmbd,winbindd} \

$RPM_BUILD_ROOT{/sbin,/%{_lib}/security,%{_libdir},%{_libdir}/samba/vfs,%{_includedir},%{_sambahome},%{schemadir}}
 \
$RPM_BUILD_ROOT{%{systemdtmpfilesdir},%{systemdunitdir}}
 
@@ -1239,6 +1239,7 @@ fi
 %{_mandir}/man8/pam_winbind.8*
 %{_mandir}/man8/winbindd*.8*
 %{_mandir}/man8/winbind_krb5_locator.8*
+%attr(750,root,root) %dir /var/log/samba/cores/winbindd
 
 %if %{with cups}
 %files -n cups-backend-smb


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/samba.git/commitdiff/a4b168e0e56c6b352a659b97c841343546b8382a

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


[packages/python-pbr] - %{_bindir}/pbr symlink belongs to python2

2024-01-07 Thread hawk
commit ddd0d17b3421a1a2793a450e1c473427ca4b9947
Author: Marcin Krol 
Date:   Mon Jan 8 01:08:14 2024 +

- %{_bindir}/pbr symlink belongs to python2

 python-pbr.spec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/python-pbr.spec b/python-pbr.spec
index 3eb7d90..22ce442 100644
--- a/python-pbr.spec
+++ b/python-pbr.spec
@@ -180,6 +180,7 @@ rm -rf $RPM_BUILD_ROOT
 %files
 %defattr(644,root,root,755)
 %doc AUTHORS ChangeLog LICENSE README.rst
+%attr(755,root,root) %{_bindir}/pbr
 %attr(755,root,root) %{_bindir}/pbr-2
 %{py_sitescriptdir}/%{module}-%{version}-py*.egg-info
 %{py_sitescriptdir}/%{module}
@@ -189,7 +190,6 @@ rm -rf $RPM_BUILD_ROOT
 %files -n python3-pbr
 %defattr(644,root,root,755)
 %doc AUTHORS ChangeLog LICENSE README.rst
-%attr(755,root,root) %{_bindir}/pbr
 %attr(755,root,root) %{_bindir}/pbr-3
 %{py3_sitescriptdir}/%{module}-%{version}-py*.egg-info
 %{py3_sitescriptdir}/%{module}


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/python-pbr.git/commitdiff/ddd0d17b3421a1a2793a450e1c473427ca4b9947

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


DISTFILES: python-pbr: pbr-6.0.0.tar.gz

2024-01-07 Thread hawk
Request by: hawk


Files fetched: 1

STORED: https://files.pythonhosted.org/packages/source/p/pbr/pbr-6.0.0.tar.gz
e01bcc0e9154d513ecad3e766f9582d7  pbr-6.0.0.tar.gz
Size: 123150 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-pbr] - updated to 6.0.0

2024-01-07 Thread hawk
commit 4593c01cea741b618466a3d1b60c8fc49cdc89fd
Author: Marcin Krol 
Date:   Mon Jan 8 01:04:49 2024 +

- updated to 6.0.0

 python-pbr.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/python-pbr.spec b/python-pbr.spec
index 8a2699c..3eb7d90 100644
--- a/python-pbr.spec
+++ b/python-pbr.spec
@@ -14,13 +14,13 @@
 Summary:   Python Build Reasonableness
 Summary(pl.UTF-8): Python Build Reasonableness - rozsądne budowanie 
modułów pythonowych
 Name:  python-%{module}
-Version:   5.8.1
-Release:   4
+Version:   6.0.0
+Release:   1
 License:   Apache v2.0
 Group: Libraries/Python
 #Source0Download: https://pypi.org/simple/pbr/
 Source0:   
https://files.pythonhosted.org/packages/source/p/pbr/%{module}-%{version}.tar.gz
-# Source0-md5: 9ab99a85202af94990ef44ebcd2bf196
+# Source0-md5: e01bcc0e9154d513ecad3e766f9582d7
 URL:   https://launchpad.net/pbr
 BuildRequires: rpm-pythonprov
 BuildRequires: rpmbuild(macros) >= 1.714


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/python-pbr.git/commitdiff/ddd0d17b3421a1a2793a450e1c473427ca4b9947

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


[packages/awstats] - updated to 7.9

2024-01-07 Thread hawk
commit 936198363959d404d886adb1dfa200bc222a895a
Author: Marcin Krol 
Date:   Sun Jan 7 20:11:43 2024 +0100

- updated to 7.9

 awstats-PLD.patch  | 41 +
 awstats-created_dir_mode.patch | 11 ++-
 awstats.spec   |  8 
 awstats_conf.patch | 34 +-
 4 files changed, 48 insertions(+), 46 deletions(-)
---
diff --git a/awstats.spec b/awstats.spec
index e54f2d6..1e21d33 100644
--- a/awstats.spec
+++ b/awstats.spec
@@ -7,12 +7,12 @@
 Summary:   Advanced Web Statistics is a free powerful server log file 
analyzer
 Summary(pl.UTF-8): Zaawansowany program do analizowania logów serwera
 Name:  awstats
-Version:   7.8
-Release:   2
+Version:   7.9
+Release:   1
 License:   GPL v3+
 Group: Applications/Networking
 Source0:   http://awstats.sourceforge.net/files/%{name}-%{version}.tar.gz
-# Source0-md5: 46986723e04b1980389193153915e760
+# Source0-md5: c283e0170700461596f9c9e121ea2896
 Source1:   %{name}.crontab
 Source2:   %{name}-httpd.conf
 Source3:   %{name}.conf
@@ -23,7 +23,7 @@ Patch2:   %{name}-PLD.patch
 URL:   https://awstats.sourceforge.io/
 BuildRequires: rpm-perlprov
 BuildRequires: rpmbuild(macros) >= 1.264
-Requires(triggerpostun):   sed >= 4.0
+Requires(postun):  sed >= 4.0
 Requires:  perl-Geo-IP
 Requires:  perl-Storable
 Requires:  perl-Time-HiRes
diff --git a/awstats-PLD.patch b/awstats-PLD.patch
index 23962b9..b491b3a 100644
--- a/awstats-PLD.patch
+++ b/awstats-PLD.patch
@@ -1,7 +1,7 @@
-diff -Nur b.awstats-6.6/tools/awstats_buildstaticpages.pl 
n.awstats-6.6/tools/awstats_buildstaticpages.pl
 b.awstats-6.6/tools/awstats_buildstaticpages.pl2006-02-08 
23:26:14.0 +0100
-+++ n.awstats-6.6/tools/awstats_buildstaticpages.pl2007-01-16 
13:15:15.0 +0100
-@@ -133,7 +133,7 @@
+diff -ur awstats-7.9.orig/tools/awstats_buildstaticpages.pl 
awstats-7.9/tools/awstats_buildstaticpages.pl
+--- awstats-7.9.orig/tools/awstats_buildstaticpages.pl 2021-08-19 
04:00:58.0 +0200
 awstats-7.9/tools/awstats_buildstaticpages.pl  2024-01-07 
20:10:32.230113241 +0100
+@@ -129,7 +129,7 @@
my @PossibleConfigDir=();
  
if ($configdir) { @PossibleConfigDir=("$configdir"); }
@@ -10,7 +10,7 @@ diff -Nur b.awstats-6.6/tools/awstats_buildstaticpages.pl 
n.awstats-6.6/tools/aw
  
# Open config file
$FileConfig=$FileSuffix='';
-@@ -293,8 +293,8 @@
+@@ -299,8 +299,8 @@
  # Check if AWSTATS prog is found
  my $AwstatsFound=0;
  if (-s "$Awstats") { $AwstatsFound=1; }
@@ -20,11 +20,11 @@ diff -Nur b.awstats-6.6/tools/awstats_buildstaticpages.pl 
n.awstats-6.6/tools/aw
 +  $Awstats="/usr/share/awstats/wwwroot/cgi-bin/awstats.pl";
$AwstatsFound=1;
  }
- if (! $AwstatsFound) {
-diff -Nur b.awstats-6.6/tools/awstats_configure.pl 
n.awstats-6.6/tools/awstats_configure.pl
 b.awstats-6.6/tools/awstats_configure.pl   2006-02-08 23:26:14.0 
+0100
-+++ n.awstats-6.6/tools/awstats_configure.pl   2007-01-16 13:15:15.0 
+0100
-@@ -29,11 +29,11 @@
+ elsif (-s "/usr/lib/cgi-bin/awstats.pl") {
+diff -ur awstats-7.9.orig/tools/awstats_configure.pl 
awstats-7.9/tools/awstats_configure.pl
+--- awstats-7.9.orig/tools/awstats_configure.pl2019-06-27 
11:30:40.0 +0200
 awstats-7.9/tools/awstats_configure.pl 2024-01-07 20:10:32.231113254 
+0100
+@@ -28,11 +28,11 @@
  $AWSTATS_DIRDATA_PATH
  /;
  $AWSTATS_PATH='';
@@ -41,7 +41,7 @@ diff -Nur b.awstats-6.6/tools/awstats_configure.pl 
n.awstats-6.6/tools/awstats_c
  $AWSTATS_DIRDATA_PATH='/var/lib/awstats'; 
# Used only when configure ran on linux
  
  
-@@ -608,7 +608,7 @@
+@@ -610,7 +610,7 @@
my $bidon='';
print "Directory path to store config file(s) (Enter for 
default):\n> ";
$bidon=; chomp $bidon;
@@ -50,10 +50,10 @@ diff -Nur b.awstats-6.6/tools/awstats_configure.pl 
n.awstats-6.6/tools/awstats_c
my $configdir=$bidon;
if (! -d $configdir) {
# Create the directory for config files
-diff -Nur b.awstats-6.6/tools/awstats_updateall.pl 
n.awstats-6.6/tools/awstats_updateall.pl
 b.awstats-6.6/tools/awstats_updateall.pl   2006-07-24 01:57:48.0 
+0200
-+++ n.awstats-6.6/tools/awstats_updateall.pl   2007-01-16 13:15:15.0 
+0100
-@@ -13,7 +13,7 @@
+diff -ur awstats-7.9.orig/tools/awstats_updateall.pl 
awstats-7.9/tools/awstats_updateall.pl
+--- awstats-7.9.orig/tools/awstats_updateall.pl2014-09-23 
09:16:09.0 +0200
 awstats-7.9/tools/awstats_updateall.pl 2024-01-07 20:10:32.231113254 
+0100
+@@ -12,7 +12,7 @@
  my $VERSION="1.0 (build $REVISION)";
  
  # Default value of DIRCONFIG
@@ -62,7 +62,7 @@ diff -Nur b.awstats-6.6/tools/awstats_updateall.pl 

DISTFILES: awstats: awstats-7.9.tar.gz

2024-01-07 Thread hawk
Request by: hawk


Files fetched: 1

STORED: http://awstats.sourceforge.net/files/awstats-7.9.tar.gz
c283e0170700461596f9c9e121ea2896  awstats-7.9.tar.gz
Size: 2948602 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/chrpath] - rediffed

2023-12-16 Thread hawk
commit 3ad63461eaeeb5c664713dedae7bc491caacbd1c
Author: Marcin Krol 
Date:   Sat Dec 16 18:37:30 2023 +0100

- rediffed

 chrpath-multilib.patch | 57 ++
 1 file changed, 30 insertions(+), 27 deletions(-)
---
diff --git a/chrpath-multilib.patch b/chrpath-multilib.patch
index f28d373..14b38c8 100644
--- a/chrpath-multilib.patch
+++ b/chrpath-multilib.patch
@@ -1,24 +1,7 @@
 a/configure.ac 2004-09-19 10:28:33.0 +0200
-+++ b/configure.ac 2006-02-27 16:12:00.282066250 +0100
-@@ -16,6 +16,7 @@
- dnl Checks for programs.
- AC_PROG_CC
- AC_PROG_INSTALL
-+AC_PROG_LIBTOOL
- 
- dnl Checks for libraries.
- 
-@@ -26,7 +27,6 @@
- dnl Checks for typedefs, structures, and compiler characteristics.
- AC_C_CONST
- AC_C_BIGENDIAN
--AC_CHECK_SIZEOF(void *)
- 
- dnl Checks for library functions.
- AC_CHECK_FUNCS(getopt_long)
 a/Makefile.am  2004-09-19 10:29:28.0 +0200
-+++ b/Makefile.am  2006-02-27 16:57:31.166290750 +0100
-@@ -12,12 +12,19 @@
+diff -urNp -x '*.orig' chrpath-0.16.org/Makefile.am chrpath-0.16/Makefile.am
+--- chrpath-0.16.org/Makefile.am   2014-01-12 08:52:21.0 +0100
 chrpath-0.16/Makefile.am   2023-12-16 18:36:06.850493419 +0100
+@@ -12,12 +12,19 @@ debs:
fakeroot debian/rules binary
  
  chrpath_SOURCES = \
@@ -40,9 +23,29 @@
 +
  EXTRA_DIST = $(man_MANS)
  
- CLEANFILES = *.bb *.bbg *.da *.gcov testsuite/*.bb testsuite/*.bbg
 a/main.c   2004-09-19 10:33:37.0 +0200
-+++ b/main.c   2006-02-27 17:23:39.400267750 +0100
+ config-updates:
+diff -urNp -x '*.orig' chrpath-0.16.org/configure.ac chrpath-0.16/configure.ac
+--- chrpath-0.16.org/configure.ac  2014-01-12 09:01:52.0 +0100
 chrpath-0.16/configure.ac  2023-12-16 18:36:06.850493419 +0100
+@@ -16,6 +16,7 @@ CHRPATH_LDRPATH_OPTION
+ dnl Checks for programs.
+ AC_PROG_CC
+ AC_PROG_INSTALL
++AC_PROG_LIBTOOL
+ 
+ dnl Checks for libraries.
+ 
+@@ -26,7 +27,6 @@ AC_CHECK_HEADERS([getopt.h elf.h fcntl.h
+ dnl Checks for typedefs, structures, and compiler characteristics.
+ AC_C_CONST
+ AC_C_BIGENDIAN
+-AC_CHECK_SIZEOF(void *)
+ 
+ dnl Checks for library functions.
+ AC_CHECK_FUNCS(getopt_long)
+diff -urNp -x '*.orig' chrpath-0.16.org/main.c chrpath-0.16/main.c
+--- chrpath-0.16.org/main.c2014-01-14 10:15:59.0 +0100
 chrpath-0.16/main.c2023-12-16 18:36:06.850493419 +0100
 @@ -12,13 +12,19 @@
  #  include "config.h"
  #endif
@@ -64,7 +67,7 @@
  
  #ifdef HAVE_GETOPT_LONG
  #  define GETOPT_LONG getopt_long
-@@ -61,6 +67,30 @@
+@@ -63,6 +69,30 @@ usage(char *progname)
printf("\n");
  }
  
@@ -95,7 +98,7 @@
  int
  main(int argc, char * const argv[])
  {
-@@ -73,6 +103,9 @@
+@@ -75,6 +105,9 @@ main(int argc, char * const argv[])
  #ifdef HAVE_GETOPT_LONG
int option_index = 0;
  #endif /* HAVE_GETOPT_LONG */
@@ -105,7 +108,7 @@
  
if (argc < 2)
  {
-@@ -116,14 +149,31 @@
+@@ -119,14 +152,31 @@ main(int argc, char * const argv[])
}
} while (-1 != opt);
  


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/chrpath.git/commitdiff/3ad63461eaeeb5c664713dedae7bc491caacbd1c

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


[packages/cyrus-sasl] - allow building without Nagios support

2023-12-15 Thread hawk
commit 731d43d0530615abb20726012ef4c4676c1ca0c0
Author: Marcin Krol 
Date:   Fri Dec 15 23:19:10 2023 +0100

- allow building without Nagios support

 cyrus-sasl.spec | 7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)
---
diff --git a/cyrus-sasl.spec b/cyrus-sasl.spec
index 972db8b..a87bdd9 100644
--- a/cyrus-sasl.spec
+++ b/cyrus-sasl.spec
@@ -4,6 +4,7 @@
 %bcond_without ldap# disable LDAP support for saslauthd
 %bcond_without gssapi  # do not enable GSSAPI support for saslauthd 
and build gssapi plugin
 %bcond_without mysql   # don't build MySQL plugin
+%bcond_without nagios  # do not enable Nagios plugin
 %bcond_without ntlm# do not build NTLM plugin
 %bcond_without pgsql   # do not build PostgreSQL plugin
 %bcond_without sqlite  # do not enable sqlite 2 plugin
@@ -510,7 +511,7 @@ Wtyczka Nagiosa do sprawdzania działania saslauthd.
 %endif
 %patch7 -p1
 %patch9 -p1
-%patch10 -p1
+%{?with_nagios:%patch10 -p1}
 %patch12 -p1
 %patch14 -p1
 %patch20 -p1
@@ -601,8 +602,10 @@ libtool --mode=install cp sample/sample-server 
$RPM_BUILD_ROOT%{_bindir}/sasl-sa
 # package for ghost
 touch 
$RPM_BUILD_ROOT/var/lib/sasl2/{cache.flock,cache.mmap,mux,mux.accept,saslauthd.pid}
 
+%if %{with nagios}
 install -d $RPM_BUILD_ROOT/etc/nagios/plugins
 %{__sed} -e 's,@plugindir@,%{_libdir}/nagios/plugins,' %{SOURCE4} > 
$RPM_BUILD_ROOT/etc/nagios/plugins/check_saslauthd.cfg
+%endif
 
 %clean
 rm -rf $RPM_BUILD_ROOT
@@ -770,7 +773,9 @@ fi
 %{_mandir}/man8/saslauthd.8*
 %{_mandir}/man8/testsaslauthd.8*
 
+%if %{with nagios}
 %files -n nagios-plugin-check_saslauthd
 %defattr(644,root,root,755)
 %config(noreplace) %verify(not md5 mtime size) 
/etc/nagios/plugins/check_saslauthd.cfg
 %attr(755,root,root) %{_libdir}/nagios/plugins/check_saslauthd
+%endif


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/cyrus-sasl.git/commitdiff/731d43d0530615abb20726012ef4c4676c1ca0c0

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


[packages/texi2html] - don't install perl-libintl and perl-Unicode-EastAsianWidth, patches from Fedora - disable debugsou

2023-12-14 Thread hawk
commit d307112c0c70c9fb66b1c728024ecb4fae20a318
Author: Marcin Krol 
Date:   Fri Dec 15 00:36:20 2023 +0100

- don't install perl-libintl and perl-Unicode-EastAsianWidth, patches from 
Fedora
- disable debugsource

 texi2html-Unicode-EastAsianWidth.patch | 38 +++
 texi2html-libintl.patch| 48 ++
 texi2html.spec | 10 ++-
 3 files changed, 95 insertions(+), 1 deletion(-)
---
diff --git a/texi2html.spec b/texi2html.spec
index 1cf670c..bb63b78 100644
--- a/texi2html.spec
+++ b/texi2html.spec
@@ -4,13 +4,15 @@ Summary(hu.UTF-8):texi2html egy Perl szkript, amely 
Texinfo fájlokat konvertá
 Summary(pl.UTF-8): texi2html - skrypt Perla konwertujący pliki Texinfo do 
HTML-a
 Name:  texi2html
 Version:   5.0
-Release:   3
+Release:   4
 License:   GPL v2+
 Group: Development/Tools
 Source0:   
http://download.savannah.gnu.org/releases/texi2html/%{name}-%{version}.tar.bz2
 # Source0-md5: f15ac876fcdc8be865b16535f480aa54
 Patch0:%{name}-info.patch
 Patch1:%{name}-perl.patch
+Patch2:%{name}-Unicode-EastAsianWidth.patch
+Patch3:%{name}-libintl.patch
 URL:   http://www.nongnu.org/texi2html/
 BuildRequires: autoconf >= 2.53
 BuildRequires: automake >= 1:1.9
@@ -26,6 +28,10 @@ Suggests:perl-Encode
 Suggests:  perl-Text-Unidecode
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
+# Package should be noarch but configure will fail with error:
+# Invalid configuration `noarch-pld-linux': machine `noarch-pld' not recognized
+%define_debugsource_packages   0
+
 %description
 texi2html is a Perl script that converts Texinfo files to HTML.
 
@@ -39,6 +45,8 @@ texi2html to skrypt Perla konwertujący pliki Texinfo do 
HTML-a.
 %setup -q
 %patch0 -p1
 %patch1 -p1
+%patch2 -p1
+%patch3 -p1
 
 %build
 %{__gettextize}
diff --git a/texi2html-Unicode-EastAsianWidth.patch 
b/texi2html-Unicode-EastAsianWidth.patch
new file mode 100644
index 000..a2b7eb9
--- /dev/null
+++ b/texi2html-Unicode-EastAsianWidth.patch
@@ -0,0 +1,38 @@
+From 91a0efcf09a95c0a3e74ca4e1d6225a860e010d6 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= 
+Date: Wed, 22 Oct 2014 09:43:25 +0200
+Subject: [PATCH] Do not install Unicode-EastAsianWidth if external is used
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+Configuration --with-external-Unicode-EastAsianWidth=yes should not
+install the bundled Unicode-EastAsianWidth code. This patch fixes it.
+
+Signed-off-by: Petr Písař 
+---
+ Makefile.am | 8 +---
+ 1 file changed, 5 insertions(+), 3 deletions(-)
+
+diff --git a/Makefile.am b/Makefile.am
+index 3447463..bc3257b 100644
+--- a/Makefile.am
 b/Makefile.am
+@@ -267,9 +267,11 @@ install-data-local: i18n
+ $(DESTDIR)$(pkgdatadir)/lib/libintl-perl/lib/Locale/Recode
+   $(INSTALL_DATA) $(srcdir)/lib/libintl-perl/lib/Locale/RecodeData/*.pm \
+ $(DESTDIR)$(pkgdatadir)/lib/libintl-perl/lib/Locale/RecodeData
+-  $(MKDIR_P) 
$(DESTDIR)$(pkgdatadir)/lib/Unicode-EastAsianWidth/lib/Unicode
+-  $(INSTALL_DATA) 
$(srcdir)/lib/Unicode-EastAsianWidth/lib/Unicode/EastAsianWidth.pm \
+-   $(DESTDIR)$(pkgdatadir)/lib/Unicode-EastAsianWidth/lib/Unicode
++  if test '$(USE_EXTERNAL_EASTASIANWIDTH)' != 'yes'; then \
++$(MKDIR_P) 
$(DESTDIR)$(pkgdatadir)/lib/Unicode-EastAsianWidth/lib/Unicode ; \
++$(INSTALL_DATA) 
$(srcdir)/lib/Unicode-EastAsianWidth/lib/Unicode/EastAsianWidth.pm \
++  $(DESTDIR)$(pkgdatadir)/lib/Unicode-EastAsianWidth/lib/Unicode ; \
++  fi
+ 
+ uninstall-local:
+   rm -rf $(DESTDIR)$(pkgdatadir)/lib/ $(DESTDIR)$(pkgdatadir)/i18n
+-- 
+1.9.3
+
diff --git a/texi2html-libintl.patch b/texi2html-libintl.patch
new file mode 100644
index 000..bc0730b
--- /dev/null
+++ b/texi2html-libintl.patch
@@ -0,0 +1,48 @@
+From 68e345ada811cdea2d9ccf056001e15f6e2316a0 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= 
+Date: Wed, 22 Oct 2014 10:30:16 +0200
+Subject: [PATCH] Do not install libintl-perl if external is used
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+Configuration --with-external-libintl-perl=yes should not
+install the bundled libintl-perl code. This patch fixes it.
+
+Signed-off-by: Petr Písař 
+---
+ Makefile.am | 18 ++
+ 1 file changed, 10 insertions(+), 8 deletions(-)
+
+diff --git a/Makefile.am b/Makefile.am
+index bc3257b..37dfd0f 100644
+--- a/Makefile.am
 b/Makefile.am
+@@ -259,14 +259,16 @@ distclean-local:
+ install-data-local: i18n
+   $(MKDIR_P) $(DESTDIR)$(pkgdatadir)/i18n
+   $(INSTALL_DATA) i18n/*.thl  $(DESTDIR)$(pkgdatadir)/i18n
+-  $(MKDIR_P) $(DESTDIR)$(pkgdatadir)/lib/libintl-perl/lib/Locale/Recode \
+-

DISTFILES: perl-Unicode-EastAsianWidth: Unicode-EastAsianWidth-12.0.tar.gz

2023-12-14 Thread hawk
Request by: hawk


Files fetched: 1

STORED: 
http://www.cpan.org/modules/by-module/Unicode/Unicode-EastAsianWidth-12.0.tar.gz
545507653ce0dfa34055e2628455abcc  Unicode-EastAsianWidth-12.0.tar.gz
Size: 52302 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/perl-Unicode-EastAsianWidth] - updated to 12.0

2023-12-14 Thread hawk
commit 902d61eb83743d0d271686f4850463f8fad30c11
Author: Marcin Krol 
Date:   Thu Dec 14 23:53:41 2023 +0100

- updated to 12.0

 perl-Unicode-EastAsianWidth.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/perl-Unicode-EastAsianWidth.spec b/perl-Unicode-EastAsianWidth.spec
index 87387e2..4ef3a91 100644
--- a/perl-Unicode-EastAsianWidth.spec
+++ b/perl-Unicode-EastAsianWidth.spec
@@ -7,12 +7,12 @@
 Summary:   Unicode::EastAsianWidth - East Asian Width properties
 Summary(pl.UTF-8): Unicode::EastAsianWidth - właściwości szerokości znaków 
wschodnioazjatyckich
 Name:  perl-Unicode-EastAsianWidth
-Version:   1.33
+Version:   12.0
 Release:   1
 License:   unrestricted
 Group: Development/Languages/Perl
 Source0:   
http://www.cpan.org/modules/by-module/Unicode/%{pdir}-%{pnam}-%{version}.tar.gz
-# Source0-md5: c33367b020995ff4fdd20e2b3cdae6be
+# Source0-md5: 545507653ce0dfa34055e2628455abcc
 URL:   http://search.cpan.org/dist/Unicode-EastAsianWidth/
 BuildRequires: perl-ExtUtils-MakeMaker >= 6.59
 BuildRequires: perl-devel >= 1:5.8.0


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/perl-Unicode-EastAsianWidth.git/commitdiff/902d61eb83743d0d271686f4850463f8fad30c11

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


DISTFILES: nlohmann-json: json-3.11.3.tar.gz

2023-12-14 Thread hawk
Request by: hawk


Files fetched: 1

STORED: https://github.com/nlohmann/json/archive/v3.11.3/json-3.11.3.tar.gz
d603041cbc6051edbaa02ebb82cf0aa9  json-3.11.3.tar.gz
Size: 8053705 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/nlohmann-json] - updated to 3.11.3

2023-12-14 Thread hawk
commit 02ab525dccda21655095d351f6eb63145c13af24
Author: Marcin Krol 
Date:   Thu Dec 14 23:16:26 2023 +0100

- updated to 3.11.3

 nlohmann-json.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/nlohmann-json.spec b/nlohmann-json.spec
index 985c57d..8047ec6 100644
--- a/nlohmann-json.spec
+++ b/nlohmann-json.spec
@@ -1,13 +1,13 @@
 Summary:   JSON for Modern C++ by Niels Lohmann
 Summary(pl.UTF-8): JSON dla współczesnego C++ autorstwa Nielsa Lohmanna
 Name:  nlohmann-json
-Version:   3.11.2
+Version:   3.11.3
 Release:   1
 License:   MIT
 Group: Libraries
 #Source0Download: https://github.com/nlohmann/json/releases
 Source0:   
https://github.com/nlohmann/json/archive/v%{version}/json-%{version}.tar.gz
-# Source0-md5: e8d56bc54621037842ee9f0aeae27746
+# Source0-md5: d603041cbc6051edbaa02ebb82cf0aa9
 URL:   https://json.nlohmann.me/
 BuildRequires: cmake >= 3.1
 BuildRequires: libstdc++-devel >= 6:4.7


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/nlohmann-json.git/commitdiff/02ab525dccda21655095d351f6eb63145c13af24

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


[packages/p11-kit] - allow building on systems without systemd, fixed docs configure option

2023-12-14 Thread hawk
commit 8ab1fc1c80e7ae7904f091df707619438882bce5
Author: Marcin Krol 
Date:   Thu Dec 14 20:48:05 2023 +0100

- allow building on systems without systemd, fixed docs configure option

 p11-kit.spec | 8 ++--
 1 file changed, 6 insertions(+), 2 deletions(-)
---
diff --git a/p11-kit.spec b/p11-kit.spec
index b904bd6..4898417 100644
--- a/p11-kit.spec
+++ b/p11-kit.spec
@@ -1,6 +1,7 @@
 #
 # Conditional build:
 %bcond_without apidocs # do not build and package API docs
+%bcond_without systemd # systemd
 #
 Summary:   Library and proxy module for properly loading and sharing 
PKCS#11 modules
 Summary(pl.UTF-8): Biblioteka i moduł proxy do właściwego wczytywania i 
współdzielenia modułów PKCS#11
@@ -22,7 +23,7 @@ BuildRequires:pkgconfig >= 1:0.29
 BuildRequires: pkgconfig(libffi) >= 3.0.0
 BuildRequires: rpm-build >= 4.6
 BuildRequires: rpmbuild(macros) >= 2.011
-BuildRequires: systemd-devel >= 1:209
+%{?with_systemd:BuildRequires: systemd-devel >= 1:209}
 BuildRequires: tar >= 1:1.22
 BuildRequires: xz
 Requires(post,preun):  systemd-units >= 1:250.1
@@ -88,8 +89,9 @@ Bashowe uzupełnianie parametrów poleceń p11-kit (p11-kit i 
trust).
 %build
 %configure \
bashcompdir=%{bash_compdir} \
-   %{!?with_apidocs:--disable-gtk-doc} \
+   %{!?with_apidocs:--disable-doc} \
--disable-silent-rules \
+   %{!?with_systemd:--without-systemd} \
--with-html-dir=%{_gtkdocdir} \
--with-trust-paths=/etc/certs/ca-certificates.crt
 %{__make}
@@ -140,8 +142,10 @@ rm -rf $RPM_BUILD_ROOT
 %dir %{_datadir}/p11-kit
 %dir %{_datadir}/p11-kit/modules
 %{_datadir}/p11-kit/modules/p11-kit-trust.module
+%if %{with systemd}
 %{systemduserunitdir}/p11-kit-server.service
 %{systemduserunitdir}/p11-kit-server.socket
+%endif
 
 %files devel
 %defattr(644,root,root,755)


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/p11-kit.git/commitdiff/8ab1fc1c80e7ae7904f091df707619438882bce5

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


DISTFILES: fish: fish-3.6.4.tar.xz

2023-12-10 Thread hawk
Request by: hawk


Files fetched: 1

STORED: 
https://github.com/fish-shell/fish-shell/releases/download/3.6.4/fish-3.6.4.tar.xz
600c5d8ffa45b1d73b5263809cb5e6f5  fish-3.6.4.tar.xz
Size: 2911364 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/fish] - updated to 3.6.4

2023-12-10 Thread hawk
commit 6f894dc4038f714aff1e8f940dba8e67c771e01a
Author: Marcin Krol 
Date:   Sun Dec 10 22:01:47 2023 +0100

- updated to 3.6.4

 fish-no_lld.patch  | 25 -
 fish-rel_datadir.patch | 15 ---
 fish.spec  | 14 +-
 3 files changed, 5 insertions(+), 49 deletions(-)
---
diff --git a/fish.spec b/fish.spec
index 1dbc47a..6762104 100644
--- a/fish.spec
+++ b/fish.spec
@@ -1,14 +1,12 @@
 Summary:   fish - A friendly interactive shell
 Summary(pl.UTF-8): fish - przyjazna interaktywna powłoka
 Name:  fish
-Version:   3.3.1
-Release:   4
+Version:   3.6.4
+Release:   1
 License:   GPL v2
 Group: Applications/Shells
 Source0:   
https://github.com/fish-shell/fish-shell/releases/download/%{version}/%{name}-%{version}.tar.xz
-# Source0-md5: 94be285255aadfcf0f910bdcc2f56073
-Patch0:%{name}-no_lld.patch
-Patch1:%{name}-rel_datadir.patch
+# Source0-md5: 600c5d8ffa45b1d73b5263809cb5e6f5
 URL:   http://fishshell.com/
 BuildRequires: cmake >= 3.2
 BuildRequires: gettext-tools
@@ -48,10 +46,8 @@ Pliki programistyczne dla fish.
 
 %prep
 %setup -q
-%patch0 -p1
-%patch1 -p1
 
-%{__sed} -i -e '1s,/usr/bin/env python$,%{__python},' 
share/tools/{deroff.py,create_manpage_completions.py,web_config/webconfig.py}
+%{__sed} -i -e '1s,/usr/bin/env python3$,%{__python3},' 
share/tools/create_manpage_completions.py
 
 %build
 %cmake -B build
@@ -98,7 +94,6 @@ end
 %{_datadir}/%{name}/groff/fish.tmac
 %dir %{_datadir}/%{name}/functions
 %{_datadir}/%{name}/functions/*.fish
-%{_datadir}/%{name}/lynx.lss
 %{_datadir}/%{name}/man
 %dir %{_datadir}/%{name}/tools
 %attr(755,root,root) %{_datadir}/%{name}/tools/create_manpage_completions.py
@@ -111,6 +106,7 @@ end
 %{_datadir}/%{name}/tools/web_config/js
 %{_datadir}/%{name}/tools/web_config/partials
 %{_datadir}/%{name}/tools/web_config/sample_prompts
+%{_datadir}/%{name}/tools/web_config/themes
 %attr(755,root,root) %{_datadir}/%{name}/tools/web_config/webconfig.py
 %dir %{_datadir}/%{name}/vendor_completions.d
 %dir %{_datadir}/%{name}/vendor_conf.d
diff --git a/fish-no_lld.patch b/fish-no_lld.patch
deleted file mode 100644
index 05863e9..000
--- a/fish-no_lld.patch
+++ /dev/null
@@ -1,25 +0,0 @@
 fish-3.3.1/CMakeLists.txt.orig 2021-07-06 16:45:37.0 +0200
-+++ fish-3.3.1/CMakeLists.txt  2021-07-19 19:39:56.209238876 +0200
-@@ -56,22 +56,6 @@
- # Disable exception handling.
- add_compile_options(-fno-exceptions)
- 
--# Prefer lld or the gold linker because they don't emit useless warnings 
about sys_nerr and
--# _sys_errlist. They're also faster (significantly so in the case of lld).
--if (UNIX)
--execute_process(COMMAND ${CMAKE_C_COMPILER} -fuse-ld=lld -Wl,--version
--ERROR_QUIET OUTPUT_VARIABLE LD_VERSION)
--if ("${LD_VERSION}" MATCHES "LLD ")
--set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -fuse-ld=lld")
--elseif (NOT APPLE)
--execute_process(COMMAND ${CMAKE_C_COMPILER} -fuse-ld=gold 
-Wl,--version
--ERROR_QUIET OUTPUT_VARIABLE LD_VERSION)
--if ("${LD_VERSION}" MATCHES "GNU gold")
--set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} 
-fuse-ld=gold")
--endif()
--endif()
--endif()
--
- # Hide the CMake Rules directories in Xcode projects.
- source_group("CMake Rules" REGULAR_EXPRESSION "^$")
- 
diff --git a/fish-rel_datadir.patch b/fish-rel_datadir.patch
deleted file mode 100644
index 1b2a55a..000
--- a/fish-rel_datadir.patch
+++ /dev/null
@@ -1,15 +0,0 @@
 fish-3.3.1/cmake/Install.cmake.orig2021-07-06 16:45:37.0 
+0200
-+++ fish-3.3.1/cmake/Install.cmake 2021-07-19 20:04:46.496541738 +0200
-@@ -14,7 +14,11 @@
- set(sysconfdir ${CMAKE_INSTALL_SYSCONFDIR})
- set(mandir ${CMAKE_INSTALL_MANDIR})
- 
--set(rel_datadir ${CMAKE_INSTALL_DATADIR})
-+if(IS_ABSOLUTE ${CMAKE_INSTALL_DATADIR})
-+  file(RELATIVE_PATH rel_datadir ${CMAKE_INSTALL_PREFIX} 
${CMAKE_INSTALL_DATADIR})
-+else()
-+  set(rel_datadir ${CMAKE_INSTALL_DATADIR})
-+endif()
- set(datadir ${CMAKE_INSTALL_FULL_DATADIR})
- 
- set(docdir ${CMAKE_INSTALL_DOCDIR})


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/fish.git/commitdiff/6f894dc4038f714aff1e8f940dba8e67c771e01a

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


[packages/shtool] - empty debugsource, disable it

2023-12-10 Thread hawk
commit 44dd32e3c3957ad039e6c963a471f6cc6cbe0df5
Author: Marcin Krol 
Date:   Sun Dec 10 19:19:26 2023 +0100

- empty debugsource, disable it

 shtool.spec | 2 ++
 1 file changed, 2 insertions(+)
---
diff --git a/shtool.spec b/shtool.spec
index 2307c46..3bcba04 100644
--- a/shtool.spec
+++ b/shtool.spec
@@ -12,6 +12,8 @@ BuildRequires:automake
 BuildRequires: perl-tools-pod
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
+%define_debugsource_packages   0
+
 %description
 GNU shtool is a compilation of small but very stable and portable
 shell scripts into a single shell tool. All ingredients were in


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/shtool.git/commitdiff/44dd32e3c3957ad039e6c963a471f6cc6cbe0df5

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


DISTFILES: xen: xen-4.16.5.tar.gz lwip-1.3.0.tar.gz newlib-1.16.0.tar.gz zlib-1.2.3.tar.gz pciutils-2.2.9.tar.bz2 grub-0.97.tar.gz ipxe-git-3c040ad387099483102708bb1839110bc788cefb.tar.gz polarssl-1.1

2023-12-10 Thread hawk
Request by: hawk


Files fetched: 1

STORED: https://downloads.xenproject.org/release/xen/4.16.5/xen-4.16.5.tar.gz
d2b76430ebac3cfc15dd25a352f7a5ac  xen-4.16.5.tar.gz
Size: 45023770 bytes
ALREADY GOT: https://xenbits.xensource.com/xen-extfiles/lwip-1.3.0.tar.gz
36cc57650cffda9a0269493be2a169bb  lwip-1.3.0.tar.gz
ALREADY GOT: https://xenbits.xensource.com/xen-extfiles/newlib-1.16.0.tar.gz
bf8f1f9e3ca83d732c00a79a6ef29bc4  newlib-1.16.0.tar.gz
ALREADY GOT: https://xenbits.xensource.com/xen-extfiles/zlib-1.2.3.tar.gz
debc62758716a169df9f62e6ab2bc634  zlib-1.2.3.tar.gz
ALREADY GOT: https://xenbits.xensource.com/xen-extfiles/pciutils-2.2.9.tar.bz2
cec05e7785497c5e19da2f114b934ffd  pciutils-2.2.9.tar.bz2
ALREADY GOT: https://xenbits.xensource.com/xen-extfiles/grub-0.97.tar.gz
cd3f3eb54446be6003156158d51f4884  grub-0.97.tar.gz
ALREADY GOT: 
https://xenbits.xensource.com/xen-extfiles/ipxe-git-3c040ad387099483102708bb1839110bc788cefb.tar.gz
23ba00d5e2c5b4343d12665af73e1cb5  
ipxe-git-3c040ad387099483102708bb1839110bc788cefb.tar.gz
ALREADY GOT: https://xenbits.xensource.com/xen-extfiles/polarssl-1.1.4-gpl.tgz
7b72caf22b01464ee7d6165f2fd85f44  polarssl-1.1.4-gpl.tgz
ALREADY GOT: 
https://xenbits.xensource.com/xen-extfiles/tpm_emulator-0.7.4.tar.gz
e26becb8a6a2b6695f6b3e8097593db8  tpm_emulator-0.7.4.tar.gz
ALREADY GOT: https://ftp.gnu.org/gnu/gmp/gmp-4.3.2.tar.bz2
dd60683d7057917e34630b4a787932e8  gmp-4.3.2.tar.bz2


-- 
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/xen] - updated to 4.16.5

2023-12-10 Thread hawk
commit c0c5607da385f1876a784fbe9ec7b2d2eb6568ee
Author: Marcin Krol 
Date:   Sun Dec 10 19:04:17 2023 +0100

- updated to 4.16.5

 xen.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/xen.spec b/xen.spec
index 1768704..d8667f6 100644
--- a/xen.spec
+++ b/xen.spec
@@ -44,13 +44,13 @@
 Summary:   Xen - a virtual machine monitor
 Summary(pl.UTF-8): Xen - monitor maszyny wirtualnej
 Name:  xen
-Version:   4.16.2
-Release:   2
+Version:   4.16.5
+Release:   1
 License:   GPL v2, interface parts on BSD-like
 Group: Applications/System
 # for available versions see https://xenproject.org/xen-project-archives/
 Source0:   
https://downloads.xenproject.org/release/xen/%{version}/%{name}-%{version}.tar.gz
-# Source0-md5: 6bd720f53e3c34a35cb8a8897a561e18
+# Source0-md5: d2b76430ebac3cfc15dd25a352f7a5ac
 # used by stubdoms
 Source10:  %{xen_extfiles_url}/lwip-1.3.0.tar.gz
 # Source10-md5:36cc57650cffda9a0269493be2a169bb


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/xen.git/commitdiff/c0c5607da385f1876a784fbe9ec7b2d2eb6568ee

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


[packages/xen] - looks like ZopeInterface is no longer required (can't find any reference to it in sources)

2023-12-10 Thread hawk
commit facebc0a75eb0d234353bc7a692940b78e8cb8a1
Author: Marcin Krol 
Date:   Sun Dec 10 18:34:11 2023 +0100

- looks like ZopeInterface is no longer required (can't find any
  reference to it in sources)

 xen.spec | 1 -
 1 file changed, 1 deletion(-)
---
diff --git a/xen.spec b/xen.spec
index 9a54909..1768704 100644
--- a/xen.spec
+++ b/xen.spec
@@ -189,7 +189,6 @@ BuildRequires:  xorg-lib-libXext-devel
 Requires(post,preun):  /sbin/chkconfig
 Requires(post,preun,postun):   systemd-units >= 38
 Requires:  %{name}-libs = %{version}-%{release}
-Requires:  ZopeInterface
 Requires:  bridge-utils
 Requires:  coreutils
 Requires:  diffutils


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/xen.git/commitdiff/c0c5607da385f1876a784fbe9ec7b2d2eb6568ee

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


[packages/ispell] - empty debugsource, disable it

2023-12-10 Thread hawk
commit a85cd80b83f4dbd931cdb0b6e731a914a794f70d
Author: Marcin Krol 
Date:   Sun Dec 10 17:04:29 2023 +0100

- empty debugsource, disable it

 ispell.spec | 2 ++
 1 file changed, 2 insertions(+)
---
diff --git a/ispell.spec b/ispell.spec
index 146c924..26a2b87 100644
--- a/ispell.spec
+++ b/ispell.spec
@@ -22,6 +22,8 @@ Conflicts:vim-ispell <= 4:6.1.212-4
 Conflicts: ispell-pl < 20021127-2
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
+%define_debugsource_packages   0
+
 %description
 This is the interactive spelling checker. You can run it on text files
 and it will interactively spell check. This means it will tell you


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/ispell.git/commitdiff/a85cd80b83f4dbd931cdb0b6e731a914a794f70d

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


[packages/libsigc++] - allow building without docs

2023-12-10 Thread hawk
commit c47fea209158baacdcdf821075c50e322697127f
Author: Marcin Krol 
Date:   Sun Dec 10 16:36:51 2023 +0100

- allow building without docs

 libsigc++.spec | 4 
 1 file changed, 4 insertions(+)
---
diff --git a/libsigc++.spec b/libsigc++.spec
index fd67678..e70b166 100644
--- a/libsigc++.spec
+++ b/libsigc++.spec
@@ -2,6 +2,7 @@
 # Conditional build:
 %bcond_without static_libs # don't build static library
 %bcond_without tests   # check target
+%bcond_without docs# docs
 #
 Summary:   The Typesafe Signal Framework for C++
 Summary(pl.UTF-8): Środowisko sygnałów z kontrolą typów dla C++
@@ -102,6 +103,7 @@ mm-common-prepare --copy --force
 %{__automake}
 %configure \
--disable-silent-rules \
+   %{!?with_docs:--disable-documentation} \
%{?with_static_libs:--enable-static}
 %{__make}
 
@@ -143,7 +145,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_libdir}/libsigc-2.0.a
 %endif
 
+%if %{with docs}
 %files doc
 %defattr(644,root,root,755)
 %{_datadir}/devhelp/books/libsigc++-2.0
 %{_docdir}/libsigc++-2.0
+%endif


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/libsigc++.git/commitdiff/c47fea209158baacdcdf821075c50e322697127f

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


[packages/vala] - allow packaging without apidocs

2023-12-10 Thread hawk
commit eadf4b7bd2e5a6e28ed884485a5ad5c258743a76
Author: Marcin Krol 
Date:   Sun Dec 10 15:53:35 2023 +0100

- allow packaging without apidocs

 vala.spec | 4 
 1 file changed, 4 insertions(+)
---
diff --git a/vala.spec b/vala.spec
index f14cd4a..9c6230c 100644
--- a/vala.spec
+++ b/vala.spec
@@ -2,6 +2,7 @@
 # Conditional build:
 %bcond_withbootstrap   # bootstrap build
 %bcond_without valadoc # valadoc
+%bcond_without apidocs # apidocs
 
 %definemajor_ver   0.56
 Summary:   GObject-based language compiler
@@ -144,6 +145,7 @@ install -d $RPM_BUILD_ROOT%{_datadir}/vala/vapi
 # loadable modules
 %{__rm} $RPM_BUILD_ROOT%{_libdir}/vala-*/lib*.la
 %{?with_valadoc:%{__rm} 
$RPM_BUILD_ROOT%{_libdir}/valadoc-*/doclets/*/libdoclet.la}
+%{!?with_apidocs:%{__rm} -r 
$RPM_BUILD_ROOT%{_datadir}/devhelp/books/vala-%{major_ver}}
 
 %clean
 rm -rf $RPM_BUILD_ROOT
@@ -192,9 +194,11 @@ rm -rf $RPM_BUILD_ROOT
 %{_aclocaldir}/vala.m4
 %{_aclocaldir}/vapigen.m4
 
+%if %{with apidocs}
 %files apidocs
 %defattr(644,root,root,755)
 %{_datadir}/devhelp/books/vala-%{major_ver}
+%endif
 
 %if %{with valadoc}
 %files -n valadoc


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/vala.git/commitdiff/eadf4b7bd2e5a6e28ed884485a5ad5c258743a76

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


[packages/vala] - allow building without valadoc

2023-12-10 Thread hawk
commit f962425427e5134cbb75a4bbfae384bdbe8da2c4
Author: Marcin Krol 
Date:   Sun Dec 10 15:26:44 2023 +0100

- allow building without valadoc

 vala.spec | 10 +++---
 1 file changed, 7 insertions(+), 3 deletions(-)
---
diff --git a/vala.spec b/vala.spec
index bace547..f14cd4a 100644
--- a/vala.spec
+++ b/vala.spec
@@ -1,6 +1,7 @@
 #
 # Conditional build:
 %bcond_withbootstrap   # bootstrap build
+%bcond_without valadoc # valadoc
 
 %definemajor_ver   0.56
 Summary:   GObject-based language compiler
@@ -19,7 +20,7 @@ BuildRequires:automake >= 1:1.11
 BuildRequires: bison
 BuildRequires: flex
 BuildRequires: glib2-devel >= 1:2.48.0
-BuildRequires: graphviz-devel >= 2.16
+%{?with_valadoc:BuildRequires: graphviz-devel >= 2.16}
 BuildRequires: help2man
 BuildRequires: libtool >= 2:2.2.6
 BuildRequires: libxslt-progs
@@ -127,7 +128,8 @@ API języka Vala do biblioteki Valadoc.
 %{__autoheader}
 %{__automake}
 %configure \
-   --disable-silent-rules
+   --disable-silent-rules \
+   %{!?with_valadoc:--disable-valadoc}
 %{__make}
 
 %install
@@ -141,7 +143,7 @@ install -d $RPM_BUILD_ROOT%{_datadir}/vala/vapi
 
 # loadable modules
 %{__rm} $RPM_BUILD_ROOT%{_libdir}/vala-*/lib*.la
-%{__rm} $RPM_BUILD_ROOT%{_libdir}/valadoc-*/doclets/*/libdoclet.la
+%{?with_valadoc:%{__rm} 
$RPM_BUILD_ROOT%{_libdir}/valadoc-*/doclets/*/libdoclet.la}
 
 %clean
 rm -rf $RPM_BUILD_ROOT
@@ -194,6 +196,7 @@ rm -rf $RPM_BUILD_ROOT
 %defattr(644,root,root,755)
 %{_datadir}/devhelp/books/vala-%{major_ver}
 
+%if %{with valadoc}
 %files -n valadoc
 %defattr(644,root,root,755)
 %attr(755,root,root) %{_bindir}/valadoc
@@ -222,3 +225,4 @@ rm -rf $RPM_BUILD_ROOT
 %defattr(644,root,root,755)
 %{_datadir}/vala/vapi/valadoc-%{major_ver}.deps
 %{_datadir}/vala/vapi/valadoc-%{major_ver}.vapi
+%endif


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/vala.git/commitdiff/f962425427e5134cbb75a4bbfae384bdbe8da2c4

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


[packages/virglrenderer] - BRs python3 not python

2023-12-10 Thread hawk
commit c98a49cbd35d955f67f2d60e25f2ddfb09e490f4
Author: Marcin Krol 
Date:   Sun Dec 10 14:47:01 2023 +0100

- BRs python3 not python

 virglrenderer.spec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/virglrenderer.spec b/virglrenderer.spec
index 0561258..0f5b518 100644
--- a/virglrenderer.spec
+++ b/virglrenderer.spec
@@ -21,7 +21,7 @@ BuildRequires:libepoxy-devel >= 1.5.4
 BuildRequires: meson >= 0.46
 BuildRequires: ninja >= 1.5
 BuildRequires: pkgconfig
-BuildRequires: python >= 2
+BuildRequires: python3
 BuildRequires: rpmbuild(macros) >= 1.736
 BuildRequires: sed >= 4.0
 BuildRequires: xorg-lib-libX11-devel


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/virglrenderer.git/commitdiff/c98a49cbd35d955f67f2d60e25f2ddfb09e490f4

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


[packages/lighttpd] - build with lua 5.4 instead of 5.1

2023-12-10 Thread hawk
commit c31f7712a7e6195e81913004bb18396be608b36c
Author: Marcin Krol 
Date:   Sun Dec 10 13:33:57 2023 +0100

- build with lua 5.4 instead of 5.1

 lighttpd.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/lighttpd.spec b/lighttpd.spec
index d67ba25..847ed36 100644
--- a/lighttpd.spec
+++ b/lighttpd.spec
@@ -137,7 +137,7 @@ BuildRequires:  fcgi-devel
 BuildRequires: libtool
 BuildRequires: libuuid-devel
 %{?with_webdav_props:BuildRequires:libxml2-devel}
-%{?with_lua:BuildRequires: lua51-devel}
+%{?with_lua:BuildRequires: lua54-devel}
 BuildRequires: mailcap >= 2.1.14-4.4
 %{?with_mysql:BuildRequires:   mysql-devel}
 %{?with_ldap:BuildRequires:openldap-devel}
@@ -897,7 +897,7 @@ fi
%{?with_gamin:--with-gamin} \
%{?with_krb5:--with-krb5} \
%{?with_ldap:--with-ldap} \
-   %{?with_lua:--with-lua=lua51} \
+   %{?with_lua:--with-lua=lua5.4} \
%{?with_maxminddb:--with-maxminddb} \
%{?with_mysql:--with-mysql} \
%{?with_pgsql:--with-pgsql} \


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/lighttpd.git/commitdiff/c31f7712a7e6195e81913004bb18396be608b36c

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


[packages/gpgme] - explicit selection of python2/3 is not supported for over 5 years - allow building without docs

2023-12-10 Thread hawk
commit 8f43307cea6cfa3955dd1eff358031ae74fdf4c5
Author: Marcin Krol 
Date:   Sun Dec 10 13:28:37 2023 +0100

- explicit selection of python2/3 is not supported for over 5 years
- allow building without docs

 gpgme.spec| 14 +++---
 no_docs.patch | 40 
 2 files changed, 51 insertions(+), 3 deletions(-)
---
diff --git a/gpgme.spec b/gpgme.spec
index 617244f..3e15b6f 100644
--- a/gpgme.spec
+++ b/gpgme.spec
@@ -9,6 +9,7 @@
 %bcond_without python2 # Python 2 interface (PyME)
 %bcond_without python3 # Python 3 interface (PyME)
 %bcond_without tests   # perform tests
+%bcond_without docs# Qt binding docs
 #
 %if %{without python}
 %undefine  with_python2
@@ -36,6 +37,7 @@ Patch1:   orig-version.patch
 Patch2:%{name}-largefile.patch
 Patch3:%{name}-python.patch
 Patch4:0001-fix-stupid-ax_python_devel.patch
+Patch5:no_docs.patch
 URL:   http://www.gnupg.org/gpgme.html
 BuildRequires: autoconf >= 2.69
 BuildRequires: automake >= 1:1.14
@@ -57,15 +59,19 @@ BuildRequires:  texinfo
 %if %{with qt5}
 BuildRequires: Qt5Core-devel >= 5.0.0
 %{?with_tests:BuildRequires:   Qt5Test-devel >= 5.8.0}
+%if %{with docs}
 BuildRequires: doxygen
 BuildRequires: graphviz
+%endif
 BuildRequires: qt5-build >= 5.0.0
 %endif
 %if %{with qt6}
 BuildRequires: Qt6Core-devel >= 6.4.0
 %{?with_tests:BuildRequires:   Qt6Test-devel >= 6.4.0}
+%if %{with docs}
 BuildRequires: doxygen
 BuildRequires: graphviz
+%endif
 BuildRequires: qt6-build >= 6.4.0
 %endif
 BuildConflicts:gnupg < 1.3.0
@@ -291,6 +297,7 @@ PyME to interfejs Pythona do biblioteki GPGME.
 %patch2 -p1
 %patch3 -p1
 %patch4 -p1
+%{!?with_docs:%patch5 -p1}
 
 %build
 %{__libtoolize}
@@ -299,8 +306,9 @@ PyME to interfejs Pythona do biblioteki GPGME.
 %{__autoheader}
 %{__automake}
 # in enable-languages:
-# "python" means both pythons (if available), "python2" just python2, 
"python3" just python3
-# (cannot specify "python2 python3" due to script limitations)
+# "python" means all installed python version (if any)
+# option to choose python2 and/or python3 explicitly was removed long time ago
+# https://github.com/gpg/gpgme/commit/ff6ff616aea6f59b7f2ce1176492850ecdf3851e
 %configure \
PACKAGE_VERSION=%{version} \
 %if %{without tests}
@@ -309,7 +317,7 @@ PyME to interfejs Pythona do biblioteki GPGME.
--disable-gpgconf-test \
--disable-gpgsm-test \
 %endif
-   --enable-languages="%{?with_commonlisp:cl} %{?with_cxx:cpp} 
%{?with_python2:python%{!?with_python3:2}} 
%{?with_python3:%{!?with_python2:python3}} %{?with_qt5:qt5} %{?with_qt6:qt6}" \
+   --enable-languages="%{?with_commonlisp:cl} %{?with_cxx:cpp} 
%{?with_python:python} %{?with_qt5:qt5} %{?with_qt6:qt6}" \
%{?with_static_libs:--enable-static}
 
 %{__make}
diff --git a/no_docs.patch b/no_docs.patch
new file mode 100644
index 000..4e7577a
--- /dev/null
+++ b/no_docs.patch
@@ -0,0 +1,40 @@
+--- gpgme-1.23.2/configure.ac.orig 2023-12-10 13:18:29.793064885 +0100
 gpgme-1.23.2/configure.ac  2023-12-10 13:21:03.640010838 +0100
+@@ -545,28 +545,7 @@
+ 
+ AM_CONDITIONAL(WANT_QT5, test "$want_qt5" = yes)
+ AM_CONDITIONAL(WANT_QT6, test "$want_qt6" = yes)
+-
+-# Check for tools for building the Qt binding docs
+-if test "$want_qt5" = "yes" -o "$want_qt6" = "yes"; then
+-AC_CHECK_PROGS([DOXYGEN], [doxygen])
+-if test -z "$DOXYGEN"; then
+-# This is not highlighted because it's not really important.
+-AC_MSG_WARN([Doxygen not found - Qt binding doc will not be built.])
+-fi
+-AC_CHECK_PROGS([GRAPHVIZ], [dot])
+-if test -z "$GRAPHVIZ"; then
+-AC_MSG_WARN([Graphviz not found - Qt binding doc will not have 
diagrams.])
+-fi
+-fi
+-
+-AM_CONDITIONAL([HAVE_DOXYGEN],
+-   [test -n "$DOXYGEN"])
+-if test -n "$GRAPHVIZ"; then
+-HAVE_DOT="YES"
+-else
+-HAVE_DOT="NO"
+-fi
+-AC_SUBST(HAVE_DOT)
++AM_CONDITIONAL([HAVE_DOXYGEN], 0)
+ 
+ # Python bindings.
+ LIST_MEMBER("python", $enabled_languages)
+@@ -1135,7 +1114,6 @@
+ AC_CONFIG_FILES(lang/qt/tests/Makefile)
+ AC_CONFIG_FILES(lang/qt/src/qgpgme_version.h)
+ AC_CONFIG_FILES([lang/Makefile lang/cl/Makefile lang/cl/gpgme.asd])
+-AM_COND_IF([HAVE_DOXYGEN], [AC_CONFIG_FILES([lang/qt/doc/Doxyfile])])
+ AC_CONFIG_FILES([lang/js/Makefile lang/js/src/Makefile
+  lang/js/BrowserTestExtension/Makefile
+  lang/js/DemoExtension/Makefile])


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/gpgme.git/commitdiff/8f43307cea6cfa3955dd1eff358031ae74fdf4c5

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


[packages/ntbtls] - fix building with recent libgpg-error

2023-12-09 Thread hawk
commit f35d9db0d949aceb3eb0b5f2baf91387fd583426
Author: Marcin Krol 
Date:   Sat Dec 9 22:05:38 2023 +0100

- fix building with recent libgpg-error

 ntbtls.spec | 1 -
 1 file changed, 1 deletion(-)
---
diff --git a/ntbtls.spec b/ntbtls.spec
index 377e88e..bec2242 100644
--- a/ntbtls.spec
+++ b/ntbtls.spec
@@ -96,7 +96,6 @@ rm -rf $RPM_BUILD_ROOT
 
 %files devel
 %defattr(644,root,root,755)
-%attr(755,root,root) %{_bindir}/ntbtls-config
 %attr(755,root,root) %{_libdir}/libntbtls.so
 %{_includedir}/ntbtls.h
 %{_pkgconfigdir}/ntbtls.pc


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/ntbtls.git/commitdiff/f35d9db0d949aceb3eb0b5f2baf91387fd583426

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


[packages/pulseaudio] - allow building without avahi

2023-12-09 Thread hawk
commit 09b0639cb4ce3d39bba6d8555b8f028aff9b9c0a
Author: Marcin Krol 
Date:   Sat Dec 9 14:57:09 2023 +0100

- allow building without avahi

 pulseaudio.spec | 12 
 1 file changed, 8 insertions(+), 4 deletions(-)
---
diff --git a/pulseaudio.spec b/pulseaudio.spec
index 7ba8426..9d7964c 100644
--- a/pulseaudio.spec
+++ b/pulseaudio.spec
@@ -5,6 +5,7 @@
 %bcond_withgdbm# use gdbm as backend for settings database
# see 
https://tango.0pointer.de/pipermail/pulseaudio-discuss/2009-May/003761.html
# thread, why it's a bad idea
+%bcond_without avahi   # Avahi support
 %bcond_without gstreamer   # BlueZ 5 GSstreamer support
 %bcond_without gstreamer_rtp   # GSstreamer-based RTP module instead of native
 %bcond_without lirc# lirc module
@@ -28,7 +29,7 @@ Patch0:   %{name}-pa-machine-id.patch
 Patch1:mate-desktop.patch
 URL:   http://pulseaudio.org/
 BuildRequires: alsa-lib-devel >= 1.0.24
-BuildRequires: avahi-devel >= 0.6.0
+%{?with_avahi:BuildRequires:   avahi-devel >= 0.6.0}
 # headers for bluez5-native-headset support
 BuildRequires: bluez-libs-devel >= 5
 BuildRequires: check-devel >= 0.9.10
@@ -85,7 +86,7 @@ BuildRequires:xorg-lib-libXtst-devel
 BuildRequires: xz
 Requires:  %{name}-libs = %{version}-%{release}
 Requires:  %{name}-tools = %{version}-%{release}
-Requires:  avahi >= 0.6.0
+%{?with_avahi:Requires:avahi >= 0.6.0}
 Requires:  dbus >= 1.4.12
 Obsoletes: polypaudio
 Obsoletes: pulseaudio-esound-compat < 15.0
@@ -390,6 +391,7 @@ Dokumentacja API PulseAudio.
-Dgsettings=enabled \
-Dgstreamer=%{__enabled_disabled gstreamer_rtp} \
-Dhal-compat=true \
+   %{!?with_avahi:-Davahi=disabled} \
%{!?with_lirc:-Dlirc=disabled} \
%{!?with_systemd:-Dsystemd=disabled} \
-Dwebrtc-aec=enabled \
@@ -497,7 +499,7 @@ fi
 %dir %{_libexecdir}/pulse
 %dir %{_libdir}/pulseaudio
 %dir %{_libdir}/pulseaudio/modules
-%attr(755,root,root) %{_libdir}/pulseaudio/modules/libavahi-wrap.so
+%{?with_avahi:%attr(755,root,root) 
%{_libdir}/pulseaudio/modules/libavahi-wrap.so}
 %attr(755,root,root) %{_libdir}/pulseaudio/modules/libcli.so
 %attr(755,root,root) %{_libdir}/pulseaudio/modules/liboss-util.so
 %attr(755,root,root) %{_libdir}/pulseaudio/modules/libprotocol-cli.so
@@ -543,7 +545,7 @@ fi
 %attr(755,root,root) %{_libdir}/pulseaudio/modules/module-pipe-sink.so
 %attr(755,root,root) %{_libdir}/pulseaudio/modules/module-pipe-source.so
 %attr(755,root,root) 
%{_libdir}/pulseaudio/modules/module-position-event-sounds.so
-%attr(755,root,root) %{_libdir}/pulseaudio/modules/module-raop-discover.so
+%{?with_avahi:%attr(755,root,root) 
%{_libdir}/pulseaudio/modules/module-raop-discover.so}
 %attr(755,root,root) %{_libdir}/pulseaudio/modules/module-raop-sink.so
 %attr(755,root,root) %{_libdir}/pulseaudio/modules/module-remap-sink.so
 %attr(755,root,root) %{_libdir}/pulseaudio/modules/module-remap-source.so
@@ -575,8 +577,10 @@ fi
 %attr(755,root,root) %{_libdir}/pulseaudio/modules/module-x11-cork-request.so
 %attr(755,root,root) %{_libdir}/pulseaudio/modules/module-x11-publish.so
 %attr(755,root,root) %{_libdir}/pulseaudio/modules/module-x11-xsmp.so
+%if %{with avahi}
 %attr(755,root,root) %{_libdir}/pulseaudio/modules/module-zeroconf-discover.so
 %attr(755,root,root) %{_libdir}/pulseaudio/modules/module-zeroconf-publish.so
+%endif
 %if %{with systemd}
 %{systemduserunitdir}/pulseaudio.service
 %{systemduserunitdir}/pulseaudio-x11.service


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/pulseaudio.git/commitdiff/09b0639cb4ce3d39bba6d8555b8f028aff9b9c0a

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


[packages/libasyncns] - rediffed

2023-12-09 Thread hawk
commit 44a87846cffa4c6fae74f8da058096fef7464699
Author: Marcin Krol 
Date:   Sat Dec 9 13:12:23 2023 +0100

- rediffed

 libasyncns-link.patch | 15 ---
 1 file changed, 8 insertions(+), 7 deletions(-)
---
diff --git a/libasyncns-link.patch b/libasyncns-link.patch
index d8c3885..66d284e 100644
--- a/libasyncns-link.patch
+++ b/libasyncns-link.patch
@@ -1,13 +1,14 @@
 libasyncns-0.1/configure.ac.orig   2005-01-08 02:04:04.0 +0100
-+++ libasyncns-0.1/configure.ac2006-04-23 14:20:59.398751000 +0200
-@@ -62,8 +62,8 @@
- AC_TYPE_SIGNAL
- AC_CHECK_FUNCS([memset select strndup setresuid setreuid])
+diff -urNp -x '*.orig' libasyncns-0.8.org/configure.ac 
libasyncns-0.8/configure.ac
+--- libasyncns-0.8.org/configure.ac2009-10-15 03:42:51.0 +0200
 libasyncns-0.8/configure.ac2023-12-09 13:12:10.465786710 +0100
+@@ -76,8 +76,8 @@ AC_CHECK_FUNCS([memset select strndup se
+ 
+ AC_SYS_LARGEFILE
  
 -AC_CHECK_LIB(nsl, gethostbyname)
 -AC_CHECK_LIB(socket, connect)
 +AC_SEARCH_LIBS(gethostbyname, nsl)
 +AC_SEARCH_LIBS(connect, socket)
  
- ACX_PTHREAD
- 
+ ACF_SEARCH_FUNCTION([res_query], [-lresolv, -lbind],
+   [], [AC_MSG_ERROR([res_query not found])],


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/libasyncns.git/commitdiff/44a87846cffa4c6fae74f8da058096fef7464699

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


[packages/lame] - rediffed

2023-12-09 Thread hawk
commit c160e46a2c614d22de0f64a3fa75714ab112b6f8
Author: Marcin Krol 
Date:   Sat Dec 9 13:09:54 2023 +0100

- rediffed

 lame-link.patch|  9 +
 lame-sse.patch | 39 +--
 lame-without_gtk.patch | 16 +---
 3 files changed, 35 insertions(+), 29 deletions(-)
---
diff --git a/lame-link.patch b/lame-link.patch
index 024d065..01d8e09 100644
--- a/lame-link.patch
+++ b/lame-link.patch
@@ -1,6 +1,7 @@
 lame-3.99/configure.in~2011-05-07 17:44:18.0 +0200
-+++ lame-3.99/configure.in 2011-10-19 10:52:46.216679017 +0200
-@@ -367,9 +367,10 @@
+diff -urNp -x '*.orig' lame-3.100.org/configure.in lame-3.100/configure.in
+--- lame-3.100.org/configure.in2017-08-15 17:16:31.0 +0200
 lame-3.100/configure.in2023-12-09 13:08:16.736805434 +0100
+@@ -418,9 +418,10 @@ dnl Checks for libraries.
  
  AC_CHECK_HEADERS(termcap.h)
  AC_CHECK_HEADERS(ncurses/termcap.h)
@@ -13,4 +14,4 @@
 +  AC_CHECK_LIB(termcap, tgetent, HAVE_TERMCAP="termcap")])])])
  
  AM_ICONV
-  
+ 
diff --git a/lame-sse.patch b/lame-sse.patch
index 1c37aec..8e4c94b 100644
--- a/lame-sse.patch
+++ b/lame-sse.patch
@@ -1,18 +1,9 @@
 lame-3.99.5/libmp3lame/vector/Makefile.am.orig 2007-01-09 
11:15:53.0 +0100
-+++ lame-3.99.5/libmp3lame/vector/Makefile.am  2017-03-24 22:07:11.773733964 
+0100
-@@ -8,6 +8,7 @@
- 
- ##liblamecpuroutines_la_LIBADD = 
- ##liblamecpuroutines_la_LDFLAGS =
-+liblamevectorroutines_la_CFLAGS = -msse
- 
- INCLUDES = @INCLUDES@ \
-   -I$(top_srcdir)/libmp3lame \
 lame-3.99.5/libmp3lame/fft.c.orig  2009-04-20 23:48:00.0 +0200
-+++ lame-3.99.5/libmp3lame/fft.c   2017-03-25 08:53:51.949957603 +0100
-@@ -308,7 +308,12 @@
+diff -urNp -x '*.orig' lame-3.100.org/libmp3lame/fft.c 
lame-3.100/libmp3lame/fft.c
+--- lame-3.100.org/libmp3lame/fft.c2017-09-06 21:33:36.0 +0200
 lame-3.100/libmp3lame/fft.c2023-12-09 13:09:38.767851762 +0100
+@@ -318,7 +318,12 @@ init_fft(lame_internal_flags * const gfc
  for (i = 0; i < BLKSIZE_s / 2; i++)
- window_s[i] = 0.5 * (1.0 - cos(2.0 * PI * (i + 0.5) / BLKSIZE_s));
+ gfc->cd_psy->window_s[i] = 0.5 * (1.0 - cos(2.0 * PI * (i + 0.5) / 
BLKSIZE_s));
  
 -gfc->fft_fht = fht;
 +#ifdef HAVE_XMMINTRIN_H
@@ -24,7 +15,7 @@
  #ifdef HAVE_NASM
  if (gfc->CPU_features.AMD_3DNow) {
  gfc->fft_fht = fht_3DN;
-@@ -316,14 +321,7 @@
+@@ -326,14 +331,7 @@ init_fft(lame_internal_flags * const gfc
  else if (gfc->CPU_features.SSE) {
  gfc->fft_fht = fht_SSE;
  }
@@ -41,9 +32,10 @@
  #endif
 +gfc->fft_fht = fht;
  }
 lame-3.99.5/libmp3lame/lame.c.orig 2017-03-25 08:56:45.616622288 +0100
-+++ lame-3.99.5/libmp3lame/lame.c  2017-03-25 08:56:51.43661 +0100
-@@ -1344,12 +1344,11 @@
+diff -urNp -x '*.orig' lame-3.100.org/libmp3lame/lame.c 
lame-3.100/libmp3lame/lame.c
+--- lame-3.100.org/libmp3lame/lame.c   2017-10-10 21:08:39.0 +0200
 lame-3.100/libmp3lame/lame.c   2023-12-09 13:09:38.768851775 +0100
+@@ -1354,12 +1354,11 @@ lame_print_config(const lame_global_flag
  else if (gfc->CPU_features.SSE) {
  fft_asm_used = 2;
  }
@@ -59,3 +51,14 @@
  #endif
  if (gfc->CPU_features.MMX) {
  #ifdef MMX_choose_table
+diff -urNp -x '*.orig' lame-3.100.org/libmp3lame/vector/Makefile.am 
lame-3.100/libmp3lame/vector/Makefile.am
+--- lame-3.100.org/libmp3lame/vector/Makefile.am   2007-01-09 
11:15:53.0 +0100
 lame-3.100/libmp3lame/vector/Makefile.am   2023-12-09 13:09:38.767851762 
+0100
+@@ -8,6 +8,7 @@ endif
+ 
+ ##liblamecpuroutines_la_LIBADD = 
+ ##liblamecpuroutines_la_LDFLAGS =
++liblamevectorroutines_la_CFLAGS = -msse
+ 
+ INCLUDES = @INCLUDES@ \
+   -I$(top_srcdir)/libmp3lame \
diff --git a/lame-without_gtk.patch b/lame-without_gtk.patch
index 9e96d0c..78afd7e 100644
--- a/lame-without_gtk.patch
+++ b/lame-without_gtk.patch
@@ -1,6 +1,7 @@
 lame-398/configure.in.orig 2008-08-30 12:40:34.0 +0200
-+++ lame-398/configure.in  2008-08-30 12:41:17.0 +0200
-@@ -386,7 +386,7 @@
+diff -urNp -x '*.orig' lame-3.100.org/configure.in lame-3.100/configure.in
+--- lame-3.100.org/configure.in2023-12-09 13:09:15.432554115 +0100
 lame-3.100/configure.in2023-12-09 13:09:15.512555135 +0100
+@@ -440,7 +440,7 @@ CONFIG_MATH_LIB="${USE_LIBM}"
  
  dnl configure use of features
  
@@ -9,11 +10,12 @@
  
  dnl ElectricFence malloc debugging
  AC_MSG_CHECKING(use of ElectricFence malloc debugging)
 lame-398/frontend/Makefile.am.orig 2008-08-30 12:40:34.0 +0200
-+++ lame-398/frontend/Makefile.am  2008-08-30 12:41:44.0 +0200
-@@ -51,7 +51,7 @@
+diff -urNp -x '*.orig' lame-3.100.org/frontend/Makefile.am 
lame-3.100/frontend/Makefile.am
+--- lame-3.100.org/frontend/Makefile.am2011-10-16 15:09:01.0 
+0200
 lame-3.100/frontend/Makefile.am2023-12-09 13:09:15.512555135 +0100
+@@ 

[packages/pulseaudio] - allow building on systems without systemd

2023-12-09 Thread hawk
commit 28b7bb9b873fd42e2b803d3675684c453c5cecae
Author: Marcin Krol 
Date:   Sat Dec 9 12:52:01 2023 +0100

- allow building on systems without systemd

 pulseaudio.spec | 8 
 1 file changed, 8 insertions(+)
---
diff --git a/pulseaudio.spec b/pulseaudio.spec
index cbe5701..7ba8426 100644
--- a/pulseaudio.spec
+++ b/pulseaudio.spec
@@ -10,6 +10,7 @@
 %bcond_without lirc# lirc module
 %bcond_withstatic_libs # static libraries
 %bcond_without apidocs # Doxygen based API documentation
+%bcond_without systemd # systemd
 
 Summary:   Modular sound server
 Summary(pl.UTF-8): Modularny serwer dźwięku
@@ -69,7 +70,11 @@ BuildRequires:   sbc-devel >= 1.0
 BuildRequires: soxr-devel >= 0.1.1
 BuildRequires: speex-devel >= 1:1.2-beta3
 BuildRequires: speexdsp-devel >= 1.2-0.beta3
+%if %{with systemd}
 BuildRequires: systemd-devel
+%else
+BuildRequires: elogind-devel
+%endif
 BuildRequires: tar >= 1:1.22
 BuildRequires: udev-devel >= 1:143
 BuildRequires: webrtc-audio-processing-devel >= 0.2
@@ -386,6 +391,7 @@ Dokumentacja API PulseAudio.
-Dgstreamer=%{__enabled_disabled gstreamer_rtp} \
-Dhal-compat=true \
%{!?with_lirc:-Dlirc=disabled} \
+   %{!?with_systemd:-Dsystemd=disabled} \
-Dwebrtc-aec=enabled \
-Dbashcompletiondir=%{bash_compdir} \
-Ddatabase=%{?with_gdbm:gdbm}%{!?with_gdbm:simple} \
@@ -571,9 +577,11 @@ fi
 %attr(755,root,root) %{_libdir}/pulseaudio/modules/module-x11-xsmp.so
 %attr(755,root,root) %{_libdir}/pulseaudio/modules/module-zeroconf-discover.so
 %attr(755,root,root) %{_libdir}/pulseaudio/modules/module-zeroconf-publish.so
+%if %{with systemd}
 %{systemduserunitdir}/pulseaudio.service
 %{systemduserunitdir}/pulseaudio-x11.service
 %{systemduserunitdir}/pulseaudio.socket
+%endif
 %{_mandir}/man1/pulseaudio.1*
 %{_mandir}/man1/start-pulseaudio-x11.1*
 %{_mandir}/man5/default.pa.5*


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/pulseaudio.git/commitdiff/28b7bb9b873fd42e2b803d3675684c453c5cecae

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


[packages/libxml++2] - allow building without apidocs

2023-12-08 Thread hawk
commit ad715fb815d4071641c5ebed48f2be8ec65222ba
Author: Marcin Krol 
Date:   Sat Dec 9 00:16:08 2023 +

- allow building without apidocs

 libxml++2.spec | 14 +-
 1 file changed, 9 insertions(+), 5 deletions(-)
---
diff --git a/libxml++2.spec b/libxml++2.spec
index 78d7235..1e0bfb5 100644
--- a/libxml++2.spec
+++ b/libxml++2.spec
@@ -1,6 +1,7 @@
 #
 # Conditional build:
 %bcond_without static_libs # static library
+%bcond_without apidocs # apidocs
 #
 Summary:   C++ interface for working with XML files
 Summary(pl.UTF-8): Interfejs C++ do pracy z plikami XML
@@ -14,15 +15,15 @@ Source0:
https://download.gnome.org/sources/libxml++/2.42/libxml++-%{version}.ta
 URL:   http://libxmlplusplus.sourceforge.net/
 BuildRequires: autoconf >= 2.59
 BuildRequires: automake >= 1:1.11
-BuildRequires: docbook-dtd50-xml
-BuildRequires: docbook-style-xsl-nons
-BuildRequires: doxygen >= 1:1.8.9
+%{?with_apidocs:BuildRequires: docbook-dtd50-xml}
+%{?with_apidocs:BuildRequires: docbook-style-xsl-nons}
+%{?with_apidocs:BuildRequires: doxygen >= 1:1.8.9}
 BuildRequires: glibmm-devel >= 2.32.0
-BuildRequires: graphviz
+%{?with_apidocs:BuildRequires: graphviz}
 BuildRequires: libstdc++-devel >= 6:4.7
 BuildRequires: libtool >= 2:2.2.6
 BuildRequires: libxml2-devel >= 1:2.7.7
-BuildRequires: libxslt-progs
+%{?with_apidocs:BuildRequires: libxslt-progs}
 BuildRequires: mm-common >= 0.9.10
 BuildRequires: pkgconfig
 BuildRequires: python3 >= 1:3
@@ -109,6 +110,7 @@ mm-common-prepare --copy --force
 %{__automake}
 %configure \
--disable-silent-rules \
+   %{!?with_apidocs:--disable-documentation} \
%{?with_static_libs:--enable-static}
 %{__make}
 
@@ -148,10 +150,12 @@ rm -rf $RPM_BUILD_ROOT
 %{_libdir}/libxml++-2.6.a
 %endif
 
+%if %{with apidocs}
 %files apidocs
 %defattr(644,root,root,755)
 %{_datadir}/devhelp/books/libxml++-2.6
 %{_docdir}/libxml++-2.6
+%endif
 
 %files examples
 %defattr(644,root,root,755)


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/libxml++2.git/commitdiff/ad715fb815d4071641c5ebed48f2be8ec65222ba

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


[packages/glibmm] - allow building without apidocs

2023-12-08 Thread hawk
commit 7973cd621eee2ebc6f4262f764b77ca40722ec59
Author: Marcin Krol 
Date:   Sat Dec 9 00:09:52 2023 +

- allow building without apidocs

 glibmm.spec | 10 +++---
 1 file changed, 7 insertions(+), 3 deletions(-)
---
diff --git a/glibmm.spec b/glibmm.spec
index 9fdbe37..2b1412c 100644
--- a/glibmm.spec
+++ b/glibmm.spec
@@ -1,6 +1,7 @@
 #
 # Conditional build:
 %bcond_without static_libs # don't build static library
+%bcond_without apidocs # documentation
 
 %defineglib_ver1:2.62.0
 %definelibsigc_ver 1:2.10.0
@@ -16,13 +17,13 @@ Source0:
https://download.gnome.org/sources/glibmm/2.66/%{name}-%{version}.tar.x
 URL:   https://www.gtkmm.org/
 BuildRequires: autoconf >= 2.59
 BuildRequires: automake >= 1:1.11
-BuildRequires: doxygen >= 1:1.8.9
+%{?with_apidocs:BuildRequires: doxygen >= 1:1.8.9}
 BuildRequires: glib2-devel >= %{glib_ver}
-BuildRequires: graphviz
+%{?with_apidocs:BuildRequires: graphviz}
 BuildRequires: libsigc++-devel >= %{libsigc_ver}
 BuildRequires: libstdc++-devel >= 6:4.7
 BuildRequires: libtool >= 2:2.0
-BuildRequires: libxslt-progs
+%{?with_apidocs:BuildRequires: libxslt-progs}
 BuildRequires: m4
 BuildRequires: mm-common >= 0.9.10
 BuildRequires: perl-XML-Parser
@@ -112,6 +113,7 @@ mm-common-prepare --copy --force
 %configure \
--enable-maintainer-mode \
--disable-silent-rules \
+   %{!?with_apidocs:--disable-documentation} \
%{?with_static_libs:--enable-static}
 
 %{__make}
@@ -173,9 +175,11 @@ rm -rf $RPM_BUILD_ROOT
 %{_libdir}/libglibmm_generate_extra_defs-2.4.a
 %endif
 
+%if %{with apidocs}
 %files apidocs
 %defattr(644,root,root,755)
 %{_gtkdocdir}/glibmm-2.4
+%endif
 
 %files examples
 %defattr(644,root,root,755)


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/glibmm.git/commitdiff/7973cd621eee2ebc6f4262f764b77ca40722ec59

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


[packages/gnulib] - empty debugsource, disable it

2023-12-08 Thread hawk
commit cb12aee6d90e14c0a6ade927fe33493419a85984
Author: Marcin Krol 
Date:   Fri Dec 8 23:47:55 2023 +0100

- empty debugsource, disable it

 gnulib.spec | 2 ++
 1 file changed, 2 insertions(+)
---
diff --git a/gnulib.spec b/gnulib.spec
index 79306b2..59b3788 100644
--- a/gnulib.spec
+++ b/gnulib.spec
@@ -15,6 +15,8 @@ Patch0:   %{name}-paths.patch
 URL:   http://www.gnu.org/software/gnulib/
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
+%define_debugsource_packages   0
+
 %description
 The GNU portability library is a macro system and C declarations and
 definitions for commonly-used API elements and abstracted system


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/gnulib.git/commitdiff/cb12aee6d90e14c0a6ade927fe33493419a85984

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


[packages/motif] - rediffed

2023-12-08 Thread hawk
commit e0281281ca8d8d2adee701c72d04312ef48ef37f
Author: Marcin Krol 
Date:   Fri Dec 8 22:49:56 2023 +0100

- rediffed

 motif-bison.patch| 13 +++--
 motif-freetype.patch |  9 +
 2 files changed, 12 insertions(+), 10 deletions(-)
---
diff --git a/motif-bison.patch b/motif-bison.patch
index 1044fb8..4188dd5 100644
--- a/motif-bison.patch
+++ b/motif-bison.patch
@@ -1,7 +1,8 @@
 openMotif-2.3.0/configure.ac.orig  2004-03-03 10:21:33.0 +
-+++ openMotif-2.3.0/configure.ac   2004-07-24 23:57:51.015614270 +
-@@ -32,9 +32,9 @@
- AM_PROG_LIBTOOL
+diff -urNp -x '*.orig' motif-2.3.8.org/configure.ac motif-2.3.8/configure.ac
+--- motif-2.3.8.org/configure.ac   2023-12-08 22:45:00.669224607 +0100
 motif-2.3.8/configure.ac   2023-12-08 22:45:00.874227241 +0100
+@@ -40,9 +40,9 @@ AM_PROG_LIBTOOL
+ 
  AC_EXEEXT
  
 -dnl AC_PROG_YACC
@@ -10,5 +11,5 @@
 -AC_CHECK_PROGS(YACC, byacc, yacc)
 +dnl AC_CHECK_PROGS(YACC, byacc, yacc)
  
- AM_PROG_LEX
- AC_PROG_INSTALL
+ dnl AC_PROG_SPLINT
+ AC_CHECK_PROGS(SPLINT, splint)
diff --git a/motif-freetype.patch b/motif-freetype.patch
index eee109c..940082b 100644
--- a/motif-freetype.patch
+++ b/motif-freetype.patch
@@ -1,6 +1,7 @@
 openmotif-2.3.0/ac_find_xft.m4.orig2007-11-27 15:01:28.0 
+0100
-+++ openmotif-2.3.0/ac_find_xft.m4 2007-11-27 15:03:36.0 +0100
-@@ -75,7 +75,12 @@
+diff -urNp -x '*.orig' motif-2.3.8.org/ac_find_xft.m4 
motif-2.3.8/ac_find_xft.m4
+--- motif-2.3.8.org/ac_find_xft.m4 2017-03-28 00:24:31.0 +0200
 motif-2.3.8/ac_find_xft.m4 2023-12-08 22:45:43.438774053 +0100
+@@ -75,7 +75,12 @@ saved_LIBS="$LIBS"
  LIBS="$LIBS $freetype_lib"
  saved_CPPFLAGS="$CPPFLAGS"
  CPPFLAGS="$CPPFLAGS $FREETYPE_CFLAGS"
@@ -12,5 +13,5 @@
 +  freetype/ftnames.h \
 +  )
  
- LT_HAVE_FREETYPE="no"
+ FINDXFT_HAVE_FREETYPE="no"
  case "$ac_cv_header_freetype_freetype_h" in


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/motif.git/commitdiff/e0281281ca8d8d2adee701c72d04312ef48ef37f

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


[packages/clucene-core] - fix time.h detection, fixes build with recent headers

2023-12-08 Thread hawk
commit 5634dd9948169e450531e720084cb56e362e0da9
Author: Marcin Krol 
Date:   Fri Dec 8 22:39:24 2023 +0100

- fix time.h detection, fixes build with recent headers

 clucene-core.spec |  4 +++-
 time.patch| 12 
 2 files changed, 15 insertions(+), 1 deletion(-)
---
diff --git a/clucene-core.spec b/clucene-core.spec
index aa2392d..4cf937f 100644
--- a/clucene-core.spec
+++ b/clucene-core.spec
@@ -2,13 +2,14 @@ Summary:  An indexing and searching API
 Summary(pl.UTF-8): API do indeksowania i wyszukiwania
 Name:  clucene-core
 Version:   2.3.3.4
-Release:   4
+Release:   5
 License:   LGPL or Apache v2.0
 Group: Libraries
 Source0:   
http://downloads.sourceforge.net/clucene/%{name}-%{version}.tar.gz
 # Source0-md5: 48d647fbd8ef8889e5a7f422c1bfda94
 Patch0:%{name}-2.3.3.4-install_contribs_lib.patch
 Patch1:remove-boost-headers.patch
+Patch2:time.patch
 URL:   http://clucene.sourceforge.net/
 BuildRequires: cmake
 BuildRequires: libstdc++-devel
@@ -52,6 +53,7 @@ Statyczna biblioteka CLucene.
 %setup -q
 %patch0 -p1
 %patch1 -p1
+%patch2 -p1
 
 %build
 install -d build
diff --git a/time.patch b/time.patch
new file mode 100644
index 000..fc7abbc
--- /dev/null
+++ b/time.patch
@@ -0,0 +1,12 @@
+diff -ur clucene-core-2.3.3.4.orig/src/shared/CLucene/clucene-config.h.cmake 
clucene-core-2.3.3.4/src/shared/CLucene/clucene-config.h.cmake
+--- clucene-core-2.3.3.4.orig/src/shared/CLucene/clucene-config.h.cmake
2011-03-17 01:21:07.0 +0100
 clucene-core-2.3.3.4/src/shared/CLucene/clucene-config.h.cmake 
2023-12-08 22:34:57.498531196 +0100
+@@ -101,7 +101,7 @@
+ 
+ /* Define to 1 if you can safely include both  and . */
+ //not actually used for anything...
+-//#cmakedefine _CL_TIME_WITH_SYS_TIME  1 
++#cmakedefine _CL_TIME_WITH_SYS_TIME  1 
+ 
+ /* Define that we will be using -fvisibility=hidden, and 
+  * make public classes visible using __attribute__ ((visibility("default")))


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/clucene-core.git/commitdiff/5634dd9948169e450531e720084cb56e362e0da9

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


[packages/cdparanoia-III] - fix "configure: error: cannot find required auxiliary files: config.guess config.sub"

2023-12-08 Thread hawk
commit ee1e727d2739e5825af18e1ba9168042db9ed0f0
Author: Marcin Krol 
Date:   Fri Dec 8 21:55:00 2023 +0100

- fix "configure: error: cannot find required auxiliary files: config.guess 
config.sub"

 cdparanoia-III.spec | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
---
diff --git a/cdparanoia-III.spec b/cdparanoia-III.spec
index 156d2e6..cdfe628 100644
--- a/cdparanoia-III.spec
+++ b/cdparanoia-III.spec
@@ -132,11 +132,12 @@ Bibliotecas estáticas do cdparanoia.
 
 %build
 # bleh? look at the beginning of configure.in
-cp -f %{_datadir}/automake/config.guess configure.guess
-cp -f %{_datadir}/automake/config.sub configure.sub
+cp -f %{_datadir}/automake/config.guess config.guess
+cp -f %{_datadir}/automake/config.sub config.sub
 %{__aclocal}
 %{__autoconf}
 %configure
+
 %{__make} -j1
 
 %install


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/cdparanoia-III.git/commitdiff/ee1e727d2739e5825af18e1ba9168042db9ed0f0

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


[packages/opensp] - rediffed

2023-12-03 Thread hawk
commit 244fb3899ea374490ff2fdb75098830bb6138389
Author: Marcin Krol 
Date:   Sun Dec 3 23:26:38 2023 +0100

- rediffed

 opensp-localedir.patch | 9 +
 1 file changed, 5 insertions(+), 4 deletions(-)
---
diff --git a/opensp-localedir.patch b/opensp-localedir.patch
index b4c02c6..dbcc647 100644
--- a/opensp-localedir.patch
+++ b/opensp-localedir.patch
@@ -1,8 +1,9 @@
 OpenSP-1.5.1/configure.in.orig 2003-10-22 22:23:52.639805072 +0200
-+++ OpenSP-1.5.1/configure.in  2003-10-22 22:26:22.293054320 +0200
-@@ -242,7 +242,7 @@
- ALL_LINGUAS="de fr ja sv"
+diff -urNp -x '*.orig' OpenSP-1.5.2.org/configure.in OpenSP-1.5.2/configure.in
+--- OpenSP-1.5.2.org/configure.in  2023-12-03 23:23:38.606960871 +0100
 OpenSP-1.5.2/configure.in  2023-12-03 23:23:38.684961806 +0100
+@@ -241,7 +241,7 @@ AC_CHECK_LIB(pthread,pthread_create,,AC_
  AM_GNU_GETTEXT
+ AM_GNU_GETTEXT_VERSION([0.14.5])
  AC_CHECK_HEADERS(locale.h)
 -AC_DEFINE_DIR(SP_LOCALE_DIR, datadir/locale, [location of message catalogs])
 +AC_DEFINE_UNQUOTED(SP_LOCALE_DIR, "${prefix}/share/locale", [location of 
message catalogs])


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/opensp.git/commitdiff/244fb3899ea374490ff2fdb75098830bb6138389

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


[packages/openjade] - ugly hack to make it build with recent autotools

2023-12-03 Thread hawk
commit 4c82cff12b303a848d7db3d0b15ac722a25f945c
Author: Marcin Krol 
Date:   Sun Dec 3 23:39:34 2023 +0100

- ugly hack to make it build with recent autotools

 openjade.spec | 14 +++---
 1 file changed, 11 insertions(+), 3 deletions(-)
---
diff --git a/openjade.spec b/openjade.spec
index 286d249..c74d1a7 100644
--- a/openjade.spec
+++ b/openjade.spec
@@ -1,5 +1,5 @@
 %define_prepre1
-%define_rel12
+%define_rel13
 Summary:   OpenJade - DSSSL parser
 Summary(pl.UTF-8): OpenJade - parser DSSSL
 Name:  openjade
@@ -87,9 +87,17 @@ tail -n +3349 config/aclocal.m4 | head -n 64 > acinclude.m4
 %{__libtoolize}
 %{__aclocal}
 %{__autoconf}
+# Ugly hack to avoid error:
+# configure: error: cannot find required auxiliary files: compile missing
+#
+# Proper way would be to use automake which creates these files,
+# but then it fails complaining that no Makefile.am exists
+cd config
+touch compile missing
+cd ..
 %configure \
---enable-default-catalog=%{_sysconfdir}/sgml/catalog \
---enable-default-search-path=%{_prefix}/share/sgml \
+   --enable-default-catalog=%{_sysconfdir}/sgml/catalog \
+   --enable-default-search-path=%{_prefix}/share/sgml \
--enable-mif \
--enable-html \
--enable-threads \


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/openjade.git/commitdiff/4c82cff12b303a848d7db3d0b15ac722a25f945c

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


[packages/rpcbind] - allow building on systems without systemd

2023-12-03 Thread hawk
commit 670473569fe70e9526c29742296db9f5e3179fcb
Author: Marcin Krol 
Date:   Sun Dec 3 22:28:20 2023 +0100

- allow building on systems without systemd

 rpcbind.spec | 10 +-
 1 file changed, 9 insertions(+), 1 deletion(-)
---
diff --git a/rpcbind.spec b/rpcbind.spec
index b9b8e07..93e03d5 100644
--- a/rpcbind.spec
+++ b/rpcbind.spec
@@ -1,6 +1,7 @@
 #
 # Conditional build:
 %bcond_withrmtcalls# Remote Calls
+%bcond_without systemd # systemd
 
 Summary:   Universal addresses to RPC program number mapper
 Summary(pl.UTF-8): Demon odwzorowujący adresy uniwersalne na numery 
programów RPC
@@ -28,7 +29,7 @@ BuildRequires:libtool
 BuildRequires: libwrap-devel
 BuildRequires: pkgconfig
 BuildRequires: rpmbuild(macros) >= 1.623
-BuildRequires: systemd-devel
+%{?with_systemd:BuildRequires: systemd-devel}
 Requires(post,preun):  /sbin/chkconfig
 Requires(post,preun,postun):   systemd-units >= 38
 Requires:  /sbin/chkconfig
@@ -76,7 +77,11 @@ wywołania RPC na serwerze na tej maszynie.
--enable-warmstarts \
--with-statedir=/var/lib/rpcbind \
--with-rpcuser=rpc \
+%if %{with systemd}
--with-systemdsystemunitdir=%{systemdunitdir}
+%else
+   --without-systemdsystemunitdir
+%endif
 %{__make}
 
 %install
@@ -139,5 +144,8 @@ fi
 %{_mandir}/man8/rpcbind.8*
 %{_mandir}/man8/rpcinfo.8*
 %dir %attr(700,rpc,root) %{_var}/lib/%{name}
+%if %{with systemd}
 %{systemdunitdir}/rpcbind.service
 %{systemdunitdir}/rpcbind.socket
+%endif
+


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/rpcbind.git/commitdiff/670473569fe70e9526c29742296db9f5e3179fcb

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


[packages/libvorbis] - rediffed

2023-12-03 Thread hawk
commit 5eb3a0c3451bd54d05ceb3dd55ccc6973f8dc48b
Author: Marcin Krol 
Date:   Sun Dec 3 22:24:14 2023 +0100

- rediffed

 libvorbis-make.patch | 16 +---
 libvorbis.spec   |  2 +-
 2 files changed, 10 insertions(+), 8 deletions(-)
---
diff --git a/libvorbis.spec b/libvorbis.spec
index cf87266..ff5912d 100644
--- a/libvorbis.spec
+++ b/libvorbis.spec
@@ -5,7 +5,7 @@ Summary(ru.UTF-8):  Кодек звуковой компрессии Vorbis
 Summary(uk.UTF-8): Кодек звукової компресії Vorbis
 Name:  libvorbis
 Version:   1.3.7
-Release:   1
+Release:   2
 Epoch: 1
 License:   BSD
 Group: Libraries
diff --git a/libvorbis-make.patch b/libvorbis-make.patch
index 6afca20..784daa4 100644
--- a/libvorbis-make.patch
+++ b/libvorbis-make.patch
@@ -1,6 +1,7 @@
 libvorbis-1.0beta4.org/lib/Makefile.am Sun Apr 29 00:04:26 2001
-+++ libvorbis-1.0beta4/lib/Makefile.am Sun Apr 29 01:10:55 2001
-@@ -30,7 +30,7 @@
+diff -urNp -x '*.orig' libvorbis-1.3.7.org/lib/Makefile.am 
libvorbis-1.3.7/lib/Makefile.am
+--- libvorbis-1.3.7.org/lib/Makefile.am2020-03-23 16:04:43.0 
+0100
 libvorbis-1.3.7/lib/Makefile.am2023-12-03 22:23:28.543496803 +0100
+@@ -32,7 +32,7 @@ CLEANFILES = $(EXTRA_PROGRAMS)
  barkmel_SOURCES = barkmel.c
  tone_SOURCES = tone.c
  psytune_SOURCES = psytune.c
@@ -8,10 +9,11 @@
 +psytune_LDFLAGS = 
  psytune_LDADD = libvorbis.la
  
- EXTRA_DIST = lookups.pl iir.c
 libvorbis-1.3.6/vq/Makefile.am.orig2018-03-16 20:52:17.501161210 
+0100
-+++ libvorbis-1.3.6/vq/Makefile.am 2018-03-16 20:53:01.524494045 +0100
-@@ -4,7 +4,6 @@
+ EXTRA_DIST = lookups.pl CMakeLists.txt
+diff -urNp -x '*.orig' libvorbis-1.3.7.org/vq/Makefile.am 
libvorbis-1.3.7/vq/Makefile.am
+--- libvorbis-1.3.7.org/vq/Makefile.am 2020-03-23 16:04:43.0 +0100
 libvorbis-1.3.7/vq/Makefile.am 2023-12-03 22:23:28.543496803 +0100
+@@ -4,7 +4,6 @@ EXTRA_PROGRAMS = latticebuild latticetun
  CLEANFILES = $(EXTRA_PROGRAMS)
  
  AM_CPPFLAGS = -I../lib -I$(top_srcdir)/include @OGG_CFLAGS@


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/libvorbis.git/commitdiff/5eb3a0c3451bd54d05ceb3dd55ccc6973f8dc48b

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


[packages/papi] - rediffed

2023-12-03 Thread hawk
commit 665ac7bee963a2d996b5fde31910de5d7ab51b2b
Author: Marcin Krol 
Date:   Sun Dec 3 22:22:25 2023 +0100

- rediffed

 papi-install.patch | 7 ---
 papi.spec  | 2 +-
 2 files changed, 5 insertions(+), 4 deletions(-)
---
diff --git a/papi.spec b/papi.spec
index 23504b7..8db76d4 100644
--- a/papi.spec
+++ b/papi.spec
@@ -1,5 +1,5 @@
 # TODO: config file for mod_ipp
-%definerel 4
+%definerel 5
 Summary:   Free Standards Group Open Printing API and applications 
implementation
 Summary(pl.UTF-8): Implementacja API i aplikacji Free Standards Group Open 
Printing
 Name:  papi
diff --git a/papi-install.patch b/papi-install.patch
index 0ab86fd..0ab9fdc 100644
--- a/papi-install.patch
+++ b/papi-install.patch
@@ -1,7 +1,8 @@
 papi-1.0_beta/docs/man/Makefile.am.orig2006-03-12 07:30:42.0 
+0100
-+++ papi-1.0_beta/docs/man/Makefile.am 2011-11-13 12:17:58.690950257 +0100
+diff -urNp -x '*.orig' papi-1.0_beta.org/docs/man/Makefile.am 
papi-1.0_beta/docs/man/Makefile.am
+--- papi-1.0_beta.org/docs/man/Makefile.am 2006-03-12 07:30:42.0 
+0100
 papi-1.0_beta/docs/man/Makefile.am 2023-12-03 22:21:12.047889215 +0100
 @@ -5,17 +5,14 @@
- # $Id$
+ # $Id: Makefile.am,v 1.5 2006/03/12 06:30:42 njacobs Exp $
  #
  
 -man_MANS_in  = lpq.1b.in lpr.1b.in lprm.1b.in lpc.1b.in


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/papi.git/commitdiff/665ac7bee963a2d996b5fde31910de5d7ab51b2b

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


[packages/lvm2] - fix conditional

2023-12-03 Thread hawk
commit 68feeb83d057e00af9716c7480b1dbb432698bb8
Author: Marcin Krol 
Date:   Sun Dec 3 21:51:02 2023 +0100

- fix conditional

 lvm2.spec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/lvm2.spec b/lvm2.spec
index 16861e6..9eb7816 100644
--- a/lvm2.spec
+++ b/lvm2.spec
@@ -17,7 +17,7 @@
 
 # lvmlockd requires lvmpolld
 %if %{without lvmpolld}
-%undefine  with_lvmpolld
+%undefine  with_lvmlockd
 %endif
 
 %if %{without cluster} && %{without sanlock}


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/lvm2.git/commitdiff/68feeb83d057e00af9716c7480b1dbb432698bb8

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


[packages/libivykis] - fix build with libtool 2.4.7

2023-12-03 Thread hawk
commit 65c952ac6035e98686d7af37fd6d563e19acf7de
Author: Marcin Krol 
Date:   Sun Dec 3 19:23:14 2023 +0100

- fix build with libtool 2.4.7

 libivykis.spec | 9 -
 1 file changed, 8 insertions(+), 1 deletion(-)
---
diff --git a/libivykis.spec b/libivykis.spec
index 701f1d8..51f1a90 100644
--- a/libivykis.spec
+++ b/libivykis.spec
@@ -2,7 +2,7 @@ Summary:Wrapper over various OS'es implementation of 
I/O readiness notification
 Summary(pl.UTF-8): Obudowanie implementacji różnych OS-ów powiadamiania o 
dostępności we/wy
 Name:  libivykis
 Version:   0.42.4
-Release:   1
+Release:   2
 License:   LGPL v2.1
 Group: Libraries
 Source0:   
http://downloads.sourceforge.net/libivykis/ivykis-%{version}.tar.gz
@@ -54,10 +54,17 @@ Biblioteki statyczne libivykis.
 %patch0 -p1
 
 %build
+cd test.mt
 %{__libtoolize}
 %{__aclocal}
+%{__autoheader}
 %{__automake}
+%{__autoconf}
+cd ..
+%{__libtoolize}
+%{__aclocal}
 %{__autoheader}
+%{__automake}
 %{__autoconf}
 %configure
 


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/libivykis.git/commitdiff/65c952ac6035e98686d7af37fd6d563e19acf7de

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


[packages/python-distro] - fix packaging when built w/o python2

2023-12-03 Thread hawk
commit b97edf36e857615ac39f597f92f5c93c72f0a44e
Author: Marcin Krol 
Date:   Sun Dec 3 19:13:00 2023 +0100

- fix packaging when built w/o python2

 python-distro.spec | 2 ++
 1 file changed, 2 insertions(+)
---
diff --git a/python-distro.spec b/python-distro.spec
index 84bba17..b33c733 100644
--- a/python-distro.spec
+++ b/python-distro.spec
@@ -124,9 +124,11 @@ rm -rf $RPM_BUILD_ROOT
 
 %files
 %defattr(644,root,root,755)
+%if %{with python2}
 %doc CHANGELOG.md CONTRIBUTORS.md LICENSE README.md
 %{py_sitescriptdir}/distro.py[co]
 %{py_sitescriptdir}/distro-%{version}-py*.egg-info
+%endif
 
 %if %{with python3}
 %files -n python3-%{module}


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/python-distro.git/commitdiff/b97edf36e857615ac39f597f92f5c93c72f0a44e

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


[packages/gnuplot] - requires /usr/bin/lua which is provided by lua54 now

2023-12-03 Thread hawk
commit 76e39c1d6048168836b2e570cfcda912d6d0a034
Author: Marcin Krol 
Date:   Sun Dec 3 17:37:15 2023 +0100

- requires /usr/bin/lua which is provided by lua54 now

 gnuplot.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/gnuplot.spec b/gnuplot.spec
index 4085ceb..be0a20b 100644
--- a/gnuplot.spec
+++ b/gnuplot.spec
@@ -21,7 +21,7 @@ Summary(tr.UTF-8):Matematiksel görselleştirme paketi
 Summary(uk.UTF-8): Програма для побудови графіків математичних виразів та 
даних
 Name:  gnuplot
 Version:   5.2.8
-Release:   2
+Release:   3
 License:   distributable (with modifications properly marked if any)
 Group: Applications/Math
 Source0:   
http://downloads.sourceforge.net/gnuplot/%{name}-%{version}.tar.gz
@@ -65,8 +65,8 @@ BuildRequires:libcerf-devel
 # ???
 %{?with_ggixmi:BuildRequires:  libggi-xmi-devel}
 BuildRequires: libpng-devel >= 1.0.8
-BuildRequires: lua53 >= 5.3
-BuildRequires: lua53-devel >= 5.3
+BuildRequires: lua54 >= 5.4
+BuildRequires: lua54-devel >= 5.4
 BuildRequires: ncurses-devel
 BuildRequires: pango-devel > 1:1.22
 BuildRequires: pkgconfig


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/gnuplot.git/commitdiff/76e39c1d6048168836b2e570cfcda912d6d0a034

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


[packages/freetype1] - updated autoconf stuff

2023-12-03 Thread hawk
commit c179549671277888a8a8eb992fb7fd26390cde90
Author: Marcin Krol 
Date:   Sun Dec 3 17:27:16 2023 +0100

- updated autoconf stuff

 freetype-autoconf.patch | 173 +++-
 freetype1-link.patch|  10 ---
 2 files changed, 158 insertions(+), 25 deletions(-)
---
diff --git a/freetype-autoconf.patch b/freetype-autoconf.patch
index c6c44e6..5f37d3c 100644
--- a/freetype-autoconf.patch
+++ b/freetype-autoconf.patch
@@ -1,16 +1,27 @@
 diff -urN freetype-1.3.1.org/configure.in freetype-1.3.1/configure.in
 freetype-1.3.1.org/configure.inFri Apr 12 13:38:29 2002
-+++ freetype-1.3.1/configure.inFri Apr 12 13:38:43 2002
-@@ -4,6 +4,8 @@
+--- freetype-1.3.1.org/configure.in1999-09-03 15:09:55.0 +0200
 freetype-1.3.1/configure.in2023-12-03 15:53:38.966698165 +0100
+@@ -2,14 +2,16 @@
+ dnl
+ dnl Process this file with autoconf to produce a configure script.
  
- AC_INIT(lib/freetype.h)
- 
-+AM_INIT_AUTOMAKE(freetype, 1.3.1)
+-AC_INIT(lib/freetype.h)
++AC_INIT([freetype],[1.3.1])
 +
++AM_INIT_AUTOMAKE
+ 
  dnl Due to a bug in autoconf we must set $srcdir explicitly to an absolute
  dnl path.
  srcdir=`cd $srcdir; pwd`
-@@ -17,11 +19,6 @@
+ 
+-AM_DISABLE_STATIC
+-AM_PROG_LIBTOOL
++AC_DISABLE_STATIC([])
++LT_INIT
+ 
+ dnl FreeType version
+ freetype_version='1.2.0'
+@@ -17,14 +19,6 @@
  dnl libttf.so version
  version_info='4:0:2'
  
@@ -19,10 +30,21 @@ diff -urN freetype-1.3.1.org/configure.in 
freetype-1.3.1/configure.in
 -  USE_NLS=no, USE_NLS=yes)
 -AC_SUBST(USE_NLS)
 -
- dnl Checks for system type.
- AC_CANONICAL_SYSTEM
+-dnl Checks for system type.
+-AC_CANONICAL_SYSTEM
+-
+ dnl Checks for programs.
+ AC_PROG_CC
+ AC_PROG_CPP
+@@ -44,6 +38,7 @@
+   esac
+ fi
+ AC_SUBST(XX_CFLAGS)
++AC_SUBST(LDFLAGS)
  
-@@ -57,100 +54,8 @@
+ dnl at least Digital UNIX 4.0d needs this due to a strange make program
+ 
+@@ -57,100 +52,8 @@
  AC_SUBST(freetype_version)
  AC_SUBST(version_info)
  
@@ -121,11 +143,23 @@ diff -urN freetype-1.3.1.org/configure.in 
freetype-1.3.1/configure.in
 -fi
 -
 +ALL_LINGUAS="cs de es fr nl"
-+AM_GNU_GETTEXT
++AM_GNU_GETTEXT([external])
  
  AC_CHECK_PROG(RM, rm, rm)
  AC_CHECK_PROG(RMDIR, rmdir, rmdir)
-@@ -194,8 +99,7 @@
+@@ -184,18 +87,18 @@
+ 
+ AC_CHECK_FUNCS(memcpy memmove)
+ 
+-AC_CONFIG_HEADER(ft_conf.h)
++AC_CONFIG_HEADERS([ft_conf.h])
+ 
+ dnl Another bug: to make --srcdir work correctly we have to create the
+ dnl directory hierarchy first since autoconf only uses mkdir.
+ $srcdir/mkinstalldirs lib/arch/unix test/arch/unix
+ 
+-AC_OUTPUT(Makefile
++AC_CONFIG_FILES([Makefile
 MakeSub
 lib/arch/unix/Makefile
 test/arch/unix/Makefile 
@@ -133,12 +167,121 @@ diff -urN freetype-1.3.1.org/configure.in 
freetype-1.3.1/configure.in
 -  [sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile])
 -
 +   po/Makefile.in
-+ intl/Makefile)
++ ])
++AC_OUTPUT
+ 
+ dnl end of configure.in
+diff -urN freetype-1.3.1.org/contrib/ttf2bdf/configure.in 
freetype-1.3.1/contrib/ttf2bdf/configure.in
+--- freetype-1.3.1.org/contrib/ttf2bdf/configure.in1998-01-14 
22:45:26.0 +0100
 freetype-1.3.1/contrib/ttf2bdf/configure.in2023-12-03 
17:03:19.985312018 +0100
+@@ -1,7 +1,8 @@
+ dnl $Id: configure.in,v 1.1 1998/01/14 21:45:26 mleisher Exp $
+ dnl Process this file with autoconf to produce a configure script.
+ 
+-AC_INIT(../../lib/freetype.h)
++AC_INIT
++AC_CONFIG_SRCDIR([../../lib/freetype.h])
+ 
+ AC_PROG_CC
+ 
+@@ -31,10 +32,13 @@
+ AC_CHECK_PROG(RM, rm, rm)
+ 
+ dnl Checks for header files.
+-AC_HEADER_STDC
++AC_CHECK_INCLUDES_DEFAULT
++AC_PROG_EGREP
++
+ AC_CHECK_HEADERS(unistd.h)
+ 
+ dnl Checks for library functions.
+ AC_FUNC_MEMCMP
+ 
+-AC_OUTPUT(Makefile)
++AC_CONFIG_FILES([Makefile])
++AC_OUTPUT
+diff -urN freetype-1.3.1.org/contrib/ttf2pfb/configure.in 
freetype-1.3.1/contrib/ttf2pfb/configure.in
+--- freetype-1.3.1.org/contrib/ttf2pfb/configure.in1999-03-02 
18:34:16.0 +0100
 freetype-1.3.1/contrib/ttf2pfb/configure.in2023-12-03 
17:03:29.788431544 +0100
+@@ -1,8 +1,9 @@
+ dnl Process this file with autoconf to produce a configure script.
+ 
+-AC_INIT(../../lib/freetype.h)
++AC_INIT
++AC_CONFIG_SRCDIR([../../lib/freetype.h])
+ 
+-AC_CANONICAL_SYSTEM
++AC_CANONICAL_TARGET
+ 
+ AC_PROG_CC
+ AC_PROG_CPP
+@@ -37,9 +38,12 @@
+ AC_STRUCT_TM
+ 
+ dnl Checks for header files.
+-AC_HEADER_STDC
++AC_CHECK_INCLUDES_DEFAULT
++AC_PROG_EGREP
++
+ AC_CHECK_HEADERS(unistd.h)
+ 
+-AC_OUTPUT(Makefile)
++AC_CONFIG_FILES([Makefile])
++AC_OUTPUT
+ 
+ dnl end of configure.in
+diff -urN freetype-1.3.1.org/contrib/ttf2pk/configure.in 
freetype-1.3.1/contrib/ttf2pk/configure.in
+--- freetype-1.3.1.org/contrib/ttf2pk/configure.in 1999-06-10 
23:51:36.0 +0200
 freetype-1.3.1/contrib/ttf2pk/configure.in 2023-12-03 17:01:47.867188847 
+0100
+@@ -5,9 +5,10 @@
+ dnl Some tests are omitted since we 

[packages/freetype1] - ugly hack to make it build with recent autotools

2023-12-03 Thread hawk
commit 718cdb2118cd27e1be686d0d51a11f34226370a8
Author: Marcin Krol 
Date:   Sun Dec 3 17:30:12 2023 +0100

- ugly hack to make it build with recent autotools

 freetype1.spec | 6 ++
 1 file changed, 6 insertions(+)
---
diff --git a/freetype1.spec b/freetype1.spec
index 3e1221e..0df3022 100644
--- a/freetype1.spec
+++ b/freetype1.spec
@@ -140,6 +140,12 @@ mv -f configure.in.tmp configure.in
 %{__libtoolize}
 %{__aclocal}
 %{__autoconf}
+# Ugly hack to avoid error:
+# configure: error: cannot find required auxiliary files: compile missing
+#
+# Proper way would be to use automake which creates these files,
+# but then it fails complaining that no Makefile.am exists
+touch compile missing
 %configure \
%{?with_static_libs:--enable-static} \
 --with-gnu-ld


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/freetype1.git/commitdiff/718cdb2118cd27e1be686d0d51a11f34226370a8

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


[packages/zziplib] - confgiure.ac looks for python3, not python

2023-12-03 Thread hawk
commit 5cb6d18b2fc7b818beb7d773681baf64613a63a2
Author: Marcin Krol 
Date:   Sun Dec 3 15:05:32 2023 +0100

- confgiure.ac looks for python3, not python

 zziplib.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/zziplib.spec b/zziplib.spec
index 8ae7abb..f913412 100644
--- a/zziplib.spec
+++ b/zziplib.spec
@@ -22,8 +22,8 @@ BuildRequires:automake >= 1:1.7
 BuildRequires: docbook-dtd412-xml
 BuildRequires: libtool >= 1:1.4.3
 BuildRequires: pkgconfig
-BuildRequires: python
-BuildRequires: python-modules
+BuildRequires: python3
+BuildRequires: python3-modules
 BuildRequires: rpm-build >= 4.6
 BuildRequires: xmlto
 BuildRequires: zip


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/zziplib.git/commitdiff/5cb6d18b2fc7b818beb7d773681baf64613a63a2

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


<    1   2   3   4   5   6   7   8   9   10   >