Merge pull request #2815 from travier/rename
*: rename master branch to main
This commit is contained in:
commit
195807870a
@ -19,7 +19,7 @@ codestyle: {
|
|||||||
checkout scm
|
checkout scm
|
||||||
shwrap("""
|
shwrap("""
|
||||||
# Ensures that we get refs to aid `git describe`
|
# Ensures that we get refs to aid `git describe`
|
||||||
git fetch origin +refs/heads/master:refs/remotes/origin/master
|
git fetch origin +refs/heads/main:refs/remotes/origin/main
|
||||||
ci/commit-validation.sh
|
ci/commit-validation.sh
|
||||||
""")
|
""")
|
||||||
}
|
}
|
||||||
|
4
.github/workflows/rust-lints.yml
vendored
4
.github/workflows/rust-lints.yml
vendored
@ -2,9 +2,9 @@
|
|||||||
name: Rust
|
name: Rust
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [master]
|
branches: [main]
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [master]
|
branches: [main]
|
||||||
|
|
||||||
env:
|
env:
|
||||||
CARGO_TERM_COLOR: always
|
CARGO_TERM_COLOR: always
|
||||||
|
@ -44,4 +44,4 @@ For more information, see the [project documentation](docs/index.md) or the
|
|||||||
## License
|
## License
|
||||||
|
|
||||||
rpm-ostree includes code licensed under GPLv2+, LGPLv2+, (Apache 2.0 OR MIT).
|
rpm-ostree includes code licensed under GPLv2+, LGPLv2+, (Apache 2.0 OR MIT).
|
||||||
For more information, see [LICENSE](https://github.com/coreos/rpm-ostree/blob/master/LICENSE).
|
For more information, see [LICENSE](https://github.com/coreos/rpm-ostree/blob/main/LICENSE).
|
||||||
|
@ -39,7 +39,7 @@ gitdir=$(realpath $(pwd))
|
|||||||
# require a newer git, we could use `git worktree`.
|
# require a newer git, we could use `git worktree`.
|
||||||
cp -a ${gitdir} ${tmpd}/workdir
|
cp -a ${gitdir} ${tmpd}/workdir
|
||||||
cd ${tmpd}/workdir
|
cd ${tmpd}/workdir
|
||||||
git log --pretty=oneline origin/master..$HEAD | while read logline; do
|
git log --pretty=oneline origin/main..$HEAD | while read logline; do
|
||||||
commit=$(echo ${logline} | cut -f 1 -d ' ')
|
commit=$(echo ${logline} | cut -f 1 -d ' ')
|
||||||
# For merge commits, just check that they're empty (i.e. no conflict
|
# For merge commits, just check that they're empty (i.e. no conflict
|
||||||
# resolution was needed). Otherwise, let's just error out. Conflicts should
|
# resolution was needed). Otherwise, let's just error out. Conflicts should
|
||||||
|
@ -24,5 +24,5 @@ There is `make check` as well as `make vmcheck`. See also what the
|
|||||||
See the [OSTree CONTRIBUTING][contributing] coding style.
|
See the [OSTree CONTRIBUTING][contributing] coding style.
|
||||||
|
|
||||||
[rpm-ostree]: https://github.com/coreos/rpm-ostree
|
[rpm-ostree]: https://github.com/coreos/rpm-ostree
|
||||||
[jenkinsfile]: https://github.com/coreos/rpm-ostree/blob/master/.cci.jenkinsfile
|
[jenkinsfile]: https://github.com/coreos/rpm-ostree/blob/main/.cci.jenkinsfile
|
||||||
[contributing]: https://github.com/ostreedev/ostree/blob/master/docs/CONTRIBUTING.md
|
[contributing]: https://github.com/ostreedev/ostree/blob/master/docs/CONTRIBUTING.md
|
||||||
|
@ -110,7 +110,7 @@ So just do e.g.:
|
|||||||
```
|
```
|
||||||
cd libdnf
|
cd libdnf
|
||||||
git fetch origin
|
git fetch origin
|
||||||
git reset --hard origin/master
|
git reset --hard origin/main
|
||||||
cd ..
|
cd ..
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -119,7 +119,7 @@ The various `make` targets will pick up the changes and recompile.
|
|||||||
## Testing with a custom ostree
|
## Testing with a custom ostree
|
||||||
|
|
||||||
It is sometimes necessary to develop against a version of ostree which is not
|
It is sometimes necessary to develop against a version of ostree which is not
|
||||||
even yet in git master. In such situations, one can simply do:
|
even yet in git main. In such situations, one can simply do:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
$ # from the rpm-ostree build dir
|
$ # from the rpm-ostree build dir
|
||||||
|
@ -9,8 +9,8 @@ nav_order: 8
|
|||||||
3. Verify the libdnf deps in `rpm-ostree.spec.in` are up to date by comparing to
|
3. Verify the libdnf deps in `rpm-ostree.spec.in` are up to date by comparing to
|
||||||
the spec of the bundled version (`libdnf/libdnf.spec`).
|
the spec of the bundled version (`libdnf/libdnf.spec`).
|
||||||
4. Submit as a PR and wait until reviewed *and* CI is green.
|
4. Submit as a PR and wait until reviewed *and* CI is green.
|
||||||
5. Once merged, do `git pull $upstream && git reset --hard $upstream/master` on
|
5. Once merged, do `git pull $upstream && git reset --hard $upstream/main` on
|
||||||
your local `master` branch to make sure you're on the right commit.
|
your local `main` branch to make sure you're on the right commit.
|
||||||
6. Draft release notes by seeding a HackMD.io with `git shortlog $last_tag..`
|
6. Draft release notes by seeding a HackMD.io with `git shortlog $last_tag..`
|
||||||
and ideally collaborating with others. Filter out the commits from
|
and ideally collaborating with others. Filter out the commits from
|
||||||
`dependabot`. See previous releases for format.
|
`dependabot`. See previous releases for format.
|
||||||
|
@ -28,7 +28,7 @@ last_edit_time_format: "%b %e %Y at %I:%M %p"
|
|||||||
gh_edit_link: true
|
gh_edit_link: true
|
||||||
gh_edit_link_text: "Edit this page on GitHub"
|
gh_edit_link_text: "Edit this page on GitHub"
|
||||||
gh_edit_repository: "https://github.com/coreos/rpm-ostree"
|
gh_edit_repository: "https://github.com/coreos/rpm-ostree"
|
||||||
gh_edit_branch: "master"
|
gh_edit_branch: "main"
|
||||||
gh_edit_source: docs
|
gh_edit_source: docs
|
||||||
gh_edit_view_mode: "tree"
|
gh_edit_view_mode: "tree"
|
||||||
|
|
||||||
|
@ -35,17 +35,17 @@ reason for this architecture is primarily:
|
|||||||
3. to allow unprivileged users to make system mutations via polkit
|
3. to allow unprivileged users to make system mutations via polkit
|
||||||
|
|
||||||
The D-Bus API is defined here:
|
The D-Bus API is defined here:
|
||||||
https://github.com/coreos/rpm-ostree/blob/master/src/daemon/org.projectatomic.rpmostree1.xml
|
https://github.com/coreos/rpm-ostree/blob/main/src/daemon/org.projectatomic.rpmostree1.xml
|
||||||
|
|
||||||
The rpm-ostree daemon runs as a systemd service which owns the
|
The rpm-ostree daemon runs as a systemd service which owns the
|
||||||
`org.projectatomic.rpmostree1` name on the system D-Bus:
|
`org.projectatomic.rpmostree1` name on the system D-Bus:
|
||||||
|
|
||||||
https://github.com/coreos/rpm-ostree/blob/master/src/daemon/rpm-ostreed.service.in
|
https://github.com/coreos/rpm-ostree/blob/main/src/daemon/rpm-ostreed.service.in
|
||||||
|
|
||||||
When a client wants to talk to the daemon, the D-Bus daemon starts up the
|
When a client wants to talk to the daemon, the D-Bus daemon starts up the
|
||||||
systemd service if it's not already running:
|
systemd service if it's not already running:
|
||||||
|
|
||||||
https://github.com/coreos/rpm-ostree/blob/master/src/daemon/org.projectatomic.rpmostree1.service.in
|
https://github.com/coreos/rpm-ostree/blob/main/src/daemon/org.projectatomic.rpmostree1.service.in
|
||||||
|
|
||||||
### Interacting with the daemon
|
### Interacting with the daemon
|
||||||
|
|
||||||
@ -100,7 +100,7 @@ actions.
|
|||||||
|
|
||||||
We ship a base policy file which provide actions which should be allowed:
|
We ship a base policy file which provide actions which should be allowed:
|
||||||
|
|
||||||
https://github.com/coreos/rpm-ostree/blob/master/src/daemon/org.projectatomic.rpmostree1.policy
|
https://github.com/coreos/rpm-ostree/blob/main/src/daemon/org.projectatomic.rpmostree1.policy
|
||||||
|
|
||||||
Some distros may enhance this policy by shipping rules which dynamically
|
Some distros may enhance this policy by shipping rules which dynamically
|
||||||
calculate authorization based on e.g. group membership. For example, in
|
calculate authorization based on e.g. group membership. For example, in
|
||||||
|
@ -188,4 +188,4 @@ rpm-ostree specific talks:
|
|||||||
## License
|
## License
|
||||||
|
|
||||||
rpm-ostree includes code licensed under GPLv2+, LGPLv2+, (Apache 2.0 OR MIT).
|
rpm-ostree includes code licensed under GPLv2+, LGPLv2+, (Apache 2.0 OR MIT).
|
||||||
For more information, see [LICENSE](https://github.com/coreos/rpm-ostree/blob/master/LICENSE).
|
For more information, see [LICENSE](https://github.com/coreos/rpm-ostree/blob/main/LICENSE).
|
||||||
|
@ -52,7 +52,7 @@ nav_order: 9
|
|||||||
|
|
||||||
## Makefiles
|
## Makefiles
|
||||||
|
|
||||||
These files are used when doing raw build instructions. You can find more info [here](https://github.com/projectatomic/rpm-ostree/blob/master/HACKING.md#raw-build-instructions):
|
These files are used when doing raw build instructions. You can find more info [here](https://github.com/projectatomic/rpm-ostree/blob/main/HACKING.md#raw-build-instructions):
|
||||||
|
|
||||||
```
|
```
|
||||||
.
|
.
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
# The canonical copy of this spec file is upstream at:
|
# The canonical copy of this spec file is upstream at:
|
||||||
# https://github.com/coreos/rpm-ostree/blob/master/packaging/rpm-ostree.spec.in
|
# https://github.com/coreos/rpm-ostree/blob/main/packaging/rpm-ostree.spec.in
|
||||||
|
|
||||||
Summary: Hybrid image/package system
|
Summary: Hybrid image/package system
|
||||||
Name: rpm-ostree
|
Name: rpm-ostree
|
||||||
|
@ -3,7 +3,7 @@ set -euo pipefail
|
|||||||
|
|
||||||
# This is just a small wrapper for `make install`, but with the added logic to
|
# This is just a small wrapper for `make install`, but with the added logic to
|
||||||
# pull in ostree packages from the build container. We always assume development
|
# pull in ostree packages from the build container. We always assume development
|
||||||
# and testing is against git master ostree and that the build container is
|
# and testing is against git main ostree and that the build container is
|
||||||
# tracking e.g. CAHC or FAHC (see HACKING.md for more details).
|
# tracking e.g. CAHC or FAHC (see HACKING.md for more details).
|
||||||
|
|
||||||
DESTDIR=${topsrcdir}/insttree
|
DESTDIR=${topsrcdir}/insttree
|
||||||
|
Loading…
Reference in New Issue
Block a user