parent
cdc360e819
commit
a1be2ab1d5
@ -0,0 +1,410 @@
|
||||
# Copyright 1999-2016 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI="5"
|
||||
|
||||
inherit eutils multilib qt4-r2 systemd user libtool
|
||||
|
||||
MY_PV=${PV/_beta/-b}
|
||||
MY_P=${PN}-${MY_PV}
|
||||
|
||||
DESCRIPTION="Featureful client/server network backup suite"
|
||||
HOMEPAGE="http://www.bacula.org/"
|
||||
SRC_URI="mirror://sourceforge/bacula/${MY_P}.tar.gz"
|
||||
|
||||
LICENSE="AGPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
|
||||
IUSE="acl bacula-clientonly bacula-nodir bacula-nosd examples ipv6 libressl logwatch mysql postgres qt4 readline +sqlite ssl static tcpd vim-syntax X"
|
||||
|
||||
DEPEND="
|
||||
dev-libs/gmp:0
|
||||
!bacula-clientonly? (
|
||||
postgres? ( dev-db/postgresql:*[threads] )
|
||||
mysql? ( virtual/mysql )
|
||||
sqlite? ( dev-db/sqlite:3 )
|
||||
!bacula-nodir? ( virtual/mta )
|
||||
)
|
||||
qt4? (
|
||||
dev-qt/qtsvg:4
|
||||
x11-libs/qwt:5
|
||||
)
|
||||
logwatch? ( sys-apps/logwatch )
|
||||
tcpd? ( >=sys-apps/tcp-wrappers-7.6 )
|
||||
readline? ( sys-libs/readline:0 )
|
||||
static? (
|
||||
acl? ( virtual/acl[static-libs] )
|
||||
sys-libs/zlib[static-libs]
|
||||
dev-libs/lzo[static-libs]
|
||||
sys-libs/ncurses:=[static-libs]
|
||||
ssl? (
|
||||
!libressl? ( dev-libs/openssl:0=[static-libs] )
|
||||
libressl? ( dev-libs/libressl:0=[static-libs] )
|
||||
)
|
||||
)
|
||||
!static? (
|
||||
acl? ( virtual/acl )
|
||||
sys-libs/zlib
|
||||
dev-libs/lzo
|
||||
sys-libs/ncurses:=
|
||||
ssl? (
|
||||
!libressl? ( dev-libs/openssl:0= )
|
||||
libressl? ( dev-libs/libressl:0= )
|
||||
)
|
||||
)"
|
||||
RDEPEND="${DEPEND}
|
||||
!bacula-clientonly? (
|
||||
!bacula-nosd? (
|
||||
sys-block/mtx
|
||||
app-arch/mt-st
|
||||
)
|
||||
)
|
||||
vim-syntax? ( || ( app-editors/vim app-editors/gvim ) )"
|
||||
|
||||
REQUIRED_USE="|| ( ^^ ( mysql postgres sqlite ) bacula-clientonly )
|
||||
static? ( bacula-clientonly )"
|
||||
|
||||
S=${WORKDIR}/${MY_P}
|
||||
|
||||
pkg_setup() {
|
||||
#XOR and !bacula-clientonly controlled by REQUIRED_USE
|
||||
use mysql && export mydbtype="mysql"
|
||||
use postgres && export mydbtype="postgresql"
|
||||
use sqlite && export mydbtype="sqlite3"
|
||||
|
||||
# create the daemon group and user
|
||||
if [ -z "$(egetent group bacula 2>/dev/null)" ]; then
|
||||
enewgroup bacula
|
||||
einfo
|
||||
einfo "The group 'bacula' has been created. Any users you add to this"
|
||||
einfo "group have access to files created by the daemons."
|
||||
einfo
|
||||
fi
|
||||
|
||||
if use bacula-clientonly && use static && use qt4; then
|
||||
ewarn
|
||||
ewarn "Building statically linked 'bat' is not supported. Ignorig 'qt4' useflag."
|
||||
ewarn
|
||||
fi
|
||||
|
||||
if ! use bacula-clientonly; then
|
||||
if [ -z "$(egetent passwd bacula 2>/dev/null)" ]; then
|
||||
enewuser bacula -1 -1 /var/lib/bacula bacula,disk,tape,cdrom,cdrw
|
||||
einfo
|
||||
einfo "The user 'bacula' has been created. Please see the bacula manual"
|
||||
einfo "for information about running bacula as a non-root user."
|
||||
einfo
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
# adjusts default configuration files for several binaries
|
||||
# to /etc/bacula/<config> instead of ./<config>
|
||||
pushd src >&/dev/null || die
|
||||
for f in console/console.c dird/dird.c filed/filed.c \
|
||||
stored/bcopy.c stored/bextract.c stored/bls.c \
|
||||
stored/bscan.c stored/btape.c stored/stored.c \
|
||||
qt-console/main.cpp; do
|
||||
sed -i -e 's|^\(#define CONFIG_FILE "\)|\1/etc/bacula/|g' "${f}" \
|
||||
|| die "sed on ${f} failed"
|
||||
done
|
||||
popd >&/dev/null || die
|
||||
|
||||
# bug 466688 drop deprecated categories from Desktop file
|
||||
sed -i -e 's/Application;//' scripts/bat.desktop.in || die
|
||||
|
||||
# bug 466690 Use CXXFLAGS instead of CFLAGS
|
||||
sed -i -e 's/@CFLAGS@/@CXXFLAGS@/' autoconf/Make.common.in || die
|
||||
|
||||
# drop automatic install of unneeded documentation (for bug 356499)
|
||||
epatch "${FILESDIR}"/7.2.0/${PN}-7.2.0-doc.patch
|
||||
|
||||
# bug #310087
|
||||
epatch "${FILESDIR}"/5.2.3/${PN}-5.2.3-as-needed.patch
|
||||
|
||||
# bug #311161
|
||||
epatch "${FILESDIR}"/5.2.3/${PN}-5.2.3-lib-search-path.patch
|
||||
|
||||
# bat needs to respect LDFLAGS
|
||||
epatch "${FILESDIR}"/5.2.3/${PN}-5.2.3-ldflags.patch
|
||||
|
||||
# bug #328701
|
||||
epatch "${FILESDIR}"/5.2.3/${PN}-5.2.3-openssl-1.patch
|
||||
|
||||
epatch "${FILESDIR}"/7.2.0/${PN}-7.2.0-fix-static.patch
|
||||
|
||||
# do not strip binaries
|
||||
sed -i -e "s/strip /# strip /" src/filed/Makefile.in || die
|
||||
sed -i -e "s/strip /# strip /" src/console/Makefile.in || die
|
||||
|
||||
# fix file not found error during make depend
|
||||
epatch "${FILESDIR}"/7.0.2/${PN}-7.0.2-depend.patch
|
||||
|
||||
# Fix systemd unit files:
|
||||
# bug 497748
|
||||
sed -i -e '/Requires/d' platforms/systemd/*.service.in || die
|
||||
sed -i -e '/StandardOutput/d' platforms/systemd/*.service.in || die
|
||||
# bug 504370
|
||||
sed -i -e '/Alias=bacula-dir/d' platforms/systemd/bacula-dir.service.in || die
|
||||
# bug 584442 and 504368
|
||||
sed -i -e 's/@dir_user@/root/g' platforms/systemd/bacula-dir.service.in || die
|
||||
|
||||
# fix bundled libtool (bug 466696)
|
||||
# But first move directory with M4 macros out of the way.
|
||||
# It is only needed by autoconf and gives errors during elibtoolize.
|
||||
mv autoconf/libtool autoconf/libtool1 || die
|
||||
elibtoolize
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
local myconf=''
|
||||
|
||||
if use bacula-clientonly; then
|
||||
myconf="${myconf} \
|
||||
$(use_enable bacula-clientonly client-only) \
|
||||
$(use_enable !static libtool) \
|
||||
$(use_enable static static-cons) \
|
||||
$(use_enable static static-fd)"
|
||||
else
|
||||
myconf="${myconf} \
|
||||
$(use_enable !bacula-nodir build-dird) \
|
||||
$(use_enable !bacula-nosd build-stored)"
|
||||
# bug #311099
|
||||
# database support needed by dir-only *and* sd-only
|
||||
# build as well (for building bscan, btape, etc.)
|
||||
myconf="${myconf} \
|
||||
--with-${mydbtype} \
|
||||
--enable-batch-insert"
|
||||
fi
|
||||
|
||||
# do not build bat if 'static' clientonly
|
||||
if ! use bacula-clientonly || ! use static; then
|
||||
myconf="${myconf} \
|
||||
$(use_enable qt4 bat)"
|
||||
fi
|
||||
|
||||
myconf="${myconf} \
|
||||
$(use_with X x) \
|
||||
$(use_enable !readline conio) \
|
||||
$(use_enable readline) \
|
||||
$(use_with readline readline /usr) \
|
||||
$(use_with ssl openssl) \
|
||||
$(use_enable ipv6) \
|
||||
$(use_enable acl) \
|
||||
$(use_with tcpd tcp-wrappers)"
|
||||
|
||||
econf \
|
||||
--libdir=/usr/$(get_libdir) \
|
||||
--docdir=/usr/share/doc/${PF} \
|
||||
--htmldir=/usr/share/doc/${PF}/html \
|
||||
--with-pid-dir=/var/run \
|
||||
--sysconfdir=/etc/bacula \
|
||||
--with-subsys-dir=/var/lock/subsys \
|
||||
--with-working-dir=/var/lib/bacula \
|
||||
--with-logdir=/var/lib/bacula \
|
||||
--with-scriptdir=/usr/libexec/bacula \
|
||||
--with-systemd=$(systemd_get_unitdir) \
|
||||
--with-dir-user=bacula \
|
||||
--with-dir-group=bacula \
|
||||
--with-sd-user=root \
|
||||
--with-sd-group=bacula \
|
||||
--with-fd-user=root \
|
||||
--with-fd-group=bacula \
|
||||
--enable-smartalloc \
|
||||
--disable-afs \
|
||||
--host=${CHOST} \
|
||||
${myconf}
|
||||
# correct configuration for QT based bat
|
||||
if use qt4 ; then
|
||||
pushd src/qt-console
|
||||
eqmake4
|
||||
popd
|
||||
fi
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
# Make build log verbose (bug #447806)
|
||||
emake NO_ECHO=""
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake DESTDIR="${D}" install
|
||||
doicon scripts/bacula.png
|
||||
|
||||
# install bat icon and desktop file when enabled
|
||||
# (for some reason ./configure doesn't pick this up)
|
||||
if use qt4 && ! use static ; then
|
||||
doicon src/qt-console/images/bat_icon.png
|
||||
domenu scripts/bat.desktop
|
||||
fi
|
||||
|
||||
# remove some scripts we don't need at all
|
||||
rm -f "${D}"/usr/libexec/bacula/{bacula,bacula-ctl-dir,bacula-ctl-fd,bacula-ctl-sd,startmysql,stopmysql}
|
||||
|
||||
# rename statically linked apps
|
||||
if use bacula-clientonly && use static ; then
|
||||
pushd "${D}"/usr/sbin || die
|
||||
mv static-bacula-fd bacula-fd || die
|
||||
mv static-bconsole bconsole || die
|
||||
popd || die
|
||||
fi
|
||||
|
||||
# extra files which 'make install' doesn't cover
|
||||
if ! use bacula-clientonly; then
|
||||
# the database update scripts
|
||||
diropts -m0750
|
||||
insinto /usr/libexec/bacula/updatedb
|
||||
insopts -m0754
|
||||
doins "${S}"/updatedb/*
|
||||
fperms 0640 /usr/libexec/bacula/updatedb/README
|
||||
|
||||
# the logrotate configuration
|
||||
# (now unconditional wrt bug #258187)
|
||||
diropts -m0755
|
||||
insinto /etc/logrotate.d
|
||||
insopts -m0644
|
||||
newins "${S}"/scripts/logrotate bacula
|
||||
|
||||
# the logwatch scripts
|
||||
if use logwatch; then
|
||||
diropts -m0750
|
||||
dodir /etc/log.d/scripts/services
|
||||
dodir /etc/log.d/scripts/shared
|
||||
dodir /etc/log.d/conf/logfiles
|
||||
dodir /etc/log.d/conf/services
|
||||
pushd "${S}"/scripts/logwatch >&/dev/null || die
|
||||
emake DESTDIR="${D}" install
|
||||
popd >&/dev/null || die
|
||||
fi
|
||||
fi
|
||||
|
||||
if ! use qt4; then
|
||||
rm -vf "${D}"/usr/share/man/man1/bat.1*
|
||||
fi
|
||||
rm -vf "${D}"/usr/share/man/man1/bacula-tray-monitor.1*
|
||||
if use bacula-clientonly || use bacula-nodir; then
|
||||
rm -vf "${D}"/usr/share/man/man8/bacula-dir.8*
|
||||
rm -vf "${D}"/usr/share/man/man8/dbcheck.8*
|
||||
rm -vf "${D}"/usr/share/man/man1/bsmtp.1*
|
||||
rm -vf "${D}"/usr/libexec/bacula/create_*_database
|
||||
rm -vf "${D}"/usr/libexec/bacula/drop_*_database
|
||||
rm -vf "${D}"/usr/libexec/bacula/make_*_tables
|
||||
rm -vf "${D}"/usr/libexec/bacula/update_*_tables
|
||||
rm -vf "${D}"/usr/libexec/bacula/drop_*_tables
|
||||
rm -vf "${D}"/usr/libexec/bacula/grant_*_privileges
|
||||
rm -vf "${D}"/usr/libexec/bacula/*_catalog_backup
|
||||
fi
|
||||
if use bacula-clientonly || use bacula-nosd; then
|
||||
rm -vf "${D}"/usr/share/man/man8/bacula-sd.8*
|
||||
rm -vf "${D}"/usr/share/man/man8/bcopy.8*
|
||||
rm -vf "${D}"/usr/share/man/man8/bextract.8*
|
||||
rm -vf "${D}"/usr/share/man/man8/bls.8*
|
||||
rm -vf "${D}"/usr/share/man/man8/bscan.8*
|
||||
rm -vf "${D}"/usr/share/man/man8/btape.8*
|
||||
rm -vf "${D}"/usr/libexec/bacula/disk-changer
|
||||
rm -vf "${D}"/usr/libexec/bacula/mtx-changer
|
||||
rm -vf "${D}"/usr/libexec/bacula/dvd-handler
|
||||
fi
|
||||
|
||||
# documentation
|
||||
dodoc ChangeLog ReleaseNotes SUPPORT
|
||||
|
||||
# install examples (bug #457504)
|
||||
if use examples; then
|
||||
docinto examples/
|
||||
dodoc -r examples/*
|
||||
fi
|
||||
|
||||
# vim-files
|
||||
if use vim-syntax; then
|
||||
insinto /usr/share/vim/vimfiles/syntax
|
||||
doins scripts/bacula.vim
|
||||
insinto /usr/share/vim/vimfiles/ftdetect
|
||||
newins scripts/filetype.vim bacula_ft.vim
|
||||
fi
|
||||
|
||||
# setup init scripts
|
||||
myscripts="bacula-fd"
|
||||
if ! use bacula-clientonly; then
|
||||
if ! use bacula-nodir; then
|
||||
myscripts="${myscripts} bacula-dir"
|
||||
fi
|
||||
if ! use bacula-nosd; then
|
||||
myscripts="${myscripts} bacula-sd"
|
||||
fi
|
||||
fi
|
||||
for script in ${myscripts}; do
|
||||
# copy over init script and config to a temporary location
|
||||
# so we can modify them as needed
|
||||
cp "${FILESDIR}/${script}".confd "${T}/${script}".confd || die "failed to copy ${script}.confd"
|
||||
cp "${FILESDIR}/${script}".initd "${T}/${script}".initd || die "failed to copy ${script}.initd"
|
||||
|
||||
# now set the database dependancy for the director init script
|
||||
case "${script}" in
|
||||
bacula-dir)
|
||||
case "${mydbtype}" in
|
||||
sqlite3)
|
||||
# sqlite databases don't have a daemon
|
||||
sed -i -e 's/need "%database%"/:/g' "${T}/${script}".initd || die
|
||||
;;
|
||||
*)
|
||||
# all other databases have daemons
|
||||
sed -i -e "s:%database%:${mydbtype}:" "${T}/${script}".initd || die
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
*)
|
||||
;;
|
||||
esac
|
||||
|
||||
# install init script and config
|
||||
newinitd "${T}/${script}".initd "${script}"
|
||||
newconfd "${T}/${script}".confd "${script}"
|
||||
done
|
||||
|
||||
systemd_dounit "${S}"/platforms/systemd/bacula-{dir,fd,sd}.service
|
||||
|
||||
# make sure the working directory exists
|
||||
diropts -m0750
|
||||
keepdir /var/lib/bacula
|
||||
|
||||
# make sure bacula group can execute bacula libexec scripts
|
||||
fowners -R root:bacula /usr/libexec/bacula
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
if use bacula-clientonly; then
|
||||
fowners root:bacula /var/lib/bacula
|
||||
else
|
||||
fowners bacula:bacula /var/lib/bacula
|
||||
fi
|
||||
|
||||
if ! use bacula-clientonly && ! use bacula-nodir; then
|
||||
einfo
|
||||
einfo "If this is a new install, you must create the ${mydbtype} databases with:"
|
||||
einfo " /usr/libexec/bacula/create_${mydbtype}_database"
|
||||
einfo " /usr/libexec/bacula/make_${mydbtype}_tables"
|
||||
einfo " /usr/libexec/bacula/grant_${mydbtype}_privileges"
|
||||
einfo
|
||||
|
||||
ewarn "ATTENTION!"
|
||||
ewarn "The format of the database may have changed."
|
||||
ewarn "If you just upgraded from a version below 7.2.0 you must run"
|
||||
ewarn "'update_bacula_tables' now."
|
||||
ewarn "Make sure to have a backup of your catalog before."
|
||||
ewarn
|
||||
fi
|
||||
|
||||
if use sqlite; then
|
||||
einfo
|
||||
einfo "Be aware that Bacula does not officially support SQLite database anymore."
|
||||
einfo "Best use it only for a client-only installation. See Bug #445540."
|
||||
einfo
|
||||
fi
|
||||
|
||||
einfo "Please note that 'bconsole' will always be installed. To compile 'bat'"
|
||||
einfo "you have to enable 'USE=qt4'."
|
||||
einfo
|
||||
}
|
@ -1,68 +0,0 @@
|
||||
# ChangeLog for app-cdr/dvd95
|
||||
# Copyright 1999-2016 Gentoo Foundation; Distributed under the GPL v2
|
||||
# (auto-generated from git log)
|
||||
|
||||
*dvd95-1.6_p0 (09 Aug 2015)
|
||||
|
||||
09 Aug 2015; Robin H. Johnson <robbat2@gentoo.org> +dvd95-1.6_p0.ebuild,
|
||||
+files/dvd95-1.3_p2-desktop-entry.patch,
|
||||
+files/dvd95-1.6_p0-link-libxml2.patch, +metadata.xml:
|
||||
proj/gentoo: Initial commit
|
||||
|
||||
This commit represents a new era for Gentoo:
|
||||
Storing the gentoo-x86 tree in Git, as converted from CVS.
|
||||
|
||||
This commit is the start of the NEW history.
|
||||
Any historical data is intended to be grafted onto this point.
|
||||
|
||||
Creation process:
|
||||
1. Take final CVS checkout snapshot
|
||||
2. Remove ALL ChangeLog* files
|
||||
3. Transform all Manifests to thin
|
||||
4. Remove empty Manifests
|
||||
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
|
||||
5.1. Do not touch files with -kb/-ko keyword flags.
|
||||
|
||||
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
|
||||
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration
|
||||
tests
|
||||
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this
|
||||
project
|
||||
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo
|
||||
developer, wrote Git features for the migration
|
||||
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve
|
||||
cvs2svn
|
||||
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
|
||||
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014
|
||||
work in migration
|
||||
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
|
||||
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on
|
||||
the bikeshed
|
||||
|
||||
24 Aug 2015; Justin Lecher <jlec@gentoo.org> metadata.xml:
|
||||
Use https by default
|
||||
|
||||
Convert all URLs for sites supporting encrypted connections from http to
|
||||
https
|
||||
|
||||
Signed-off-by: Justin Lecher <jlec@gentoo.org>
|
||||
|
||||
24 Aug 2015; Mike Gilbert <floppym@gentoo.org> metadata.xml:
|
||||
Revert DOCTYPE SYSTEM https changes in metadata.xml
|
||||
|
||||
repoman does not yet accept the https version.
|
||||
This partially reverts eaaface92ee81f30a6ac66fe7acbcc42c00dc450.
|
||||
|
||||
Bug: https://bugs.gentoo.org/552720
|
||||
|
||||
24 Jan 2016; Michał Górny <mgorny@gentoo.org> metadata.xml:
|
||||
Replace all herds with appropriate projects (GLEP 67)
|
||||
|
||||
Replace all uses of herd with appropriate project maintainers, or no
|
||||
maintainers in case of herds requested to be disbanded.
|
||||
|
||||
28 Feb 2016; Ulrich Müller <ulm@gentoo.org> metadata.xml:
|
||||
metadata.xml: Add maintainer-needed comment to packages without maintainer.
|
||||
|
||||
Bug: 575810
|
||||
|
@ -1,74 +0,0 @@
|
||||
# ChangeLog for app-cdr/dvd95
|
||||
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/app-cdr/dvd95/ChangeLog,v 1.15 2015/06/09 09:24:44 jlec Exp $
|
||||
|
||||
09 Jun 2015; Justin Lecher <jlec@gentoo.org> metadata.xml:
|
||||
Updating remote-id in metadata.xml
|
||||
|
||||
19 Apr 2015; Manuel Rüger <mrueg@gentoo.org> -dvd95-1.5_p3.ebuild:
|
||||
Remove old.
|
||||
|
||||
28 Jan 2015; Michał Górny <mgorny@gentoo.org> dvd95-1.5_p3.ebuild,
|
||||
dvd95-1.6_p0.ebuild:
|
||||
Switch to CPU_FLAGS_X86.
|
||||
|
||||
10 Aug 2014; Patrick Lauer <patrick@gentoo.org> dvd95-1.5_p3.ebuild,
|
||||
dvd95-1.6_p0.ebuild:
|
||||
Fix description for more repoman happy
|
||||
|
||||
02 Dec 2012; Sebastian Pipping <sping@gentoo.org> dvd95-1.6_p0.ebuild,
|
||||
+files/dvd95-1.6_p0-link-libxml2.patch:
|
||||
Fix linking error (bug #402669)
|
||||
|
||||
03 May 2012; Jeff Horelick <jdhore@gentoo.org> dvd95-1.5_p3.ebuild,
|
||||
dvd95-1.6_p0.ebuild:
|
||||
dev-util/pkgconfig -> virtual/pkgconfig
|
||||
|
||||
*dvd95-1.6_p0 (19 Mar 2010)
|
||||
|
||||
19 Mar 2010; Pacho Ramos <pacho@gentoo.org> -dvd95-1.5_p0.ebuild,
|
||||
+dvd95-1.6_p0.ebuild:
|
||||
Version bump and remove old.
|
||||
|
||||
*dvd95-1.5_p3 (24 Dec 2009)
|
||||
|
||||
24 Dec 2009; Pacho Ramos <pacho@gentoo.org> +dvd95-1.5_p3.ebuild:
|
||||
Version bump (bug 277490), translations fixed, tests fixed (thanks to
|
||||
Diego for reporting bug 279882), and bug 293041 solved by upstream
|
||||
|
||||
08 May 2009; Samuli Suominen <ssuominen@gentoo.org> -dvd95-1.3_p2.ebuild,
|
||||
dvd95-1.5_p0.ebuild:
|
||||
Missing media-video/mplayer rdepend wrt #269068
|
||||
|
||||
*dvd95-1.5_p0 (07 May 2009)
|
||||
|
||||
07 May 2009; Samuli Suominen <ssuominen@gentoo.org> +dvd95-1.5_p0.ebuild:
|
||||
Version bump. It seems LINGUAS works without a hack now.
|
||||
|
||||
*dvd95-1.3_p2 (06 Jun 2008)
|
||||
|
||||
06 Jun 2008; Samuli Suominen <ssuominen@gentoo.org>
|
||||
+files/dvd95-1.3_p2-desktop-entry.patch, -dvd95-1.2_p0.ebuild,
|
||||
+dvd95-1.3_p2.ebuild:
|
||||
Version bump for bug 223927. Fix desktop entry for bug 204319. Try to
|
||||
handle LINGUAS for bug 204322. Missing deps for bug 205020.
|
||||
|
||||
*dvd95-1.3_p0 (16 Dec 2007)
|
||||
|
||||
16 Dec 2007; Lars Weiler <pylon@gentoo.org> -dvd95-1.1_p1.ebuild,
|
||||
dvd95-1.2_p0.ebuild, +dvd95-1.3_p0.ebuild:
|
||||
Version bump; bug #202089. Cleanup. Quotes.
|
||||
|
||||
*dvd95-1.2_p0 (28 Feb 2007)
|
||||
|
||||
28 Feb 2007; Lars Weiler <pylon@gentoo.org> +dvd95-1.2_p0.ebuild:
|
||||
Version bump; bug #159739.
|
||||
|
||||
23 Dec 2006; Piotr Jaroszyński <peper@gentoo.org> dvd95-1.1_p1.ebuild:
|
||||
Add ~amd64 wrt bug #156968.
|
||||
|
||||
*dvd95-1.1_p1 (03 Dec 2006)
|
||||
|
||||
03 Dec 2006; Lars Weiler <pylon@gentoo.org> +metadata.xml,
|
||||
+dvd95-1.1_p1.ebuild:
|
||||
New ebuild from Bug #141704.
|
@ -1,7 +0,0 @@
|
||||
AUX dvd95-1.3_p2-desktop-entry.patch 522 SHA256 44e5defe46b5cd613f9de6fa3658e1a7788381b3e7a702024fd99de0b16e2a6e SHA512 7c2e1ddd6366aaded6d23ff8aad6c2f84a7ff4e1aebcd423c03ceb775fa9da45b534d6d7655ee80d9e32db4ca8a787e1f01056f8711e2c88007bb3fb0bcf57e0 WHIRLPOOL 82fcfba487c121837c8668207dc3b0d66098f2208d28e99f250ebfea3f1c9fc59e35e6a05f31d33363cad841532d1d6e46e028e52bdefbbd22724283f5083c57
|
||||
AUX dvd95-1.6_p0-link-libxml2.patch 356 SHA256 9a4cefb02d90c8c3166f0c928f4d3c89bccbb808a92bce9c242846fa375cbc1a SHA512 4df0680d6df521958b0a90b26840bbc83105cad73feb2a60d9f4e5e9abedf32bd87d5da983d629d410ad70f1200f7576ae8261acd95913077b2d051433119d02 WHIRLPOOL 7062ab34f7f9b4e57885db27a7e8e91e94905853b0530aebe3a46b759638d313aaf229c6422bca70c4aad338fb6dc3bf385aeb1d917d988ec18ba80f160a9f0e
|
||||
DIST dvd95-1.6p0.tar.gz 1068210 SHA256 fffa2e45d8f5d9cb9971abd14160b09a7362763fc70b402e016a8876c2c28fea SHA512 bb51c04a6609c986c54a1fd7b7f74dfa0f6b08d4cf1e93bc05271b1aae78881e9a4ffabbe7229ecf043964e039e866ea961b0c7aa72b276e9270d82adfbc24de WHIRLPOOL 7865339ea96446d06cf0829ba56436d6e940d32e9098c439091ecb3099a8f8cdf45f9c337107a6c32717b9f0c410c99d3a902a18f25ea3173da0bef298fedf62
|
||||
EBUILD dvd95-1.6_p0.ebuild 1351 SHA256 2bb10473595f3a6a853aaa2d80d0c67112e6fbb97fe88317f130a9d901ec2094 SHA512 39bf5b7f92928758f4cf52c14b8591c44fdbd6ab0e0805cb4f5316ebb661da6ad43e74cf036a64c049eea079bad21df4b132c9673f870d87e2b4c3263a5b311e WHIRLPOOL 80f89de2c79e57773eaa899ae8f97dfec47f3b51281741291894e7a9bce7958fbca12e06fd6d3eb95e22b32eab3f87b93f18c79655bceb9d57df6341fbc82f60
|
||||
MISC ChangeLog 2534 SHA256 0bf11f13cc032f5d573772b99539e4bbf347ebc985573f44cb84029b42b5c50c SHA512 2d254f008f8cc8a9a9dc9e3c4b4f045e28b6fa4f42902a696ffa13abe1ba8c68ead239d10a4ad27d227badf4c9f6b973f0f1f65bf4463acb025d24e747eba792 WHIRLPOOL bb4c867b3bfb8dc135f7288880eebff1b589ae1ae5bffda54132dfc95e8ac4405ebf404c6eb3802aee36af303ab8e546403ae920f7c24e86f56631b1dfc56c37
|
||||
MISC ChangeLog-2015 2508 SHA256 caf653a1e1cb555494d37f54ff7d9c51a8fb12aedca83d3989c56a402a7b4d8c SHA512 d57044833353d3fca4b2045daf17838ea2d58dcabfaafbe63696f39fbb2945d6524c4bb21595e8b3f03bd0d85909c88ed65647a9f068d67849d25021708fae27 WHIRLPOOL 917c0a0dc08720aa5c66d66bbe0fdd7662dbe0f3af32e670e4574f725cffdd135205927d49037e0cdbf134c014d5e9c139e027e03805aa39622342799edcd2ba
|
||||
MISC metadata.xml 242 SHA256 a2b5b2e72f0e1169b0b5968545efea1209b5efd20345eb01ef59403b156ba88b SHA512 f4f3cf0c2b56036e6dac2ada56635ae429ba90d523e8745688c2717da075dc7eae6b20b9c56014cddca3f1ee365fb22ff184f1d2ed46ffce5f33d57ce872cb90 WHIRLPOOL 551822ce4850da527244002a46fb32d6d59ba5c609c5995e5a8e4705af8e8ac363571f3aa6e5949f172ac5a833d6af4a95c7f3df8e5d6eb922b9cfeecad52d30
|
@ -1,52 +0,0 @@
|
||||
# Copyright 1999-2015 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI=2
|
||||
inherit eutils autotools
|
||||
|
||||
DESCRIPTION="DVD95 is a Gnome application to convert DVD9 to DVD5"
|
||||
HOMEPAGE="http://dvd95.sourceforge.net/"
|
||||
SRC_URI="mirror://sourceforge/dvd95/${P/_}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="cpu_flags_x86_3dnow nls cpu_flags_x86_mmx mpeg cpu_flags_x86_sse cpu_flags_x86_sse2"
|
||||
|
||||
RDEPEND=">=gnome-base/libgnomeui-2
|
||||
dev-libs/libxml2
|
||||
media-libs/libdvdread
|
||||
mpeg? ( media-libs/libmpeg2 )
|
||||
media-video/mplayer"
|
||||
DEPEND="${RDEPEND}
|
||||
virtual/pkgconfig
|
||||
nls? ( sys-devel/gettext
|
||||
dev-util/intltool )
|
||||
sys-apps/sed"
|
||||
|
||||
S=${WORKDIR}/${P/_}
|
||||
|
||||
src_prepare() {
|
||||
epatch "${FILESDIR}"/${PN}-1.3_p2-desktop-entry.patch
|
||||
epatch "${FILESDIR}"/${P}-link-libxml2.patch
|
||||
sed -i -e "s:-O3:${CFLAGS}:" configure.in || die "sed failed"
|
||||
echo "dvd95.glade" >> po/POTFILES.in || die "translation fix failed"
|
||||
eautoreconf
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
econf \
|
||||
--disable-dependency-tracking \
|
||||
$(use_enable nls) \
|
||||
$(use_enable cpu_flags_x86_mmx mmx) \
|
||||
$(use_enable cpu_flags_x86_3dnow 3dnow) \
|
||||
$(use_enable cpu_flags_x86_sse sse) \
|
||||
$(use_enable cpu_flags_x86_sse2 sse2) \
|
||||
$(use_enable mpeg libmpeg2)
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake DESTDIR="${D}" install || die "emake install failed"
|
||||
dodoc AUTHORS ChangeLog
|
||||
}
|
@ -1,16 +0,0 @@
|
||||
diff -ur dvd95-1.3p2.orig/dvd95.desktop dvd95-1.3p2/dvd95.desktop
|
||||
--- dvd95-1.3p2.orig/dvd95.desktop 2007-04-10 22:53:38.000000000 +0300
|
||||
+++ dvd95-1.3p2/dvd95.desktop 2008-06-06 22:53:00.000000000 +0300
|
||||
@@ -3,10 +3,9 @@
|
||||
Comment=DVD9 to DVD5 converter
|
||||
Comment[fr]=Convertisseur DVD9 vers DVD5
|
||||
Exec=dvd95
|
||||
-Icon=dvd95/dvd9548.png
|
||||
+Icon=/usr/share/pixmaps/dvd95/dvd9548.png
|
||||
Terminal=false
|
||||
Type=Application
|
||||
-Encoding=UTF-8
|
||||
-Categories=Application;AudioVideo;
|
||||
+Categories=AudioVideo;
|
||||
X-Desktop-File-Install-Version=0.10
|
||||
|
@ -1,10 +0,0 @@
|
||||
--- src/Makefile.am 2012-12-02 16:43:55.667719253 +0100
|
||||
+++ src/Makefile.am 2012-12-02 16:44:05.965593153 +0100
|
||||
@@ -36,6 +36,6 @@
|
||||
badsect.c badsect.h \
|
||||
globals.h proto.h const.h vapcontext.h
|
||||
|
||||
-dvd95_LDADD = @PACKAGE_LIBS@ $(LIBAUTHOR_LIBS) $(INTLLIBS) -ldvdread -lm
|
||||
+dvd95_LDADD = @PACKAGE_LIBS@ $(LIBAUTHOR_LIBS) $(INTLLIBS) -ldvdread -lm -lxml2
|
||||
|
||||
|
@ -1,8 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<!-- maintainer-needed -->
|
||||
<upstream>
|
||||
<remote-id type="sourceforge">dvd95</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
@ -1,77 +0,0 @@
|
||||
# ChangeLog for app-portage/g-ctan
|
||||
# Copyright 1999-2016 Gentoo Foundation; Distributed under the GPL v2
|
||||
# (auto-generated from git log)
|
||||
|
||||
*g-ctan-2011.1 (09 Aug 2015)
|
||||
|
||||
09 Aug 2015; Robin H. Johnson <robbat2@gentoo.org> +g-ctan-2011.1.ebuild,
|
||||
+metadata.xml:
|
||||
proj/gentoo: Initial commit
|
||||
|
||||
This commit represents a new era for Gentoo:
|
||||
Storing the gentoo-x86 tree in Git, as converted from CVS.
|
||||
|
||||
This commit is the start of the NEW history.
|
||||
Any historical data is intended to be grafted onto this point.
|
||||
|
||||
Creation process:
|
||||
1. Take final CVS checkout snapshot
|
||||
2. Remove ALL ChangeLog* files
|
||||
3. Transform all Manifests to thin
|
||||
4. Remove empty Manifests
|
||||
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
|
||||
5.1. Do not touch files with -kb/-ko keyword flags.
|
||||
|
||||
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
|
||||
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration
|
||||
tests
|
||||
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this
|
||||
project
|
||||
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo
|
||||
developer, wrote Git features for the migration
|
||||
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve
|
||||
cvs2svn
|
||||
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
|
||||
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014
|
||||
work in migration
|
||||
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
|
||||
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on
|
||||
the bikeshed
|
||||
|
||||
24 Aug 2015; Justin Lecher <jlec@gentoo.org> metadata.xml:
|
||||
Use https by default
|
||||
|
||||
Convert all URLs for sites supporting encrypted connections from http to
|
||||
https
|
||||
|
||||
Signed-off-by: Justin Lecher <jlec@gentoo.org>
|
||||
|
||||
24 Aug 2015; Justin Lecher <jlec@gentoo.org> g-ctan-2011.1.ebuild:
|
||||
Convert all URIs for launchpad.net from http to https
|
||||
|
||||
Signed-off-by: Justin Lecher <jlec@gentoo.org>
|
||||
|
||||
24 Aug 2015; Mike Gilbert <floppym@gentoo.org> metadata.xml:
|
||||
Revert DOCTYPE SYSTEM https changes in metadata.xml
|
||||
|
||||
repoman does not yet accept the https version.
|
||||
This partially reverts eaaface92ee81f30a6ac66fe7acbcc42c00dc450.
|
||||
|
||||
Bug: https://bugs.gentoo.org/552720
|
||||
|
||||
24 Jan 2016; Michał Górny <mgorny@gentoo.org> metadata.xml:
|
||||
Set appropriate maintainer types in metadata.xml (GLEP 67)
|
||||
|
||||
28 May 2016; Pacho Ramos <pacho@gentoo.org> metadata.xml:
|
||||
Cleanup due to #148577
|
||||
|
||||
Package-Manager: portage-2.3.0_rc1
|
||||
|
||||
*g-ctan-2011.1-r1 (07 Jul 2016)
|
||||
|
||||
07 Jul 2016; Austin English <wizardedit@gentoo.org>
|
||||
+g-ctan-2011.1-r1.ebuild, metadata.xml:
|
||||
bump to EAPI 6, add maintainer-needed
|
||||
|
||||
Package-Manager: portage-2.2.28
|
||||
|
@ -1,109 +0,0 @@
|
||||
# ChangeLog for app-portage/g-ctan
|
||||
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/app-portage/g-ctan/ChangeLog,v 1.23 2015/06/09 12:03:24 jlec Exp $
|
||||
|
||||
09 Jun 2015; Justin Lecher <jlec@gentoo.org> metadata.xml:
|
||||
Updating remote-id in metadata.xml
|
||||
|
||||
07 May 2012; Alexis Ballier <aballier@gentoo.org> -g-ctan-2010.1.ebuild,
|
||||
-g-ctan-2010.2.ebuild:
|
||||
remove texlive-2010 depending version, 2011 is stable and 2010 is oing away
|
||||
|
||||
05 Oct 2011; Alexis Ballier <aballier@gentoo.org> -g-ctan-2008.2.ebuild,
|
||||
-g-ctan-2009.2-r1.ebuild:
|
||||
remove versions working for and require TeX Live 2008 or 2009, they are
|
||||
useless now as these versions are gone
|
||||
|
||||
*g-ctan-2011.1 (24 Sep 2011)
|
||||
|
||||
24 Sep 2011; Christian Faulhammer <fauli@gentoo.org> +g-ctan-2011.1.ebuild:
|
||||
version bump for TeXLive 2011
|
||||
|
||||
*g-ctan-2010.2 (24 Sep 2011)
|
||||
|
||||
24 Sep 2011; Christian Faulhammer <fauli@gentoo.org> +g-ctan-2010.2.ebuild:
|
||||
Version bump that allows downloads for TeXLive 2010 again
|
||||
|
||||
14 Jun 2011; Matt Turner <mattst88@gentoo.org> g-ctan-2010.1.ebuild:
|
||||
Added ~mips, bug 342513
|
||||
|
||||
15 Nov 2010; Christian Faulhammer <fauli@gentoo.org>
|
||||
-g-ctan-2009.2.ebuild:
|
||||
clean up not working version
|
||||
|
||||
*g-ctan-2010.1 (15 Nov 2010)
|
||||
|
||||
15 Nov 2010; Christian Faulhammer <fauli@gentoo.org>
|
||||
+g-ctan-2010.1.ebuild:
|
||||
version bump to work with TeXLive 2010
|
||||
|
||||
*g-ctan-2009.2-r1 (25 Oct 2010)
|
||||
|
||||
25 Oct 2010; Christian Faulhammer <fauli@gentoo.org>
|
||||
+g-ctan-2009.2-r1.ebuild:
|
||||
TeXLive upstream changed repository URL because of Release of TeXLive
|
||||
2010, fix it by providing the archive location
|
||||
|
||||
25 Oct 2010; Christian Faulhammer <fauli@gentoo.org>
|
||||
-g-ctan-2009.1.ebuild:
|
||||
clean up
|
||||
|
||||
*g-ctan-2009.2 (23 Jun 2010)
|
||||
|
||||
23 Jun 2010; Christian Faulhammer <fauli@gentoo.org>
|
||||
+g-ctan-2009.2.ebuild:
|
||||
version bump, fixes bug 315171
|
||||
|
||||
*g-ctan-2009.1 (21 Jan 2010)
|
||||
|
||||
21 Jan 2010; Christian Faulhammer <fauli@gentoo.org>
|
||||
+g-ctan-2009.1.ebuild:
|
||||
version bump for TeXLive 2009
|
||||
|
||||
14 Jan 2010; Christian Faulhammer <fauli@gentoo.org>
|
||||
-files/g-ctan-2008.1-fix-overlay-detection.patch:
|
||||
clean up stray patch
|
||||
|
||||
*g-ctan-2008.2 (11 Jan 2010)
|
||||
|
||||
11 Jan 2010; Christian Faulhammer <fauli@gentoo.org>
|
||||
-g-ctan-2008.1-r1.ebuild, +g-ctan-2008.2.ebuild:
|
||||
version bump because of upstream changes
|
||||
|
||||
19 Nov 2009; Christian Faulhammer <fauli@gentoo.org>
|
||||
g-ctan-2008.1-r1.ebuild:
|
||||
added ~amd64 for bug 286060
|
||||
|
||||
*g-ctan-2008.1-r1 (23 Sep 2009)
|
||||
|
||||
23 Sep 2009; Christian Faulhammer <fauli@gentoo.org>
|
||||
-g-ctan-2008.1.ebuild, +g-ctan-2008.1-r1.ebuild,
|
||||
+files/g-ctan-2008.1-fix-overlay-detection.patch:
|
||||
revision bump to fix Launchpad bug 434385
|
||||
|
||||
21 Sep 2009; Christian Faulhammer <fauli@gentoo.org> -g-ctan-9999.ebuild:
|
||||
clean up
|
||||
|
||||
*g-ctan-2008.1 (21 Sep 2009)
|
||||
|
||||
21 Sep 2009; Christian Faulhammer <fauli@gentoo.org>
|
||||
+g-ctan-2008.1.ebuild:
|
||||
first released version
|
||||
|
||||
08 Sep 2009; Christian Faulhammer <fauli@gentoo.org> g-ctan-9999.ebuild:
|
||||
depend on TeXLive 2008
|
||||
|
||||
08 Sep 2009; Christian Faulhammer <fauli@gentoo.org> g-ctan-9999.ebuild:
|
||||
allow xz-utils along lzma-utils
|
||||
|
||||
08 Sep 2009; Christian Faulhammer <fauli@gentoo.org> g-ctan-9999.ebuild:
|
||||
make the emake call die
|
||||
|
||||
07 Sep 2009; Christian Faulhammer <fauli@gentoo.org> g-ctan-9999.ebuild:
|
||||
use Makefile from upstream now
|
||||
|
||||
*g-ctan-9999 (02 Sep 2009)
|
||||
|
||||
02 Sep 2009; Christian Faulhammer <fauli@gentoo.org> +g-ctan-9999.ebuild,
|
||||
+metadata.xml:
|
||||
inital ebuild, live from repository, no releases yet
|
@ -1,6 +0,0 @@
|
||||
DIST g-ctan-2011.1.tar.bz2 29154 SHA256 35544fbccae772b4f3fd6589c660f82621bc500deafb0e906fdd7436ec9d3fa4 SHA512 4b82178b1acce765df9beb9a94087d154e70803d7b7b49db40a52148672f5f6293bea53471d5ac1f8b7576bf4c679d4901f38441a3c30946cbcad91b0bc8ba9c WHIRLPOOL fb3ae8a9bb791e26ed8e87de52ca07cd921dd652406dfae57a71917b53a0c28c80c1de31884b8606b753513a3175247920d864e6cbd4d206a4375ce19968c85b
|
||||
EBUILD g-ctan-2011.1-r1.ebuild 470 SHA256 690854ae14afadffe05f86d5cb9adfcc176d63b77b52bdbcb3d4ba414a67f6e6 SHA512 8c06701f2a0611ac88265b4bad798febb685c83998c476fba953721f590850ca8cc91e70482f51be4b0a62b5e33cffd86f0ad8da9587f6ab3dbbec4ad971e9ad WHIRLPOOL 104817c4c1548c46b26e288f1caf67a43c0870a8ecabe1536843f81bac058f5ecb5e27f5c84900a43c1de6f625cfc2e6c20492c4c0bc670fafc45051f4626fbc
|
||||
EBUILD g-ctan-2011.1.ebuild 526 SHA256 39d9d84978b17b1a3af053fadf0f0c5518576b7849ecb6234955e7547b739083 SHA512 989075e0539d2d5b0b942afcf37f44dc26e24d529767a695e85278314a60aef8638ccfa75fd4cced56cb98940d2124867b230bea82a33f333de72c1d14b6000c WHIRLPOOL 12e8d01e46f43381f9d50cc41031000a3e1a3dbe0589cf4f2df3ab0225247929b5eedb03486bf6327ff978dc6a46d5b3139873a7edeb64be0e7ac635ca6161fd
|
||||
MISC ChangeLog 2683 SHA256 118a1bf0127a4d855b621be301d57b59420baf663095f095a9767fac198fb9d1 SHA512 a10d622f773f19817b9a561e3f3aa161f62ee0712fb5bb829fe24309d17aa25b8d1256dd373a97c77b1ececccccf8314d6d46c1ff74bb81e2b602b5f6b47421a WHIRLPOOL 8b7ab07ee796fb98c13666064ae52f7856d98b42c0239df907fd809f8e3eb67138ad800e1aa4cb6d334309aeb121f2387c6f5f915c80e8cdb9cbc0ddfa63fe5b
|
||||
MISC ChangeLog-2015 3476 SHA256 510fdb6b088fe68f8ca0ee02c775c688cb3e3bc7c4ad38946dbd7fd394f9c701 SHA512 e67082f8bd20d44d1a03f5c431813fabef81e91ba03beb9691b7e2147a06bb449af96bbec7b50413270304c671d1d7b5d99bb1ba427194bd9eb37c5c7365fe2d WHIRLPOOL a986bde354b89ebb859bd53ba08ac3dc886f00e8d68a8910cc6ef560ca5cce4b97bc333163f1647f4a0651764a25d46f28718057bfd91179736f4d46f3edbe80
|
||||
MISC metadata.xml 241 SHA256 1c63e7edd2d486da4bb7ec6429b8272452a76d8d150c408ab683120c8d7cf304 SHA512 52ad681b00f1ca5d61f6ff5b1c4ba32626fd39d6dd12ed01580f8d9a6b2a120b0e2b7f0260b5c116c93be3dbb37324ec343ffbd3bfbf95f16bdb52ad8dab80b5 WHIRLPOOL fbc973f6d1089e4bcab27378ef5ccfb93a2b5ad87b52a43d31e36e1032f2df92b73feef8688f08735ae161b469e1d6fcb25a240070b22300ab5f747cd655ba70
|
@ -1,19 +0,0 @@
|
||||
# Copyright 1999-2016 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI=6
|
||||
|
||||
DESCRIPTION="Generate and install ebuilds from the TeXLive package manager"
|
||||
HOMEPAGE="https://launchpad.net/g-ctan"
|
||||
SRC_URI="https://launchpad.net/g-ctan/${PV/\.*/}/${PV}/+download/${P}.tar.bz2"
|
||||
LICENSE="GPL-3"
|
||||
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~mips ~x86"
|
||||
|
||||
IUSE=""
|
||||
DEPEND=""
|
||||
RDEPEND="~app-text/texlive-2011
|
||||
app-arch/xz-utils
|
||||
>=dev-libs/libpcre-0.7.6"
|
@ -1,23 +0,0 @@
|
||||
# Copyright 1999-2011 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI=2
|
||||
|
||||
DESCRIPTION="Generate and install ebuilds from the TeXLive package manager"
|
||||
HOMEPAGE="https://launchpad.net/g-ctan"
|
||||
SRC_URI="https://launchpad.net/g-ctan/${PV/\.*/}/${PV}/+download/${P}.tar.bz2"
|
||||
LICENSE="GPL-3"
|
||||
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~mips ~x86"
|
||||
|
||||
IUSE=""
|
||||
DEPEND=""
|
||||
RDEPEND="~app-text/texlive-2011
|
||||
app-arch/xz-utils
|
||||
>=dev-libs/libpcre-0.7.6"
|
||||
|
||||
src_install() {
|
||||
emake DESTDIR="${D}" install || die
|
||||
}
|
@ -1,8 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<!-- maintainer-needed -->
|
||||
<upstream>
|
||||
<remote-id type="launchpad">g-ctan</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
@ -0,0 +1,55 @@
|
||||
# Copyright 1999-2016 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI=5
|
||||
inherit eutils udev
|
||||
|
||||
DESCRIPTION="Library to handle input devices in Wayland"
|
||||
HOMEPAGE="https://www.freedesktop.org/wiki/Software/libinput/"
|
||||
SRC_URI="https://www.freedesktop.org/software/${PN}/${P}.tar.xz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0/10"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
|
||||
IUSE="input_devices_wacom test"
|
||||
# Tests require write access to udev rules directory which is a no-no for live system.
|
||||
# Other tests are just about logs, exported symbols and autotest of the test library.
|
||||
RESTRICT="test"
|
||||
|
||||
RDEPEND="
|
||||
input_devices_wacom? ( >=dev-libs/libwacom-0.12 )
|
||||
>=dev-libs/libevdev-0.4
|
||||
>=sys-libs/mtdev-1.1
|
||||
virtual/libudev
|
||||
"
|
||||
DEPEND="${RDEPEND}
|
||||
virtual/pkgconfig"
|
||||
# test? (
|
||||
# >=dev-libs/check-0.9.10
|
||||
# dev-util/valgrind
|
||||
# sys-libs/libunwind )
|
||||
|
||||
src_prepare() {
|
||||
# Doc handling in kinda strange but everything
|
||||
# is available in the tarball already.
|
||||
sed -e 's/^\(SUBDIRS =.*\)doc\(.*\)$/\1\2/' \
|
||||
-i Makefile.am Makefile.in || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
# gui can be built but will not be installed
|
||||
# building documentation silently fails with graphviz syntax errors
|
||||
econf \
|
||||
--disable-documentation \
|
||||
--disable-event-gui \
|
||||
$(use_enable input_devices_wacom libwacom) \
|
||||
$(use_enable test tests) \
|
||||
--with-udev-dir="$(get_udevdir)"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake install DESTDIR="${D}"
|
||||
dodoc -r doc/html
|
||||
prune_libtool_files
|
||||
}
|
@ -1,75 +0,0 @@
|
||||
# ChangeLog for dev-libs/vdk
|
||||
# Copyright 1999-2016 Gentoo Foundation; Distributed under the GPL v2
|
||||
# (auto-generated from git log)
|
||||
|
||||
*vdk-2.5.1 (09 Aug 2015)
|
||||
|
||||
09 Aug 2015; Robin H. Johnson <robbat2@gentoo.org>
|
||||
+files/vdk-2.4.1-gcc4.patch, +files/vdk-2.4.1-gcc43.patch, +metadata.xml,
|
||||
+vdk-2.5.1.ebuild:
|
||||
proj/gentoo: Initial commit
|
||||
|
||||
This commit represents a new era for Gentoo:
|
||||
Storing the gentoo-x86 tree in Git, as converted from CVS.
|
||||
|
||||
This commit is the start of the NEW history.
|
||||
Any historical data is intended to be grafted onto this point.
|
||||
|
||||
Creation process:
|
||||
1. Take final CVS checkout snapshot
|
||||
2. Remove ALL ChangeLog* files
|
||||
3. Transform all Manifests to thin
|
||||
4. Remove empty Manifests
|
||||
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
|
||||
5.1. Do not touch files with -kb/-ko keyword flags.
|
||||
|
||||
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
|
||||
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration
|
||||
tests
|
||||
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this
|
||||
project
|
||||
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo
|
||||
developer, wrote Git features for the migration
|
||||
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve
|
||||
cvs2svn
|
||||
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
|
||||
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014
|
||||
work in migration
|
||||
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
|
||||
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on
|
||||
the bikeshed
|
||||
|
||||
24 Aug 2015; Justin Lecher <jlec@gentoo.org> metadata.xml:
|
||||
Use https by default
|
||||
|
||||
Convert all URLs for sites supporting encrypted connections from http to
|
||||
https
|
||||
|
||||
Signed-off-by: Justin Lecher <jlec@gentoo.org>
|
||||
|
||||
24 Aug 2015; Mike Gilbert <floppym@gentoo.org> metadata.xml:
|
||||
Revert DOCTYPE SYSTEM https changes in metadata.xml
|
||||
|
||||
repoman does not yet accept the https version.
|
||||
This partially reverts eaaface92ee81f30a6ac66fe7acbcc42c00dc450.
|
||||
|
||||
Bug: https://bugs.gentoo.org/552720
|
||||
|
||||
13 Sep 2015; Manuel Rüger <mrueg@gentoo.org> vdk-2.5.1.ebuild:
|
||||
Update Homepage
|
||||
|
||||
Gentoo-Bug: #361719
|
||||
|
||||
Package-Manager: portage-2.2.20.1
|
||||
|
||||
24 Jan 2016; Michał Górny <mgorny@gentoo.org> metadata.xml:
|
||||
Replace all herds with appropriate projects (GLEP 67)
|
||||
|
||||
Replace all uses of herd with appropriate project maintainers, or no
|
||||
maintainers in case of herds requested to be disbanded.
|
||||
|
||||
28 Feb 2016; Ulrich Müller <ulm@gentoo.org> metadata.xml:
|
||||
metadata.xml: Add maintainer-needed comment to packages without maintainer.
|
||||
|
||||
Bug: 575810
|
||||
|
@ -1,123 +0,0 @@
|
||||
# ChangeLog for dev-libs/vdk
|
||||
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-libs/vdk/ChangeLog,v 1.35 2015/06/09 14:54:55 jlec Exp $
|
||||
|
||||
09 Jun 2015; Justin Lecher <jlec@gentoo.org> metadata.xml:
|
||||
Updating remote-id in metadata.xml
|
||||
|
||||
20 Feb 2015; Mikle Kolyada <zlogene@gentoo.org> -vdk-2.4.1.ebuild,
|
||||
vdk-2.5.1.ebuild:
|
||||
ppc/x86 stable wrt bug #526746
|
||||
|
||||
15 Jan 2015; Raúl Porcel <armin76@gentoo.org> vdk-2.4.1.ebuild,
|
||||
vdk-2.5.1.ebuild:
|
||||
Drop alpha/sparc keywords
|
||||
|
||||
12 Nov 2014; Manuel Rüger <mrueg@gentoo.org> -files/vdk-2.4-gcc3.4.patch,
|
||||
-vdk-2.4.0.ebuild:
|
||||
Cleanup old superseded EAPI1 ebuild.
|
||||
|
||||
*vdk-2.5.1 (02 Feb 2013)
|
||||
|
||||
02 Feb 2013; Patrick Lauer <patrick@gentoo.org> +vdk-2.5.1.ebuild:
|
||||
Bump
|
||||
|
||||
29 Mar 2011; Christoph Mende <angelos@gentoo.org> vdk-2.4.0.ebuild,
|
||||
vdk-2.4.1.ebuild:
|
||||
Fixed slot deps
|
||||
|
||||
20 Dec 2008; Peter Alfredsen <loki_val@gentoo.org>
|
||||
+files/vdk-2.4.1-gcc43.patch, vdk-2.4.1.ebuild:
|
||||
Fix bug 250845, gcc-4.3 compilation.
|
||||
|
||||
29 Aug 2007; Christian Heim <phreak@gentoo.org> metadata.xml:
|
||||
Removing gustavoz from metadata due to his retirement (see #36010 for
|
||||
reference).
|
||||
|
||||
22 Feb 2007; Piotr Jaroszyński <peper@gentoo.org> ChangeLog:
|
||||
Transition to Manifest2.
|
||||
|
||||
20 Oct 2006; Bryan Østergaard <kloeri@gentoo.org> vdk-2.4.1.ebuild:
|
||||
Stable on Alpha.
|
||||
|
||||
06 Sep 2006; Joshua Jackson <tsunam@gentoo.org> vdk-2.4.1.ebuild:
|
||||
Stable x86; bug #144273
|
||||
|
||||
18 Aug 2006; Tobias Scherbaum <dertobi123@gentoo.org> vdk-2.4.1.ebuild:
|
||||
ppc stable, bug #144273
|
||||
|
||||
18 Aug 2006; Gustavo Zacarias <gustavoz@gentoo.org> vdk-2.4.0.ebuild,
|
||||
vdk-2.4.1.ebuild:
|
||||
Fix HOMEPAGE thanks to Jouni Kosonen
|
||||
|
||||
18 Aug 2006; Gustavo Zacarias <gustavoz@gentoo.org> vdk-2.4.1.ebuild:
|
||||
Stable on sparc
|
||||
|
||||
12 Jun 2006; Gustavo Zacarias <gustavoz@gentoo.org> vdk-2.4.1.ebuild:
|
||||
Fix gcc 4.1 issues for real
|
||||
|
||||
06 Jun 2006; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
+files/vdk-2.4.1-gcc4.patch, vdk-2.4.1.ebuild:
|
||||
gcc4 build fix #134742, patch thanks to Gianluca Parmiggiani and Piotr
|
||||
Jaroszynski for testing
|
||||
|
||||
*vdk-2.4.1 (29 May 2006)
|
||||
|
||||
29 May 2006; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
-files/vdk-2.0.2-makefile.in.patch, -files/vdk-2.4.0-gcc3.4.patch,
|
||||
+files/vdk-2.4-gcc3.4.patch, -vdk-2.0.2.ebuild, -vdk-2.0.2-r1.ebuild,
|
||||
vdk-2.4.0.ebuild, +vdk-2.4.1.ebuild:
|
||||
Cleanup old and revbump
|
||||
|
||||
07 Oct 2005; Diego Pettenò <flameeyes@gentoo.org> vdk-2.0.2.ebuild,
|
||||
vdk-2.0.2-r1.ebuild, vdk-2.4.0.ebuild:
|
||||
Don't assume ld is GNU ld.
|
||||
|
||||
07 Aug 2005; Michael Hanselmann <hansmi@gentoo.org> vdk-2.4.0.ebuild:
|
||||
Stable on ppc.
|
||||
|
||||
02 Jul 2005; Bryan Østergaard <kloeri@gentoo.org> vdk-2.4.0.ebuild:
|
||||
Stable on alpha.
|
||||
|
||||
12 Jun 2005; Sven Wegener <swegener@gentoo.org> vdk-2.4.0.ebuild:
|
||||
Removed * postfix from <, <=, >= and > dependencies.
|
||||
|
||||
15 Apr 2005; Gustavo Zacarias <gustavoz@gentoo.org> metadata.xml,
|
||||
vdk-2.4.0.ebuild:
|
||||
Taking over, stable on x86 wrt #45093, #51389, #67460
|
||||
|
||||
29 Dec 2004; Ciaran McCreesh <ciaranm@gentoo.org> :
|
||||
Change encoding to UTF-8 for GLEP 31 compliance
|
||||
|
||||
01 Nov 2004; Gustavo Zacarias <gustavoz@gentoo.org> vdk-2.4.0.ebuild:
|
||||
Stable on sparc wrt #67460
|
||||
|
||||
14 Oct 2004; Chris White <chriswhite@gentoo.org> vdk-2.4.0.ebuild:
|
||||
Made sure mylocal was setup empty. Fixed really bad USE logic.
|
||||
|
||||
*vdk-2.4.0 (13 Oct 2004)
|
||||
|
||||
13 Oct 2004; Chris White <chriswhite@gentoo.org>
|
||||
+files/vdk-2.4.0-gcc3.4.patch, +vdk-2.4.0.ebuild:
|
||||
bump to 2.4.0. Part of fixing Bug #67460. Also applied an upstream gcc 3.4
|
||||
patch (after some modification).
|
||||
|
||||
13 Oct 2004; Chris White <chriswhite@gentoo.org> +metadata.xml:
|
||||
Taking over as maintainer.
|
||||
|
||||
24 May 2004; Bryan Østergaard <kloeri@gentoo.org> vdk-2.0.2-r1.ebuild:
|
||||
Stable on alpha.
|
||||
|
||||
*vdk-2.0.2-r1 (20 Mar 2003)
|
||||
|
||||
20 Mar 2003; Graham Forest <vladimir@gentoo.org> vdk-2.0.2-r1.ebuild:
|
||||
Removed usage of pic USE flag
|
||||
|
||||
*vdk-2.0.2 (12 Aug 2002)
|
||||
|
||||
15 Jan 2002; Mike Frysinger <vapier@gentoo.org> :
|
||||
Added a small vdk/Makefile.in patch to fix #13820.
|
||||
|
||||
12 Aug 2002; Joe Tennies <rotund@fatnsoft.com> vdk-2.0.2.ebuild:
|
||||
First release... based on bass@gentoo.org's original vdkbuilder
|
||||
script that built the vdk library.
|
@ -1,7 +0,0 @@
|
||||
AUX vdk-2.4.1-gcc4.patch 1300 SHA256 42b7553ea790f73148834aecb420a9387d65fa0a5d4dd29f8b68b76c9f9c60a5 SHA512 ae48051d8f840ea320315cbb04282d8fd1a8c0a3742ba410f4bccf15d037cb2cd2a8cc039dda36ed60a6ea0a69810e04484bbf1f92b576379118597c43b17da8 WHIRLPOOL 9b9af1f94fe6c700ab61fd675a2d2bb987cfcb9ad599e2035dd29c855bba839c7205a5f996bc60dd2b40eb7830654b26b36b49a98a344859df61b279b0cc02c5
|
||||
AUX vdk-2.4.1-gcc43.patch 1052 SHA256 98e65d71d61f19c39cb46d4108bb5fe4c4eb3aef8eefba087c86a95f9f3a9e45 SHA512 e7a82a365b8da258507bb3cdcf0ae5199c21a5600b9fc70add89da233b81f309726ef2665e47453da830c65e2968d1b0c28ce5f8b1a0c70035d16fca41d4eedd WHIRLPOOL 8f8fdf4a526044047efcc2386d08468214970b7cc1ad1f69e9d7975b7a6a82e13a8e24599a16c67ae92bf186b833a301b16617cc13c1f72f01907113474f3625
|
||||
DIST vdk-2.5.1.tar.gz 1113765 SHA256 5d8f6942b8ec2f83b477f24a4e15a9945c1b1b348412d3d22a89627a35130745 SHA512 49e458785d88ab145b40e6ddcd5c7aadc950697b797d17f1ac633354abb46cd7457ea449c62d4993fca53136051d7d7810a15ab561b49e730635566021997292 WHIRLPOOL 8240ccaaffe1169fbe13b25f585f2e0df483ff633f1e0bf00d2b01b5c60e29a21d7e1a0dbe8bb90da69d0e04c330a3ebb81ffc6355afa314af3a4733e7bcd65d
|
||||
EBUILD vdk-2.5.1.ebuild 1392 SHA256 d3e8f29c90302f0795bfaf86fbd31b6d6f699be04b529ec14c6acb9b5a7595e6 SHA512 ac57222b39ba399adbee634e4a21654acab7ded39f53de7c8da54056caf1a2fd0b05e1c76c249edf79ef66e27f0b795de9ce035981ee6e0e8d88f22a731b9790 WHIRLPOOL f4f502243524010c868cd131ee652b86ced0c61c0e5b18e0d56bc8cae31a74e6cb83914cd466ca147cc8add598e85939467c1949d8023a6829f6718ac40af62f
|
||||
MISC ChangeLog 2650 SHA256 32671be9f00f387766bb687117b8877d1dfd45f4a99e23022aaa44b68f835f7c SHA512 8205961ee7bb66d9f7932400ce7bb256ecb242bc75fde0b0faf3b76a8fce5003338f6d0976d6b4c1ca62c3866b98f9d3038ccac4c458f82743e798629b6e2e5c WHIRLPOOL c15895df53486ffb19cc4d68b9cf398875dc483df01c09b677ba274ae7e520b1a9d1778844271d3457b15eb01311644c19bb511b212c74b03e1dad7caa7b1f29
|
||||
MISC ChangeLog-2015 4176 SHA256 2d7a931c9d4c9ffe50f216dc181aff0fa9bf9f12ae71ae59e22b78bb425ab2b4 SHA512 22960236664388717c0ff0bac76dcb06227daf59272a2a602a54faad64978ee072d19aa0c89b188627feead966618d7510c799942652fd1c1f3ce20513e58690 WHIRLPOOL dacfd53687b748c3949b95a906642564a232c1b1b1edf6824e07c81e2bdc2f357e0ab4c01f707e0ef1995c37944db347f7f0aeed4e1b9602607318428bf5e68a
|
||||
MISC metadata.xml 243 SHA256 b05dabcbd30217448bef8032aef9c8ac2e365cf3401e98ba508a0fb065fbf22f SHA512 32a13c3b9bb42334376a1efb91e5f19de0891d3e8d2b396434866511166de6027d8eb70ef326a9c620a5d5c58a22b699d09ebd86a2c83452db81d914b7d12b73 WHIRLPOOL 3796eba12a9de0eb695fb02a65571fed9d67572a49b9470405eb58ed0131ad6611ea7fa7abc74348567dfebe9430138a9fa862fc05fa7ac8d527f931629ef1b4
|
@ -1,28 +0,0 @@
|
||||
diff -Naur vdk-2.4.1/vdk/vdkcomboentry.h vdk-2.4.1-ok/vdk/vdkcomboentry.h
|
||||
--- vdk-2.4.1/vdk/vdkcomboentry.h 2004-09-10 08:14:48.000000000 +0200
|
||||
+++ vdk-2.4.1-ok/vdk/vdkcomboentry.h 2006-05-30 11:39:18.000000000 +0200
|
||||
@@ -51,8 +51,8 @@
|
||||
class VDKComboEntry: public VDKObject
|
||||
{
|
||||
protected:
|
||||
- static int VDKComboEntry::FocusOutEvent(GtkWidget *, GdkEventFocus*, gpointer wid);
|
||||
- static int VDKComboEntry::FocusInEvent(GtkWidget *, GdkEventFocus*, gpointer wid);
|
||||
+ static int FocusOutEvent(GtkWidget *, GdkEventFocus*, gpointer wid);
|
||||
+ static int FocusInEvent(GtkWidget *, GdkEventFocus*, gpointer wid);
|
||||
VDKObjectSignal s_activated, s_changed, s_selected;
|
||||
public:
|
||||
/*!
|
||||
diff -Naur vdk-2.4.1/vdk/vdkfilechooser.h vdk-2.4.1-ok/vdk/vdkfilechooser.h
|
||||
--- vdk-2.4.1/vdk/vdkfilechooser.h 2004-09-10 08:15:10.000000000 +0200
|
||||
+++ vdk-2.4.1-ok/vdk/vdkfilechooser.h 2006-05-30 11:39:04.000000000 +0200
|
||||
@@ -106,8 +106,8 @@
|
||||
DECLARE_EVENT_LIST(VDKFileChooser);
|
||||
// declares two static used to initialize
|
||||
// form display type and initial position
|
||||
- static GtkWindowType VDKFileChooser::DisplayType;
|
||||
- static GtkWindowPosition VDKFileChooser::InitialPosition;
|
||||
+ static GtkWindowType DisplayType;
|
||||
+ static GtkWindowPosition InitialPosition;
|
||||
//
|
||||
/*!
|
||||
* Add a filter based on a pattern
|
@ -1,33 +0,0 @@
|
||||
diff -Nurpa vdk-2.4.1.orig/vdk/entry.cc vdk-2.4.1/vdk/entry.cc
|
||||
--- vdk-2.4.1.orig/vdk/entry.cc 2008-12-15 05:16:06.000000000 +0300
|
||||
+++ vdk-2.4.1/vdk/entry.cc 2008-12-15 05:16:33.000000000 +0300
|
||||
@@ -30,6 +30,7 @@
|
||||
#include "vdk/forms.h"
|
||||
#include "vdk/colors.h"
|
||||
#include <string>
|
||||
+#include <cstring>
|
||||
static void
|
||||
EntryChanged(GtkWidget* wid, gpointer gp)
|
||||
{
|
||||
diff -Nurpa vdk-2.4.1.orig/vdk/image.cc vdk-2.4.1/vdk/image.cc
|
||||
--- vdk-2.4.1.orig/vdk/image.cc 2008-12-15 05:16:06.000000000 +0300
|
||||
+++ vdk-2.4.1/vdk/image.cc 2008-12-15 05:17:41.000000000 +0300
|
||||
@@ -32,6 +32,7 @@
|
||||
#include <vdk/tooltips.h>
|
||||
#include <cstdio>
|
||||
#include <string>
|
||||
+#include <cstring>
|
||||
#include <unistd.h>
|
||||
#include <vdk/rawpixbuf.h>
|
||||
|
||||
diff -Nurpa vdk-2.4.1.orig/vdk/vdkdate.cc vdk-2.4.1/vdk/vdkdate.cc
|
||||
--- vdk-2.4.1.orig/vdk/vdkdate.cc 2008-12-15 05:16:06.000000000 +0300
|
||||
+++ vdk-2.4.1/vdk/vdkdate.cc 2008-12-15 05:20:52.000000000 +0300
|
||||
@@ -28,6 +28,7 @@
|
||||
|
||||
#include "vdk/vdkdate.h"
|
||||
#include <string>
|
||||
+#include <cstring>
|
||||
#include <cstdlib>
|
||||
#include <cstdio>
|
||||
#include <time.h>
|
@ -1,8 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<!-- maintainer-needed -->
|
||||
<upstream>
|
||||
<remote-id type="sourceforge">vdklib</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
@ -1,54 +0,0 @@
|
||||
# Copyright 1999-2015 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI=5
|
||||
inherit eutils toolchain-funcs
|
||||
|
||||
DESCRIPTION="A Visual Development Kit for RAD"
|
||||
SRC_URI="mirror://sourceforge/vdklib/${P}.tar.gz"
|
||||
HOMEPAGE="http://sourceforge.net/projects/vdklib/"
|
||||
|
||||
SLOT="0"
|
||||
LICENSE="GPL-2"
|
||||
KEYWORDS="~amd64 ~hppa ppc x86"
|
||||
IUSE="doc debug"
|
||||
|
||||
RDEPEND="x11-libs/gtk+:2"
|
||||
DEPEND="${RDEPEND}
|
||||
doc? ( app-doc/doxygen )"
|
||||
|
||||
src_configure() {
|
||||
local myconf=""
|
||||
|
||||
# gnome and sigc USE flags need to be added later
|
||||
# when upstream decides to re-support them - ChrisWhite
|
||||
|
||||
use doc && \
|
||||
myconf="${myconf} --enable-doc-html=yes \
|
||||
--enable-doc-latex=yes \
|
||||
--enable-doc-man=yes" \
|
||||
|| myconf="${myconf} --enable-doc-html=no \
|
||||
--enable-doc-latex=no \
|
||||
--enable-doc-man=no"
|
||||
|
||||
use debug && \
|
||||
myconf="${myconf} --enable-debug=yes" \
|
||||
|| myconf="${myconf} --enable-debug=no"
|
||||
|
||||
econf \
|
||||
${myconf} \
|
||||
--enable-testvdk=no \
|
||||
|| die "econf failed"
|
||||
|
||||
# die non user custom CFLAGS!
|
||||
sed -e "s/CFLAGS = .*/CFLAGS = ${CFLAGS}/" -i Makefile
|
||||
sed -e "s/CXXFLAGS = .*/CXXFLAGS = ${CXXFLAGS}/" -i Makefile
|
||||
sed -e "s/CFLAGS = .*/CFLAGS = ${CFLAGS}/" -i vdk/Makefile
|
||||
sed -e "s/CXXFLAGS = .*/CXXFLAGS = ${CXXFLAGS}/" -i vdk/Makefile
|
||||
}
|
||||
|
||||
src_install() {
|
||||
make DESTDIR="${D}" install || die
|
||||
dodoc AUTHORS BUGS ChangeLog INSTALL NEWS README TODO
|
||||
}
|
@ -1,7 +1,9 @@
|
||||
DIST wayland-protocols-1.3.tar.xz 101684 SHA256 6bcd0633fdf9225ef1c7d2831f542e947f7d79811c79fc37f57b2e5375ded82f SHA512 8e407bce93e595ebb7c6a8c7542d4db81d352821c63f41ac75d27f6d52e81e18e0a9a7d4b18460e446c4201931e42a98c0cd214015f154363099eda5747cd738 WHIRLPOOL 73d5c04cb987d0632fe0cc950cd8bf132f9427bd70a65777027148ada2ede0347b336f7faf6e6455171c1a5b2829835edceca15cbbbaf95b99223976279757a9
|
||||
DIST wayland-protocols-1.4.tar.xz 102624 SHA256 014a9a23c21ed14f49b1005b3e8efa66d6337d4ceafc97f7b0d6707e7e3df572 SHA512 ffbac79b3be03f7b1c1033923702aadd0bdd2f90dafee946a4a2384eaa9e7f2ab90de6a6497fce374fd3343b133f8dd02683503973a65f947e65b76c47186123 WHIRLPOOL 410923d92e4a962e439f02c5964eb0e61202434bbbf52d68b61549897dcf57040c7b928bad883484802aa3414f63198bba784d644d6c2e8260a78c9247575ac4
|
||||
DIST wayland-protocols-1.5.tar.xz 106792 SHA256 7d0b426ccaeafc084fc579bb2a139f8ad4ea3492d54b7b0210d124c61fbeb2bf SHA512 8a3305151cbf7d69e4c36dc5d132a607af4944ed2737f0c50fbc540faf60fb6e742402883f55377a3215427afa92a95fb693398419335c4de0ac9bb9bfb9f607 WHIRLPOOL b883327d1e5f7e71f32ea3052d2532a05cbafc0081ab0703c0aeeee2b4f3e9713d1c0adc1cf7f01341428b4d711a9ccd60184d994fbf16bbfc2342f2c84f4eef
|
||||
EBUILD wayland-protocols-1.3.ebuild 899 SHA256 d220886765ed98a97c3fd283e350327a5e114eaca58a1f0a46f405cabea17ce2 SHA512 8b11a317109ea16abca4b22d5ba06b7bd0aebb1fef6541aa76e4d1e43d08a19c7b4e2a8c7e91eb96d2ab4539bc248dde7756cdcdb785470ff0ad6b0f57f46730 WHIRLPOOL a95afe9e875804b6e06b9b6480c96f914f0f07d35a298bbf05724e3b6cd21d118d45fe1939ebafb0ee73d649c0f2a09209f01e016e81e5f607edcdd896a3531a
|
||||
EBUILD wayland-protocols-1.4.ebuild 899 SHA256 d220886765ed98a97c3fd283e350327a5e114eaca58a1f0a46f405cabea17ce2 SHA512 8b11a317109ea16abca4b22d5ba06b7bd0aebb1fef6541aa76e4d1e43d08a19c7b4e2a8c7e91eb96d2ab4539bc248dde7756cdcdb785470ff0ad6b0f57f46730 WHIRLPOOL a95afe9e875804b6e06b9b6480c96f914f0f07d35a298bbf05724e3b6cd21d118d45fe1939ebafb0ee73d649c0f2a09209f01e016e81e5f607edcdd896a3531a
|
||||
EBUILD wayland-protocols-9999.ebuild 899 SHA256 d220886765ed98a97c3fd283e350327a5e114eaca58a1f0a46f405cabea17ce2 SHA512 8b11a317109ea16abca4b22d5ba06b7bd0aebb1fef6541aa76e4d1e43d08a19c7b4e2a8c7e91eb96d2ab4539bc248dde7756cdcdb785470ff0ad6b0f57f46730 WHIRLPOOL a95afe9e875804b6e06b9b6480c96f914f0f07d35a298bbf05724e3b6cd21d118d45fe1939ebafb0ee73d649c0f2a09209f01e016e81e5f607edcdd896a3531a
|
||||
EBUILD wayland-protocols-1.5.ebuild 867 SHA256 42d067c709f70accf9bc873010f10b933947e56f64416726651a9357ea035782 SHA512 6b3b859429eb73fcf5bb14d78de3163e0672fcc3729b94cce03c8f63d12947d54f8deaead4609e5d4c4d6a9818dce090796d882f64cd8878148e0e4c0b0b2429 WHIRLPOOL 0238bf2829771930cb13465cd129939517f5bce551474e54874ed6f9d06ebccbcf1582ec159eb3a80cc4d3be25a735f81678c940a228f59aa1136881ba2758a3
|
||||
EBUILD wayland-protocols-9999.ebuild 867 SHA256 42d067c709f70accf9bc873010f10b933947e56f64416726651a9357ea035782 SHA512 6b3b859429eb73fcf5bb14d78de3163e0672fcc3729b94cce03c8f63d12947d54f8deaead4609e5d4c4d6a9818dce090796d882f64cd8878148e0e4c0b0b2429 WHIRLPOOL 0238bf2829771930cb13465cd129939517f5bce551474e54874ed6f9d06ebccbcf1582ec159eb3a80cc4d3be25a735f81678c940a228f59aa1136881ba2758a3
|
||||
MISC ChangeLog 1477 SHA256 61c315643c0f00f0437af1d2f9c6887a43717666c2a4b1b617fc271a0615bf9a SHA512 c23c80cf0ed42a8409e58e257b5e994cd1e3961596bf8d37ff16e93316b5b7516f870b5e3b0319dcc89667abfec998051a13b51f44b29c4c4f9432226d5d5e82 WHIRLPOOL ccc97d7fc0f70f758c96a37dac4c1ca042127c6181601f540cb2925cfd27d9805b05ce659b6ab3528591736c5962a214bc9355c892e8e0c11c59d7aeb31a2391
|
||||
MISC metadata.xml 230 SHA256 677e4595d00a3098fde05ae33118b9ac05867dc5729c9cd579dc8badd1a28f68 SHA512 d7a2643abd1904cc5ff4d91cbb6f1baeb7f75fd1db542c5e14f19412f4f0bd4b903f8e703a7662ba7482c79dac5529057760b6427599d35e0842755fd946e057 WHIRLPOOL 4866c82c6428eae526c0a514c988e4119221f77b0e8bfb04fec713dd3ba516c69afc776a0c6f53c29abfd8507aa23801614db1ba544dd0a0dd4d6a9462c27306
|
||||
|
@ -0,0 +1,39 @@
|
||||
# Copyright 1999-2016 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI=5
|
||||
|
||||
if [[ ${PV} = 9999* ]]; then
|
||||
EGIT_REPO_URI="git://anongit.freedesktop.org/git/wayland/${PN}"
|
||||
EXPERIMENTAL="true"
|
||||
AUTOTOOLS_AUTORECONF=1
|
||||
inherit autotools-utils git-r3
|
||||
fi
|
||||
|
||||
DESCRIPTION="Wayland protocol files"
|
||||
HOMEPAGE="https://wayland.freedesktop.org/"
|
||||
|
||||
if [[ $PV = 9999* ]]; then
|
||||
SRC_URI="${SRC_PATCHES}"
|
||||
KEYWORDS=""
|
||||
else
|
||||
SRC_URI="https://wayland.freedesktop.org/releases/${P}.tar.xz"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
|
||||
fi
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="dev-libs/wayland"
|
||||
DEPEND="${RDEPEND}
|
||||
virtual/pkgconfig"
|
||||
|
||||
src_test() {
|
||||
export XDG_RUNTIME_DIR="${T}/runtime-dir"
|
||||
mkdir "${XDG_RUNTIME_DIR}" || die
|
||||
chmod 0700 "${XDG_RUNTIME_DIR}" || die
|
||||
|
||||
autotools-utils_src_test
|
||||
}
|
@ -1,114 +0,0 @@
|
||||
# ChangeLog for dev-ml/comparelib
|
||||
# Copyright 1999-2016 Gentoo Foundation; Distributed under the GPL v2
|
||||
# (auto-generated from git log)
|
||||
|
||||
*comparelib-109.60.00 (09 Aug 2015)
|
||||
*comparelib-109.27.00 (09 Aug 2015)
|
||||
|
||||
09 Aug 2015; Robin H. Johnson <robbat2@gentoo.org>
|
||||
+comparelib-109.27.00.ebuild, +comparelib-109.60.00.ebuild, +metadata.xml:
|
||||
proj/gentoo: Initial commit
|
||||
|
||||
This commit represents a new era for Gentoo:
|
||||
Storing the gentoo-x86 tree in Git, as converted from CVS.
|
||||
|
||||
This commit is the start of the NEW history.
|
||||
Any historical data is intended to be grafted onto this point.
|
||||
|
||||
Creation process:
|
||||
1. Take final CVS checkout snapshot
|
||||
2. Remove ALL ChangeLog* files
|
||||
3. Transform all Manifests to thin
|
||||
4. Remove empty Manifests
|
||||
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
|
||||
5.1. Do not touch files with -kb/-ko keyword flags.
|
||||
|
||||
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
|
||||
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration
|
||||
tests
|
||||
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this
|
||||
project
|
||||
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo
|
||||
developer, wrote Git features for the migration
|
||||
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve
|
||||
cvs2svn
|
||||
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
|
||||
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014
|
||||
work in migration
|
||||
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
|
||||
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on
|
||||
the bikeshed
|
||||
|
||||
24 Aug 2015; Justin Lecher <jlec@gentoo.org> comparelib-109.27.00.ebuild,
|
||||
comparelib-109.60.00.ebuild, metadata.xml:
|
||||
Use https by default
|
||||
|
||||
Convert all URLs for sites supporting encrypted connections from http to
|
||||
https
|
||||
|
||||
Signed-off-by: Justin Lecher <jlec@gentoo.org>
|
||||
|
||||
24 Aug 2015; Mike Gilbert <floppym@gentoo.org> metadata.xml:
|
||||
Revert DOCTYPE SYSTEM https changes in metadata.xml
|
||||
|
||||
repoman does not yet accept the https version.
|
||||
This partially reverts eaaface92ee81f30a6ac66fe7acbcc42c00dc450.
|
||||
|
||||
Bug: https://bugs.gentoo.org/552720
|
||||
|
||||
19 Sep 2015; Alexis Ballier <aballier@gentoo.org>
|
||||
-comparelib-109.27.00.ebuild:
|
||||
remove old
|
||||
|
||||
Package-Manager: portage-2.2.20.1
|
||||
|
||||
*comparelib-113.00.00 (19 Sep 2015)
|
||||
|
||||
19 Sep 2015; Alexis Ballier <aballier@gentoo.org>
|
||||
+comparelib-113.00.00.ebuild:
|
||||
bump to 113.00.00
|
||||
|
||||
Package-Manager: portage-2.2.20.1
|
||||
|
||||
24 Jan 2016; Michał Górny <mgorny@gentoo.org> metadata.xml:
|
||||
Replace all herds with appropriate projects (GLEP 67)
|
||||
|
||||
Replace all uses of herd with appropriate project maintainers, or no
|
||||
maintainers in case of herds requested to be disbanded.
|
||||
|
||||
24 Jan 2016; Michał Górny <mgorny@gentoo.org> metadata.xml:
|
||||
Set appropriate maintainer types in metadata.xml (GLEP 67)
|
||||
|
||||
21 Jun 2016; Michał Górny <mgorny@gentoo.org> comparelib-109.60.00.ebuild,
|
||||
comparelib-113.00.00.ebuild:
|
||||
dev-ml/*: Remove := slot ops from || deps, #586304
|
||||
|
||||
23 Jun 2016; Alexis Ballier <aballier@gentoo.org>
|
||||
comparelib-109.60.00.ebuild, comparelib-113.00.00.ebuild:
|
||||
Revert "dev-ml/*: Remove := slot ops from || deps, #586304"
|
||||
|
||||
This reverts commit 2d4ac687fbf44588f764697c9dcb2b960a18d51b.
|
||||
|
||||
This commit is wrong in several aspects:
|
||||
- Such changes should come with a revbump
|
||||
- Removing := deps causes packages not to be rebuilt on upgrades, causing
|
||||
barely understandable build failures when upgrading, later on.
|
||||
Thanks to this commit, people that have installed those packages
|
||||
will likely experience those failures with the upcoming ocaml 4.03 unmask.
|
||||
- This is a non maintainer commit where no discussion at all happened with
|
||||
the
|
||||
maintainers during the 3 days between bug report and mass commit.
|
||||
Such discussion could have prevented the above mentioned breakage.
|
||||
|
||||
Proper fix is to drop the backward compatibility part of the || () dep. This
|
||||
fix
|
||||
was slowly moving forward whenever possible and noticed. Main blocker for
|
||||
this is
|
||||
bug #463018 which requires taking extra care for not breaking the stable
|
||||
tree
|
||||
nor needlessly preventing future stabilization of packages.
|
||||
|
||||
28 Jun 2016; Michał Górny <mgorny@gentoo.org> comparelib-109.60.00.ebuild,
|
||||
comparelib-113.00.00.ebuild:
|
||||
Dep only on camlp4, #586904
|
||||
|
@ -1,63 +0,0 @@
|
||||
# ChangeLog for dev-ml/comparelib
|
||||
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-ml/comparelib/ChangeLog,v 1.11 2014/11/28 17:45:27 aballier Exp $
|
||||
|
||||
28 Nov 2014; Alexis Ballier <aballier@gentoo.org>
|
||||
comparelib-109.60.00.ebuild:
|
||||
update deps for ocaml 4.02
|
||||
|
||||
*comparelib-109.60.00 (19 Jan 2014)
|
||||
|
||||
19 Jan 2014; Alexis Ballier <aballier@gentoo.org>
|
||||
+comparelib-109.60.00.ebuild:
|
||||
version bump
|
||||
|
||||
19 Aug 2013; Alexis Ballier <aballier@gentoo.org>
|
||||
-comparelib-109.08.00.ebuild, -comparelib-109.11.00.ebuild,
|
||||
-comparelib-109.15.00.ebuild:
|
||||
remove old
|
||||
|
||||
*comparelib-109.27.00 (10 Jun 2013)
|
||||
|
||||
10 Jun 2013; Alexis Ballier <aballier@gentoo.org>
|
||||
+comparelib-109.27.00.ebuild:
|
||||
version bump
|
||||
|
||||
*comparelib-109.15.00 (24 May 2013)
|
||||
|
||||
24 May 2013; Alexis Ballier <aballier@gentoo.org>
|
||||
+comparelib-109.15.00.ebuild:
|
||||
version bump
|
||||
|
||||
*comparelib-109.11.00 (06 Mar 2013)
|
||||
|
||||
06 Mar 2013; Alexis Ballier <aballier@gentoo.org>
|
||||
+comparelib-109.11.00.ebuild:
|
||||
version bump
|
||||
|
||||
03 Mar 2013; Alexis Ballier <aballier@gentoo.org>
|
||||
-comparelib-108.07.01.ebuild, -comparelib-109.07.00.ebuild:
|
||||
remove old
|
||||
|
||||
*comparelib-109.08.00 (08 Feb 2013)
|
||||
|
||||
08 Feb 2013; Alexis Ballier <aballier@gentoo.org>
|
||||
+comparelib-109.08.00.ebuild:
|
||||
version bump
|
||||
|
||||
*comparelib-109.07.00 (07 Feb 2013)
|
||||
|
||||
07 Feb 2013; Alexis Ballier <aballier@gentoo.org>
|
||||
+comparelib-109.07.00.ebuild:
|
||||
version bump, eapi 5, add subslot and := deps
|
||||
|
||||
17 Oct 2012; Alexis Ballier <aballier@gentoo.org>
|
||||
comparelib-108.07.01.ebuild:
|
||||
Mirror the distfile, upstream one fails to fetch, bug #438610 by Nick Bowler
|
||||
|
||||
*comparelib-108.07.01 (08 Oct 2012)
|
||||
|
||||
08 Oct 2012; Alexis Ballier <aballier@gentoo.org>
|
||||
+comparelib-108.07.01.ebuild, +metadata.xml:
|
||||
initial import, ebuild by me
|
||||
|
@ -1,7 +0,0 @@
|
||||
DIST comparelib-109.60.00.tar.gz 56707 SHA256 1075fb05e0d1e290f71ad0f6163f32b2cb4cebdc77568491c7eb38ba91f5db7e SHA512 0a20267b06ddb840f31b3aec7b4cc0a77aa5a5e7f454c1d163944e4b233233b5cc1d266aae52eaffbc0721e8d83f2ec345444032af1dc2e0b75bb78ae06e33cb WHIRLPOOL 092abc147a3531d543a9fb68526c4a9839b4ca4f12674962b15a6da01caa69d5ae4e111b29ad9b06b1a2f703a017b04b71016b421ad2334447ed0f47d47d0332
|
||||
DIST comparelib-113.00.00.tar.gz 58423 SHA256 8e7e05373da38905904d5362dd2297ea0733dbb7e374471d0082c497db20830a SHA512 4c5c073100c1adb2d5ee65dec016ce88c26df440caeb1e7f5a92830d672e0bf241ab335089ff741595eb7cbfd556b89da20c87c39e88130bd20ecf60c50f4ee3 WHIRLPOOL 2d7536426d79f8523e5c3c2da9753c68f0dcbecafce4345402b86d47994be47e488bf49c75902d708d42b10d7ce21a8aa7782279e869ef64a6d85df5d25d46f3
|
||||
EBUILD comparelib-109.60.00.ebuild 600 SHA256 b3801a25688735ad94ec08ab9738ecf486c420af2569b5013071d7af0cdcefed SHA512 ee9a099a69adde0b00c4cbe6365645b4a39410dc1fc68ed5aaf4738638a98b8295322a34c24c27f81a7ba49a143ac0613ba6206cb26de19efbd47bd9e3c99fc0 WHIRLPOOL ecdb80f42cbcf4e732a38d72ecfa8385c65348bc3a66c3e83b5381bf3d8385339099c876bbaa786f108cc8082d36c9013ab5806b8fa33448a42661a193a4bda6
|
||||
EBUILD comparelib-113.00.00.ebuild 542 SHA256 4417053a115c04320e4cde1d157dfcef4a1d353554c148999b08d6a308b3345c SHA512 fbd2ffc75a49ff6118335ad4c2f6f49b477759dc284565b1af8adb034b6856e478cfa564894d4949f6096b8e485a4fd910f510fa5916ade86820e6ecff0638e9 WHIRLPOOL f5778ce2daaf2967e5140654983a5e2d228e8a71a582aedf603f270278450ddc17512e5e9e5bd413e9c11ff07b3f73873a808f31bdc7c4027f1bccff3709ce49
|
||||
MISC ChangeLog 4346 SHA256 28c16a7206093577702194ba7bedcb1093d4f1950e113d0db229e533a32e4e1d SHA512 de33525713576984a88c70fe2a6d1aa4a5cbfccbf4a85510a5e8af9751df63db0cbc5c044eb24d2e96c81ec035d564872d758f147b83323e3f6a555b9e2f253b WHIRLPOOL 7d9aa2093439a09faeb9a1f95ac738aa56257719f44b8313fc709d0bc5730874c2d4255fae593ae3651c5c15f9fb3f18f7dbfe749d5fb88beb53fab6aeb7e9ec
|
||||
MISC ChangeLog-2015 1797 SHA256 495f0cc2b8b98bd72ff2c7fd4d6bd6a5e82277789c6dcf814c00449a2d64c8ab SHA512 b78c80f4e8adf0804905362e0922e8af715ac8469a31f153cafdcade92dd66385dbe4b9ac56cb1d86d43186b4388b86c4351941dac0a25259e0756673ea3f949 WHIRLPOOL a5f8840b16e0150b96008b3848972b6481f876e56f4a9b233182737f46ddf0f8e95d6d6c4baf842f86df72176a6132172ad5ba9cee7816118fbf6588ba709892
|
||||
MISC metadata.xml 243 SHA256 5e9b58b0b795266f973d066675839499e3a56d7d932d702404a4b91ded8eb26c SHA512 1c5b4b2163017e496999d1f87e5c9c5ac6c11b2e9187450ccfb3df258f34e54d278972f04ee0e8429476c6f87e091a869ac2a28c6e8c8e6d20678c3e74061449 WHIRLPOOL 085df2e84901cbe563c7c1d30d04c229547f15f8ee26ac61d44d07c3f6999f2bbfa4cf309963172fb507cce5450d27598b762c3ccab92351601965c3afc05e3a
|
@ -1,23 +0,0 @@
|
||||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI="5"
|
||||
|
||||
inherit oasis
|
||||
|
||||
DESCRIPTION="Camlp4 syntax extension that derives comparison functions from type representations"
|
||||
HOMEPAGE="http://www.janestreet.com/ocaml"
|
||||
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV}/individual/${P}.tar.gz
|
||||
https://dev.gentoo.org/~aballier/distfiles/${P}.tar.gz"
|
||||
|
||||
LICENSE="LGPL-2.1-with-linking-exception"
|
||||
SLOT="0/${PV}"
|
||||
KEYWORDS="~amd64"
|
||||
IUSE=""
|
||||
|
||||
DEPEND=">=dev-ml/type-conv-109.20.00:=
|
||||
dev-ml/camlp4:="
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
DOCS=( "README.txt" )
|
@ -1,22 +0,0 @@
|
||||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI="5"
|
||||
|
||||
inherit oasis
|
||||
|
||||
DESCRIPTION="Camlp4 syntax extension that derives comparison functions from type representations"
|
||||
HOMEPAGE="http://www.janestreet.com/ocaml"
|
||||
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV%.*}/files/${P}.tar.gz"
|
||||
|
||||
LICENSE="LGPL-2.1-with-linking-exception"
|
||||
SLOT="0/${PV}"
|
||||
KEYWORDS="~amd64"
|
||||
IUSE=""
|
||||
|
||||
DEPEND=">=dev-ml/type-conv-109.20.00:=
|
||||
dev-ml/camlp4:="
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
DOCS=( "README.txt" )
|
@ -1,8 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="project">
|
||||
<email>ml@gentoo.org</email>
|
||||
<name>Gentoo ML Project</name>
|
||||
</maintainer>
|
||||
</pkgmetadata>
|
@ -1,104 +0,0 @@
|
||||
# ChangeLog for dev-ml/deriving-ocsigen
|
||||
# Copyright 1999-2016 Gentoo Foundation; Distributed under the GPL v2
|
||||
# (auto-generated from git log)
|
||||
|
||||
*deriving-ocsigen-0.3c (09 Aug 2015)
|
||||
|
||||
09 Aug 2015; Robin H. Johnson <robbat2@gentoo.org>
|
||||
+deriving-ocsigen-0.3c.ebuild, +metadata.xml:
|
||||
proj/gentoo: Initial commit
|
||||
|
||||
This commit represents a new era for Gentoo:
|
||||
Storing the gentoo-x86 tree in Git, as converted from CVS.
|
||||
|
||||
This commit is the start of the NEW history.
|
||||
Any historical data is intended to be grafted onto this point.
|
||||
|
||||
Creation process:
|
||||
1. Take final CVS checkout snapshot
|
||||
2. Remove ALL ChangeLog* files
|
||||
3. Transform all Manifests to thin
|
||||
4. Remove empty Manifests
|
||||
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
|
||||
5.1. Do not touch files with -kb/-ko keyword flags.
|
||||
|
||||
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
|
||||
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration
|
||||
tests
|
||||
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this
|
||||
project
|
||||
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo
|
||||
developer, wrote Git features for the migration
|
||||
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve
|
||||
cvs2svn
|
||||
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
|
||||
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014
|
||||
work in migration
|
||||
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
|
||||
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on
|
||||
the bikeshed
|
||||
|
||||
24 Aug 2015; Justin Lecher <jlec@gentoo.org> metadata.xml:
|
||||
Use https by default
|
||||
|
||||
Convert all URLs for sites supporting encrypted connections from http to
|
||||
https
|
||||
|
||||
Signed-off-by: Justin Lecher <jlec@gentoo.org>
|
||||
|
||||
24 Aug 2015; Mike Gilbert <floppym@gentoo.org> metadata.xml:
|
||||
Revert DOCTYPE SYSTEM https changes in metadata.xml
|
||||
|
||||
repoman does not yet accept the https version.
|
||||
This partially reverts eaaface92ee81f30a6ac66fe7acbcc42c00dc450.
|
||||
|
||||
Bug: https://bugs.gentoo.org/552720
|
||||
|
||||
24 Jan 2016; Michał Górny <mgorny@gentoo.org> metadata.xml:
|
||||
Unify quoting in metadata.xml files for machine processing
|
||||
|
||||
Force unified quoting in all metadata.xml files since lxml does not
|
||||
preserve original use of single and double quotes. Ensuring unified
|
||||
quoting before the process allows distinguishing the GLEP 67-related
|
||||
metadata.xml changes from unrelated quoting changes.
|
||||
|
||||
24 Jan 2016; Michał Górny <mgorny@gentoo.org> metadata.xml:
|
||||
Replace all herds with appropriate projects (GLEP 67)
|
||||
|
||||
Replace all uses of herd with appropriate project maintainers, or no
|
||||
maintainers in case of herds requested to be disbanded.
|
||||
|
||||
24 Jan 2016; Michał Górny <mgorny@gentoo.org> metadata.xml:
|
||||
Set appropriate maintainer types in metadata.xml (GLEP 67)
|
||||
|
||||
21 Jun 2016; Michał Górny <mgorny@gentoo.org> deriving-ocsigen-0.3c.ebuild:
|
||||
dev-ml/*: Remove := slot ops from || deps, #586304
|
||||
|
||||
23 Jun 2016; Alexis Ballier <aballier@gentoo.org>
|
||||
deriving-ocsigen-0.3c.ebuild:
|
||||
Revert "dev-ml/*: Remove := slot ops from || deps, #586304"
|
||||
|
||||
This reverts commit 2d4ac687fbf44588f764697c9dcb2b960a18d51b.
|
||||
|
||||
This commit is wrong in several aspects:
|
||||
- Such changes should come with a revbump
|
||||
- Removing := deps causes packages not to be rebuilt on upgrades, causing
|
||||
barely understandable build failures when upgrading, later on.
|
||||
Thanks to this commit, people that have installed those packages
|
||||
will likely experience those failures with the upcoming ocaml 4.03 unmask.
|
||||
- This is a non maintainer commit where no discussion at all happened with
|
||||
the
|
||||
maintainers during the 3 days between bug report and mass commit.
|
||||
Such discussion could have prevented the above mentioned breakage.
|
||||
|
||||
Proper fix is to drop the backward compatibility part of the || () dep. This
|
||||
fix
|
||||
was slowly moving forward whenever possible and noticed. Main blocker for
|
||||
this is
|
||||
bug #463018 which requires taking extra care for not breaking the stable
|
||||
tree
|
||||
nor needlessly preventing future stabilization of packages.
|
||||
|
||||
28 Jun 2016; Michał Górny <mgorny@gentoo.org> deriving-ocsigen-0.3c.ebuild:
|
||||
Dep only on camlp4, #586906
|
||||
|
@ -1,19 +0,0 @@
|
||||
# ChangeLog for dev-ml/deriving-ocsigen
|
||||
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-ml/deriving-ocsigen/ChangeLog,v 1.3 2014/11/28 17:37:27 aballier Exp $
|
||||
|
||||
28 Nov 2014; Alexis Ballier <aballier@gentoo.org>
|
||||
deriving-ocsigen-0.3c.ebuild:
|
||||
update deps for ocaml 4.02
|
||||
|
||||
23 Jul 2013; Alexis Ballier <aballier@gentoo.org>
|
||||
deriving-ocsigen-0.3c.ebuild:
|
||||
eapi5, define subslot and add slot deps
|
||||
|
||||
*deriving-ocsigen-0.3c (03 Aug 2012)
|
||||
|
||||
03 Aug 2012; Alexis Ballier <aballier@gentoo.org>
|
||||
+deriving-ocsigen-0.3c.ebuild, +metadata.xml:
|
||||
Initial import, ebuild by Jacques-Pascal Deplaix and Guillaume Horel, bug
|
||||
#406653
|
||||
|
@ -1,5 +0,0 @@
|
||||
DIST deriving-ocsigen-0.3c.tar.gz 61242 SHA256 eb6e7e647b6f2effcc65c9b32076fbc12e366e16035447a762a93e5e1cba94c7 SHA512 121225b2a143676ec7e49e2f8eb22b674280e74276192d2ffb9b3e063cb47029421bffab87f838ad74bcfa08af27a53a5d745f2dc2398eae3e0e9c02849c818a WHIRLPOOL a9686b3b064a1bdacae2415248c2b7a825738ab7889d6fd56ffa575694ddb151d928b07621aca1d1be9c4fb624647fb5c0be2debdeea5d3fdae879a555b9b980
|
||||
EBUILD deriving-ocsigen-0.3c.ebuild 885 SHA256 9634d876d0f9f142495bd48f17558e904517dab79bb0006a864090eae98b274d SHA512 b1419c345609c6e32ecb1675bfd23bd16827ea3b0d68dd33ec720f6b524d70802198caa2bdd131aa52ab8d689d010de9e35bc7e05aca021beeb42ca7a014584d WHIRLPOOL 4fd3fa3cf7c289509b9facb97619a8179011a1da267b3f648795c1f9e9dcf93a5298df9eda52dbc8710daa2e822c43eb1bec5beeca5e223123b5388540ff13eb
|
||||
MISC ChangeLog 4219 SHA256 fc539d95178212db6ef03b9fe61398c99b08330e3472f33ca1efe9895d028284 SHA512 f01c223d865d3a9adcd90bd17b82fe30801987448cf3908f6a58f39f1c56f6564b65728c9307aafb3669692923399a9a6da66ea5eec9dd9b2786bc5d76200783 WHIRLPOOL 964f3309b1fdd160b4d7093c0f35b4b2a4bf0a16de8751b8ed3f9722d0324c81d25cc67cfac96ed3919f8c883e53fbb8dcb8cfec50cf8affa3d6db755611c881
|
||||
MISC ChangeLog-2015 687 SHA256 fdde0a49cfb336365e317605008479510f3dc760f04b871c54b05d79f60f0997 SHA512 2a6fb89d851f2f3ccc8cd8b282cf2495b264334f94d733da2cc4c2c2f6921e8126ed02a42f7d368194988c7dbd13f210e50ed6880f0e5f7a3da63675dea1d6f3 WHIRLPOOL d3ab54cb1168227a598dd6c5c8271d1381a2aa0a0fd07aa85054976df7bfc2967b199b2122fe236b641b05d201d3e87ac9e6c69ad40be6d7f513b65d42344aa3
|
||||
MISC metadata.xml 332 SHA256 25c8525b40081aac890ae5e5380ad11c223fb408649e1a2ed784ab170f8d1b99 SHA512 986ccbad9a62e733dad02eff96f8f323e556c60b27412392f447b16f855e64eea3111b1beac8c841e67e758ab98bcf64bf18a3b2a932ac6b05da1a1476a1164f WHIRLPOOL d1946d75e2b153f865a917c1ab431b42a668f1f8a6ee7cbb5c03765b47a68cffd7784f5deab3d43e32f8b3a6cf4adf3f034d9232e74f731461613db5a79ea691
|
@ -1,51 +0,0 @@
|
||||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI=5
|
||||
|
||||
inherit findlib
|
||||
|
||||
DESCRIPTION="A deriving library for Ocsigen"
|
||||
HOMEPAGE="http://ocsigen.org"
|
||||
SRC_URI="http://www.ocsigen.org/download/${P}.tar.gz"
|
||||
|
||||
LICENSE="LGPL-2.1-with-linking-exception"
|
||||
SLOT="0/${PV}"
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="+ocamlopt type-conv"
|
||||
|
||||
DEPEND=">=dev-lang/ocaml-3.12:=[ocamlopt?]
|
||||
dev-ml/camlp4:=
|
||||
type-conv? ( >=dev-ml/type-conv-108:= )"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
src_prepare() {
|
||||
find . -type f -exec sed -i 's/type-conv/type_conv/g' {} +
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
use type-conv || echo "TYPECONV :=" >> Makefile.config
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
if use ocamlopt; then
|
||||
emake
|
||||
else
|
||||
emake byte
|
||||
fi
|
||||
}
|
||||
|
||||
src_test() {
|
||||
emake tests
|
||||
}
|
||||
|
||||
src_install() {
|
||||
findlib_src_preinst
|
||||
if use ocamlopt; then
|
||||
emake install
|
||||
else
|
||||
emake install-byte
|
||||
fi
|
||||
dodoc CHANGES README
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="project">
|
||||
<email>ml@gentoo.org</email>
|
||||
<name>Gentoo ML Project</name>
|
||||
</maintainer>
|
||||
<use>
|
||||
<flag name="type-conv">Enable type-conv for the syntax extention.</flag>
|
||||
</use>
|
||||
</pkgmetadata>
|
@ -1,96 +0,0 @@
|
||||
# ChangeLog for dev-ml/faillib
|
||||
# Copyright 1999-2016 Gentoo Foundation; Distributed under the GPL v2
|
||||
# (auto-generated from git log)
|
||||
|
||||
*faillib-111.17.00 (09 Aug 2015)
|
||||
*faillib-109.60.00 (09 Aug 2015)
|
||||
|
||||
09 Aug 2015; Robin H. Johnson <robbat2@gentoo.org>
|
||||
+faillib-109.60.00.ebuild, +faillib-111.17.00.ebuild, +metadata.xml:
|
||||
proj/gentoo: Initial commit
|
||||
|
||||
This commit represents a new era for Gentoo:
|
||||
Storing the gentoo-x86 tree in Git, as converted from CVS.
|
||||
|
||||
This commit is the start of the NEW history.
|
||||
Any historical data is intended to be grafted onto this point.
|
||||
|
||||
Creation process:
|
||||
1. Take final CVS checkout snapshot
|
||||
2. Remove ALL ChangeLog* files
|
||||
3. Transform all Manifests to thin
|
||||
4. Remove empty Manifests
|
||||
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
|
||||
5.1. Do not touch files with -kb/-ko keyword flags.
|
||||
|
||||
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
|
||||
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration
|
||||
tests
|
||||
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this
|
||||
project
|
||||
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo
|
||||
developer, wrote Git features for the migration
|
||||
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve
|
||||
cvs2svn
|
||||
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
|
||||
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014
|
||||
work in migration
|
||||
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
|
||||
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on
|
||||
the bikeshed
|
||||
|
||||
24 Aug 2015; Justin Lecher <jlec@gentoo.org> metadata.xml:
|
||||
Use https by default
|
||||
|
||||
Convert all URLs for sites supporting encrypted connections from http to
|
||||
https
|
||||
|
||||
Signed-off-by: Justin Lecher <jlec@gentoo.org>
|
||||
|
||||
24 Aug 2015; Mike Gilbert <floppym@gentoo.org> metadata.xml:
|
||||
Revert DOCTYPE SYSTEM https changes in metadata.xml
|
||||
|
||||
repoman does not yet accept the https version.
|
||||
This partially reverts eaaface92ee81f30a6ac66fe7acbcc42c00dc450.
|
||||
|
||||
Bug: https://bugs.gentoo.org/552720
|
||||
|
||||
24 Jan 2016; Michał Górny <mgorny@gentoo.org> metadata.xml:
|
||||
Replace all herds with appropriate projects (GLEP 67)
|
||||
|
||||
Replace all uses of herd with appropriate project maintainers, or no
|
||||
maintainers in case of herds requested to be disbanded.
|
||||
|
||||
24 Jan 2016; Michał Górny <mgorny@gentoo.org> metadata.xml:
|
||||
Set appropriate maintainer types in metadata.xml (GLEP 67)
|
||||
|
||||
21 Jun 2016; Michał Górny <mgorny@gentoo.org> faillib-111.17.00.ebuild:
|
||||
dev-ml/*: Remove := slot ops from || deps, #586304
|
||||
|
||||
23 Jun 2016; Alexis Ballier <aballier@gentoo.org> faillib-111.17.00.ebuild:
|
||||
Revert "dev-ml/*: Remove := slot ops from || deps, #586304"
|
||||
|
||||
This reverts commit 2d4ac687fbf44588f764697c9dcb2b960a18d51b.
|
||||
|
||||
This commit is wrong in several aspects:
|
||||
- Such changes should come with a revbump
|
||||
- Removing := deps causes packages not to be rebuilt on upgrades, causing
|
||||
barely understandable build failures when upgrading, later on.
|
||||
Thanks to this commit, people that have installed those packages
|
||||
will likely experience those failures with the upcoming ocaml 4.03 unmask.
|
||||
- This is a non maintainer commit where no discussion at all happened with
|
||||
the
|
||||
maintainers during the 3 days between bug report and mass commit.
|
||||
Such discussion could have prevented the above mentioned breakage.
|
||||
|
||||
Proper fix is to drop the backward compatibility part of the || () dep. This
|
||||
fix
|
||||
was slowly moving forward whenever possible and noticed. Main blocker for
|
||||
this is
|
||||
bug #463018 which requires taking extra care for not breaking the stable
|
||||
tree
|
||||
nor needlessly preventing future stabilization of packages.
|
||||
|
||||
28 Jun 2016; Michał Górny <mgorny@gentoo.org> faillib-111.17.00.ebuild:
|
||||
Dep only on camlp4, #586912
|
||||
|
@ -1,18 +0,0 @@
|
||||
# ChangeLog for dev-ml/faillib
|
||||
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-ml/faillib/ChangeLog,v 1.3 2014/11/28 17:51:58 aballier Exp $
|
||||
|
||||
28 Nov 2014; Alexis Ballier <aballier@gentoo.org> faillib-111.17.00.ebuild:
|
||||
update deps for ocaml 4.02
|
||||
|
||||
*faillib-111.17.00 (30 Oct 2014)
|
||||
|
||||
30 Oct 2014; Alexis Ballier <aballier@gentoo.org> +faillib-111.17.00.ebuild:
|
||||
version bump
|
||||
|
||||
*faillib-109.60.00 (19 Jan 2014)
|
||||
|
||||
19 Jan 2014; Alexis Ballier <aballier@gentoo.org> +faillib-109.60.00.ebuild,
|
||||
+metadata.xml:
|
||||
initial import
|
||||
|
@ -1,7 +0,0 @@
|
||||
DIST faillib-109.60.00.tar.gz 47376 SHA256 f90e56a2fd47aa6e644c9e87da101a2f644e65c012889c6d566211b4e7d43370 SHA512 950ef8550d97576870ced3afbf28efcaa043f234dc160c40c7d6ddd80d31518cf2fce9cb8f741d71fb39c852415b9975f4b7e7eec8bbdaf5eaba79581d02abc9 WHIRLPOOL 92a5449cb6eb1282d7f6e32ff1168ffde230c4262b46f40b97f2b32b29e71154ca9e5c31a8f1faece2ef93b6df60c5341476466aea7c12f4c9f32c83e17709e6
|
||||
DIST faillib-111.17.00.tar.gz 48691 SHA256 3bd1e32555d706d18e4163648cae818fd2136c989e35b5f6fffeb8576757bb89 SHA512 318f0123835f46354d3b798f3480847942b8201b6edc578fcd2b504b3f8cd473a9d5b83f02a7255f4e3031c45ff3b65a43f4ccf1f63c9fe0ecf70bb02036d2e6 WHIRLPOOL 8863f597eac5be72c37926c600ba15eff05c02ed74a31a6235bb24ba22a98a1cfd7f336974395d33fd4b1101be07de26bd939b37bc11fe75174d7d51a69b82cd
|
||||
EBUILD faillib-109.60.00.ebuild 516 SHA256 28fbe18d5adc610b5da59ef6615c0c5bc1bd645cb03608164086cf23b6308fce SHA512 abf6423c07d0f6dcd850c3a702d41cd1c4e16fa8d2452139bb77b88e2a0f2cd6bd437c1245098b785f905a85c58f103bd8194688f143b30c2d5eb020450c1135 WHIRLPOOL 36b9b1307c9bfe95acc93e3f6fa1c97533d5e14c1f0556dc001ee159fc89384ed61dc09ba85a596ef1996c1dbd88d7389ccb486fba4c273b6240d623daa5db04
|
||||
EBUILD faillib-111.17.00.ebuild 533 SHA256 fdf0c033155234e828cddc18d912a091e0510da857d54e16c5e18ebbbe6f98c0 SHA512 a05aed7eec5b724462f4c52fedd5665ab3b37130af6d29e251ddc2ddecbd5c775d817fbaf5bff99d7b824489cb40e8129e9300bcc2a7123f94732daad298f777 WHIRLPOOL 99c5c4b186b993b0f32de4c050f146d7f2eeebb4a68278d124ebf1d60bd6d0f254d7e913530739362880861d9a317da473b4bd26442f1bc0dd431fc744fd6f18
|
||||
MISC ChangeLog 3855 SHA256 0dd1672cdd85da3e3b8a346c93ff8625161cd12cdfd9e4ef90d8d57a26ae0efe SHA512 94618bb78bdb3e445ae4d36a62955471e933d0d9f4d78f897f68a379b7bc17061b4fdcca42470c97a34fb4fad900b5a84934d007e5cf5ae5cf7754602b39730c WHIRLPOOL 13b6f75cccce51894c9f52e87b87c3c0cd9b460df50dc0fb10d5dd0d53bf6769eb9cefb571b0bb0f784e1c9d7019d58c4aedcc896870018f1cb4960a122a4546
|
||||
MISC ChangeLog-2015 588 SHA256 391d5accb37fcdccecec9d1b9a88b2c8e01002e7e8a28a355f54da08400ec4c1 SHA512 a2c574bb5fcaa768ca62161ee95f798bd7ec4e2239aa5acb2dcca47899b5f2c5c3fe27a2d6f24bce354ecb6f1e7de05a67036d48da6912fb3fe88aa91ac0f1fa WHIRLPOOL 4af26ca50c5a1c9a92f27a8a47e697561a1177838997e30cd31d46ba65e48c1df3b82a39c55d7c6a3e097c84dd0b802d613c17e6546652ca9185f2b53a7f2bf7
|
||||
MISC metadata.xml 243 SHA256 5e9b58b0b795266f973d066675839499e3a56d7d932d702404a4b91ded8eb26c SHA512 1c5b4b2163017e496999d1f87e5c9c5ac6c11b2e9187450ccfb3df258f34e54d278972f04ee0e8429476c6f87e091a869ac2a28c6e8c8e6d20678c3e74061449 WHIRLPOOL 085df2e84901cbe563c7c1d30d04c229547f15f8ee26ac61d44d07c3f6999f2bbfa4cf309963172fb507cce5450d27598b762c3ccab92351601965c3afc05e3a
|
@ -1,24 +0,0 @@
|
||||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI="5"
|
||||
|
||||
inherit oasis
|
||||
|
||||
MY_P=${PN/-/_}-${PV}
|
||||
DESCRIPTION="Syntax extension for inserting the current location"
|
||||
HOMEPAGE="http://www.janestreet.com/ocaml"
|
||||
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV%.*}.00/individual/${MY_P}.tar.gz"
|
||||
|
||||
LICENSE="LGPL-2.1-with-linking-exception"
|
||||
SLOT="0/${PV}"
|
||||
KEYWORDS="~amd64"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="
|
||||
dev-ml/herelib:=
|
||||
"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
S="${WORKDIR}/${MY_P}"
|
@ -1,25 +0,0 @@
|
||||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI="5"
|
||||
|
||||
inherit oasis
|
||||
|
||||
MY_P=${PN/-/_}-${PV}
|
||||
DESCRIPTION="Syntax extension for inserting the current location"
|
||||
HOMEPAGE="http://www.janestreet.com/ocaml"
|
||||
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV%.*}.00/individual/${MY_P}.tar.gz"
|
||||
|
||||
LICENSE="LGPL-2.1-with-linking-exception"
|
||||
SLOT="0/${PV}"
|
||||
KEYWORDS="~amd64"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="
|
||||
dev-ml/herelib:=
|
||||
dev-ml/camlp4:=
|
||||
"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
S="${WORKDIR}/${MY_P}"
|
@ -1,8 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="project">
|
||||
<email>ml@gentoo.org</email>
|
||||
<name>Gentoo ML Project</name>
|
||||
</maintainer>
|
||||
</pkgmetadata>
|
@ -1,97 +0,0 @@
|
||||
# ChangeLog for dev-ml/typehashlib
|
||||
# Copyright 1999-2016 Gentoo Foundation; Distributed under the GPL v2
|
||||
# (auto-generated from git log)
|
||||
|
||||
*typehashlib-109.15.02 (09 Aug 2015)
|
||||
|
||||
09 Aug 2015; Robin H. Johnson <robbat2@gentoo.org> +metadata.xml,
|
||||
+typehashlib-109.15.02.ebuild:
|
||||
proj/gentoo: Initial commit
|
||||
|
||||
This commit represents a new era for Gentoo:
|
||||
Storing the gentoo-x86 tree in Git, as converted from CVS.
|
||||
|
||||
This commit is the start of the NEW history.
|
||||
Any historical data is intended to be grafted onto this point.
|
||||
|
||||
Creation process:
|
||||
1. Take final CVS checkout snapshot
|
||||
2. Remove ALL ChangeLog* files
|
||||
3. Transform all Manifests to thin
|
||||
4. Remove empty Manifests
|
||||
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
|
||||
5.1. Do not touch files with -kb/-ko keyword flags.
|
||||
|
||||
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
|
||||
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration
|
||||
tests
|
||||
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this
|
||||
project
|
||||
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo
|
||||
developer, wrote Git features for the migration
|
||||
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve
|
||||
cvs2svn
|
||||
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
|
||||
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014
|
||||
work in migration
|
||||
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
|
||||
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on
|
||||
the bikeshed
|
||||
|
||||
24 Aug 2015; Justin Lecher <jlec@gentoo.org> metadata.xml,
|
||||
typehashlib-109.15.02.ebuild:
|
||||
Use https by default
|
||||
|
||||
Convert all URLs for sites supporting encrypted connections from http to
|
||||
https
|
||||
|
||||
Signed-off-by: Justin Lecher <jlec@gentoo.org>
|
||||
|
||||
24 Aug 2015; Mike Gilbert <floppym@gentoo.org> metadata.xml:
|
||||
Revert DOCTYPE SYSTEM https changes in metadata.xml
|
||||
|
||||
repoman does not yet accept the https version.
|
||||
This partially reverts eaaface92ee81f30a6ac66fe7acbcc42c00dc450.
|
||||
|
||||
Bug: https://bugs.gentoo.org/552720
|
||||
|
||||
24 Jan 2016; Michał Górny <mgorny@gentoo.org> metadata.xml:
|
||||
Replace all herds with appropriate projects (GLEP 67)
|
||||
|
||||
Replace all uses of herd with appropriate project maintainers, or no
|
||||
maintainers in case of herds requested to be disbanded.
|
||||
|
||||
24 Jan 2016; Michał Górny <mgorny@gentoo.org> metadata.xml:
|
||||
Set appropriate maintainer types in metadata.xml (GLEP 67)
|
||||
|
||||
21 Jun 2016; Michał Górny <mgorny@gentoo.org> typehashlib-109.15.02.ebuild:
|
||||
dev-ml/*: Remove := slot ops from || deps, #586304
|
||||
|
||||
23 Jun 2016; Alexis Ballier <aballier@gentoo.org>
|
||||
typehashlib-109.15.02.ebuild:
|
||||
Revert "dev-ml/*: Remove := slot ops from || deps, #586304"
|
||||
|
||||
This reverts commit 2d4ac687fbf44588f764697c9dcb2b960a18d51b.
|
||||
|
||||
This commit is wrong in several aspects:
|
||||
- Such changes should come with a revbump
|
||||
- Removing := deps causes packages not to be rebuilt on upgrades, causing
|
||||
barely understandable build failures when upgrading, later on.
|
||||
Thanks to this commit, people that have installed those packages
|
||||
will likely experience those failures with the upcoming ocaml 4.03 unmask.
|
||||
- This is a non maintainer commit where no discussion at all happened with
|
||||
the
|
||||
maintainers during the 3 days between bug report and mass commit.
|
||||
Such discussion could have prevented the above mentioned breakage.
|
||||
|
||||
Proper fix is to drop the backward compatibility part of the || () dep. This
|
||||
fix
|
||||
was slowly moving forward whenever possible and noticed. Main blocker for
|
||||
this is
|
||||
bug #463018 which requires taking extra care for not breaking the stable
|
||||
tree
|
||||
nor needlessly preventing future stabilization of packages.
|
||||
|
||||
28 Jun 2016; Michał Górny <mgorny@gentoo.org> typehashlib-109.15.02.ebuild:
|
||||
Dep only on camlp4, #586928
|
||||
|
@ -1,37 +0,0 @@
|
||||
# ChangeLog for dev-ml/typehashlib
|
||||
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-ml/typehashlib/ChangeLog,v 1.6 2014/11/28 17:50:56 aballier Exp $
|
||||
|
||||
28 Nov 2014; Alexis Ballier <aballier@gentoo.org>
|
||||
typehashlib-109.15.02.ebuild:
|
||||
update deps for ocaml 4.02
|
||||
|
||||
19 Aug 2013; Alexis Ballier <aballier@gentoo.org>
|
||||
-typehashlib-109.11.00.ebuild, -typehashlib-109.14.00.ebuild,
|
||||
-typehashlib-109.15.00.ebuild:
|
||||
remove old
|
||||
|
||||
*typehashlib-109.15.02 (24 May 2013)
|
||||
|
||||
24 May 2013; Alexis Ballier <aballier@gentoo.org>
|
||||
+typehashlib-109.15.02.ebuild:
|
||||
version bump
|
||||
|
||||
*typehashlib-109.15.00 (11 Apr 2013)
|
||||
|
||||
11 Apr 2013; Alexis Ballier <aballier@gentoo.org>
|
||||
+typehashlib-109.15.00.ebuild:
|
||||
version bump
|
||||
|
||||
*typehashlib-109.14.00 (24 Mar 2013)
|
||||
|
||||
24 Mar 2013; Alexis Ballier <aballier@gentoo.org>
|
||||
+typehashlib-109.14.00.ebuild:
|
||||
version bump
|
||||
|
||||
*typehashlib-109.11.00 (06 Mar 2013)
|
||||
|
||||
06 Mar 2013; Alexis Ballier <aballier@gentoo.org>
|
||||
+typehashlib-109.11.00.ebuild, +metadata.xml:
|
||||
initial import, ebuild by me
|
||||
|
@ -1,5 +0,0 @@
|
||||
DIST typehashlib-109.15.02.tar.gz 51713 SHA256 25a1c518527d8d9e200f5f5c4f0afa351cb29f98fae8e4e5bfb450827710058e SHA512 06ad1c714175134dbd73ac131da67c02f75160193ad1121a748566efa308561a6cb55df8df9d068eb041b3dd9b267f8409c654db07bbe0f2f3b5af87bd1c0444 WHIRLPOOL db00f9b735a47cea190ce3c893bcf1eb38d830c7119fcf0a018e53b19b5e2d5e156eea1f05a40085c714d41f7ec0fefe4d35a062faf370c4adbd556c3dc883d2
|
||||
EBUILD typehashlib-109.15.02.ebuild 611 SHA256 c151aec3c9446af84f621e01b533f94a94defd5a1e3eca2ab7a27d4e1e54b8a1 SHA512 8757522d61afdf182ba479d9d1aa05daba91cba085fae5257b1494810e6c61e7d86e11d2563662fbaa30edcab454e53fcc902a4345b830e9424bbdf80e860ad9 WHIRLPOOL 5abbc316d763df2468f40d4cd4f68c8400d60697767d8d45e8c0ecd0555373b019ff5f659c1b661d80feec5a2f44b27b478a6d0f40bb2abbe7ad43f7137b2025
|
||||
MISC ChangeLog 3853 SHA256 cb5893284006551c14c8ac38e4fbaecb24d6d00b83c2824a7136f8fdc93a4e10 SHA512 e45e275249bc37e903b0ffab752053b26aa5962d566266474d221cce813454e558523d3984cb85c4d7ada76e2f3d6be21bf037110cee7d10cb50c299b945eae4 WHIRLPOOL 324d5cc6ed6414f910130720db6ae284c16596c315e3f3b20370eda6b71f149cbaa22f9c59c724b3155495a54e9cda55d766cbe8c813320ffd42d9fd09cf6d50
|
||||
MISC ChangeLog-2015 1075 SHA256 d4e7f914beac3e79bc603f06c85dcdcf3235dfba90188f298d73cdc1fc75bc33 SHA512 40faf28d0f8312927ce25352917509089a73015f52ca9973fc92ebde3e4c97388c57e3294d3eb9ccc1dffb97d453afe01d3b9b75f9281878aba986de684447d4 WHIRLPOOL 77deba521730e566c11f284e7e63f02d685a9c7404476cd8da70b23439ec2ea82538ea7986044304ed1803b9f6f548b78452f09714c7240214593d40b0df4e04
|
||||
MISC metadata.xml 243 SHA256 5e9b58b0b795266f973d066675839499e3a56d7d932d702404a4b91ded8eb26c SHA512 1c5b4b2163017e496999d1f87e5c9c5ac6c11b2e9187450ccfb3df258f34e54d278972f04ee0e8429476c6f87e091a869ac2a28c6e8c8e6d20678c3e74061449 WHIRLPOOL 085df2e84901cbe563c7c1d30d04c229547f15f8ee26ac61d44d07c3f6999f2bbfa4cf309963172fb507cce5450d27598b762c3ccab92351601965c3afc05e3a
|
@ -1,8 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="project">
|
||||
<email>ml@gentoo.org</email>
|
||||
<name>Gentoo ML Project</name>
|
||||
</maintainer>
|
||||
</pkgmetadata>
|
@ -1,25 +0,0 @@
|
||||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI="5"
|
||||
|
||||
inherit oasis
|
||||
|
||||
MY_P=${PN/-/_}-${PV}
|
||||
DESCRIPTION="Syntax extension for deriving 'typehash' functions automatically"
|
||||
HOMEPAGE="http://www.janestreet.com/ocaml"
|
||||
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV}/individual/${MY_P}.tar.gz
|
||||
https://dev.gentoo.org/~aballier/distfiles/${MY_P}.tar.gz"
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0/${PV}"
|
||||
KEYWORDS="~amd64"
|
||||
IUSE=""
|
||||
|
||||
DEPEND=">=dev-lang/ocaml-4.00.0:=
|
||||
>=dev-ml/type-conv-${PV}:=
|
||||
dev-ml/camlp4:="
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
S="${WORKDIR}/${MY_P}"
|
@ -0,0 +1,24 @@
|
||||
# Copyright 1999-2016 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI=6
|
||||
|
||||
DIST_AUTHOR=DCONWAY
|
||||
DIST_VERSION=0.004008
|
||||
inherit perl-module
|
||||
|
||||
DESCRIPTION="Create context-sensitive return values"
|
||||
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86 ~ppc-aix"
|
||||
IUSE="test"
|
||||
|
||||
RDEPEND="
|
||||
dev-perl/Want
|
||||
virtual/perl-version
|
||||
"
|
||||
DEPEND="${RDEPEND}
|
||||
virtual/perl-ExtUtils-MakeMaker
|
||||
test? ( virtual/perl-Test-Simple )
|
||||
"
|
@ -1,5 +1,7 @@
|
||||
DIST Contextual-Return-0.004007.tar.gz 39900 SHA256 3a8e81b3592c581d21fc567c7965c329bac9ffc39ef3c3e2cbb5706621d938ff SHA512 021b7dda5724f934e758e4781ae848697f98499db8ab0b3c0a6259128202ea0d8e8d7faeee47d469fa72f82b8be2b66aa959a2267a32bb486512407e0a2fb6c5 WHIRLPOOL 336b1993d99fa96dea3efb5b592ed5724414a02e11a019e441d943e13b87e3dc79af749bb9b5fade97e35d12d4bc82aca2eb67d664f35295cf37115a5b22fea6
|
||||
DIST Contextual-Return-0.004008.tar.gz 40585 SHA256 db868be1c4567bec6b9fcc7ab511b80acf2640aa86c08974dd0927af5f3f07c9 SHA512 7eb2ac596197a46459ea345d29859986ea27657270353913d403516f224785fbacfb9de3cfe673f33c92cb51cce846bd40901ac3e34740d38df49f343dab1f33 WHIRLPOOL 4e4048a3bd2283586089616ddfe0fb6efcac915c026e74ea07f6fc4b1c7ddb226d88913f0d581723fad92ddf201790abad7cd6758cd3b6b14189ec9c1b929873
|
||||
EBUILD Contextual-Return-0.4.7-r1.ebuild 377 SHA256 f788475fba6ab425882d99cd4c5719aa39e0d81bde978bf78ca52972d1a51d32 SHA512 462572bf4f1f10cdf1e3b5efd385752f34901a5628a4008313daec3503e8a6b71919e443dca9669b1c65099b7ac68d43b2629bbbb7b7ce98411c324bca731daa WHIRLPOOL 832261c92e00c7b1df2bc63dacaa6173e0ad1276284bb70aea565951a40ad39fc824a1bb8c36cedc71116b5506b61ac664f010a152225dd6377aee9771d88750
|
||||
MISC ChangeLog 2463 SHA256 29065419365af76d3095e6f404b8c4d6b5925e42dc7ebd13d6a9c7150ef0153c SHA512 c060816431587111c3761864a33606d376eff1bcc0e8a2d9eb82b642f0b8383acc753f9275489770ad20b8ded941a92abf57d9d3ba68061aa79214d9d7b107c3 WHIRLPOOL 29f616cf5238d5c4e47ec2b8e708cfa5845df94e8f7a4c097b33f1bfb4e518657de89049e2c14964a75ab3d82a88517c1b0e1c115a43eb0894df78d980c1fd3b
|
||||
EBUILD Contextual-Return-0.4.8.ebuild 433 SHA256 2f673756597f57a4eb5ecabd89137f72093bcaf8ab2cdce6d6d9b26dbc70cf99 SHA512 e679f586b10e614e78c7bdc243860fe7b782034d0a6eefd5233a7afa20686e95b4d7fe0f75e57ade14b6c01a20bbc6204cd7cab58d110ddd0eec2337fe677535 WHIRLPOOL 69253bc551e0ef2d0d0416dc3c7ffbe878a9fbab3b263f7f64f12d1b03ce63a51a3d16099af3c6c1b3c68b5ffc90d27c2c4c5a74f3e5b4a0a3c57bc5cad1df78
|
||||
MISC ChangeLog 3032 SHA256 f2e8001baf8d63bee1e82e7834cb0ffcd7012e5f3ff5934b08c25b070941c3bd SHA512 43df444c8082fb99ab07c75b736272cc74947f5a20631a0a67db18233e6f3ebd6044be63d56acb5a3da4ea20751a50da401f28b2190bda1f195b8266b7701074 WHIRLPOOL 6b7c485a403f4192944dcbbfa771ed2a2ea51c0e61feabb9a69feeeb9cc2382ab67e55a42f6f61e28e942862d9316692bf3dea52e0379454aea1f1da6a57e815
|
||||
MISC ChangeLog-2015 2696 SHA256 87457fa0dddd8170eb7792558639d3ca1bd3ab384e3913df57d41020dc708799 SHA512 7e3af27c0781bcb732af7621bd72f9c212fed2cf78f825d82bcb8ac7629a1a7bf8a25ead90c70b8d4727076a08b7e7f34451f683cab60d297be030031cfb5e20 WHIRLPOOL 2113ed834185326078f7a6fcfe8568925679d2aa51df674eae229f82c216a8632d504640b390a1ed24ab88489ab88b7edd0f9796db0057b188e38f7f38e942ff
|
||||
MISC metadata.xml 674 SHA256 b3c8b26cadb0a2b5f97487aadf5d2f6713f27c412a7d65872adf17ae74a9ee3d SHA512 8ca04a15fc587cc8638320e63710bc20b6fcd56afd2c33972cad923995cc7c5db4e76ac9fb97b2972d2469f09c9b06f86985acff59eb987d9e129a9d26c4b530 WHIRLPOOL 946df557e59dfed8a1f313086b3c3475c5dd1fd333477ff7c35350ed7c4f1245dad4c33a4f16b2db705542a45ea073b25ba622d931a8debf7135887b23ca4e5a
|
||||
MISC metadata.xml 625 SHA256 fbd6e3f2828a8a3a3c3bcfdfecf66017b6186227806049e945a4987da9013b8e SHA512 08f0eab8215605f07e1669e89715e9d7dbc9c9efda256060edde27c699318d784b31e15b404490d38c8d9155f8c1e869092830e357ca6b5310496dae94663b09 WHIRLPOOL b9e0011273c554a55b7faefe8f08631496b64390f02790d13e609f3957940b61e28c38c6e97c95fe2d19991ec582440bfd638b86ca79a9369cd59d5cc8efd566
|
||||
|
@ -0,0 +1,16 @@
|
||||
# ChangeLog for dev-perl/Convert-ASCII-Armour
|
||||
# Copyright 1999-2016 Gentoo Foundation; Distributed under the GPL v2
|
||||
# (auto-generated from git log)
|
||||
|
||||
*Convert-ASCII-Armour-1.400.0-r1 (24 Jul 2016)
|
||||
|
||||
24 Jul 2016; Kent Fredric <kentnl@gentoo.org>
|
||||
+Convert-ASCII-Armour-1.400.0-r1.ebuild, +metadata.xml:
|
||||
Copy from dev-perl/convert-ascii-armour
|
||||
|
||||
Migrating to corrected case
|
||||
|
||||
Package-Manager: portage-2.3.0
|
||||
RepoMan-Options: --include-arches="alpha amd64 amd64-fbsd arm arm64 hppa
|
||||
ia64 m68k mips nios2 ppc ppc64 riscv s390 sh sparc sparc-fbsd x86 x86-fbsd"
|
||||
|
@ -1,10 +1,9 @@
|
||||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Copyright 1999-2016 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI=5
|
||||
|
||||
MY_PN=Convert-ASCII-Armour
|
||||
MODULE_AUTHOR=VIPUL
|
||||
MODULE_VERSION=1.4
|
||||
inherit perl-module
|
@ -0,0 +1,4 @@
|
||||
DIST Convert-ASCII-Armour-1.4.tar.gz 6002 SHA256 97e8acb6eb2a2a91af7d6cf0d2dff6fa42aaf939fc7d6d1c6057a4f0df52c904 SHA512 ba3b26dc440099374a60b374e4c1f92c0824388b7247f5cd0fd3403d6c2b7c3e916bb0cb98654e4a215352bae5728d3db239d657964695ae4e9be6a44c484a34 WHIRLPOOL b769111db2ebb6b1ba3a1b0cfdad95ff09e949d1c18d13c6be7a5db06e24fad6d1f89f7ff965b6c3a02e1da7e94490b034a94bcd1173d29a2daee9679ef23bd4
|
||||
EBUILD Convert-ASCII-Armour-1.400.0-r1.ebuild 505 SHA256 b1b4ad2fa31df74e38b4a6e13703f41e8236a19e802cbb9c3130e249f3a5d9be SHA512 432b948e544cd48f0a4aac9fed5bc1655ace4aa3cae86e43ef526f9ab76b6d4cac1061394bae2f3d1b340758a83be450fb71d5c20a3a97cc9f1fad4cc9b94fb6 WHIRLPOOL 203fb32803e228fb24a3e740a31bc0c1c327b9b8690bd2f791f7b2dd40253536f5ff9a94fed04709cb4a65e28ceea2433992acaa50fcffc16b68b6d51fee65ed
|
||||
MISC ChangeLog 564 SHA256 53d31366e0da09c92657e80dd94ef03144b5adda9c7e63c157cb24c9e101aa67 SHA512 05a88df4ac402be0a62f0fbb6b7fce2023074af1b756184f136059f320b9f615cf005c9439bbce8a5d5f82ad1071d55e285fb483fda9f0392bd9914a88a08152 WHIRLPOOL bae69c5b14ac008ff016ce5fc392e8b26be14c51f0a390035992c90187c5094bc53ff158a25c7ac91ab8ea33b45e3b59ecffc7d03941d3e742565add7b929bf4
|
||||
MISC metadata.xml 481 SHA256 93575f99763352e5983016cca1acbd11364c939a5ba97af25da4fff15019a940 SHA512 a5d604c4ad26b7575c77ef892b07201c1b941445e43355f4a0f50015dcb0d9389fde8c148f148faa22e279dd94e8d9df35b08d1b0b0820ddfda7ffddfd585ad3 WHIRLPOOL 2d44d27ff7156e4ecf282c8b0fa15fa3a807ca048960d64ec384a4aa0bba2232492450b58e243a6c895e6ee2b32817902d6b7419d6cb29e1b91c8ce5a4322940
|
@ -1,4 +1,4 @@
|
||||
DIST Crypt-RSA-1.99.tar.gz 52393 SHA256 4706fd6605c920cd1c79f4afc0036b14e233620162b3957abe9b5f1be50b24be SHA512 69426a3bd8b0d803926ac71b78952a4240831ab6202eae1d9cf1ce6f7c921e74442604f397a65f74d567629d3b2d56587aa8ca62700a458174640b02a05cff6b WHIRLPOOL 88ffaabc440399180d32e9d1a3b5656718c2bf8deb21d8a93d7483ad885fc5462e23ed70d2ef37b6a7439819e126a3cc52748c20a1d42282b9b6f1c3b795e88a
|
||||
EBUILD Crypt-RSA-1.990.0-r1.ebuild 662 SHA256 8188599a87d1472490c34fdd823cd09e3244baf5b4d0f1ed505156ea13276a21 SHA512 5b6d1a35a1aff1e1b4feec22efd2f91d60e2ff2f666adccd9d19ad462181e075501dc6a2aadb0c08c8a47240965d2e22b5fe7deea04ac32a2fe97ad436849a63 WHIRLPOOL fad4607b04f882516e51bfa61e7bba0eac1a42966db19a3e411ca541d86c56f8d35c7cda952432ae96c2c5deca3e4a60bb1f30e7247eafd9ee8bb17372821b33
|
||||
MISC ChangeLog 1611 SHA256 294cd4eb95512f58cc4b879f891e9aa7f8045429bf714aea59a88997ff2f64e0 SHA512 dc74c25dee81ef3d557db1eb72f780e09b538e001092817f92712f981eec791d6949576819a55f785f2b9505441bfec5cdf133c2fa9a5411ad73f70bf8a90653 WHIRLPOOL ad4ad59f9cda96c5af0e6f17b33e9cb448d7e513d582b8d22f4427a6e13094ae0273f26f58383df99fe3cbffb8b024580c28bcf66bdcd504ac7f1972f4b8e639
|
||||
EBUILD Crypt-RSA-1.990.0-r1.ebuild 662 SHA256 7f5e6aeb44944bf7523bd3f08ff7cbeb88ff69d57a808d85404a1490ce0a339f SHA512 619258e359f3d6fa073db1a1cca9af65be034649420ff471c49ae4a086008c4673503fb7626421d630edcd43dde7cb0d760a91e5fcd33090cf53ccb4fcb54c07 WHIRLPOOL 265131ea2eba675060807b7b9af7749dad26efd1c023721ca10756c0b33d00f745e27b292ca8707e457f859120958fbb5f6951fb1d1745fdd4d207cbd2a5ba55
|
||||
MISC ChangeLog 1966 SHA256 3d9ffc768dc10750ac8e534a790466c53fd150f18536b6a8bee0e45c814953b7 SHA512 e9d43757cd47612cb5c57b425cf3b348af45d0519592f8bcc2c4b968a1feb55925f66843319a5b28007ca590314b2874621af9025bcec15cfed6778bd3038727 WHIRLPOOL 1935768f929970bdfd9bec01a5ed1d7eabeb07644922a27f036128fff260b9768cc6bf4bb68c45f6bbc609d3a44024e89fe5fe64549d70b37d665940752ec518
|
||||
MISC metadata.xml 1376 SHA256 e42a5c5c3ddaebd538977addc6ecfe7b20dcbcf10de3487fa57a01e601fe9b6b SHA512 d6a7336d8e01ee6cee51c39107489d0bd93732c0a962b0f26778974be96752b9e3950d243550c189f0ec4e5495d6c0220c01b6e49705fe48b1adc493f10a6764 WHIRLPOOL 086ce26b4e6129d0efc8618a7f25555ea7a2531c7e821688b0dcc67b22448c4577b907ab91d9e962012706a0c2763903c0a2f4c2920ee126589341bc9bcbadee
|
||||
|
@ -1,5 +1,5 @@
|
||||
DIST Module-Signature-0.79.tar.gz 94207 SHA256 22df2ce097fb5d176efa951c782633d8debe594924a25ca66666252512ce462c SHA512 500049d841fec0f7a9ce3fe8dd5f89c09512d61d24bacca320a2c09b91c94d510aad514edfe0655906ed745cdfbf3cb226cddcf975dfd0934b8e46e276db3b62 WHIRLPOOL 625471b5ef840467e64521eb39eb8f5cfd573f5e875fc86db96f817f0ff98dda59971f8af3041cf52a40570be4916616013262e33d40fbc139acfc139390cbf6
|
||||
EBUILD Module-Signature-0.790.0.ebuild 1115 SHA256 8e068a8d57ee278e8240053728653f55741a155aeb4ec1fa145b6f773cff459a SHA512 73342e676b159458362041910bdd81c8624a880b80780989632921bccae5af3977cce8ad9c366cd5e5ef5c10353b063841df6f045e569df2c92f5b421585313b WHIRLPOOL 26fb9f161e639518fbd4ae19786c4bc942f49008dfe4ced71e5434f314a14cf0d81e7198d5056b670840191eabb27fcb3bc073c0e495601c3396fc75a606533e
|
||||
MISC ChangeLog 4855 SHA256 16a29a76e305cac11a284b58ecf23b21e73bba7f8b7ad418f361c3bc19f6ced1 SHA512 968a2a96e88b4e844670ed1380d42336cf3773fee72e46c7c866e2a85c89677f857b661a0b490186b1dea6d34524d83edcd968402089dea48d4dd225454fc86d WHIRLPOOL 15de35beb55ef13a60fdcf91d7af49db650fa7c707c0b9c1a76363a9801d9e4a575587ec31b801119d52926e9c86e81058e2fb90034e0927704c63f667c74d38
|
||||
EBUILD Module-Signature-0.790.0.ebuild 1115 SHA256 e0e160710d57729ac4cb5c62b666201c3275c585d94fc7a4813454a77c794758 SHA512 73a84f011dc8700e03596f046eafbcc1aae0db4c6465a29a7aaa81e3fbeea45fc51379f229c33d71074a77adeaf7e22640b7ade42c626c9549cf152ac06c9688 WHIRLPOOL 158127e024c2210ca157219d7a898956ef091ccdcffa90fed854c00b75dadf8e13022b948d6bbd47b1f6ac16b6ac220109959ebf5d6d66c542653055c96da2d1
|
||||
MISC ChangeLog 5216 SHA256 591c67450642df2f5e28da70cdf3cb029d405ab8307b187b529d2e4b798ad72a SHA512 53639e8cb79d71e33f664e8ae2c23add2c8a7568e7e81507ec1c9cdc15c6fdf53fc2e4200fb527a8d3ca8c5bcf61bfb064010e978a6635e065f7f447fa305dc2 WHIRLPOOL ca81d34dd40f653ff69bbdd4af80e21557a987253a6491deaca91fba1c7bee76ddf802a8467c4670050d5fdeb220a387e1c6a2ea3522a99ec6430dbfc0ffde69
|
||||
MISC ChangeLog-2015 7792 SHA256 6300ebba34adc3025b0bd7c2dd0689bb1d12c4c2825df90e757f1314298d4697 SHA512 059c4469011fa8ff1ba7256595fbc49cfb4bc30addf011e4334c3168e9fc9b1e47534ebea6ff4c4dcee2bbfee854e516d57b85d09aec974d12477cc169edde48 WHIRLPOOL 4773501fe23b7bdc890c0daf543968df805a0c981ad9eec223fc5ef34190758acc959ed4018d4b93551191e818cc280ecc1e8e7d067e30da569ba5f7b467e750
|
||||
MISC metadata.xml 404 SHA256 dd9ceb069bbdacf8981da1ec49a580307098ea5304579bf1eeacf2eebccc10f2 SHA512 5458d20ea85e9a097ea073a1285febdf2a8d274bfbc0a112e3c7739eea9248a33abb6c249eff24703bea421a4396837e388b2344125dedaf25f6241f71302050 WHIRLPOOL 061c9c4d9b86df20cc1daa8309d7b3e4c7f8f33cae810600dbc6f155e67b49984589500fdb8bbaabcb88c14369103c5fcacf39508fcd80bf0215d5ff982800f9
|
||||
|
@ -1,7 +1,7 @@
|
||||
DIST Path-Tiny-0.061.tar.gz 71937 SHA256 e8290aac8c0623eea1b20b4a9d9a1be08db7f5a92ea51a514677964f3fa01cca SHA512 36efc16e8dc2046f4a0c458be464be54769ec721d09201970d7f4d9c87acb03b91f16b673e63fc8212574f47bad31f59006cc50eb242f071d271294408c397a0 WHIRLPOOL c0bf53e78b82a8f9351698de875dad339c821e3dccf5f7ee8add3ed7d3d11baacf43e5442d8481d1cdefce94da89e2d80eff28dbbaa1c6a5d6519e51a647d375
|
||||
DIST Path-Tiny-0.084.tar.gz 89052 SHA256 633f463e380404d4aaa8ebdd1977b5e387256aa2770eb142b169737978749bea SHA512 c8a5853f04afdb5d8db1e8f533d4706cf1030caefbb0f1b05f0fab7b71de34a0463269ba1733f549d1c1c7a370ce88f428d108387b10c6cb56c668280e2449c6 WHIRLPOOL ecf8a851796e958520e1433a4b4e7861b6c94a8ef215a41df7392d6414d9bd9df54aa7ca87f47a13f8c234ebc71d1b8aefdc5245c9c519e8cc42ecf7aa3abf43
|
||||
EBUILD Path-Tiny-0.61.0.ebuild 786 SHA256 a800027485ef7a7d2cdefb9655703f878675f93b8df28dad035564e24ac74f1c SHA512 c9d2353f22f58e7063df2b788178d17bb272a1944f7e10bb2fc270039d86ffcf67620c8239dbf5be6d6b76bd6123b329cac1a3d753326b9748473f53c9cbd5b1 WHIRLPOOL 9a1d91088e1121ac3be726d8964479e6de26a0d2c9550329bb7b5e8ae4a0e21ca2d85749face6b594987600c322aa28e310f51d8a1c182163826e4a2b2779f05
|
||||
EBUILD Path-Tiny-0.84.0.ebuild 823 SHA256 37eb568a5ac473b6ec944841a7aba0ac8123303f06454bc1cbe69f15175df585 SHA512 bf5bad3311a1c1c90962c5048a94510e17ebd9f575478c261d0e05004f08f2149e851c494a53102f36127bf622b79f11a28bccb15a807cce2218b1821f5725b0 WHIRLPOOL 498c86a6efa7980244481e8b9743cb3ac9d822c79073433dd387e322dd1868ddac2f078bc2c1554669eab43e7c9f157ecf8c127a32ccf22d918efe964cf346f2
|
||||
EBUILD Path-Tiny-0.84.0.ebuild 829 SHA256 57ff9626d990855329786ab5131c2b849c2816450a85358ae7849a1579f24999 SHA512 9758371874f0758728d2edc02a928a83edd00024521fdd0415514c3ab79f79cde9e5b97c9186bdcd512f669f6f9f87db0e5fd9357abd3758c4ce183133065f0b WHIRLPOOL 9fce9820427f04118acc604d9c039250a45ab7834bb0bcd7336b0960801635de5bc13a03b92a79757f09b11ca4dba6c017e0b4a1ffd0954ca386e7044aaf1737
|
||||
MISC ChangeLog 4537 SHA256 6c809d06d15026faa322f22ed915523e02b879886712d145719e979a47d90482 SHA512 40a67a0cf94a57e2bb7cfac03c34fd996cd27e3cc234599c1ecf04aae329c7db81eea97b072f5d1bb42824481b6b52c02ac24e9f1a8a62578ac71a10ec36c02e WHIRLPOOL 7cae58d7070907ae36cf1c4ee0aaee6d5f7941bc97c04d990b802a9550116762ab595d6ddf0e0433edd5b63a6c40d6a506e983bfcb0d7cfe91e988c3ca6a3dce
|
||||
MISC ChangeLog-2015 1531 SHA256 2df03954ffdcd499edc0639d5129e83ab84e6af93a509b3cfb02f600c086683a SHA512 b407c883802b47df33f58389d7506d0b58fd25707180030fb57f232543be6238571cfd6388b6aed32885a9f86f89ebc414ca0ce41f17cfb50d173e737b1dc11b WHIRLPOOL af101fed1611505ab0fea55e42dad6b7db2982d38b16a96f4df9074562db127aafd2b6db9e7b417cc8263027e909fe8a59d773fa6607fb79e68b3b2c09fc80a3
|
||||
MISC metadata.xml 366 SHA256 c42bd9fd73784e2beb8424d8b596abd587458983500e7e55320ee25d98fa597b SHA512 666853cb042f6907a7c01572cfa3e32503bd11edaff12b8cfbe3c4edcdf376739cf602e2c512962ccddf8c9769d920080e35cef10c99bd34be52d41875ddb54a WHIRLPOOL 427ee74960f82ffb291601040a34646bb0fd379b22b63215448e9c2b63a49af63a0c9438c50beba66926060c610e4209c69c5565f7f3849a462b170960d3dfdb
|
||||
|
@ -1,4 +1,4 @@
|
||||
DIST Test-MockRandom-1.01.tar.gz 24449 SHA256 2614930d84fc5deac39afbc1ee86ccd39b221507f27d4ee493ca26e5c921cce0 SHA512 e222bd0d3d7673b403e80d1633ddaca0ee35f96f2245e8df859d661edc7efc09b9a96d3718f25b6614395d1f24d66c9498e842cec476cf8c5b12464d585f85e7 WHIRLPOOL 42ae1d42da03ced4b77f25d86717e52cee1c528978e1ff8d0677c25d408b9e670b558f588db2fe706adf70eafd339e6c920de3afc787e161e4c2ed735f3c5431
|
||||
EBUILD Test-MockRandom-1.10.0.ebuild 830 SHA256 f133470c09233acdb305177432378271847915ddb484625b3494694d072b92f2 SHA512 449c059488c9bfb64c038de4693bf9dfca41894dd860a35292c93da4ca0f5f73b40440239d721a718ecce73284ba062509afc22f288bf06c95b6e0af668d96af WHIRLPOOL ff024e0b84376430270f204e3451bf03a50e89153b68f7b66fe757621eb55c2ed2214e8c8806dc916f4a4c099e37df284f863ec9c7a29b705d9b392003f68edc
|
||||
EBUILD Test-MockRandom-1.10.0.ebuild 836 SHA256 7dba55b96f2134fc71557fd6f7e1a25c8436d898b84e8be5af1686f31bcf7cbb SHA512 145a12f1c7dff428304a441e933fd8e337471c5e97e599d6135a81d9c83a7610f682032e7d6715cf5ddfcd48d0e7cd4e1d797ae842710023093985794e0f2f79 WHIRLPOOL 79d412071afbba5a55c7a9fdc5614de941d2c978e8073349cc718e60f8769035c92e666dd57fa1a934e9297f55ba6175168a97fb4ae94114404c3e11637dae54
|
||||
MISC ChangeLog 690 SHA256 060885462c4b36a268f0a39d5a271e7ffaad223bbe8f0bfe7b9d617b4846043b SHA512 bca91b321d0e06d71c253661be984ede508ddf910db708a8f7511cd8b9d9cfaf4e2e3df875911a3c286e181b66816348a7ab5d3964f8ec72e04a9ae9d8f35d24 WHIRLPOOL f87d007437b7b9eb52e1a8de25702e92b54e790ec59f0600373e6fcbad25b50cd2e670f8ac447a4d6acc5890b236d3154f503e8c37b23a667d86d1566db45728
|
||||
MISC metadata.xml 390 SHA256 81a9b612f99df62bcddb69ab99b80d75d7c89236068d3e23b2293183e776dc57 SHA512 935708795308c099cf850aff026347137ea3f0ca5be9f9a4d616fde8d082b3a877eeed30fc59d9532d76c71b31d167a041b26a84d6001c4222527416f8f218fa WHIRLPOOL f26ee777093757f052a696b8496464d3592b21b686300be68b1746ff75f47ff19e33999fe236aafef2eb6100b17c357624a538ea2f59a7b831d7c243050d02b5
|
||||
|
@ -1,65 +0,0 @@
|
||||
# ChangeLog for dev-perl/convert-ascii-armour
|
||||
# Copyright 1999-2016 Gentoo Foundation; Distributed under the GPL v2
|
||||
# (auto-generated from git log)
|
||||
|
||||
*convert-ascii-armour-1.400.0-r1 (09 Aug 2015)
|
||||
|
||||
09 Aug 2015; Robin H. Johnson <robbat2@gentoo.org>
|
||||
+convert-ascii-armour-1.400.0-r1.ebuild, +metadata.xml:
|
||||
proj/gentoo: Initial commit
|
||||
|
||||
This commit represents a new era for Gentoo:
|
||||
Storing the gentoo-x86 tree in Git, as converted from CVS.
|
||||
|
||||
This commit is the start of the NEW history.
|
||||
Any historical data is intended to be grafted onto this point.
|
||||
|
||||
Creation process:
|
||||
1. Take final CVS checkout snapshot
|
||||
2. Remove ALL ChangeLog* files
|
||||
3. Transform all Manifests to thin
|
||||
4. Remove empty Manifests
|
||||
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
|
||||
5.1. Do not touch files with -kb/-ko keyword flags.
|
||||
|
||||
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
|
||||
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration
|
||||
tests
|
||||
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this
|
||||
project
|
||||
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo
|
||||
developer, wrote Git features for the migration
|
||||
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve
|
||||
cvs2svn
|
||||
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
|
||||
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014
|
||||
work in migration
|
||||
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
|
||||
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on
|
||||
the bikeshed
|
||||
|
||||
24 Aug 2015; Justin Lecher <jlec@gentoo.org> metadata.xml:
|
||||
Use https by default
|
||||
|
||||
Convert all URLs for sites supporting encrypted connections from http to
|
||||
https
|
||||
|
||||
Signed-off-by: Justin Lecher <jlec@gentoo.org>
|
||||
|
||||
24 Aug 2015; Mike Gilbert <floppym@gentoo.org> metadata.xml:
|
||||
Revert DOCTYPE SYSTEM https changes in metadata.xml
|
||||
|
||||
repoman does not yet accept the https version.
|
||||
This partially reverts eaaface92ee81f30a6ac66fe7acbcc42c00dc450.
|
||||
|
||||
Bug: https://bugs.gentoo.org/552720
|
||||
|
||||
24 Jan 2016; Michał Górny <mgorny@gentoo.org> metadata.xml:
|
||||
Replace all herds with appropriate projects (GLEP 67)
|
||||
|
||||
Replace all uses of herd with appropriate project maintainers, or no
|
||||
maintainers in case of herds requested to be disbanded.
|
||||
|
||||
24 Jan 2016; Michał Górny <mgorny@gentoo.org> metadata.xml:
|
||||
Set appropriate maintainer types in metadata.xml (GLEP 67)
|
||||
|
@ -1,112 +0,0 @@
|
||||
# ChangeLog for dev-perl/convert-ascii-armour
|
||||
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-perl/convert-ascii-armour/ChangeLog,v 1.28 2014/08/22 14:41:35 axs Exp $
|
||||
|
||||
*convert-ascii-armour-1.400.0-r1 (22 Aug 2014)
|
||||
|
||||
22 Aug 2014; Ian Stakenvicius (_AxS_) <axs@gentoo.org>
|
||||
+convert-ascii-armour-1.400.0-r1.ebuild, -convert-ascii-armour-1.400.0.ebuild:
|
||||
bumped current stable ebuild(s) EAPI to 5; committed directly to stable as no
|
||||
other changes present and revbump helps stable systems to keep from dieing on
|
||||
perl-5.18 upgrade
|
||||
|
||||
24 Jun 2012; Torsten Veller <tove@gentoo.org> metadata.xml:
|
||||
Update CPAN upstream info
|
||||
|
||||
04 Sep 2011; Torsten Veller <tove@gentoo.org>
|
||||
-convert-ascii-armour-1.4.ebuild:
|
||||
Cleanup
|
||||
|
||||
03 Sep 2011; Torsten Veller <tove@gentoo.org>
|
||||
convert-ascii-armour-1.400.0.ebuild:
|
||||
Merge stable keywords from former version scheme ebuild
|
||||
|
||||
*convert-ascii-armour-1.400.0 (27 Aug 2011)
|
||||
|
||||
27 Aug 2011; Torsten Veller <tove@gentoo.org>
|
||||
+convert-ascii-armour-1.400.0.ebuild:
|
||||
Change version scheme
|
||||
|
||||
24 Apr 2011; Fabian Groffen <grobian@gentoo.org>
|
||||
convert-ascii-armour-1.4.ebuild:
|
||||
Marked ~x86-solaris, bug #296509
|
||||
|
||||
09 Jan 2010; Fabian Groffen <grobian@gentoo.org>
|
||||
convert-ascii-armour-1.4.ebuild:
|
||||
Transfer Prefix keywords
|
||||
|
||||
19 Jul 2009; Torsten Veller <tove@gentoo.org>
|
||||
convert-ascii-armour-1.4.ebuild:
|
||||
IO-Compress replaces Compress-Zlib
|
||||
|
||||
18 Nov 2008; Torsten Veller <tove@gentoo.org>
|
||||
convert-ascii-armour-1.4.ebuild:
|
||||
New virtuals: Compress-Zlib
|
||||
|
||||
15 Jan 2007; Michael Cummings <mcummings@gentoo.org>
|
||||
convert-ascii-armour-1.4.ebuild:
|
||||
Ebuild maintenance
|
||||
|
||||
06 Aug 2006; Michael Cummings <mcummings@gentoo.org>
|
||||
convert-ascii-armour-1.4.ebuild:
|
||||
Adding perl dep; fixed DEPEND
|
||||
|
||||
05 Jul 2006; Christian Hartmann <ian@gentoo.org>
|
||||
convert-ascii-armour-1.4.ebuild:
|
||||
Fixed RDEPEND wrt bug #134781
|
||||
|
||||
13 Feb 2006; Michael Cummings <mcummings@gentoo.org>
|
||||
convert-ascii-armour-1.4.ebuild:
|
||||
Virtuals for some perl-core deps
|
||||
|
||||
25 Nov 2005; Tom Gall <tgall@gentoo.org>
|
||||
convert-ascii-armour-1.4.ebuild:
|
||||
stable on ppc64
|
||||
|
||||
02 Oct 2005; Aron Griffis <agriffis@gentoo.org>
|
||||
convert-ascii-armour-1.4.ebuild:
|
||||
Mark 1.4 stable on ia64
|
||||
|
||||
26 Aug 2005; Aron Griffis <agriffis@gentoo.org>
|
||||
convert-ascii-armour-1.4.ebuild:
|
||||
add ~ia64
|
||||
|
||||
25 May 2005; Michael Cummings <mcummings@gentoo.org>
|
||||
convert-ascii-armour-1.4.ebuild:
|
||||
dev-perl/MIME-Base64 => perl-core/MIME-Base64 migration
|
||||
|
||||
24 May 2005; Michael Cummings <mcummings@gentoo.org>
|
||||
convert-ascii-armour-1.4.ebuild:
|
||||
dev-perl/Digest-MD5 => perl-core/Digest-MD5
|
||||
|
||||
29 Apr 2005; Michael Cummings <mcummings@gentoo.org>
|
||||
convert-ascii-armour-1.4.ebuild:
|
||||
Cleaning for mirror syntax
|
||||
|
||||
22 Apr 2005; Simon Stelling <blubb@gentoo.org>
|
||||
convert-ascii-armour-1.4.ebuild:
|
||||
stable on amd64
|
||||
|
||||
30 Dec 2004; Ciaran McCreesh <ciaranm@gentoo.org> :
|
||||
Change encoding to UTF-8 for GLEP 31 compliance
|
||||
|
||||
24 Dec 2004; Yuta SATOH <nigoro@gentoo.org> convert-ascii-armour-1.4.ebuild:
|
||||
added ~ppc64
|
||||
|
||||
28 May 2004; Bryan Østergaard <kloeri@gentoo.org>
|
||||
convert-ascii-armour-1.4.ebuild:
|
||||
Stable on alpha.
|
||||
|
||||
26 Feb 2004; Joshua Kinard <kumba@gentoo.org>
|
||||
convert-ascii-armour-1.4.ebuild:
|
||||
Added ~mips to KEYWORDS to satisfy repoman deps.
|
||||
|
||||
27 Oct 2003; Brad House <brad_mssw@gentoo.org>
|
||||
convert-ascii-armour-1.4.ebuild:
|
||||
add ~amd64 flag
|
||||
|
||||
*convert-ascii-armour-1.4 (23 Jun 2003)
|
||||
|
||||
23 Jun 2003; Michael Cummings <mcummings@gentoo.org>
|
||||
convert-ascii-armour-1.4.ebuild:
|
||||
dep for crypt-rsa, which is a dep for net-ssh
|
@ -1,5 +0,0 @@
|
||||
DIST Convert-ASCII-Armour-1.4.tar.gz 6002 SHA256 97e8acb6eb2a2a91af7d6cf0d2dff6fa42aaf939fc7d6d1c6057a4f0df52c904 SHA512 ba3b26dc440099374a60b374e4c1f92c0824388b7247f5cd0fd3403d6c2b7c3e916bb0cb98654e4a215352bae5728d3db239d657964695ae4e9be6a44c484a34 WHIRLPOOL b769111db2ebb6b1ba3a1b0cfdad95ff09e949d1c18d13c6be7a5db06e24fad6d1f89f7ff965b6c3a02e1da7e94490b034a94bcd1173d29a2daee9679ef23bd4
|
||||
EBUILD convert-ascii-armour-1.400.0-r1.ebuild 532 SHA256 f70b62c44691140584738ce5b79d529b4b9920a9c01ceb761a7589d778e5ec35 SHA512 69f5ad3822bf1620945c6a9dafee1c6874db5f4bd58b98e41635c4277b15936324b0c4b96a3d8e0f0505db8bd38e9996bbb4a63492e4bd61719cb24915a3f4f3 WHIRLPOOL 2b43b001f305f7c9786095119d3384ba7f2a757e7809c02dee4e25ca33f3b01dd40620f4afacd38ca212a90e0fbe037aee9b4f9bd295ac3607bccb251c4c5186
|
||||
MISC ChangeLog 2476 SHA256 47282483caf8afd4e87f26f7134f5c0feefa641a21a2ebde90c3ea2083ae0864 SHA512 6fab3bb54149a16272b24ff1ce46e6d9b2fdfe5fe38303e9cea43155dc9ca7d99ff5019a80719f3ab1dfa8ffd723a197cdc3d0623d90a131207f9169be29f399 WHIRLPOOL fb892649c85fb9866ab633b481f64008d0cf4bcb7c96aadfdb3986f5ea08f9e57a0845b298c05f412e5242b1a6f9699c81b13801be7f6699449bdf6f453866f7
|
||||
MISC ChangeLog-2015 3578 SHA256 0dff9214ee8719c51f1f95522df04d794db566c2a79930e9456513aa0089942d SHA512 86e6568597fe044cde6e3fab9a191352fc82546bd82b7daaa01369eac69929a613bf8614e7883565fc8b20b35832909bd6f7ec72924edc710feb08edb5b5158c WHIRLPOOL e8081f2cc0d10e94b0e274fa9c321bf7e2131bbe3850dce5225cd55396c006e750a07a57e4da8bc4963761a22dc0d9d8e11d81e7d03f1550a89fa55380c2d597
|
||||
MISC metadata.xml 481 SHA256 93575f99763352e5983016cca1acbd11364c939a5ba97af25da4fff15019a940 SHA512 a5d604c4ad26b7575c77ef892b07201c1b941445e43355f4a0f50015dcb0d9389fde8c148f148faa22e279dd94e8d9df35b08d1b0b0820ddfda7ffddfd585ad3 WHIRLPOOL 2d44d27ff7156e4ecf282c8b0fa15fa3a807ca048960d64ec384a4aa0bba2232492450b58e243a6c895e6ee2b32817902d6b7419d6cb29e1b91c8ce5a4322940
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue