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 | c74ea22b4a398f28e0b89e85b8a0d3dfff85b7d9 (patch) | |
tree | 72a6a6ff3662fe1c3bb8696dd65795576ebfe87a /www-client/ck4up | |
parent | Remove old ebuild. (diff) | |
download | gentoo-2-c74ea22b4a398f28e0b89e85b8a0d3dfff85b7d9.tar.gz gentoo-2-c74ea22b4a398f28e0b89e85b8a0d3dfff85b7d9.tar.bz2 gentoo-2-c74ea22b4a398f28e0b89e85b8a0d3dfff85b7d9.zip |
ck4up - Check for Updates on HTTP pages
(Portage version: 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..c29c6f357748 --- /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 460 RMD160 61795549337d75dcc3e916cab5ef543f86ae8b60 SHA1 a75b2d4e522b2027567f3c061e175d48b9fb3de0 SHA256 931fef66e401de9b785eecd6dfcc02996ceaf6b4bbeecc79e99e848b939f84aa +MISC ChangeLog 247 RMD160 669207109ec77d898c07d72e058748260da8078a SHA1 1569b82181558c0ce2bd0675989702c4a3ce8e82 SHA256 706069242736d684bfdf9267a2248bbcfb887b11cae7aeabd916d53fc0297890 +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> |