Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hasufell/php-overlay
PHP related ebuilds
https://github.com/hasufell/php-overlay
Last synced: 23 days ago
JSON representation
PHP related ebuilds
- Host: GitHub
- URL: https://github.com/hasufell/php-overlay
- Owner: hasufell
- Created: 2015-08-30T20:07:56.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-12-03T17:39:49.000Z (almost 9 years ago)
- Last Synced: 2024-05-01T21:41:49.816Z (6 months ago)
- Language: Shell
- Homepage:
- Size: 19.5 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: licenses/ioncube-loaders
Awesome Lists containing this project
README
### Purpose and scope
PHP related ebuilds.
### Contributing
* proper Copyright header (not just Gentoo Foundation, unless you want to give them copyright)
* 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/php-overlay/master/repository.xml -a php-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]$'
```