mirror of
https://github.com/flatcar/scripts.git
synced 2025-08-21 22:41:09 +02:00
Merge pull request #1347 from marineam/systemd
systemd: sync with upstream, bump to 222
This commit is contained in:
commit
5b3d82cd08
@ -36,8 +36,8 @@ net-analyzer/nmap ncat -lua
|
|||||||
# removes mta dependencies
|
# removes mta dependencies
|
||||||
app-admin/sudo -sendmail
|
app-admin/sudo -sendmail
|
||||||
|
|
||||||
# avoid pulling in gnutls, disable gentoo-only bits, enable journal upload
|
# use lzma which is the default on non-gentoo systems
|
||||||
sys-apps/systemd -ssl curl vanilla -lz4 lzma gcrypt
|
sys-apps/systemd curl gcrypt lzma -lz4
|
||||||
|
|
||||||
# disable kernel config detection and module building
|
# disable kernel config detection and module building
|
||||||
net-firewall/ipset -modules
|
net-firewall/ipset -modules
|
||||||
|
@ -22,8 +22,8 @@ sys-libs/ncurses minimal
|
|||||||
sys-libs/pam -berkdb
|
sys-libs/pam -berkdb
|
||||||
sys-libs/gdbm berkdb
|
sys-libs/gdbm berkdb
|
||||||
|
|
||||||
|
# enable journal gateway and container features, avoid pulling in gnutls
|
||||||
sys-apps/systemd http
|
sys-apps/systemd importd http nat -ssl
|
||||||
net-libs/libmicrohttpd -ssl
|
net-libs/libmicrohttpd -ssl
|
||||||
|
|
||||||
sys-boot/syslinux -custom-cflags
|
sys-boot/syslinux -custom-cflags
|
||||||
|
@ -1,17 +1,20 @@
|
|||||||
# Copyright 1999-2015 Gentoo Foundation
|
# Copyright 1999-2015 Gentoo Foundation
|
||||||
# Distributed under the terms of the GNU General Public License v2
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
# $Header: /var/cvsroot/gentoo-x86/sys-apps/systemd/systemd-9999.ebuild,v 1.169 2015/05/30 13:58:45 floppym Exp $
|
# $Header: /var/cvsroot/gentoo-x86/sys-apps/systemd/systemd-9999.ebuild,v 1.174 2015/06/27 18:00:47 floppym Exp $
|
||||||
|
|
||||||
EAPI=5
|
EAPI=5
|
||||||
|
|
||||||
|
AUTOTOOLS_AUTORECONF=yes
|
||||||
|
AUTOTOOLS_PRUNE_LIBTOOL_FILES=all
|
||||||
|
PYTHON_COMPAT=( python{2_7,3_3,3_4} )
|
||||||
CROS_WORKON_PROJECT="coreos/systemd"
|
CROS_WORKON_PROJECT="coreos/systemd"
|
||||||
CROS_WORKON_REPO="git://github.com"
|
CROS_WORKON_REPO="git://github.com"
|
||||||
|
|
||||||
if [[ "${PV}" == 9999 ]]; then
|
if [[ ${PV} == 9999 ]]; then
|
||||||
# Use ~arch instead of empty keywords for compatibility with cros-workon
|
# Use ~arch instead of empty keywords for compatibility with cros-workon
|
||||||
KEYWORDS="~amd64 ~arm64 ~arm ~x86"
|
KEYWORDS="~amd64 ~arm64 ~arm ~x86"
|
||||||
else
|
else
|
||||||
CROS_WORKON_COMMIT="9b174479806a66ff3a220a89291a38f8a4fed701"
|
CROS_WORKON_COMMIT="015325350548732458e61c193f5fab6f139f47fc"
|
||||||
KEYWORDS="amd64 arm64 ~arm ~x86"
|
KEYWORDS="amd64 arm64 ~arm ~x86"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -20,9 +23,6 @@ fi
|
|||||||
# the later eclass's version to win. Only need src_unpack from workon.
|
# the later eclass's version to win. Only need src_unpack from workon.
|
||||||
inherit cros-workon
|
inherit cros-workon
|
||||||
|
|
||||||
AUTOTOOLS_AUTORECONF=yes
|
|
||||||
AUTOTOOLS_PRUNE_LIBTOOL_FILES=all
|
|
||||||
PYTHON_COMPAT=( python{2_7,3_3,3_4} )
|
|
||||||
inherit autotools-utils bash-completion-r1 linux-info multilib \
|
inherit autotools-utils bash-completion-r1 linux-info multilib \
|
||||||
multilib-minimal pam python-single-r1 systemd toolchain-funcs udev \
|
multilib-minimal pam python-single-r1 systemd toolchain-funcs udev \
|
||||||
user
|
user
|
||||||
@ -32,18 +32,19 @@ HOMEPAGE="http://www.freedesktop.org/wiki/Software/systemd"
|
|||||||
|
|
||||||
LICENSE="GPL-2 LGPL-2.1 MIT public-domain"
|
LICENSE="GPL-2 LGPL-2.1 MIT public-domain"
|
||||||
SLOT="0/2"
|
SLOT="0/2"
|
||||||
IUSE="acl apparmor audit cryptsetup curl doc elfutils gcrypt gnuefi gudev http
|
IUSE="acl apparmor audit cryptsetup curl elfutils gcrypt gnuefi http
|
||||||
idn +importd introspection kdbus +kmod +lz4 lzma +nat pam policykit python
|
idn importd +kdbus +kmod +lz4 lzma nat pam policykit python
|
||||||
qrcode +seccomp selinux ssl sysv-utils terminal test vanilla xkb"
|
qrcode +seccomp selinux ssl sysv-utils terminal test vanilla xkb"
|
||||||
|
|
||||||
# CoreOS specific use flags
|
# CoreOS specific use flags
|
||||||
IUSE+=" man symlink-usr"
|
IUSE+=" man symlink-usr"
|
||||||
|
|
||||||
REQUIRED_USE="importd? ( curl gcrypt lzma )"
|
REQUIRED_USE="importd? ( curl gcrypt lzma )
|
||||||
|
python? ( ${PYTHON_REQUIRED_USE} )"
|
||||||
|
|
||||||
MINKV="3.8"
|
MINKV="3.8"
|
||||||
|
|
||||||
COMMON_DEPEND=">=sys-apps/util-linux-2.25:0=
|
COMMON_DEPEND=">=sys-apps/util-linux-2.26:0=
|
||||||
sys-libs/libcap:0=
|
sys-libs/libcap:0=
|
||||||
!<sys-libs/glibc-2.16
|
!<sys-libs/glibc-2.16
|
||||||
acl? ( sys-apps/acl:0= )
|
acl? ( sys-apps/acl:0= )
|
||||||
@ -53,7 +54,6 @@ COMMON_DEPEND=">=sys-apps/util-linux-2.25:0=
|
|||||||
curl? ( net-misc/curl:0= )
|
curl? ( net-misc/curl:0= )
|
||||||
elfutils? ( >=dev-libs/elfutils-0.158:0= )
|
elfutils? ( >=dev-libs/elfutils-0.158:0= )
|
||||||
gcrypt? ( >=dev-libs/libgcrypt-1.4.5:0=[${MULTILIB_USEDEP}] )
|
gcrypt? ( >=dev-libs/libgcrypt-1.4.5:0=[${MULTILIB_USEDEP}] )
|
||||||
gudev? ( >=dev-libs/glib-2.34.3:2=[${MULTILIB_USEDEP}] )
|
|
||||||
http? (
|
http? (
|
||||||
>=net-libs/libmicrohttpd-0.9.33:0=
|
>=net-libs/libmicrohttpd-0.9.33:0=
|
||||||
ssl? ( >=net-libs/gnutls-3.1.4:0= )
|
ssl? ( >=net-libs/gnutls-3.1.4:0= )
|
||||||
@ -63,7 +63,6 @@ COMMON_DEPEND=">=sys-apps/util-linux-2.25:0=
|
|||||||
app-arch/bzip2:0=
|
app-arch/bzip2:0=
|
||||||
sys-libs/zlib:0=
|
sys-libs/zlib:0=
|
||||||
)
|
)
|
||||||
introspection? ( >=dev-libs/gobject-introspection-1.31.1:0= )
|
|
||||||
kmod? ( >=sys-apps/kmod-15:0= )
|
kmod? ( >=sys-apps/kmod-15:0= )
|
||||||
lz4? ( >=app-arch/lz4-0_p119:0=[${MULTILIB_USEDEP}] )
|
lz4? ( >=app-arch/lz4-0_p119:0=[${MULTILIB_USEDEP}] )
|
||||||
lzma? ( >=app-arch/xz-utils-5.0.5-r1:0=[${MULTILIB_USEDEP}] )
|
lzma? ( >=app-arch/xz-utils-5.0.5-r1:0=[${MULTILIB_USEDEP}] )
|
||||||
@ -107,21 +106,25 @@ DEPEND="${COMMON_DEPEND}
|
|||||||
>=sys-kernel/linux-headers-${MINKV}
|
>=sys-kernel/linux-headers-${MINKV}
|
||||||
ia64? ( >=sys-kernel/linux-headers-3.9 )
|
ia64? ( >=sys-kernel/linux-headers-3.9 )
|
||||||
virtual/pkgconfig
|
virtual/pkgconfig
|
||||||
doc? ( >=dev-util/gtk-doc-1.18 )
|
|
||||||
gnuefi? ( >=sys-boot/gnu-efi-3.0.2 )
|
gnuefi? ( >=sys-boot/gnu-efi-3.0.2 )
|
||||||
python? ( dev-python/lxml[${PYTHON_USEDEP}] )
|
python? ( dev-python/lxml[${PYTHON_USEDEP}] )
|
||||||
terminal? ( media-fonts/unifont[utils(+)] )
|
terminal? ( media-fonts/unifont[utils(+)] )
|
||||||
test? ( >=sys-apps/dbus-1.6.8-r1:0 )"
|
test? ( >=sys-apps/dbus-1.6.8-r1:0 )"
|
||||||
|
|
||||||
# Not required when building from unpatched tarballs, but we build from git.
|
# Not required when building from unpatched tarballs, but we build from git.
|
||||||
DEPEND="${DEPEND}
|
DEPEND+="
|
||||||
man? ( app-text/docbook-xml-dtd:4.2
|
man? ( app-text/docbook-xml-dtd:4.2
|
||||||
app-text/docbook-xml-dtd:4.5
|
app-text/docbook-xml-dtd:4.5
|
||||||
app-text/docbook-xsl-stylesheets
|
app-text/docbook-xsl-stylesheets
|
||||||
dev-libs/libxslt:0 )
|
dev-libs/libxslt:0
|
||||||
dev-libs/gobject-introspection
|
${PYTHON_DEPS} )
|
||||||
|
terminal? ( ${PYTHON_DEPS} )
|
||||||
>=dev-libs/libgcrypt-1.4.5:0"
|
>=dev-libs/libgcrypt-1.4.5:0"
|
||||||
|
|
||||||
|
REQUIRED_USE+="
|
||||||
|
man? ( ${PYTHON_REQUIRED_USE} )
|
||||||
|
terminal? ( ${PYTHON_REQUIRED_USE} )"
|
||||||
|
|
||||||
pkg_pretend() {
|
pkg_pretend() {
|
||||||
local CONFIG_CHECK="~AUTOFS4_FS ~BLK_DEV_BSG ~CGROUPS
|
local CONFIG_CHECK="~AUTOFS4_FS ~BLK_DEV_BSG ~CGROUPS
|
||||||
~DEVPTS_MULTIPLE_INSTANCES ~DEVTMPFS ~DMIID ~EPOLL ~FANOTIFY ~FHANDLE
|
~DEVPTS_MULTIPLE_INSTANCES ~DEVTMPFS ~DMIID ~EPOLL ~FANOTIFY ~FHANDLE
|
||||||
@ -161,16 +164,10 @@ pkg_pretend() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
pkg_setup() {
|
pkg_setup() {
|
||||||
use python && python-single-r1_pkg_setup
|
:
|
||||||
}
|
}
|
||||||
|
|
||||||
src_prepare() {
|
src_prepare() {
|
||||||
if use doc; then
|
|
||||||
gtkdocize --docdir docs/ || die
|
|
||||||
else
|
|
||||||
echo 'EXTRA_DIST =' > docs/gtk-doc.make
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Bug 463376
|
# Bug 463376
|
||||||
sed -i -e 's/GROUP="dialout"/GROUP="uucp"/' rules/*.rules || die
|
sed -i -e 's/GROUP="dialout"/GROUP="uucp"/' rules/*.rules || die
|
||||||
|
|
||||||
@ -183,6 +180,8 @@ src_configure() {
|
|||||||
# Fix systems broken by bug #509454.
|
# Fix systems broken by bug #509454.
|
||||||
[[ ${MY_UDEVDIR} ]] || MY_UDEVDIR=/lib/udev
|
[[ ${MY_UDEVDIR} ]] || MY_UDEVDIR=/lib/udev
|
||||||
|
|
||||||
|
python_setup
|
||||||
|
|
||||||
multilib-minimal_src_configure
|
multilib-minimal_src_configure
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -216,18 +215,15 @@ multilib_src_configure() {
|
|||||||
$(multilib_native_use_enable audit)
|
$(multilib_native_use_enable audit)
|
||||||
$(multilib_native_use_enable cryptsetup libcryptsetup)
|
$(multilib_native_use_enable cryptsetup libcryptsetup)
|
||||||
$(multilib_native_use_enable curl libcurl)
|
$(multilib_native_use_enable curl libcurl)
|
||||||
$(multilib_native_use_enable doc gtk-doc)
|
|
||||||
$(multilib_native_use_enable elfutils)
|
$(multilib_native_use_enable elfutils)
|
||||||
$(use_enable gcrypt)
|
$(use_enable gcrypt)
|
||||||
$(multilib_native_use_enable gnuefi)
|
$(multilib_native_use_enable gnuefi)
|
||||||
$(use_enable gudev)
|
|
||||||
$(multilib_native_use_enable http microhttpd)
|
$(multilib_native_use_enable http microhttpd)
|
||||||
$(usex http $(multilib_native_use_enable ssl gnutls) --disable-gnutls)
|
$(usex http $(multilib_native_use_enable ssl gnutls) --disable-gnutls)
|
||||||
$(multilib_native_use_enable idn libidn)
|
$(multilib_native_use_enable idn libidn)
|
||||||
$(multilib_native_use_enable importd)
|
$(multilib_native_use_enable importd)
|
||||||
$(multilib_native_use_enable importd bzip2)
|
$(multilib_native_use_enable importd bzip2)
|
||||||
$(multilib_native_use_enable importd zlib)
|
$(multilib_native_use_enable importd zlib)
|
||||||
$(multilib_native_use_enable introspection)
|
|
||||||
$(use_enable kdbus)
|
$(use_enable kdbus)
|
||||||
$(multilib_native_use_enable kmod)
|
$(multilib_native_use_enable kmod)
|
||||||
$(use_enable lz4)
|
$(use_enable lz4)
|
||||||
@ -246,9 +242,6 @@ multilib_src_configure() {
|
|||||||
$(multilib_native_use_enable test dbus)
|
$(multilib_native_use_enable test dbus)
|
||||||
$(multilib_native_use_enable xkb xkbcommon)
|
$(multilib_native_use_enable xkb xkbcommon)
|
||||||
|
|
||||||
# not supported (avoid automagic deps in the future)
|
|
||||||
--disable-chkconfig
|
|
||||||
|
|
||||||
# hardcode a few paths to spare some deps
|
# hardcode a few paths to spare some deps
|
||||||
QUOTAON=/usr/sbin/quotaon
|
QUOTAON=/usr/sbin/quotaon
|
||||||
QUOTACHECK=/usr/sbin/quotacheck
|
QUOTACHECK=/usr/sbin/quotacheck
|
||||||
@ -295,9 +288,6 @@ multilib_src_compile() {
|
|||||||
if multilib_is_native_abi; then
|
if multilib_is_native_abi; then
|
||||||
emake "${mymakeopts[@]}"
|
emake "${mymakeopts[@]}"
|
||||||
else
|
else
|
||||||
# prerequisites for gudev
|
|
||||||
use gudev && emake src/gudev/gudev{enumtypes,marshal}.{c,h}
|
|
||||||
|
|
||||||
echo 'gentoo: $(BUILT_SOURCES)' | \
|
echo 'gentoo: $(BUILT_SOURCES)' | \
|
||||||
emake "${mymakeopts[@]}" -f Makefile -f - gentoo
|
emake "${mymakeopts[@]}" -f Makefile -f - gentoo
|
||||||
echo 'gentoo: $(lib_LTLIBRARIES) $(pkgconfiglib_DATA)' | \
|
echo 'gentoo: $(lib_LTLIBRARIES) $(pkgconfiglib_DATA)' | \
|
||||||
@ -330,7 +320,6 @@ multilib_src_install() {
|
|||||||
install-pkgconfiglibDATA
|
install-pkgconfiglibDATA
|
||||||
install-includeHEADERS
|
install-includeHEADERS
|
||||||
# safe to call unconditionally, 'installs' empty list
|
# safe to call unconditionally, 'installs' empty list
|
||||||
install-libgudev_includeHEADERS
|
|
||||||
install-pkgincludeHEADERS
|
install-pkgincludeHEADERS
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user