summaryrefslogtreecommitdiff
path: root/dev-python/libpillowfight
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-03-16 18:25:06 +0000
committerV3n3RiX <venerix@koprulu.sector>2023-03-16 18:25:06 +0000
commit7972abc05090180dcc09d2b16af4020ce1cd1841 (patch)
tree3e6e1c7ca86ab7d4e8dc45009f67403fc489ade9 /dev-python/libpillowfight
parente4ad5901ca8464ae513bd315a1c0349c2bd0986c (diff)
gentoo auto-resync : 16:03:2023 - 18:25:06
Diffstat (limited to 'dev-python/libpillowfight')
-rw-r--r--dev-python/libpillowfight/Manifest2
-rw-r--r--dev-python/libpillowfight/libpillowfight-0.3.0_p20210816.ebuild37
2 files changed, 0 insertions, 39 deletions
diff --git a/dev-python/libpillowfight/Manifest b/dev-python/libpillowfight/Manifest
index 847ae2ba865a..9a7b8527e1bb 100644
--- a/dev-python/libpillowfight/Manifest
+++ b/dev-python/libpillowfight/Manifest
@@ -1,5 +1,3 @@
DIST libpillowfight-0.3.0_p20210816.tar.bz2 87826271 BLAKE2B aa0a9c2800992b671940f0ed0c8d808c5ad870c724fbf0f4dad336d224e6d510b135052f2697a6a1d05bafb9f1969278962c625d5d0ffd997b2548e60b1dec2b SHA512 76b05d49e2ee9fc9dcc2c9342d312841c8d1520d8d2027bd12b6921f85bd92645f698a811ccf7bdeceba64f0b706d5fd2975f91c51db8ce87f1261793aee83cb
-DIST libpillowfight-0.3.0_p20210816.tar.gz 89491019 BLAKE2B 24a658ce461928750582560ef27fbc1ea233bb7c6290053bee7ab3437816fd0e9d7933e36a7a90c75706bdc17024200d16a17ec81c0c30563f043e6d15cc074e SHA512 a731a7d8c8492f5f6229315c8ff48bcdf215acd501d1a5f726f60d6417f77d04b702579d972aaa90f9d01d27b7b167b47f15f435c0fe79598aedb55ac397835b
EBUILD libpillowfight-0.3.0_p20210816-r1.ebuild 975 BLAKE2B d1afac74b8f48eb7bf0e7c9149a724d970dee1c7af418f999d2e20a1350583fea75c659d4bd76e6104dbf2d40470d04d25dbc75d9dacbbea4bf76ab2b29eeb4b SHA512 4636e68dd9815051e1a0137f9ed4b1082023d59609594295dfa360d43111ebb2df43acbab4a8df4b4c07e577c60d614c1a4da42894ce35ed0655efee8d0c8b2c
-EBUILD libpillowfight-0.3.0_p20210816.ebuild 942 BLAKE2B 404ff133007b17f9adcb97c8cb17c507b151d680c5140894b7947572ab9b9c61d2654dd2341b8a92f25680685dc4601fd7ebc3abbab4016c45ff43224ccfc8a3 SHA512 392ceaa2fb7d5e672511b327be093bc8e5fd529ab1125c55e2969ccae2038a69e4e66933869bd66e985e816a37c67596a5661416138acdf0d6abcec00e398a6b
MISC metadata.xml 421 BLAKE2B af873a75bfc94519921eb02333aab53d0c0a4b15ef2951fbe721519650a864e82807296eede3dd566395860cc1c9ba60cdf6768083368b717a7e2a8d7052b192 SHA512 cc9b04007e18bf0cbbcdb3fe0c9c75cf0c32afaed192cca98fedd6a6f135422794db2758f5f23f4870900d22b124a6cbc315dd51a1137c874d2c6461766c009f
diff --git a/dev-python/libpillowfight/libpillowfight-0.3.0_p20210816.ebuild b/dev-python/libpillowfight/libpillowfight-0.3.0_p20210816.ebuild
deleted file mode 100644
index 5a35a1dbf317..000000000000
--- a/dev-python/libpillowfight/libpillowfight-0.3.0_p20210816.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{9..10} )
-
-inherit distutils-r1
-
-COMMIT="50d965879eb89fdef9be09d6e934329486ff585d"
-
-DESCRIPTION="Small library containing various image processing algorithms"
-HOMEPAGE="https://gitlab.gnome.org/World/OpenPaperwork/libpillowfight"
-SRC_URI="https://gitlab.gnome.org/World/OpenPaperwork/${PN}/-/archive/${COMMIT}/${P}.tar.gz"
-S="${WORKDIR}/${PN}-${COMMIT}"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="dev-python/pillow[${PYTHON_USEDEP}]"
-
-distutils_enable_tests pytest
-
-python_prepare_all() {
- ln -s "${S}"/tests "${T}"/tests || die
- sed -e "/'nose>=1.0'/d" -i setup.py || die
- cat > src/pillowfight/_version.h <<- EOF || die
- #define INTERNAL_PILLOWFIGHT_VERSION "$(ver_cut 1-3)"
- EOF
- distutils-r1_python_prepare_all
-}
-
-python_test() {
- cd "${T}" || die
- epytest "${S}"/tests -o addopts=
-}