Bläddra i källkod

updated 4 packages

nsd-4.10.0-1

postfix-3.8.6-1

rust-1.79.0-1

util-linux-2.40.1-1
Tomohiro "Tomo-p" KATO 9 månader sedan
förälder
incheckning
feb288d754
4 ändrade filer med 74 tillägg och 12 borttagningar
  1. 13 1
      n/nsd/nsd-vl.spec
  2. 12 3
      p/postfix/postfix-vl.spec
  3. 33 5
      r/rust/rust-vl.spec
  4. 16 3
      u/util-linux/util-linux-vl.spec

+ 13 - 1
n/nsd/nsd-vl.spec

@@ -3,7 +3,7 @@
 Summary: Fast and lean authoritative DNS Name Server
 Summary(ja): 高速で最小限のAuthoritative専用DNSネームサーバ
 Name: nsd
-Version: 4.7.0
+Version: 4.10.0
 Release: 1%{?_dist_release}%{?with_systemd:.systemd}
 Group: servers
 Vendor: Project Vine
@@ -192,6 +192,18 @@ fi
 
 
 %changelog
+* Thu Jun 13 2024 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.10.0-1
+- new upstream release.
+
+* Fri Apr 05 2024 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.9.1-1
+- new upstream release.
+
+* Thu Apr 04 2024 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.9.0-1
+- new upstream release.
+
+* Wed Dec 06 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.8.0-1
+- new upstream release.
+
 * Tue Jul 11 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.7.0-1
 - new upstream release.
 

+ 12 - 3
p/postfix/postfix-vl.spec

@@ -31,8 +31,8 @@
 Summary:        Postfix Mail Transport Agent
 Summary(ja):    Postfix メールトランスポートエージェント
 Name:           postfix
-Version:        3.8.2
-Release:        3%{?_dist_release}%{?with_systemd:.systemd}
+Version:        3.8.6
+Release:        1%{?_dist_release}%{?with_systemd:.systemd}
 Group:          servers
 Vendor:         Project Vine
 Distribution:   Vine Linux
@@ -41,7 +41,7 @@ Packager:       daisuke
 URL:            http://www.postfix.org/
 License:        Distributable - IBM PUBLIC LICENSE VERSION 1.0 - SECURE MAILER
 #Source0:        http://mirror.postfix.jp/postfix-release/official/%{name}-%{version}.tar.gz
-Source0:        http://cdn.postfix.johnriley.me/mirrors/postfix-release/official/%{name}-%{version}.tar.gz
+Source0:        https://ghostarchive.org/postfix/postfix-release/official/postfix-%{version}.tar.gz
 Source1:        postfix.aliases
 Source2:        postfix.cron
 Source3:        postfix.init
@@ -583,6 +583,15 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Thu Jun 13 2024 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.8.6-1
+- new upstream release.
+
+* Sat Jan 27 2024 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.8.5-1
+- new upstream release.
+
+* Sat Dec 23 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.8.4-1
+- new upstream release.
+
 * Wed Nov 01 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.8.2-3
 - rebuilt with icu-74.
 

+ 33 - 5
r/rust/rust-vl.spec

@@ -9,7 +9,7 @@
 # Some sub-packages are versioned independently of the rust compiler and runtime itself.
 # Also beware that if any of these are not changed in a version bump, then the release
 # number should still increase, not be reset to 1!
-%global rustc_version 1.73.0
+%global rustc_version 1.79.0
 %global cargo_version %{rustc_version}
 %global rustfmt_version %{rustc_version}
 %global rls_version %{rustc_version}
@@ -25,8 +25,8 @@
 # To bootstrap from scratch, set the channel and date from src/stage0.txt
 # e.g. 1.10.0 wants rustc: 1.9.0-2016-05-24
 # or nightly wants some beta-YYYY-MM-DD
-%global bootstrap_rust 1.72.1
-%global bootstrap_cargo 1.72.1
+%global bootstrap_rust 1.78.0
+%global bootstrap_cargo 1.78.0
 %global bootstrap_channel %{bootstrap_rust}
 
 # Only the specified arches will use bootstrap binaries.
@@ -140,7 +140,7 @@ BuildRequires:  libssh2-devel
 %endif
 BuildRequires:  ncurses-devel
 BuildRequires:  openssl-devel
-BuildRequires:  zlib-devel
+BuildRequires:  zlib-ng-compat-devel
 BuildRequires:  python3
 BuildRequires:  python3-rpm-macros
 BuildRequires:  curl
@@ -438,7 +438,7 @@ rm -rf vendor/libssh2-sys/libssh2/
 %endif
 
 # This only affects the transient rust-installer, but let it use our dynamic xz-libs
-sed -i.lzma -e '/LZMA_API_STATIC/d' src/bootstrap/tool.rs
+sed -i.lzma -e '/LZMA_API_STATIC/d' src/bootstrap/src/core/build_steps/tool.rs
 
 # rename bundled license for packaging
 if [ -e vendor/backtrace-sys/src/libbacktrace/LICENSE ]; then
@@ -514,9 +514,15 @@ export RUSTFLAGS="$RUSTFLAGS -C linker=clang -C link-arg=-fuse-ld=lld"
 
 %configure \
   --disable-option-checking \
+  --docdir=%{_pkgdocdir} \
   --libdir=%{common_libdir} \
   --build=%{rust_triple} --host=%{rust_triple} --target=%{rust_triple} \
   --enable-local-rust --local-rust-root=%{local_rust_root} \
+  --set build.build-stage=2 \
+  --set build.doc-stage=2 \
+  --set build.install-stage=2 \
+  --set build.test-stage=2 \
+  --set build.optimized-compiler-builtins=false \
   --set build.rustfmt=/bin/true \
   %{!?with_bundled_llvm: --llvm-root=%{llvm_root} \
     %{!?llvm_has_filecheck: --disable-codegen-tests} \
@@ -696,6 +702,7 @@ export RUSTFLAGS="$RUSTFLAGS -C linker=ld.lld -C link-arg=-fuse-ld=lld"
 %{_docdir}/%{name}/html/*.css
 %{_docdir}/%{name}/html/*.js
 %{_docdir}/%{name}/html/robots.txt
+%{_docdir}/%{name}/html/releases.md
 
 %files -n cargo
 %license src/tools/cargo/LICENSE-APACHE src/tools/cargo/LICENSE-MIT src/tools/cargo/LICENSE-THIRD-PARTY
@@ -743,6 +750,27 @@ export RUSTFLAGS="$RUSTFLAGS -C linker=ld.lld -C link-arg=-fuse-ld=lld"
 
 
 %changelog
+* Thu Jun 13 2024 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.79.0-1
+- new upstream release.
+
+* Mon May 06 2024 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.78.0-1
+- new upstream release.
+
+* Thu Mar 28 2024 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.77.0-1
+- new upstream release.
+
+* Fri Feb 09 2024 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.76.0-1
+- new upstream release.
+
+* Fri Dec 29 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.75.0-1
+- new upstream release.
+
+* Tue Dec 19 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.74.1-1
+- new upstream release.
+
+* Fri Nov 17 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.74.0-1
+- new upstream release.
+
 * Fri Oct 06 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.73.0-1
 - new upstream release.
 

+ 16 - 3
u/util-linux/util-linux-vl.spec

@@ -22,8 +22,8 @@
 Summary: A collection of basic system utilities
 Summary(ja): 基本システムユーティリティー集
 Name: util-linux
-Version: 2.39.2
-Release: 2%{?_dist_release}%{?with_systemd:.systemd}
+Version: 2.40.1
+Release: 1%{?_dist_release}%{?with_systemd:.systemd}
 Group: system,admin-tools
 Distribution: Vine Linux
 Vendor: Project Vine
@@ -60,7 +60,6 @@ Patch1: login-default-motd-file.patch
 ### Upstream patches (remove ./autogen.sh call from prep section  when remove
 ###                   these patches)
 ###
-Patch2: libmount-Fix-regression-when-mounting-with-atime.patch
 
 ### Paths
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
@@ -444,6 +443,7 @@ export DAEMON_LDFLAGS="$SUID_LDFLAGS"
 	--disable-silent-rules \
 	--disable-bfs \
 	--disable-pg \
+	--disable-liblastlog2 \
 	--enable-partx \
 	--enable-login-utils \
 	--enable-kill \
@@ -797,6 +797,8 @@ fi
 %{_bindir}/column
 #%{_bindir}/ddate
 %{_bindir}/eject
+%{_bindir}/enosys
+%{_bindir}/exch
 %{_bindir}/fadvise
 %{_bindir}/fallocate
 %{_bindir}/fincore
@@ -816,6 +818,7 @@ fi
 %{_bindir}/logger
 %{_bindir}/look
 %{_bindir}/lscpu
+%{_bindir}/lsclocks
 %{_bindir}/lsipc
 %{_bindir}/lsirq
 %{_bindir}/lslocks
@@ -834,6 +837,7 @@ fi
 %{_bindir}/scriptreplay
 %{_bindir}/scriptlive
 %{_bindir}/setarch
+%{_bindir}/setpgid
 %{_bindir}/setpriv
 %{_bindir}/setsid
 %{_bindir}/setterm
@@ -866,6 +870,8 @@ fi
 #%{_mandir}/man1/ddate.1*
 %{_mandir}/man1/dmesg.1*
 %{_mandir}/man1/eject.1*
+%{_mandir}/man1/enosys.1*
+%{_mandir}/man1/exch.1*
 %{_mandir}/man1/fadvise.1*
 %{_mandir}/man1/fincore.1*
 %{_mandir}/man1/fallocate.1*
@@ -884,6 +890,7 @@ fi
 %{_mandir}/man1/logger.1*
 %{_mandir}/man1/login.1*
 %{_mandir}/man1/look.1*
+%{_mandir}/man1/lsclocks.1*
 %{_mandir}/man1/lscpu.1*
 %{_mandir}/man1/lsfd.1*
 %{_mandir}/man1/lsipc.1*
@@ -906,6 +913,7 @@ fi
 %{_mandir}/man1/scriptreplay.1*
 %{_mandir}/man1/scriptlive.1*
 %{_mandir}/man1/setsid.1*
+%{_mandir}/man1/setpgid.1*
 %{_mandir}/man1/setpriv.1*
 %{_mandir}/man1/setterm.1*
 %{_mandir}/man1/su.1*
@@ -925,6 +933,7 @@ fi
 
 %{_mandir}/man5/adjtime_config.5*
 %{_mandir}/man5/fstab.5*
+%{_mandir}/man5/scols-filter.5*
 %{_mandir}/man5/terminal-colors.d.5*
 
 %{_mandir}/man8/addpart.8*
@@ -1001,6 +1010,7 @@ fi
 %files -n uuidd
 %defattr(-,root,root)
 %if %{with systemd}
+%{_tmpfilesdir}/uuidd-tmpfiles.conf
 %{_unitdir}/uuidd.*
 %else
 /etc/rc.d/init.d/uuidd
@@ -1118,6 +1128,9 @@ fi
 
 
 %changelog
+* Thu Jun 13 2024 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.40.1-1
+- new upstream release.
+
 * Thu Oct 12 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.39.2-2
 - updated pam configuration files.