From e6415c307262c1b43ebf7401174842df25eeeb71 Mon Sep 17 00:00:00 2001 From: Hilton Chain Date: Sat, 14 Sep 2024 23:50:31 +0800 Subject: gnu: phantomsocks: Update to 0.0.0-20240729085950-7928f8eff406. * gnu/packages/networking.scm (phantomsocks): Update to 0.0.0-20240729085950-7928f8eff406. Change-Id: If15b87551996f3b52548a5c18a0ff315ac9a2e72 --- gnu/packages/networking.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index d0949618da..3be037ecd7 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -4851,7 +4851,7 @@ on hub/switched networks. It is based on @acronym{ARP} packets, it will send (define-public phantomsocks (package (name "phantomsocks") - (version "0.0.0-20240125140126-2576269ca69a") + (version "0.0.0-20240729085950-7928f8eff406") (source (origin (method git-fetch) (uri (git-reference @@ -4860,7 +4860,7 @@ on hub/switched networks. It is based on @acronym{ARP} packets, it will send (file-name (git-file-name name version)) (sha256 (base32 - "1kbcr6580a9pi0a3wssnfr3mnxqq2k9w1fg4khikn82lqaljab2f")))) + "1bx3ln650yrywrqpz78xphs141zfsg2h5cr8j9411ilifzr8r4ib")))) (build-system go-build-system) (arguments (list #:install-source? #f -- cgit v1.2.3 b2880d6c45f113c3b18d3732049115ef08070'>commitdiff
path: root/bootstrap
blob: de024aeaa5c225b5dc0dbea32d53d9b845ed9279 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/sh
# Create the build system.

set -e -x

# Generate stubs for translations.
langs=`find po/doc -type f -name 'guix-manual*.po' \
        | sed -e 's,.*/guix-manual\.,,;s,\.po$,,'`
for lang in ${langs}; do
    if [ ! -e "doc/guix.${lang}.texi" ]; then
	echo "@setfilename guix.${lang}.info" > "doc/guix.${lang}.texi"
	echo "@include version-${lang}.texi" >> "doc/guix.${lang}.texi"
	# Ensure .po file is newer.
	touch "po/doc/guix-manual.${lang}.po"
    fi
done
langs=`find po/doc -type f -name 'guix-cookbook*.po' \
        | sed -e 's,.*/guix-cookbook\.,,;s,\.po$,,'`
for lang in ${langs}; do
    if [ ! -e "doc/guix-cookbook.${lang}.texi" ]; then
	echo "@setfilename guix-cookbook.${lang}.info" > "doc/guix-cookbook.${lang}.texi"
	# Ensure .po file is newer.
	touch "po/doc/guix-cookbook.${lang}.po"
    fi
done

exec autoreconf -vfi