pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/devel/mob
Module Name: pkgsrc
Committed By: schmonz
Date: Mon Oct 14 13:55:52 UTC 2024
Modified Files:
pkgsrc/devel/mob: Makefile distinfo
Added Files:
pkgsrc/devel/mob/patches: patch-install.sh
Log Message:
mob: update to 5.3.2. Changes:
- Fix: Removed wrong warning about diverging wip branch when joining a
new session
To generate a diff of this commit:
cvs rdiff -u -r1.100 -r1.101 pkgsrc/devel/mob/Makefile
cvs rdiff -u -r1.53 -r1.54 pkgsrc/devel/mob/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/devel/mob/patches/patch-install.sh
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/devel/mob/Makefile
diff -u pkgsrc/devel/mob/Makefile:1.100 pkgsrc/devel/mob/Makefile:1.101
--- pkgsrc/devel/mob/Makefile:1.100 Mon Sep 30 14:00:31 2024
+++ pkgsrc/devel/mob/Makefile Mon Oct 14 13:55:52 2024
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.100 2024/09/30 14:00:31 schmonz Exp $
+# $NetBSD: Makefile,v 1.101 2024/10/14 13:55:52 schmonz Exp $
-DISTNAME= mob-5.3.1
+DISTNAME= mob-5.3.2
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_GITHUB:=remotemobprogramming/}
GITHUB_TAG= v${PKGVERSION_NOREV}
Index: pkgsrc/devel/mob/distinfo
diff -u pkgsrc/devel/mob/distinfo:1.53 pkgsrc/devel/mob/distinfo:1.54
--- pkgsrc/devel/mob/distinfo:1.53 Mon Sep 30 14:00:31 2024
+++ pkgsrc/devel/mob/distinfo Mon Oct 14 13:55:52 2024
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.53 2024/09/30 14:00:31 schmonz Exp $
+$NetBSD: distinfo,v 1.54 2024/10/14 13:55:52 schmonz Exp $
-BLAKE2s (mob-5.3.1.tar.gz) = d4b3d0c44447b1c2721345ddc6e2b04c7e7e4510f231d1474d19c315f7497821
-SHA512 (mob-5.3.1.tar.gz) = 9689a5357f722d8978e23efe0bbcc8c29f5ce999151f03e0393ee9232c425b21fc65f0fd1e6f4af34a1e8566d83b7004a588cd9bce4735869160fc6e48b6418c
-Size (mob-5.3.1.tar.gz) = 522696 bytes
+BLAKE2s (mob-5.3.2.tar.gz) = 558e5f8df3ea9763a5c6947ae298165cb9d8c451e56dd983c683e0733775658e
+SHA512 (mob-5.3.2.tar.gz) = 75f1cfff39ff6b9171997aee4ddd054ef8d8ff7b289cdee5c81b65d72485dcb2dfd051c207d92a685d90fd8f2a8753560b72b01a63188471c3c1f237e1b0b5be
+Size (mob-5.3.2.tar.gz) = 522698 bytes
+SHA1 (patch-install.sh) = 04f84bfbd80cbb11780db5b85d2f4098f408e40d
Added files:
Index: pkgsrc/devel/mob/patches/patch-install.sh
diff -u /dev/null pkgsrc/devel/mob/patches/patch-install.sh:1.1
--- /dev/null Mon Oct 14 13:55:52 2024
+++ pkgsrc/devel/mob/patches/patch-install.sh Mon Oct 14 13:55:52 2024
@@ -0,0 +1,15 @@
+$NetBSD: patch-install.sh,v 1.1 2024/10/14 13:55:52 schmonz Exp $
+
+Check string equality more portably (upstream commit f456bc7).
+
+--- install.sh.orig 2024-10-14 13:42:57.310286711 +0000
++++ install.sh
+@@ -175,7 +175,7 @@ check_say() {
+
+ check_installation_path() {
+ location="$(command -v mob)"
+- if [ "$(determine_os)" == "windows" ]; then
++ if [ "$(determine_os)" = "windows" ]; then
+ location=$(echo $location | sed -E 's|^/([a-zA-Z])|\U\1:|')
+ fi
+ if [ "$location" != "$target/mob" ] && [ "$location" != "" ]; then
Home |
Main Index |
Thread Index |
Old Index