diff options
author | 2015-08-08 13:49:04 -0700 | |
---|---|---|
committer | 2015-08-08 17:38:18 -0700 | |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /dev-java/xml-im-exporter | |
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 'dev-java/xml-im-exporter')
-rw-r--r-- | dev-java/xml-im-exporter/Manifest | 1 | ||||
-rw-r--r-- | dev-java/xml-im-exporter/metadata.xml | 13 | ||||
-rw-r--r-- | dev-java/xml-im-exporter/xml-im-exporter-1.1-r1.ebuild | 31 |
3 files changed, 45 insertions, 0 deletions
diff --git a/dev-java/xml-im-exporter/Manifest b/dev-java/xml-im-exporter/Manifest new file mode 100644 index 000000000000..af34cb9e7deb --- /dev/null +++ b/dev-java/xml-im-exporter/Manifest @@ -0,0 +1 @@ +DIST xml-im-exporter1.1.tgz 235161 SHA256 26b7ec388b39f2094af8d270dde5d84c46839328e5c58446f3dd2e857b153c76 SHA512 a762fe18a90abcc558fe3921038db7338a8bd98d9a7a0fe3ce86d733df5641541663126afcfa06dd1723dc9da205c80e2cf5f38f39ad84300b4750ceb77aa19c WHIRLPOOL 04accb4fedd521a529868c47c138256d158ab3b15d961f357e7d147708a9f392de631c1b96b1de676997a96f3af9b1b070dc7649fdcbd65a13f878917ad1c465 diff --git a/dev-java/xml-im-exporter/metadata.xml b/dev-java/xml-im-exporter/metadata.xml new file mode 100644 index 000000000000..a153dd1cad8d --- /dev/null +++ b/dev-java/xml-im-exporter/metadata.xml @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>java</herd> + <longdescription> + XML Im-/Exporter is a low level library to assist you in the + straight forward process of importing and exporting XML from + and to your Java classes. + </longdescription> + <upstream> + <remote-id type="sourceforge">xml-im-exporter</remote-id> + </upstream> +</pkgmetadata> diff --git a/dev-java/xml-im-exporter/xml-im-exporter-1.1-r1.ebuild b/dev-java/xml-im-exporter/xml-im-exporter-1.1-r1.ebuild new file mode 100644 index 000000000000..caf6a619e99a --- /dev/null +++ b/dev-java/xml-im-exporter/xml-im-exporter-1.1-r1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +JAVA_PKG_IUSE="doc source" + +inherit java-pkg-2 java-ant-2 + +DESCRIPTION="XML Im-/Exporter is a library to assist you in the process of importing and exporting XML" +HOMEPAGE="http://xml-im-exporter.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${PN}${PV}.tgz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="amd64 x86" + +DEPEND=">=virtual/jdk-1.4 + dev-java/ant-core" +RDEPEND=">=virtual/jre-1.4" + +S="${WORKDIR}/${PN}" + +EANT_DOC_TARGET="javadocs" + +src_install() { + java-pkg_newjar "lib/${PN}${PV}.jar" + + dodoc Changes.txt Open-Issues.txt Readme.txt Version.txt + use doc && java-pkg_dojavadoc doc + use source && java-pkg_dosrc src/main/* +} |