diff options
author | 2015-08-08 13:49:04 -0700 | |
---|---|---|
committer | 2015-08-08 17:38:18 -0700 | |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /app-text/docx2txt | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'app-text/docx2txt')
-rw-r--r-- | app-text/docx2txt/Manifest | 3 | ||||
-rw-r--r-- | app-text/docx2txt/docx2txt-1.2.ebuild | 30 | ||||
-rw-r--r-- | app-text/docx2txt/docx2txt-1.3.ebuild | 29 | ||||
-rw-r--r-- | app-text/docx2txt/docx2txt-1.4.ebuild | 29 | ||||
-rw-r--r-- | app-text/docx2txt/files/docx2txt-1.1-paragraph-newline.patch | 11 | ||||
-rw-r--r-- | app-text/docx2txt/metadata.xml | 11 |
6 files changed, 113 insertions, 0 deletions
diff --git a/app-text/docx2txt/Manifest b/app-text/docx2txt/Manifest new file mode 100644 index 000000000000..4bfa9704e762 --- /dev/null +++ b/app-text/docx2txt/Manifest @@ -0,0 +1,3 @@ +DIST docx2txt-1.2.tgz 28483 SHA256 33649d1e8c4f86df897d478376cf76bd9f2aed27a952aaa96c615bce976488cf SHA512 ba5884c4d85e23aad26f74727b40e2d9d43cdf2e63f270486cbbfed5ef431f44f8f40a2583d3185fa3c16a97d9cd78e84feaf8f1f7be78ae9e1662e04a2013d6 WHIRLPOOL 8bf767eee6ec4768fddefc0c480bf6f5c41f21c7e5128771ff465de2884654ef462c6b226f4c01f0ff244c8f73f5edade184240d3854f942c2102b53c00a3cdb +DIST docx2txt-1.3.tgz 29953 SHA256 ece1689e204c961a962bb339b87ecd9fb009cdc01a87a4d658819a3313a90ece SHA512 9ad74558074cd3e72b0d2e6541dc56d7b74d59d6313fb0cde1b2f02a0e1cdb05d705a650c0dde02e5b3a683f8ee6ab2fb5b865301f4213cd3e8770cd9e4d0d97 WHIRLPOOL 3580c0caa69f5d35963daf17f637452e02d748eb7eb02579049f087d35a202c5f611bbee9dc8cbd53a98776f77870379f83316c1840ab2105cd98600009abc4e +DIST docx2txt-1.4.tgz 31302 SHA256 b297752910a404c1435e703d5aedb4571222bd759fa316c86ad8c8bbe58c6d1b SHA512 5e59cd4065f409c20e17b29d3935a2637147392e86a325b28b78748d3b3867ce91f14f3349621b3c95b2ce6a8e38e33cf0816d1f9dccbebfdde9ba29fbd7f5b3 WHIRLPOOL 7f9f53c4aaa45a60ffa4a4e19b727e0898c9d39dabf3685317ee664a8723ed75fe8da4711ce06b8b06132ce304e29613fef331b53d0e54551e79fb1ea67fdf76 diff --git a/app-text/docx2txt/docx2txt-1.2.ebuild b/app-text/docx2txt/docx2txt-1.2.ebuild new file mode 100644 index 000000000000..c91c6e351bf3 --- /dev/null +++ b/app-text/docx2txt/docx2txt-1.2.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=4 + +inherit eutils + +DESCRIPTION="Convert MS Office docx files to plain text" +HOMEPAGE="http://docx2txt.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tgz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="app-arch/unzip + dev-lang/perl" + +src_prepare() { + epatch "${FILESDIR}"/${PN}-1.1-paragraph-newline.patch +} + +src_compile() { :; } + +src_install() { + newbin docx2txt.pl docx2txt + dodoc docx2txt.config README ChangeLog ToDo AUTHORS +} diff --git a/app-text/docx2txt/docx2txt-1.3.ebuild b/app-text/docx2txt/docx2txt-1.3.ebuild new file mode 100644 index 000000000000..1c559a7c7f7b --- /dev/null +++ b/app-text/docx2txt/docx2txt-1.3.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit eutils + +DESCRIPTION="Convert MS Office docx files to plain text" +HOMEPAGE="http://docx2txt.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tgz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND="app-arch/unzip + dev-lang/perl" + +src_prepare() { + epatch "${FILESDIR}"/${PN}-1.1-paragraph-newline.patch +} + +src_compile() { :; } + +src_install() { + newbin docx2txt.pl docx2txt + dodoc docx2txt.config README ChangeLog ToDo AUTHORS +} diff --git a/app-text/docx2txt/docx2txt-1.4.ebuild b/app-text/docx2txt/docx2txt-1.4.ebuild new file mode 100644 index 000000000000..1c559a7c7f7b --- /dev/null +++ b/app-text/docx2txt/docx2txt-1.4.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit eutils + +DESCRIPTION="Convert MS Office docx files to plain text" +HOMEPAGE="http://docx2txt.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tgz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND="app-arch/unzip + dev-lang/perl" + +src_prepare() { + epatch "${FILESDIR}"/${PN}-1.1-paragraph-newline.patch +} + +src_compile() { :; } + +src_install() { + newbin docx2txt.pl docx2txt + dodoc docx2txt.config README ChangeLog ToDo AUTHORS +} diff --git a/app-text/docx2txt/files/docx2txt-1.1-paragraph-newline.patch b/app-text/docx2txt/files/docx2txt-1.1-paragraph-newline.patch new file mode 100644 index 000000000000..7c55b6f1fe42 --- /dev/null +++ b/app-text/docx2txt/files/docx2txt-1.1-paragraph-newline.patch @@ -0,0 +1,11 @@ +--- docx2txt-1.1/docx2txt.pl.orig ++++ docx2txt-1.1/docx2txt.pl +@@ -312,7 +312,7 @@ + $para =~ s/<.*?>//og; + return justify($align,$para) if $align; + +- return $para; ++ return $para . $config_newLine; + } + + diff --git a/app-text/docx2txt/metadata.xml b/app-text/docx2txt/metadata.xml new file mode 100644 index 000000000000..2ec4c3325d53 --- /dev/null +++ b/app-text/docx2txt/metadata.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer> + <email>radhermit@gentoo.org</email> + <name>Tim Harder</name> + </maintainer> + <upstream> + <remote-id type="sourceforge">docx2txt</remote-id> + </upstream> +</pkgmetadata> |