]> Frank Brehm's Git Trees - portage.git/commitdiff
Removing dev-python/pb-logging/pb-logging-0.3.2.1.ebuild and dev-python/pb-base/pb...
authorFrank Brehm <frank@brehm-online.com>
Tue, 21 Mar 2017 13:02:22 +0000 (14:02 +0100)
committerFrank Brehm <frank@brehm-online.com>
Tue, 21 Mar 2017 13:02:22 +0000 (14:02 +0100)
dev-python/pb-base/Manifest
dev-python/pb-base/pb-base-0.4.11.1.ebuild [deleted file]
dev-python/pb-logging/Manifest
dev-python/pb-logging/pb-logging-0.3.2.1.ebuild [deleted file]

index ecf2835d582dc914a4f17d771de20d92825a8b18..2267f91d3f2fe049aca68d7fac0df548141389a9 100644 (file)
@@ -1,4 +1,3 @@
-EBUILD pb-base-0.4.11.1.ebuild 1805 SHA256 a32d02da651ce7b254d53519ab17c80735d4d95f7bbf37bd5898a6f490659f03 SHA512 0b86d0430b027b9cd55447c14d8d888c5c088590d30572d4684cf97367555c82943d097f71d31ce81f459254e8b9c2b81d86fbf3690eb3e07d48082db677199f WHIRLPOOL 3fbd3d9a04d828c9f8261d9aacfba521f5b26cbc954ee6e2fed1d5779a11c1a6f5df1ca6be622c21090420a055dc24068c8be61b4af60489345e2a84d0c7b04b
 EBUILD pb-base-0.5.6.1-r3.ebuild 1689 SHA256 df4f1fb53f21983712a796e43916c5b4f039e44fca6b3f4e1b34db85df2916b2 SHA512 d96a112da5924a83263dfb68bc55867aa057f32fa838536e78d3d0fd766576cbf2f9e6f75fc04c66212795dc31135faa2a50ce8537c71539ab406ee438c87306 WHIRLPOOL 87be94cd63f53af7c9cf0087625aada543a95c715406fc939477fd3c1922c770a8e3dca5e3bbec9ca24de888a7bccd0bad48457936ccfd9f9db4cda91b682f55
 EBUILD pb-base-0.6.8.ebuild 1733 SHA256 bb3636c869b55c8b882dc8de078a12b6f20f702dc748115ea90b0f648fa3c81d SHA512 7f30c95c044ea3decb8ee36710dc3a292c9fa2c12aa9177a67d1c27055fb4b1650710d1445569d0ab7a440aecd4d004df9faf2a9f9706d95d269e54af29fa9b8 WHIRLPOOL 98c19742ea7fd745f7ca9de7a40ce375aa3c4143f1e710eab31f3d3b13965918fd7ba315823cd2599a8f2163ef43353dfe2c52f13fd14a1fbee6bd6e20c066aa
 EBUILD pb-base-0.7.3.ebuild 1749 SHA256 0afe2e4d3575f6c9190bf0c2c6ff2aad0ba0c7457da336cc018c9fb6601191da SHA512 6fc03880a05c30e8dddcd15a2b761db80be9a624e6b2f7c91c59b6644d1a2e78c8c127d618a77c5b60897c8dc8a8e0dcc8630902fef43e1d6b5795e2de85f6f0 WHIRLPOOL 40acaf019046519146e7759eba80f7d7d966b5055c57db2a935eead543764b7b471d2c54aad34b94860d018dba05df5c89343196aa69a0a16a91618eb1b3aa6c
