forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
app-officeext/ooofbtools: 2.56 version bump
Reported-by: Sergey S. Starikoff <[email protected]> Closes: https://bugs.gentoo.org/690558 Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Andreas Sturmlechner <[email protected]>
- Loading branch information
Showing
2 changed files
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST OOoFBTools-2.55.zip 5272938 BLAKE2B 1f4328e02ad41cfb27803fa6dbf104ecbb3c57c3056d30e02ed6573eb2b4ac9f33447b41eee4e67572b36c81eb0a2c67ea36d1ff006440afd2e7da3d19c0c3a1 SHA512 0a327939e9ee84b964d1bab0795438f0a827086932d3cc2eb4dbc82e34dc85d6653a8836f6a7fb7b983d4fb9e83d56747b472d49d3817f8703cf461a390ad1c5 | ||
DIST OOoFBTools-2.56.zip 5256051 BLAKE2B ed78dffff2a2480d2c882c56ed7918d729c794227e909c7e6a115bc8632020b2c33ec9da0f619350b2eacf6ff604f727af9f50b435cd80f2fe952b440ff5f388 SHA512 12bb763a7eadb1aa03d9ed09b5b9754ef4465dba588b79f2399a48709ef408dddbd49ff470c872fe4e41f3da3faadb12eb5a37b31afc1f0f07a0b810110aad99 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Copyright 1999-2020 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=7 | ||
|
||
MY_PN="OOoFBTools" | ||
OFFICE_EXTENSIONS=( "${MY_PN}.oxt" ) | ||
inherit office-ext-r1 | ||
|
||
DESCRIPTION="Open/LibreOffice extension for the FictionBook2 format with validation" | ||
HOMEPAGE="https://sourceforge.net/projects/fbtools/" | ||
SRC_URI="mirror://sourceforge/fbtools/files/release/${MY_PN}-${PV}.zip" | ||
|
||
LICENSE="GPL-3" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~x86" | ||
|
||
RDEPEND=" | ||
app-arch/zip | ||
dev-libs/libxml2 | ||
" | ||
|
||
S="${WORKDIR}/${MY_PN}-${PV}" | ||
|
||
OFFICE_EXTENSIONS_LOCATION="${S}" | ||
|
||
src_prepare() { | ||
default | ||
|
||
# Remove Windows cruft | ||
pushd "${WORKDIR}/${MY_PN}.oxt" &>/dev/null || die | ||
rm -r win32 || die | ||
popd &>/dev/null || die | ||
} | ||
|
||
src_install() { | ||
office-ext-r1_src_install | ||
dodoc ChangeLog* | ||
} |