From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2EF64158013 for ; Sun, 3 Dec 2023 09:54:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7FAA12BC01A; Sun, 3 Dec 2023 09:54:36 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 660992BC01A for ; Sun, 3 Dec 2023 09:54:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A0F1A335CB4 for ; Sun, 3 Dec 2023 09:54:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0D3CAAD4 for ; Sun, 3 Dec 2023 09:54:34 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1701596377.09f6074e959f5c1bd86d5a31cd64d9e81c7d3a95.grobian@gentoo> Subject: [gentoo-commits] proj/portage:prefix commit in: / X-VCS-Repository: proj/portage X-VCS-Files: travis.sh X-VCS-Directories: / X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: 09f6074e959f5c1bd86d5a31cd64d9e81c7d3a95 X-VCS-Branch: prefix Date: Sun, 3 Dec 2023 09:54:34 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: dca9a143-783f-44b2-97ef-7bcdd48aca84 X-Archives-Hash: 1900475bee801cb12086c6d7644d2c56 commit: 09f6074e959f5c1bd86d5a31cd64d9e81c7d3a95 Author: Fabian Groffen gentoo org> AuthorDate: Sun Dec 3 09:39:37 2023 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Sun Dec 3 09:39:37 2023 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=09f6074e travis: remove obsolete file Signed-off-by: Fabian Groffen gentoo.org> travis.sh | 31 ------------------------------- 1 file changed, 31 deletions(-) diff --git a/travis.sh b/travis.sh deleted file mode 100755 index bcb95a9cb1..0000000000 --- a/travis.sh +++ /dev/null @@ -1,31 +0,0 @@ -#!/usr/bin/env bash - -# this script runs the tests as Travis would do (.travis.yml) and can be -# used to test the Prefix branch of portage on a non-Prefix system - -: ${TMPDIR=/var/tmp} - -HERE=$(dirname $(realpath ${BASH_SOURCE[0]})) -REPO=${HERE##*/}.$$ - -cd ${TMPDIR} -git clone ${HERE} ${REPO} - -cd ${REPO} -printf "[build_ext]\nportage-ext-modules=true" >> setup.cfg -find . -type f -exec \ - sed -e "s|@PORTAGE_EPREFIX@||" \ - -e "s|@PORTAGE_BASE@|${PWD}|" \ - -e "s|@PORTAGE_MV@|$(type -P mv)|" \ - -e "s|@PORTAGE_BASH@|$(type -P bash)|" \ - -e "s|@PREFIX_PORTAGE_PYTHON@|$(type -P python)|" \ - -e "s|@EXTRA_PATH@|${EPREFIX}/usr/sbin:${EPREFIX}/sbin|" \ - -e "s|@portagegroup@|$(id -gn)|" \ - -e "s|@portageuser@|$(id -un)|" \ - -e "s|@rootuser@|$(id -un)|" \ - -e "s|@rootuid@|$(id -u)|" \ - -e "s|@rootgid@|$(id -g)|" \ - -e "s|@sysconfdir@|${EPREFIX}/etc|" \ - -i '{}' + -unset EPREFIX -./setup.py test