1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-18 00:10:04 +00:00

ports-mgmt/poudriere-devel: Update to 3.3.0-1748-gd75f4e1dc4

Changes:
 - testport: Fix -c
 - testport: Don't fetch package being tested

PR:	278479
This commit is contained in:
Bryan Drewery 2024-04-24 08:38:59 -07:00
parent 570bd449d4
commit dc33d4a4d4
3 changed files with 5 additions and 24 deletions

View File

@ -1,5 +1,5 @@
PORTNAME= poudriere
DISTVERSION= 3.4.99.20240419
DISTVERSION= 3.4.99.20240424
PORTREVISION= 0
CATEGORIES= ports-mgmt
MASTER_SITES= LOCAL/bdrewery/${PORTNAME}/ \
@ -17,7 +17,7 @@ CONFLICTS_INSTALL= poudriere
USE_GITHUB= yes
GH_ACCOUNT= freebsd
GH_TAGNAME= 3.3.0-1744-g3f33775b09
GH_TAGNAME= 3.3.0-1748-gd75f4e1dc4
GNU_CONFIGURE= yes
ETCDIR= ${PREFIX}/etc/poudriere.d

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1713567367
SHA256 (freebsd-poudriere-3.4.99.20240419-3.3.0-1744-g3f33775b09_GH0.tar.gz) = 8965c4dead0981bd818fdf4328b0e45d6a43c6e8a59d77d2aa78729e083a4223
SIZE (freebsd-poudriere-3.4.99.20240419-3.3.0-1744-g3f33775b09_GH0.tar.gz) = 5783005
TIMESTAMP = 1713973208
SHA256 (freebsd-poudriere-3.4.99.20240424-3.3.0-1748-gd75f4e1dc4_GH0.tar.gz) = 9f1b2f32fa4885819085ed623d91215f63754b9cde8b8da297b8ad0db8756280
SIZE (freebsd-poudriere-3.4.99.20240424-3.3.0-1748-gd75f4e1dc4_GH0.tar.gz) = 5732259

View File

@ -1,19 +0,0 @@
commit a94cfcd734a0ac81cf157378b77732a3de6b9463
Author: Bryan Drewery <bryan@shatow.net>
Date: Tue Apr 23 06:29:13 2024 -0700
tests: Don't run git-log from 'make test' for Poudriere in ports
This results in a very long lookup that returns nothing
--- test/common.sh.orig 2024-04-20 03:48:57 UTC
+++ test/common.sh
@@ -550,6 +550,7 @@ msg_debug "getpid: $$"
msg_debug "getpid: $$"
-if git_get_hash_and_dirty "${abs_top_srcdir}" git_hash git_dirty; then
+if [ -r "${abs_top_srcdir}/.git" ] &&
+ git_get_hash_and_dirty "${abs_top_srcdir}" git_hash git_dirty; then
msg "Source git hash: ${git_hash} modified: ${git_dirty}"
fi >&2