git: 764585f5077a - main - sysutils/mcfly: Update 0.5.11 -> 0.5.12
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 15 Jan 2022 22:50:07 UTC
The branch main has been updated by yuri: URL: https://cgit.FreeBSD.org/ports/commit/?id=764585f5077a9b121b7548575e2899767ecf2f3b commit 764585f5077a9b121b7548575e2899767ecf2f3b Author: Yuri Victorovich <yuri@FreeBSD.org> AuthorDate: 2022-01-15 22:37:38 +0000 Commit: Yuri Victorovich <yuri@FreeBSD.org> CommitDate: 2022-01-15 22:50:02 +0000 sysutils/mcfly: Update 0.5.11 -> 0.5.12 Reported by: portscout --- sysutils/mcfly/Makefile | 4 ++- sysutils/mcfly/distinfo | 6 ++-- sysutils/mcfly/files/patch-powerpc | 62 -------------------------------------- 3 files changed, 6 insertions(+), 66 deletions(-) diff --git a/sysutils/mcfly/Makefile b/sysutils/mcfly/Makefile index e4fee288961b..70d02eaa9631 100644 --- a/sysutils/mcfly/Makefile +++ b/sysutils/mcfly/Makefile @@ -1,6 +1,6 @@ PORTNAME= mcfly DISTVERSIONPREFIX= v -DISTVERSION= 0.5.11 +DISTVERSION= 0.5.12 CATEGORIES= sysutils MAINTAINER= yuri@FreeBSD.org @@ -88,6 +88,8 @@ PLIST_FILES= bin/${PORTNAME} \ share/zsh/site-functions/_${PORTNAME} post-install: # install shell completion files + # strip + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/mcfly # bash ${MKDIR} ${STAGEDIR}${PREFIX}/etc/bash_completion.d/ ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.bash ${STAGEDIR}${PREFIX}/etc/bash_completion.d diff --git a/sysutils/mcfly/distinfo b/sysutils/mcfly/distinfo index ccf0ca545ad4..be62e9ffb8fa 100644 --- a/sysutils/mcfly/distinfo +++ b/sysutils/mcfly/distinfo @@ -1,4 +1,4 @@ -TIMESTAMP = 1640380721 +TIMESTAMP = 1642284484 SHA256 (rust/crates/aho-corasick-0.7.10.crate) = 8716408b8bc624ed7f65d223ddb9ac2d044c0547b6fa4b0d554f3a9540496ada SIZE (rust/crates/aho-corasick-0.7.10.crate) = 111039 SHA256 (rust/crates/ansi_term-0.11.0.crate) = ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b @@ -133,5 +133,5 @@ SHA256 (rust/crates/winapi-i686-pc-windows-gnu-0.4.0.crate) = ac3b87c63620426dd9 SIZE (rust/crates/winapi-i686-pc-windows-gnu-0.4.0.crate) = 2918815 SHA256 (rust/crates/winapi-x86_64-pc-windows-gnu-0.4.0.crate) = 712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f SIZE (rust/crates/winapi-x86_64-pc-windows-gnu-0.4.0.crate) = 2947998 -SHA256 (cantino-mcfly-v0.5.11_GH0.tar.gz) = ca22a600b5b1c0ca1acff6fd1ce05680a581795567f759ff99a917401bfd835e -SIZE (cantino-mcfly-v0.5.11_GH0.tar.gz) = 208182 +SHA256 (cantino-mcfly-v0.5.12_GH0.tar.gz) = 41bbcbde13c3a27696cb4ac0b9e752a925661747acc4075450e10d4e17b17bde +SIZE (cantino-mcfly-v0.5.12_GH0.tar.gz) = 208419 diff --git a/sysutils/mcfly/files/patch-powerpc b/sysutils/mcfly/files/patch-powerpc deleted file mode 100644 index df525d6e5b13..000000000000 --- a/sysutils/mcfly/files/patch-powerpc +++ /dev/null @@ -1,62 +0,0 @@ ---- cargo-crates/libc-0.2.69/src/unix/bsd/freebsdlike/freebsd/mod.rs.orig 2020-03-17 20:35:43 UTC -+++ cargo-crates/libc-0.2.69/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.69/src/unix/bsd/freebsdlike/freebsd/powerpc.rs.orig 2021-06-23 22:40:24 UTC -+++ cargo-crates/libc-0.2.69/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 = 0x00080000; -+pub const MINSIGSTKSZ: ::size_t = 2048; // 512 * 4