diff options
author | Thilo Bangert <bangert@gentoo.org> | 2008-05-31 19:16:37 +0000 |
---|---|---|
committer | Thilo Bangert <bangert@gentoo.org> | 2008-05-31 19:16:37 +0000 |
commit | 507bf3e3a35923294642606c2457b655fb78c43a (patch) | |
tree | e54e130108f98de1704b57267c3933a5d27aa1cc /www-client/ck4up | |
parent | Remove old ebuild. (diff) | |
download | historical-507bf3e3a35923294642606c2457b655fb78c43a.tar.gz historical-507bf3e3a35923294642606c2457b655fb78c43a.tar.bz2 historical-507bf3e3a35923294642606c2457b655fb78c43a.zip |
ck4up - Check for Updates on HTTP pages
Package-Manager: portage-2.1.4.4
Diffstat (limited to 'www-client/ck4up')
-rw-r--r-- | www-client/ck4up/ChangeLog | 10 | ||||
-rw-r--r-- | www-client/ck4up/Manifest | 4 | ||||
-rw-r--r-- | www-client/ck4up/ck4up-1.0.ebuild | 24 | ||||
-rw-r--r-- | www-client/ck4up/metadata.xml | 22 |
4 files changed, 60 insertions, 0 deletions
diff --git a/www-client/ck4up/ChangeLog b/www-client/ck4up/ChangeLog new file mode 100644 index 000000000000..c40edb445559 --- /dev/null +++ b/www-client/ck4up/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for www-client/ck4up +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/www-client/ck4up/ChangeLog,v 1.1 2008/05/31 19:16:37 bangert Exp $ + +*ck4up-1.0 (31 May 2008) + + 31 May 2008; Thilo Bangert <bangert@gentoo.org> +metadata.xml, + +ck4up-1.0.ebuild: + initial ebuild + diff --git a/www-client/ck4up/Manifest b/www-client/ck4up/Manifest new file mode 100644 index 000000000000..7c1ac9efede3 --- /dev/null +++ b/www-client/ck4up/Manifest @@ -0,0 +1,4 @@ +DIST ck4up-1.0.tar.gz 6940 RMD160 8647df08ec059e528bc3db4d581b30088f050505 SHA1 451191ab39222eb326df9df74d0c58061cc10dc9 SHA256 6ce0af975752d3e645694643f5071e05a7dc66481fd496d6b895013406aed1b8 +EBUILD ck4up-1.0.ebuild 556 RMD160 56eda069c31357e1dc3f898d0cdf87f2dd1eaf8f SHA1 413c5edf6c82d7e13f6d9c95f1dde3fc534cb251 SHA256 9793c7be5d506d52a77a4233bb262d8d26bd230bb0dc893109299dafdb19da26 +MISC ChangeLog 336 RMD160 bbe1e35d10cbdeaa6e10b259b90cd105e6069815 SHA1 9961d38af24525a511c0ff5fc6ba562cd535feb3 SHA256 2f30827a17a52ec3d8c8828f583a770a906c516bfa135c44d9095b52c4fb78c2 +MISC metadata.xml 961 RMD160 5fa320812cbfe1ee053d13827fc27b8cbf5ceae5 SHA1 d4289ccc9e3b7eed3682ef3d021f723100c279c5 SHA256 011bd1a0ab0d2d2538a6b2bdab72eee005f9e84c525f7bd2252293ef86f2b2bd diff --git a/www-client/ck4up/ck4up-1.0.ebuild b/www-client/ck4up/ck4up-1.0.ebuild new file mode 100644 index 000000000000..93ccae73476d --- /dev/null +++ b/www-client/ck4up/ck4up-1.0.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-client/ck4up/ck4up-1.0.ebuild,v 1.1 2008/05/31 19:16:37 bangert Exp $ + +DESCRIPTION="Check for Updates on HTTP pages" +HOMEPAGE="http://jue.li/crux/ck4up/" +SRC_URI="http://jue.li/crux/ck4up/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +DEPEND="" +RDEPEND="dev-lang/ruby" + +src_compile() { + return +} + +src_install() { + emake DESTDIR="${D}" install || die "Install failed" + dodoc ChangeLog || die +} diff --git a/www-client/ck4up/metadata.xml b/www-client/ck4up/metadata.xml new file mode 100644 index 000000000000..6a9a4246c026 --- /dev/null +++ b/www-client/ck4up/metadata.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>no-herd</herd> + <maintainer> + <email>bangert@gentoo.org</email> + <name>Thilo Bangert</name> + </maintainer> + <longdescription lang="en"> +ck4up is a small command-line utility, writen in ruby, to watch http and ftp +sites for updates. ck4up scans through a configuration file, fetches the +listed URLs from the web, computes the md5sum of the page, and compares the +value with one stored in a gdbm database. If both differ a message will be +written to the standard output. + +To improve performance, ck4up is multi-threaded. Regular expressions can be +applied to each page in the event that ck4up produces repetitive diff +messages. For example, if daily snapshots and a web counter are on the same +page. To simplify maintenance of the configuration file, a kind of +macro-expansion can be used. + </longdescription> +</pkgmetadata> |