Revert "common/: add support for changelog field."
This reverts commit 8599efd9fd
.
This commit is contained in:
parent
5334409c12
commit
94ed33657b
|
@ -579,9 +579,6 @@ Example:
|
||||||
A list is composed of three components separated by a colon: group, symlink and target.
|
A list is composed of three components separated by a colon: group, symlink and target.
|
||||||
i.e `alternatives="vi:/usr/bin/vi:/usr/bin/nvi ex:/usr/bin/ex:/usr/bin/nvi-ex"`.
|
i.e `alternatives="vi:/usr/bin/vi:/usr/bin/nvi ex:/usr/bin/ex:/usr/bin/nvi-ex"`.
|
||||||
|
|
||||||
- `changelog` URL to the changelog of the package, the changelog must be in plaintext.
|
|
||||||
i.e `changelog="https://raw.githubusercontent.com/user/package/master/CHANGELOG.md"`
|
|
||||||
|
|
||||||
<a id="explain_depends"></a>
|
<a id="explain_depends"></a>
|
||||||
#### About the many types of `depends` variable.
|
#### About the many types of `depends` variable.
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
# the package template (excluding subpackages).
|
# the package template (excluding subpackages).
|
||||||
|
|
||||||
## VARIABLES
|
## VARIABLES
|
||||||
unset -v pkgname version revision short_desc homepage changelog license maintainer
|
unset -v pkgname version revision short_desc homepage license maintainer
|
||||||
unset -v only_for_archs distfiles checksum build_style nocross broken
|
unset -v only_for_archs distfiles checksum build_style nocross broken
|
||||||
unset -v configure_script configure_args wrksrc build_wrksrc create_wrksrc
|
unset -v configure_script configure_args wrksrc build_wrksrc create_wrksrc
|
||||||
unset -v make_build_args make_check_args make_install_args
|
unset -v make_build_args make_check_args make_install_args
|
||||||
|
|
|
@ -74,7 +74,6 @@ genpkg() {
|
||||||
${_alternatives:+--alternatives "${_alternatives}"} \
|
${_alternatives:+--alternatives "${_alternatives}"} \
|
||||||
${_preserve:+--preserve} \
|
${_preserve:+--preserve} \
|
||||||
${tags:+--tags "${tags}"} \
|
${tags:+--tags "${tags}"} \
|
||||||
${changelog:+--changelog "${changelog}"} \
|
|
||||||
--architecture ${arch} \
|
--architecture ${arch} \
|
||||||
--homepage "${homepage}" \
|
--homepage "${homepage}" \
|
||||||
--license "${license}" \
|
--license "${license}" \
|
||||||
|
|
|
@ -15,7 +15,6 @@ show_pkg() {
|
||||||
[ -n "$noarch" ] && echo "noarch: yes"
|
[ -n "$noarch" ] && echo "noarch: yes"
|
||||||
echo "maintainer: $maintainer"
|
echo "maintainer: $maintainer"
|
||||||
[ -n "$homepage" ] && echo "Upstream URL: $homepage"
|
[ -n "$homepage" ] && echo "Upstream URL: $homepage"
|
||||||
[ -n "$changelog" ] && echo "Changelog URL: $changelog"
|
|
||||||
[ -n "$license" ] && echo "License(s): $license"
|
[ -n "$license" ] && echo "License(s): $license"
|
||||||
[ -n "$build_style" ] && echo "build_style: $build_style"
|
[ -n "$build_style" ] && echo "build_style: $build_style"
|
||||||
for i in ${configure_args}; do
|
for i in ${configure_args}; do
|
||||||
|
|
Loading…
Reference in New Issue