Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
pyrasite
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kirill Smelkov
pyrasite
Commits
b4fba31c
Commit
b4fba31c
authored
Mar 17, 2012
by
Luke Macken
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Prep for 2.0
parent
49184919
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
26 deletions
+5
-26
pkgs/arch/PKGBUILD
pkgs/arch/PKGBUILD
+0
-19
pyrasite.spec
pyrasite.spec
+3
-5
pyrasite/__init__.py
pyrasite/__init__.py
+1
-1
setup.py
setup.py
+1
-1
No files found.
pkgs/arch/PKGBUILD
deleted
100644 → 0
View file @
49184919
# Maintainer: Nathaniel Case <qalthos@gmail.com>
pkgname
=
python2-pyrasite
pkgver
=
2.0beta4
pkgrel
=
4
pkgdesc
=
"Code injection and introspection of running Python processes"
arch
=(
'i686'
'x86_64'
)
url
=
"http://pyrasite.com"
license
=(
'GPL3'
)
depends
=(
'python2'
'gdb'
'python2-meliae'
'python2-sphinx'
'python2-psutil'
'libwebkit3'
'python2-pycallgraph'
'python2-gobject'
)
source
=(
http://pypi.python.org/packages/source/p/pyrasite/pyrasite-
$pkgver
.tar.gz
)
md5sums
=(
'218d05f509fee9d9111256f6146be3ae'
)
build
()
{
cd
$startdir
/src/pyrasite-
$pkgver
python2 ./setup.py
install
--root
=
$pkgdir
sed
-i
-e
's,^#!/usr/bin.*,#!/usr/bin/env python2,'
$pkgdir
/usr/bin/
*
}
# vim:set ts=2 sw=2 et:
p
kgs/fedora/p
yrasite.spec
→
pyrasite.spec
View file @
b4fba31c
%global betaver beta6
Name: pyrasite
Version: 2.0
Release:
0.1.%{betaver}
%{?dist}
Release:
1
%{?dist}
Summary: Code injection and monitoring of running Python processes
Group: Development/Languages
License: GPLv3
URL: http://pyrasite.com
Source0: http://pypi.python.org/packages/source/p/%{name}/%{name}-%{version}
%{betaver}
.tar.gz
Source0: http://pypi.python.org/packages/source/p/%{name}/%{name}-%{version}.tar.gz
BuildArch: noarch
BuildRequires: python-devel
...
...
@@ -23,7 +21,7 @@ It is comprised of a command-line tool, and a Python API. This package
also comes with a variety of example payloads.
%prep
%setup -q
-n %{name}-%{version}%{betaver}
%setup -q
%build
%{__python} setup.py build
...
...
pyrasite/__init__.py
View file @
b4fba31c
...
...
@@ -3,7 +3,7 @@ from .inspect import ObjectInspector
from
.ipc
import
PyrasiteIPC
from
.reverse
import
ReverseConnection
,
ReversePythonConnection
__version__
=
'2.0
beta6
'
__version__
=
'2.0'
__all__
=
(
'CodeInjector'
,
'ObjectInspector'
,
'PyrasiteIPC'
,
'ReverseConnection'
,
'ReversePythonConnection'
)
__license__
=
"""
\
...
...
setup.py
View file @
b4fba31c
from
setuptools
import
setup
,
find_packages
version
=
'2.0
beta6
'
version
=
'2.0'
f
=
open
(
'README.rst'
)
long_description
=
f
.
read
().
split
(
'split here'
)[
1
]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment