From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 858651395E2 for ; Sun, 4 Dec 2016 19:31:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 87F6D21C03C; Sun, 4 Dec 2016 19:31:01 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6990921C03C for ; Sun, 4 Dec 2016 19:31:01 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B0F27341142 for ; Sun, 4 Dec 2016 19:30:59 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 55A66972 for ; Sun, 4 Dec 2016 19:30:58 +0000 (UTC) From: "José María Alonso" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "José María Alonso" Message-ID: <1480879854.d9ee7060f762d428d6b58a74dc5d45855a562f75.nimiux@gentoo> Subject: [gentoo-commits] proj/lisp:master commit in: dev-lisp/chronicity/ X-VCS-Repository: proj/lisp X-VCS-Files: dev-lisp/chronicity/chronicity-0.3.0.ebuild X-VCS-Directories: dev-lisp/chronicity/ X-VCS-Committer: nimiux X-VCS-Committer-Name: José María Alonso X-VCS-Revision: d9ee7060f762d428d6b58a74dc5d45855a562f75 X-VCS-Branch: master Date: Sun, 4 Dec 2016 19:30:58 +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: 1c52187e-1003-4ea5-8153-ca431eeb3d73 X-Archives-Hash: d623673cfdada48c881d426e613e97ad commit: d9ee7060f762d428d6b58a74dc5d45855a562f75 Author: Chema Alonso Josa gentoo org> AuthorDate: Sun Dec 4 19:30:54 2016 +0000 Commit: José María Alonso gentoo org> CommitDate: Sun Dec 4 19:30:54 2016 +0000 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=d9ee7060 dev-lisp/chronicity: Bumps version to 0.3.0 dev-lisp/chronicity/chronicity-0.3.0.ebuild | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/dev-lisp/chronicity/chronicity-0.3.0.ebuild b/dev-lisp/chronicity/chronicity-0.3.0.ebuild new file mode 100644 index 0000000..fc3fbfd --- /dev/null +++ b/dev-lisp/chronicity/chronicity-0.3.0.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit common-lisp-3 + +DESCRIPTION="A natural language date and time parser for Common Lisp." +HOMEPAGE="http://chaitanyagupta.com/lisp/chronicity/" +SRC_URI="https://github.com/chaitanyagupta/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="" + +RDEPEND=">=dev-lisp/cl-ppcre-2.0.0 + dev-lisp/cl-interpol + >=dev-lisp/local-time-1.0.1" + +CLPACKAGES="${PN} ${PN}-test" + +src_install() { + common-lisp-install-sources src test + common-lisp-install-asdf + dodoc README +}