From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (unknown [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 462731381FA for ; Fri, 23 May 2014 21:59:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8F503E083B; Fri, 23 May 2014 21:59:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 29534E083B for ; Fri, 23 May 2014 21:59:17 +0000 (UTC) Received: from spoonbill.gentoo.org (unknown [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3136933F8AC for ; Fri, 23 May 2014 21:59:16 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id B5D5C1818D for ; Fri, 23 May 2014 21:59:14 +0000 (UTC) From: "Manuel Rüger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Manuel Rüger" Message-ID: <1400882316.67b70e896bfaa9305e8bb8d74f76d199d0e36007.mrueg@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: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: 67b70e896bfaa9305e8bb8d74f76d199d0e36007 X-VCS-Branch: master Date: Fri, 23 May 2014 21:59:14 +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-Archives-Salt: a9e0e43d-8204-4790-a807-223851318492 X-Archives-Hash: 769e34c35f9a9283e065cdeca964b150 commit: 67b70e896bfaa9305e8bb8d74f76d199d0e36007 Author: Manuel Rüger gentoo org> AuthorDate: Fri May 23 21:58:36 2014 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Fri May 23 21:58:36 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=67b70e89 Add travis repoman integration. --- .travis.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..800ac0b --- /dev/null +++ b/.travis.yml @@ -0,0 +1,17 @@ +before_script: + - mkdir travis-overlay + - mv !(travis-overlay) travis-overlay/ + - mv .git travis-overlay/ + - wget "http://distfiles.gentoo.org/distfiles/portage-2.2.10.tar.bz2" + - wget "http://distfiles.gentoo.org/snapshots/portage-latest.tar.xz" + - sudo chmod 777 /etc/passwd /etc/group /etc /usr + - echo "portage:x:250:250:portage:/var/tmp/portage:/bin/false" >> /etc/passwd + - echo "portage::250:portage,travis" >> /etc/group + - mkdir -p /etc/portage /usr/portage/distfiles + - tar xjf portage-2.2.10.tar.bz2 + - tar xJf portage-latest.tar.xz -C /usr/ + - cp portage-2.2.10/cnf/repos.conf /etc/portage/ + - rsync --recursive --links --safe-links --perms --times --omit-dir-times --compress --force --whole-file --delete --stats --human-readable --timeout=180 --exclude=/distfiles --checksum --quiet rsync://rsync.gentoo.org/gentoo-portage /usr/portage + - cd travis-overlay +script: + - "./../portage-2.2.10/bin/repoman full -d"