rpms/pth/FC-3 pth-2.0.4.tar.gz.sig, NONE, 1.1 .cvsignore, 1.3, 1.4 pth.spec, 1.6, 1.7 sources, 1.3, 1.4 pth-2.0.3.tar.gz.sig, 1.1, NONE

Michael Schwendt (mschwendt) fedora-extras-commits at redhat.com
Sun Feb 27 19:57:20 UTC 2005


Author: mschwendt

Update of /cvs/extras/rpms/pth/FC-3
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv29171/FC-3

Modified Files:
	.cvsignore pth.spec sources 
Added Files:
	pth-2.0.4.tar.gz.sig 
Removed Files:
	pth-2.0.3.tar.gz.sig 
Log Message:
auto-import pth-2.0.4-1 on branch FC-3 from pth-2.0.4-1.src.rpm


--- NEW FILE pth-2.0.4.tar.gz.sig ---
ˆ?

Index: .cvsignore
===================================================================
RCS file: /cvs/extras/rpms/pth/FC-3/.cvsignore,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- .cvsignore	13 Feb 2005 04:54:44 -0000	1.3
+++ .cvsignore	27 Feb 2005 19:57:16 -0000	1.4
@@ -1 +1 @@
-pth-2.0.3.tar.gz
+pth-2.0.4.tar.gz


Index: pth.spec
===================================================================
RCS file: /cvs/extras/rpms/pth/FC-3/pth.spec,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- pth.spec	13 Feb 2005 04:54:44 -0000	1.6
+++ pth.spec	27 Feb 2005 19:57:16 -0000	1.7
@@ -1,6 +1,6 @@
 Summary:        GNU Pth - The GNU Portable Threads
 Name:           pth
-Version:        2.0.3
+Version:        2.0.4
 Release:        1
 Epoch:          0
 License:        LGPL
@@ -75,6 +75,10 @@
 
 
 %changelog
+* Thu Feb 24 2005 Michael Schwendt <mschwendt[AT]users.sf.net> - 0:2.0.4-1
+- Update to 2.0.4.
+- Remove ancient changelog entries which even pre-date Fedora.
+
 * Tue Dec 14 2004 Michael Schwendt <mschwendt[AT]users.sf.net> - 0:2.0.3-1
 - Update to 2.0.3, minor and common spec adjustments + LGPL, %%check,
   use URLs for official GNU companion sites.
@@ -94,89 +98,3 @@
 - First Fedora release, based on Ryan Weaver's work.
 - Move (most of) docs to main package.
 
