public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-im/amsn: ChangeLog amsn-0.98.4-r1.ebuild
@ 2011-04-28 15:42 Kevin McCarthy (signals)
  0 siblings, 0 replies; 10+ messages in thread
From: Kevin McCarthy (signals) @ 2011-04-28 15:42 UTC (permalink / raw
  To: gentoo-commits

signals     11/04/28 15:42:27

  Modified:             ChangeLog
  Added:                amsn-0.98.4-r1.ebuild
  Log:
  Add v4l2 compatibilty #363201. Build amsnplus/snapshot from source instead of installing the shipped 32-bit binary and add imlib dep required to build it.
  
  (Portage version: 2.2.0_alpha30/cvs/Linux x86_64)

Revision  Changes    Path
1.104                net-im/amsn/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/ChangeLog?rev=1.104&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/ChangeLog?rev=1.104&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/ChangeLog?r1=1.103&r2=1.104

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-im/amsn/ChangeLog,v
retrieving revision 1.103
retrieving revision 1.104
diff -u -r1.103 -r1.104
--- ChangeLog	4 Apr 2011 14:46:21 -0000	1.103
+++ ChangeLog	28 Apr 2011 15:42:27 -0000	1.104
@@ -1,6 +1,13 @@
 # ChangeLog for net-im/amsn
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/amsn/ChangeLog,v 1.103 2011/04/04 14:46:21 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/amsn/ChangeLog,v 1.104 2011/04/28 15:42:27 signals Exp $
+
+*amsn-0.98.4-r1 (28 Apr 2011)
+
+  28 Apr 2011; Kevin McCarthy <signals@gentoo.org> +amsn-0.98.4-r1.ebuild,
+  +files/amsn-0.98.4-amsnplus-ldflags.patch, +files/amsn-0.98.4-v4l2.patch:
+  Add v4l2 compatibilty #363201. Build amsnplus/snapshot from source instead of
+  installing the shipped 32-bit binary and add imlib dep required to build it.
 
   04 Apr 2011; Tomáš Chvátal <scarabeus@gentoo.org> -amsn-0.97.2.ebuild,
   -amsn-0.97.2-r1.ebuild, -amsn-0.98.1.ebuild, -amsn-0.98.1-r1.ebuild,



1.1                  net-im/amsn/amsn-0.98.4-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/amsn-0.98.4-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/amsn-0.98.4-r1.ebuild?rev=1.1&content-type=text/plain

Index: amsn-0.98.4-r1.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-im/amsn/amsn-0.98.4-r1.ebuild,v 1.1 2011/04/28 15:42:27 signals Exp $

EAPI=2

inherit autotools eutils fdo-mime gnome2-utils

MY_P=${P/_rc/RC}
S="${WORKDIR}/${MY_P}"

DESCRIPTION="aMSN Messenger client"
SRC_URI="mirror://sourceforge/${PN}/${PN}/${PV}/${MY_P}-src.tar.bz2"
HOMEPAGE="http://www.amsn-project.net"

# The tests are interactive
RESTRICT="test"

SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~alpha ~amd64 ~hppa ~ppc -sparc ~x86"
IUSE="debug"

DEPEND=">=dev-lang/tcl-8.4
	>=dev-lang/tk-8.4
	virtual/jpeg
	media-libs/libpng
	>=dev-tcltk/snack-2.2.10
	>=net-libs/gupnp-igd-0.1.3
	media-libs/libv4l
	media-libs/imlib"
#	>=net-libs/farsight2-0.0.14
#	>=media-libs/gstreamer-0.10.23
#	>=media-libs/gst-plugins-base-0.10.23

RDEPEND="${DEPEND}
	>=dev-tcltk/tls-1.5
	virtual/ffmpeg[encode]"
#	>=media-libs/gst-plugins-good-0.10.15
#	>=media-libs/gst-plugins-bad-0.10.13
#	>=media-plugins/gst-plugins-ffmpeg-0.10.7

src_prepare() {
	epatch "${FILESDIR}/${PN}-0.98-noautoupdate.patch" \
		"${FILESDIR}"/${PN}-0.98.4-v4l2.patch \
		"${FILESDIR}"/${PN}-0.98.4-amsnplus-ldflags.patch
	# only portage should strip files, bug 285682
	sed -i -e "s/LDFLAGS += -s/LDFLAGS += /" Makefile.in || die "sed failed"
	# Ships with a 32-bit binary, we want to rebuild it
	rm -f plugins/amsnplus/snapshot
	eautoreconf
}

src_configure() {
	econf $(use_enable debug) || die "configure script failed"
}

src_install() {
	make -C plugins/amsnplus || die
	make DESTDIR="${D}" install || die
	dodoc AGREEMENT TODO README FAQ CREDITS

	domenu amsn.desktop
	sed -i -e s:.png:: "${D}/usr/share/applications/amsn.desktop"

	cd desktop-icons
	for i in *; do
		if [ -e ${i}/msn.png ]; then
			insinto /usr/share/icons/hicolor/${i}/apps
			doins  ${i}/msn.png
		fi
	done
}

pkg_postinst() {
	fdo-mime_desktop_database_update
	gnome2_icon_cache_update

	ewarn "You might have to remove ~/.amsn prior to running as user if amsn hangs on start-up."
}

pkg_postrm() {
	fdo-mime_desktop_database_update
	gnome2_icon_cache_update
}






^ permalink raw reply	[flat|nested] 10+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-im/amsn: ChangeLog amsn-0.98.4-r1.ebuild
@ 2011-09-17 19:03 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 10+ messages in thread
From: Samuli Suominen (ssuominen) @ 2011-09-17 19:03 UTC (permalink / raw
  To: gentoo-commits

ssuominen    11/09/17 19:03:45

  Modified:             ChangeLog amsn-0.98.4-r1.ebuild
  Log:
  Fix building with libpng15 wrt #383209 by Diego Elio Pettenò
  
  (Portage version: 2.2.0_alpha55/cvs/Linux x86_64)

Revision  Changes    Path
1.105                net-im/amsn/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/ChangeLog?rev=1.105&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/ChangeLog?rev=1.105&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/ChangeLog?r1=1.104&r2=1.105

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-im/amsn/ChangeLog,v
retrieving revision 1.104
retrieving revision 1.105
diff -u -r1.104 -r1.105
--- ChangeLog	28 Apr 2011 15:42:27 -0000	1.104
+++ ChangeLog	17 Sep 2011 19:03:45 -0000	1.105
@@ -1,6 +1,10 @@
 # ChangeLog for net-im/amsn
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/amsn/ChangeLog,v 1.104 2011/04/28 15:42:27 signals Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/amsn/ChangeLog,v 1.105 2011/09/17 19:03:45 ssuominen Exp $
+
+  17 Sep 2011; Samuli Suominen <ssuominen@gentoo.org> amsn-0.98.4-r1.ebuild,
+  +files/amsn-0.98.4-libpng15.patch:
+  Fix building with libpng15 wrt #383209 by Diego Elio Pettenò
 
 *amsn-0.98.4-r1 (28 Apr 2011)
 



1.2                  net-im/amsn/amsn-0.98.4-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/amsn-0.98.4-r1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/amsn-0.98.4-r1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/amsn-0.98.4-r1.ebuild?r1=1.1&r2=1.2

Index: amsn-0.98.4-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-im/amsn/amsn-0.98.4-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- amsn-0.98.4-r1.ebuild	28 Apr 2011 15:42:27 -0000	1.1
+++ amsn-0.98.4-r1.ebuild	17 Sep 2011 19:03:45 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/amsn/amsn-0.98.4-r1.ebuild,v 1.1 2011/04/28 15:42:27 signals Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/amsn/amsn-0.98.4-r1.ebuild,v 1.2 2011/09/17 19:03:45 ssuominen Exp $
 
 EAPI=2
 
@@ -41,9 +41,11 @@
 #	>=media-plugins/gst-plugins-ffmpeg-0.10.7
 
 src_prepare() {
-	epatch "${FILESDIR}/${PN}-0.98-noautoupdate.patch" \
+	epatch \
+		"${FILESDIR}"/${PN}-0.98-noautoupdate.patch \
 		"${FILESDIR}"/${PN}-0.98.4-v4l2.patch \
-		"${FILESDIR}"/${PN}-0.98.4-amsnplus-ldflags.patch
+		"${FILESDIR}"/${PN}-0.98.4-amsnplus-ldflags.patch \
+		"${FILESDIR}"/${PN}-0.98.4-libpng15.patch
 	# only portage should strip files, bug 285682
 	sed -i -e "s/LDFLAGS += -s/LDFLAGS += /" Makefile.in || die "sed failed"
 	# Ships with a 32-bit binary, we want to rebuild it






^ permalink raw reply	[flat|nested] 10+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-im/amsn: ChangeLog amsn-0.98.4-r1.ebuild
@ 2011-10-03  9:31 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 10+ messages in thread
From: Samuli Suominen (ssuominen) @ 2011-10-03  9:31 UTC (permalink / raw
  To: gentoo-commits

ssuominen    11/10/03 09:31:37

  Modified:             ChangeLog amsn-0.98.4-r1.ebuild
  Log:
  The libpng15 patch imported from NetBSD is not compatible with libpng14 wrt #376407 by Pacho Ramos
  
  (Portage version: 2.2.0_alpha60/cvs/Linux x86_64)

Revision  Changes    Path
1.106                net-im/amsn/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/ChangeLog?rev=1.106&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/ChangeLog?rev=1.106&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/ChangeLog?r1=1.105&r2=1.106

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-im/amsn/ChangeLog,v
retrieving revision 1.105
retrieving revision 1.106
diff -u -r1.105 -r1.106
--- ChangeLog	17 Sep 2011 19:03:45 -0000	1.105
+++ ChangeLog	3 Oct 2011 09:31:36 -0000	1.106
@@ -1,6 +1,10 @@
 # ChangeLog for net-im/amsn
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/amsn/ChangeLog,v 1.105 2011/09/17 19:03:45 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/amsn/ChangeLog,v 1.106 2011/10/03 09:31:36 ssuominen Exp $
+
+  03 Oct 2011; Samuli Suominen <ssuominen@gentoo.org> amsn-0.98.4-r1.ebuild:
+  The libpng15 patch imported from NetBSD is not compatible with libpng14 wrt
+  #376407 by Pacho Ramos
 
   17 Sep 2011; Samuli Suominen <ssuominen@gentoo.org> amsn-0.98.4-r1.ebuild,
   +files/amsn-0.98.4-libpng15.patch:



1.3                  net-im/amsn/amsn-0.98.4-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/amsn-0.98.4-r1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/amsn-0.98.4-r1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/amsn-0.98.4-r1.ebuild?r1=1.2&r2=1.3

Index: amsn-0.98.4-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-im/amsn/amsn-0.98.4-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- amsn-0.98.4-r1.ebuild	17 Sep 2011 19:03:45 -0000	1.2
+++ amsn-0.98.4-r1.ebuild	3 Oct 2011 09:31:36 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/amsn/amsn-0.98.4-r1.ebuild,v 1.2 2011/09/17 19:03:45 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/amsn/amsn-0.98.4-r1.ebuild,v 1.3 2011/10/03 09:31:36 ssuominen Exp $
 
 EAPI=2
 
@@ -44,8 +44,11 @@
 	epatch \
 		"${FILESDIR}"/${PN}-0.98-noautoupdate.patch \
 		"${FILESDIR}"/${PN}-0.98.4-v4l2.patch \
-		"${FILESDIR}"/${PN}-0.98.4-amsnplus-ldflags.patch \
-		"${FILESDIR}"/${PN}-0.98.4-libpng15.patch
+		"${FILESDIR}"/${PN}-0.98.4-amsnplus-ldflags.patch
+
+	# The NetBSD patch kills backwards compability, see http://bugs.gentoo.org/376407
+	has_version '>=media-libs/libpng-1.5:0' && epatch "${FILESDIR}"/${PN}-0.98.4-libpng15.patch
+
 	# only portage should strip files, bug 285682
 	sed -i -e "s/LDFLAGS += -s/LDFLAGS += /" Makefile.in || die "sed failed"
 	# Ships with a 32-bit binary, we want to rebuild it






^ permalink raw reply	[flat|nested] 10+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-im/amsn: ChangeLog amsn-0.98.4-r1.ebuild
@ 2011-10-03 11:05 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 10+ messages in thread
From: Samuli Suominen (ssuominen) @ 2011-10-03 11:05 UTC (permalink / raw
  To: gentoo-commits

ssuominen    11/10/03 11:05:13

  Modified:             ChangeLog amsn-0.98.4-r1.ebuild
  Log:
  Fix icon cache update and raise EAPI to 4 by "ago" from Freenode.
  
  (Portage version: 2.2.0_alpha60/cvs/Linux x86_64)

Revision  Changes    Path
1.107                net-im/amsn/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/ChangeLog?rev=1.107&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/ChangeLog?rev=1.107&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/ChangeLog?r1=1.106&r2=1.107

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-im/amsn/ChangeLog,v
retrieving revision 1.106
retrieving revision 1.107
diff -u -r1.106 -r1.107
--- ChangeLog	3 Oct 2011 09:31:36 -0000	1.106
+++ ChangeLog	3 Oct 2011 11:05:13 -0000	1.107
@@ -1,6 +1,9 @@
 # ChangeLog for net-im/amsn
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/amsn/ChangeLog,v 1.106 2011/10/03 09:31:36 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/amsn/ChangeLog,v 1.107 2011/10/03 11:05:13 ssuominen Exp $
+
+  03 Oct 2011; Samuli Suominen <ssuominen@gentoo.org> amsn-0.98.4-r1.ebuild:
+  Fix icon cache update and raise EAPI to 4 by "ago" from Freenode.
 
   03 Oct 2011; Samuli Suominen <ssuominen@gentoo.org> amsn-0.98.4-r1.ebuild:
   The libpng15 patch imported from NetBSD is not compatible with libpng14 wrt



1.4                  net-im/amsn/amsn-0.98.4-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/amsn-0.98.4-r1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/amsn-0.98.4-r1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/amsn-0.98.4-r1.ebuild?r1=1.3&r2=1.4

Index: amsn-0.98.4-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-im/amsn/amsn-0.98.4-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- amsn-0.98.4-r1.ebuild	3 Oct 2011 09:31:36 -0000	1.3
+++ amsn-0.98.4-r1.ebuild	3 Oct 2011 11:05:13 -0000	1.4
@@ -1,23 +1,18 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/amsn/amsn-0.98.4-r1.ebuild,v 1.3 2011/10/03 09:31:36 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/amsn/amsn-0.98.4-r1.ebuild,v 1.4 2011/10/03 11:05:13 ssuominen Exp $
 
-EAPI=2
-
-inherit autotools eutils fdo-mime gnome2-utils
+EAPI=4
+inherit autotools eutils fdo-mime gnome2-utils toolchain-funcs
 
 MY_P=${P/_rc/RC}
-S="${WORKDIR}/${MY_P}"
 
 DESCRIPTION="aMSN Messenger client"
 SRC_URI="mirror://sourceforge/${PN}/${PN}/${PV}/${MY_P}-src.tar.bz2"
 HOMEPAGE="http://www.amsn-project.net"
 
-# The tests are interactive
-RESTRICT="test"
-
-SLOT="0"
 LICENSE="GPL-2"
+SLOT="0"
 KEYWORDS="~alpha ~amd64 ~hppa ~ppc -sparc ~x86"
 IUSE="debug"
 
@@ -40,6 +35,13 @@
 #	>=media-libs/gst-plugins-bad-0.10.13
 #	>=media-plugins/gst-plugins-ffmpeg-0.10.7
 
+# The tests are interactive
+RESTRICT="test"
+
+S=${WORKDIR}/${MY_P}
+
+DOCS=( AGREEMENT TODO README FAQ CREDITS )
+
 src_prepare() {
 	epatch \
 		"${FILESDIR}"/${PN}-0.98-noautoupdate.patch \
@@ -52,21 +54,21 @@
 	# only portage should strip files, bug 285682
 	sed -i -e "s/LDFLAGS += -s/LDFLAGS += /" Makefile.in || die "sed failed"
 	# Ships with a 32-bit binary, we want to rebuild it
-	rm -f plugins/amsnplus/snapshot
+	rm -f plugins/amsnplus/snapshot || die
 	eautoreconf
 }
 
 src_configure() {
-	econf $(use_enable debug) || die "configure script failed"
+	tc-export CC
+	econf $(use_enable debug)
 }
 
 src_install() {
-	make -C plugins/amsnplus || die
-	make DESTDIR="${D}" install || die
-	dodoc AGREEMENT TODO README FAQ CREDITS
+	emake -C plugins/amsnplus
+	default
 
 	domenu amsn.desktop
-	sed -i -e s:.png:: "${D}/usr/share/applications/amsn.desktop"
+	sed -i -e s:.png:: "${D}"/usr/share/applications/amsn.desktop || die
 
 	cd desktop-icons
 	for i in *; do
@@ -77,11 +79,13 @@
 	done
 }
 
+pkg_preinst() {
+	gnome2_icon_savelist
+}
+
 pkg_postinst() {
 	fdo-mime_desktop_database_update
 	gnome2_icon_cache_update
-
-	ewarn "You might have to remove ~/.amsn prior to running as user if amsn hangs on start-up."
 }
 
 pkg_postrm() {






^ permalink raw reply	[flat|nested] 10+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-im/amsn: ChangeLog amsn-0.98.4-r1.ebuild
@ 2011-10-03 11:25 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 10+ messages in thread
From: Samuli Suominen (ssuominen) @ 2011-10-03 11:25 UTC (permalink / raw
  To: gentoo-commits

ssuominen    11/10/03 11:25:11

  Modified:             ChangeLog amsn-0.98.4-r1.ebuild
  Log:
  Fix also icons installation which was borqued by bad logic
  
  (Portage version: 2.2.0_alpha60/cvs/Linux x86_64)

Revision  Changes    Path
1.108                net-im/amsn/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/ChangeLog?rev=1.108&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/ChangeLog?rev=1.108&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/ChangeLog?r1=1.107&r2=1.108

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-im/amsn/ChangeLog,v
retrieving revision 1.107
retrieving revision 1.108
diff -u -r1.107 -r1.108
--- ChangeLog	3 Oct 2011 11:05:13 -0000	1.107
+++ ChangeLog	3 Oct 2011 11:25:11 -0000	1.108
@@ -1,9 +1,10 @@
 # ChangeLog for net-im/amsn
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/amsn/ChangeLog,v 1.107 2011/10/03 11:05:13 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/amsn/ChangeLog,v 1.108 2011/10/03 11:25:11 ssuominen Exp $
 
   03 Oct 2011; Samuli Suominen <ssuominen@gentoo.org> amsn-0.98.4-r1.ebuild:
-  Fix icon cache update and raise EAPI to 4 by "ago" from Freenode.
+  Fix icons install, icon cache update and raise EAPI to 4 by "ago" from
+  Freenode.
 
   03 Oct 2011; Samuli Suominen <ssuominen@gentoo.org> amsn-0.98.4-r1.ebuild:
   The libpng15 patch imported from NetBSD is not compatible with libpng14 wrt



1.5                  net-im/amsn/amsn-0.98.4-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/amsn-0.98.4-r1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/amsn-0.98.4-r1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/amsn-0.98.4-r1.ebuild?r1=1.4&r2=1.5

Index: amsn-0.98.4-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-im/amsn/amsn-0.98.4-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- amsn-0.98.4-r1.ebuild	3 Oct 2011 11:05:13 -0000	1.4
+++ amsn-0.98.4-r1.ebuild	3 Oct 2011 11:25:11 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/amsn/amsn-0.98.4-r1.ebuild,v 1.4 2011/10/03 11:05:13 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/amsn/amsn-0.98.4-r1.ebuild,v 1.5 2011/10/03 11:25:11 ssuominen Exp $
 
 EAPI=4
 inherit autotools eutils fdo-mime gnome2-utils toolchain-funcs
@@ -70,13 +70,13 @@
 	domenu amsn.desktop
 	sed -i -e s:.png:: "${D}"/usr/share/applications/amsn.desktop || die
 
-	cd desktop-icons
-	for i in *; do
-		if [ -e ${i}/msn.png ]; then
-			insinto /usr/share/icons/hicolor/${i}/apps
-			doins  ${i}/msn.png
-		fi
+	pushd desktop-icons
+	local res
+	for res in 22 32 48 64 72 96 128; do
+		insinto /usr/share/icons/hicolor/${res}x${res}/apps
+		doins ${res}x${res}/apps/amsn.png
 	done
+	popd
 }
 
 pkg_preinst() {






^ permalink raw reply	[flat|nested] 10+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-im/amsn: ChangeLog amsn-0.98.4-r1.ebuild
@ 2011-10-04  8:50 Andreas Schuerch (nativemad)
  0 siblings, 0 replies; 10+ messages in thread
From: Andreas Schuerch (nativemad) @ 2011-10-04  8:50 UTC (permalink / raw
  To: gentoo-commits

nativemad    11/10/04 08:50:22

  Modified:             ChangeLog amsn-0.98.4-r1.ebuild
  Log:
  x86 stable, see bug 376407
  
  (Portage version: 2.1.10.11/cvs/Linux i686)

Revision  Changes    Path
1.109                net-im/amsn/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/ChangeLog?rev=1.109&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/ChangeLog?rev=1.109&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/ChangeLog?r1=1.108&r2=1.109

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-im/amsn/ChangeLog,v
retrieving revision 1.108
retrieving revision 1.109
diff -u -r1.108 -r1.109
--- ChangeLog	3 Oct 2011 11:25:11 -0000	1.108
+++ ChangeLog	4 Oct 2011 08:50:21 -0000	1.109
@@ -1,6 +1,9 @@
 # ChangeLog for net-im/amsn
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/amsn/ChangeLog,v 1.108 2011/10/03 11:25:11 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/amsn/ChangeLog,v 1.109 2011/10/04 08:50:21 nativemad Exp $
+
+  04 Oct 2011; Andreas Schuerch <nativemad@gentoo.org> amsn-0.98.4-r1.ebuild:
+  x86 stable, see bug 376407
 
   03 Oct 2011; Samuli Suominen <ssuominen@gentoo.org> amsn-0.98.4-r1.ebuild:
   Fix icons install, icon cache update and raise EAPI to 4 by "ago" from



1.6                  net-im/amsn/amsn-0.98.4-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/amsn-0.98.4-r1.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/amsn-0.98.4-r1.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/amsn-0.98.4-r1.ebuild?r1=1.5&r2=1.6

Index: amsn-0.98.4-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-im/amsn/amsn-0.98.4-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- amsn-0.98.4-r1.ebuild	3 Oct 2011 11:25:11 -0000	1.5
+++ amsn-0.98.4-r1.ebuild	4 Oct 2011 08:50:21 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/amsn/amsn-0.98.4-r1.ebuild,v 1.5 2011/10/03 11:25:11 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/amsn/amsn-0.98.4-r1.ebuild,v 1.6 2011/10/04 08:50:21 nativemad Exp $
 
 EAPI=4
 inherit autotools eutils fdo-mime gnome2-utils toolchain-funcs
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ppc -sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~hppa ~ppc -sparc x86"
 IUSE="debug"
 
 DEPEND=">=dev-lang/tcl-8.4






^ permalink raw reply	[flat|nested] 10+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-im/amsn: ChangeLog amsn-0.98.4-r1.ebuild
@ 2011-10-07 19:19 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 10+ messages in thread
From: Samuli Suominen (ssuominen) @ 2011-10-07 19:19 UTC (permalink / raw
  To: gentoo-commits

ssuominen    11/10/07 19:19:11

  Modified:             ChangeLog amsn-0.98.4-r1.ebuild
  Log:
  amd64 stable wrt #376407
  
  (Portage version: 2.2.0_alpha61/cvs/Linux x86_64)

Revision  Changes    Path
1.110                net-im/amsn/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/ChangeLog?rev=1.110&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/ChangeLog?rev=1.110&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/ChangeLog?r1=1.109&r2=1.110

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-im/amsn/ChangeLog,v
retrieving revision 1.109
retrieving revision 1.110
diff -u -r1.109 -r1.110
--- ChangeLog	4 Oct 2011 08:50:21 -0000	1.109
+++ ChangeLog	7 Oct 2011 19:19:11 -0000	1.110
@@ -1,6 +1,9 @@
 # ChangeLog for net-im/amsn
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/amsn/ChangeLog,v 1.109 2011/10/04 08:50:21 nativemad Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/amsn/ChangeLog,v 1.110 2011/10/07 19:19:11 ssuominen Exp $
+
+  07 Oct 2011; Samuli Suominen <ssuominen@gentoo.org> amsn-0.98.4-r1.ebuild:
+  amd64 stable wrt #376407
 
   04 Oct 2011; Andreas Schuerch <nativemad@gentoo.org> amsn-0.98.4-r1.ebuild:
   x86 stable, see bug 376407



1.7                  net-im/amsn/amsn-0.98.4-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/amsn-0.98.4-r1.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/amsn-0.98.4-r1.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/amsn-0.98.4-r1.ebuild?r1=1.6&r2=1.7

Index: amsn-0.98.4-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-im/amsn/amsn-0.98.4-r1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- amsn-0.98.4-r1.ebuild	4 Oct 2011 08:50:21 -0000	1.6
+++ amsn-0.98.4-r1.ebuild	7 Oct 2011 19:19:11 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/amsn/amsn-0.98.4-r1.ebuild,v 1.6 2011/10/04 08:50:21 nativemad Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/amsn/amsn-0.98.4-r1.ebuild,v 1.7 2011/10/07 19:19:11 ssuominen Exp $
 
 EAPI=4
 inherit autotools eutils fdo-mime gnome2-utils toolchain-funcs
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ppc -sparc x86"
+KEYWORDS="~alpha amd64 ~hppa ~ppc -sparc x86"
 IUSE="debug"
 
 DEPEND=">=dev-lang/tcl-8.4






^ permalink raw reply	[flat|nested] 10+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-im/amsn: ChangeLog amsn-0.98.4-r1.ebuild
@ 2011-10-11 16:43 Jeroen Roovers (jer)
  0 siblings, 0 replies; 10+ messages in thread
From: Jeroen Roovers (jer) @ 2011-10-11 16:43 UTC (permalink / raw
  To: gentoo-commits

jer         11/10/11 16:43:14

  Modified:             ChangeLog amsn-0.98.4-r1.ebuild
  Log:
  Stable for HPPA (bug #376407).
  
  (Portage version: 2.2.0_alpha66/cvs/Linux x86_64)

Revision  Changes    Path
1.111                net-im/amsn/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/ChangeLog?rev=1.111&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/ChangeLog?rev=1.111&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/ChangeLog?r1=1.110&r2=1.111

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-im/amsn/ChangeLog,v
retrieving revision 1.110
retrieving revision 1.111
diff -u -r1.110 -r1.111
--- ChangeLog	7 Oct 2011 19:19:11 -0000	1.110
+++ ChangeLog	11 Oct 2011 16:43:14 -0000	1.111
@@ -1,6 +1,9 @@
 # ChangeLog for net-im/amsn
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/amsn/ChangeLog,v 1.110 2011/10/07 19:19:11 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/amsn/ChangeLog,v 1.111 2011/10/11 16:43:14 jer Exp $
+
+  11 Oct 2011; Jeroen Roovers <jer@gentoo.org> amsn-0.98.4-r1.ebuild:
+  Stable for HPPA (bug #376407).
 
   07 Oct 2011; Samuli Suominen <ssuominen@gentoo.org> amsn-0.98.4-r1.ebuild:
   amd64 stable wrt #376407



1.8                  net-im/amsn/amsn-0.98.4-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/amsn-0.98.4-r1.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/amsn-0.98.4-r1.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/amsn-0.98.4-r1.ebuild?r1=1.7&r2=1.8

Index: amsn-0.98.4-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-im/amsn/amsn-0.98.4-r1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- amsn-0.98.4-r1.ebuild	7 Oct 2011 19:19:11 -0000	1.7
+++ amsn-0.98.4-r1.ebuild	11 Oct 2011 16:43:14 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/amsn/amsn-0.98.4-r1.ebuild,v 1.7 2011/10/07 19:19:11 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/amsn/amsn-0.98.4-r1.ebuild,v 1.8 2011/10/11 16:43:14 jer Exp $
 
 EAPI=4
 inherit autotools eutils fdo-mime gnome2-utils toolchain-funcs
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ppc -sparc x86"
+KEYWORDS="~alpha amd64 hppa ~ppc -sparc x86"
 IUSE="debug"
 
 DEPEND=">=dev-lang/tcl-8.4






^ permalink raw reply	[flat|nested] 10+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-im/amsn: ChangeLog amsn-0.98.4-r1.ebuild
@ 2011-10-15 10:41 Kacper Kowalik (xarthisius)
  0 siblings, 0 replies; 10+ messages in thread
From: Kacper Kowalik (xarthisius) @ 2011-10-15 10:41 UTC (permalink / raw
  To: gentoo-commits

xarthisius    11/10/15 10:41:15

  Modified:             ChangeLog amsn-0.98.4-r1.ebuild
  Log:
  ppc stable wrt #376407
  
  (Portage version: 2.2.0_alpha63/cvs/Linux x86_64)

Revision  Changes    Path
1.112                net-im/amsn/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/ChangeLog?rev=1.112&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/ChangeLog?rev=1.112&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/ChangeLog?r1=1.111&r2=1.112

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-im/amsn/ChangeLog,v
retrieving revision 1.111
retrieving revision 1.112
diff -u -r1.111 -r1.112
--- ChangeLog	11 Oct 2011 16:43:14 -0000	1.111
+++ ChangeLog	15 Oct 2011 10:41:15 -0000	1.112
@@ -1,6 +1,9 @@
 # ChangeLog for net-im/amsn
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/amsn/ChangeLog,v 1.111 2011/10/11 16:43:14 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/amsn/ChangeLog,v 1.112 2011/10/15 10:41:15 xarthisius Exp $
+
+  15 Oct 2011; Kacper Kowalik <xarthisius@gentoo.org> amsn-0.98.4-r1.ebuild:
+  ppc stable wrt #376407
 
   11 Oct 2011; Jeroen Roovers <jer@gentoo.org> amsn-0.98.4-r1.ebuild:
   Stable for HPPA (bug #376407).



1.9                  net-im/amsn/amsn-0.98.4-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/amsn-0.98.4-r1.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/amsn-0.98.4-r1.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/amsn-0.98.4-r1.ebuild?r1=1.8&r2=1.9

Index: amsn-0.98.4-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-im/amsn/amsn-0.98.4-r1.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- amsn-0.98.4-r1.ebuild	11 Oct 2011 16:43:14 -0000	1.8
+++ amsn-0.98.4-r1.ebuild	15 Oct 2011 10:41:15 -0000	1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/amsn/amsn-0.98.4-r1.ebuild,v 1.8 2011/10/11 16:43:14 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/amsn/amsn-0.98.4-r1.ebuild,v 1.9 2011/10/15 10:41:15 xarthisius Exp $
 
 EAPI=4
 inherit autotools eutils fdo-mime gnome2-utils toolchain-funcs
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 hppa ~ppc -sparc x86"
+KEYWORDS="~alpha amd64 hppa ppc -sparc x86"
 IUSE="debug"
 
 DEPEND=">=dev-lang/tcl-8.4






^ permalink raw reply	[flat|nested] 10+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-im/amsn: ChangeLog amsn-0.98.4-r1.ebuild
@ 2014-03-09  1:35 Manuel Rueger (mrueg)
  0 siblings, 0 replies; 10+ messages in thread
From: Manuel Rueger (mrueg) @ 2014-03-09  1:35 UTC (permalink / raw
  To: gentoo-commits

mrueg       14/03/09 01:35:25

  Modified:             ChangeLog
  Removed:              amsn-0.98.4-r1.ebuild
  Log:
  Cleanup old.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key )

Revision  Changes    Path
1.122                net-im/amsn/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/ChangeLog?rev=1.122&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/ChangeLog?rev=1.122&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/amsn/ChangeLog?r1=1.121&r2=1.122

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-im/amsn/ChangeLog,v
retrieving revision 1.121
retrieving revision 1.122
diff -u -r1.121 -r1.122
--- ChangeLog	8 Jul 2012 22:04:36 -0000	1.121
+++ ChangeLog	9 Mar 2014 01:35:24 -0000	1.122
@@ -1,6 +1,9 @@
 # ChangeLog for net-im/amsn
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/amsn/ChangeLog,v 1.121 2012/07/08 22:04:36 xmw Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-im/amsn/ChangeLog,v 1.122 2014/03/09 01:35:24 mrueg Exp $
+
+  09 Mar 2014; Manuel Rüger <mrueg@gentoo.org> -amsn-0.98.4-r1.ebuild:
+  Cleanup old.
 
   08 Jul 2012; Michael Weber <xmw@gentoo.org> amsn-0.98.9.ebuild:
   ppc stable (bug 415861)





^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2014-03-09  1:35 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-04  8:50 [gentoo-commits] gentoo-x86 commit in net-im/amsn: ChangeLog amsn-0.98.4-r1.ebuild Andreas Schuerch (nativemad)
  -- strict thread matches above, loose matches on Subject: below --
2014-03-09  1:35 Manuel Rueger (mrueg)
2011-10-15 10:41 Kacper Kowalik (xarthisius)
2011-10-11 16:43 Jeroen Roovers (jer)
2011-10-07 19:19 Samuli Suominen (ssuominen)
2011-10-03 11:25 Samuli Suominen (ssuominen)
2011-10-03 11:05 Samuli Suominen (ssuominen)
2011-10-03  9:31 Samuli Suominen (ssuominen)
2011-09-17 19:03 Samuli Suominen (ssuominen)
2011-04-28 15:42 Kevin McCarthy (signals)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox