From mboxrd@z Thu Jan 1 00:00:00 1970 From: Adolf Belka To: development@lists.ipfire.org Subject: [PATCH 11/48] rust-iana-time-zone: Required by updated rust-chrono Date: Wed, 09 Nov 2022 19:56:57 +0100 Message-ID: <20221109185734.3920-11-adolf.belka@ipfire.org> In-Reply-To: <20221109185734.3920-1-adolf.belka@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============0165977694642766707==" List-Id: --===============0165977694642766707== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable - Install of version 0.1.51 - Definition of rootfile - Creation of metadata patch to eliminate windows options Tested-by: Adolf Belka Signed-off-by: Adolf Belka --- config/rootfiles/common/rust-iana-time-zone | 24 ++++++ lfs/rust-iana-time-zone | 81 +++++++++++++++++++ ...t-iana-time-zone-0.1.51-fix-metadata.patch | 34 ++++++++ 3 files changed, 139 insertions(+) create mode 100644 config/rootfiles/common/rust-iana-time-zone create mode 100644 lfs/rust-iana-time-zone create mode 100644 src/patches/rust-iana-time-zone-0.1.51-fix-metadata.patch diff --git a/config/rootfiles/common/rust-iana-time-zone b/config/rootfiles/c= ommon/rust-iana-time-zone new file mode 100644 index 000000000..1571519ee --- /dev/null +++ b/config/rootfiles/common/rust-iana-time-zone @@ -0,0 +1,24 @@ +#usr/share/cargo/registry/iana-time-zone-0.1.51 +#usr/share/cargo/registry/iana-time-zone-0.1.51/.cargo-checksum.json +#usr/share/cargo/registry/iana-time-zone-0.1.51/CHANGELOG.md +#usr/share/cargo/registry/iana-time-zone-0.1.51/Cargo.toml +#usr/share/cargo/registry/iana-time-zone-0.1.51/Cargo.toml.deps +#usr/share/cargo/registry/iana-time-zone-0.1.51/LICENSE-APACHE +#usr/share/cargo/registry/iana-time-zone-0.1.51/LICENSE-MIT +#usr/share/cargo/registry/iana-time-zone-0.1.51/README.md +#usr/share/cargo/registry/iana-time-zone-0.1.51/examples +#usr/share/cargo/registry/iana-time-zone-0.1.51/examples/get_timezone.rs +#usr/share/cargo/registry/iana-time-zone-0.1.51/examples/stress-test.rs +#usr/share/cargo/registry/iana-time-zone-0.1.51/src +#usr/share/cargo/registry/iana-time-zone-0.1.51/src/ffi_utils.rs +#usr/share/cargo/registry/iana-time-zone-0.1.51/src/lib.rs +#usr/share/cargo/registry/iana-time-zone-0.1.51/src/platform.rs +#usr/share/cargo/registry/iana-time-zone-0.1.51/src/tz_android.rs +#usr/share/cargo/registry/iana-time-zone-0.1.51/src/tz_freebsd.rs +#usr/share/cargo/registry/iana-time-zone-0.1.51/src/tz_haiku.rs +#usr/share/cargo/registry/iana-time-zone-0.1.51/src/tz_illumos.rs +#usr/share/cargo/registry/iana-time-zone-0.1.51/src/tz_linux.rs +#usr/share/cargo/registry/iana-time-zone-0.1.51/src/tz_macos.rs +#usr/share/cargo/registry/iana-time-zone-0.1.51/src/tz_netbsd.rs +#usr/share/cargo/registry/iana-time-zone-0.1.51/src/tz_wasm32.rs +#usr/share/cargo/registry/iana-time-zone-0.1.51/src/tz_windows.rs diff --git a/lfs/rust-iana-time-zone b/lfs/rust-iana-time-zone new file mode 100644 index 000000000..8c7be37b0 --- /dev/null +++ b/lfs/rust-iana-time-zone @@ -0,0 +1,81 @@ +############################################################################= ### +# = # +# IPFire.org - A linux based firewall = # +# Copyright (C) 2007-2018 IPFire Team = # +# = # +# This program is free software: you can redistribute it and/or modify = # +# it under the terms of the GNU General Public License as published by = # +# the Free Software Foundation, either version 3 of the License, or = # +# (at your option) any later version. = # +# = # +# This program is distributed in the hope that it will be useful, = # +# but WITHOUT ANY WARRANTY; without even the implied warranty of = # +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the = # +# GNU General Public License for more details. = # +# = # +# You should have received a copy of the GNU General Public License = # +# along with this program. If not, see . = # +# = # +############################################################################= ### + +############################################################################= ### +# Definitions +############################################################################= ### + +include Config + +VER =3D 0.1.51 + +THISAPP =3D iana-time-zone-$(VER) +DL_FILE =3D $(THISAPP).tar.gz +DL_FROM =3D $(URL_IPFIRE) +DIR_APP =3D $(DIR_SRC)/$(THISAPP) +TARGET =3D $(DIR_INFO)/$(THISAPP) + +############################################################################= ### +# Top-level Rules +############################################################################= ### + +objects =3D $(DL_FILE) + +$(DL_FILE) =3D $(DL_FROM)/$(DL_FILE) + +$(DL_FILE)_BLAKE2 =3D 9e29f255039c03361f9d0e1be83c71b984c4a3e980110ddae77038= 1cb9a78f0ed6f90cccc2f8bd9553bc68e5f65d4d9194c8766fdd9da46c68172c78ddbcad8f + +install : $(TARGET) + +check : $(patsubst %,$(DIR_CHK)/%,$(objects)) + +download :$(patsubst %,$(DIR_DL)/%,$(objects)) + +b2 : $(subst %,%_BLAKE2,$(objects)) + +dist: + @$(PAK) + +############################################################################= ### +# Downloading, checking, b2sum +############################################################################= ### + +$(patsubst %,$(DIR_CHK)/%,$(objects)) : + @$(CHECK) + +$(patsubst %,$(DIR_DL)/%,$(objects)) : + @$(LOAD) + +$(subst %,%_BLAKE2,$(objects)) : + @$(B2SUM) + +############################################################################= ### +# Installation Details +############################################################################= ### + +$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) + @$(PREBUILD) + @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE) + cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/rust-iana-time-zone-0.= 1.51-fix-metadata.patch + cd $(DIR_APP) && $(CARGO_PREPARE) + cd $(DIR_APP) && $(CARGO_BUILD) + cd $(DIR_APP) && $(CARGO_INSTALL) + @rm -rf $(DIR_APP) + @$(POSTBUILD) diff --git a/src/patches/rust-iana-time-zone-0.1.51-fix-metadata.patch b/src/= patches/rust-iana-time-zone-0.1.51-fix-metadata.patch new file mode 100644 index 000000000..790f6bdb4 --- /dev/null +++ b/src/patches/rust-iana-time-zone-0.1.51-fix-metadata.patch @@ -0,0 +1,34 @@ +--- iana-time-zone-0.1.51/Cargo.toml.original 1970-01-01 01:00:01.000000000 = +0100 ++++ iana-time-zone-0.1.51/Cargo.toml 2022-10-13 23:51:27.954816115 +0200 +@@ -31,31 +31,3 @@ + [features] + fallback =3D [] +=20 +-[target."cfg(any(target_os =3D \"macos\", target_os =3D \"ios\"))".dependen= cies.core-foundation-sys] +-version =3D "0.8.3" +- +-[target."cfg(target_arch =3D \"wasm32\")".dependencies.js-sys] +-version =3D "0.3.50" +- +-[target."cfg(target_arch =3D \"wasm32\")".dependencies.wasm-bindgen] +-version =3D "0.2.70" +- +-[target."cfg(target_arch =3D \"wasm32\")".dev-dependencies.wasm-bindgen-tes= t] +-version =3D "0.3" +- +-[target."cfg(target_os =3D \"android\")".dependencies.android_system_proper= ties] +-version =3D "0.1.5" +- +-[target."cfg(target_os =3D \"haiku\")".dependencies.iana-time-zone-haiku] +-version =3D "0.1.0" +- +-[target."cfg(target_os =3D \"windows\")".dependencies.winapi] +-version =3D "0.3.9" +-features =3D [ +- "activation", +- "combaseapi", +- "objbase", +- "roapi", +- "winerror", +- "winstring", +-] --=20 2.38.1 --===============0165977694642766707==--