gienah 14/12/13 13:25:38
Added: metadata.xml auto-update-0.1.2.ebuild Manifest
ChangeLog
Log:
Add auto-update
(Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key
618E971F)
Revision Changes Path
1.1 dev-haskell/auto-update/metadata.xml
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/auto-update/metadata.xml?rev=1.1&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/auto-update/metadata.xml?rev=1.1&content-type=text/plain
Index: metadata.xml
===================================================================
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>haskell</herd>
<longdescription>
A common problem is the desire to have an action run at a
scheduled interval, but only if it is needed. For example, instead of having
every web request result in a new @getCurrentTime@ call, we'd like to have
a single worker thread run every second, updating an @IORef@. However, if the
request frequency is less than once per second, this is a pessimization, and
worse, kills idle GC.
This library allows you to define actions which will either be
performed by a dedicated thread or, in times of low volume, will be executed by
the calling thread.
</longdescription>
</pkgmetadata>
1.1 dev-haskell/auto-update/auto-update-0.1.2.ebuild
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/auto-update/auto-update-0.1.2.ebuild?rev=1.1&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/auto-update/auto-update-0.1.2.ebuild?rev=1.1&content-type=text/plain
Index: auto-update-0.1.2.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header:
/var/cvsroot/gentoo-x86/dev-haskell/auto-update/auto-update-0.1.2.ebuild,v 1.1
2014/12/13 13:25:38 gienah Exp $
EAPI=5
# ebuild generated by hackport 0.4.4.9999
CABAL_FEATURES="lib profile haddock hoogle hscolour"
inherit haskell-cabal
DESCRIPTION="Efficiently run periodic, on-demand actions"
HOMEPAGE="https://github.com/yesodweb/wai"
SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0/${PV}"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=">=dev-lang/ghc-7.4.1:=
"
DEPEND="${RDEPEND}
>=dev-haskell/cabal-1.10
"
1.1 dev-haskell/auto-update/Manifest
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/auto-update/Manifest?rev=1.1&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/auto-update/Manifest?rev=1.1&content-type=text/plain
Index: Manifest
===================================================================
DIST auto-update-0.1.2.tar.gz 6583 SHA256
14fcf02d5e78db86e438dc1fdfcc9e2e290d170bad96ececfe135f2903e99131 SHA512
f22bd2387d4caf5ddd2dce1582c8f549078b029ee9d5c9ea7e908ab33dbd8277e4298dcefb5498acb09a7b788e71758c5e9c26e51cf787043a409b8f9ce6527a
WHIRLPOOL
e47debc827fc55605b481fda729a0f169544aabf0c0291de93177ee6c561891c33a7a6e907863511fa5ac7f9cd1012a75f7c129408d9a1f7e544f3ed8aa9f1f4
EBUILD auto-update-0.1.2.ebuild 560 SHA256
f753bef72122e1799438d46e6cc2b28386e65582639e1cffefc1d90386b21683 SHA512
994b2739820c96217a340d606444991ab4b0b97888d17c6e8c565240c1b42ea51beceeadbadf940caa3c0b834df919c3110eb0f29e7f2a6f9d4205f791f2a7cf
WHIRLPOOL
163e65771c8e75305be47051eb35b74cbcc1e2a1c37f12d3c54d67fb21200d822954b31eb4380e35620737d3a731a12d8640c8cb277632be0a1702627d65851c
MISC metadata.xml 761 SHA256
753b343ec9cfc108ef4a330177c98b06bf1e06fea1b8023272fc74f645c69a7c SHA512
75bc09c473701e06bc9206312aa5af4baf3da4d99c44514a01d6a93c9ae593b94b433b301a107606050e44dac064ba1b449f32f30b40223afd4245870773f0cd
WHIRLPOOL
3417c121ac7cf5ea27d25754b399b36f2c01ad35a7f234b6c99e81865d71353512a339c2dfebd47dcb9cc7bc561cd5577984eceb761be5d49e7f10345b11c195
1.1 dev-haskell/auto-update/ChangeLog
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/auto-update/ChangeLog?rev=1.1&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/auto-update/ChangeLog?rev=1.1&content-type=text/plain
Index: ChangeLog
===================================================================
# ChangeLog for dev-haskell/auto-update
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/auto-update/ChangeLog,v 1.1
2014/12/13 13:25:38 gienah Exp $
*auto-update-0.1.2 (13 Dec 2014)
13 Dec 2014; Mark Wright <[email protected]> +auto-update-0.1.2.ebuild,
+metadata.xml:
Add auto-update