Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use "git describe" to append a local version label #262

Merged
merged 1 commit into from
Mar 13, 2020

Conversation

shr-project
Copy link
Contributor

and small fix for superflore-datetime.inc.

setup.py Outdated Show resolved Hide resolved
setup.py Outdated
@@ -24,7 +41,7 @@

setup(
name='superflore',
version='0.3.0',
version=get_version_from_git_describe(),
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@tfoote does this disrupt anything for releases?

Copy link
Contributor

@herb-kuta-lge herb-kuta-lge Dec 18, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The release step that previously created a commit to change the value of version is replaced by one that adds a tag. @allenh1 < Would this be too much of a disruption?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've dropped this controversial commit from the PR and added various other improvements instead. Please re-review.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since I intend to someday propose an alternative implementation that addresses Tully's objections, I now think it would make more sense to create a new PR for the bitbake generator changes and just have the setup.py commit be in this PR.

@allenh1 allenh1 requested a review from tfoote December 17, 2019 14:17
@allenh1
Copy link
Collaborator

allenh1 commented Dec 17, 2019

@tfoote please review this one -- you know quite a bit more than I do about this.

@allenh1 allenh1 removed this from the Version 0.3.1 milestone Dec 17, 2019
@shr-project
Copy link
Contributor Author

@herb-kuta-lge FYI

Copy link
Member

@tfoote tfoote left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a neat trick, however I have two conceptual problems with it.

First is that you should generally never use external resources in your setup.py It creates a depedency in the tool that you use to list your dependencies. In this case, if you don't have the python git module installed you cannot install the package.

Secondly this assumes that there's always a git repository behind the deployment. There are alternative deployment mechanisms that could be used such as a tarball or debian package, or pypi none of those would work.

Along those same lines if you have a local checkout, and you make a custom tagged version you could end up not knowing what "version" your running. And it's a real problem for browsing through the code a user cannot know what version of the code is deployed or installed on their system from an editor.

@shr-project shr-project force-pushed the jansa/version branch 5 times, most recently from ac5479a to 661e9e3 Compare February 4, 2020 03:50
@shr-project shr-project changed the title Use git describe for version Various improvements for bitbake generator Feb 4, 2020
Copy link
Contributor

@herb-kuta-lge herb-kuta-lge left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this should be implemented by requiring that --dry-run be specified when running superflore-gen-oe-recipes.

And README.md needs to be updated.

@shr-project
Copy link
Contributor Author

@herb-kuta-lge requested to split this pull request into smaller ones with separate issue tickets and to leave this original one for setup.py change he plans to update with different implementation based on @tfoote's feedback. I've created:
#265
#266
#267
#268
#269
#270
to cover the other changes which were here yesterday.

@shr-project shr-project changed the title Various improvements for bitbake generator Use git describe for version Feb 5, 2020
@herb-kuta-lge herb-kuta-lge self-assigned this Feb 21, 2020
@herb-kuta-lge herb-kuta-lge changed the title Use git describe for version Use "git describe" to append a local version label Feb 28, 2020
@herb-kuta-lge
Copy link
Contributor

@tfoote < Please review the latest implementation. I believe it addresses all of your concerns.

@herb-kuta-lge herb-kuta-lge dismissed their stale review February 28, 2020 05:16

The commits my comments applied to were moved to other PR-s.

setup.py Outdated
@@ -2,6 +2,51 @@

import sys
from setuptools import find_packages, setup
import git
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is this line needed?

Copy link
Contributor

@herb-kuta-lge herb-kuta-lge Mar 2, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No; I'll remove it (and the next line).

"superflore-gen-oe-recipes" generates a setting containing the version
of the program that was used to generate the recipes. So that it's
possible to know whether a released version has been used, automatically
append to the version a local version label based on the output from
"git describe --tags --dirty --broken".
Copy link
Member

@tfoote tfoote left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for the refactor it resolves my concerns.

@allenh1 allenh1 merged commit a008d82 into ros-infrastructure:master Mar 13, 2020
@shr-project shr-project deleted the jansa/version branch March 20, 2020 18:33
zffgithub pushed a commit to zffgithub/superflore that referenced this pull request Apr 11, 2023
…rastructure#262)

"superflore-gen-oe-recipes" generates a setting containing the version
of the program that was used to generate the recipes. So that it's
possible to know whether a released version has been used, automatically
append to the version a local version label based on the output from
"git describe --tags --dirty --broken".

Co-authored-by: Herb Kuta <herb.kuta@lge.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants