Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
O
ORG.Asm
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
23
Issues
23
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
ORG.Asm
ORG.Asm
Commits
e98adb8d
Commit
e98adb8d
authored
Aug 15, 2015
by
Eric Coissac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
patch of the distutil extension for working with pip install
parent
f1e4f7ac
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
2 deletions
+18
-2
install.py
distutils.ext/obidistutils/command/install.py
+1
-1
install_sphinx.py
distutils.ext/obidistutils/command/install_sphinx.py
+16
-0
version.py
python/orgasm/version.py
+1
-1
No files found.
distutils.ext/obidistutils/command/install.py
View file @
e98adb8d
...
...
@@ -10,5 +10,5 @@ class install(install_ori):
def
__init__
(
self
,
dist
):
install_ori
.
__init__
(
self
,
dist
)
self
.
sub_commands
.
insert
(
0
,
(
'build'
,
lambda
self
:
True
))
#
self.sub_commands.insert(0, ('build',lambda self: True))
self
.
sub_commands
.
append
((
'install_sphinx'
,
lambda
self
:
self
.
distribution
.
serenity
))
distutils.ext/obidistutils/command/install_sphinx.py
View file @
e98adb8d
...
...
@@ -43,4 +43,19 @@ class install_sphinx(Command):
self
.
copy_file
(
os
.
path
.
join
(
epub
),
os
.
path
.
join
(
self
.
install_doc
,
os
.
path
.
split
(
epub
)[
1
]))
def
get_outputs
(
self
):
directory
=
os
.
path
.
join
(
self
.
install_doc
,
'html'
)
files
=
[
os
.
path
.
join
(
self
.
install_doc
,
'html'
,
f
)
for
dp
,
dn
,
filenames
in
os
.
walk
(
directory
)
for
f
in
filenames
]
# @UnusedVariable
directory
=
os
.
path
.
join
(
self
.
build_dir
,
'man'
)
files
.
append
(
os
.
path
.
join
(
self
.
install_doc
,
'man'
,
'man1'
,
f
)
for
dp
,
dn
,
filenames
in
os
.
walk
(
directory
)
for
f
in
filenames
)
# @UnusedVariable
directory
=
os
.
path
.
join
(
self
.
build_dir
,
'epub'
)
files
.
append
(
os
.
path
.
join
(
self
.
install_doc
,
f
)
for
dp
,
dn
,
filenames
in
os
.
walk
(
directory
)
# @UnusedVariable
for
f
in
glob
.
glob
(
os
.
path
.
join
(
dp
,
'*.epub'
))
)
return
files
\ No newline at end of file
python/orgasm/version.py
View file @
e98adb8d
major
=
0
minor
=
'0a
5
'
minor
=
'0a
7
'
serial
=
'alpha'
version
=
"
%2
d.
%
s"
%
(
major
,
minor
)
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