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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A0AFF158003 for ; Sat, 26 Feb 2022 18:53:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ECE992BC007; Sat, 26 Feb 2022 18:53:12 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 33E982BC007 for ; Sat, 26 Feb 2022 18:53:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4B8033430D0 for ; Sat, 26 Feb 2022 18:53:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 060182EE for ; Sat, 26 Feb 2022 18:53:10 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1645901579.2651b66dae63f2e47a65b3db23182bb5982104ac.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: / X-VCS-Repository: proj/kde X-VCS-Files: .travis.yml X-VCS-Directories: / X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 2651b66dae63f2e47a65b3db23182bb5982104ac X-VCS-Branch: master Date: Sat, 26 Feb 2022 18:53:10 +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: c5154c22-2b87-42fe-80fe-bac1e7051019 X-Archives-Hash: e6565373f3d2090b848ffbe8ea5760e7 commit: 2651b66dae63f2e47a65b3db23182bb5982104ac Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Feb 26 18:52:32 2022 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Feb 26 18:52:59 2022 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=2651b66d Drop obsolete .travis.yml Signed-off-by: Andreas Sturmlechner gentoo.org> .travis.yml | 44 -------------------------------------------- 1 file changed, 44 deletions(-) diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index cddb6a3a54..0000000000 --- a/.travis.yml +++ /dev/null @@ -1,44 +0,0 @@ -# -# Run repoman via travis -# See https://github.com/mrueg/repoman-travis -# -language: python -python: - - "3.8" -env: - - PORTAGE_VER="3.0.1" -before_install: - - sudo apt-get -qq update - - pip install lxml pyyaml -before_script: - - sudo chmod a+rwX /etc/passwd /etc/group /etc /var /var/cache - - mkdir -p travis-overlay /etc/portage /var/cache/distfiles /var/db/repos/gentoo - - mv !(travis-overlay) travis-overlay/ - - mv .git travis-overlay/ - - wget "https://raw.githubusercontent.com/mrueg/repoman-travis/master/.travis.yml" -O .travis.yml.upstream - - wget "https://raw.githubusercontent.com/mrueg/repoman-travis/master/spinner.sh" - - wget -qO - "https://github.com/gentoo/portage/archive/portage-${PORTAGE_VER}.tar.gz" | tar xz - - wget -qO - "https://github.com/gentoo-mirror/gentoo/archive/master.tar.gz" | tar xz -C /var/db/repos/gentoo --strip-components=1 - - chmod a+rwx spinner.sh - - echo "portage:x:250:250:portage:/var/tmp/portage:/bin/false" >> /etc/passwd - - echo "portage::250:portage,travis" >> /etc/group - - wget "https://www.gentoo.org/dtd/metadata.dtd" -O /var/cache/distfiles/metadata.dtd - - ln -s $TRAVIS_BUILD_DIR/portage-portage-${PORTAGE_VER}/cnf/repos.conf /etc/portage/repos.conf - - ln -s /var/db/repos/gentoo/profiles/default/linux/amd64/17.0 /etc/portage/make.profile - - SIZE=$(stat -c %s .travis.yml.upstream) - - if ! cmp -n $SIZE -s .travis.yml .travis.yml.upstream; then echo -e "\e[31m !!! .travis.yml outdated! Update available https://github.com/mrueg/repoman-travis \e[0m" > /tmp/update ; fi - - cd travis-overlay -script: - - ./../spinner.sh "python ../portage-portage-${PORTAGE_VER}/repoman/bin/repoman full -d" -# You can append own scripts after this line -notifications: - irc: - on_success: change - on_failure: always - channels: - - "chat.freenode.net#gentoo-kde" - template: - - "%{repository}#%{build_number} (%{branch} - %{commit}): %{message}" - - "%{author} - %{commit_message}" - - "Change view : %{compare_url}" - - "Build details : %{build_url}"