diff options
author | Alin Năstac <mrness@gentoo.org> | 2007-06-17 16:19:30 +0000 |
---|---|---|
committer | Alin Năstac <mrness@gentoo.org> | 2007-06-17 16:19:30 +0000 |
commit | 6048fc13dd2d89791a67cffd2db8ddafcd52da97 (patch) | |
tree | 93c8d1d9881fce6f259ed4b683776473743aa95a /net-proxy | |
parent | Version bump. Add ~amd64 keyword. (diff) | |
download | historical-6048fc13dd2d89791a67cffd2db8ddafcd52da97.tar.gz historical-6048fc13dd2d89791a67cffd2db8ddafcd52da97.tar.bz2 historical-6048fc13dd2d89791a67cffd2db8ddafcd52da97.zip |
Remove old versions.
Package-Manager: portage-2.1.2.7
Diffstat (limited to 'net-proxy')
-rw-r--r-- | net-proxy/wwwoffle/ChangeLog | 7 | ||||
-rw-r--r-- | net-proxy/wwwoffle/files/digest-wwwoffle-2.9-r1 | 3 | ||||
-rw-r--r-- | net-proxy/wwwoffle/files/digest-wwwoffle-2.9a | 3 | ||||
-rw-r--r-- | net-proxy/wwwoffle/files/wwwoffle-2.9-gcc41.patch | 43 | ||||
-rw-r--r-- | net-proxy/wwwoffle/files/wwwoffle-2.9-reload.patch | 12 | ||||
-rw-r--r-- | net-proxy/wwwoffle/wwwoffle-2.9-r1.ebuild | 143 | ||||
-rw-r--r-- | net-proxy/wwwoffle/wwwoffle-2.9a.ebuild | 141 | ||||
-rw-r--r-- | net-proxy/ziproxy/Manifest | 34 |
8 files changed, 20 insertions, 366 deletions
diff --git a/net-proxy/wwwoffle/ChangeLog b/net-proxy/wwwoffle/ChangeLog index eb6b712b2d1d..7a05096a9cfb 100644 --- a/net-proxy/wwwoffle/ChangeLog +++ b/net-proxy/wwwoffle/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-proxy/wwwoffle # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-proxy/wwwoffle/ChangeLog,v 1.30 2007/04/24 18:34:27 dertobi123 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-proxy/wwwoffle/ChangeLog,v 1.31 2007/06/17 16:19:30 mrness Exp $ + + 17 Jun 2007; Alin Năstac <mrness@gentoo.org> + -files/wwwoffle-2.9-gcc41.patch, -files/wwwoffle-2.9-reload.patch, + -wwwoffle-2.9-r1.ebuild, -wwwoffle-2.9a.ebuild: + Remove old versions. 24 Apr 2007; Tobias Scherbaum <dertobi123@gentoo.org> wwwoffle-2.9b.ebuild: diff --git a/net-proxy/wwwoffle/files/digest-wwwoffle-2.9-r1 b/net-proxy/wwwoffle/files/digest-wwwoffle-2.9-r1 deleted file mode 100644 index 5b6f24397ad7..000000000000 --- a/net-proxy/wwwoffle/files/digest-wwwoffle-2.9-r1 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 e8e7f3bdf1ff0a9baa26e5aebd6ad396 wwwoffle-2.9.tgz 1074108 -RMD160 f5cbe205c3d0b5ba0cdc23bfa51f185cb8ec1f6c wwwoffle-2.9.tgz 1074108 -SHA256 ac5e779beae963cf2f3b0dd44f7ed64114a1c15aa2fb6f41ad7db9bc0f096df3 wwwoffle-2.9.tgz 1074108 diff --git a/net-proxy/wwwoffle/files/digest-wwwoffle-2.9a b/net-proxy/wwwoffle/files/digest-wwwoffle-2.9a deleted file mode 100644 index 7aa63821fffe..000000000000 --- a/net-proxy/wwwoffle/files/digest-wwwoffle-2.9a +++ /dev/null @@ -1,3 +0,0 @@ -MD5 3ba32fc842a6af96b28cd3c7ff8f6f56 wwwoffle-2.9a.tgz 1071362 -RMD160 b183fe881f9824a0dbf11480fc8d98f57cd5a7f8 wwwoffle-2.9a.tgz 1071362 -SHA256 23a469f6b4be39333fdbafb750dff890c0c6e9000144ad98d27c5461dddf9de1 wwwoffle-2.9a.tgz 1071362 diff --git a/net-proxy/wwwoffle/files/wwwoffle-2.9-gcc41.patch b/net-proxy/wwwoffle/files/wwwoffle-2.9-gcc41.patch deleted file mode 100644 index bd9e6291230c..000000000000 --- a/net-proxy/wwwoffle/files/wwwoffle-2.9-gcc41.patch +++ /dev/null @@ -1,43 +0,0 @@ -diff -ur wwwoffle-2.9-orig/src/proto.h wwwoffle-2.9/src/proto.h ---- wwwoffle-2.9-orig/src/proto.h 2006-05-02 01:06:01.316639546 +0000 -+++ wwwoffle-2.9/src/proto.h 2006-05-02 01:13:24.080901246 +0000 -@@ -62,7 +62,7 @@ - char /*@null@*/ /*@only@*/ *HTTP_Open(URL *Url); - char /*@null@*/ /*@only@*/ *HTTP_Request(URL *Url,Header *request_head,Body *request_body); - int HTTP_ReadHead(/*@out@*/ Header **reply_head); --int HTTP_ReadBody(char *s,size_t n); -+ssize_t HTTP_ReadBody(char *s,size_t n); - int HTTP_Close(void); - - #if USE_GNUTLS -@@ -82,7 +82,7 @@ - char /*@null@*/ /*@only@*/ *FTP_Open(URL *Url); - char /*@null@*/ /*@only@*/ *FTP_Request(URL *Url,Header *request_head,Body *request_body); - int FTP_ReadHead(/*@out@*/ Header **reply_head); --int FTP_ReadBody(char *s,size_t n); -+ssize_t FTP_ReadBody(char *s,size_t n); - int FTP_Close(void); - - /* In finger.c */ -@@ -90,7 +90,7 @@ - char /*@null@*/ /*@only@*/ *Finger_Open(URL *Url); - char /*@null@*/ /*@only@*/ *Finger_Request(URL *Url,Header *request_head,Body *request_body); - int Finger_ReadHead(/*@out@*/ Header **reply_head); --int Finger_ReadBody(char *s,size_t n); -+ssize_t Finger_ReadBody(char *s,size_t n); - int Finger_Close(void); - - /* In ssl.c */ -diff -ur wwwoffle-2.9-orig/src/wwwoffles.c wwwoffle-2.9/src/wwwoffles.c ---- wwwoffle-2.9-orig/src/wwwoffles.c 2006-05-02 01:06:01.316639546 +0000 -+++ wwwoffle-2.9/src/wwwoffles.c 2006-05-02 01:07:33.428854807 +0000 -@@ -3026,7 +3026,7 @@ - This function is used as a callback from gifmodify.c and htmlmodify.l - ++++++++++++++++++++++++++++++++++++++*/ - --int wwwoffles_read_data(char *data,size_t len) -+ssize_t wwwoffles_read_data(char *data,size_t len) - { - if(modify_err==-1) - return(0); - diff --git a/net-proxy/wwwoffle/files/wwwoffle-2.9-reload.patch b/net-proxy/wwwoffle/files/wwwoffle-2.9-reload.patch deleted file mode 100644 index 422f2b973237..000000000000 --- a/net-proxy/wwwoffle/files/wwwoffle-2.9-reload.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -Nru wwwoffle-2.9.orig/src/parse.c wwwoffle-2.9/src/parse.c ---- wwwoffle-2.9.orig/src/parse.c 2006-02-11 22:00:24.000000000 +0200 -+++ wwwoffle-2.9/src/parse.c 2006-07-25 17:52:16.970260250 +0300 -@@ -317,7 +317,7 @@ - } - } - -- return(0); -+ return(retval); - } - - diff --git a/net-proxy/wwwoffle/wwwoffle-2.9-r1.ebuild b/net-proxy/wwwoffle/wwwoffle-2.9-r1.ebuild deleted file mode 100644 index 6685cf77192d..000000000000 --- a/net-proxy/wwwoffle/wwwoffle-2.9-r1.ebuild +++ /dev/null @@ -1,143 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-proxy/wwwoffle/wwwoffle-2.9-r1.ebuild,v 1.7 2007/03/10 13:34:21 mrness Exp $ - -inherit eutils - -DESCRIPTION="wwwoffle = WWW Offline Explorer, an adv. caching proxy especially suitable for nonpermanent (e.g. dialup) Internet connections" -SRC_URI="http://www.gedanken.freeserve.co.uk/download-wwwoffle/${P}.tgz" -HOMEPAGE="http://www.gedanken.demon.co.uk/wwwoffle" - -KEYWORDS="amd64 ppc ppc64 sparc x86" -SLOT="0" -LICENSE="GPL-2" -IUSE="gnutls ipv6 zlib" - -RDEPEND="gnutls? ( net-libs/gnutls ) - zlib? ( sys-libs/zlib )" -DEPEND="dev-lang/perl - sys-devel/flex - ${RDEPEND}" - -# Unsure whether to depend on >=www-misc/htdig-3.1.6-r4 or not - -pkg_setup() { - # Add a wwwoffle user - enewgroup wwwoffle - enewuser wwwoffle -1 -1 /var/spool/wwwoffle wwwoffle -} - -src_unpack() { - unpack ${A} - - epatch "${FILESDIR}/${P}-gcc41.patch" - epatch "${FILESDIR}/${P}-reload.patch" - sed -i -e 's#$(TAR) xpf #$(TAR) --no-same-owner -xpf #' \ - "${S}/cache/Makefile.in" -} - -src_compile() { - econf $(use_with zlib) $(use_with gnutls) \ - $(use_with ipv6) || die "econf failed" - emake || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - - # documentation fix - # del empty doc dirs - rmdir "${D}/usr/doc/${PN}"/{it,nl,ru} - dodir /usr/share/doc - mv "${D}/usr/doc/wwwoffle" "${D}/usr/share/doc/${PF}" - - # install the wwwoffled init script - newinitd "${FILESDIR}/${PN}.initd" wwwoffled - newinitd "${FILESDIR}/${PN}-online.initd" wwwoffled-online - newconfd "${FILESDIR}/${PN}-online.confd" wwwoffled-online - - keepdir /var/spool/wwwoffle/{http,outgoing,monitor,lasttime,lastout,local} - for number in 1 2 3 4 5 6 7 8 9; do - keepdir "/var/spool/wwwoffle/prevtime${number}" "/var/spool/wwwoffle/prevout${number}" - done - - # empty dirs are removed during update - keepdir \ - /var/spool/wwwoffle/search/{mnogosearch/db,htdig/tmp,htdig/db-lasttime,htdig/db,namazu/db} - - touch \ - "${D}/var/spool/wwwoffle/search/htdig/wwwoffle-htdig.log" \ - "${D}/var/spool/wwwoffle/search/mnogosearch/wwwoffle-mnogosearch.log" \ - "${D}/var/spool/wwwoffle/search/namazu/wwwoffle-namazu.log" - - chown -R wwwoffle:wwwoffle "${D}/var/spool/wwwoffle" "${D}/etc/wwwoffle" - - # TODO htdig indexing as part of initscripts - - # robots.txt modification - /var/spool/wwwoffle/html/en - # - remove Disallow: /index - sed -i -e "s|Disallow:.*/index|#Disallow: /index|" "${D}/var/spool/wwwoffle/html/en/robots.txt" - - rmdir "${D}/usr/doc" - chmod -R o-w "${D}/var/spool/wwwoffle" #some file have w permission for world! -} - -pkg_preinst() { - # Add a wwwoffle user - required here for binary packages - enewgroup wwwoffle - enewuser wwwoffle -1 -1 /var/spool/wwwoffle wwwoffle - - # Changing the user:group to wwwoffle:woffle - fowners -R wwwoffle:wwwoffle /var/spool/wwwoffle /etc/wwwoffle - sed -i -e 's/^[# \t]\(run-[gu]id[ \t]*=[ \t]*\)[a-zA-Z0-9]*[ \t]*$/ \1wwwoffle/g' \ - "${D}/etc/wwwoffle/wwwoffle.conf" - - # Stop the service if it is started - if [ "${ROOT}" = "/" ] ; then - source /etc/init.d/functions.sh - if [ -L "${svcdir}/started/wwwoffled" ]; then - einfo "The wwwoffled init script is running. I'll stop it, merge the new files and - restart the script." - /etc/init.d/wwwoffled stop - # Just to be sure... - start-stop-daemon --stop --quiet --name wwwoffled - touch "${T}/stopped" - fi - fi -} - -pkg_postinst() { - # fix permissions for those upgrading - - for number in 1 2 3 4 5 6 7 8 9; - do - [ ! -d "${ROOT}/var/spool/wwwoffle/prevtime${number}" ] && \ - keepdir "${ROOT}/var/spool/wwwoffle/prevtime${number}" - [ ! -d "${ROOT}/var/spool/wwwoffle/prevout${number}" ] && \ - keepdir "${ROOT}/var/spool/wwwoffle/prevout${number}" - done - - chown -R wwwoffle:wwwoffle "${ROOT}/var/spool/wwwoffle" "${ROOT}/etc/wwwoffle" - - # Need to sumbit patch upstream to allow this. - #fowners root:wwwoffle /var/spool/wwwoffle - #fowners wwwoffle:wwwoffle /var/spool/wwwoffle - - [ -f "${T}/stopped" ] && \ - ewarn "wwwoffled was stopped. /etc/init.d/wwwoffled start to restart AFTER etc-update" - - einfo "wwwoffled should run as an ordinary user now. The run-uid and run-gid should be set" - einfo "to \"wwwoffle\" in your /etc/wwwoffle/wwwoffle.conf. Please uncomment this if it hasn't been already" - - einfo "This is for your own security. Otherwise wwwoffle is run as root which is relay bad if" - einfo "there is an exploit in this program that allows remote/local users to execute arbitary" - einfo "commands as the root user." - - if [ -f "${ROOT}/etc/wwwoffle.conf" ]; then - ewarn "Configuration file is /etc/wwwoffle/wwwoffle.conf now" - ewarn "Suggest you move ${ROOT}etc/wwwoffle.conf" - fi - - # if htdig - run script for full database index - # TODO -} diff --git a/net-proxy/wwwoffle/wwwoffle-2.9a.ebuild b/net-proxy/wwwoffle/wwwoffle-2.9a.ebuild deleted file mode 100644 index 183e7cdbc8dd..000000000000 --- a/net-proxy/wwwoffle/wwwoffle-2.9a.ebuild +++ /dev/null @@ -1,141 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-proxy/wwwoffle/wwwoffle-2.9a.ebuild,v 1.5 2007/03/10 13:34:21 mrness Exp $ - -inherit eutils - -DESCRIPTION="wwwoffle = WWW Offline Explorer, an adv. caching proxy especially suitable for nonpermanent (e.g. dialup) Internet connections" -SRC_URI="http://www.gedanken.freeserve.co.uk/download-wwwoffle/${P}.tgz" -HOMEPAGE="http://www.gedanken.demon.co.uk/wwwoffle" - -KEYWORDS="~amd64 ~ppc ppc64 sparc x86" -SLOT="0" -LICENSE="GPL-2" -IUSE="gnutls ipv6 zlib" - -RDEPEND="gnutls? ( net-libs/gnutls ) - zlib? ( sys-libs/zlib )" -DEPEND="dev-lang/perl - sys-devel/flex - ${RDEPEND}" - -# Unsure whether to depend on >=www-misc/htdig-3.1.6-r4 or not - -pkg_setup() { - # Add a wwwoffle user - enewgroup wwwoffle - enewuser wwwoffle -1 -1 /var/spool/wwwoffle wwwoffle -} - -src_unpack() { - unpack ${A} - - sed -i -e 's#$(TAR) xpf #$(TAR) --no-same-owner -xpf #' \ - "${S}/cache/Makefile.in" -} - -src_compile() { - econf $(use_with zlib) $(use_with gnutls) \ - $(use_with ipv6) || die "econf failed" - emake || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - - # documentation fix - # del empty doc dirs - rmdir "${D}/usr/doc/${PN}"/{it,nl,ru} - dodir /usr/share/doc - mv "${D}/usr/doc/wwwoffle" "${D}/usr/share/doc/${PF}" - - # install the wwwoffled init script - newinitd "${FILESDIR}/${PN}.initd" wwwoffled - newinitd "${FILESDIR}/${PN}-online.initd" wwwoffled-online - newconfd "${FILESDIR}/${PN}-online.confd" wwwoffled-online - - keepdir /var/spool/wwwoffle/{http,outgoing,monitor,lasttime,lastout,local} - for number in 1 2 3 4 5 6 7 8 9; do - keepdir "/var/spool/wwwoffle/prevtime${number}" "/var/spool/wwwoffle/prevout${number}" - done - - # empty dirs are removed during update - keepdir \ - /var/spool/wwwoffle/search/{mnogosearch/db,htdig/tmp,htdig/db-lasttime,htdig/db,namazu/db} - - touch \ - "${D}/var/spool/wwwoffle/search/htdig/wwwoffle-htdig.log" \ - "${D}/var/spool/wwwoffle/search/mnogosearch/wwwoffle-mnogosearch.log" \ - "${D}/var/spool/wwwoffle/search/namazu/wwwoffle-namazu.log" - - chown -R wwwoffle:wwwoffle "${D}/var/spool/wwwoffle" "${D}/etc/wwwoffle" - - # TODO htdig indexing as part of initscripts - - # robots.txt modification - /var/spool/wwwoffle/html/en - # - remove Disallow: /index - sed -i -e "s|Disallow:.*/index|#Disallow: /index|" "${D}/var/spool/wwwoffle/html/en/robots.txt" - - rmdir "${D}/usr/doc" - chmod -R o-w "${D}/var/spool/wwwoffle" #some file have w permission for world! -} - -pkg_preinst() { - # Add a wwwoffle user - required here for binary packages - enewgroup wwwoffle - enewuser wwwoffle -1 -1 /var/spool/wwwoffle wwwoffle - - # Changing the user:group to wwwoffle:woffle - fowners -R wwwoffle:wwwoffle /var/spool/wwwoffle /etc/wwwoffle - sed -i -e 's/^[# \t]\(run-[gu]id[ \t]*=[ \t]*\)[a-zA-Z0-9]*[ \t]*$/ \1wwwoffle/g' \ - "${D}/etc/wwwoffle/wwwoffle.conf" - - # Stop the service if it is started - if [ "${ROOT}" = "/" ] ; then - source /etc/init.d/functions.sh - if [ -L "${svcdir}/started/wwwoffled" ]; then - einfo "The wwwoffled init script is running. I'll stop it, merge the new files and - restart the script." - /etc/init.d/wwwoffled stop - # Just to be sure... - start-stop-daemon --stop --quiet --name wwwoffled - touch "${T}/stopped" - fi - fi -} - -pkg_postinst() { - # fix permissions for those upgrading - - for number in 1 2 3 4 5 6 7 8 9; - do - [ ! -d "${ROOT}/var/spool/wwwoffle/prevtime${number}" ] && \ - keepdir "${ROOT}/var/spool/wwwoffle/prevtime${number}" - [ ! -d "${ROOT}/var/spool/wwwoffle/prevout${number}" ] && \ - keepdir "${ROOT}/var/spool/wwwoffle/prevout${number}" - done - - chown -R wwwoffle:wwwoffle "${ROOT}/var/spool/wwwoffle" "${ROOT}/etc/wwwoffle" - - # Need to sumbit patch upstream to allow this. - #fowners root:wwwoffle /var/spool/wwwoffle - #fowners wwwoffle:wwwoffle /var/spool/wwwoffle - - [ -f "${T}/stopped" ] && \ - ewarn "wwwoffled was stopped. /etc/init.d/wwwoffled start to restart AFTER etc-update" - - einfo "wwwoffled should run as an ordinary user now. The run-uid and run-gid should be set" - einfo "to \"wwwoffle\" in your /etc/wwwoffle/wwwoffle.conf. Please uncomment this if it hasn't been already" - - einfo "This is for your own security. Otherwise wwwoffle is run as root which is relay bad if" - einfo "there is an exploit in this program that allows remote/local users to execute arbitary" - einfo "commands as the root user." - - if [ -f "${ROOT}/etc/wwwoffle.conf" ]; then - ewarn "Configuration file is /etc/wwwoffle/wwwoffle.conf now" - ewarn "Suggest you move ${ROOT}etc/wwwoffle.conf" - fi - - # if htdig - run script for full database index - # TODO -} diff --git a/net-proxy/ziproxy/Manifest b/net-proxy/ziproxy/Manifest index a6ee346666c9..286a11084203 100644 --- a/net-proxy/ziproxy/Manifest +++ b/net-proxy/ziproxy/Manifest @@ -1,11 +1,6 @@ -AUX ziproxy-2.1.confd 642 RMD160 322d077e966d6d40cf09953b79eca608276a2f07 SHA1 89f66b41e3e1c840b75c48be22d8d14a03a1ae19 SHA256 a01f10aaceb1216f44b37a5e27f58bc332347a4a6f7bef92f4e7342d72692433 -MD5 aac9672c4bda0f351890d67216523d38 files/ziproxy-2.1.confd 642 -RMD160 322d077e966d6d40cf09953b79eca608276a2f07 files/ziproxy-2.1.confd 642 -SHA256 a01f10aaceb1216f44b37a5e27f58bc332347a4a6f7bef92f4e7342d72692433 files/ziproxy-2.1.confd 642 -AUX ziproxy-2.1.initd 703 RMD160 d69ee9f77f560e5d7da70b71fefff815802a907c SHA1 4562312fe2e90620118ae5108eccabad49fa4074 SHA256 54ce5889dcdbb695796d12f9d42859e21d3cda5298e6ac1fcbc9a882ed0f83aa -MD5 475d4dd7c4effea9c8d3671798e19ead files/ziproxy-2.1.initd 703 -RMD160 d69ee9f77f560e5d7da70b71fefff815802a907c files/ziproxy-2.1.initd 703 -SHA256 54ce5889dcdbb695796d12f9d42859e21d3cda5298e6ac1fcbc9a882ed0f83aa files/ziproxy-2.1.initd 703 +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA1 + AUX ziproxy-2.2.confd 642 RMD160 6b2c310ae58824753e9f951b225c8b508f776104 SHA1 23b75d0fc65b98e6aba28e2fb0ac4c2375edb62d SHA256 854b0e8211c05f85b1da1158bfc765f8dde30b35a9a31843db94cea47a927f14 MD5 ce7e5a5668c4bdbd2da22d9b28228336 files/ziproxy-2.2.confd 642 RMD160 6b2c310ae58824753e9f951b225c8b508f776104 files/ziproxy-2.2.confd 642 @@ -14,27 +9,26 @@ AUX ziproxy-2.2.initd 723 RMD160 ca3f6c069d1f4ca38de7b9c1345327f0d3369f92 SHA1 e MD5 14794641fee7dd992c3194e8b97afbe6 files/ziproxy-2.2.initd 723 RMD160 ca3f6c069d1f4ca38de7b9c1345327f0d3369f92 files/ziproxy-2.2.initd 723 SHA256 e5fd4c20e7c50aaa76369500107e85c2dc8cb7d9693e341b74eb760fcfd5004b files/ziproxy-2.2.initd 723 -DIST ziproxy-2.1.1.tar.bz2 134973 RMD160 ce115c3d9cf9b3fbd20fef51e3485df8445ec331 SHA1 e421c77df823c7fb8c67ab116f0403507c3271ac SHA256 35b5dd9d06eae54e3e3ce5696a5646f6d1b7dfd15f50ca63598e8e599d3a5fd9 DIST ziproxy-2.2.2.tar.bz2 145733 RMD160 10442335f5cf64e8205c93a707dd3e9ab233b6b6 SHA1 7efd9d83fb3fff5e2de3f3853889cb2d75ac3b56 SHA256 6fbf4134e84311d4590f907b37b5ae2ee0af5dc5d8fc6457edf4129635dc7bb9 -EBUILD ziproxy-2.1.1.ebuild 1869 RMD160 d595c8a135f975eaf52471f5e3419fc4c2e200e3 SHA1 3bbe9deac1c77222a62e8bac814b698cbe46b2cf SHA256 8bd9b404f790edccbe978397e91bf9e2ba62c3ad2a3cdd792ce3d088be5fe900 -MD5 5b5b4f95222a5cf65a1cfb74733412fe ziproxy-2.1.1.ebuild 1869 -RMD160 d595c8a135f975eaf52471f5e3419fc4c2e200e3 ziproxy-2.1.1.ebuild 1869 -SHA256 8bd9b404f790edccbe978397e91bf9e2ba62c3ad2a3cdd792ce3d088be5fe900 ziproxy-2.1.1.ebuild 1869 EBUILD ziproxy-2.2.2.ebuild 2023 RMD160 2d795ea12d1439977ee525f4e6243b5ba4dccf07 SHA1 9367eee15b19eaef3780280b66aed9d2c4b43805 SHA256 db9b6bb61a0ef3e482210edc3d37f8a13dfcef6f5c2d13e8d4d92ff51f6ed82b MD5 9ba929cc7da7f9b113667c2417ac382b ziproxy-2.2.2.ebuild 2023 RMD160 2d795ea12d1439977ee525f4e6243b5ba4dccf07 ziproxy-2.2.2.ebuild 2023 SHA256 db9b6bb61a0ef3e482210edc3d37f8a13dfcef6f5c2d13e8d4d92ff51f6ed82b ziproxy-2.2.2.ebuild 2023 -MISC ChangeLog 1744 RMD160 afa496cf3a31cd8afde6667414c60e2f532c43a6 SHA1 8208e9c597a4a0fd17a8c164e06c0bf4190d887a SHA256 257e2d4424a63aa1b9ed29a3c22521e4dc843958e5e758f51ed6ca3e88ecc2e9 -MD5 7c84f447d43471d6229097ba305764ed ChangeLog 1744 -RMD160 afa496cf3a31cd8afde6667414c60e2f532c43a6 ChangeLog 1744 -SHA256 257e2d4424a63aa1b9ed29a3c22521e4dc843958e5e758f51ed6ca3e88ecc2e9 ChangeLog 1744 +MISC ChangeLog 1891 RMD160 6e9b4bffde7294da7c096337e7f3c08de8a25006 SHA1 86e98b5bc914af58dff4a17cc7f8ab4b3f1a6f7b SHA256 439a3b87c911981678dec60a519bdd943bfd1772d8e7161d3ab1906d5bdc3fe7 +MD5 d00d45d81f7dcbdb4a24dd19cefce77e ChangeLog 1891 +RMD160 6e9b4bffde7294da7c096337e7f3c08de8a25006 ChangeLog 1891 +SHA256 439a3b87c911981678dec60a519bdd943bfd1772d8e7161d3ab1906d5bdc3fe7 ChangeLog 1891 MISC metadata.xml 513 RMD160 b107d66a1ba20b230598d2602f851dfbb8ba455b SHA1 586129e96f59e881bc2297180771b2dd9e664ff0 SHA256 07e6b452bd4451e9bdc7269eb44d61efe0945afbcd9757ce7ae707021e0335bc MD5 13eac033f7cb4d69bd27489ab828449a metadata.xml 513 RMD160 b107d66a1ba20b230598d2602f851dfbb8ba455b metadata.xml 513 SHA256 07e6b452bd4451e9bdc7269eb44d61efe0945afbcd9757ce7ae707021e0335bc metadata.xml 513 -MD5 b4849100f93781749f5d499459c67677 files/digest-ziproxy-2.1.1 244 -RMD160 e46061674b991bc24fd0031ae37a559143802153 files/digest-ziproxy-2.1.1 244 -SHA256 11cacdb3c3ad15ad70a610ea2338d9a0e61bb61520c55a0667a75141559519c9 files/digest-ziproxy-2.1.1 244 MD5 1fe50695d1de6579854e5d1bd463cf05 files/digest-ziproxy-2.2.2 244 RMD160 ee7d1fd06f94febfc2758610f25b5f55e1806772 files/digest-ziproxy-2.2.2 244 SHA256 7e0ef2f897378bc108c8b465f6ae6e28f2f341227b60b4a9d7dd51b44b4e8c4f files/digest-ziproxy-2.2.2 244 +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v2.0.4 (GNU/Linux) + +iD8DBQFGdV+6JnxX6mF440QRAiunAKDHqYaVNG9w0pDupbNs4ruz+ro34gCffjoD +50Rrpb8CXJ9Trd6xn8Or0KU= +=bgTX +-----END PGP SIGNATURE----- |