mirror of
https://github.com/flatcar/scripts.git
synced 2025-09-28 17:11:34 +02:00
dev-libs/libxslt: Sync with Gentoo
It's from Gentoo commit 77f67752cd0fa1d306b5d82723954ac8dbc6cd6c.
This commit is contained in:
parent
df1c221c26
commit
808474cc3e
@ -15,7 +15,7 @@ if [[ ${PV} == 9999 ]] ; then
|
|||||||
inherit autotools git-r3
|
inherit autotools git-r3
|
||||||
else
|
else
|
||||||
inherit libtool gnome.org
|
inherit libtool gnome.org
|
||||||
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
|
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
LICENSE="MIT"
|
LICENSE="MIT"
|
||||||
|
@ -5,7 +5,7 @@ EAPI=8
|
|||||||
|
|
||||||
# Note: Please bump this in sync with dev-libs/libxml2.
|
# Note: Please bump this in sync with dev-libs/libxml2.
|
||||||
|
|
||||||
PYTHON_COMPAT=( python3_{10..11} )
|
PYTHON_COMPAT=( python3_{10..12} )
|
||||||
inherit flag-o-matic python-r1 multilib-minimal
|
inherit flag-o-matic python-r1 multilib-minimal
|
||||||
|
|
||||||
DESCRIPTION="XSLT libraries and tools"
|
DESCRIPTION="XSLT libraries and tools"
|
||||||
@ -15,7 +15,7 @@ if [[ ${PV} == 9999 ]] ; then
|
|||||||
inherit autotools git-r3
|
inherit autotools git-r3
|
||||||
else
|
else
|
||||||
inherit libtool gnome.org
|
inherit libtool gnome.org
|
||||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
|
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
LICENSE="MIT"
|
LICENSE="MIT"
|
||||||
@ -94,7 +94,7 @@ multilib_src_test() {
|
|||||||
default
|
default
|
||||||
|
|
||||||
if multilib_is_native_abi && use python ; then
|
if multilib_is_native_abi && use python ; then
|
||||||
python_foreach_impl run_in_build_dir libxslt_py_emake test
|
python_foreach_impl run_in_build_dir libxslt_py_emake check
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ EAPI=8
|
|||||||
|
|
||||||
# Note: Please bump this in sync with dev-libs/libxml2.
|
# Note: Please bump this in sync with dev-libs/libxml2.
|
||||||
|
|
||||||
PYTHON_COMPAT=( python3_{10..11} )
|
PYTHON_COMPAT=( python3_{10..12} )
|
||||||
inherit python-r1 multilib-minimal
|
inherit flag-o-matic python-r1 multilib-minimal
|
||||||
|
|
||||||
DESCRIPTION="XSLT libraries and tools"
|
DESCRIPTION="XSLT libraries and tools"
|
||||||
HOMEPAGE="https://gitlab.gnome.org/GNOME/libxslt"
|
HOMEPAGE="https://gitlab.gnome.org/GNOME/libxslt"
|
||||||
@ -15,7 +15,7 @@ if [[ ${PV} == 9999 ]] ; then
|
|||||||
inherit autotools git-r3
|
inherit autotools git-r3
|
||||||
else
|
else
|
||||||
inherit libtool gnome.org
|
inherit libtool gnome.org
|
||||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
|
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
LICENSE="MIT"
|
LICENSE="MIT"
|
||||||
@ -51,6 +51,10 @@ src_prepare() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
multilib_src_configure() {
|
multilib_src_configure() {
|
||||||
|
# Remove this after upstream merge request to add AC_SYS_LARGEFILE lands:
|
||||||
|
# https://gitlab.gnome.org/GNOME/libxslt/-/merge_requests/55
|
||||||
|
append-lfs-flags
|
||||||
|
|
||||||
libxslt_configure() {
|
libxslt_configure() {
|
||||||
ECONF_SOURCE="${S}" econf \
|
ECONF_SOURCE="${S}" econf \
|
||||||
--without-python \
|
--without-python \
|
||||||
@ -90,7 +94,7 @@ multilib_src_test() {
|
|||||||
default
|
default
|
||||||
|
|
||||||
if multilib_is_native_abi && use python ; then
|
if multilib_is_native_abi && use python ; then
|
||||||
python_foreach_impl run_in_build_dir libxslt_py_emake test
|
python_foreach_impl run_in_build_dir libxslt_py_emake check
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user