Gentoo Archives: gentoo-commits

From: "Anthony G. Basile" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/musl:master commit in: /
Date: Sun, 28 Feb 2016 16:42:11
Message-Id: 1456678308.7624e6242758f4c05818470421c7e56ad6dac0d8.blueness@gentoo
1 commit: 7624e6242758f4c05818470421c7e56ad6dac0d8
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 28 16:51:48 2016 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 28 16:51:48 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/musl.git/commit/?id=7624e624
7
8 Add travis.yml
9
10 .travis.yml | 27 +++++++++++++++++++++++++++
11 README => README.md | 3 +++
12 2 files changed, 30 insertions(+)
13
14 diff --git a/.travis.yml b/.travis.yml
15 new file mode 100644
16 index 0000000..6f693b2
17 --- /dev/null
18 +++ b/.travis.yml
19 @@ -0,0 +1,27 @@
20 +language: python
21 +python:
22 + - "3.4"
23 +notifications:
24 + irc:
25 + channels:
26 + - "irc.freenode.org#gentoo-hardened"
27 + on_success: change # options: [always|never|change] default: always
28 + on_failure: always # options: [always|never|change] default: always
29 +before_script:
30 + - mkdir travis-overlay
31 + - mv !(travis-overlay) travis-overlay/
32 + - mv .git travis-overlay/
33 + - wget "http://distfiles.gentoo.org/distfiles/portage-2.2.24.tar.bz2"
34 + - wget "http://distfiles.gentoo.org/snapshots/portage-latest.tar.xz"
35 + - sudo chmod 777 /etc/passwd /etc/group /etc /usr
36 + - echo "portage:x:250:250:portage:/var/tmp/portage:/bin/false" >> /etc/passwd
37 + - echo "portage::250:portage,travis" >> /etc/group
38 + - mkdir -p /etc/portage/ /usr/portage/distfiles
39 + - tar xjf portage-2.2.24.tar.bz2
40 + - tar xJf portage-latest.tar.xz -C /usr/
41 + - cp portage-2.2.24/cnf/repos.conf /etc/portage/
42 + - 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
43 + - ln -s /usr/portage/profiles/base/ /etc/portage/make.profile
44 + - cd travis-overlay
45 +script:
46 + - "./../portage-2.2.24/bin/repoman full -i -d"
47
48 diff --git a/README b/README.md
49 similarity index 66%
50 rename from README
51 rename to README.md
52 index c078176..c58fcac 100644
53 --- a/README
54 +++ b/README.md
55 @@ -4,3 +4,6 @@ for information about the entire overlay.
56 This overlay/branch is to set up a profile for musl based system.
57
58 See: http://www.etalabs.net/musl/
59 +
60 +## Repoman status
61 +[![Repoman Status](https://travis-ci.org/gentoo/musl.png)](https://travis-ci.org/gentoo/musl)