From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 61AF7139357 for ; Sat, 8 Aug 2015 12:06:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A34A3E0839; Sat, 8 Aug 2015 12:06:30 +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 19748E0839 for ; Sat, 8 Aug 2015 12:06:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 055FB340AEC for ; Sat, 8 Aug 2015 12:06:29 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C67E3B2 for ; Sat, 8 Aug 2015 12:06:25 +0000 (UTC) From: "James Le Cuirot" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "James Le Cuirot" Message-ID: <1438961147.c870635165e5fcd225632965aa3b59b6f23d861b.chewi@gentoo> Subject: [gentoo-commits] proj/java:master commit in: / X-VCS-Repository: proj/java X-VCS-Files: .travis.yml README.md X-VCS-Directories: / X-VCS-Committer: chewi X-VCS-Committer-Name: James Le Cuirot X-VCS-Revision: c870635165e5fcd225632965aa3b59b6f23d861b X-VCS-Branch: master Date: Sat, 8 Aug 2015 12:06:25 +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: 531c480c-b2b8-4b6a-9c09-a9b777228c59 X-Archives-Hash: 6a896106dca0c8fa15cf033e0414a31e commit: c870635165e5fcd225632965aa3b59b6f23d861b Author: Johannes Huber gentoo org> AuthorDate: Mon Jun 22 17:42:57 2015 +0000 Commit: James Le Cuirot gentoo org> CommitDate: Fri Aug 7 15:25:47 2015 +0000 URL: https://gitweb.gentoo.org/proj/java.git/commit/?id=c8706351 Travis ci support with irc notification Travis continues integration based on repoman qa checks. CI results promoted to irc channel #gentoo-java @ freenode. .travis.yml | 42 ++++++++++++++++++++++++++++++++++++++++++ README.md | 2 ++ 2 files changed, 44 insertions(+) diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..9b1dd25 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,42 @@ +# +# Run repoman via travis +# See https://github.com/mrueg/repoman-travis +# +language: python +python: + - pypy +env: + - PORTAGE_VER="2.2.20" +before_script: + - mkdir travis-overlay + - 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://github.com/gentoo/portage/archive/v${PORTAGE_VER}.tar.gz" -O portage-${PORTAGE_VER}.tar.gz + - wget "https://raw.githubusercontent.com/mrueg/repoman-travis/master/spinner.sh" + - wget "https://github.com/gentoo/gentoo-portage-rsync-mirror/archive/master.tar.gz" -O portage-tree.tar.gz + - sudo chmod a+rwX /etc/passwd /etc/group /etc /usr spinner.sh + - 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 + - mkdir -p /etc/portage/ /usr/portage/distfiles + - tar xzf portage-${PORTAGE_VER}.tar.gz + - tar xzf portage-tree.tar.gz -C /usr/portage --strip-components=1 + - cp portage-${PORTAGE_VER}/cnf/repos.conf /etc/portage/ + - ln -s /usr/portage/profiles/base/ /etc/portage/make.profile + - wget "https://www.gentoo.org/dtd/metadata.dtd" -O /usr/portage/distfiles/metadata.dtd + - 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 "./../portage-${PORTAGE_VER}/bin/repoman full -d" +# You can append own scripts after this line +notifications: + irc: + channels: + - "chat.freenode.net#gentoo-java" + template: + - "%{repository}#%{build_number} (%{branch} - %{commit}): %{message}" + - "%{author} - %{commit_message}" + - "Change view : %{compare_url}" + - "Build details : %{build_url}" diff --git a/README.md b/README.md index 64c0d35..8ad7bc6 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # Gentoo java overlay +[![Repoman Status](https://travis-ci.org/gentoo/java-overlay.png)](https://travis-ci.org/gentoo/java-overlay) + This overlay contains only packages migrated to generation 2 (java-*-2 eclass using ebuilds). Ebuilds in this overlay are expected to work.