From ceeeb463cc1eef97fd62eaee8bf2196ba04bc384 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 29 Feb 2020 18:01:47 +0000 Subject: gentoo (leap year) resync : 29.02.2020 --- app-text/krop/Manifest | 4 ++-- app-text/krop/krop-0.5.1-r1.ebuild | 41 ++++++++++++++++++++++++++++++++++++++ app-text/krop/krop-0.5.1.ebuild | 35 -------------------------------- app-text/krop/krop-9999.ebuild | 2 +- 4 files changed, 44 insertions(+), 38 deletions(-) create mode 100644 app-text/krop/krop-0.5.1-r1.ebuild delete mode 100644 app-text/krop/krop-0.5.1.ebuild (limited to 'app-text/krop') diff --git a/app-text/krop/Manifest b/app-text/krop/Manifest index 5f323b2ceb81..76f3b85fb8f3 100644 --- a/app-text/krop/Manifest +++ b/app-text/krop/Manifest @@ -1,4 +1,4 @@ DIST krop-0.5.1.tar.gz 42719 BLAKE2B e0baa3c14d9ce63815615eae004a08af720868d584262901eccbc569852177e07d5df659ea560d7e9cbdc4325daef8c35acd9c200440a8dfd73c19b274d8de37 SHA512 2bfd2a5d762454ab45538707c6f333d2b0947b6b203d6e7bd2d9d0d574d79de8ee6b30d87b17d6afea604456b915f323b855c9c9af5c169c192b0a01634075ca -EBUILD krop-0.5.1.ebuild 757 BLAKE2B 43c6ef4fce3592305e59c1006f1d736a7777c0858c3baa2c0922a006988f92a65b20c2e4d73058f47a41e7bac3998140822b30a47a6c370373062a4999665674 SHA512 ee1865af35eda2f6971661aa32f0694d9cda57f857df380827085c5046370a321db38fd2b49d4afab0b46aed870ebd981400aa8665d4b19862e39c96104d6607 -EBUILD krop-9999.ebuild 873 BLAKE2B 8354d4d11794afdf167a4a584d48a3b4e7471dd0411bd636ba4323a67d1d7b5b7b7dad5e564445027bb5d231780d0e20a6fb140bc9df2ed725bf4140e10e879c SHA512 6fe66c73bc35914f113e8a66db53b514d42445df2df646580ac448f30ffeef8f078e2a081c7538e8fc6aaf14f1c78944c91a1cc22b29122c830159e3eed9d2dc +EBUILD krop-0.5.1-r1.ebuild 884 BLAKE2B 7d294532b03e2a7bb2a6e706cca576d4848163cac83db252b972929d654300cdccff72d2efc20eb25f37c932261a0ae65c3b8eadb5a218071e06b32748997bd6 SHA512 9a24a2fb6ec464685bd8e712a0b94ba8fc188760be32fa37f31cdf50e416224a68793176b3da89c879976cca22b07467d2e27f0d7b150dc947d919207d6f1e78 +EBUILD krop-9999.ebuild 885 BLAKE2B f58eccf02d0f3a08afca3245a6d3695842e4d50df44c7137d72f6e28bf71bd1c1a7acfb3b7756911237f700eb2fb253608587c4a0d57ba90b5d47223c0725cf0 SHA512 9c7aca04b83d8acbb68d691d01cb155d0c55eb9c9cfa916dd0549bb3fcd9f12b50f5d1f3c21d8bf9a494b30a57e8cd460c89648ab02a41e1e6ffd7cc2fc022c3 MISC metadata.xml 333 BLAKE2B b62d23170b13a4d2375de72955c2708368a34435f022231b829b19b60c9f38a1546ec62887dae545691eb1df45998ab7810aa58df3b94729632991e49c4c098f SHA512 30ec13878bbe3b50c90f1849bbc5bf0f8dc05bf1b6a8f79695590f48c76618eef4666965b8130d1909db3c960a43d3149dba525017f342ce9635afc530b873f0 diff --git a/app-text/krop/krop-0.5.1-r1.ebuild b/app-text/krop/krop-0.5.1-r1.ebuild new file mode 100644 index 000000000000..3a3c251466e4 --- /dev/null +++ b/app-text/krop/krop-0.5.1-r1.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python3_6 ) + +inherit desktop distutils-r1 xdg-utils + +if [[ ${PV} == 9999 ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/arminstraub/krop.git" +else + SRC_URI="http://arminstraub.com/downloads/${PN}/${P}.tar.gz" + KEYWORDS="amd64 ~x86" +fi + +DESCRIPTION="A tool to crop PDF files" +HOMEPAGE="http://arminstraub.com/software/krop" + +LICENSE="GPL-3" +SLOT="0" +IUSE="" + +RDEPEND="dev-python/python-poppler-qt5[${PYTHON_USEDEP}] + dev-python/PyPDF2[${PYTHON_USEDEP}] + dev-python/PyQt5[${PYTHON_USEDEP},gui,widgets]" + +src_install() { + distutils-r1_src_install + domenu "${WORKDIR}/${P}/${PN}.desktop" +} + +pkg_postinst() { + xdg_mimeinfo_database_update + xdg_desktop_database_update +} + +pkg_postrm() { + xdg_mimeinfo_database_update + xdg_desktop_database_update +} diff --git a/app-text/krop/krop-0.5.1.ebuild b/app-text/krop/krop-0.5.1.ebuild deleted file mode 100644 index 8dc3d8371c93..000000000000 --- a/app-text/krop/krop-0.5.1.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -PYTHON_COMPAT=( python3_6 ) - -inherit eutils distutils-r1 xdg-utils - -DESCRIPTION="A tool to crop PDF files" -HOMEPAGE="http://arminstraub.com/software/krop" -SRC_URI="http://arminstraub.com/downloads/${PN}/${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="amd64 ~x86" -IUSE="" - -RDEPEND="dev-python/python-poppler-qt5[${PYTHON_USEDEP}] - dev-python/PyPDF2[${PYTHON_USEDEP}] - dev-python/PyQt5[${PYTHON_USEDEP}]" - -src_install() { - distutils-r1_src_install - domenu "${WORKDIR}/${P}/${PN}.desktop" -} - -pkg_postinst() { - xdg_mimeinfo_database_update - xdg_desktop_database_update -} - -pkg_postrm() { - xdg_mimeinfo_database_update - xdg_desktop_database_update -} diff --git a/app-text/krop/krop-9999.ebuild b/app-text/krop/krop-9999.ebuild index b7f325ef3b86..67c084e81c67 100644 --- a/app-text/krop/krop-9999.ebuild +++ b/app-text/krop/krop-9999.ebuild @@ -23,7 +23,7 @@ IUSE="" RDEPEND="dev-python/python-poppler-qt5[${PYTHON_USEDEP}] dev-python/PyPDF2[${PYTHON_USEDEP}] - dev-python/PyQt5[${PYTHON_USEDEP}]" + dev-python/PyQt5[${PYTHON_USEDEP},gui,widgets]" src_install() { distutils-r1_src_install -- cgit v1.2.3