diff --git a/dev-python/pb-base/pb-base-0.4.11.1.ebuild b/dev-python/pb-base/pb-base-0.4.11.1.ebuild
deleted file mode 100644 (file)
index be31839..0000000
+++ /dev/null
@@ -1,87 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-DESCRIPTION="Python modules for common used objects, error classes and functions."
-HOMEPAGE="https://github.com/fbrehm/py_pb_base"
-SRC_URI=""
-EGIT_REPO_URI="https://github.com/fbrehm/py_pb_base.git"
-
-inherit git-2 distutils user python versionator
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="doc nls"
-PYTHON_DEPEND="2::2.7"
-
-EGIT_BRANCH="master"
-EGIT_COMMIT=$(replace_version_separator 3 '-')
-
-DOCS="debian/changelog README.txt"
-
-RDEPEND="
-       virtual/python-argparse
-       dev-python/configobj
-       >=dev-python/pb-logging-0.2.7
-       nls? ( virtual/libintl )
-"
-DEPEND="
-       ${RDEPEND}
-       doc? (  dev-python/epydoc 
-                       dev-python/docutils
-                       dev-texlive/texlive-latexextra
-       )
-       nls? ( sys-devel/gettext )
-"
-
-pkg_setup() {
-
-       elog "Used GIT tag: '${EGIT_COMMIT}'."
-
-       elog "Start setup package ..."
-       python_set_active_version 2
-       python_pkg_setup
-}
-
-src_compile() {
-       elog "Start compiling package ..."
-       distutils_src_compile
-       if use nls; then
-               make -C ${S}/po
-       fi
-}
-
-src_install() {
-       distutils_src_install
-       #python_clean_installation_image
-
-       if use doc; then
-               einfo "Installing documentation ..."
-               dodir "/usr/share/doc/${PF}"
-               dodir "/usr/share/doc/${PF}/html"
-               dodir "/usr/share/doc/${PF}/pdf"
-
-               einfo "Creating epydoc html documentation"
-               epydoc --html -v -o "${ED}/usr/share/doc/${PF}/html" "${S}/pb_base" || ewarn "Could not create epydoc html documentation"
-               einfo "Creating epydoc pdf documentation"
-               epydoc --pdf -o "${ED}/usr/share/doc/${PF}/pdf" "${S}/pb_base" || ewarn "Could not create epydoc pdf documentation"
-
-       fi
-
-       if use nls; then
-               make -C ${S}/po DESTDIR="${ED}" install
-       fi
-
-}
-
-pkg_postinst() {
-       python_mod_optimize pb_base
-}
-
-pkg_postrm () {
-    python_mod_cleanup pb_base
-}
-
-
index c9b050cbb71d3d679ac2e48ea8b3c26b4b877409..34b03f260836b45827c611d009888ed9b4d55e02 100644 (file)
@@ -1,4 +1,3 @@
-EBUILD pb-logging-0.3.2.1.ebuild 1540 SHA256 65fb300b2d90dc0b0d1db2a0cbac35acc94c4e5dae0ebf41d90cd4d697f40248 SHA512 8395a3d940110d6af0a805dde3c7a467b61976b44e70e195e20b3703ce9ec95fd8946abbed0f17dabed131c74452cf04e039faab22066eb161a5b11502facf52 WHIRLPOOL e2208db4b1c1965a63f13ec002ee7bc6cb2707805a69784dc45ddd15b01344efeaa2344edf48bb5ab284f73e59f64a58884f98b45029fa6520d85d8488cffc4f
 EBUILD pb-logging-0.4.10.ebuild 1345 SHA256 662d1d93152d9ddaa36d0ffc65a791d57d1149242d9840141437c6770649b928 SHA512 88d44c210a67257db704d4464babeae8e192506312be5d8f64edfde226f6188c39c1799fa10116190d0c95973e5fc515336b330e985599817e3f46b7a876cacc WHIRLPOOL 98a5a53cc6571d02c792043759e763d421785876e6bf7acba5bd41598602ea4f55b3d8425de52d78f76e6831f329260a49d7deac06b62ec19c2d248edbc596bd
 EBUILD pb-logging-0.5.1.ebuild 1345 SHA256 662d1d93152d9ddaa36d0ffc65a791d57d1149242d9840141437c6770649b928 SHA512 88d44c210a67257db704d4464babeae8e192506312be5d8f64edfde226f6188c39c1799fa10116190d0c95973e5fc515336b330e985599817e3f46b7a876cacc WHIRLPOOL 98a5a53cc6571d02c792043759e763d421785876e6bf7acba5bd41598602ea4f55b3d8425de52d78f76e6831f329260a49d7deac06b62ec19c2d248edbc596bd
 EBUILD pb-logging-0.5.2.ebuild 1368 SHA256 e4c8c09b9aa419c3827a2b0ba2770d902cba2ca87ec331e1bf8eb1931a2daeac SHA512 2956768b59973079d568fc0e1d74bfd46d581e5227c7b81c4b146123af98bf5631d02977aa1657e9056e15a382f2def6efa1d973c7fbb418cf1aa0c3dad61a1e WHIRLPOOL b4a7b5069b156e6530f25af83f169ee0047c825d755556b3475372d5d7bff56be54e5f583b22aa4225f2da0b1f45a595e80e58a1db780f7550a13c4bfbfde7ac
diff --git a/dev-python/pb-logging/pb-logging-0.3.2.1.ebuild b/dev-python/pb-logging/pb-logging-0.3.2.1.ebuild
deleted file mode 100644 (file)
index f2a3115..0000000
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=4
-
-
-DESCRIPTION="Python modules to extend the logging mechanism in Python."
-HOMEPAGE="https://github.com/fbrehm/py_pb_logging"
-SRC_URI=""
-EGIT_REPO_URI="https://github.com/fbrehm/py_pb_logging.git"
-
-inherit git-2 distutils user python versionator
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="doc"
-PYTHON_DEPEND="2::2.7"
-
-EGIT_BRANCH="master"
-EGIT_COMMIT=$(replace_version_separator 3 '-')
-
-DOCS="debian/changelog README.txt"
-
-RDEPEND="
-       virtual/python-argparse
-"
-DEPEND="
-       ${RDEPEND}
-       doc? (  dev-python/epydoc 
-                       dev-python/docutils
-                       dev-texlive/texlive-latexextra
-       )
-"
-
-pkg_setup() {
-       python_set_active_version 2
-       python_pkg_setup
-}
-
-src_prepare() {
-       elog "Used GIT tag: '${EGIT_COMMIT}'."
-       distutils_src_prepare
-}
-
-src_install() {
-       distutils_src_install
-       #python_clean_installation_image
-
-       if use doc; then
-               einfo "Installing documentation ..."
-               dodir "/usr/share/doc/${PF}"
-               dodir "/usr/share/doc/${PF}/html"
-               dodir "/usr/share/doc/${PF}/pdf"
-
-               einfo "Creating epydoc html documentation"
-               epydoc --html -v -o "${ED}/usr/share/doc/${PF}/html" "${S}/pb_logging" || ewarn "Could not create epydoc html documentation"
-               einfo "Creating epydoc pdf documentation"
-               epydoc --pdf -o "${ED}/usr/share/doc/${PF}/pdf" "${S}/pb_logging" || ewarn "Could not create epydoc pdf documentation"
-
-       fi
-
-}
-
-pkg_postinst() {
-       python_mod_optimize pb_logging
-}
-
-pkg_postrm () {
-    python_mod_cleanup pb_logging
-}
-
-