Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
ROS Java Build Tools
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CeTI
ROS
ROS Java Packages
ROS Java Build Tools
Commits
1b5e4df5
Commit
1b5e4df5
authored
3 years ago
by
Sebastian Ebert
Browse files
Options
Downloads
Patches
Plain Diff
fixed package gen for python 3
parent
5a8fd301
Branches
Branches containing commit
Tags
0.3.1
Tags containing commit
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/rosjava_build_tools/create_package.py
+1
-1
1 addition, 1 deletion
src/rosjava_build_tools/create_package.py
src/rosjava_build_tools/release.py
+1
-1
1 addition, 1 deletion
src/rosjava_build_tools/release.py
with
2 additions
and
2 deletions
src/rosjava_build_tools/create_package.py
+
1
−
1
View file @
1b5e4df5
...
@@ -87,7 +87,7 @@ def populate_repo(repo_path, package_type):
...
@@ -87,7 +87,7 @@ def populate_repo(repo_path, package_type):
author
=
utils
.
author_name
()
author
=
utils
.
author_name
()
repo_name
=
os
.
path
.
basename
(
repo_path
)
repo_name
=
os
.
path
.
basename
(
repo_path
)
templates
=
get_templates
(
package_type
)
templates
=
get_templates
(
package_type
)
for
filename
,
template
in
templates
.
iter
items
():
for
filename
,
template
in
templates
.
items
():
contents
=
instantiate_template
(
template
,
repo_name
,
author
)
contents
=
instantiate_template
(
template
,
repo_name
,
author
)
try
:
try
:
p
=
os
.
path
.
abspath
(
os
.
path
.
join
(
repo_path
,
filename
))
p
=
os
.
path
.
abspath
(
os
.
path
.
join
(
repo_path
,
filename
))
...
...
This diff is collapsed.
Click to expand it.
src/rosjava_build_tools/release.py
+
1
−
1
View file @
1b5e4df5
...
@@ -18,7 +18,7 @@ def scrape_for_release_message_packages(track):
...
@@ -18,7 +18,7 @@ def scrape_for_release_message_packages(track):
index
=
rosdistro
.
get_index
(
url
)
index
=
rosdistro
.
get_index
(
url
)
cache
=
rosdistro
.
get_release_cache
(
index
,
'
kinetic
'
)
cache
=
rosdistro
.
get_release_cache
(
index
,
'
kinetic
'
)
packages
=
[]
packages
=
[]
for
package_name
,
package_string
in
cache
.
package_xmls
.
iter
items
():
for
package_name
,
package_string
in
cache
.
package_xmls
.
items
():
package
=
catkin_pkg
.
package
.
parse_package_string
(
package_string
)
package
=
catkin_pkg
.
package
.
parse_package_string
(
package_string
)
#print(" Name: %s" % package_name)
#print(" Name: %s" % package_name)
#print(" Buildtool Depends %s" % package.build)
#print(" Buildtool Depends %s" % package.build)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment