# Detect the distribution in use %global __despace head -n 1 | tr -d '[:space:]' | sed -e 's/[(].*[)]//g' %global __lower4 cut -c 1-4 | tr '[:upper:]' '[:lower:]' %global __distfile %([ -f /etc/SuSE-release ] && echo /etc/SuSE-release || echo /etc/redhat-release) %global __distinit %(sed -e 's/ release .*//' -e 's/\\([A-Za-z]\\)[^ ]*/\\1/g' %{__distfile} | %{__despace} | %{__lower4}) %global __distvers %(sed -e 's/.* release \\([^. ]*\\).*/\\1/' %{__distfile} | %{__despace}) # Identify Alma, CentOS, CentOS Stream and Rocky Linux as rhel %if "%{__distinit}" == "a" || "%{__distinit}" == "c" || "%{__distinit}" == "cl" || "%{__distinit}" == "cs" || "%{__distinit}" == "rl" %global __distinit rhel %endif # Dist tag for Fedora is still "fc" %if "%{__distinit}" == "f" %global __distinit fc %endif # work around upstream versioning being decimal rather than v-string %global upstream_version 4.81 %global extraversion %{nil} %if "%{upstream_version}%{extraversion}" != "%{upstream_version}" Provides: perl(IO::AIO) = %{upstream_version}%{extraversion} %endif Name: perl-IO-AIO Version: %{upstream_version}%{extraversion} Release: 4.%{__distinit}%{__distvers} Summary: Asynchronous Input/Output License: GPL-2.0-or-later URL: https://metacpan.org/release/IO-AIO Source0: https://cpan.metacpan.org/modules/by-module/IO/IO-AIO-%{upstream_version}.tar.gz Patch0: IO-AIO-4.4-shellbang.patch # Module Build BuildRequires: coreutils BuildRequires: findutils BuildRequires: gcc BuildRequires: make BuildRequires: perl-devel BuildRequires: perl-generators BuildRequires: perl-interpreter BuildRequires: perl(Canary::Stability) >= 2001 BuildRequires: perl(Config) BuildRequires: perl(ExtUtils::MakeMaker) # Module Runtime BuildRequires: perl(base) BuildRequires: perl(Carp) BuildRequires: perl(common::sense) BuildRequires: perl(Exporter) BuildRequires: perl(XSLoader) # Script Runtime BuildRequires: perl(Getopt::Long) BuildRequires: perl(Pod::Usage) BuildRequires: perl(Time::HiRes) # Test Suite BuildRequires: perl(Fcntl) BuildRequires: perl(File::Temp) BuildRequires: perl(FindBin) BuildRequires: perl(lib) BuildRequires: perl(POSIX) BuildRequires: perl(strict) BuildRequires: perl(Test) BuildRequires: perl(vars) # Dependencies %if 0%{?fedora} < 38 && 0%{?rhel} < 10 Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) %endif Requires: perl(XSLoader) # Avoid provides for private shared objects %{?perl_default_filter} %description This module implements asynchronous I/O using whatever means your operating system supports. %package -n treescan Summary: Scan directory trees, list directories/files, stat, sync, grep License: GPL-1.0-or-later OR Artistic-1.0-Perl BuildArch: noarch Requires: %{name} = %{version}-%{release} Requires: perl(Pod::Usage) %description -n treescan The treescan command scans directories and their contents recursively. By default it lists all files and directories (with trailing /), but it can optionally do various other things. If no paths are given, treescan will use the current directory. %prep %setup -q -n IO-AIO-%{upstream_version} # Fix shellbang in treescan %patch -P 0 %build PERL_CANARY_STABILITY_NOPROMPT=1 perl Makefile.PL \ INSTALLDIRS=vendor OPTIMIZE="%{optflags}" make %{?_smp_mflags} %install make pure_install DESTDIR=%{buildroot} find %{buildroot} -type f -name .packlist -delete find %{buildroot} -type f -name '*.bs' -empty -delete %{_fixperms} -c %{buildroot} %check make test %files %license COPYING %doc Changes README %{perl_vendorarch}/auto/IO/ %{perl_vendorarch}/IO/ %{_mandir}/man3/IO::AIO.3* %files -n treescan %{_bindir}/treescan %{_mandir}/man1/treescan.1* %changelog * Mon Jan 20 2025 Paul Howarth - 4.81-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild * Sun Jul 21 2024 Paul Howarth - 4.81-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild * Thu Jun 13 2024 Paul Howarth - 4.81-2 - Perl 5.40 rebuild * Wed Feb 21 2024 Paul Howarth - 4.81-1 - Update to 4.81 - Work around a bug in musl w.r.t. to O_SEARCH and use EIO_O_PATH instead, verifying the semantics against the subset of O_PATH and O_SEARCH - aio_copy now tries to preallocate the destination file - fexecve configure test used the wrong pointer type * Thu Jan 25 2024 Paul Howarth - 4.80-6 - Re-rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild (see https://pagure.io/releng/issue/11888) * Mon Jan 22 2024 Paul Howarth - 4.80-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild * Wed Dec 13 2023 Paul Howarth - 4.80-4 - Fix use of incompatible pointer type in configure test for fexecve() * Fri Jul 21 2023 Paul Howarth - 4.80-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild * Fri Jul 14 2023 Paul Howarth - 4.80-2 - Perl 5.38 rebuild * Sun Apr 2 2023 Paul Howarth - 4.80-1 - Update to 4.8 - Remove long-obsolete "paths must be absolute" text in aio_open/stat descriptions - Another workaround for the low-quality musl libc - Test for umount separately, as it is more portable - Some low-quality posix attempts (openbsd, osx) declare the availability of fexecve() but then don't even bother to implement a stub - Avoid use of deprecated patch syntax * Tue Jan 24 2023 Paul Howarth - 4.79-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild * Mon Sep 26 2022 Paul Howarth - 4.79-1 - Update to 4.79 - The autoconf result of the mount check was not used, so it failed to compile on most systems - Fix format string usage for croak in extract_stringvec function * Tue Sep 6 2022 Paul Howarth - 4.78-1 - Update to 4.78 - Add IO::AIO::mount and IO::AIO::umount - Add a bunch of symbols from sys/mount.h * Mon Sep 5 2022 Paul Howarth - 4.77-1 - Update to 4.77 - Add MFD_HUGETLB_2MB and MFD_HUGETLB_1GB constants - Add fexecve - Add lots of missing functions to @EXPORT_OK - Use SPDX-format license tags * Fri Jul 22 2022 Paul Howarth - 4.76-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild * Wed Jun 1 2022 Paul Howarth - 4.76-3 - Perl 5.36 rebuild * Wed Jan 26 2022 Paul Howarth - 4.76-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild * Wed Jul 28 2021 Paul Howarth - 4.76-1 - Update to 4.76 - Add autoconf test for siginfo_t, which is, of course, not available on Windows - Disable syscalls on Solaris, as perl seems to provide an incompatible syscall prototype that clashes with sys/syscall.h - Add MAP_FIXED_NOREPLACE, MAP_SHARED_VALIDATE, MAP_SYNC and MAP_UNINITIALIZED * Sat Jul 24 2021 Paul Howarth - 4.75-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild - Fix dist tags for Alma and Rocky Linux * Fri May 21 2021 Paul Howarth - 4.75-3 - Perl 5.34 rebuild * Mon Feb 1 2021 Paul Howarth - 4.75-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild * Wed Dec 30 2020 Paul Howarth - 4.75-1 - Update to 4.75 - Added pidfd_open, pidfd_getfd and pidfd_send_signal functions - Rework bin/treescan to avoid recursion; this fixes two bugs where a deep directory traversal or a lot of command line arguments could cause it to crash - Support defining syscall numbers in gendef0 - Added (but not documented) open_tree, AT_* and move_mount flags - Added (but not documented) waitid-P_*, FSPICK_*, FSOPEN_*, FSCONFIG_*, MOUNT_ATTR_* constants * Fri Dec 4 2020 Paul Howarth - 4.73-1 - Update to 4.73 - def0.h was not up-to-date, running into musl problems - IO::AIO::splice and IO::AIO::tee didn't properly return 64 bit values - Added IO::AIO::accept4 - Added various F_SEAL-related fcntl constants - Removed experimental marker for fdlimit functions - fiemap now includes the last segment even if it overflows the end offset, which is arguably the correct behaviour * Tue Jul 28 2020 Paul Howarth - 4.72-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild * Thu Jun 25 2020 Paul Howarth - 4.72-5 - Perl 5.32 rebuild * Thu Feb 6 2020 Paul Howarth - 4.72-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild * Fri Jul 26 2019 Paul Howarth - 4.72-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild * Fri May 31 2019 Paul Howarth - 4.72-2 - Perl 5.30 rebuild * Wed Apr 3 2019 Paul Howarth - 4.72-1 - Update to 4.72 - libeio: If fd 0 is available do not use it for aio_wd, as it collides with IO::AIO::CWD - Added IO::AIO::memfd_create - Correctly include in the vmsplice test - Reduce code size by ~7%% on amd64 by declaring more functions as noinline - Documentation fixes and updates - Experimental and undocumented preliminary support for synchronous statx * Sun Mar 10 2019 Paul Howarth - 4.71-1 - Update to 4.71 - Due to an error in the linux manpages, the configure tests for readahead, sync_file_range, splice etc. failed; this has been fixed * Mon Mar 4 2019 Paul Howarth - 4.70-1 - Update to 4.7 - Significantly speed up scandir for the very special case of a non-POSIX filesystem that nevertheless reports valid dt_type information; the only known filesystem of this type is currently btrfs, which didn't get its act together to implement POSIX semantics in all these years - Add IO::AIO::MCL_ONFAULT for mlockall, add IO::AIO::mlockall - Neither sys/mkdev.h nor sys/sysmacros.h were included, even when they were detected by autoconf * Tue Feb 12 2019 Paul Howarth - 4.60-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild * Tue Aug 28 2018 Paul Howarth - 4.60-1 - Update to 4.6 - Add st_btime, st_btimesec, st_btimensec and st_gen accessors, mostly for bsds that expose birthtime and st_gen members (netbsd, freebsd but only st_gen on openbsd because they compiled their perl without support for birthtimes) - Fix madvise and munlock to properly support negative offsets - Allocate fd for the aio_close at boot time, to guarantee it working later, rather than calling abort when it fails; this also avoids close-on-exec race issues after module load - #undef utime on win32, which might help some reports of utime hangs - Minor documentation improvements - Minor configure clean-ups - Use $Config{perllibs} instead of libs for configure, which might help people who didn't install all perl dependencies (might break things as well) - Remove buildreqs needed only due to use of $Config{libs} * Wed Aug 15 2018 Paul Howarth - 4.54-1 - Update to 4.54 - Include sys/mkdev.h or sys/sysmacros.h if available - Further tweaks to configure invocation for systems requiring --rpath - No longer rely on custom paths on win32 platforms - Try to work around buggy PAGESIZE macro on solaris * Tue Aug 14 2018 Paul Howarth - 4.53-1 - Update to 4.53 - Add $Config{libs} to LIBS for configure, to work around systems with broken library dependencies - Add missing include for prctl() - Add buildreqs needed due to overspecification of libraries in $Config{libs} * Mon Aug 13 2018 Paul Howarth - 4.52-1 - Update to 4.52 - Complete rework of the autoconf framework: IO::AIO now uses its own config.h, separate from libeio, and tries to test the actual perl environment, not the standard system environment - Provide nanosecond-accuracy stat time accessors for both perl and IO::AIO stat functions - Removed non-portable C++ functions from eio.c - Try to fix readdir tests on cygwin spuriously failing - Add workaround to make sure configure script can find libperl.so * Wed Aug 1 2018 Paul Howarth - 4.50-1 - Update to 4.5 - aio_mtouch: touch all pages as requested, not just the first page - New function: IO::AIO::mremap - linux-specific mremap, with constants MREMAP_MAYMOVE and MREMAP_FIXED - Add O_ACCMODE - Add (undocumented) MSG_CMSG_CLOEXEC and SOCK_CLOEXEC constants * Tue Jul 17 2018 Paul Howarth - 4.40-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild * Wed Jun 27 2018 Paul Howarth - 4.40-2 - Perl 5.28 rebuild * Wed Feb 21 2018 Paul Howarth - 4.40-1 - Update to 4.4 - New aio_slurp request - Add (experimental) IO::AIO::eventfd and timerfd* function - Add (experimental) IO::AIO::get_fdlimit and IO::AIO::min_fdlimit - Point out that aio_copy overwrites existing files - Remove filesystem magic number table from aio_statvfs docs as statvfs doesn't actually return this info at all (statfs does) - Add a bunch of (mostly linux-specific) constants for use in ioctls (see aio_ioctl docs) - treescan now has a proper manpage and useful --help output - New option --sync in treescan, to sync everything in a subtree - Changed default for aio_msync flags to MSYNC_SYNC - Document offset/length behaviour of mprotect/madvise - Support linux's renameat2 (via aio_rename2) - Add aio_rename2, an aio_rename with flags - Add F_DUPPFD_CLOEXEC, F_OFD_[SG]ETLKW? constants - Add FALLOC_FL_INSERT_RANGE, FALLOC_FL_UNSHARE_RANGE - libeio: Use posix_close if available - libeio: Internal close() calls no longer disturb errno - Add IO:AIO::FALLOC_FL_UNSHARE - Update schmorp.h for removal of USE_SOCKETS_AS_HANDLES and better eventfd detection - Package treescan, in its own package - Change license to GPLV2+, since parts of libeio are GPLv2+ * Mon Aug 7 2017 Paul Howarth - 4.34-6 - BR: perl-generators unconditionally - BR: perl-interpreter rather than perl * Tue Jun 13 2017 Paul Howarth - 4.34-4 - Drop support for EOL distributions prior to F-13 - Drop BuildRoot: and Group: tags - Drop explicit buildroot cleaning in %%install section - Drop explicit %%clean section - BR: perl-devel unconditionally * Fri Aug 26 2016 Paul Howarth - 4.34-2 - BR: perl-generators where available * Tue May 3 2016 Paul Howarth - 4.34-1 - Update to 4.34 - def0.h was not properly generated during previous release, causing compile errors on various platforms - major/minor were accidentally switched - Removed duplicate definition of MAP_HUGETLB - Added (untested!) aio_fcntl, aio_ioctl requests - (libeio) Names set via prctl are truncated to 15 chars + nul, not 16, as manpages-dev originally claimed - Drop def0.h patch from previous release, no longer needed - Simplify find commands using -empty and -delete * Mon Jan 18 2016 Paul Howarth - 4.33-1 - Update to 4.33 - Add IO::AIO::pipe2 function - Added support for FALLOC_FL_COLLAPSE_RANGE and FALLOC_FL_ZERO_RANGE constants - Added support for O_TMPFILE and O_PATH constants - Added support for MAP_FIXED, MAP_GROWSDOWN, MAP_32BIT, MAP_HUGETLB, MAP_STACK constants, whether they can be sensibly used or not - Use NO_INIT where applicable - Update libecb - Added stability canary support - Updated linux super magic table to 4.3.3 - Explicitly BR: perl-devel, needed for EXTERN.h - Add patch to support building on systems without MAP_STACK or MAP_32BIT * Wed Jun 17 2015 Paul Howarth - 4.32-2 - Perl 5.22 rebuild * Thu Feb 12 2015 Paul Howarth - 4.32-1 - Update to 4.32 - Replace off_t by STRLEN where appropriate; should not result in user-visible changes - Update ecb.h for C11 compatibility - Classify buildreqs by usage * Thu Aug 28 2014 Paul Howarth - 4.31-3 - Use %%license where possible * Tue Jun 10 2014 Paul Howarth - 4.31-1 - Update to 4.31: - Work around more 5.20 bugs * Fri Apr 11 2014 Paul Howarth - 4.30-1 - Update to 4.3: - perl5porters broke Async::Interrupt, BDB, EV, IO::AIO and OpenCL without warning by switching the meaning of USE_SOCKETS_AS_HANDLES in 5.18 - Drop %%defattr, redundant since rpm 4.4 * Sat Jan 25 2014 Paul Howarth - 4.20-1 - Update to 4.2: - aio_group could corrupt memory because it didn't restore the stack after req_submit - Be more careful on (e.g. permission) errors in bin/treescan - Work around changes in ExtUtils::MakeMaker - (libeio) Implement aio_realpath for win32 - (xthread) Work around compile time bugs in ptw32 - Added IO::AIO::pipesize - (libecb) Insignificant update * Thu Oct 11 2012 Paul Howarth - 4.18-1 - Update to 4.18: - aio_statvfs was wrongly marked for wd emulation, causing it to malfunction for paths - Fix a crash in aio_fiemap, when used on ranges without any extents - Work around linux kernel bug (at least in 3.2): kernel might trash fiemap input arguments - Work around linux kernel bug (at least in 3.2): kernel does not set FIEMAP_EXTENT_LAST on last segment - Work around linux kernel bug (at least in 3.2): kernel silently truncates segment count if a file - Make fh argument of IO::AIO::mmap optional, also add mmap/munmap to quick overview - splice can corrupt data - (libeio) remove pread/pwrite emulation - Do not grow mmaped scalars in aio_read - Add FALLOC_FL_PUNCH_HOLE and document fallocate - Provide pread/pwrite for win32, making it link again on native win32 - Rename aio_fallocate to aio_allocate, to match documentation - Add list of linux fsid values to aio_statvfs docs - Work around a bug in btrfs' FIEMAP ioctl implementation - Work around AIX bug: statvfs.f_fsid is a struct, not unsigned long as per unix spec * Fri Jun 22 2012 Paul Howarth - 4.15-2 - Perl 5.16 rebuild * Tue Apr 10 2012 Paul Howarth - 4.15-1 - Update to 4.15: - Always include linux/types.h for fiemap, for compatibility with ancient systems - Experimental support for IO::AIO::splice and ::tee (no aio_...) - Provide SEEK_HOLE and SEEK_DATA, if available - Work around (again!) an immensely stupid bug in RHEL, defining autoconf macros in linux system headers - Drop patches for RHEL-5 compatibility, no longer needed * Sat Apr 7 2012 Paul Howarth - 4.14-1 - Update to 4.14: - Fix stat structure usage on windows, which caused bogus stat results - (libeio) make readahead emulation behave more like actual readahead by never failing - New request aio_seek - New request aio_fiemap - Auto-generate the #ifdef/#define 0 blocks for symbols we export - BR:/R: Perl core modules that might be dual-lived - Add patch for EL-5 compatibility - Don't need to remove empty directories from buildroot - Drop support for old distributions prior to FC-3: - Don't need to define %%{perl_vendorarch} - Use %%{_fixperms} macro rather than our own chmod incantation - Use DESTDIR rather than PERL_INSTALL_ROOT * Fri Dec 30 2011 Paul Howarth - 4.12-1 - Update to 4.12: - realpath would return a random value if the name was too long, instead of -1 - port to c89 * Mon Oct 10 2011 Paul Howarth - 4.11-1 - Update to 4.11: - libeio didn't compile on !linux - Drop upstreamed preprocessor patch * Sun Oct 9 2011 Paul Howarth - 4.1-1 - Update to 4.1: - IO::AIO accessed uninitialised memory on unsuccessful stats - (libeio) added syncfs syscall wrapper - (libeio) set thread name on linux (ps -L/Hcx, top, gdb) - (libeio) support multiple independent working directories - Applied spelling corrections by Nicholas Bamber - Tune treescan #threads and #outstanding requests a bit - Reduce the number of file descriptors in use at any one time in treescan, to avoid running out of them (and using too much RAM) - Take advantage of working directory abstractions in aio_scandir and treescan - Reduce compiled size by ~10% by not inlining some key functionality - Added --progress switch to treescan - BR: perl(Carp) - Add patch to fix obvious preprocessor error * Mon Jul 18 2011 Paul Howarth - 4.0-2 - Rebuild for perl 5.14.1 in Rawhide * Mon Jul 18 2011 Paul Howarth - 4.0-1 - Update to 4.0: - INCOMPATIBLE CHANGE: fork is no longer supported (indeed, it never was); see FORK BEHAVIOUR in manpage for details - Passes testsuite on win32 now and may actually work - (libeio) fix a deadlock where a wakeup signal could be missed when a timeout occured at the same time - (libeio) added realpath - (libeio) added fallocate - (libeio) disabling sendfile on darwin unfortunately broke the emulation - (libeio) do not acquire any locks when forking - (libeio) use fewer time() syscalls when waiting for new requests - Fix dist tag for CentOS 6 and Scientific Linux * Thu Jun 30 2011 Paul Howarth - 3.93-1 - Update to 3.93: - Upstream included ecb.h * Wed Jun 29 2011 Paul Howarth - 3.92-1 - Update to 3.92: - (libeio) work around a Linux (and likely FreeBSD and other kernels) bug where sendfile would not transfer all the requested bytes on large transfers, using a heuristic - Buggy sendfile caused aio_move/copy to sometimes fail for big files (fortunately it checks that the whole file has been transferred...) - Use libecb for higher performance and higher portability - (libeio) disable sendfile on darwin, it's too broken - Disable fork tests on !linux, as only linux supports mixing pthread and fork in perl - Document the fact that fork doesn't work any more when using this module, on anything !GNU/Linux - Increase timeout in t/04_fork.t, as too many CPAN-tester setups run on a 0.1MHz cpu (or so) - Copy missing ecb.h from Coro-6.0 (CPAN RT#69186) * Fri May 27 2011 Paul Howarth - 3.90-1 - Update to 3.9: - libeio: fix memory corruption in aio_readdirx for the flags combination READDIR_STAT_ORDER | READDIR_DIRS_FIRST - Add lots of newer POSIX and GNU/Linux-specific open flags * Mon Mar 28 2011 Paul Howarth - 3.80-1 - Update to 3.8: - Use non-standard but maybe-working-on-BSD fork technique - Support a max_idle value of 0 - Support setting of idle timeout value (IO::AIO::idle_timeout) - Work around perl/rpm versioning incompatibilities - Nobody else likes macros for commands * Sat Jan 22 2011 Paul Howarth - 3.71-1 - Import from Fedora - Update to 3.71 * Fri Dec 17 2010 Marcela Maslanova - 3.65-2 - Rebuild to fix problems with vendorarch/lib (#661697) * Thu Jun 24 2010 Ruben Kerkhof - 3.65-1 - Upstream released new version * Sun May 02 2010 Marcela Maslanova - 3.17-5 - Mass rebuild with perl-5.12.0 * Mon Dec 7 2009 Stepan Kasal - 3.17-4 - Rebuild against perl 5.10.1 * Sat Jul 25 2009 Fedora Release Engineering - 3.17-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild * Thu Feb 26 2009 Fedora Release Engineering - 3.17-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild * Thu Dec 18 2008 Nicolas Chauvet - 3.17-1 - Update to 3.17 * Sun Nov 09 2008 Ruben Kerkhof - 3.16-1 - Upstream release new version * Mon Mar 03 2008 Tom "spot" Callaway - 2.51-2 - Rebuild for new perl (again) * Sat Feb 09 2008 Ruben Kerkhof - 2.51-1 - Sync with upstream * Thu Feb 7 2008 Tom "spot" Callaway - 2.33-2 - Rebuild for new perl * Sun May 13 2007 Ruben Kerkhof - 2.33-1 - Initial import