From 56bd759df1d0c750a065b8c845e93d5dfa6b549d Mon Sep 17 00:00:00 2001 From: "Robin H. Johnson" Date: Sat, 8 Aug 2015 13:49:04 -0700 Subject: proj/gentoo: Initial commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 X-Thanks: Alec Warner - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring - wrote much python to improve cvs2svn X-Thanks: Rich Freeman - validation scripts X-Thanks: Patrick Lauer - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed --- dev-vcs/guilt/Manifest | 4 ++++ dev-vcs/guilt/guilt-0.32.ebuild | 48 ++++++++++++++++++++++++++++++++++++++++ dev-vcs/guilt/guilt-0.34.ebuild | 49 +++++++++++++++++++++++++++++++++++++++++ dev-vcs/guilt/metadata.xml | 7 ++++++ 4 files changed, 108 insertions(+) create mode 100644 dev-vcs/guilt/Manifest create mode 100644 dev-vcs/guilt/guilt-0.32.ebuild create mode 100644 dev-vcs/guilt/guilt-0.34.ebuild create mode 100644 dev-vcs/guilt/metadata.xml (limited to 'dev-vcs/guilt') diff --git a/dev-vcs/guilt/Manifest b/dev-vcs/guilt/Manifest new file mode 100644 index 000000000000..ebda16759f87 --- /dev/null +++ b/dev-vcs/guilt/Manifest @@ -0,0 +1,4 @@ +DIST guilt-0.32.tar.bz2 42248 SHA256 813ca10e4c803b6d387a8458dbbad2b1046fe0e2f77c60bc050bc0dc272e5162 SHA512 d2e59d8a04e072de36229b2ff5e6c944e87bd0dc18f83804f529807aa0b97aba1c37644ab6d8859abb58a9fe04d2f6562c77a25c7cd8fe4ad7631a1b77a112f9 WHIRLPOOL 91c270eb4bc2902dce1f75b9b551ba96ba56ff616e6a6ddbd2ebc86f02d5dedc990eddce817560f59465fb30fd868817ce1f5b42da99a52c30aa95f95fab39d5 +DIST guilt-0.34.tar.bz2 43563 SHA256 be379dced950d512df0f33dfd385384aba2db8f1eb5a55c11fe2ba28317c8e33 SHA512 9c46dddad3e879939d2b31720660c4b6d62d46114cf4731aa7c826554b1e97eeff044e5373f5bf2f7539d49d969fc451a8a4392f05880ed444a2b0d76a7d22d4 WHIRLPOOL 41568c9dcc547944032aee824d11983f81530c643825755e34efe01a1395168fe1ad7072af7f5018d01c53c23ca379ddf2797749f37a66468a10c9bd035ab6bd +DIST guilt-manpages-0.32.tar.bz2 9503 SHA256 8b74f34072d17894eabf1c14abcaf681a5658beee13c99fed082ac95e4b4009e SHA512 6174cdd6e7262efb06a2c212de309e1268c8b05e4aeeaace7f8e5874700f9b62dcc82ca9c596987f81dc7a64e525232816b516f47abcfe26aece438fe571f788 WHIRLPOOL 7ca734852eee65fa85a5a2e009d3eb0e694f6b00952c0c8785745befd0d92b1374dd5531d1d784e4f90d96c34c51c7a5bffa1f321d45042d4a69f4ed9514d583 +DIST guilt-manpages-0.34.tar.bz2 7566 SHA256 0e505de837f3039f96d4d393434034e23e9c8a8e5db48bea75d197cdd2d92b4e SHA512 e5056038d2f646c8fc78f9bc6e2afa81de8767a071f55735125eff34f7d8bb15509613a21545f868f931ee5bc24c41cffacaca047180adb1485ab76ab191be76 WHIRLPOOL ab928d575a29de8383c998dfd3ddb5667c133474ab8f79655036ebe67f7079d9f3b77cfa08dbe739e2db7bbbb430cc47bc5f24973dfe2f27e8ade4e0b9e9c428 diff --git a/dev-vcs/guilt/guilt-0.32.ebuild b/dev-vcs/guilt/guilt-0.32.ebuild new file mode 100644 index 000000000000..84273330809a --- /dev/null +++ b/dev-vcs/guilt/guilt-0.32.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +DESCRIPTION="A series of bash scripts which add a quilt-like interface to git" +HOMEPAGE="http://www.kernel.org/pub/linux/kernel/people/jsipek/guilt/" +SRC_URI="mirror://kernel/linux/kernel/people/jsipek/${PN}/${P}.tar.bz2 + mirror://gentoo/${PN}-manpages-${PV}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 ~ia64 ppc ~sparc x86" +IUSE="doc" + +RDEPEND="dev-vcs/git" +DEPEND="${RDEPEND} + doc? ( app-text/asciidoc app-text/xmlto )" + +RESTRICT="test" + +src_unpack() { + unpack ${A} + cd "${S}" + + sed -i \ + -e '/^PREFIX/s:=.*:=/usr:' \ + -e "/^htmldir/s:=.*:=/usr/share/doc/${PF}/html:" \ + -e "/^VERSION/s:=.*:=${PV}:" \ + Makefile */Makefile || die +} + +src_compile() { + if use doc ; then + emake -C Documentation html || die + fi +} + +src_install() { + emake install DESTDIR="${D}" || die + + dodoc Documentation/{Contributing,Features,HOWTO,Requirements} + doman Documentation/*.[0-9] || die + + if use doc ; then + dodir "/usr/share/doc/${PF}/html" + emake -C Documentation install-html DESTDIR="${D}" || die + fi +} diff --git a/dev-vcs/guilt/guilt-0.34.ebuild b/dev-vcs/guilt/guilt-0.34.ebuild new file mode 100644 index 000000000000..78387ba939f3 --- /dev/null +++ b/dev-vcs/guilt/guilt-0.34.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +DESCRIPTION="A series of bash scripts which add a quilt-like interface to git" +HOMEPAGE="http://www.kernel.org/pub/linux/kernel/people/jsipek/guilt/" +# create manpages with "make -C Documentation man" +SRC_URI="mirror://kernel/linux/kernel/people/jsipek/${PN}/${P}.tar.bz2 + mirror://gentoo/${PN}-manpages-${PV}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ia64 ~ppc ~sparc ~x86" +IUSE="doc" + +RDEPEND="dev-vcs/git" +DEPEND="${RDEPEND} + doc? ( app-text/asciidoc app-text/xmlto )" + +RESTRICT="test" + +src_unpack() { + unpack ${A} + cd "${S}" + + sed -i \ + -e '/^PREFIX/s:=.*:=/usr:' \ + -e "/^htmldir/s:=.*:=/usr/share/doc/${PF}/html:" \ + -e "/^VERSION/s:=.*:=${PV}:" \ + Makefile */Makefile || die +} + +src_compile() { + if use doc ; then + emake -C Documentation html || die + fi +} + +src_install() { + emake install DESTDIR="${D}" || die + + dodoc Documentation/{Contributing,Features,HOWTO,Requirements} + doman Documentation/*.[0-9] || die + + if use doc ; then + dodir "/usr/share/doc/${PF}/html" + emake -C Documentation install-html DESTDIR="${D}" || die + fi +} diff --git a/dev-vcs/guilt/metadata.xml b/dev-vcs/guilt/metadata.xml new file mode 100644 index 000000000000..ff62877c67ae --- /dev/null +++ b/dev-vcs/guilt/metadata.xml @@ -0,0 +1,7 @@ + + + + + maintainer-needed@gentoo.org + + -- cgit v1.2.3-65-gdbad