mrueg 14/07/23 02:59:16 Modified: ChangeLog Added: arm-1.4.5.0_p20140714-r2.ebuild Removed: arm-1.4.5.0_p20140714-r1.ebuild Log: Fix unicode error. (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key )
Revision Changes Path 1.28 net-misc/arm/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/arm/ChangeLog?rev=1.28&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/arm/ChangeLog?rev=1.28&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/arm/ChangeLog?r1=1.27&r2=1.28 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/net-misc/arm/ChangeLog,v retrieving revision 1.27 retrieving revision 1.28 diff -u -r1.27 -r1.28 --- ChangeLog 23 Jul 2014 01:32:12 -0000 1.27 +++ ChangeLog 23 Jul 2014 02:59:16 -0000 1.28 @@ -1,6 +1,12 @@ # ChangeLog for net-misc/arm # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/arm/ChangeLog,v 1.27 2014/07/23 01:32:12 mrueg Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/arm/ChangeLog,v 1.28 2014/07/23 02:59:16 mrueg Exp $ + +*arm-1.4.5.0_p20140714-r2 (23 Jul 2014) + + 23 Jul 2014; Manuel RĂ¼ger <mr...@gentoo.org> +arm-1.4.5.0_p20140714-r2.ebuild, + -arm-1.4.5.0_p20140714-r1.ebuild: + Fix unicode error. *arm-1.4.5.0_p20140714-r1 (23 Jul 2014) 1.1 net-misc/arm/arm-1.4.5.0_p20140714-r2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/arm/arm-1.4.5.0_p20140714-r2.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/arm/arm-1.4.5.0_p20140714-r2.ebuild?rev=1.1&content-type=text/plain Index: arm-1.4.5.0_p20140714-r2.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-misc/arm/arm-1.4.5.0_p20140714-r2.ebuild,v 1.1 2014/07/23 02:59:16 mrueg Exp $ EAPI=5 PYTHON_COMPAT=(python2_7) PYTHON_REQ_USE="ncurses" inherit vcs-snapshot distutils-r1 DESCRIPTION="A ncurses-based status monitor for Tor relays" HOMEPAGE="http://www.atagar.com/arm/" COMMIT_ID="ac7923e31f52d3cf51b538ddf799162d67c04ecc" SRC_URI="https://gitweb.torproject.org/arm.git/snapshot/${COMMIT_ID}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64" IUSE="test" DEPEND="test? ( dev-python/mock[${PYTHON_USEDEP}] ) dev-python/setuptools[${PYTHON_USEDEP}]" RDEPEND=">=net-libs/stem-1.2.2_p20140718[${PYTHON_USEDEP}] net-misc/tor" python_prepare_all() { sed -i -e "s/.version import VERSION/ import __version__ as VERSION/"\ -e "s/, 'arm.cli'//"\ -e "s/arm.cli/arm/g"\ -e "s/'arm.stem'//"\ -e "/gui/d"\ -e "s/\"arm\/settings.cfg\",//"\ -e "/install-purelib/d"\ -e "/eggPath/d" setup.py || die sed -i -e "s/1.4.6_dev/${PV}/" arm/__init__.py || die sed -i -e "s/line.replace(/line.replace(u/" arm/util/ui_tools.py || die distutils-r1_python_prepare_all } python_install() { distutils-r1_python_install --docPath "${EPREFIX}"/usr/share/doc/${PF} # Workaround until setup.py is fixed upstream python_moduleinto arm python_domodule arm/config python_replicate_script "${ED}"/usr/bin/run_arm } python_install_all() { distutils-r1_python_install_all --docPath "${EPREFIX}"/usr/share/doc/${PF} } python_test() { ${PYTHON} run_tests.py || die } pkg_postinst() { elog "Some graphing data issues have been noted in testing" elog "when run as root. It is not recommended to run arm as" elog "root until those issues have been isolated and fixed." elog elog "Trouble with graphs under app-misc/screen? Try:" elog 'TERM="rxvt-unicode" arm' }