Blame SPECS/libssh2.spec

68eb44
# Fedora 10 onwards support noarch subpackages; by using one, we can
68eb44
# put the arch-independent docs in a common subpackage and save lots
68eb44
# of space on the mirrors
68eb44
%if 0%{?fedora} > 9 || 0%{?rhel} > 5
68eb44
%global noarch_docs_package 1
68eb44
%else
68eb44
%global noarch_docs_package 0
68eb44
%endif
68eb44
68eb44
# Define %%{__isa_bits} for old releases
68eb44
%{!?__isa_bits: %global __isa_bits %((echo '#include <bits/wordsize.h>'; echo __WORDSIZE) | cpp - | grep -Ex '32|64')}
68eb44
68eb44
Name:		libssh2
68eb44
Version:	1.4.3
72ae39
Release:	12%{?dist}.2
68eb44
Summary:	A library implementing the SSH2 protocol
68eb44
Group:		System Environment/Libraries
68eb44
License:	BSD
68eb44
URL:		http://www.libssh2.org/
68eb44
Source0:	http://libssh2.org/download/libssh2-%{version}.tar.gz
68eb44
Patch0:		libssh2-1.4.2-utf8.patch
68eb44
Patch1:		0001-sftp-seek-Don-t-flush-buffers-on-same-offset.patch
68eb44
Patch2:		0002-sftp-statvfs-Along-error-path-reset-the-correct-stat.patch
68eb44
Patch3:		0003-sftp-Add-support-for-fsync-OpenSSH-extension.patch
68eb44
Patch4:		0004-partially-revert-window_size-explicit-adjustments-on.patch
68eb44
Patch5:		0005-channel.c-fix-a-use-after-free.patch
68eb44
Patch6:		0006-_libssh2_channel_write-client-spins-on-write-when-wi.patch
68eb44
Patch7:		0007-window_size-redid-window-handling-for-flow-control-r.patch
68eb44
Patch8:		0008-_libssh2_channel_read-fix-data-drop-when-out-of-wind.patch
68eb44
Patch9:		0009-_libssh2_channel_read-Honour-window_size_initial.patch
68eb44
Patch10:	0010-Set-default-window-size-to-2MB.patch
68eb44
Patch11:	0011-channel_receive_window_adjust-store-windows-size-alw.patch
68eb44
Patch12:	0012-libssh2_agent_init-init-fd-to-LIBSSH2_INVALID_SOCKET.patch
68eb44
Patch13:	0013-kex-bail-out-on-rubbish-in-the-incoming-packet.patch
72ae39
72ae39
# fix integer overflow in transport read resulting in out of bounds write (CVE-2019-3855)
72ae39
Patch201:   0001-libssh2-1.8.0-CVE-2019-3855.patch
72ae39
72ae39
# fix integer overflow in keyboard interactive handling resulting in out of bounds write (CVE-2019-3856)
72ae39
Patch202:   0002-libssh2-1.8.0-CVE-2019-3856.patch
72ae39
72ae39
# fix integer overflow in SSH packet processing channel resulting in out of bounds write (CVE-2019-3857)
72ae39
Patch203:   0003-libssh2-1.8.0-CVE-2019-3857.patch
72ae39
72ae39
# fix integer overflow in keyboard interactive handling that allows out-of-bounds writes (CVE-2019-3863)
72ae39
Patch209:   0009-libssh2-1.8.0-CVE-2019-3863.patch
72ae39
68eb44
Patch14:	0014-libssh2-1.4.3-scp-remote-exec.patch
68eb44
Patch15:	0015-libssh2-1.4.3-debug-msgs.patch
68eb44
Patch101:	0101-libssh2-1.4.3-CVE-2016-0787.patch
68eb44
BuildRoot:	%{_tmppath}/%{name}-%{version}-%{release}-root-%(id -nu)
68eb44
BuildRequires:	openssl-devel
68eb44
BuildRequires:	zlib-devel
68eb44
BuildRequires:	/usr/bin/man
68eb44
68eb44
# Test suite requirements - we run the OpenSSH server and try to connect to it
68eb44
BuildRequires:	openssh-server
68eb44
# We use matchpathcon to get the correct SELinux context for the ssh server
68eb44
# initialization script so that it can transition correctly in an SELinux
68eb44
# environment; matchpathcon is only available from FC-4 and moved from the
68eb44
# libselinux to libselinux-utils package in F-10
68eb44
%if (0%{?fedora} >= 4 || 0%{?rhel} >= 5) && !(0%{?fedora} >=17 || 0%{?rhel} >=7)
68eb44
BuildRequires:	/usr/sbin/matchpathcon selinux-policy-targeted
68eb44
%endif
68eb44
68eb44
%description
68eb44
libssh2 is a library implementing the SSH2 protocol as defined by
68eb44
Internet Drafts: SECSH-TRANS(22), SECSH-USERAUTH(25),
68eb44
SECSH-CONNECTION(23), SECSH-ARCH(20), SECSH-FILEXFER(06)*,
68eb44
SECSH-DHGEX(04), and SECSH-NUMBERS(10).
68eb44
68eb44
%package	devel
68eb44
Summary:	Development files for libssh2
68eb44
Group:		Development/Libraries
68eb44
Requires:	%{name} = %{version}-%{release}
68eb44
Requires:	pkgconfig
68eb44
68eb44
%description	devel
68eb44
The libssh2-devel package contains libraries and header files for
68eb44
developing applications that use libssh2.
68eb44
68eb44
%package	docs
68eb44
Summary:	Documentation for libssh2
68eb44
Group:		Development/Libraries
68eb44
Requires:	%{name} = %{version}-%{release}
68eb44
%if %{noarch_docs_package}
68eb44
BuildArch:	noarch
68eb44
%endif
68eb44
68eb44
%description	docs
68eb44
The libssh2-docs package contains man pages and examples for
68eb44
developing applications that use libssh2.
68eb44
68eb44
%prep
68eb44
%setup -q
68eb44
68eb44
# Replace hard wired port number in the test suite to avoid collisions
68eb44
# between 32-bit and 64-bit builds running on a single build-host
68eb44
sed -i s/4711/47%{?__isa_bits}/ tests/ssh2.{c,sh}
68eb44
68eb44
# Make sure things are UTF-8...
68eb44
%patch0 -p1
68eb44
68eb44
# Three upstream patches required for qemu ssh block driver.
68eb44
%patch1 -p1
68eb44
%patch2 -p1
68eb44
%patch3 -p1
68eb44
68eb44
# http://thread.gmane.org/gmane.network.ssh.libssh2.devel/6428
68eb44
%patch4 -p1
68eb44
68eb44
# https://trac.libssh2.org/ticket/268
68eb44
%patch5 -p1
68eb44
68eb44
# Resolves: #1080459 - curl consumes too much memory during scp download
68eb44
%patch6 -p1
68eb44
%patch7 -p1
68eb44
%patch8 -p1
68eb44
%patch9 -p1
68eb44
%patch10 -p1
68eb44
%patch11 -p1
68eb44
68eb44
# prevent a not-connected agent from closing STDIN (#1147717)
68eb44
%patch12 -p1
68eb44
68eb44
# check length of data extracted from the SSH_MSG_KEXINIT packet (CVE-2015-1782)
68eb44
%patch13 -p1
68eb44
68eb44
# use secrects of the appropriate length in Diffie-Hellman (CVE-2016-0787)
68eb44
%patch101 -p1
68eb44
72ae39
# rhel-7.6.z patches
72ae39
%patch201 -p1
72ae39
%patch202 -p1
72ae39
%patch203 -p1
72ae39
%patch209 -p1
72ae39
68eb44
# scp: send valid commands for remote execution (#1489733)
68eb44
%patch14 -p1
68eb44
68eb44
# session: avoid printing misleading debug messages (#1503294)
68eb44
%patch15 -p1
68eb44
68eb44
# Make sshd transition appropriately if building in an SELinux environment
68eb44
%if !(0%{?fedora} >= 17 || 0%{?rhel} >= 7)
68eb44
chcon $(/usr/sbin/matchpathcon -n /etc/rc.d/init.d/sshd) tests/ssh2.sh || :
68eb44
chcon -R $(/usr/sbin/matchpathcon -n /etc) tests/etc || :
68eb44
chcon $(/usr/sbin/matchpathcon -n /etc/ssh/ssh_host_key) tests/etc/{host,user} || :
68eb44
%endif
68eb44
68eb44
%build
68eb44
%configure --disable-static --enable-shared
68eb44
make %{?_smp_mflags}
68eb44
68eb44
# Avoid polluting libssh2.pc with linker options (#947813)
68eb44
sed -i -e 's|[[:space:]]-Wl,[^[:space:]]*||' libssh2.pc
68eb44
68eb44
%install
68eb44
rm -rf %{buildroot}
68eb44
make install DESTDIR=%{buildroot} INSTALL="install -p"
68eb44
find %{buildroot} -name '*.la' -exec rm -f {} \;
68eb44
68eb44
# clean things up a bit for packaging
68eb44
make -C example clean
68eb44
rm -rf example/.deps
68eb44
find example/ -type f '(' -name '*.am' -o -name '*.in' ')' -exec rm -v {} \;
68eb44
68eb44
# avoid multilib conflict on libssh2-devel
68eb44
mv -v example example.%{_arch}
68eb44
68eb44
%check
68eb44
# The SSH test will fail if we don't have /dev/tty, as is the case in some
68eb44
# versions of mock (#672713)
68eb44
if [ ! -c /dev/tty ]; then
68eb44
	echo Skipping SSH test due to missing /dev/tty
68eb44
	echo "exit 0" > tests/ssh2.sh
68eb44
fi
68eb44
# Apparently it fails in the sparc and arm buildsystems too
68eb44
%ifarch %{sparc} %{arm}
68eb44
echo Skipping SSH test on sparc/arm
68eb44
echo "exit 0" > tests/ssh2.sh
68eb44
%endif
68eb44
make -C tests check
68eb44
68eb44
%clean
68eb44
rm -rf %{buildroot}
68eb44
68eb44
%post -p /sbin/ldconfig
68eb44
68eb44
%postun -p /sbin/ldconfig
68eb44
68eb44
%files
68eb44
%doc AUTHORS ChangeLog COPYING README NEWS
68eb44
%{_libdir}/libssh2.so.1
68eb44
%{_libdir}/libssh2.so.1.*
68eb44
68eb44
%files docs
68eb44
%doc HACKING
68eb44
%{_mandir}/man3/libssh2_*.3*
68eb44
68eb44
%files devel
68eb44
%doc example.%{_arch}/
68eb44
%{_includedir}/libssh2.h
68eb44
%{_includedir}/libssh2_publickey.h
68eb44
%{_includedir}/libssh2_sftp.h
68eb44
%{_libdir}/libssh2.so
68eb44
%{_libdir}/pkgconfig/libssh2.pc
68eb44
68eb44
%changelog
72ae39
* Wed Mar 20 2019 Kamil Dudka <kdudka@redhat.com> 1.4.3-12.el7_6.2
72ae39
- sanitize public header file (detected by rpmdiff)
72ae39
72ae39
* Tue Mar 19 2019 Kamil Dudka <kdudka@redhat.com> 1.4.3-12.el7_6.1
72ae39
- fix integer overflow in keyboard interactive handling that allows out-of-bounds writes (CVE-2019-3863)
72ae39
- fix integer overflow in SSH packet processing channel resulting in out of bounds write (CVE-2019-3857)
72ae39
- fix integer overflow in keyboard interactive handling resulting in out of bounds write (CVE-2019-3856)
72ae39
- fix integer overflow in transport read resulting in out of bounds write (CVE-2019-3855)
72ae39
68eb44
* Tue Sep 26 2017 Kamil Dudka <kdudka@redhat.com> 1.4.3-12
68eb44
- session: avoid printing misleading debug messages (#1503294)
68eb44
- scp: send valid commands for remote execution (#1489733)
68eb44
68eb44
* Fri Feb 19 2016 Kamil Dudka <kdudka@redhat.com> 1.4.3-11
68eb44
- use secrects of the appropriate length in Diffie-Hellman (CVE-2016-0787)
68eb44
68eb44
* Mon Jun 01 2015 Kamil Dudka <kdudka@redhat.com> 1.4.3-10
68eb44
- check length of data extracted from the SSH_MSG_KEXINIT packet (CVE-2015-1782)
68eb44
68eb44
* Tue May 05 2015 Kamil Dudka <kdudka@redhat.com> 1.4.3-9
68eb44
- curl consumes too much memory during scp download (#1080459)
68eb44
- prevent a not-connected agent from closing STDIN (#1147717)
68eb44
68eb44
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 1.4.3-8
68eb44
- Mass rebuild 2014-01-24
68eb44
68eb44
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 1.4.3-7
68eb44
- Mass rebuild 2013-12-27
68eb44
68eb44
* Wed Aug 14 2013 Kamil Dudka <kdudka@redhat.com> 1.4.3-6
68eb44
- fix very slow sftp upload to localhost
68eb44
- fix a use after free in channel.c
68eb44
68eb44
* Tue Apr  9 2013 Richard W.M. Jones <rjones@redhat.com> 1.4.3-5
68eb44
- Add three patches from upstream git required for qemu ssh block driver.
68eb44
68eb44
* Wed Apr  3 2013 Paul Howarth <paul@city-fan.org> 1.4.3-4
68eb44
- Avoid polluting libssh2.pc with linker options (#947813)
68eb44
68eb44
* Tue Mar 26 2013 Kamil Dudka <kdudka@redhat.com> 1.4.3-3
68eb44
- Avoid collisions between 32-bit and 64-bit builds running on a single build
68eb44
  host
68eb44
68eb44
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.3-2
68eb44
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
68eb44
68eb44
* Wed Nov 28 2012 Paul Howarth <paul@city-fan.org> 1.4.3-1
68eb44
- Update to 1.4.3
68eb44
  - compression: add support for zlib@openssh.com
68eb44
  - sftp_read: return error if a too large package arrives
68eb44
  - libssh2_hostkey_hash.3: update the description of return value
68eb44
  - Fixed MSVC NMakefile
68eb44
  - examples: use stderr for messages, stdout for data
68eb44
  - openssl: do not leak memory when handling errors
68eb44
  - improved handling of disabled MD5 algorithm in OpenSSL
68eb44
  - known_hosts: Fail when parsing unknown keys in known_hosts file
68eb44
  - configure: gcrypt doesn't come with pkg-config support
68eb44
  - session_free: wrong variable used for keeping state
68eb44
  - libssh2_userauth_publickey_fromfile_ex.3: mention publickey == NULL
68eb44
  - comp_method_zlib_decomp: handle Z_BUF_ERROR when inflating
68eb44
- Drop upstreamed patches
68eb44
68eb44
* Wed Nov 07 2012 Kamil Dudka <kdudka@redhat.com> 1.4.2-4
68eb44
- examples: use stderr for messages, stdout for data (upstream commit b31e35ab)
68eb44
- Update libssh2_hostkey_hash(3) man page (upstream commit fe8f3deb)
68eb44
68eb44
* Wed Sep 26 2012 Kamil Dudka <kdudka@redhat.com> 1.4.2-3
68eb44
- Fix basic functionality of libssh2 in FIPS mode
68eb44
- Skip SELinux-related quirks on recent distros to prevent a test-suite failure
68eb44
68eb44
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.2-2
68eb44
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
68eb44
68eb44
* Sun May 20 2012 Paul Howarth <paul@city-fan.org> 1.4.2-1
68eb44
- Update to 1.4.2
68eb44
  - Return LIBSSH2_ERROR_SOCKET_DISCONNECT on EOF when reading banner
68eb44
  - userauth.c: fread() from public key file to correctly detect any errors
68eb44
  - configure.ac: add option to disable build of the example applications
68eb44
  - added 'Requires.private:' line to libssh2.pc
68eb44
  - SFTP: filter off incoming "zombie" responses
68eb44
  - gettimeofday: no need for a replacement under cygwin
68eb44
  - SSH_MSG_CHANNEL_REQUEST: default to want_reply
68eb44
  - win32/libssh2_config.h: remove hardcoded #define LIBSSH2_HAVE_ZLIB
68eb44
68eb44
* Fri Apr 27 2012 Paul Howarth <paul@city-fan.org> 1.4.1-2
68eb44
- Fix multi-arch conflict again (#816969)
68eb44
68eb44
* Thu Apr  5 2012 Paul Howarth <paul@city-fan.org> 1.4.1-1
68eb44
- Update to 1.4.1
68eb44
  - Build error with gcrypt backend
68eb44
  - Always do "forced" window updates to avoid corner case stalls
68eb44
  - aes: the init function fails when OpenSSL has AES support
68eb44
  - transport_send: finish in-progress key exchange before sending data
68eb44
  - channel_write: acknowledge transport errors
68eb44
  - examples/x11.c: make sure sizeof passed to read operation is correct
68eb44
  - examples/x11.c: fix suspicious sizeof usage
68eb44
  - sftp_packet_add: verify the packet before accepting it
68eb44
  - SFTP: preserve the original error code more
68eb44
  - sftp_packet_read: adjust window size as necessary
68eb44
  - Use safer snprintf rather then sprintf in several places
68eb44
  - Define and use LIBSSH2_INVALID_SOCKET instead of INVALID_SOCKET
68eb44
  - sftp_write: cannot return acked data *and* EAGAIN
68eb44
  - sftp_read: avoid data *and* EAGAIN
68eb44
  - libssh2.h: add missing prototype for libssh2_session_banner_set()
68eb44
- Drop upstream patches now included in release tarball
68eb44
68eb44
* Mon Mar 19 2012 Kamil Dudka <kdudka@redhat.com> 1.4.0-4
68eb44
- Don't ignore transport errors when writing to channel (#804150)
68eb44
68eb44
* Sun Mar 18 2012 Paul Howarth <paul@city-fan.org> 1.4.0-3
68eb44
- Don't try to use openssl's AES-CTR functions
68eb44
  (http://www.libssh2.org/mail/libssh2-devel-archive-2012-03/0111.shtml)
68eb44
68eb44
* Fri Mar 16 2012 Paul Howarth <paul@city-fan.org> 1.4.0-2
68eb44
- fix libssh2 failing key re-exchange when write channel is saturated (#804156)
68eb44
- drop %%defattr, redundant since rpm 4.4
68eb44
68eb44
* Wed Feb  1 2012 Paul Howarth <paul@city-fan.org> 1.4.0-1
68eb44
- update to 1.4.0
68eb44
  - added libssh2_session_supported_algs()
68eb44
  - added libssh2_session_banner_get()
68eb44
  - added libssh2_sftp_get_channel()
68eb44
  - libssh2.h: bump the default window size to 256K
68eb44
  - sftp-seek: clear EOF flag
68eb44
  - userauth: provide more informations if ssh pub key extraction fails
68eb44
  - ssh2_exec: skip error outputs for EAGAIN
68eb44
  - LIBSSH2_SFTP_PACKET_MAXLEN: increase to 80000
68eb44
  - knownhost_check(): don't dereference ext if NULL is passed
68eb44
  - knownhost_add: avoid dereferencing uninitialized memory on error path
68eb44
  - OpenSSL EVP: fix threaded use of structs
68eb44
  - _libssh2_channel_read: react on errors from receive_window_adjust
68eb44
  - sftp_read: cap the read ahead maximum amount
68eb44
  - _libssh2_channel_read: fix non-blocking window adjusting 
68eb44
- add upstream patch fixing undefined function reference in libgcrypt backend
68eb44
- BR: /usr/bin/man for test suite
68eb44
68eb44
* Sun Jan 15 2012 Peter Robinson <pbrobinson@fedoraproject.org> 1.3.0-4
68eb44
- skip the ssh test on ARM too
68eb44
68eb44
* Fri Jan 13 2012 Paul Howarth <paul@city-fan.org> 1.3.0-3
68eb44
- make docs package noarch where possible
68eb44
- example includes arch-specific bits, so move to devel package
68eb44
- use patch rather than scripted iconv to fix character encoding
68eb44
- don't make assumptions about SELinux context types used for the ssh server
68eb44
  in the test suite
68eb44
- skip the ssh test if /dev/tty isn't present, as in some versions of mock
68eb44
- make the %%files list more explicit
68eb44
- use tabs for indentation
68eb44
68eb44
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> 1.3.0-2
68eb44
- rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
68eb44
68eb44
* Thu Sep 08 2011 Kamil Dudka <kdudka@redhat.com> 1.3.0-1
68eb44
- update to 1.3.0
68eb44
68eb44
* Sat Jun 25 2011 Dennis Gilmore <dennis@ausil.us> 1.2.7-2
68eb44
- sshd/loopback test fails in the sparc buildsystem
68eb44
68eb44
* Tue Oct 12 2010 Kamil Dudka <kdudka@redhat.com> 1.2.7-1
68eb44
- update to 1.2.7 (#632916)
68eb44
- avoid multilib conflict on libssh2-docs
68eb44
- avoid build failure in mock with SELinux in the enforcing mode (#558964)
68eb44
68eb44
* Fri Mar 12 2010 Chris Weyl <cweyl@alumni.drew.edu> 1.2.4-1
68eb44
- update to 1.2.4
68eb44
- drop old patch0
68eb44
- be more aggressive about keeping .deps from intruding into -docs
68eb44
68eb44
* Wed Jan 20 2010 Chris Weyl <cweyl@alumni.drew.edu> 1.2.2-5
68eb44
- pkgconfig dep should be with -devel, not -docs
68eb44
68eb44
* Mon Jan 18 2010 Chris Weyl <cweyl@alumni.drew.edu> 1.2.2-4
68eb44
- enable tests; conditionalize sshd test, which fails with a funky SElinux
68eb44
  error when run locally
68eb44
68eb44
* Mon Jan 18 2010 Chris Weyl <cweyl@alumni.drew.edu> 1.2.2-3
68eb44
- patch w/1aba38cd7d2658146675ce1737e5090f879f306; not yet in a GA release
68eb44
68eb44
* Thu Jan 14 2010 Chris Weyl <cweyl@alumni.drew.edu> 1.2.2-2
68eb44
- correct bad file entry under -devel
68eb44
68eb44
* Thu Jan 14 2010 Chris Weyl <cweyl@alumni.drew.edu> 1.2.2-1
68eb44
- update to 1.2.2
68eb44
- drop old patch now in upstream
68eb44
- add new pkgconfig file to -devel
68eb44
68eb44
* Mon Sep 21 2009 Chris Weyl <cweyl@alumni.drew.edu> 1.2-2
68eb44
- patch based on 683aa0f6b52fb1014873c961709102b5006372fc
68eb44
- disable tests (*sigh*)
68eb44
68eb44
* Tue Aug 25 2009 Chris Weyl <cweyl@alumni.drew.edu> 1.2-1
68eb44
- update to 1.2
68eb44
68eb44
* Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 1.0-4
68eb44
- rebuilt with new openssl
68eb44
68eb44
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0-3
68eb44
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
68eb44
68eb44
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0-2
68eb44
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
68eb44
68eb44
* Mon Feb 16 2009 Chris Weyl <cweyl@alumni.drew.edu> 1.0-1
68eb44
- update to 1.0
68eb44
68eb44
* Sat Jan 17 2009 Tomas Mraz <tmraz@redhat.com> - 0.18-8
68eb44
- rebuild with new openssl
68eb44
68eb44
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.18-7
68eb44
- Autorebuild for GCC 4.3
68eb44
68eb44
* Wed Dec 05 2007 Chris Weyl <cweyl@alumni.drew.edu> 0.18-6
68eb44
- rebuild for new openssl...
68eb44
68eb44
* Tue Nov 27 2007 Chris Weyl <cweyl@alumni.drew.edu> 0.18-5
68eb44
- bump
68eb44
68eb44
* Tue Nov 27 2007 Chris Weyl <cweyl@alumni.drew.edu> 0.18-4
68eb44
- add INSTALL arg to make install vs env. var
68eb44
68eb44
* Mon Nov 26 2007 Chris Weyl <cweyl@alumni.drew.edu> 0.18-3
68eb44
- run tests; don't package test
68eb44
68eb44
* Sun Nov 18 2007 Chris Weyl <cweyl@alumni.drew.edu> 0.18-2
68eb44
- split docs into -docs (they seemed... large.)
68eb44
68eb44
* Tue Nov 13 2007 Chris Weyl <cweyl@alumni.drew.edu> 0.18-1
68eb44
- update to 0.18
68eb44
68eb44
* Sun Oct 14 2007 Chris Weyl <cweyl@alumni.drew.edu> 0.17-1
68eb44
- update to 0.17
68eb44
- many spec file changes
68eb44
68eb44
* Wed May 23 2007 Sindre Pedersen Bjørdal <foolish[AT]guezz.net> - 0.15-0.2.20070506
68eb44
- Fix release tag
68eb44
- Move manpages to -devel package
68eb44
- Add Examples dir to -devel package
68eb44
68eb44
* Sun May 06 2007 Sindre Pedersen Bjørdal <foolish[AT]guezz.net> - 0.15-0.20070506.1
68eb44
- Initial build