Browse Source

updated 12 packages

brotli-1.1.0-1

busybox-1.36.1-1

coreutils-9.4-1

dbus-1.14.10-1

freerdp-2.11.1-1

golang-1.21.1-1

libarchive-3.7.2-1

libnl3-3.8.0-1

libxml2-2.11.5-1

libxslt-1.1.38-1

openssl111-1.1.1w-1

uClibc-ng-1.0.44-1
Tomohiro "Tomo-p" KATO 5 months ago
parent
commit
2c4a163c41

+ 7 - 8
b/brotli/brotli-vl.spec

@@ -3,8 +3,8 @@
 Summary:        Lossless compression algorithm
 Summary(ja):    ロスレス圧縮アルゴリズム
 Name:           brotli
-Version:        1.0.9
-Release:        2%{?_dist_release}
+Version:        1.1.0
+Release:        1%{?_dist_release}
 Group:          system
 Vendor:         Project Vine
 Distribution:   Vine Linux
@@ -12,8 +12,6 @@ Distribution:   Vine Linux
 License:        MIT
 URL:            https://github.com/google/brotli
 Source0:        https://github.com/google/brotli/archive/v%{version}.tar.gz
-# fix *.pc
-Patch0:         09b0992b6acb7faa6fd3b23f9bc036ea117230fc.patch
 
 BuildRequires:  cmake
 BuildRequires:  python3-devel python-rpm-macros python3-rpm-macros
@@ -79,9 +77,6 @@ This package installs the development files
 %install
 %cmake_install
 
-# I couldn't find the option to not build the static libraries
-%__rm "%{buildroot}%{_libdir}/"*.a
-
 %py3_install
 %{__install} -dm755 "%{buildroot}%{_mandir}/man3"
 cd docs
@@ -116,12 +111,16 @@ done
 
 
 %changelog
+* Thu Aug 31 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.1.0-1
+- new upstream release.
+- dropped Patch0: fixed in upstream.
+
 * Fri Apr 02 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.0.9-2
 - imported Patch0 from upstream to fix *.pc.
 - dropped ldconfig scriptlets.
 
 * Tue Sep 22 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.0.9-1
-- nre upstream release.
+- new upstream release.
 
 * Mon Aug 17 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.0.7-5
 - rebuilt with python-3.8.

+ 4 - 1
b/busybox/busybox-vl.spec

@@ -1,6 +1,6 @@
 Summary: Statically linked binary providing simplified versions of system commands
 Name: busybox
-Version: 1.34.1
+Version: 1.36.1
 Release: 1%{?_dist_release}
 Group: system
 Vendor: Project Vine
@@ -113,6 +113,9 @@ install -m 644 docs/busybox.anaconda.1 $RPM_BUILD_ROOT/%{_mandir}/man1/busybox.a
 
 
 %changelog
+* Fri Sep 08 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.36.1-1
+- new upstream release.
+
 * Thu Nov 18 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.34.1-1
 - new upstream release.
 - dropped Patch1000.

+ 9 - 17
c/coreutils/coreutils-vl.spec

@@ -1,7 +1,7 @@
 Summary: The GNU core utilities: a set of tools commonly used in shell scripts
 Summary(ja): GNU コアユーティリティ: シェルスクリプトで用いるツール集
 Name:    coreutils
-Version: 9.0
+Version: 9.4
 Release: 1%{?_dist_release}
 License: GPL
 Group:   system
@@ -17,8 +17,8 @@ Source106:  coreutils-colorls.csh
 # Vine sources
 Source1000: coreutils-8.10-ja.po
 
-# chmod: fix exit status when ignoring symlinks
-Patch1:   coreutils-9.0-chmod-symlink.patch
+# revert a gnulib patch that broke the build
+Patch1:   coreutils-9.3-gnulib-strtol.patch
 
 # disable the test-lock gnulib test prone to deadlock
 Patch100: coreutils-8.26-test-lock.patch
@@ -28,23 +28,12 @@ Patch105: coreutils-8.26-selinuxenable.patch
 
 # downstream changes to default DIR_COLORS
 Patch102: coreutils-8.32-DIR_COLORS.patch
-#do display processor type for uname -p/-i based on uname(2) syscall
-Patch103: coreutils-8.2-uname-processortype.patch
+
 #df --direct
 Patch104: coreutils-df-direct.patch
-#add note about mkdir --mode behaviour into info documentation(#610559)
-Patch107: coreutils-8.4-mkdir-modenote.patch
-
-# sh-utils
-#add info about TZ envvar to date manpage
-Patch703: sh-utils-2.0.11-dateman.patch
-Patch713: coreutils-4.5.3-langinfo.patch
 
 # (sb) lin18nux/lsb compliance - multibyte functionality patch
-Patch800: coreutils-i18n.patch
-
-#getgrouplist() patch from Ulrich Drepper.
-Patch908: coreutils-getgrouplist.patch
+Patch800: coreutils-9.4-i18n.patch
 
 #SELINUX Patch - implements Redhat changes
 #(upstream did some SELinux implementation unlike with RedHat patch)
@@ -125,7 +114,7 @@ CFLAGS="$CFLAGS -Dlint"
 # make mknod work again in chroot without /proc being mounted (#1811038)
 export ac_cv_func_lchmod="no"
 
-%{expand:%%global optflags %{optflags} -D_GNU_SOURCE=1}
+%{expand:%%global optflags %{optflags} -D_GNU_SOURCE=1 -DGNULIB_MBFILE }
 %configure --enable-largefile \
            --enable-install-program=arch \
            --enable-no-install-program=kill,uptime \
@@ -205,6 +194,9 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Tue Sep 12 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 9.4-1
+- new upstream release.
+
 * Tue Oct 12 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 9.0-1
 - new upstream release.
 - re-imported fedora patches.

+ 7 - 1
d/dbus/dbus-vl.spec

@@ -16,7 +16,7 @@
 Summary: D-BUS message bus
 Summary(ja): D-BUS メッセージバスシステム
 Name: dbus
-Version: 1.14.4
+Version: 1.14.10
 Release: 1%{?_dist_release}%{?with_systemd:.systemd}
 Group: system
 Vendor: Project Vine
@@ -505,6 +505,12 @@ fi
 
 
 %changelog
+* Tue Sep 12 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.14.10-1
+- new upstream release.
+
+* Fri Jun 23 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.14.8-1
+- new upstream release.
+
 * Thu Oct 13 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.14.4-1
 - new upstream release.
 - dropped ldconfig scriptlets.

+ 4 - 1
f/freerdp/freerdp-vl.spec

@@ -3,7 +3,7 @@
 Name:           freerdp
 Summary:        Remote Desktop Protocol client
 Summary(ja):    リモートデスクトッププロトコルクライアント
-Version:        2.9.0
+Version:        2.11.1
 Release:        1%{?rcnumber:.%{rcnumber}}%{?_dist_release}
 Group:          office,internet
 Vendor:         Project Vine
@@ -166,6 +166,9 @@ rm -rf %{buildroot}
 
 
 %changelog
+* Fri Sep 08 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.11.1-1
+- updated to 2.11.1.
+
 * Sun Nov 20 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.9.0-1
 - updated to 2.9.0.
 

+ 13 - 1
g/golang/golang-vl.spec

@@ -80,7 +80,7 @@
 Summary:        The Go Programming Language
 Summary(ja):    プログラミング言語 Go
 Name:           golang
-Version:        1.20.3
+Version:        1.21.1
 Release:        1%{?_dist_release}
 Group:          programming
 Vendor:         Project Vine
@@ -414,6 +414,18 @@ fi
 
 
 %changelog
+* Wed Sep 13 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.21.1-1
+- new upstream release.
+
+* Wed Aug 16 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.21.0-1
+- new upstream release.
+
+* Sat Jun 17 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.20.5-1
+- new upstream release.
+
+* Fri May 26 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.20.4-1
+- new upstream release.
+
 * Sat Apr 15 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.20.3-1
 - new upstream release.
 

+ 11 - 2
lib/liba/libarchive/libarchive-vl.spec

@@ -1,6 +1,6 @@
 Name:          libarchive
 Summary:       A library for handling streaming archive formats 
-Version:       3.6.2
+Version:       3.7.2
 Release:       1%{?_dist_release}
 Group:         system
 Vendor:        Project Vine
@@ -56,7 +56,10 @@ autoreconf -vif
 %build
 %configure \
     --disable-static \
-    --disable-bsdtar --disable-bsdcpio --disable-bsdcat
+    --disable-bsdtar \
+    --disable-bsdcpio \
+    --disable-bsdcat \
+    --disable-bsdunzip
 make %{?_smp_mflags}
 
 
