diff options
author | Hanno Boeck <hanno@gentoo.org> | 2008-05-16 00:31:59 +0000 |
---|---|---|
committer | Hanno Boeck <hanno@gentoo.org> | 2008-05-16 00:31:59 +0000 |
commit | 629ec06d4455b5850ddc691c0e77699bd99a7d88 (patch) | |
tree | 5503b93a5a1947b19434429bab5fa3fb2fa81463 /net-im/pyotr | |
parent | Added KDE 4.0.4 version of ktip. Thanks to Jorge Manuel B. S. Vicetto. (diff) | |
download | historical-629ec06d4455b5850ddc691c0e77699bd99a7d88.tar.gz historical-629ec06d4455b5850ddc691c0e77699bd99a7d88.tar.bz2 historical-629ec06d4455b5850ddc691c0e77699bd99a7d88.zip |
pyotr added
Package-Manager: portage-2.1.5
Diffstat (limited to 'net-im/pyotr')
-rw-r--r-- | net-im/pyotr/ChangeLog | 10 | ||||
-rw-r--r-- | net-im/pyotr/Manifest | 14 | ||||
-rw-r--r-- | net-im/pyotr/metadata.xml | 6 | ||||
-rw-r--r-- | net-im/pyotr/pyotr-0.1.ebuild | 23 |
4 files changed, 53 insertions, 0 deletions
diff --git a/net-im/pyotr/ChangeLog b/net-im/pyotr/ChangeLog new file mode 100644 index 000000000000..a85d9c428869 --- /dev/null +++ b/net-im/pyotr/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for net-im/pyotr +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-im/pyotr/ChangeLog,v 1.1 2008/05/16 00:31:59 hanno Exp $ + +*pyotr-0.1 (16 May 2008) + + 16 May 2008; Hanno Boeck <hanno@gentoo.org> +metadata.xml, + +pyotr-0.1.ebuild: + Add pyotr ebuild. + diff --git a/net-im/pyotr/Manifest b/net-im/pyotr/Manifest new file mode 100644 index 000000000000..9a4c5e80a10a --- /dev/null +++ b/net-im/pyotr/Manifest @@ -0,0 +1,14 @@ +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA1 + +DIST pyotr-0.1.tar.gz 22533 RMD160 aa3f106e504cfe8ed7e542169321a2f01575afae SHA1 3bcd7dac227bf522d0c164bd870f54a9ec68980c SHA256 4ffe61aecd7b3e8cfc02a4750da89acd22c4bd07f5dc6b747df432d6ea73b45a +EBUILD pyotr-0.1.ebuild 601 RMD160 e37d80ec5cf6db313ef596466101bc5e5c5bdf3f SHA1 b46483b0eeee4400e0f6d198c7c8e8692dbe4eae SHA256 776dd849b94cd60c1e7b4353c8f36cd11d1b4fda27db7077ee6228f0a44dfab3 +MISC ChangeLog 325 RMD160 e3190995c6b4b5e2081e2abb1fb0e44496bd798f SHA1 4a1e3aff8febb014eea667bcdb9645b1ce5b5a32 SHA256 70c1483977325e4b6c4d7cfe5708bd6d1054f64da45f171789ddc99d6f2f56bf +MISC metadata.xml 216 RMD160 512de1cb54fb095f2d40e7cb79490839daaa2d50 SHA1 cc08cd59abf646cbf67707e5e1523657994681de SHA256 4f3d7cc7837286e316e5b98a69cd0ec6c9ebaf83ed906ca697966690a1fcccff +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v2.0.9 (GNU/Linux) + +iEYEARECAAYFAkgs1gwACgkQr2QksT29OyClfwCfQO/QMpbTN3QPAnb3Zz/aADqh +MOAAmQEt10dvnv4MykXm1PiHMnVE2haT +=ph3i +-----END PGP SIGNATURE----- diff --git a/net-im/pyotr/metadata.xml b/net-im/pyotr/metadata.xml new file mode 100644 index 000000000000..51423f6c09f6 --- /dev/null +++ b/net-im/pyotr/metadata.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>net-im</herd> +<maintainer><email>hanno@gentoo.org</email></maintainer> +</pkgmetadata> diff --git a/net-im/pyotr/pyotr-0.1.ebuild b/net-im/pyotr/pyotr-0.1.ebuild new file mode 100644 index 000000000000..565a4cbda321 --- /dev/null +++ b/net-im/pyotr/pyotr-0.1.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-im/pyotr/pyotr-0.1.ebuild,v 1.1 2008/05/16 00:31:59 hanno Exp $ + +inherit distutils python eutils + +DESCRIPTION="Python bindings for OTR encryption" +HOMEPAGE="http://pyotr.pentabarf.de/" +SRC_URI="http://pyotr.pentabarf.de/releases/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~x86 ~amd64" +IUSE="" + +DEPEND="net-libs/libotr" + +src_install() { + distutils_src_install + python_version + insinto /usr/$(get_libdir)/python${PYVER}/site-packages/ + doins otr.py +} |