diff options
author | Jeroen Roovers <jer@gentoo.org> | 2014-07-19 14:20:29 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2014-07-19 14:20:29 +0000 |
commit | 58e46aefcd35ab605b51bcaca9c3ff58041880dd (patch) | |
tree | 7cfde8bc394e86999209e4abc130b358ca8688d8 /app-misc/remind | |
parent | EAPI bump. (diff) | |
download | gentoo-2-58e46aefcd35ab605b51bcaca9c3ff58041880dd.tar.gz gentoo-2-58e46aefcd35ab605b51bcaca9c3ff58041880dd.tar.bz2 gentoo-2-58e46aefcd35ab605b51bcaca9c3ff58041880dd.zip |
Old.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'app-misc/remind')
-rw-r--r-- | app-misc/remind/ChangeLog | 8 | ||||
-rw-r--r-- | app-misc/remind/files/03.01.12-test.patch | 19 | ||||
-rw-r--r-- | app-misc/remind/remind-03.01.12.ebuild | 50 |
3 files changed, 6 insertions, 71 deletions
diff --git a/app-misc/remind/ChangeLog b/app-misc/remind/ChangeLog index f747a4173ef7..471a2b511217 100644 --- a/app-misc/remind/ChangeLog +++ b/app-misc/remind/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-misc/remind -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/remind/ChangeLog,v 1.13 2013/12/23 15:37:56 pacho Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/remind/ChangeLog,v 1.14 2014/07/19 14:20:29 jer Exp $ + + 19 Jul 2014; Jeroen Roovers <jer@gentoo.org> -remind-03.01.12.ebuild, + -files/03.01.12-test.patch: + Old. 23 Dec 2013; Pacho Ramos <pacho@gentoo.org> metadata.xml: Cleanup due bug #65652 diff --git a/app-misc/remind/files/03.01.12-test.patch b/app-misc/remind/files/03.01.12-test.patch deleted file mode 100644 index f921304e36c0..000000000000 --- a/app-misc/remind/files/03.01.12-test.patch +++ /dev/null @@ -1,19 +0,0 @@ -commit c56cfe9e1d61a7739fe88fcb42878432e75b3680 -Author: David F. Skoll <dfs@roaringpenguin.com> -Date: Tue May 8 16:54:54 2012 -0400 - - Fix test harness failure. - -diff --git a/tests/test-rem b/tests/test-rem -index 13b5ba6..bad3f49 100644 ---- a/tests/test-rem -+++ b/tests/test-rem -@@ -68,7 +68,7 @@ echo "Sort Test" >> ../tests/test.out - (echo "REM AT 12:00 MSG Untimed"; echo "REM MSG Timed") | ../src/remind -q -gaaad - 1 Jan 2000 >> ../tests/test.out 2>&1 - - echo "Purge Test" >> ../tests/test.out --../src/remind -j999 ../tests/purge_dir/f1.rem >> ../tests/test.out 2>&1 -+../src/remind -j999 ../tests/purge_dir/f1.rem 3 Feb 2012 >> ../tests/test.out 2>&1 - echo "F1" >> ../tests/test.out - cat ../tests/purge_dir/f1.rem.purged >> ../tests/test.out - echo "F2" >> ../tests/test.out diff --git a/app-misc/remind/remind-03.01.12.ebuild b/app-misc/remind/remind-03.01.12.ebuild deleted file mode 100644 index 61f85c8f4598..000000000000 --- a/app-misc/remind/remind-03.01.12.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/remind/remind-03.01.12.ebuild,v 1.6 2012/07/29 17:18:10 armin76 Exp $ - -inherit eutils - -MY_P=${P/_beta/-BETA-} -S=${WORKDIR}/${MY_P} - -DESCRIPTION="Ridiculously functional reminder program" -HOMEPAGE="http://www.roaringpenguin.com/products/remind" -SRC_URI="http://www.roaringpenguin.com/files/download/${MY_P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc x86 ~x86-fbsd" -IUSE="tk" - -RDEPEND="tk? ( dev-lang/tk dev-tcltk/tcllib )" - -src_unpack() { - unpack ${A} - cd "${S}" - sed -i 's:$(MAKE) install:&-nostripped:' "${S}"/Makefile || die - epatch "${FILESDIR}"/03.01.12-test.patch -} - -src_test() { - if [[ ${EUID} -eq 0 ]] ; then - ewarn "Testing fails if run as root. Skipping tests." - return - fi - make test || die -} - -src_install() { - emake DESTDIR="${D}" install || die "make install failed" - dobin www/rem2html || die "dobin failed" - - dodoc docs/WHATSNEW examples/defs.rem www/README.* || die "dodoc failed" - - if ! use tk ; then - rm "${D}"/usr/bin/tkremind "${D}"/usr/share/man/man1/tkremind* \ - "${D}"/usr/bin/cm2rem* "${D}"/usr/share/man/man1/cm2rem* - fi - - rm "${S}"/contrib/rem2ics-*/{Makefile,rem2ics.spec} || die - insinto /usr/share/${PN} - doins -r contrib/ -} |