diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /dev-php/doctrine | |
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-php/doctrine')
-rw-r--r-- | dev-php/doctrine/Manifest | 2 | ||||
-rw-r--r-- | dev-php/doctrine/doctrine-1.2.5.ebuild | 26 | ||||
-rw-r--r-- | dev-php/doctrine/doctrine-2.4.6.ebuild | 25 | ||||
-rw-r--r-- | dev-php/doctrine/metadata.xml | 8 |
4 files changed, 61 insertions, 0 deletions
diff --git a/dev-php/doctrine/Manifest b/dev-php/doctrine/Manifest new file mode 100644 index 000000000000..c0e5b9661ff0 --- /dev/null +++ b/dev-php/doctrine/Manifest @@ -0,0 +1,2 @@ +DIST doctrine-1.2.5.tar.gz 659173 SHA256 382f7d91f2919cf9afcbf7ada8fc67265f7225caa8e6f5d98d20e4d2c3da9ec9 SHA512 c72f4e829a92b011af0bd96d2f8a780c3106afb57a9677a21aed683473ff00aebdf7143a276c7cc70f1b142196968b5e2e5e1f744dba5c8ae1267b867b4e0310 WHIRLPOOL dc2e6fccd3f6e88c44b80cf165a136941feafeea3bf5424c35be6bb926c49e95bb652e61b899e80ff86ed88c5e9c7514fdc959a189fe8cb4e1a4a228f46fe8d6 +DIST doctrine-2.4.6.tar.gz 456426 SHA256 7a660eebb0e6b2911057057df8a2f2c475cda8283a926725d06086f854c3538b SHA512 d7aeb58e8c76df384a472df08618a058b70f2b8499de6a3157c36bde125ab32c7bf4f80d1e6d880502ccfed2db704f3218a6f1f1ecbf603cc828e2a757c366b5 WHIRLPOOL 6376a6b15139cdde34ccdab2ef43dc3adc0ce5f82eb32473ed8cc49d049e94515d4c183b4793b6707df0aadcb414519612d6de8db092b2a229a68c4bfd54721d diff --git a/dev-php/doctrine/doctrine-1.2.5.ebuild b/dev-php/doctrine/doctrine-1.2.5.ebuild new file mode 100644 index 000000000000..8ac9ea090f78 --- /dev/null +++ b/dev-php/doctrine/doctrine-1.2.5.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +MY_P="${PN}1-${PV}" +DESCRIPTION="An object relational mapper for PHP5" +HOMEPAGE="http://www.doctrine-project.org/" +SRC_URI="https://github.com/${PN}/${PN}1/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="LGPL-2.1 MIT BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND=">=dev-lang/php-5.2.3:*[cli,pdo]" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${MY_P}" + +src_install() { + insinto /usr/share/php + doins -r lib/Doctrine + doins lib/Doctrine.php +} diff --git a/dev-php/doctrine/doctrine-2.4.6.ebuild b/dev-php/doctrine/doctrine-2.4.6.ebuild new file mode 100644 index 000000000000..1f71a8a60162 --- /dev/null +++ b/dev-php/doctrine/doctrine-2.4.6.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +MY_P="${PN}2-${PV}" +DESCRIPTION="An object relational mapper for PHP5" +HOMEPAGE="http://www.doctrine-project.org/" +SRC_URI="https://github.com/${PN}/${PN}2/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="LGPL-2.1 MIT BSD" +SLOT="2" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND=">=dev-lang/php-5.3.2:*[cli,pdo]" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${MY_P}" + +src_install() { + insinto /usr/share/php + doins -r lib/Doctrine +} diff --git a/dev-php/doctrine/metadata.xml b/dev-php/doctrine/metadata.xml new file mode 100644 index 000000000000..ff5a7ade9110 --- /dev/null +++ b/dev-php/doctrine/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>php</herd> + <upstream> + <remote-id type="github">doctrine/doctrine2</remote-id> + </upstream> +</pkgmetadata> |