parent
06128f553b
commit
3c5a2127e1
@ -1,90 +0,0 @@
|
||||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/app-arch/dpkg/dpkg-1.17.10.ebuild,v 1.10 2014/06/08 10:55:25 ago Exp $
|
||||
|
||||
EAPI=5
|
||||
inherit eutils multilib autotools toolchain-funcs
|
||||
|
||||
DESCRIPTION="Package maintenance system for Debian"
|
||||
HOMEPAGE="http://packages.qa.debian.org/dpkg"
|
||||
SRC_URI="mirror://debian/pool/main/d/${PN}/${P/-/_}.tar.xz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ppc ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-solaris ~x86-solaris"
|
||||
IUSE="+bzip2 dselect +lzma nls test unicode +update-alternatives +zlib"
|
||||
REQUIRED_USE="dselect? ( nls )"
|
||||
|
||||
RDEPEND="
|
||||
>=dev-lang/perl-5.6.0
|
||||
dev-perl/TimeDate
|
||||
>=sys-libs/ncurses-5.2-r7
|
||||
lzma? ( app-arch/xz-utils )
|
||||
zlib? ( >=sys-libs/zlib-1.1.4 )
|
||||
bzip2? ( app-arch/bzip2 )
|
||||
"
|
||||
DEPEND="
|
||||
${RDEPEND}
|
||||
app-arch/xz-utils
|
||||
sys-devel/flex
|
||||
virtual/pkgconfig
|
||||
nls? (
|
||||
app-text/po4a
|
||||
>=sys-devel/gettext-0.18.2
|
||||
)
|
||||
test? (
|
||||
dev-perl/DateTime-Format-DateParse
|
||||
dev-perl/IO-String
|
||||
dev-perl/Test-Pod
|
||||
virtual/perl-Test-Harness
|
||||
)
|
||||
"
|
||||
|
||||
DOCS=( ChangeLog THANKS TODO )
|
||||
|
||||
src_prepare() {
|
||||
# do not expect Debian's gzip --rsyncable extension
|
||||
epatch "${FILESDIR}"/${PN}-1.17.0-gzip-rsyncable.patch
|
||||
|
||||
epatch "${FILESDIR}"/${PN}-1.17.1-flags.patch
|
||||
|
||||
# Force the use of the running bash for get-version (this file is never
|
||||
# installed, so no need to worry about hardcoding a temporary bash)
|
||||
sed -i -e '1c\#!'"${BASH}" get-version || die
|
||||
|
||||
# test fails (bug #414095)
|
||||
sed -i utils/Makefile.am \
|
||||
-e '/^test_cases/d;/100_update_alternatives/d' || die
|
||||
|
||||
use nls && strip-linguas -i po
|
||||
|
||||
eautoreconf
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
tc-export CC
|
||||
econf \
|
||||
$(use_enable dselect) \
|
||||
$(use_enable nls) \
|
||||
$(use_enable unicode) \
|
||||
$(use_enable update-alternatives) \
|
||||
$(use_with bzip2 bz2) \
|
||||
$(use_with zlib) \
|
||||
$(use_with lzma liblzma) \
|
||||
--disable-compiler-warnings \
|
||||
--disable-silent-rules \
|
||||
--disable-start-stop-daemon \
|
||||
--localstatedir="${EPREFIX}"/var \
|
||||
--without-selinux
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake AR=$(tc-getAR)
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
|
||||
keepdir /usr/$(get_libdir)/db/methods/{mnt,floppy,disk}
|
||||
keepdir /usr/$(get_libdir)/db/{alternatives,info,methods,parts,updates}
|
||||
}
|
@ -0,0 +1,47 @@
|
||||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/app-crypt/monkeysign/monkeysign-2.0.2.ebuild,v 1.1 2014/12/06 12:14:37 k_f Exp $
|
||||
|
||||
EAPI=5
|
||||
PYTHON_COMPAT=( python2_7 )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="A user-friendly commandline tool to sign OpenGPG keys"
|
||||
HOMEPAGE="http://web.monkeysphere.info/monkeysign/"
|
||||
|
||||
SRC_URI="mirror://debian/pool/main/m/monkeysign/monkeysign_${PV}.tar.xz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE=""
|
||||
|
||||
CDEPEND="dev-python/pygtk:2[${PYTHON_USEDEP}]
|
||||
media-gfx/zbar:0[python,gtk,imagemagick,${PYTHON_USEDEP}]
|
||||
media-gfx/qrencode-python[${PYTHON_USEDEP}]
|
||||
virtual/python-imaging[${PYTHON_USEDEP}]"
|
||||
|
||||
DEPEND="dev-python/docutils[${PYTHON_USEDEP}]
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
app-arch/xz-utils
|
||||
${CDEPEND}"
|
||||
|
||||
RDEPEND="app-crypt/gnupg
|
||||
virtual/mta
|
||||
${CDEPEND}"
|
||||
|
||||
PATCHES=("${FILESDIR}/${PN}-1.1-basename.patch"
|
||||
"${FILESDIR}/${PN}-2.0.0-rst2s5.patch"
|
||||
)
|
||||
|
||||
python_test()
|
||||
{
|
||||
"${PYTHON}" ./test.py || die "Tests fails"
|
||||
}
|
||||
|
||||
python_install_all()
|
||||
{
|
||||
distutils-r1_python_install_all
|
||||
domenu "${FILESDIR}/monkeysign.desktop"
|
||||
}
|
@ -1,335 +0,0 @@
|
||||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-24.4.ebuild,v 1.2 2014/10/28 13:03:48 ulm Exp $
|
||||
|
||||
EAPI=5
|
||||
|
||||
inherit elisp-common eutils flag-o-matic multilib readme.gentoo
|
||||
|
||||
DESCRIPTION="The extensible, customizable, self-documenting real-time display editor"
|
||||
HOMEPAGE="http://www.gnu.org/software/emacs/"
|
||||
SRC_URI="mirror://gnu/emacs/${P}.tar.xz
|
||||
http://dev.gentoo.org/~ulm/emacs/${P}-patches-1.tar.xz"
|
||||
|
||||
LICENSE="GPL-3+ FDL-1.3+ BSD HPND MIT W3C unicode PSF-2"
|
||||
SLOT="24"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
|
||||
IUSE="acl alsa aqua athena dbus games gconf gfile gif gnutls gpm gsettings gtk +gtk3 gzip-el hesiod imagemagick +inotify jpeg kerberos libxml2 livecd m17n-lib motif pax_kernel png selinux sound source svg tiff toolkit-scroll-bars wide-int X Xaw3d xft +xpm zlib"
|
||||
REQUIRED_USE="?? ( aqua X )"
|
||||
|
||||
RDEPEND="sys-libs/ncurses
|
||||
>=app-admin/eselect-emacs-1.16
|
||||
>=app-emacs/emacs-common-gentoo-1.4-r1[games?,X?]
|
||||
net-libs/liblockfile
|
||||
acl? ( virtual/acl )
|
||||
alsa? ( media-libs/alsa-lib )
|
||||
dbus? ( sys-apps/dbus )
|
||||
gfile? ( >=dev-libs/glib-2.28.6 )
|
||||
gnutls? ( net-libs/gnutls )
|
||||
gpm? ( sys-libs/gpm )
|
||||
hesiod? ( net-dns/hesiod )
|
||||
kerberos? ( virtual/krb5 )
|
||||
libxml2? ( >=dev-libs/libxml2-2.2.0 )
|
||||
selinux? ( sys-libs/libselinux )
|
||||
zlib? ( sys-libs/zlib )
|
||||
X? (
|
||||
x11-libs/libXmu
|
||||
x11-libs/libXt
|
||||
x11-misc/xbitmaps
|
||||
gconf? ( >=gnome-base/gconf-2.26.2 )
|
||||
gsettings? ( >=dev-libs/glib-2.28.6 )
|
||||
gif? ( media-libs/giflib )
|
||||
jpeg? ( virtual/jpeg:0= )
|
||||
png? ( >=media-libs/libpng-1.4:0= )
|
||||
svg? ( >=gnome-base/librsvg-2.0 )
|
||||
tiff? ( media-libs/tiff )
|
||||
xpm? ( x11-libs/libXpm )
|
||||
imagemagick? ( >=media-gfx/imagemagick-6.6.2 )
|
||||
xft? (
|
||||
media-libs/fontconfig
|
||||
media-libs/freetype
|
||||
x11-libs/libXft
|
||||
m17n-lib? (
|
||||
>=dev-libs/libotf-0.9.4
|
||||
>=dev-libs/m17n-lib-1.5.1
|
||||
)
|
||||
)
|
||||
gtk? (
|
||||
gtk3? ( x11-libs/gtk+:3 )
|
||||
!gtk3? ( x11-libs/gtk+:2 )
|
||||
)
|
||||
!gtk? (
|
||||
motif? ( >=x11-libs/motif-2.3:0 )
|
||||
!motif? (
|
||||
Xaw3d? ( x11-libs/libXaw3d )
|
||||
!Xaw3d? ( athena? ( x11-libs/libXaw ) )
|
||||
)
|
||||
)
|
||||
)"
|
||||
|
||||
DEPEND="${RDEPEND}
|
||||
virtual/pkgconfig
|
||||
gzip-el? ( app-arch/gzip )
|
||||
pax_kernel? (
|
||||
sys-apps/attr
|
||||
sys-apps/paxctl
|
||||
)"
|
||||
|
||||
RDEPEND="${RDEPEND}
|
||||
!<app-editors/emacs-vcs-${PV}"
|
||||
|
||||
EMACS_SUFFIX="${PN/emacs/emacs-${SLOT}}"
|
||||
SITEFILE="20${PN}-${SLOT}-gentoo.el"
|
||||
# FULL_VERSION keeps the full version number, which is needed in
|
||||
# order to determine some path information correctly for copy/move
|
||||
# operations later on
|
||||
FULL_VERSION="${PV%%_*}"
|
||||
S="${WORKDIR}/emacs-${FULL_VERSION}"
|
||||
|
||||
src_prepare() {
|
||||
EPATCH_SUFFIX=patch epatch
|
||||
epatch_user
|
||||
|
||||
# Fix filename reference in redirected man page
|
||||
sed -i -e "/^\\.so/s/etags/&-${EMACS_SUFFIX}/" doc/man/ctags.1 \
|
||||
|| die "unable to sed ctags.1"
|
||||
|
||||
#AT_M4DIR=m4 eautoreconf
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
strip-flags
|
||||
filter-flags -pie #526948
|
||||
|
||||
if use sh; then
|
||||
replace-flags "-O[1-9]" -O0 #262359
|
||||
elif use ia64; then
|
||||
replace-flags "-O[2-9]" -O1 #325373
|
||||
else
|
||||
replace-flags "-O[3-9]" -O2
|
||||
fi
|
||||
|
||||
local myconf
|
||||
|
||||
if use alsa; then
|
||||
use sound || ewarn \
|
||||
"USE flag \"alsa\" overrides \"-sound\"; enabling sound support."
|
||||
myconf+=" --with-sound=alsa"
|
||||
else
|
||||
myconf+=" --with-sound=$(usex sound oss)"
|
||||
fi
|
||||
|
||||
if use X; then
|
||||
myconf+=" --with-x --without-ns"
|
||||
myconf+=" $(use_with gconf)"
|
||||
myconf+=" $(use_with gsettings)"
|
||||
myconf+=" $(use_with toolkit-scroll-bars)"
|
||||
myconf+=" $(use_with gif)"
|
||||
myconf+=" $(use_with jpeg)"
|
||||
myconf+=" $(use_with png)"
|
||||
myconf+=" $(use_with svg rsvg)"
|
||||
myconf+=" $(use_with tiff)"
|
||||
myconf+=" $(use_with xpm)"
|
||||
myconf+=" $(use_with imagemagick)"
|
||||
|
||||
if use xft; then
|
||||
myconf+=" --with-xft"
|
||||
myconf+=" $(use_with m17n-lib libotf)"
|
||||
myconf+=" $(use_with m17n-lib m17n-flt)"
|
||||
else
|
||||
myconf+=" --without-xft"
|
||||
myconf+=" --without-libotf --without-m17n-flt"
|
||||
use m17n-lib && ewarn \
|
||||
"USE flag \"m17n-lib\" has no effect if \"xft\" is not set."
|
||||
fi
|
||||
|
||||
local f
|
||||
if use gtk; then
|
||||
einfo "Configuring to build with GIMP Toolkit (GTK+)"
|
||||
myconf+=" --with-x-toolkit=$(usex gtk3 gtk3 gtk2)"
|
||||
for f in motif Xaw3d athena; do
|
||||
use ${f} && ewarn \
|
||||
"USE flag \"${f}\" has no effect if \"gtk\" is set."
|
||||
done
|
||||
elif use motif; then
|
||||
einfo "Configuring to build with Motif toolkit"
|
||||
myconf+=" --with-x-toolkit=motif"
|
||||
for f in Xaw3d athena; do
|
||||
use ${f} && ewarn \
|
||||
"USE flag \"${f}\" has no effect if \"motif\" is set."
|
||||
done
|
||||
elif use athena || use Xaw3d; then
|
||||
einfo "Configuring to build with Athena/Lucid toolkit"
|
||||
myconf+=" --with-x-toolkit=lucid $(use_with Xaw3d xaw3d)"
|
||||
else
|
||||
einfo "Configuring to build with no toolkit"
|
||||
myconf+=" --with-x-toolkit=no"
|
||||
fi
|
||||
elif use aqua; then
|
||||
einfo "Configuring to build with Nextstep (Cocoa) support"
|
||||
myconf+=" --with-ns --disable-ns-self-contained"
|
||||
myconf+=" --without-x"
|
||||
else
|
||||
myconf+=" --without-x --without-ns"
|
||||
fi
|
||||
|
||||
# Save version information in the Emacs binary. It will be available
|
||||
# in variable "system-configuration-options".
|
||||
myconf+=" GENTOO_PACKAGE=${CATEGORY}/${PF}"
|
||||
|
||||
econf \
|
||||
--program-suffix="-${EMACS_SUFFIX}" \
|
||||
--infodir="${EPREFIX}"/usr/share/info/${EMACS_SUFFIX} \
|
||||
--localstatedir="${EPREFIX}"/var \
|
||||
--enable-locallisppath="${EPREFIX}/etc/emacs:${EPREFIX}${SITELISP}" \
|
||||
--with-gameuser="${GAMES_USER_DED:-games}" \
|
||||
--without-compress-install \
|
||||
--with-file-notification=$(usev gfile || usev inotify || echo no) \
|
||||
$(use_enable acl) \
|
||||
$(use_with dbus) \
|
||||
$(use_with gnutls) \
|
||||
$(use_with gpm) \
|
||||
$(use_with hesiod) \
|
||||
$(use_with kerberos) $(use_with kerberos kerberos5) \
|
||||
$(use_with libxml2 xml2) \
|
||||
$(use_with selinux) \
|
||||
$(use_with wide-int) \
|
||||
$(use_with zlib) \
|
||||
${myconf}
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
export SANDBOX_ON=0 # for the unbelievers, see Bug #131505
|
||||
emake
|
||||
}
|
||||
|
||||
src_install () {
|
||||
emake DESTDIR="${D}" NO_BIN_LINK=t install
|
||||
|
||||
mv "${ED}"/usr/bin/{emacs-${FULL_VERSION}-,}${EMACS_SUFFIX} \
|
||||
|| die "moving emacs executable failed"
|
||||
mv "${ED}"/usr/share/man/man1/{emacs-,}${EMACS_SUFFIX}.1 \
|
||||
|| die "moving emacs man page failed"
|
||||
|
||||
# move info dir to avoid collisions with the dir file generated by portage
|
||||
mv "${ED}"/usr/share/info/${EMACS_SUFFIX}/dir{,.orig} \
|
||||
|| die "moving info dir failed"
|
||||
touch "${ED}"/usr/share/info/${EMACS_SUFFIX}/.keepinfodir
|
||||
docompress -x /usr/share/info/${EMACS_SUFFIX}/dir.orig
|
||||
|
||||
# avoid collision between slots, see bug #169033 e.g.
|
||||
rm "${ED}"/usr/share/emacs/site-lisp/subdirs.el
|
||||
rm -rf "${ED}"/usr/share/{applications,icons}
|
||||
rm -rf "${ED}"/var
|
||||
|
||||
# remove unused <version>/site-lisp dir
|
||||
rm -rf "${ED}"/usr/share/emacs/${FULL_VERSION}/site-lisp
|
||||
|
||||
if use gzip-el; then
|
||||
# compress .el files when a corresponding .elc exists
|
||||
find "${ED}"/usr/share/emacs/${FULL_VERSION}/lisp -type f \
|
||||
-name "*.elc" -print | sed 's/\.elc$/.el/' | xargs gzip -9n
|
||||
assert "gzip .el failed"
|
||||
fi
|
||||
|
||||
local cdir
|
||||
if use source; then
|
||||
cdir="/usr/share/emacs/${FULL_VERSION}/src"
|
||||
insinto "${cdir}"
|
||||
# This is not meant to install all the source -- just the
|
||||
# C source you might find via find-function
|
||||
doins src/*.{c,h,m}
|
||||
elif has installsources ${FEATURES}; then
|
||||
cdir="/usr/src/debug/${CATEGORY}/${PF}/${S#"${WORKDIR}/"}/src"
|
||||
fi
|
||||
|
||||
sed -e "${cdir:+#}/^Y/d" -e "s/^[XY]//" >"${T}/${SITEFILE}" <<-EOF
|
||||
X
|
||||
;;; ${PN}-${SLOT} site-lisp configuration
|
||||
X
|
||||
(when (string-match "\\\\\`${FULL_VERSION//./\\\\.}\\\\>" emacs-version)
|
||||
Y (setq find-function-C-source-directory
|
||||
Y "${EPREFIX}${cdir}")
|
||||
X (let ((path (getenv "INFOPATH"))
|
||||
X (dir "${EPREFIX}/usr/share/info/${EMACS_SUFFIX}")
|
||||
X (re "\\\\\`${EPREFIX}/usr/share/info\\\\>"))
|
||||
X (and path
|
||||
X ;; move Emacs Info dir before anything else in /usr/share/info
|
||||
X (let* ((p (cons nil (split-string path ":" t))) (q p))
|
||||
X (while (and (cdr q) (not (string-match re (cadr q))))
|
||||
X (setq q (cdr q)))
|
||||
X (setcdr q (cons dir (delete dir (cdr q))))
|
||||
X (setq Info-directory-list (prune-directory-list (cdr p)))))))
|
||||
EOF
|
||||
elisp-site-file-install "${T}/${SITEFILE}" || die
|
||||
|
||||
dodoc README BUGS
|
||||
|
||||
if use aqua; then
|
||||
dodir /Applications/Gentoo
|
||||
rm -rf "${ED}"/Applications/Gentoo/Emacs${EMACS_SUFFIX#emacs}.app
|
||||
mv nextstep/Emacs.app \
|
||||
"${ED}"/Applications/Gentoo/Emacs${EMACS_SUFFIX#emacs}.app || die
|
||||
fi
|
||||
|
||||
DOC_CONTENTS="You can set the version to be started by /usr/bin/emacs
|
||||
through the Emacs eselect module, which also redirects man and info
|
||||
pages. Therefore, several Emacs versions can be installed at the
|
||||
same time. \"man emacs.eselect\" for details.
|
||||
\\n\\nIf you upgrade from Emacs version 24.2 or earlier, then it is
|
||||
strongly recommended that you use app-admin/emacs-updater to rebuild
|
||||
all byte-compiled elisp files of the installed Emacs packages."
|
||||
use X && DOC_CONTENTS+="\\n\\nYou need to install some fonts for Emacs.
|
||||
Installing media-fonts/font-adobe-{75,100}dpi on the X server's
|
||||
machine would satisfy basic Emacs requirements under X11.
|
||||
See also https://wiki.gentoo.org/wiki/Xft_support_for_GNU_Emacs
|
||||
for how to enable anti-aliased fonts."
|
||||
use aqua && DOC_CONTENTS+="\\n\\nEmacs${EMACS_SUFFIX#emacs}.app is in
|
||||
\"${EPREFIX}/Applications/Gentoo\". You may want to copy or symlink
|
||||
it into /Applications by yourself."
|
||||
readme.gentoo_create_doc
|
||||
}
|
||||
|
||||
pkg_preinst() {
|
||||
# move Info dir file to correct name
|
||||
local infodir=/usr/share/info/${EMACS_SUFFIX} f
|
||||
if [[ -f ${ED}${infodir}/dir.orig ]]; then
|
||||
mv "${ED}"${infodir}/dir{.orig,} || die "moving info dir failed"
|
||||
elif [[ -d "${ED}"${infodir} ]]; then
|
||||
# this should not happen in EAPI 4
|
||||
ewarn "Regenerating Info directory index in ${infodir} ..."
|
||||
rm -f "${ED}"${infodir}/dir{,.*}
|
||||
for f in "${ED}"${infodir}/*; do
|
||||
if [[ ${f##*/} != *-[0-9]* && -e ${f} ]]; then
|
||||
install-info --info-dir="${ED}"${infodir} "${f}" \
|
||||
|| die "install-info failed"
|
||||
fi
|
||||
done
|
||||
fi
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
elisp-site-regen
|
||||
|
||||
local pvr
|
||||
for pvr in ${REPLACING_VERSIONS}; do
|
||||
[[ ${pvr%%[-_]*} = 24.[12] ]] && FORCE_PRINT_ELOG=1
|
||||
done
|
||||
readme.gentoo_print_elog
|
||||
|
||||
if use livecd; then
|
||||
# force an update of the emacs symlink for the livecd/dvd,
|
||||
# because some microemacs packages set it with USE=livecd
|
||||
eselect emacs update
|
||||
elif [[ $(readlink "${EROOT}"/usr/bin/emacs) = ${EMACS_SUFFIX} ]]; then
|
||||
# refresh symlinks in case any installed files have changed
|
||||
eselect emacs set ${EMACS_SUFFIX}
|
||||
else
|
||||
eselect emacs update ifunset
|
||||
fi
|
||||
}
|
||||
|
||||
pkg_postrm() {
|
||||
elisp-site-regen
|
||||
eselect emacs update ifunset
|
||||
}
|
@ -1,39 +0,0 @@
|
||||
# Copyright 1999-2012 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/app-editors/leo/leo-4.10.ebuild,v 1.2 2012/11/01 10:12:09 ulm Exp $
|
||||
|
||||
EAPI="3"
|
||||
PYTHON_DEPEND="2:2.6"
|
||||
PYTHON_USE_WITH="tk"
|
||||
SUPPORT_PYTHON_ABIS="1"
|
||||
RESTRICT_PYTHON_ABIS="2.4 2.5 3.* *-pypy-* *-jython"
|
||||
|
||||
inherit distutils eutils
|
||||
|
||||
MY_P="Leo-${PV}-final"
|
||||
|
||||
DESCRIPTION="Leo: Literate Editor with Outlines"
|
||||
HOMEPAGE="http://leo.sourceforge.net/ http://pypi.python.org/pypi/leo"
|
||||
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.zip"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~ppc ~x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="app-text/silvercity
|
||||
dev-python/PyQt4[X]"
|
||||
DEPEND="${RDEPEND}
|
||||
app-arch/unzip"
|
||||
|
||||
S="${WORKDIR}/${MY_P}"
|
||||
|
||||
src_prepare() {
|
||||
distutils_src_prepare
|
||||
epatch "${FILESDIR}/${P}-fix_syntax_errors.patch"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
distutils_src_install
|
||||
dohtml -r leo/doc/html/* || die "dohtml failed"
|
||||
}
|
@ -1,39 +0,0 @@
|
||||
# Copyright 1999-2012 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/app-editors/leo/leo-4.8.ebuild,v 1.6 2012/11/01 10:12:09 ulm Exp $
|
||||
|
||||
EAPI="3"
|
||||
PYTHON_DEPEND="2:2.6"
|
||||
PYTHON_USE_WITH="tk"
|
||||
SUPPORT_PYTHON_ABIS="1"
|
||||
RESTRICT_PYTHON_ABIS="2.4 2.5 3.* *-pypy-* *-jython"
|
||||
|
||||
inherit distutils eutils
|
||||
|
||||
MY_P="Leo-${PV}-final"
|
||||
|
||||
DESCRIPTION="Leo: Literate Editor with Outlines"
|
||||
HOMEPAGE="http://leo.sourceforge.net/ http://pypi.python.org/pypi/leo"
|
||||
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.zip"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 ppc x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="app-text/silvercity
|
||||
dev-python/PyQt4[X]"
|
||||
DEPEND="${RDEPEND}
|
||||
app-arch/unzip"
|
||||
|
||||
S="${WORKDIR}/${MY_P}"
|
||||
|
||||
src_prepare() {
|
||||
distutils_src_prepare
|
||||
epatch "${FILESDIR}/${P}-fix_syntax_errors.patch"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
distutils_src_install
|
||||
dohtml -r leo/doc/html/* || die "dohtml failed"
|
||||
}
|
@ -0,0 +1,36 @@
|
||||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/app-editors/leo/leo-5.0.ebuild,v 1.1 2014/12/06 11:10:19 idella4 Exp $
|
||||
|
||||
EAPI=5
|
||||
|
||||
# Not py3 prepared
|
||||
# https://bugs.launchpad.net/leo-editor/+bug/1399895
|
||||
PYTHON_COMPAT=( python2_7 )
|
||||
PYTHON_REQUIRED_USE="tk"
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
MY_P="Leo-${PV}-final"
|
||||
MY_PN="Leo${PV}-final"
|
||||
|
||||
DESCRIPTION="Leo: Literate Editor with Outlines"
|
||||
HOMEPAGE="http://leo.sourceforge.net/ http://pypi.python.org/pypi/leo"
|
||||
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.zip"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~ppc ~x86"
|
||||
IUSE="doc"
|
||||
|
||||
RDEPEND="app-text/silvercity
|
||||
dev-python/PyQt4[X,${PYTHON_USEDEP}]"
|
||||
DEPEND="${RDEPEND}
|
||||
app-arch/unzip"
|
||||
|
||||
S="${WORKDIR}/${MY_PN}"
|
||||
|
||||
python_install_all() {
|
||||
use doc && local HTML_DOCS=( leo/doc/html/. )
|
||||
distutils-r1_python_install_all
|
||||
}
|
@ -0,0 +1,52 @@
|
||||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/app-editors/mg/mg-20141127.ebuild,v 1.1 2014/12/06 14:34:01 ulm Exp $
|
||||
|
||||
EAPI=5
|
||||
|
||||
inherit eutils toolchain-funcs
|
||||
|
||||
DESCRIPTION="MicroGnuEmacs, a port from the BSDs"
|
||||
HOMEPAGE="http://homepage.boetes.org/software/mg/"
|
||||
SRC_URI="http://homepage.boetes.org/software/mg/${P}.tar.gz"
|
||||
|
||||
LICENSE="public-domain"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
|
||||
IUSE="livecd"
|
||||
|
||||
RDEPEND="sys-libs/ncurses
|
||||
!elibc_FreeBSD? ( dev-libs/libbsd )"
|
||||
DEPEND="${RDEPEND}
|
||||
virtual/pkgconfig"
|
||||
|
||||
src_prepare() {
|
||||
epatch_user
|
||||
|
||||
# remove OpenBSD specific easter egg
|
||||
sed -i -e 's/theo\.o//' GNUmakefile || die
|
||||
sed -i -e '/theo_init/d' main.c || die
|
||||
|
||||
# fix path to tutorial in man page
|
||||
sed -i -e "s:doc/mg/:doc/${PF}/:" mg.1 || die
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake CC="$(tc-getCC)" \
|
||||
CFLAGS="${CFLAGS}" \
|
||||
CURSES_LIBS="$("$(tc-getPKG_CONFIG)" --libs ncurses)"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dobin mg
|
||||
doman mg.1
|
||||
dodoc README tutorial
|
||||
# don't compress the tutorial, otherwise mg cannot open it
|
||||
docompress -x /usr/share/doc/${PF}/tutorial
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
if use livecd; then
|
||||
[[ -e ${EROOT}/usr/bin/emacs ]] || ln -s mg "${EROOT}"/usr/bin/emacs
|
||||
fi
|
||||
}
|
@ -0,0 +1,127 @@
|
||||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-cpp/tbb/tbb-4.3.20141023.ebuild,v 1.1 2014/12/06 21:15:22 tamiko Exp $
|
||||
|
||||
EAPI=5
|
||||
inherit eutils flag-o-matic multilib versionator toolchain-funcs
|
||||
|
||||
PV1="$(get_version_component_range 1)"
|
||||
PV2="$(get_version_component_range 2)"
|
||||
PV3="$(get_version_component_range 3)"
|
||||
MYP="${PN}${PV1}${PV2}_${PV3}oss"
|
||||
|
||||
DESCRIPTION="High level abstract threading library"
|
||||
HOMEPAGE="http://www.threadingbuildingblocks.org/"
|
||||
SRC_URI="http://threadingbuildingblocks.org/sites/default/files/software_releases/source/${MYP}_src.tgz"
|
||||
LICENSE="GPL-2-with-exceptions"
|
||||
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm ~ppc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux"
|
||||
IUSE="debug doc examples"
|
||||
|
||||
DEPEND=""
|
||||
RDEPEND="${DEPEND}"
|
||||
S="${WORKDIR}/${MYP}"
|
||||
|
||||
src_prepare() {
|
||||
epatch \
|
||||
"${FILESDIR}"/${PN}-4.0.297-underlinking.patch
|
||||
# use fully qualified gcc compilers. do not force march/mcpu
|
||||
# not tested with icc
|
||||
# order in sed expressions is important
|
||||
sed -i \
|
||||
-e "s/g++/$(tc-getCXX)/g" \
|
||||
-e "s/gcc/$(tc-getCC)/g" \
|
||||
-e 's/-m\(arch\|cpu\)=*[[:space:]]//g' \
|
||||
-e 's/-\(m\|-\)\(64\|32\)//g' \
|
||||
-e 's/-O2/$(CXXFLAGS)/g' \
|
||||
-e "/^ASM/s/as/$(tc-getAS)/g" \
|
||||
build/*.gcc.inc || die
|
||||
|
||||
# Give it a soname on FreeBSD
|
||||
echo 'LIB_LINK_FLAGS += -Wl,-soname=$(BUILDING_LIBRARY)' >> build/FreeBSD.gcc.inc
|
||||
# Set proper versionning on FreeBSD
|
||||
sed -i -e '/.DLL =/s/$/.1/' build/FreeBSD.inc || die
|
||||
|
||||
# force 64bit where applicable, 32bit where applicable...
|
||||
# built-in detection is based on running kernel, which messes up
|
||||
# e.g. in a x86 chroot on amd64 kernel. Bug 462130
|
||||
# see build/linux.inc for values
|
||||
use amd64 && export arch=x86_64
|
||||
use amd64-linux && export arch=x86_64
|
||||
use x86 && export arch=ia32
|
||||
use x86-linux && export arch=ia32
|
||||
# no idea what to do with ppc but so far it seems to work
|
||||
|
||||
find include -name \*.html -delete || die
|
||||
|
||||
# pc files are for debian and fedora compatibility
|
||||
# some deps use them
|
||||
cat <<-EOF > ${PN}.pc.template
|
||||
prefix=${EPREFIX}/usr
|
||||
libdir=\${prefix}/$(get_libdir)
|
||||
includedir=\${prefix}/include
|
||||
Name: ${PN}
|
||||
Description: ${DESCRIPTION}
|
||||
Version: ${PV}
|
||||
URL: ${HOMEPAGE}
|
||||
Cflags: -I\${includedir}
|
||||
EOF
|
||||
cp ${PN}.pc.template ${PN}.pc
|
||||
cat <<-EOF >> ${PN}.pc
|
||||
Libs: -L\${libdir} -ltbb
|
||||
Libs.private: -lm -lrt
|
||||
EOF
|
||||
cp ${PN}.pc.template ${PN}malloc.pc
|
||||
cat <<-EOF >> ${PN}malloc.pc
|
||||
Libs: -L\${libdir} -ltbbmalloc
|
||||
Libs.private: -lm -lrt
|
||||
EOF
|
||||
cp ${PN}.pc.template ${PN}malloc_proxy.pc
|
||||
cat <<-EOF >> ${PN}malloc_proxy.pc
|
||||
Libs: -L\${libdir} -ltbbmalloc_proxy
|
||||
Libs.private: -lrt
|
||||
Requires: tbbmalloc
|
||||
EOF
|
||||
use debug || sed -i -e '/_debug/d' Makefile
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
if [[ $(tc-getCXX) == *g++* ]]; then
|
||||
comp="gcc"
|
||||
elif [[ $(tc-getCXX) == *ic*c ]]; then
|
||||
comp="icc"
|
||||
else
|
||||
die "compiler $(tc-getCXX) not supported by build system"
|
||||
fi
|
||||
emake compiler=${comp} tbb tbbmalloc
|
||||
}
|
||||
|
||||
src_test() {
|
||||
append-cxxflags -fabi-version=4
|
||||
# avoid oversubscribing with -j1
|
||||
emake -j1 compiler=${comp} test
|
||||
}
|
||||
|
||||
src_install(){
|
||||
local l
|
||||
for l in $(find build -name lib\*.so.\*); do
|
||||
dolib.so ${l}
|
||||
local bl=$(basename ${l})
|
||||
dosym ${bl} /usr/$(get_libdir)/${bl%.*}
|
||||
done
|
||||
doheader -r include/*
|
||||
|
||||
insinto /usr/$(get_libdir)/pkgconfig
|
||||
doins *.pc
|
||||
|
||||
dodoc README CHANGES doc/Release_Notes.txt
|
||||
use doc && dohtml -r doc/html/*
|
||||
|
||||
if use examples ; then
|
||||
insinto /usr/share/doc/${PF}/examples/build
|
||||
doins build/*.inc
|
||||
insinto /usr/share/doc/${PF}/examples
|
||||
doins -r examples
|
||||
fi
|
||||
}
|
@ -1,25 +0,0 @@
|
||||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libksba/libksba-1.3.0.ebuild,v 1.18 2014/11/26 01:00:16 radhermit Exp $
|
||||
|
||||
EAPI="4"
|
||||
|
||||
# so we won't need to autoreconf yet another g10 package
|
||||
AUTOTOOLS_IN_SOURCE_BUILD=1
|
||||
inherit autotools-utils
|
||||
|
||||
DESCRIPTION="X.509 and CMS (PKCS#7) library"
|
||||
HOMEPAGE="http://www.gnupg.org/related_software/libksba"
|
||||
SRC_URI="mirror://gnupg/libksba/${P}.tar.bz2"
|
||||
|
||||
LICENSE="LGPL-3+ GPL-2+ GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
|
||||
IUSE="static-libs"
|
||||
|
||||
RDEPEND=">=dev-libs/libgpg-error-1.8"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
PATCHES=(
|
||||
"${FILESDIR}/${P}-aix.patch"
|
||||
)
|
@ -0,0 +1,33 @@
|
||||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-perl/Archive-Any/Archive-Any-0.94.100.ebuild,v 1.1 2014/12/06 20:20:38 dilfridge Exp $
|
||||
|
||||
EAPI=5
|
||||
|
||||
MODULE_AUTHOR=OALDERS
|
||||
MODULE_VERSION=0.0941
|
||||
inherit perl-module
|
||||
|
||||
DESCRIPTION="Single interface to deal with file archives"
|
||||
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="test"
|
||||
|
||||
RDEPEND="
|
||||
virtual/perl-Archive-Tar
|
||||
dev-perl/Archive-Zip
|
||||
dev-perl/Module-Find
|
||||
dev-perl/MIME-Types
|
||||
dev-perl/File-MMagic
|
||||
virtual/perl-File-Spec
|
||||
"
|
||||
DEPEND="${RDEPEND}
|
||||
>=virtual/perl-Module-Build-0.360.100
|
||||
test? (
|
||||
virtual/perl-Test-Simple
|
||||
dev-perl/Test-Warn
|
||||
)
|
||||
"
|
||||
|
||||
SRC_TEST="do parallel"
|
@ -0,0 +1,10 @@
|
||||
# ChangeLog for dev-perl/Archive-Any
|
||||
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-perl/Archive-Any/ChangeLog,v 1.1 2014/12/06 20:20:38 dilfridge Exp $
|
||||
|
||||
*Archive-Any-0.94.100 (06 Dec 2014)
|
||||
|
||||
06 Dec 2014; Andreas K. Huettel <dilfridge@gentoo.org>
|
||||
+Archive-Any-0.94.100.ebuild, +metadata.xml:
|
||||
New package, imported from perl overlay, bug 311017
|
||||
|
@ -0,0 +1,26 @@
|
||||
-----BEGIN PGP SIGNED MESSAGE-----
|
||||
Hash: SHA256
|
||||
|
||||
DIST Archive-Any-0.0941.tar.gz 78703 SHA256 2f2172cf8ffb4f9338093c15025eeefeb634dba8d09a1ebbe5839ace1c74fdb7 SHA512 13fa297792e367560c12d8d22aef8214dbba2a9e0c8cc2b9b01d6e5c21a07f49d45024c930891bf921e53fa9c4443ad14db5ce1ab46bb7825e37fd4881b07ba4 WHIRLPOOL 42bed5592f9305c7778d1fb2be57337553d3fee3f2a0ccb2ae59a92e14f407c4a6e57a2be39f1d9b3248b28af4e49d1cbf74028fd2cbc12f97509eb791e36dd7
|
||||
EBUILD Archive-Any-0.94.100.ebuild 704 SHA256 dafe4571a7c6cc1eb6729d6ef52a863c68b5fea074133305b913068cd5af3ad9 SHA512 b1efc0434e9cae74056807714bb648b98e144314aa084512ff3d775dbbe57278aee8710eaea2accd6e0397934f4af80d68ebad7033618a08a4fa4bb28918925d WHIRLPOOL ee384ee13f1de7355f12f3e4df41452593f90a4dcefe281bf7f8e87f3fa950c9e13d66132fec67902bb0a5ca6e608ae786c5b35da998d6ed85c5bed68919cc18
|
||||
MISC ChangeLog 412 SHA256 1af07e997a4493185bcad13c2896e613a313412a1686f43e5c5c492072c93f52 SHA512 e809be994fb0867d41a5214456a94cd3bac5e7ddf6a29f263f048d461b98f51d05ab978c5a9edd5d7584e96f312ec8f0de4f7608dcdd0a8aa35fa27bb354249f WHIRLPOOL 1af02ba14a77139969d790b6294c54f92b261c90d0c26834f75ab5026a5121cac5396a57f219a606ebd6f610ba22a7803a8d9bcca437cf47419ebe62a751e06e
|
||||
MISC metadata.xml 585 SHA256 725a9a6612aa9381c40c2a778d8c5411d708731c844aa252560d820bb873724f SHA512 2462e445768c2e236e7acac22a831229ae1a69d05d3958daa5db55cafbac2b407091225c9a75e0598071b5304acff131dd4b743cedc08f1f0bd0b718b4d4b964 WHIRLPOOL d0bb22d50635bef67e3c37dd4cc3f5a6967d078cd52e4e48e85a1a82a5532ff39f78e8a70a9f7338a312ca5167fc4cf2dce1a114e3523fd52b31608598ba9c7a
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
Version: GnuPG v2.0
|
||||
|
||||
iQJ8BAEBCABmBQJUg2UXXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
|
||||
ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQwNzlCRDk4QzA4RENBRkYzQUEwRjQzMDlF
|
||||
QkU2QTMzNkJFMTkwMzlDAAoJEOvmoza+GQOcczoP/jPY7u0aT6T23pFUwZmAWAk9
|
||||
gcFYTPYLSgcLct6fllTUxQ/W+Upha3wYgIl2dOj4+ot3YWDfITCJHo0YJZh6J/pr
|
||||
X16OVOc4Wk5PVV9z/xyHkENvjY3qb8zBuRDqLoG44GLBQ//mcP3S/YSj8Wc56Mou
|
||||
RgN7mq5rrX51PtFPCbpyHD0Hq38QlWgzVR+F4bxQNrUPZUcGjeF1/6OxjIeR0k03
|
||||
9SgL0I8UluPO2VXk+EnmN0EIZBBwfDkWr4x6V5uUZI4cgWmhsWlVcMMmQODwk4d1
|
||||
zRCHJCNVeS7GebiZO3rwIt7MmW36GSFvJesBZFrAcFPhkIVitVfJH9QFCrJBIJ39
|
||||
CtVErcfD6WeNDOoSQZwW98mHRWz328UScUUUz1ztMDZa2iyLSvRgp4cm/UW6P2Ck
|
||||
ypViUoFGcOCpR8v5yKTEGc8UXihgqMcPG6fbcWXO4/xQ5YXBWyQsrkeZIUyWrwiZ
|
||||
wvZs6Rnfu3kHaNAy1p9GRw+BySo2blk4H9J4KWG63I1wxHl60CusBmGZpSuj+Wkn
|
||||
DAuaLLQapcUwO+9MT2EgPptSYvA8GNwq95dMBz8TpX7Nj8DhO++s00B+nbsfheri
|
||||
P23gULPe0liS1No0HGdrFCX4KxFPmjvh6xjlwRbUXvsWFOVVvX5RaZFUjfsoNknF
|
||||
/hTgtm5g9WXO5qsgTs46
|
||||
=eziu
|
||||
-----END PGP SIGNATURE-----
|
@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<herd>perl</herd>
|
||||
<upstream>
|
||||
<remote-id type="cpan">Archive-Any</remote-id>
|
||||
<remote-id type="cpan-module">Archive::Any</remote-id>
|
||||
<remote-id type="cpan-module">Archive::Any::Plugin</remote-id>
|
||||
<remote-id type="cpan-module">Archive::Any::Plugin::Tar</remote-id>
|
||||
<remote-id type="cpan-module">Archive::Any::Plugin::Zip</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
@ -0,0 +1,23 @@
|
||||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-perl/CSS-Packer/CSS-Packer-1.2.1.ebuild,v 1.1 2014/12/06 19:46:44 dilfridge Exp $
|
||||
|
||||
EAPI=5
|
||||
MODULE_AUTHOR=NEVESENIN
|
||||
MODULE_VERSION=1.002001
|
||||
inherit perl-module
|
||||
|
||||
DESCRIPTION='Another CSS minifier'
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="test"
|
||||
|
||||
RDEPEND="
|
||||
>=dev-perl/Regexp-RegGrp-1.1.1_rc
|
||||
"
|
||||
DEPEND="${RDEPEND}
|
||||
>=virtual/perl-ExtUtils-MakeMaker-6.560.0
|
||||
test? ( virtual/perl-Test-Simple )
|
||||
"
|
||||
|
||||
SRC_TEST="do"
|
@ -0,0 +1,10 @@
|
||||
# ChangeLog for dev-perl/CSS-Packer
|
||||
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-perl/CSS-Packer/ChangeLog,v 1.1 2014/12/06 19:46:44 dilfridge Exp $
|
||||
|
||||
*CSS-Packer-1.2.1 (06 Dec 2014)
|
||||
|
||||
06 Dec 2014; Andreas K. Huettel <dilfridge@gentoo.org>
|
||||
+CSS-Packer-1.2.1.ebuild, +metadata.xml:
|
||||
New package, imported from perl overlay, bug 311045
|
||||
|
@ -0,0 +1,26 @@
|
||||
-----BEGIN PGP SIGNED MESSAGE-----
|
||||
Hash: SHA256
|
||||
|
||||
DIST CSS-Packer-1.002001.tar.gz 31201 SHA256 1cfb9d1d40861337f01ed9b449d3d258ab636fab03d978e0c21801624beb3e38 SHA512 d6dce678b7e9d661efa9cfbbe971865f8e89d589d5fe4b05032c8386c043f80f1700ead0e1526dfc0624f2e3514cec3d008578d503e8f494db8dbc866916c483 WHIRLPOOL fffeb4df7b33b3fc53fc29787516d715499552db82f65e086781271bb8b19ad063c1e5ee9bbc641db9c3d52f84e05d195349d8980315d4e53d397ba4d76f94d7
|
||||
EBUILD CSS-Packer-1.2.1.ebuild 547 SHA256 a31adfc3659bb717c0799894fc088fb7d057a4931047a02ac2cf7b922247efd8 SHA512 3eaa48a9b6b04ce66e0f6bcb0631e5f893ce26084222e152c8eaf6e4b67fc2fb650171beb9b92bb7f53ad9a46dacd2be0e3928e50cbe6d6c34690e1272e30f35 WHIRLPOOL b3b4f3d78f9bc0dc0edf3a62da1e96e708b8e2d8229c26f8ce07cab144e9acd92ed15d7782ca7cf63095536a019faad83f7e383431e1249299eb0c136286b73a
|
||||
MISC ChangeLog 402 SHA256 03228b401d2c73f6d121391be12488cc7d263b80d0065902c2a83e01fb9a9476 SHA512 a4160ded56f43afe9e7e8fbb68b9575f816bea842ef081431b9785e838f024a1ce2c2179320b5b725222bc377d1011113ea2b97302a202fc8f119e5c4aa17b8d WHIRLPOOL 2747dd2b4d26b0e2e269a9be64a7eb357fc17a17470acdd0d97026eee224201eed4449d7736b8f45884fe3fb27720a381365eeb78847464c9093c86f56fce2b2
|
||||
MISC metadata.xml 336 SHA256 0ff84cbaebde128b9e739acae468ffec2a376a385847bf6f53a59bea675a9983 SHA512 9f5edfe07bb1b846b468262f0e8ec532de4ba9efd69c877ccf61b67f4e6be4352eb8f83f5d69c059c62e6ba8e193a0a3c2139f1bdc66eb078855331f789341be WHIRLPOOL 2372717ded057dd937b868eab60e741739437ce77194bbafaeee56d29289e6fb95b93979c379e629b2c75956b6c60e8f1ae977d38a984a3078e4f6fe7ad98001
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
Version: GnuPG v2.0
|
||||
|
||||
iQJ8BAEBCABmBQJUg10lXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
|
||||
ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQwNzlCRDk4QzA4RENBRkYzQUEwRjQzMDlF
|
||||
QkU2QTMzNkJFMTkwMzlDAAoJEOvmoza+GQOcWAQP/AidWEHpBGIVIZiDff8HIpyl
|
||||
0PwwmaCwjXL2Cii7tnEMhrIbbZvC1tbcB8Z43Sz+WEgFRll8qEFVoh35/TlJJAGZ
|
||||
kUS5PY7wjUFrBQyx0WJWfQz4kTVP1/J+UokWzuQLdBs5e9ZQXgR60T6ZI3aVuVCY
|
||||
X1D2/mobm0BmiZu9vJr/fyh4xaug1SYsrthHygiUuwY6kItunbpfQXWugqXaUN64
|
||||
6z6QkpE8is/CCBxJZpLD7ouEy/cX1mFRTe7FkzTyrTFqmjCmQuPIqqPiNiCvGryw
|
||||
EmhQ6CeGVG9iEijTMaGvzW0W8xV2f09QOmSSPpIsf3y+QUDAyvV/qhwSRq/dNuyw
|
||||
dvM3xIoBK0iiX26+STMnivPiAiftzV88fmZhp/QPtuP/RDsKcsA8YFrq04PPynBx
|
||||
rFUwSrFfH+gSwxRRYKW1BKE0KGvtwmk5JmrZqETcMOgMJ0/4S5PzlpZapKcRppss
|
||||
86X/nqIKE3Xpe7Q1S2x+TNQMScMBDlanvOFvX5XOKuYbDnelbQLhF1tChgU6Sxt7
|
||||
cUQ6lUwwn+b/grPC/behhMzhUv1NgsceDXiS4cZ8DZo+HM/97gyUOv/RglvBjTBF
|
||||
QzJPfgtnwrXOH9tUteVT/0XtKu0A2ccOoCucDXPIrl+xuOUUw/pORpc/1OdcTfux
|
||||
HKGsuW2NFiRc0xY5kI+K
|
||||
=KtuZ
|
||||
-----END PGP SIGNATURE-----
|
@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<herd>perl</herd>
|
||||
<upstream>
|
||||
<remote-id type="cpan">CSS-Packer</remote-id>
|
||||
<remote-id type="cpan-module">CSS::Packer</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
@ -0,0 +1,10 @@
|
||||
# ChangeLog for dev-perl/Class-InsideOut
|
||||
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-perl/Class-InsideOut/ChangeLog,v 1.1 2014/12/06 20:05:02 dilfridge Exp $
|
||||
|
||||
*Class-InsideOut-1.130.0-r1 (06 Dec 2014)
|
||||
|
||||
06 Dec 2014; Andreas K. Huettel <dilfridge@gentoo.org>
|
||||
+Class-InsideOut-1.130.0-r1.ebuild, +metadata.xml:
|
||||
New package, imported from perl overlay, bug 311013
|
||||
|
@ -0,0 +1,36 @@
|
||||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-perl/Class-InsideOut/Class-InsideOut-1.130.0-r1.ebuild,v 1.1 2014/12/06 20:05:02 dilfridge Exp $
|
||||
|
||||
EAPI=5
|
||||
MODULE_AUTHOR=DAGOLDEN
|
||||
MODULE_VERSION=1.13
|
||||
inherit perl-module
|
||||
|
||||
DESCRIPTION='A safe, simple inside-out object construction kit'
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="test"
|
||||
|
||||
RDEPEND="
|
||||
virtual/perl-Carp
|
||||
dev-perl/Class-ISA
|
||||
virtual/perl-Exporter
|
||||
>=virtual/perl-Scalar-List-Utils-1.90.0
|
||||
virtual/perl-Storable
|
||||
"
|
||||
DEPEND="${RDEPEND}
|
||||
>=virtual/perl-ExtUtils-MakeMaker-6.300.0
|
||||
test? (
|
||||
virtual/perl-File-Spec
|
||||
virtual/perl-File-Temp
|
||||
virtual/perl-IO
|
||||
virtual/perl-Scalar-List-Utils
|
||||
>=virtual/perl-Test-Simple-0.45
|
||||
virtual/perl-XSLoader
|
||||
virtual/perl-threads
|
||||
)
|
||||
"
|
||||
|
||||
SRC_TEST="do"
|
@ -0,0 +1,26 @@
|
||||
-----BEGIN PGP SIGNED MESSAGE-----
|
||||
Hash: SHA256
|
||||
|
||||
DIST Class-InsideOut-1.13.tar.gz 46507 SHA256 11acd51c990ad7a73181f1d086526ab8c567d22ccdc75e4b5ffd7db9a2a5f108 SHA512 38175467338784d796ff90c8a0befefc4a4b7bafc6906a530a707eff8419b09b197bdfa2ea4a7012a5a8daf7992623001ff7f1fd45c6c5d5d5363c3919f53e73 WHIRLPOOL d8797b2f584501856d5e47e6c41373b761bfa2521df66ef78315f1fb1977079c76e106ba3844e435d393c358df012c1cb97005af88676ce36e0d8a9b938095bf
|
||||
EBUILD Class-InsideOut-1.130.0-r1.ebuild 856 SHA256 d48fdeb4e3d9a612cf4b4b590b6ef3d4d46897f0594b375bc48868c31850a7c5 SHA512 2b275e77cd8e9045f803f7992c076d34851aed8caa93ed56c50b396cd42bafc50e2c4401b67c1b71120871fbc866dff6afa0027e411454b8202c359b0d1eb520 WHIRLPOOL f5c3366a831f3ee499a2f2290f3d0c125c7d262d7159c3b84ca3ff48206a13588b8a550ebd127b796e83985f76b019633375cbd05a40470de0e0ade4cd4d9ddf
|
||||
MISC ChangeLog 432 SHA256 c56251a37e6993c2fd7a597addd83a45a4a6b48e7484b7396bf77d1372a700a0 SHA512 0d40fd2f4c3342b3ed28b92cac07b21fe83d886c1d8267be310f7d5e3930da5ed1b0279aebef774855a36b148868ead9f07dd01fd250a7637ff090789172747a WHIRLPOOL 98d593a061c7583e52a5d73267ee15c844dae5688092cc3ad65d6bdd59b7ec7ae516c1d52396a9b38e59a37e327525ce76cb65a7ea11908d828a5348755b39cf
|
||||
MISC metadata.xml 346 SHA256 3a626244c730611a67b4e40d3cdedd094d0b7422bf5049581c84d6fcc2a3a7c4 SHA512 33b4a66b56ba3c3aa5c4cde1a57b7161f6f5d7c2e8a07a8d97315b4ac473ae74b09c72953f57fefa362e9a073e204320afb6fb36beb55c6792e13f5b2d72bfab WHIRLPOOL fba03073cde9ff2c0e63ddbd32aeaa3874c216bf350d387323f5bd205ed8cedfac791180d0df0c53e69bb8e2a4eb7ee551c3d68ed693b07f69fa465abb5cd9c1
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
Version: GnuPG v2.0
|
||||
|
||||
iQJ8BAEBCABmBQJUg2FwXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
|
||||
ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQwNzlCRDk4QzA4RENBRkYzQUEwRjQzMDlF
|
||||
QkU2QTMzNkJFMTkwMzlDAAoJEOvmoza+GQOcAc8P/jWT/7Jfj3unRWENZtW+3vo8
|
||||
qmeTAvTuWwMlTAt/2f7aqUYXvSiNg+X3WccxNAvUSsjwVXe1AR90iEwrnUCM6WTb
|
||||
9iHV4dvgHFa8dL85IfiL6jcMBPmUyDvI4Au/pSZI4TKWUJZ1LZMLADyFQoUP1Vhj
|
||||
y+GFqBgn9qO5jEHvjWsRJu1rIsJzfmXDWCbugYL6wMEMi46jwRE1a07kBqXUIBTH
|
||||
/ocsOTlgHXNTW8idIDmjMvjeffBkncAZkB97QVtWk/iBexeJGB7C4x8VqP6ow545
|
||||
fC14cNaEhtUIbrluualathGCFx1AGXl9tOYgeot+bMZqLAXpvyl1cCxtr3xwjvfF
|
||||
OvCQFZhrls370aQLgYhh/KbBVyi9x7hvG+x3C+M97rFaJ+mCoaFECRKh9zwvDyCo
|
||||
T72ECn58pcu+i5WR8bVVwbyuEudmWbEAgKj15v/b+05wCTWUS/YchlrQoofHzIdO
|
||||
v5QMfc+Cfjtvv0UeIuvDWB9vpYbSuKmmlc2cIcOX/Pp9xFJ+NC02UMEwcoA9I804
|
||||
34X0Igg20fTKnLodUviMqzGi+yErqZI8MoDB1jIPUa6+KbvJvD3Vfc99hmzJ484s
|
||||
h9SfWHseJZxwTMZGRnVq4Ekuvn7TvRmb7yoZ5pnPj/PY1fl+LhWMCwJE+rydj/le
|
||||
E24JC4l6WflfGjZlnsdS
|
||||
=1GyX
|
||||
-----END PGP SIGNATURE-----
|
@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<herd>perl</herd>
|
||||
<upstream>
|
||||
<remote-id type="cpan">Class-InsideOut</remote-id>
|
||||
<remote-id type="cpan-module">Class::InsideOut</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
@ -0,0 +1,10 @@
|
||||
# ChangeLog for dev-perl/POE-Component-Client-DNS
|
||||
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-perl/POE-Component-Client-DNS/ChangeLog,v 1.1 2014/12/06 20:12:12 dilfridge Exp $
|
||||
|
||||
*POE-Component-Client-DNS-1.53.0 (06 Dec 2014)
|
||||
|
||||
06 Dec 2014; Andreas K. Huettel <dilfridge@gentoo.org>
|
||||
+POE-Component-Client-DNS-1.53.0.ebuild, +metadata.xml:
|
||||
New package, imported from perl overlay, bug 311015
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue