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 EDD081388C0 for ; Sun, 28 Feb 2016 07:10:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 85FEE21C00C; Sun, 28 Feb 2016 07:10:14 +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 368F221C00C for ; Sun, 28 Feb 2016 07:10:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 42AF934090F for ; Sun, 28 Feb 2016 07:10:13 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B9B1B16C4 for ; Sun, 28 Feb 2016 07:10:09 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1456643999.8a7b4f959b17720dc8a1367075192e98c3459b8f.blueness@gentoo> Subject: [gentoo-commits] proj/elfix:master commit in: / X-VCS-Repository: proj/elfix X-VCS-Files: .travis.yml README README.md X-VCS-Directories: / X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: 8a7b4f959b17720dc8a1367075192e98c3459b8f X-VCS-Branch: master Date: Sun, 28 Feb 2016 07:10:09 +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: 8fadf038-ce79-49f5-8bf2-f298bba608dc X-Archives-Hash: 47b1ad9684aad9bab3fb5a841b07c6e9 commit: 8a7b4f959b17720dc8a1367075192e98c3459b8f Author: Anthony G. Basile gentoo org> AuthorDate: Sun Feb 28 07:19:59 2016 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Sun Feb 28 07:19:59 2016 +0000 URL: https://gitweb.gentoo.org/proj/elfix.git/commit/?id=8a7b4f95 Add travis.yml .travis.yml | 16 ++++++++++++++++ README => README.md | 4 ++++ 2 files changed, 20 insertions(+) diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..db93fa1 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,16 @@ +language: c +compiler: + - gcc + - clang +before_install: + - sudo apt-get update -qq + - sudo apt-get install autotools-dev automake autoconf libtool +script: ./autogen.sh && ./configure && make V=1 distcheck && \ + cd misc/fix-gnustack && ./autogen.sh && ./configure && make V=1 distcheck && \ + cd ../install-xattr && make V=1 +notifications: + irc: + channels: + - "irc.freenode.org#gentoo-hardened" + on_success: change + on_failure: always diff --git a/README b/README.md similarity index 92% rename from README rename to README.md index 21ec330..5616a8c 100644 --- a/README +++ b/README.md @@ -17,6 +17,7 @@ Directories under misc/ are independant packages from one another and from the elfix package. They are NOT distributed with elfix when running `make dist` in the top directory. Each directory supplies its own build system. * install-xattr - C wrapper to coreutils' install which preserves file system extended attributes. + * fix-gnustack - query or clear any ELF GNU_STACK executable flag Directory pocs/ - Very experimental stuff. * change-interp - C utility to the dynamic linker, INTERP as reported by `readelf -l`. @@ -33,3 +34,6 @@ Directory pocs/ - Very experimental stuff. * revdep-pax-ng - same as revdep-pax but using information obtained from `ldd` and not VDB information. + +## Repoman status +[![Repoman Status](https://travis-ci.org/gentoo/elfix.png)](https://travis-ci.org/gentoo/elfix)