diff options
author | 2012-09-08 14:25:47 +0100 | |
---|---|---|
committer | 2012-09-08 15:16:55 +0100 | |
commit | fe67468145178e13d5100cb62dce98195e1d56f2 (patch) | |
tree | 194b157ec8c7e18b5d7ea41b147a297714dc94dc | |
parent | 368c771cc5b31762875df5db770cc96aa855a05f (diff) | |
download | paludis-fe67468145178e13d5100cb62dce98195e1d56f2.tar.gz paludis-fe67468145178e13d5100cb62dce98195e1d56f2.tar.xz |
EAPI 5 needs its own colour
-rw-r--r-- | configure.ac | 1 | ||||
-rw-r--r-- | paludis/repositories/e/ebuild/5/Makefile.am | 14 | ||||
-rw-r--r-- | paludis/repositories/e/ebuild/5/output_functions.bash | 33 | ||||
-rw-r--r-- | paludis/repositories/e/ebuild/Makefile.am | 2 | ||||
-rw-r--r-- | paludis/util/echo_functions.bash.in | 1 |
5 files changed, 50 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 85120405c..9aad5bdd3 100644 --- a/configure.ac +++ b/configure.ac @@ -1828,6 +1828,7 @@ AC_CONFIG_FILES([ paludis/repositories/e/ebuild/2/Makefile paludis/repositories/e/ebuild/3/Makefile paludis/repositories/e/ebuild/4/Makefile + paludis/repositories/e/ebuild/5/Makefile paludis/repositories/e/ebuild/Makefile paludis/repositories/e/ebuild/exheres-0/Makefile paludis/repositories/e/ebuild/paludis-1/Makefile diff --git a/paludis/repositories/e/ebuild/5/Makefile.am b/paludis/repositories/e/ebuild/5/Makefile.am new file mode 100644 index 000000000..8e2370803 --- /dev/null +++ b/paludis/repositories/e/ebuild/5/Makefile.am @@ -0,0 +1,14 @@ +include $(top_srcdir)/misc/common-makefile.am + +SUBDIRS = . + +libexecprog5dir = $(libexecdir)/paludis/5 + +libexecprog5_SCRIPTS = \ + output_functions.bash + +TESTS = +check_SCRIPTS = $(TESTS) + +EXTRA_DIST = $(libexecprog5_SCRIPTS) + diff --git a/paludis/repositories/e/ebuild/5/output_functions.bash b/paludis/repositories/e/ebuild/5/output_functions.bash new file mode 100644 index 000000000..0b9135608 --- /dev/null +++ b/paludis/repositories/e/ebuild/5/output_functions.bash @@ -0,0 +1,33 @@ +#!/usr/bin/env bash +# vim: set sw=4 sts=4 et : + +# Copyright (c) 2006, 2007, 2008, 2009, 2010 Ciaran McCreesh +# +# This file is part of the Paludis package manager. Paludis is free software; +# you can redistribute it and/or modify it under the terms of the GNU General +# Public License, version 2, as published by the Free Software Foundation. +# +# Paludis is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +# details. +# +# You should have received a copy of the GNU General Public License along with +# this program; if not, write to the Free Software Foundation, Inc., 59 Temple +# Place, Suite 330, Boston, MA 02111-1307 USA + +ebuild_notice() +{ + [[ -z "${PALUDIS_PIPE_COMMANDS_SUPPORTED}" ]] && return + paludis_pipe_command LOG "$EAPI" "$@" >/dev/null +} + +ebuild_section() +{ + [[ -n ${PALUDIS_EBUILD_QUIET} ]] && return + echo -ne "${COLOUR_DARK_GREEN}>>>${COLOUR_NORMAL} " + [[ ${PALUDIS_PIPE_COMMANDS_STATUS_SUPPORTED} == "yes" ]] && \ + paludis_pipe_command LOG "$EAPI" "status" "${COLOUR_DARK_GREEN}>>>${COLOUR_NORMAL} $@" >/dev/null + echo "$@" +} + diff --git a/paludis/repositories/e/ebuild/Makefile.am b/paludis/repositories/e/ebuild/Makefile.am index a7835e336..6f438469b 100644 --- a/paludis/repositories/e/ebuild/Makefile.am +++ b/paludis/repositories/e/ebuild/Makefile.am @@ -1,6 +1,6 @@ include $(top_srcdir)/misc/common-makefile.am -SUBDIRS = . 0 1 2 3 4 exheres-0 paludis-1 pbin-1 utils +SUBDIRS = . 0 1 2 3 4 5 exheres-0 paludis-1 pbin-1 utils AM_CXXFLAGS = -I$(top_srcdir) @PALUDIS_CXXFLAGS@ diff --git a/paludis/util/echo_functions.bash.in b/paludis/util/echo_functions.bash.in index 029ecde88..21f374b71 100644 --- a/paludis/util/echo_functions.bash.in +++ b/paludis/util/echo_functions.bash.in @@ -33,6 +33,7 @@ COLOUR_CYAN=$'\e[36;01m' COLOUR_BROWN=$'\e[33m' COLOUR_PURPLE=$'\e[35m' COLOUR_DARK_BLUE=$'\e[34m' +COLOUR_DARK_GREEN=$'\e[32m' if [[ ${PALUDIS_COLOURS} == pink ]]; then COLOUR_GOOD=${COLOUR_PINK} |