* [gentoo-commits] proj/gnome:master commit in: app-admin/packagekit-base/
@ 2011-08-05 4:46 Alexandre Restovtsev
0 siblings, 0 replies; 4+ messages in thread
From: Alexandre Restovtsev @ 2011-08-05 4:46 UTC (permalink / raw
To: gentoo-commits
commit: 912c3dffadecbbd5a642ae0d748a4b80cbef3f0e
Author: Alexandre Rostovtsev <tetromino <AT> gmail <DOT> com>
AuthorDate: Fri Aug 5 04:44:40 2011 +0000
Commit: Alexandre Restovtsev <tetromino <AT> gmail <DOT> com>
CommitDate: Fri Aug 5 04:44:40 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=912c3dff
app-admin/packagekit-base: no longer needed now that 0.6.17 is in gx86
---
.../packagekit-base/packagekit-base-0.6.16.ebuild | 181 --------------------
1 files changed, 0 insertions(+), 181 deletions(-)
diff --git a/app-admin/packagekit-base/packagekit-base-0.6.16.ebuild b/app-admin/packagekit-base/packagekit-base-0.6.16.ebuild
deleted file mode 100644
index e9d9ee7..0000000
--- a/app-admin/packagekit-base/packagekit-base-0.6.16.ebuild
+++ /dev/null
@@ -1,181 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/packagekit-base/packagekit-base-0.6.16.ebuild,v 1.1 2011/07/19 19:12:59 lxnay Exp $
-
-# This ebuild is here purely to provide a collision-free upgrade path from gnome
-# overlay's monolithic app-portage/packagekit to the split app-admin/packagekit
-# now in gx86.
-# Remove this ebuild in 08-2011 or when packagekit-base-0.6.17 is in gx86.
-
-EAPI="3"
-
-inherit eutils multilib python nsplugins bash-completion
-
-MY_PN="PackageKit"
-MY_P=${MY_PN}-${PV}
-
-DESCRIPTION="Manage packages in a secure way using a cross-distro and cross-architecture API"
-HOMEPAGE="http://www.packagekit.org/"
-SRC_URI="http://www.packagekit.org/releases/${MY_P}.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="connman cron doc +introspection networkmanager nsplugin pm-utils +policykit entropy static-libs test udev"
-
-CDEPEND="connman? ( net-misc/connman )
- introspection? ( >=dev-libs/gobject-introspection-0.9.8 )
- networkmanager? ( >=net-misc/networkmanager-0.6.4 )
- nsplugin? (
- dev-libs/nspr
- x11-libs/cairo
- >=x11-libs/gtk+-2.14.0:2
- x11-libs/pango
- )
- policykit? ( >=sys-auth/polkit-0.94 )
- udev? ( || ( >=sys-fs/udev-171[gudev] >=sys-fs/udev-145[extras] ) )
- dev-db/sqlite:3
- >=dev-libs/dbus-glib-0.74
- >=dev-libs/glib-2.16.1:2
- >=sys-apps/dbus-1.3.0"
-DEPEND="${CDEPEND}
- doc? ( dev-util/gtk-doc )
- nsplugin? ( >=net-libs/xulrunner-1.9.1 )
- dev-libs/libxslt
- >=dev-util/intltool-0.35.0
- dev-util/pkgconfig
- sys-devel/gettext"
-
-RDEPEND="${CDEPEND}
- entropy? ( >=sys-apps/entropy-1.0_rc27 )
- pm-utils? ( sys-power/pm-utils )
- >=app-portage/layman-1.2.3
- >=sys-apps/portage-2.1.9
- sys-auth/consolekit
- !!<=app-portage/packagekit-0.6.16"
-# that last blocker is to ensure people upgrading from the monolithic packagekit
-# formerly in the overlay don't run into file collisions
-
-APP_LINGUAS="as bg bn ca cs da de el en_GB es fi fr gu he hi hu it ja kn ko ml mr
-ms nb nl or pa pl pt pt_BR ro ru sk sr sr@latin sv ta te th tr uk zh_CN zh_TW"
-for X in ${APP_LINGUAS}; do
- IUSE=" ${IUSE} linguas_${X}"
-done
-
-S="${WORKDIR}/${MY_P}"
-RESTRICT="test" # tests are failing atm
-
-# NOTES:
-# do not use a specific user, useless and not more secure according to upstream
-# doc is in the tarball and always installed
-# mono doesn't install anything (RDEPEND dev-dotnet/gtk-sharp-gapi:2
-# (R)DEPEND dev-dotnet/glib-sharp:2 dev-lang/mono), upstream bug 23247
-
-# UPSTREAM:
-# documentation/website with --enable-doc-install
-# failing tests
-
-src_configure() {
- local myconf=""
-
- if use policykit; then
- myconf+=" --with-security-framework=polkit"
- else
- myconf+=" --with-security-framework=dummy"
- fi
-
- if [[ -z "${LINGUAS}" ]]; then
- myconf+=" --disable-nls"
- else
- myconf+=" --enable-nls"
- fi
-
- # localstatedir: for gentoo it's /var/lib but for $PN it's /var
- # dep-tracking,option-check,libtool-lock,strict,local: obvious reasons
- # command,debuginfo,gstreamer,service-packs: not supported by backend
-
- # NOTE: default backend is autodetected at runtime, also
- if use entropy; then
- myconf+=" --with-default-backend=entropy"
- else
- myconf+=" --with-default-backend=portage"
- fi
- econf \
- ${myconf} \
- --enable-introspection=no \
- --localstatedir=/var \
- --disable-dependency-tracking \
- --enable-option-checking \
- --enable-libtool-lock \
- --disable-strict \
- --disable-local \
- $(use_enable doc gtk-doc) \
- $(use_enable bash-completion command-not-found) \
- --disable-debuginfo-install \
- --disable-gstreamer-plugin \
- --disable-service-packs \
- --enable-man-pages \
- --enable-portage \
- $(use_enable entropy) \
- $(use_enable cron) \
- --disable-gtk-module \
- $(use_enable introspection) \
- $(use_enable networkmanager) \
- $(use_enable nsplugin browser-plugin) \
- $(use_enable pm-utils) \
- --disable-qt \
- $(use_enable static-libs static) \
- $(use_enable test tests) \
- $(use_enable udev device-rebind)
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
-
- dodoc AUTHORS MAINTAINERS NEWS README TODO || die "dodoc failed"
- dodoc ChangeLog || die "dodoc failed"
-
- if use nsplugin; then
- src_mv_plugins /usr/$(get_libdir)/mozilla/plugins
- fi
-
- if ! use static-libs; then
- find "${D}" -name *.la | xargs rm || die "removing .la files failed"
- fi
-
- # Remove precompiled python modules, we handle byte compiling
- rm -f "${D}/$(python_get_sitedir)"/${PN}*.py[co]
-
- dobashcompletion "${S}/contrib/pk-completion.bash" ${PN}
- # Remove bashcomp file installed by build-system
- rm -f "${D}/bash_completion.d/pk-completion.bash"
-
- # Remove unwanted PackageKit website stuff
- rm -rf "${D}/usr/share/PackageKit/website"
-
-}
-
-pkg_postinst() {
- python_mod_optimize ${PN/-base}
-
- if ! use policykit; then
- ewarn "You are not using policykit, the daemon can't be considered as secure."
- ewarn "All users will be able to do anything through ${MY_PN}."
- ewarn "Please, consider rebuilding ${MY_PN} with policykit USE flag."
- ewarn "THIS IS A SECURITY ISSUE."
- echo
- ebeep
- epause 5
- fi
- bash-completion_pkg_postinst
-}
-
-pkg_prerm() {
- einfo "Removing downloaded files with ${MY_PN}..."
- [[ -d "${ROOT}"/var/cache/${MY_PN}/downloads/ ]] && \
- rm -rf /var/cache/PackageKit/downloads/*
-}
-
-pkg_postrm() {
- python_mod_cleanup ${PN/-base}
-}
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] proj/gnome:master commit in: app-admin/packagekit-base/
@ 2014-10-25 21:07 Gilles Dartiguelongue
0 siblings, 0 replies; 4+ messages in thread
From: Gilles Dartiguelongue @ 2014-10-25 21:07 UTC (permalink / raw
To: gentoo-commits
commit: 2890bedc202c779ea3c91a8d0f84299e29ec6936
Author: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 25 20:56:40 2014 +0000
Commit: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
CommitDate: Sat Oct 25 21:04:20 2014 +0000
URL: http://sources.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=2890bedc
app-admin/packagekit-base: 0.8.15-r1 → 1.0.1
gnome-software needs this.
* Remove duplicates option passing due to EAPI=5.
* Apply gnome rule wrt gtk-doc option and installation.
* Drop crazy LINGUAS handling and rely on normal gettext behavior.
* Do not support static-libs, who uses that ?
* TODO: unittests not working well, maybe needs two builds.
---
app-admin/packagekit-base/metadata.xml | 19 ++++
.../packagekit-base/packagekit-base-1.0.1.ebuild | 100 +++++++++++++++++++++
2 files changed, 119 insertions(+)
diff --git a/app-admin/packagekit-base/metadata.xml b/app-admin/packagekit-base/metadata.xml
new file mode 100644
index 0000000..4d74954
--- /dev/null
+++ b/app-admin/packagekit-base/metadata.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer>
+ <email>lxnay@gentoo.org</email>
+ <name>Fabio Erculiani</name>
+ </maintainer>
+ <use>
+ <flag name="command-not-found">Enable packagekit support on shell "command not found"</flag>
+ <flag name="cron">Install cron script for auto-update</flag>
+ <flag name="entropy">
+ Enable Entropy backend
+ </flag>
+ <flag name="introspection">Use <pkg>dev-libs/gobject-introspection</pkg>
+ Enable introspection
+ </flag>
+ </use>
+</pkgmetadata>
+
diff --git a/app-admin/packagekit-base/packagekit-base-1.0.1.ebuild b/app-admin/packagekit-base/packagekit-base-1.0.1.ebuild
new file mode 100644
index 0000000..07aa28f
--- /dev/null
+++ b/app-admin/packagekit-base/packagekit-base-1.0.1.ebuild
@@ -0,0 +1,100 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI="5"
+
+# PackageKit supports 3.2+, but entropy and portage backends are untested
+# Future note: use --enable-python3
+PYTHON_COMPAT=( python2_7 )
+
+inherit bash-completion-r1 eutils multilib nsplugins python-single-r1 systemd
+
+MY_PN="PackageKit"
+MY_P=${MY_PN}-${PV}
+
+DESCRIPTION="Manage packages in a secure way using a cross-distro and cross-architecture API"
+HOMEPAGE="http://www.packagekit.org/"
+SRC_URI="http://www.freedesktop.org/software/${MY_PN}/releases/${MY_P}.tar.xz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~mips ~ppc ~ppc64 ~x86"
+IUSE="bash-completion connman cron command-not-found +introspection networkmanager nsplugin entropy systemd test"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+CDEPEND="
+ bash-completion? ( >=app-shells/bash-completion-2.0 )
+ connman? ( net-misc/connman )
+ introspection? ( >=dev-libs/gobject-introspection-0.9.9[${PYTHON_USEDEP}] )
+ networkmanager? ( >=net-misc/networkmanager-0.6.4 )
+ nsplugin? (
+ >=dev-libs/nspr-4.8
+ x11-libs/cairo
+ >=x11-libs/gtk+-2.14.0:2
+ x11-libs/pango
+ )
+ dev-db/sqlite:3
+ >=dev-libs/dbus-glib-0.74
+ >=dev-libs/glib-2.32.0:2[${PYTHON_USEDEP}]
+ >=sys-auth/polkit-0.98
+ >=sys-apps/dbus-1.3.0
+ ${PYTHON_DEPS}
+"
+DEPEND="${CDEPEND}
+ dev-util/gtk-doc-am
+ nsplugin? ( >=net-misc/npapi-sdk-0.27 )
+ systemd? ( >=sys-apps/systemd-204 )
+ dev-libs/libxslt[${PYTHON_USEDEP}]
+ >=dev-util/intltool-0.35.0
+ virtual/pkgconfig
+ sys-devel/gettext
+"
+RDEPEND="${CDEPEND}
+ entropy? ( >=sys-apps/entropy-234[${PYTHON_USEDEP}] )
+ >=app-portage/layman-1.2.3[${PYTHON_USEDEP}]
+ >=sys-apps/portage-2.2[${PYTHON_USEDEP}]
+"
+
+S="${WORKDIR}/${MY_P}"
+
+RESTRICT="test"
+
+src_configure() {
+ econf \
+ --disable-gstreamer-plugin \
+ --disable-gtk-doc \
+ --disable-gtk-module \
+ --disable-schemas-compile \
+ --disable-static \
+ --enable-man-pages \
+ --enable-nls \
+ --enable-portage \
+ --localstatedir=/var \
+ $(use_enable bash-completion) \
+ $(use_enable command-not-found) \
+ $(use_enable connman) \
+ $(use_enable cron) \
+ $(use_enable entropy) \
+ $(use_enable introspection) \
+ $(use_enable networkmanager) \
+ $(use_enable nsplugin browser-plugin) \
+ $(use_enable systemd) \
+ $(use_enable test local) \
+ $(use_enable test daemon-tests) \
+ $(systemd_with_unitdir)
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die "emake install failed"
+ prune_libtool_files --all
+
+ dodoc AUTHORS MAINTAINERS NEWS README || die "dodoc failed"
+ dodoc ChangeLog || die "dodoc failed"
+
+ if use nsplugin; then
+ dodir "/usr/$(get_libdir)/${PLUGINS_DIR}"
+ mv "${D}/usr/$(get_libdir)/mozilla/plugins"/* \
+ "${D}/usr/$(get_libdir)/${PLUGINS_DIR}/" || die
+ fi
+}
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] proj/gnome:master commit in: app-admin/packagekit-base/
@ 2015-05-14 22:50 Gilles Dartiguelongue
0 siblings, 0 replies; 4+ messages in thread
From: Gilles Dartiguelongue @ 2015-05-14 22:50 UTC (permalink / raw
To: gentoo-commits
commit: 6a2d31aab76f1364768c52ea3263e2613677ed25
Author: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
AuthorDate: Thu May 14 22:49:01 2015 +0000
Commit: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
CommitDate: Thu May 14 22:49:01 2015 +0000
URL: https://gitweb.gentoo.org/proj/gnome.git/commit/?id=6a2d31aa
app-admin/packagekit-base: repoman warning fixes
app-admin/packagekit-base/packagekit-base-1.0.6.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-admin/packagekit-base/packagekit-base-1.0.6.ebuild b/app-admin/packagekit-base/packagekit-base-1.0.6.ebuild
index db5032c..b91902d 100644
--- a/app-admin/packagekit-base/packagekit-base-1.0.6.ebuild
+++ b/app-admin/packagekit-base/packagekit-base-1.0.6.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
@@ -56,7 +56,7 @@ RDEPEND="${CDEPEND}
>=app-portage/layman-2[${PYTHON_USEDEP}]
>=sys-apps/portage-2.2[${PYTHON_USEDEP}]
entropy? ( >=sys-apps/entropy-234[${PYTHON_USEDEP}] )
- !systemd? ( sys-auth/consolekit )
+ !systemd? ( sys-auth/consolekit )
"
S="${WORKDIR}/${MY_P}"
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] proj/gnome:master commit in: app-admin/packagekit-base/
@ 2016-01-03 13:35 Gilles Dartiguelongue
0 siblings, 0 replies; 4+ messages in thread
From: Gilles Dartiguelongue @ 2016-01-03 13:35 UTC (permalink / raw
To: gentoo-commits
commit: d45572c02881df7b83847e7607ee13dce981b4cc
Author: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 3 13:33:58 2016 +0000
Commit: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
CommitDate: Sun Jan 3 13:33:58 2016 +0000
URL: https://gitweb.gentoo.org/proj/gnome.git/commit/?id=d45572c0
app-admin/packagekit-base: moved to gentoo repo
app-admin/packagekit-base/metadata.xml | 19 ----
.../packagekit-base/packagekit-base-1.0.11.ebuild | 114 ---------------------
2 files changed, 133 deletions(-)
diff --git a/app-admin/packagekit-base/metadata.xml b/app-admin/packagekit-base/metadata.xml
deleted file mode 100644
index 4d74954..0000000
--- a/app-admin/packagekit-base/metadata.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer>
- <email>lxnay@gentoo.org</email>
- <name>Fabio Erculiani</name>
- </maintainer>
- <use>
- <flag name="command-not-found">Enable packagekit support on shell "command not found"</flag>
- <flag name="cron">Install cron script for auto-update</flag>
- <flag name="entropy">
- Enable Entropy backend
- </flag>
- <flag name="introspection">Use <pkg>dev-libs/gobject-introspection</pkg>
- Enable introspection
- </flag>
- </use>
-</pkgmetadata>
-
diff --git a/app-admin/packagekit-base/packagekit-base-1.0.11.ebuild b/app-admin/packagekit-base/packagekit-base-1.0.11.ebuild
deleted file mode 100644
index ebe534f..0000000
--- a/app-admin/packagekit-base/packagekit-base-1.0.11.ebuild
+++ /dev/null
@@ -1,114 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-# PackageKit supports 3.2+, but entropy and portage backends are untested
-# Future note: use --enable-python3
-PYTHON_COMPAT=( python2_7 )
-VALA_USE_DEPEND="vapigen"
-
-inherit bash-completion-r1 multilib nsplugins python-single-r1 systemd vala
-
-MY_PN="PackageKit"
-MY_P=${MY_PN}-${PV}
-
-DESCRIPTION="Manage packages in a secure way using a cross-distro and cross-architecture API"
-HOMEPAGE="http://www.packagekit.org/"
-SRC_URI="http://www.freedesktop.org/software/${MY_PN}/releases/${MY_P}.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="0/18"
-KEYWORDS="~alpha ~amd64 ~arm ~mips ~ppc ~ppc64 ~x86"
-IUSE="connman cron command-not-found +introspection networkmanager nsplugin entropy systemd test vala"
-REQUIRED_USE="
- ${PYTHON_REQUIRED_USE}
- vala? ( introspection )
-"
-
-# While not strictly needed, consolekit is the alternative to systemd-login
-# to get current session's user.
-CDEPEND="
- >=app-shells/bash-completion-2
- dev-db/sqlite:3
- >=dev-libs/dbus-glib-0.74
- >=dev-libs/glib-2.32.0:2[${PYTHON_USEDEP}]
- >=sys-auth/polkit-0.98
- >=sys-apps/dbus-1.3.0
- ${PYTHON_DEPS}
- connman? ( net-misc/connman )
- introspection? ( >=dev-libs/gobject-introspection-0.9.9[${PYTHON_USEDEP}] )
- networkmanager? ( >=net-misc/networkmanager-0.6.4 )
- nsplugin? (
- >=dev-libs/nspr-4.8
- x11-libs/cairo
- >=x11-libs/gtk+-2.14.0:2
- x11-libs/pango
- )
- systemd? ( >=sys-apps/systemd-204 )
-"
-DEPEND="${CDEPEND}
- dev-libs/libxslt[${PYTHON_USEDEP}]
- >=dev-util/gtk-doc-am-1.11
- >=dev-util/intltool-0.35.0
- sys-devel/gettext
- virtual/pkgconfig
- nsplugin? ( >=net-misc/npapi-sdk-0.27 )
- vala? ( $(vala_depend) )
-"
-RDEPEND="${CDEPEND}
- >=app-portage/layman-2[${PYTHON_USEDEP}]
- >=sys-apps/portage-2.2[${PYTHON_USEDEP}]
- entropy? ( >=sys-apps/entropy-234[${PYTHON_USEDEP}] )
- !systemd? ( sys-auth/consolekit )
-"
-
-S="${WORKDIR}/${MY_P}"
-
-RESTRICT="test"
-
-src_prepare() {
- use vala && vala_src_prepare
-}
-
-src_configure() {
- econf \
- --disable-gstreamer-plugin \
- --disable-gtk-doc \
- --disable-gtk-module \
- --disable-schemas-compile \
- --disable-static \
- --enable-bash-completion \
- --enable-man-pages \
- --enable-nls \
- --enable-portage \
- --localstatedir=/var \
- $(use_enable command-not-found) \
- $(use_enable connman) \
- $(use_enable cron) \
- $(use_enable entropy) \
- $(use_enable introspection) \
- $(use_enable networkmanager) \
- $(use_enable nsplugin browser-plugin) \
- $(use_enable systemd) \
- $(use_enable test daemon-tests) \
- $(use_enable vala) \
- $(systemd_with_unitdir)
- #$(use_enable test local)
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
- prune_libtool_files --all
-
- einstalldocs
-
- dodoc AUTHORS ChangeLog MAINTAINERS NEWS README
-
- if use nsplugin; then
- dodir "/usr/$(get_libdir)/${PLUGINS_DIR}"
- mv "${D}/usr/$(get_libdir)/mozilla/plugins"/* \
- "${D}/usr/$(get_libdir)/${PLUGINS_DIR}/" || die
- fi
-}
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2016-01-03 13:35 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-14 22:50 [gentoo-commits] proj/gnome:master commit in: app-admin/packagekit-base/ Gilles Dartiguelongue
-- strict thread matches above, loose matches on Subject: below --
2016-01-03 13:35 Gilles Dartiguelongue
2014-10-25 21:07 Gilles Dartiguelongue
2011-08-05 4:46 Alexandre Restovtsev
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox