Date: Tue, 9 May 2023 20:00:56 GMT From: Piotr Kubaj <pkubaj@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: 3f3b8b8c42fd - main - x11/rlaunch: fix build on powerpc Message-ID: <202305092000.349K0utU070715@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by pkubaj: URL: https://cgit.FreeBSD.org/ports/commit/?id=3f3b8b8c42fd306069fecb7f5bd0779e9d75207e commit 3f3b8b8c42fd306069fecb7f5bd0779e9d75207e Author: Piotr Kubaj <pkubaj@FreeBSD.org> AuthorDate: 2023-05-09 19:54:46 +0000 Commit: Piotr Kubaj <pkubaj@FreeBSD.org> CommitDate: 2023-05-09 19:54:46 +0000 x11/rlaunch: fix build on powerpc --- x11/rlaunch/Makefile | 3 +- x11/rlaunch/distinfo | 4 ++- x11/rlaunch/files/patch-powerpc | 62 +++++++++++++++++++++++++++++++++++++++++ 3 files changed, 67 insertions(+), 2 deletions(-) diff --git a/x11/rlaunch/Makefile b/x11/rlaunch/Makefile index b92f949e97a6..03e3a44a727a 100644 --- a/x11/rlaunch/Makefile +++ b/x11/rlaunch/Makefile @@ -4,7 +4,8 @@ PORTREVISION= 4 CATEGORIES= x11 PATCH_SITES= https://github.com/PonasKovas/rlaunch/commit/ -PATCHFILES= 2f73499553d4a14840ed4e092a0c93fe1e928c64.patch:-p1 +PATCHFILES= 2f73499553d4a14840ed4e092a0c93fe1e928c64.patch:-p1 \ + 8e3d22fa4e536cce10b02366b0ba9b47c9b00b81.patch:-p1 MAINTAINER= yuri@FreeBSD.org COMMENT= Fast, light-weight and modern application launcher for X11 diff --git a/x11/rlaunch/distinfo b/x11/rlaunch/distinfo index 0488c221edf5..87874bb12a74 100644 --- a/x11/rlaunch/distinfo +++ b/x11/rlaunch/distinfo @@ -1,4 +1,4 @@ -TIMESTAMP = 1673178400 +TIMESTAMP = 1683641416 SHA256 (rust/crates/ansi_term-0.11.0.crate) = ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b SIZE (rust/crates/ansi_term-0.11.0.crate) = 17087 SHA256 (rust/crates/atty-0.2.14.crate) = d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8 @@ -67,3 +67,5 @@ SHA256 (PonasKovas-rlaunch-1.3.13_GH0.tar.gz) = 2f0679dda503bf63b399bda8cde17f8e SIZE (PonasKovas-rlaunch-1.3.13_GH0.tar.gz) = 12417 SHA256 (2f73499553d4a14840ed4e092a0c93fe1e928c64.patch) = 13355f37e92b13b8d1b712882ba1969adc3b30511dec8006a3cdcca46ef664f3 SIZE (2f73499553d4a14840ed4e092a0c93fe1e928c64.patch) = 998 +SHA256 (8e3d22fa4e536cce10b02366b0ba9b47c9b00b81.patch) = a886c8d9d0d3429ed947daf4789814a2922f009e6808c4ec3480732e6fdcf293 +SIZE (8e3d22fa4e536cce10b02366b0ba9b47c9b00b81.patch) = 1570 diff --git a/x11/rlaunch/files/patch-powerpc b/x11/rlaunch/files/patch-powerpc new file mode 100644 index 000000000000..f8518c526705 --- /dev/null +++ b/x11/rlaunch/files/patch-powerpc @@ -0,0 +1,62 @@ +--- cargo-crates/libc-0.2.66/src/unix/bsd/freebsdlike/freebsd/mod.rs.orig 2020-03-17 20:35:43 UTC ++++ cargo-crates/libc-0.2.66/src/unix/bsd/freebsdlike/freebsd/mod.rs +@@ -1486,6 +1486,9 @@ cfg_if! { + } else if #[cfg(target_arch = "powerpc64")] { + mod powerpc64; + pub use self::powerpc64::*; ++ } else if #[cfg(target_arch = "powerpc")] { ++ mod powerpc; ++ pub use self::powerpc::*; + } else { + // Unknown target_arch + } +--- cargo-crates/libc-0.2.66/src/unix/bsd/freebsdlike/freebsd/powerpc.rs.orig 2021-06-23 22:40:24 UTC ++++ cargo-crates/libc-0.2.66/src/unix/bsd/freebsdlike/freebsd/powerpc.rs +@@ -0,0 +1,47 @@ ++pub type c_char = u8; ++pub type c_long = i32; ++pub type c_ulong = u32; ++pub type wchar_t = i32; ++pub type time_t = i64; ++pub type suseconds_t = i32; ++pub type register_t = i32; ++ ++s! { ++ pub struct stat { ++ pub st_dev: ::dev_t, ++ pub st_ino: ::ino_t, ++ pub st_mode: ::mode_t, ++ pub st_nlink: ::nlink_t, ++ pub st_uid: ::uid_t, ++ pub st_gid: ::gid_t, ++ pub st_rdev: ::dev_t, ++ pub st_atime: ::time_t, ++ pub st_atime_nsec: ::c_long, ++ pub st_mtime: ::time_t, ++ pub st_mtime_nsec: ::c_long, ++ pub st_ctime: ::time_t, ++ pub st_ctime_nsec: ::c_long, ++ pub st_size: ::off_t, ++ pub st_blocks: ::blkcnt_t, ++ pub st_blksize: ::blksize_t, ++ pub st_flags: ::fflags_t, ++ pub st_gen: u32, ++ pub st_lspare: i32, ++ pub st_birthtime: ::time_t, ++ pub st_birthtime_nsec: ::c_long, ++ } ++} ++ ++// should be pub(crate), but that requires Rust 1.18.0 ++cfg_if! { ++ if #[cfg(libc_const_size_of)] { ++ #[doc(hidden)] ++ pub const _ALIGNBYTES: usize = ::mem::size_of::<::c_int>() - 1; ++ } else { ++ #[doc(hidden)] ++ pub const _ALIGNBYTES: usize = 4 - 1; ++ } ++} ++ ++pub const MAP_32BIT: ::c_int = 0x00066000; ++pub const MINSIGSTKSZ: ::size_t = 2048; // 512 * 4
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202305092000.349K0utU070715>