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 /app-cdr/gtkcdlabel | |
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-cdr/gtkcdlabel')
-rw-r--r-- | app-cdr/gtkcdlabel/Manifest | 2 | ||||
-rw-r--r-- | app-cdr/gtkcdlabel/gtkcdlabel-1.12.ebuild | 32 | ||||
-rw-r--r-- | app-cdr/gtkcdlabel/gtkcdlabel-1.14-r1.ebuild | 37 | ||||
-rw-r--r-- | app-cdr/gtkcdlabel/metadata.xml | 8 |
4 files changed, 79 insertions, 0 deletions
diff --git a/app-cdr/gtkcdlabel/Manifest b/app-cdr/gtkcdlabel/Manifest new file mode 100644 index 000000000000..f620178be1c6 --- /dev/null +++ b/app-cdr/gtkcdlabel/Manifest @@ -0,0 +1,2 @@ +DIST gtkcdlabel-1.12.tar.bz2 30054 SHA256 a2db925b4b7afc748465257872ffa5e5a7ba0a1545244431247ce506d0999a6b SHA512 7723dc986b89d7f0a296305b5933718f694939a000c9a3bd5f32acb6fc7e541e6a005f8826710b87f27c08aa616be06d83ea1dc1dc51b05fe8b6a776fc780b8f WHIRLPOOL 025dbf468a65dd2f673d74d38524e7a589da7d9dc60772b0ff165eeb3a7b6a8e940b1d9a5cc790b83e44209b687c7b5817ffcc18f50fb1047f7f00138abc63a0 +DIST gtkcdlabel-1.14.tar.bz2 36397 SHA256 df3307744822cde89632da8a83bae7e8e7c3754ed4738cf559c4be14cc66c303 SHA512 35dde20c73a38cb1dc61b42a8f54cc78d7b3db90b88cbf45f48ccf5eabe95333c5f61f4e8cd77ac1fe4f9faeb55acf944df9fb8bf363343da5bad8cc81115c6e WHIRLPOOL 152b3c02e3ecf37a7d0bc1eaa4efec885c2721b05f73d3d4f4d2cc52d25d46aedce41f3be3c919256793fa25c6795c26fcde5b5e778959969d9dddecc98fcdbb diff --git a/app-cdr/gtkcdlabel/gtkcdlabel-1.12.ebuild b/app-cdr/gtkcdlabel/gtkcdlabel-1.12.ebuild new file mode 100644 index 000000000000..e0abd64a7f1b --- /dev/null +++ b/app-cdr/gtkcdlabel/gtkcdlabel-1.12.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="3" +PYTHON_DEPEND="2:2.6" + +inherit python + +DESCRIPTION="a GUI frontend to cdlabelgen which is a program that can generate a variety of CD tray covers" +HOMEPAGE="http://gtkcdlabel.sourceforge.net" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 ppc sparc x86" +IUSE="" + +DEPEND=">=app-cdr/cdlabelgen-3 + dev-python/pygtk" +RDEPEND="${DEPEND}" + +src_prepare() { + python_convert_shebangs -r 2 . +} + +src_install() { + dobin usr/bin/${PN}.py || die "dobin failed" + insinto /usr/share + doins -r usr/share/{applications,${PN},pixmaps} || die "doins failed" + dodoc usr/share/doc/${PN}/{AUTHORS,README} +} diff --git a/app-cdr/gtkcdlabel/gtkcdlabel-1.14-r1.ebuild b/app-cdr/gtkcdlabel/gtkcdlabel-1.14-r1.ebuild new file mode 100644 index 000000000000..95d8612e33bf --- /dev/null +++ b/app-cdr/gtkcdlabel/gtkcdlabel-1.14-r1.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +PYTHON_COMPAT=( python2_7 ) + +inherit python-single-r1 + +DESCRIPTION="a GUI frontend to cdlabelgen which is a program that can generate a variety of CD tray covers" +HOMEPAGE="http://gtkcdlabel.sourceforge.net" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="" + +DEPEND="${PYTHON_DEPS} + >=app-cdr/cdlabelgen-4 + dev-python/pygtk[${PYTHON_USEDEP}]" +RDEPEND="${DEPEND}" + +REQUIRED_USE=${PYTHON_REQUIRED_USE} + +S=${WORKDIR} + +src_prepare() { + python_fix_shebang . +} + +src_install() { + dobin usr/bin/${PN}.py || die "dobin failed" + insinto /usr/share + doins -r usr/share/{applications,${PN},pixmaps} || die "doins failed" + dodoc usr/share/doc/${PN}/{AUTHORS,README} +} diff --git a/app-cdr/gtkcdlabel/metadata.xml b/app-cdr/gtkcdlabel/metadata.xml new file mode 100644 index 000000000000..37d0a75406c0 --- /dev/null +++ b/app-cdr/gtkcdlabel/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>media-optical</herd> + <upstream> + <remote-id type="sourceforge">gtkcdlabel</remote-id> + </upstream> +</pkgmetadata> |