* [gentoo-commits] proj/sci:master commit in: dev-python/line_profiler/
@ 2015-08-27 15:01 Justin Lecher
0 siblings, 0 replies; 3+ messages in thread
From: Justin Lecher @ 2015-08-27 15:01 UTC (permalink / raw
To: gentoo-commits
commit: 885ad128e0e797732b642b92f6d48693ae3bbe1a
Author: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Wed Aug 26 07:55:31 2015 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Wed Aug 26 07:55:31 2015 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=885ad128
dev-python/line_profiler: New ebuild wirtten by me
Package-Manager: portage-2.2.20.1
dev-python/line_profiler/ChangeLog | 10 +++++++
dev-python/line_profiler/line_profiler-1.0.ebuild | 1 +
dev-python/line_profiler/line_profiler-9999.ebuild | 35 ++++++++++++++++++++++
dev-python/line_profiler/metadata.xml | 18 +++++++++++
4 files changed, 64 insertions(+)
diff --git a/dev-python/line_profiler/ChangeLog b/dev-python/line_profiler/ChangeLog
new file mode 100644
index 0000000..61d0896
--- /dev/null
+++ b/dev-python/line_profiler/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for dev-python/line_profiler
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Id$
+
+*line_profiler-1.0 (26 Aug 2015)
+*line_profiler-9999 (26 Aug 2015)
+
+ 26 Aug 2015; Marius Brehler <marbre@linux.sungazer.de>
+ +line_profiler-1.0.ebuild, +line_profiler-9999.ebuild, +metadata.xml:
+ dev-python/line_profiler: New ebuild wirtten by me
diff --git a/dev-python/line_profiler/line_profiler-1.0.ebuild b/dev-python/line_profiler/line_profiler-1.0.ebuild
new file mode 120000
index 0000000..fb2359a
--- /dev/null
+++ b/dev-python/line_profiler/line_profiler-1.0.ebuild
@@ -0,0 +1 @@
+line_profiler-9999.ebuild
\ No newline at end of file
diff --git a/dev-python/line_profiler/line_profiler-9999.ebuild b/dev-python/line_profiler/line_profiler-9999.ebuild
new file mode 100644
index 0000000..51b1bd9
--- /dev/null
+++ b/dev-python/line_profiler/line_profiler-9999.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=( python{2_7,3_3,3_4} )
+
+inherit distutils-r1
+
+DESCRIPTION="Line-by-line profiling for Python"
+HOMEPAGE="https://github.com/rkern/line_profiler"
+
+if [ ${PV} == "9999" ] ; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/rkern/${PN}.git git://github.com/rkern/${PN}.git"
+else
+ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+ KEYWORDS="~amd64"
+fi
+
+LICENSE="BSD"
+SLOT="0"
+IUSE="test"
+
+DEPEND="
+ test? ( dev-python/pytest[${PYTHON_USEDEP}] )
+ "
+
+python_test() {
+ distutils_install_for_testing
+ cd "${TEST_DIR}"/lib || die
+ cp "${S}"/setup.py "${TEST_DIR}"/lib/ || die
+ cp -r "${S}"/tests "${TEST_DIR}"/lib/ || die
+ py.test || die
+}
diff --git a/dev-python/line_profiler/metadata.xml b/dev-python/line_profiler/metadata.xml
new file mode 100644
index 0000000..ea55839
--- /dev/null
+++ b/dev-python/line_profiler/metadata.xml
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <herd>sci</herd>
+ <maintainer>
+ <email>marbre@linux.sungazer.de</email>
+ <name>Marius Brehler</name>
+ </maintainer>
+ <longdescription>
+ line_profiler is a module for doing line-by-line profiling of
+ functions. kernprof is a convenient script for running either
+ line_profiler or the Python standard library's cProfile or profile
+ modules, depending on what is available.
+ </longdescription>
+ <upstream>
+ <remote-id type="pypi">line_profiler</remote-id>
+ </upstream>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/line_profiler/
@ 2015-09-23 10:19 Justin Lecher
0 siblings, 0 replies; 3+ messages in thread
From: Justin Lecher @ 2015-09-23 10:19 UTC (permalink / raw
To: gentoo-commits
commit: ec6467ba827183d75a60172cef8165a1d7fa67a7
Author: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Wed Sep 23 06:42:56 2015 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Wed Sep 23 06:42:56 2015 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=ec6467ba
dev-python/line_profiler: Replace symlink
dev-python/line_profiler/line_profiler-1.0.ebuild | 30 +++++++++++++++++++++-
dev-python/line_profiler/line_profiler-9999.ebuild | 11 ++------
2 files changed, 31 insertions(+), 10 deletions(-)
diff --git a/dev-python/line_profiler/line_profiler-1.0.ebuild b/dev-python/line_profiler/line_profiler-1.0.ebuild
deleted file mode 120000
index fb2359a..0000000
--- a/dev-python/line_profiler/line_profiler-1.0.ebuild
+++ /dev/null
@@ -1 +0,0 @@
-line_profiler-9999.ebuild
\ No newline at end of file
diff --git a/dev-python/line_profiler/line_profiler-1.0.ebuild b/dev-python/line_profiler/line_profiler-1.0.ebuild
new file mode 100644
index 0000000..bec34f5
--- /dev/null
+++ b/dev-python/line_profiler/line_profiler-1.0.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=( python{2_7,3_3,3_4} )
+
+inherit distutils-r1
+
+DESCRIPTION="Line-by-line profiling for Python"
+HOMEPAGE="https://github.com/rkern/line_profiler"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+KEYWORDS="~amd64"
+
+LICENSE="BSD"
+SLOT="0"
+IUSE="test"
+
+DEPEND="
+ test? ( dev-python/pytest[${PYTHON_USEDEP}] )
+ "
+
+python_test() {
+ distutils_install_for_testing
+ cd "${TEST_DIR}"/lib || die
+ cp "${S}"/setup.py "${TEST_DIR}"/lib/ || die
+ cp -r "${S}"/tests "${TEST_DIR}"/lib/ || die
+ py.test || die
+}
diff --git a/dev-python/line_profiler/line_profiler-9999.ebuild b/dev-python/line_profiler/line_profiler-9999.ebuild
index 51b1bd9..52f8cef 100644
--- a/dev-python/line_profiler/line_profiler-9999.ebuild
+++ b/dev-python/line_profiler/line_profiler-9999.ebuild
@@ -5,18 +5,11 @@
EAPI=5
PYTHON_COMPAT=( python{2_7,3_3,3_4} )
-inherit distutils-r1
+inherit distutils-r1 git-r3
DESCRIPTION="Line-by-line profiling for Python"
HOMEPAGE="https://github.com/rkern/line_profiler"
-
-if [ ${PV} == "9999" ] ; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/rkern/${PN}.git git://github.com/rkern/${PN}.git"
-else
- SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
- KEYWORDS="~amd64"
-fi
+EGIT_REPO_URI="https://github.com/rkern/${PN}.git git://github.com/rkern/${PN}.git"
LICENSE="BSD"
SLOT="0"
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/line_profiler/
@ 2015-11-17 15:46 Justin Lecher
0 siblings, 0 replies; 3+ messages in thread
From: Justin Lecher @ 2015-11-17 15:46 UTC (permalink / raw
To: gentoo-commits
commit: 7166ba7cbafc5bb11fbe19a522abd710cedb4323
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 17 15:46:33 2015 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Tue Nov 17 15:46:33 2015 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=7166ba7c
Moved to tree
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
dev-python/line_profiler/ChangeLog | 10 --------
dev-python/line_profiler/line_profiler-1.0.ebuild | 29 ----------------------
dev-python/line_profiler/line_profiler-9999.ebuild | 28 ---------------------
dev-python/line_profiler/metadata.xml | 19 --------------
4 files changed, 86 deletions(-)
diff --git a/dev-python/line_profiler/ChangeLog b/dev-python/line_profiler/ChangeLog
deleted file mode 100644
index 61d0896..0000000
--- a/dev-python/line_profiler/ChangeLog
+++ /dev/null
@@ -1,10 +0,0 @@
-# ChangeLog for dev-python/line_profiler
-# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Id$
-
-*line_profiler-1.0 (26 Aug 2015)
-*line_profiler-9999 (26 Aug 2015)
-
- 26 Aug 2015; Marius Brehler <marbre@linux.sungazer.de>
- +line_profiler-1.0.ebuild, +line_profiler-9999.ebuild, +metadata.xml:
- dev-python/line_profiler: New ebuild wirtten by me
diff --git a/dev-python/line_profiler/line_profiler-1.0.ebuild b/dev-python/line_profiler/line_profiler-1.0.ebuild
deleted file mode 100644
index bec34f5..0000000
--- a/dev-python/line_profiler/line_profiler-1.0.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-PYTHON_COMPAT=( python{2_7,3_3,3_4} )
-
-inherit distutils-r1
-
-DESCRIPTION="Line-by-line profiling for Python"
-HOMEPAGE="https://github.com/rkern/line_profiler"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-KEYWORDS="~amd64"
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="test"
-
-DEPEND="
- test? ( dev-python/pytest[${PYTHON_USEDEP}] )
- "
-
-python_test() {
- distutils_install_for_testing
- cd "${TEST_DIR}"/lib || die
- cp "${S}"/setup.py "${TEST_DIR}"/lib/ || die
- cp -r "${S}"/tests "${TEST_DIR}"/lib/ || die
- py.test || die
-}
diff --git a/dev-python/line_profiler/line_profiler-9999.ebuild b/dev-python/line_profiler/line_profiler-9999.ebuild
deleted file mode 100644
index 52f8cef..0000000
--- a/dev-python/line_profiler/line_profiler-9999.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-PYTHON_COMPAT=( python{2_7,3_3,3_4} )
-
-inherit distutils-r1 git-r3
-
-DESCRIPTION="Line-by-line profiling for Python"
-HOMEPAGE="https://github.com/rkern/line_profiler"
-EGIT_REPO_URI="https://github.com/rkern/${PN}.git git://github.com/rkern/${PN}.git"
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="test"
-
-DEPEND="
- test? ( dev-python/pytest[${PYTHON_USEDEP}] )
- "
-
-python_test() {
- distutils_install_for_testing
- cd "${TEST_DIR}"/lib || die
- cp "${S}"/setup.py "${TEST_DIR}"/lib/ || die
- cp -r "${S}"/tests "${TEST_DIR}"/lib/ || die
- py.test || die
-}
diff --git a/dev-python/line_profiler/metadata.xml b/dev-python/line_profiler/metadata.xml
deleted file mode 100644
index 270efb2..0000000
--- a/dev-python/line_profiler/metadata.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <herd>sci</herd>
- <maintainer>
- <email>marbre@linux.sungazer.de</email>
- <name>Marius Brehler</name>
- </maintainer>
- <longdescription>
- line_profiler is a module for doing line-by-line profiling of
- functions. kernprof is a convenient script for running either
- line_profiler or the Python standard library's cProfile or profile
- modules, depending on what is available.
- </longdescription>
- <upstream>
- <remote-id type="pypi">line_profiler</remote-id>
- <remote-id type="github">rkern/line_profiler</remote-id>
- </upstream>
-</pkgmetadata>
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-11-17 15:46 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-27 15:01 [gentoo-commits] proj/sci:master commit in: dev-python/line_profiler/ Justin Lecher
-- strict thread matches above, loose matches on Subject: below --
2015-09-23 10:19 Justin Lecher
2015-11-17 15:46 Justin Lecher
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox