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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 20850138334 for ; Tue, 31 Dec 2019 09:05:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4C9C6E0E38; Tue, 31 Dec 2019 09:05:52 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CCE17E0E38 for ; Tue, 31 Dec 2019 09:05:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C5CA234DDB6 for ; Tue, 31 Dec 2019 09:05:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3BEC07C for ; Tue, 31 Dec 2019 09:05:49 +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: <1577783132.1f9574907f390a136ce57d4ad248349fe108bfe8.grobian@gentoo> Subject: [gentoo-commits] proj/portage-utils:master commit in: /, travis/ X-VCS-Repository: proj/portage-utils X-VCS-Files: .travis.yml travis/install-iniparser.sh X-VCS-Directories: travis/ / X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: 1f9574907f390a136ce57d4ad248349fe108bfe8 X-VCS-Branch: master Date: Tue, 31 Dec 2019 09:05:49 +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: 2c7f58d5-a2e5-4f89-b97e-3c44c93a15e6 X-Archives-Hash: 57cd8624140ead1790cf369330aaf7df commit: 1f9574907f390a136ce57d4ad248349fe108bfe8 Author: Fabian Groffen gentoo org> AuthorDate: Tue Dec 31 09:05:32 2019 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Tue Dec 31 09:05:32 2019 +0000 URL: https://gitweb.gentoo.org/proj/portage-utils.git/commit/?id=1f957490 travis: we no longer need iniparser Signed-off-by: Fabian Groffen gentoo.org> .travis.yml | 1 - travis/install-iniparser.sh | 18 ------------------ 2 files changed, 19 deletions(-) diff --git a/.travis.yml b/.travis.yml index 2a51c0d..83a6ff6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -26,6 +26,5 @@ addons: - gnupg2 before_install: - - ./travis/install-iniparser.sh - ./travis/install-blake2.sh script: ./travis/main.sh diff --git a/travis/install-iniparser.sh b/travis/install-iniparser.sh deleted file mode 100755 index c0edd83..0000000 --- a/travis/install-iniparser.sh +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/bash -e - -. "${0%/*}"/lib.sh - -main() { - local pv="3.1" - local S="iniparser" - travis_fold start dep-iniparser - rm -rf iniparser* - v mkdir -p ../sysroot - v wget http://distfiles.gentoo.org/distfiles/iniparser-${pv}.tar.gz - v tar xf iniparser-${pv}.tar.gz - m -C ${S} - v cp ${S}/libiniparser.a ${S}/src/{dictionary,iniparser}.h ../sysroot/ - v rm -rf iniparser* - travis_fold end dep-iniparser -} -main "$@"