@@ -90,6 +93,12 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Tue Sep 12 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.7.2-1
+- new upstream release.
+
+* Mon Jul 31 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.7.1-1
+- new upstream release.
+
 * Sat Dec 10 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.6.2-1
 - new upstream release.
 - dropped Patch0001: maede to get the same effect by sed.

+ 4 - 1
lib/libn/libnl3/libnl3-vl.spec

@@ -1,7 +1,7 @@
 Name: libnl3
 Summary: Convenience library for kernel netlink sockets
 Summary(ja): Netlink ソケットの利用に便利なライブラリ
-Version: 3.7.0
+Version: 3.8.0
 Release: 1%{?_dist_release}
 Group: system
 Vendor: Project Vine
@@ -88,6 +88,9 @@ find %{buildroot} -name \*.la -delete
 
 
 %changelog
+* Fri Sep 01 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.8.0-1
+- new upstream release.
+
 * Fri Dec 02 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.7.0-1
 - new upstream release.
 - dropped ldconfig scriptlets.

+ 6 - 2
lib/libx/libxml2/libxml2-vl.spec

@@ -1,7 +1,7 @@
 Summary: Library providing XML and HTML support
 Summary(ja): XML や HTML サポートを提供するライブラリ
 Name: libxml2
-Version: 2.10.4
+Version: 2.11.5
 Release: 1%{_dist_release}
 Group: system
 Vendor: Project Vine
@@ -15,7 +15,7 @@ Source: https://download.gnome.org/sources/%{name}/%{shortver}/%{name}-%{version
 Patch0: libxml2-multilib.patch
 # Patch from openSUSE.
 # See:  https://bugzilla.gnome.org/show_bug.cgi?id=789714
-Patch1: libxml2-2.9.8-python3-unicode-errors.patch
+Patch1: libxml2-2.11.1-python3-unicode-errors.patch
 
 BuildRoot: %{_tmppath}/%{name}-%{version}-root
 BuildRequires: python-rpm-macros
@@ -323,6 +323,10 @@ chmod -x doc/*.py
 
 
 %changelog
+* Fri Sep 01 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.11.5-1
+- updated to 2.11.5.
+- updated Patch1.
+
 * Thu May 04 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.10.4-1
 - updated to 2.10.4.
 

+ 4 - 1
lib/libx/libxslt/libxslt-vl.spec

@@ -6,7 +6,7 @@
 Summary: Library providing the Gnome XSLT engine
 Summary(ja): XSLT エンジンライブラリ
 Name: libxslt
-Version: 1.1.37
+Version: 1.1.38
 Release: 1%{_dist_release}
 Group: system
 Vendor: Project Vine
@@ -257,6 +257,9 @@ rm -f %{buildroot}%{python_sitelib}/libxslt.py{c,o}
 
 
 %changelog
+* Fri Sep 01 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.1.38-1
+- updated to 1.1.38.
+
 * Fri Oct 28 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.1.37-1
 - updated to 1.1.37.
 

+ 10 - 1
o/openssl111/openssl111-vl.spec

@@ -11,7 +11,7 @@
 
 Summary: Secure Sockets Layer Toolkit
 Name: openssl111
-Version: 1.1.1t
+Version: 1.1.1w
 Release: 1%{_dist_release}
 Group: system,security
 Vendor: Project Vine
@@ -514,6 +514,15 @@ rm -rf %{buildroot}%{_sysconfdir}/pki/CA
 
 
 %changelog
+* Tue Sep 12 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.1.1w-1
+- new upstream release.
+
+* Wed Aug 02 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.1.1v-1
+- new upstream release.
+
+* Tue Jul 11 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.1.1u-1
+- new upstream release.
+
 * Wed Feb 08 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.1.1t-1
 - new upstream release.
 

+ 4 - 1
u/uClibc-ng/uClibc-ng-vl.spec

@@ -1,7 +1,7 @@
 Name:           uClibc-ng
 Summary:        C library for embedded Linux
 Summary(ja):    組み込みLinux用のCライブラリ
-Version:        1.0.41
+Version:        1.0.44
 Release:        1%{?_dist_release}
 Group:          programming
 Vendor:         Project Vine
@@ -91,6 +91,9 @@ rm -rf  %{buildroot}/include/
 
 
 %changelog
+* Fri Sep 08 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.0.44-1
+- new upstream release.
+
 * Thu Jun 02 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.0.41-1
 - new upstream release.