From ecdac123787b96ce6649f0f91da12ea6458cc2b1 Mon Sep 17 00:00:00 2001 From: Palica Date: Tue, 23 Jun 2020 22:35:08 +0200 Subject: Updating liguros repo --- dev-python/pydecomp/Manifest | 1 + dev-python/pydecomp/metadata.xml | 18 +++++++++++++ dev-python/pydecomp/pydecomp-0.3.ebuild | 37 +++++++++++++++++++++++++++ dev-python/pydecomp/pydecomp-9999.ebuild | 44 ++++++++++++++++++++++++++++++++ 4 files changed, 100 insertions(+) create mode 100644 dev-python/pydecomp/Manifest create mode 100644 dev-python/pydecomp/metadata.xml create mode 100644 dev-python/pydecomp/pydecomp-0.3.ebuild create mode 100644 dev-python/pydecomp/pydecomp-9999.ebuild (limited to 'dev-python/pydecomp') diff --git a/dev-python/pydecomp/Manifest b/dev-python/pydecomp/Manifest new file mode 100644 index 000000000000..2b96bafda4f4 --- /dev/null +++ b/dev-python/pydecomp/Manifest @@ -0,0 +1 @@ +DIST pydecomp-0.3.tar.gz 10009 BLAKE2B 2741dc776ac265a84daf4c68542e652c7e2663dff1561297057f3ac219805136ece32af3f33e0b03df0a9883663692fc3855490478c538a0edec838c90c1c4b6 SHA512 7935111f9d0629eb74f529a6427b9db3cac4c9c205f80b28380ab9c323ca9ad7b78b40f69a7760a5a69ed065e9d6ddd42d08fb8f2cb787f15d2ec6e88e20221a diff --git a/dev-python/pydecomp/metadata.xml b/dev-python/pydecomp/metadata.xml new file mode 100644 index 000000000000..929ca852a99b --- /dev/null +++ b/dev-python/pydecomp/metadata.xml @@ -0,0 +1,18 @@ + + + + + tools-portage@gentoo.org + Gentoo Portage tools team + + A python interface library for common compression , + decompression and contents generation. It aims to create a simple, + easily extended and configurable common interface to various compressison + routines. It can easily be extended with custom compression, + decompression, and contents definitions. + + + dol-sen/pyDeComp + + gentoo-staging + diff --git a/dev-python/pydecomp/pydecomp-0.3.ebuild b/dev-python/pydecomp/pydecomp-0.3.ebuild new file mode 100644 index 000000000000..4cf31eba19a3 --- /dev/null +++ b/dev-python/pydecomp/pydecomp-0.3.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python3_{6,7,8} ) +DISTUTILS_USE_SETUPTOOLS=no + +inherit distutils-r1 python-r1 + +if [[ ${PV} == "9999" ]] ; then + EGIT_BRANCH="master" + EGIT_REPO_URI="https://github.com/dol-sen/pyDeComp.git" + inherit git-r3 +else + SRC_URI="https://dev.gentoo.org/~dolsen/releases/${PN}/pyDeComp-${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv s390 sparc x86" + S="${WORKDIR}/pyDeComp-${PV}" +fi + +DESCRIPTION="A python library of common (de)compression and contents handling" +HOMEPAGE="https://github.com/dol-sen/pyDeComp" + +LICENSE="BSD" +SLOT="0" +IUSE="" + +python_install_all() { + distutils-r1_python_install_all +} + +pkg_postinst() { + einfo + einfo "Please file any enhancement requests, or bugs" + einfo "at https://github.com/dol-sen/pyDeComp/issues" + einfo "I am also on IRC @ #gentoo-releng of the freenode network" +} diff --git a/dev-python/pydecomp/pydecomp-9999.ebuild b/dev-python/pydecomp/pydecomp-9999.ebuild new file mode 100644 index 000000000000..d3dfb9ec5919 --- /dev/null +++ b/dev-python/pydecomp/pydecomp-9999.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python3_{6,7,8} ) +DISTUTILS_USE_SETUPTOOLS=no + +inherit distutils-r1 python-r1 + +if [[ ${PV} == "9999" ]] ; then + EGIT_BRANCH="master" + EGIT_REPO_URI="https://github.com/dol-sen/pyDeComp.git" + inherit git-r3 +else + SRC_URI="https://dev.gentoo.org/~dolsen/releases/${PN}/pyDeComp-${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" + S="${WORKDIR}/pyDeComp-${PV}" +fi + +DESCRIPTION="A python library of common (de)compression and contents handling" +HOMEPAGE="https://github.com/dol-sen/pyDeComp" + +LICENSE="BSD" +SLOT="0" +IUSE="" + +python_install_all() { + distutils-r1_python_install_all +} + +pkg_postinst() { + einfo + einfo "This is new software." + einfo "The API's it installs should be considered unstable" + einfo "and are subject to change." + einfo + einfo "Please file any enhancement requests, or bugs" + einfo "at https://github.com/dol-sen/pyDeComp/issues" + einfo "I am also on IRC @ #gentoo-releng of the freenode network" + einfo + ewarn "There may be some python 3 compatibility issues still." + ewarn "Please help debug/fix/report them in github or bugzilla." +} -- cgit v1.3.1