-* Mon Jan 28 2002 Ryan Weaver <ryanw at falsehope.com>
-  [pth-1.4.1-1]
-- Internally make sure an invalid file-descriptor (integer not
-  between 0 and (FD_SETSIZE-1) does not lead to any segfaults or
-  other undefined behaviour. Instead an error is returned and errno
-  is set to EBADF, similar to what the OS functions do. Especially
-  pth_poll() now return with this error (instead of skipping the fd)
-  if an fd in the "struct pollfd" is invalid.
-- Correctly support PTH_FDMODE_NONBLOCK in pth_connect and pth_accept.
-- Fixed typos in manual page.
-- For portability reasons changed definition of PTH_EXT_SFIO to 0/1
-  instead of FALSE/TRUE because some external definitions use a
-  casted value and hence make trouble on plain #if constructs.
-- Fixed return value (number of occurred events) of pth_wait().
-- Replaced thread-unsafe usage of a static struct iovec in
-  pth_writev_ev() with a thread-safe stack/heap-based solution.
-- Replaced antiquated PTH_FLAG_NOJOIN references with the correct
-  PTH_ATTR_JOINABLE references in the manual page.
-- Fixed a (not very subtle) bug in pth_writev_ev() that screwed up
-  output if a partial write happened.
-- Fixed static initializers PTH_BARRIER_INIT and PTH_COND_INIT.
-- Typo fixes in pth.pod
-- Upgraded to GNU shtool, version 1.5.4.
-- Fixed "make striptease": pth_string.c was not included and some
-  commands which were removed at all (and this way causes syntax
-  errors) will be now correctly commented out with ":" commands.
-- Fixed pth.pod: a closing angle bracket was missing, leading to
-  incorrect POD to XXXX formatting.
-
-* Mon Mar 26 2001 Ryan Weaver <ryanw at falsehope.com>
-  [pth-1.4.0-1]
-- Added PTHREAD_PRIO_XXXX definitions to pthread.h for
-  conformance to the POSIX/SUSv2 Pthread API.
-- Implemented the pthread_{set,get}concurrency() API parts of
-  POSIX/SUSv2, although internally we are (allowed to be) free to not
-  do anything based on the requested level.
-- Adjusted all pthread_attr_getXXXX() functions to use a "const
-  pthread_attr_t *" as the first argument instead of "pthread_attr_t
-  *" to fully-conform to POSIX/SUSv2.
-- Added ENOSYS-stubs for pthread_attr_{set,get}guardsize()
-  to the Pthread API to be more complete with POSIX/SUSv2 specs.
-- Added still missing soft system call mapping to Pth and Pthread
-  APIs for functions recv(2), send(2), recvfrom(2) and sendto(2).
-- Upgraded to GNU shtool 1.5.2
-- Fixed an even-manager bug which causes a thread that calls
-  pth_nap() to never woke up if the only elapsed event was a timer.
-- Added `#define _BITS_SIGTHREAD_H' to pthread.h to avoid inclusion
-  of bits/sigthread.h (from signal.h) on Linux running glibc6 2.2.
-- Added support to Makefile.in for DESTDIR variable. This allows
-  easier rolling of installation tarballs (for instance from within
-  RPM or similar facilities) by using "make install DESTDIR=/tmp/pth".
-- Implemented a pth_system(3) function which is a thread-aware
-  clone of the POSIX system(2) function.
-- Fixed typos in pth.pod: "fd" -> "s" for pth_connect/pth_accept.
-- Make --disable-shared the default under Solaris-2.[78]/x86, because
-  it is known to segfault sporadically if Pth is built as a DSO.  As
-  traces showed, it is not a Pth problem, but it looks like a problem with
-  the dynamic linker on Solaris/x86.  The same Solaris versions on SPARC
-  don't have this problem.
-- Updated copyright messages to cover new year 2001.
-- Fixed quoting in configure.in
-- Let pth_sleep(3) and pth_usleep(3) immediately return
-  if an argument of zero is given.
-- Fixed pthread.pod: the newer pod2man versions seems to dislike
-  embedded comments, so I moved them to the top of the file.
-- Changed CVS URL in HACKING document.
-- Mention http://www.mail-archive.com/pth-users@gnu.org/ in pth.pod
-  and SUPPORT document.
-
-* Sun Jul 30 2000 Ryan Weaver <ryanw at infohwy.com>
-  [pth-1.3.7-1]
-- Upgraded to GNU shtool 1.5.1. This fixes especially the
-  compilation problems under Solaris which were caused by a too
-  unportable `shtool version' command from 1.5.0.
-- Fixed (unused) pth_time_mul() function: operator & replaced by %
-
-* Tue Jul  4 2000 Ryan Weaver <ryanw at infohwy.com>
-  [pth-1.3.6-1]
-- Upgraded to GNU Shtool 1.5.0
-- Added OS/390 support to config.sub.
-- Upgraded rse-pmt.ps paper to latest version as it was
-  published on USENIX 2000.
-- Upgraded to GNU libtool 1.3.5
-- Allow for convinience reasons pth_usleep() to accept also
-  arguments greater than 1000000.
-


Index: sources
===================================================================
RCS file: /cvs/extras/rpms/pth/FC-3/sources,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- sources	13 Feb 2005 04:54:44 -0000	1.3
+++ sources	27 Feb 2005 19:57:16 -0000	1.4
@@ -1 +1 @@
-86f266c061d5bf6034e02065214ff1ff  pth-2.0.3.tar.gz
+f810e0ca2cd32e88efa29f9237f374d5  pth-2.0.4.tar.gz


--- pth-2.0.3.tar.gz.sig DELETED ---




More information about the fedora-extras-commits mailing list