https://github.com/hasufell/media-overlay
Media ebuilds
https://github.com/hasufell/media-overlay
Last synced: about 2 months ago
JSON representation
Media ebuilds
- Host: GitHub
- URL: https://github.com/hasufell/media-overlay
- Owner: hasufell
- Created: 2014-12-16T15:11:19.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-01-17T12:42:32.000Z (over 9 years ago)
- Last Synced: 2025-01-28T18:45:56.298Z (4 months ago)
- Language: Shell
- Homepage:
- Size: 55.7 KB
- Stars: 2
- Watchers: 4
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Purpose and scope
Media ebuilds.
### Contributing
* proper Copyright header
* license should be GPL-2
* all commits MUST be gpg-signed
* always provide a metadata.xml with contact information### Adding the overlay
With paludis: see [Paludis repository configuration](http://paludis.exherbo.org/configuration/repositories/index.html)
With layman:
```layman -f -o https://raw.github.com/hasufell/media-overlay/master/repository.xml -a media-overlay```### Signature verification
All commits on the first parent (at least) are signed by me.
You can verify the repository via:
```
[ -z "$(git show -q --pretty="format:%G?" $(git rev-list --first-parent master) | grep -v G)" ] && echo "verification success" || echo "verification failure"
```If the verification failed, you can examine which commits did
via
```
git show -q --pretty="format:%h %an %G?" $(git rev-list --first-parent master) | grep '.* [NBU]$'
```