diff options
author | Nirbheek Chauhan <nirbheek@gentoo.org> | 2011-08-19 11:47:29 +0000 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@gentoo.org> | 2011-08-19 11:47:29 +0000 |
commit | 66b22dfb223aee0bdb3015b61b423bc433064fa3 (patch) | |
tree | 30a527c0e791c1ecc90e5ac83f9ca3d78a77d796 /gnome-extra | |
parent | Fix HOMEPAGE wrt #379353 by Jesús Guerrero <i92guboj@gentoo.org> (diff) | |
download | historical-66b22dfb223aee0bdb3015b61b423bc433064fa3.tar.gz historical-66b22dfb223aee0bdb3015b61b423bc433064fa3.tar.bz2 historical-66b22dfb223aee0bdb3015b61b423bc433064fa3.zip |
Bump to 3.0.1, from gnome overlay for GNOME 3
Package-Manager: portage-2.2.0_alpha51/cvs/Linux x86_64
Diffstat (limited to 'gnome-extra')
7 files changed, 424 insertions, 2 deletions
diff --git a/gnome-extra/gnome-system-monitor/ChangeLog b/gnome-extra/gnome-system-monitor/ChangeLog index 811c59b890a9..142b811f5e2b 100644 --- a/gnome-extra/gnome-system-monitor/ChangeLog +++ b/gnome-extra/gnome-system-monitor/ChangeLog @@ -1,6 +1,16 @@ # ChangeLog for gnome-extra/gnome-system-monitor # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-system-monitor/ChangeLog,v 1.222 2011/08/13 17:37:36 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-system-monitor/ChangeLog,v 1.223 2011/08/19 11:47:29 nirbheek Exp $ + +*gnome-system-monitor-3.0.1-r1 (19 Aug 2011) + + 19 Aug 2011; Nirbheek Chauhan <nirbheek@gentoo.org> + +gnome-system-monitor-3.0.1-r1.ebuild, + +files/gnome-system-monitor-3.0.1-32-bit-network-totals-overflow-1.patch, + +files/gnome-system-monitor-3.0.1-32-bit-network-totals-overflow-2.patch, + +files/gnome-system-monitor-3.0.1-32-bit-network-totals-overflow-3.patch, + +files/gnome-system-monitor-3.0.1-linux-nice.patch: + Bump to 3.0.1, from gnome overlay for GNOME 3 13 Aug 2011; Raúl Porcel <armin76@gentoo.org> gnome-system-monitor-2.28.2-r1.ebuild: diff --git a/gnome-extra/gnome-system-monitor/files/gnome-system-monitor-3.0.1-32-bit-network-totals-overflow-1.patch b/gnome-extra/gnome-system-monitor/files/gnome-system-monitor-3.0.1-32-bit-network-totals-overflow-1.patch new file mode 100644 index 000000000000..156845f1295e --- /dev/null +++ b/gnome-extra/gnome-system-monitor/files/gnome-system-monitor-3.0.1-32-bit-network-totals-overflow-1.patch @@ -0,0 +1,68 @@ +From 3ea7303181e80e188e72a4fcd98b9970fe554b3b Mon Sep 17 00:00:00 2001 +From: Chris Kühl <chrisk@openismus.com> +Date: Sat, 16 Apr 2011 23:07:20 +0000 +Subject: Added SI prefix tera to network counter + +https://bugzilla.gnome.org/show_bug.cgi?id=639212 +--- +diff --git a/src/util.cpp b/src/util.cpp +index 90073fe..234e6fc 100644 +--- a/src/util.cpp ++++ b/src/util.cpp +@@ -149,10 +149,12 @@ procman_make_label_for_mmaps_or_ofiles(const char *format, + gchar* + procman::format_size(guint64 size, guint64 max_size, bool want_bits) + { ++ + enum { + K_INDEX, + M_INDEX, +- G_INDEX ++ G_INDEX, ++ T_INDEX + }; + + struct Format { +@@ -160,16 +162,18 @@ procman::format_size(guint64 size, guint64 max_size, bool want_bits) + const char* string; + }; + +- const Format all_formats[2][3] = { +- { { 1UL << 10, N_("%.1f KiB") }, +- { 1UL << 20, N_("%.1f MiB") }, +- { 1UL << 30, N_("%.1f GiB") } }, +- { { 1000, N_("%.1f kbit") }, +- { 1000000, N_("%.1f Mbit") }, +- { 1000000000, N_("%.1f Gbit") } } ++ const Format all_formats[2][4] = { ++ { { 1UL << 10, N_("%.1f KiB") }, ++ { 1UL << 20, N_("%.1f MiB") }, ++ { 1UL << 30, N_("%.1f GiB") }, ++ { 1UL << 40, N_("%.1f TiB") } }, ++ { { 1000, N_("%.1f kbit") }, ++ { 1000000, N_("%.1f Mbit") }, ++ { 1000000000, N_("%.1f Gbit") }, ++ { 1000000000000, N_("%.1f Tbit") } } + }; + +- const Format (&formats)[3] = all_formats[want_bits ? 1 : 0]; ++ const Format (&formats)[4] = all_formats[want_bits ? 1 : 0]; + + if (want_bits) { + size *= 8; +@@ -194,9 +198,12 @@ procman::format_size(guint64 size, guint64 max_size, bool want_bits) + } else if (max_size < formats[G_INDEX].factor) { + factor = formats[M_INDEX].factor; + format = formats[M_INDEX].string; +- } else { ++ } else if (max_size < formats[T_INDEX].factor) { + factor = formats[G_INDEX].factor; + format = formats[G_INDEX].string; ++ } else { ++ factor = formats[T_INDEX].factor; ++ format = formats[T_INDEX].string; + } + + return g_strdup_printf(_(format), size / (double)factor); +-- +cgit v0.9 diff --git a/gnome-extra/gnome-system-monitor/files/gnome-system-monitor-3.0.1-32-bit-network-totals-overflow-2.patch b/gnome-extra/gnome-system-monitor/files/gnome-system-monitor-3.0.1-32-bit-network-totals-overflow-2.patch new file mode 100644 index 000000000000..4fdc57ac076d --- /dev/null +++ b/gnome-extra/gnome-system-monitor/files/gnome-system-monitor-3.0.1-32-bit-network-totals-overflow-2.patch @@ -0,0 +1,150 @@ +From c7275791a89623ad1edc820a6ef16faae37a18aa Mon Sep 17 00:00:00 2001 +From: Chris Kühl <chrisk@openismus.com> +Date: Sun, 17 Apr 2011 22:31:00 +0000 +Subject: Fix network totals overflow on 32-bit machines. + +https://bugzilla.gnome.org/show_bug.cgi?id=639212 +--- +diff --git a/src/load-graph.cpp b/src/load-graph.cpp +index 57bca17..a6d2a7e 100644 +--- a/src/load-graph.cpp ++++ b/src/load-graph.cpp +@@ -368,16 +368,16 @@ get_memory (LoadGraph *g) + } + + static void +-net_scale (LoadGraph *g, unsigned din, unsigned dout) ++net_scale (LoadGraph *g, guint64 din, guint64 dout) + { + g->data[0][0] = 1.0f * din / g->net.max; + g->data[0][1] = 1.0f * dout / g->net.max; + +- unsigned dmax = std::max(din, dout); ++ guint64 dmax = std::max(din, dout); + g->net.values[g->net.cur] = dmax; + g->net.cur = (g->net.cur + 1) % LoadGraph::NUM_POINTS; + +- unsigned new_max; ++ guint64 new_max; + // both way, new_max is the greatest value + if (dmax >= g->net.max) + new_max = dmax; +@@ -389,7 +389,7 @@ net_scale (LoadGraph *g, unsigned din, unsigned dout) + // Round network maximum + // + +- const unsigned bak_max(new_max); ++ const guint64 bak_max(new_max); + + if (ProcData::get_instance()->config.network_in_bits) { + // TODO: fix logic to give a nice scale with bits +@@ -399,7 +399,7 @@ net_scale (LoadGraph *g, unsigned din, unsigned dout) + new_max = 1.1 * new_max; + // make sure max is not 0 to avoid / 0 + // default to 125 bytes == 1kbit +- new_max = std::max(new_max, 125U); ++ new_max = std::max(new_max, 125UL); + + } else { + // round up to get some extra space +@@ -407,7 +407,7 @@ net_scale (LoadGraph *g, unsigned din, unsigned dout) + new_max = 1.1 * new_max; + // make sure max is not 0 to avoid / 0 + // default to 1 KiB +- new_max = std::max(new_max, 1024U); ++ new_max = std::max(new_max, 1024UL); + + // decompose new_max = coef10 * 2**(base10 * 10) + // where coef10 and base10 are integers and coef10 < 2**10 +@@ -415,16 +415,16 @@ net_scale (LoadGraph *g, unsigned din, unsigned dout) + // e.g: ceil(100.5 KiB) = 101 KiB = 101 * 2**(1 * 10) + // where base10 = 1, coef10 = 101, pow2 = 16 + +- unsigned pow2 = std::floor(log2(new_max)); +- unsigned base10 = pow2 / 10; +- unsigned coef10 = std::ceil(new_max / double(1UL << (base10 * 10))); ++ guint64 pow2 = std::floor(log2(new_max)); ++ guint64 base10 = pow2 / 10.0; ++ guint64 coef10 = std::ceil(new_max / double(1UL <<(base10 * 10))); + g_assert(new_max <= (coef10 * (1UL << (base10 * 10)))); + + // then decompose coef10 = x * 10**factor10 + // where factor10 is integer and x < 10 + // so we new_max has only 1 significant digit + +- unsigned factor10 = std::pow(10.0, std::floor(std::log10(coef10))); ++ guint64 factor10 = std::pow(10.0, std::floor(std::log10(coef10))); + coef10 = std::ceil(coef10 / double(factor10)) * factor10; + + // then make coef10 divisible by num_bars +@@ -432,12 +432,12 @@ net_scale (LoadGraph *g, unsigned din, unsigned dout) + coef10 = coef10 + (g->num_bars() - coef10 % g->num_bars()); + g_assert(coef10 % g->num_bars() == 0); + +- new_max = coef10 * (1UL << (base10 * 10)); +- procman_debug("bak %u new_max %u pow2 %u coef10 %u", bak_max, new_max, pow2, coef10); ++ new_max = coef10 * (1UL << guint64(base10 * 10)); ++ procman_debug("bak %lu new_max %lu pow2 %lu coef10 %lu", bak_max, new_max, pow2, coef10); + } + + if (bak_max > new_max) { +- procman_debug("overflow detected: bak=%u new=%u", bak_max, new_max); ++ procman_debug("overflow detected: bak=%lu new=%lu", bak_max, new_max); + new_max = bak_max; + } + +@@ -446,7 +446,7 @@ net_scale (LoadGraph *g, unsigned din, unsigned dout) + if ((0.8 * g->net.max) < new_max && new_max <= g->net.max) + return; + +- const float scale = 1.0f * g->net.max / new_max; ++ const double scale = 1.0f * g->net.max / new_max; + + for (size_t i = 0; i < LoadGraph::NUM_POINTS; i++) { + if (g->data[i][0] >= 0.0f) { +@@ -455,7 +455,7 @@ net_scale (LoadGraph *g, unsigned din, unsigned dout) + } + } + +- procman_debug("rescale dmax = %u max = %u new_max = %u", dmax, g->net.max, new_max); ++ procman_debug("rescale dmax = %lu max = %lu new_max = %lu", dmax, g->net.max, new_max); + + g->net.max = new_max; + +@@ -471,7 +471,7 @@ get_net (LoadGraph *g) + guint32 i; + guint64 in = 0, out = 0; + GTimeVal time; +- unsigned din, dout; ++ guint64 din, dout; + + ifnames = glibtop_get_netlist(&netlist); + +@@ -510,9 +510,9 @@ get_net (LoadGraph *g) + g->net.time.tv_sec != 0) { + float dtime; + dtime = time.tv_sec - g->net.time.tv_sec + +- (float) (time.tv_usec - g->net.time.tv_usec) / G_USEC_PER_SEC; +- din = static_cast<unsigned>((in - g->net.last_in) / dtime); +- dout = static_cast<unsigned>((out - g->net.last_out) / dtime); ++ (double) (time.tv_usec - g->net.time.tv_usec) / G_USEC_PER_SEC; ++ din = static_cast<guint64>((in - g->net.last_in) / dtime); ++ dout = static_cast<guint64>((out - g->net.last_out) / dtime); + } else { + /* Don't calc anything if new data is less than old (interface + removed, counters reset, ...) or if it is the first time */ +diff --git a/src/load-graph.h b/src/load-graph.h +index d90cf38..9b43c86 100644 +--- a/src/load-graph.h ++++ b/src/load-graph.h +@@ -87,7 +87,7 @@ struct LoadGraph { + struct { + guint64 last_in, last_out; + GTimeVal time; +- unsigned int max; ++ guint64 max; + unsigned values[NUM_POINTS]; + size_t cur; + } net; +-- +cgit v0.9 diff --git a/gnome-extra/gnome-system-monitor/files/gnome-system-monitor-3.0.1-32-bit-network-totals-overflow-3.patch b/gnome-extra/gnome-system-monitor/files/gnome-system-monitor-3.0.1-32-bit-network-totals-overflow-3.patch new file mode 100644 index 000000000000..d3ac4d962cd9 --- /dev/null +++ b/gnome-extra/gnome-system-monitor/files/gnome-system-monitor-3.0.1-32-bit-network-totals-overflow-3.patch @@ -0,0 +1,102 @@ +From 843cc40119d36873f9670975c7815fbd38481093 Mon Sep 17 00:00:00 2001 +From: Chris Kühl <chrisk@openismus.com> +Date: Thu, 12 May 2011 21:43:31 +0000 +Subject: Fix for issues on 32-bit machines. + +https://bugzilla.gnome.org/show_bug.cgi?id=649842 +--- +diff --git a/src/load-graph.cpp b/src/load-graph.cpp +index a6d2a7e..9291179 100644 +--- a/src/load-graph.cpp ++++ b/src/load-graph.cpp +@@ -399,7 +399,7 @@ net_scale (LoadGraph *g, guint64 din, guint64 dout) + new_max = 1.1 * new_max; + // make sure max is not 0 to avoid / 0 + // default to 125 bytes == 1kbit +- new_max = std::max(new_max, 125UL); ++ new_max = std::max(new_max, G_GUINT64_CONSTANT(125)); + + } else { + // round up to get some extra space +@@ -407,7 +407,7 @@ net_scale (LoadGraph *g, guint64 din, guint64 dout) + new_max = 1.1 * new_max; + // make sure max is not 0 to avoid / 0 + // default to 1 KiB +- new_max = std::max(new_max, 1024UL); ++ new_max = std::max(new_max, G_GUINT64_CONSTANT(1024)); + + // decompose new_max = coef10 * 2**(base10 * 10) + // where coef10 and base10 are integers and coef10 < 2**10 +@@ -417,8 +417,8 @@ net_scale (LoadGraph *g, guint64 din, guint64 dout) + + guint64 pow2 = std::floor(log2(new_max)); + guint64 base10 = pow2 / 10.0; +- guint64 coef10 = std::ceil(new_max / double(1UL <<(base10 * 10))); +- g_assert(new_max <= (coef10 * (1UL << (base10 * 10)))); ++ guint64 coef10 = std::ceil(new_max / double(G_GUINT64_CONSTANT(1) << (base10 * 10))); ++ g_assert(new_max <= (coef10 * (G_GUINT64_CONSTANT(1) << (base10 * 10)))); + + // then decompose coef10 = x * 10**factor10 + // where factor10 is integer and x < 10 +@@ -431,13 +431,16 @@ net_scale (LoadGraph *g, guint64 din, guint64 dout) + if (coef10 % g->num_bars() != 0) + coef10 = coef10 + (g->num_bars() - coef10 % g->num_bars()); + g_assert(coef10 % g->num_bars() == 0); +- +- new_max = coef10 * (1UL << guint64(base10 * 10)); +- procman_debug("bak %lu new_max %lu pow2 %lu coef10 %lu", bak_max, new_max, pow2, coef10); ++ new_max = coef10 * (G_GUINT64_CONSTANT(1) << guint64(base10 * 10)); ++ procman_debug("bak %" G_GUINT64_FORMAT " new_max %" G_GUINT64_FORMAT ++ "pow2 %" G_GUINT64_FORMAT " coef10 %" G_GUINT64_FORMAT, ++ bak_max, new_max, pow2, coef10); + } + + if (bak_max > new_max) { +- procman_debug("overflow detected: bak=%lu new=%lu", bak_max, new_max); ++ procman_debug("overflow detected: bak=%" G_GUINT64_FORMAT ++ " new=%" G_GUINT64_FORMAT, ++ bak_max, new_max); + new_max = bak_max; + } + +@@ -455,7 +458,10 @@ net_scale (LoadGraph *g, guint64 din, guint64 dout) + } + } + +- procman_debug("rescale dmax = %lu max = %lu new_max = %lu", dmax, g->net.max, new_max); ++ procman_debug("rescale dmax = %" G_GUINT64_FORMAT ++ " max = %" G_GUINT64_FORMAT ++ " new_max = %" G_GUINT64_FORMAT, ++ dmax, g->net.max, new_max); + + g->net.max = new_max; + +diff --git a/src/util.cpp b/src/util.cpp +index 234e6fc..7183ff4 100644 +--- a/src/util.cpp ++++ b/src/util.cpp +@@ -163,14 +163,14 @@ procman::format_size(guint64 size, guint64 max_size, bool want_bits) + }; + + const Format all_formats[2][4] = { +- { { 1UL << 10, N_("%.1f KiB") }, +- { 1UL << 20, N_("%.1f MiB") }, +- { 1UL << 30, N_("%.1f GiB") }, +- { 1UL << 40, N_("%.1f TiB") } }, +- { { 1000, N_("%.1f kbit") }, +- { 1000000, N_("%.1f Mbit") }, +- { 1000000000, N_("%.1f Gbit") }, +- { 1000000000000, N_("%.1f Tbit") } } ++ { { G_GUINT64_CONSTANT(1) << 10, N_("%.1f KiB") }, ++ { G_GUINT64_CONSTANT(1) << 20, N_("%.1f MiB") }, ++ { G_GUINT64_CONSTANT(1) << 30, N_("%.1f GiB") }, ++ { G_GUINT64_CONSTANT(1) << 40, N_("%.1f TiB") } }, ++ { { G_GUINT64_CONSTANT(1000), N_("%.1f kbit") }, ++ { G_GUINT64_CONSTANT(1000000), N_("%.1f Mbit") }, ++ { G_GUINT64_CONSTANT(1000000000), N_("%.1f Gbit") }, ++ { G_GUINT64_CONSTANT(1000000000000), N_("%.1f Tbit") } } + }; + + const Format (&formats)[4] = all_formats[want_bits ? 1 : 0]; +-- +cgit v0.9 diff --git a/gnome-extra/gnome-system-monitor/files/gnome-system-monitor-3.0.1-linux-nice.patch b/gnome-extra/gnome-system-monitor/files/gnome-system-monitor-3.0.1-linux-nice.patch new file mode 100644 index 000000000000..55d4e4110db3 --- /dev/null +++ b/gnome-extra/gnome-system-monitor/files/gnome-system-monitor-3.0.1-linux-nice.patch @@ -0,0 +1,21 @@ +From 7c493352b24fb6d0d8b003f25043b070244eeb2e Mon Sep 17 00:00:00 2001 +From: Chris Kühl <chrisk@openismus.com> +Date: Fri, 15 Apr 2011 09:18:10 +0000 +Subject: Make maximum nice value 19 instead of 20 on Linux. + +--- +diff --git a/src/procdialogs.h b/src/procdialogs.h +index eba3212..61decf8 100644 +--- a/src/procdialogs.h ++++ b/src/procdialogs.h +@@ -26,7 +26,7 @@ + /* These are the actual range of settable values. Values outside this range + are scaled back to these limits. So show these limits in the slider + */ +-#ifdef linux ++#ifdef __linux__ + #define RENICE_VAL_MIN -20 + #define RENICE_VAL_MAX 19 + #else /* ! linux */ +-- +cgit v0.9 diff --git a/gnome-extra/gnome-system-monitor/gnome-system-monitor-3.0.1-r1.ebuild b/gnome-extra/gnome-system-monitor/gnome-system-monitor-3.0.1-r1.ebuild new file mode 100644 index 000000000000..9a771b699d1e --- /dev/null +++ b/gnome-extra/gnome-system-monitor/gnome-system-monitor-3.0.1-r1.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-system-monitor/gnome-system-monitor-3.0.1-r1.ebuild,v 1.1 2011/08/19 11:47:29 nirbheek Exp $ + +EAPI="3" +GCONF_DEBUG="no" + +inherit eutils gnome2 + +DESCRIPTION="The Gnome System Monitor" +HOMEPAGE="http://www.gnome.org/" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +IUSE="" + +RDEPEND=">=dev-libs/glib-2.28:2 + >=x11-libs/libwnck-2.91.0:3 + >=gnome-base/libgtop-2.28.2:2 + >=x11-libs/gtk+-3.0:3 + >=x11-themes/gnome-icon-theme-2.31 + >=dev-cpp/gtkmm-2.99:3.0 + >=dev-cpp/glibmm-2.27:2 + >=dev-libs/libxml2-2.0:2 + >=gnome-base/librsvg-2.12:2" + +DEPEND="${RDEPEND} + >=dev-util/pkgconfig-0.19 + >=dev-util/intltool-0.41.0 + >=sys-devel/gettext-0.17 + >=app-text/gnome-doc-utils-0.20" + +pkg_setup() { + DOCS="AUTHORS ChangeLog NEWS README" + G2CONF="${G2CONF} + --disable-schemas-compile + --disable-scrollkeeper" +} + +src_prepare() { + # Add some useful patches from upstream git master + # Use the correct maximum nice value on Linux + epatch "${FILESDIR}/${PN}-3.0.1-linux-nice.patch" + # Don't overflow the network history totals counters on 32-bit machines + epatch "${FILESDIR}/${PN}"-3.0.1-32-bit-network-totals-overflow-{1,2,3}.patch + + gnome2_src_prepare +} diff --git a/gnome-extra/gtkhtml/Manifest b/gnome-extra/gtkhtml/Manifest index bc99cb441dbc..c9252c585f68 100644 --- a/gnome-extra/gtkhtml/Manifest +++ b/gnome-extra/gtkhtml/Manifest @@ -1,7 +1,29 @@ +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA1 + AUX libgtkhtml-2.2.0-alpha.patch 652 RMD160 db8f1127f1539bc3b44f65d918ae7657a3175000 SHA1 5df0cd9a732ce5ca4f6b3c46ce1b5954b9aa01b3 SHA256 37fc95e6c2443e37b59dee81509f64d1ebca884c3797020f805e5da88a3a72f1 DIST gtkhtml-3.32.2.tar.bz2 1217025 RMD160 b71afbd07c658c2ec6ac285cc428ac1943d39e46 SHA1 db8a943ddeec0b86766e671e8f8c427706dbcdd4 SHA256 8746053cf709e1de37c7ac775ab1364ddda4b75167660ed7f98a237b3797e39f +DIST gtkhtml-4.0.1.tar.bz2 1189620 RMD160 666dd51a1c7a544c9ec9f90d6c4eaa894560fafe SHA1 24680181128791a7f8db56dceaf0c5c15de8b3f9 SHA256 13fd845ce2ebc837fd4771d2dd0c103bde20faad9f77f6c7a62ff7d8099557ff DIST libgtkhtml-2.11.1.tar.bz2 597923 RMD160 4f3a65b616c0fbfaaa487d11c8749718708deb2a SHA1 1325c1540091b89cc03d99a1e594285d2e846e50 SHA256 3ca77a0d0f15e94fb654097c2f78cf928194d4c4bf64ff7b2ba408d29c924a57 EBUILD gtkhtml-2.11.1.ebuild 1219 RMD160 b57300c564564287ec317221d66c04ca7e182af9 SHA1 c2f73768620c82259c3ee0f5015123cd4ef3ef59 SHA256 09cd19b5179692dc5e1d85124481a2851f389dda85808073912996820eaccf5e EBUILD gtkhtml-3.32.2.ebuild 1390 RMD160 995995cb09f0c828865ddd53508344a98581d7db SHA1 0b67fa0a0fbc1f654aaf33d6b6fe2f29b0d321b8 SHA256 1074862959db26ce03464c9969b0f23c18a7e3ba8a2ea1a2c4acf22528d8a9c6 -MISC ChangeLog 33634 RMD160 c8a63e9c9155c87621b8441a8f08c15b8f703c6a SHA1 8ff0feece9d25eec91ef4e83d5461b4383adc925 SHA256 202ac73652cdeeb8e04c6744e51bfcb7e1c24bc5616ece793576356edcb531f5 +EBUILD gtkhtml-4.0.1.ebuild 1314 RMD160 d61a3963e97031bbb9ec90131ae14f77d6b5293d SHA1 b84e5d37828f6445b779a89484cfd7f05ab93e3e SHA256 07db827bee48249f3155498668cf7d0cddfbddecc5c1d7c9bee70e2d6bbf1fda +MISC ChangeLog 33790 RMD160 fc8d133987872adf55a49e3c1c32c2e916a8361b SHA1 46ab031f5c2a83a1d0eef0658b8c619eb94eb958 SHA256 8e0f8eea3141cfd1ae958caa2af783a277c429f6baff8bcad6a279209c5b3f22 MISC metadata.xml 158 RMD160 c0e2bae8e91bb6be8922bac5e4f597302e06587e SHA1 38f78e9790bcd4382b4a49aa226aa6dda1d3a3d7 SHA256 3a7dbca0fdc557de69783e0663e2d76ddab129ea8a19b2d0ef6d3e5d1b947ce1 +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v2.0.17 (GNU/Linux) + +iQIcBAEBAgAGBQJOTk2mAAoJEO/kOhxWD91k+egP/iL+iDOPL/XME3ZYSjO+lf3h +iHQIlzEePCfiWZpsIpF+CvlQyGGHoUnb7udGQy1wlDHlwfOnRRd0+gniSPl6FE5i +3kOC6dahxeksUipT0WVOnEWpkTZEazvwcDY1Iz7WOIyHaJU45pHzu/4MHzLypiid +mPc4UiVgHk2Qv00CW+7mcDTT+o0KxuTI+ucbqdGM5Sary2HL4Bunw85QSfUYNtKW +JCGrMGOYbkUS2jZPC9prn2sdBge23hBuzWlDWxJNg1yZwmFRP0sntVIDOpqQTgQg +fA2wVW8xgRKCwJ88or4NdBfINY34VkLB0nuAjah1G92swMemLx4xBWWxhOn2tGxZ +VM452An/TsHv1pXVJGtnkm4KrqwPOIfnakCqCebjG+eYnki1vAJc8gLQIm/UzsSv +vTmSSjfRfAc57ERqvcJEWHAllBJpPOEiQFV/LF+qXGNOoL8ACCztc/WIdGCC9MeB +E1BuWJTXFmEKQ6PeDOHgwacIHJ9sX6SJDOhzEtH7os6Fzyx+zM8WXoCwwk7ZO5Mc +ce6xiYA+BW8SKZwop0TuFrDL8cX5nDNQhwmwsndsJUAlxQE3Xqr39ZPWFtDBRLS5 +xrg0nlLQLOP3Ued+6RVGP59ATdK1MPQzjb6B/Js0DzdHTplfyWLG6UFq/DFuDzb/ +k0imUYg6aKGEPvQhp9y6 +=228e +-----END PGP SIGNATURE----- |