You can subscribe to this list here.
| 2000 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(9) |
Oct
(124) |
Nov
(120) |
Dec
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2001 |
Jan
(6) |
Feb
(34) |
Mar
(49) |
Apr
(81) |
May
(25) |
Jun
(3) |
Jul
(1) |
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
| 2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(37) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Frank V. C. <fr...@us...> - 2001-02-25 15:18:41
|
Update of /cvsroot/corelinux/clfw/clfw
In directory usw-pr-cvs1:/tmp/cvs-serv19666/clfw
Modified Files:
Array.hpp
Log Message:
233863 Completing Array
Index: Array.hpp
===================================================================
RCS file: /cvsroot/corelinux/clfw/clfw/Array.hpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** Array.hpp 2001/02/24 16:28:07 1.2
--- Array.hpp 2001/02/25 15:19:51 1.3
***************
*** 115,136 ****
throw (NullPointerException,BoundsException);
! /// Deep copy (replace)
ArrayRef operator=( ArrayCref );
! /// Deep copy (replace)
ArrayRef operator=( ArrayCptr )
throw (NullPointerException);
! /// Deep copy (append)
ArrayRef operator+=( ArrayCref )
throw (BoundsException);
! /// Deep copy (append)
ArrayRef operator+=( ArrayCptr )
! throw (BoundsException);
/// Add to end (putBack)
--- 115,136 ----
throw (NullPointerException,BoundsException);
! /// Copy (replace)
ArrayRef operator=( ArrayCref );
! /// Copy (replace)
ArrayRef operator=( ArrayCptr )
throw (NullPointerException);
! /// Copy (append)
ArrayRef operator+=( ArrayCref )
throw (BoundsException);
! /// Copy (append)
ArrayRef operator+=( ArrayCptr )
! throw (NullPointerException, BoundsException);
/// Add to end (putBack)
***************
*** 180,186 ****
// Implementation methods
//
! /// Adjusts occupancy
void increaseOccupancy( Count additions = 1 );
void decreaseOccupancy( Count removals = 1 );
--- 180,193 ----
// Implementation methods
//
! /// Retrieve the array representation
!
! FrameworkEntity **getArray( void ) const;
+ /// Adjusts occupancy up
+
void increaseOccupancy( Count additions = 1 );
+
+ /// Adjusts occupancy down
+
void decreaseOccupancy( Count removals = 1 );
***************
*** 200,203 ****
--- 207,221 ----
void shiftForRemove( Index position, Count increment=1 );
+
+ /// Array copy into
+
+ void copyOverFromArray( Index, FrameworkEntity **, CountCref );
+
+
+ private:
+
+ /// Zeros out state (used by destructor and assignment)
+
+ void resetState( void );
|
|
From: Frank V. C. <fr...@us...> - 2001-02-25 15:18:41
|
Update of /cvsroot/corelinux/clfw/src/libs/clfw
In directory usw-pr-cvs1:/tmp/cvs-serv19666/src/libs/clfw
Modified Files:
Array.cpp
Log Message:
233863 Completing Array
Index: Array.cpp
===================================================================
RCS file: /cvsroot/corelinux/clfw/src/libs/clfw/Array.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** Array.cpp 2001/02/24 16:28:07 1.2
--- Array.cpp 2001/02/25 15:19:52 1.3
***************
*** 65,68 ****
--- 65,87 ----
theRemaining( 0 )
{
+ //
+ // Using the information from the reference
+ // construct our initial state
+ //
+
+ theSizeRestriction.setValue
+ (
+ anArrayRef.getSizeRestrictionAsReference().getValue()
+ );
+
+ this->increaseArraySize( anArrayRef.size() );
+
+ //
+ // Now copy the data from the reference to our
+ // internal array
+ //
+
+ this->copyOverFromArray( 0, anArrayRef.getArray(), anArrayRef.size() );
+ this->increaseOccupancy( anArrayRef.size() );
}
***************
*** 73,77 ****
Array::~Array( void )
{
! ; // do nothing
}
--- 92,96 ----
Array::~Array( void )
{
! resetState();
}
***************
*** 117,120 ****
--- 136,143 ----
}
+ //
+ // Get indexed entity
+ //
+
FrameworkEntityPtr Array::getElementAt( Index offset ) const
throw (BoundsException)
***************
*** 181,184 ****
--- 204,211 ----
}
+ //
+ // The main mover indexed insertions
+ //
+
void Array::putAt( Index offset, FrameworkEntityPtr anEntity )
throw (NullPointerException,BoundsException)
***************
*** 202,205 ****
--- 229,236 ----
}
+ //
+ // Index removal of entity
+ //
+
FrameworkEntityPtr Array::removeAt( Index offset )
throw (BoundsException)
***************
*** 242,251 ****
ArrayRef Array::operator=
(
! ArrayCref aArray
)
{
! if( this != &aArray )
{
GUARD;
}
else
--- 273,304 ----
ArrayRef Array::operator=
(
! ArrayCref anArray
)
{
! if( this != &anArray )
{
GUARD;
+ this->resetState();
+
+ //
+ // Using the information from the reference
+ // construct our initial state
+ //
+
+ theSizeRestriction.setValue
+ (
+ anArray.getSizeRestrictionAsReference().getValue()
+ );
+
+ this->increaseArraySize( anArray.size() );
+
+ //
+ // Now copy the data from the reference to our
+ // internal array
+ //
+
+ this->copyOverFromArray( 0, anArray.getArray(), anArray.size() );
+ this->increaseOccupancy( anArray.size() );
+
}
else
***************
*** 274,278 ****
if( this != aArray )
{
! GUARD;
}
else
--- 327,331 ----
if( this != aArray )
{
! (*this) = *aArray;
}
else
***************
*** 285,288 ****
--- 338,403 ----
}
+ ArrayRef Array::operator+=( ArrayCref anArray )
+ throw (BoundsException)
+ {
+ if( this != &anArray )
+ {
+ if( checkBoundsForAdd(anArray.size()) == false )
+ {
+ throw BoundsException( LOCATION );
+ }
+ else
+ {
+ GUARD;
+
+ //
+ // Using the information from the reference
+ // adjust and append
+ //
+
+ CountCref aSize( anArray.size() );
+
+ this->increaseArraySize( aSize );
+
+ //
+ // Now append the data from the reference
+ //
+
+ this->copyOverFromArray( this->size(),anArray.getArray(), aSize );
+ this->increaseOccupancy( aSize );
+ }
+ }
+ else
+ {
+ ; // do nothing
+ }
+
+ return ( *this );
+ }
+
+ /// Copy (append)
+
+ ArrayRef Array::operator+=( ArrayCptr anArrayPtr )
+ throw (NullPointerException,BoundsException)
+ {
+ if( anArrayPtr == NULLPTR )
+ {
+ throw NullPointerException( LOCATION );
+ }
+ else
+ {
+ (*this) += (*anArrayPtr);
+ }
+ return ( *this );
+ }
+
+
+ // Expose list
+
+ FrameworkEntity **Array::getArray( void ) const
+ {
+ return theEntities;
+ }
+
// Consume
***************
*** 311,315 ****
if( theRemaining == 0 || increment > theRemaining )
{
! UnsignedInteger aR = getSizeRestriction();
if( aR.getValue() != 0 &&
--- 426,430 ----
if( theRemaining == 0 || increment > theRemaining )
{
! UnsignedIntegerCref aR = getSizeRestrictionAsReference();
if( aR.getValue() != 0 &&
***************
*** 342,346 ****
{
Count growth = (theCount+increment)+theCount/2;
! FrameworkEntityPtr *newArray = new FrameworkEntityPtr[growth];
for( Count x=0; x<theCount ; ++x )
--- 457,462 ----
{
Count growth = (theCount+increment)+theCount/2;
! FrameworkEntity **newArray =
! (FrameworkEntity **) new FrameworkEntityPtr[growth];
for( Count x=0; x<theCount ; ++x )
***************
*** 376,381 ****
memmove
(
! &theEntities[position],
! &theEntities[position+increment],
sizeMove
);
--- 492,497 ----
memmove
(
! &theEntities[position+increment],
! &theEntities[position],
sizeMove
);
***************
*** 391,400 ****
memmove
(
! &theEntities[position+increment],
! &theEntities[position],
sizeMove
);
}
! //! version for the Array MetaType
const DwordCref version(1);
--- 507,557 ----
memmove
(
! &theEntities[position],
! &theEntities[position+increment],
sizeMove
);
+ }
+
+ //
+ // Copy blocks into starting at index
+ //
+
+ void Array::copyOverFromArray
+ (
+ Index startPos,
+ FrameworkEntity **aSrc,
+ CountCref maxCount
+ )
+ {
+ size_t sizeCopy = maxCount * sizeof( FrameworkEntityPtr );
+
+ memcpy
+ (
+ &theEntities[startPos],
+ &aSrc[0],
+ sizeCopy
+ );
+ }
+
+ // Helper
+
+ void Array::resetState( void )
+ {
+ if( theEntities != NULLPTR )
+ {
+ delete [] theEntities;
+ theEntities = NULLPTR;
+ }
+ else
+ {
+ ; // do nothing
+ }
+
+ theCount = 0;
+ theRemaining = 0;
+ theSizeRestriction.setValue(0);
}
!
! // version for the Array MetaType
const DwordCref version(1);
|
|
From: Frank V. C. <fr...@us...> - 2001-02-25 15:18:41
|
Update of /cvsroot/corelinux/clfw/src/testdrivers/exf1
In directory usw-pr-cvs1:/tmp/cvs-serv19666/src/testdrivers/exf1
Modified Files:
examp1.cpp
Log Message:
233863 Completing Array
Index: examp1.cpp
===================================================================
RCS file: /cvsroot/corelinux/clfw/src/testdrivers/exf1/examp1.cpp,v
retrieving revision 1.27
retrieving revision 1.28
diff -C2 -r1.27 -r1.28
*** examp1.cpp 2001/02/24 16:28:07 1.27
--- examp1.cpp 2001/02/25 15:19:52 1.28
***************
*** 321,325 ****
{
UserTypePtr aType( new UserType );
- UserTypePtr aType1( new UserType );
UniversalIdentifier aId;
UnsignedShortIntegerPtr aValue( new UnsignedShortInteger(8) );
--- 321,324 ----
***************
*** 329,337 ****
dumpTypeInformation( aType );
-
- Array myArray;
- myArray = aType;
-
- myArray.putFront( aType1 );
//
--- 328,331 ----
|
|
From: Frank V. C. <fr...@us...> - 2001-02-24 16:26:59
|
Update of /cvsroot/corelinux/clfw/src/libs/clfw
In directory usw-pr-cvs1:/tmp/cvs-serv4932/src/libs/clfw
Modified Files:
Array.cpp
Log Message:
133863 Added behavior (partial) to Array
Index: Array.cpp
===================================================================
RCS file: /cvsroot/corelinux/clfw/src/libs/clfw/Array.cpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** Array.cpp 2001/02/24 04:32:31 1.1
--- Array.cpp 2001/02/24 16:28:07 1.2
***************
*** 27,30 ****
--- 27,36 ----
#endif
+ #if !defined(__METASPACE_HPP)
+ #include <MetaSpace.hpp>
+ #endif
+
+ #include <cstring>
+
namespace corelinux
{
***************
*** 37,42 ****
:
Collection(),
theSizeRestriction( 0 ),
! theEntites( NULLPTR ),
theCount( 0 ),
theRemaining( 0 )
--- 43,49 ----
:
Collection(),
+ Synchronized(),
theSizeRestriction( 0 ),
! theEntities( NULLPTR ),
theCount( 0 ),
theRemaining( 0 )
***************
*** 52,57 ****
:
Collection(),
theSizeRestriction( 0 ),
! theEntites( NULLPTR ),
theCount( 0 ),
theRemaining( 0 )
--- 59,65 ----
:
Collection(),
+ Synchronized(),
theSizeRestriction( 0 ),
! theEntities( NULLPTR ),
theCount( 0 ),
theRemaining( 0 )
***************
*** 76,87 ****
ArrayCref aArray
) const
{
! return Collection::operator ==(aArray);
}
//
! // Assignment operator
//
ArrayRef Array::operator=
(
--- 84,243 ----
ArrayCref aArray
) const
+ {
+ return ( this == &aArray );
+ }
+
+ //
+ // Return the number of elements in the array
+ //
+
+ CountCref Array::size( void ) const
{
! return theCount;
}
//
! // Get indexed entity methods
//
+ FrameworkEntityPtr Array::operator []( Index offset ) const
+ throw (BoundsException)
+ {
+ GUARD;
+ if( offset >= theCount )
+ {
+ throw BoundsException( LOCATION );
+ }
+ else
+ {
+ ; // continue
+ }
+
+ return theEntities[offset];
+ }
+
+ FrameworkEntityPtr Array::getElementAt( Index offset ) const
+ throw (BoundsException)
+ {
+ return (*this)[offset];
+ }
+
+ //
+ // Get indexed entity class
+ //
+
+ MetaClassPtr Array::getElementClassAt( Index offset ) const
+ throw (BoundsException)
+ {
+ FrameworkEntityPtr aEP( (*this)[offset] );
+ return MetaSpace::getClassForType( aEP->getType() );
+ }
+
+ //
+ // Add an entity to the array
+ //
+
+ ArrayRef Array::operator=( FrameworkEntityPtr anEntity )
+ throw (NullPointerException,BoundsException)
+ {
+ if( anEntity == NULLPTR )
+ {
+ throw NullPointerException( LOCATION );
+ }
+ else if( this->checkBoundsForAdd() == false )
+ {
+ throw BoundsException( LOCATION );
+ }
+ else
+ {
+ GUARD;
+ this->increaseArraySize();
+ theEntities[theCount] = anEntity;
+ this->increaseOccupancy();
+ }
+ return ( *this );
+ }
+
+ //
+ // Appending entities
+ //
+
+ void Array::put( FrameworkEntityPtr anEntity )
+ throw (NullPointerException,BoundsException)
+ {
+ (*this)=anEntity;
+ }
+
+ void Array::putBack( FrameworkEntityPtr anEntity )
+ throw (NullPointerException,BoundsException)
+ {
+ (*this)=anEntity;
+ }
+
+ void Array::putFront( FrameworkEntityPtr anEntity )
+ throw (NullPointerException,BoundsException)
+ {
+ putAt(0,anEntity);
+ }
+
+ void Array::putAt( Index offset, FrameworkEntityPtr anEntity )
+ throw (NullPointerException,BoundsException)
+ {
+ if( anEntity == NULLPTR )
+ {
+ throw NullPointerException( LOCATION );
+ }
+ else if( checkBoundsForAdd() == false )
+ {
+ throw BoundsException( LOCATION );
+ }
+ else
+ {
+ GUARD;
+ this->increaseArraySize();
+ this->shiftForInsert( offset );
+ theEntities[offset] = anEntity;
+ this->increaseOccupancy();
+ }
+ }
+
+ FrameworkEntityPtr Array::removeAt( Index offset )
+ throw (BoundsException)
+ {
+ FrameworkEntityPtr aPtr( NULLPTR );
+
+ if( offset >= theCount )
+ {
+ throw BoundsException( LOCATION );
+ }
+ else
+ {
+ GUARD;
+ aPtr = theEntities[offset];
+ this->shiftForRemove( offset );
+ this->decreaseOccupancy();
+ }
+
+ return aPtr;
+ }
+
+ /// Remove first entity in array
+
+ FrameworkEntityPtr Array::removeAtFront( void )
+ {
+ return (this->removeAt( 0 ));
+ }
+
+ /// Remove last entity in array
+
+ FrameworkEntityPtr Array::removeAtEnd( void )
+ {
+ return (this->removeAt( theCount-1 ));
+ }
+
+ //
+ // Assignment operator for Array Reference
+ //
+
ArrayRef Array::operator=
(
***************
*** 91,94 ****
--- 247,251 ----
if( this != &aArray )
{
+ GUARD;
}
else
***************
*** 99,102 ****
--- 256,399 ----
}
+ //
+ // Assignment operator for Array Pointer
+ //
+
+ ArrayRef Array::operator=
+ (
+ ArrayCptr aArray
+ )
+ throw (NullPointerException)
+ {
+ if( aArray == NULLPTR )
+ {
+ throw NullPointerException( LOCATION );
+ }
+ else
+ {
+ if( this != aArray )
+ {
+ GUARD;
+ }
+ else
+ {
+ ; // do nothing
+ }
+ }
+
+ return ( *this );
+ }
+
+ // Consume
+
+ void Array::increaseOccupancy( Count additions )
+ {
+ theCount += additions;
+ theRemaining -= additions;
+ }
+
+ // Relieve
+
+ void Array::decreaseOccupancy( Count removals )
+ {
+ theCount -= removals;
+ theRemaining += removals;
+ }
+
+ //
+ // Bounds checker
+ //
+
+ bool Array::checkBoundsForAdd( Count increment )
+ {
+ bool canDo( true );
+
+ if( theRemaining == 0 || increment > theRemaining )
+ {
+ UnsignedInteger aR = getSizeRestriction();
+
+ if( aR.getValue() != 0 &&
+ ( theCount >= aR.getValue() ||
+ theCount+increment > aR.getValue() )
+ )
+ {
+ canDo = false;
+ }
+ else
+ {
+ ; // we can always grow
+ }
+ }
+ else
+ {
+ ; // we have space in the current block
+ }
+
+ return canDo;
+ }
+
+ //
+ // Auto increase mechanism
+ //
+
+ void Array::increaseArraySize( Count increment )
+ {
+ if( increment > theRemaining )
+ {
+ Count growth = (theCount+increment)+theCount/2;
+ FrameworkEntityPtr *newArray = new FrameworkEntityPtr[growth];
+
+ for( Count x=0; x<theCount ; ++x )
+ {
+ newArray[x] = theEntities[x];
+ }
+
+ if( theEntities != NULLPTR )
+ {
+ delete [] theEntities;
+ }
+ else
+ {
+ ; // do nothing
+ }
+
+ theEntities = newArray;
+ theRemaining = growth - theCount;
+ }
+ else
+ {
+ ; // still room
+ }
+ }
+
+ //
+ // Move the members for insertion
+ //
+
+ void Array::shiftForInsert( Index position, Count increment )
+ {
+ size_t sizeMove = (theCount - position)*sizeof(FrameworkEntityPtr);
+ memmove
+ (
+ &theEntities[position],
+ &theEntities[position+increment],
+ sizeMove
+ );
+ }
+
+ //
+ // Move the members for removal
+ //
+
+ void Array::shiftForRemove( Index position, Count increment )
+ {
+ size_t sizeMove = (theCount - increment)*sizeof(FrameworkEntityPtr);
+ memmove
+ (
+ &theEntities[position+increment],
+ &theEntities[position],
+ sizeMove
+ );
+ }
//! version for the Array MetaType
***************
*** 116,124 ****
CLOSE_METATYPE_PARENT;
! //! We define our property data descriptor
DEFINE_CLASSINSTANCE_DESCRIPTOR(Array, UnsignedInteger,UnsignedInteger, SizeRestriction );
! //! We construct the values reference
OPEN_INSTANCEDATA( Array )
--- 413,421 ----
CLOSE_METATYPE_PARENT;
! // We define our property data descriptor
DEFINE_CLASSINSTANCE_DESCRIPTOR(Array, UnsignedInteger,UnsignedInteger, SizeRestriction );
! // We construct the values reference
OPEN_INSTANCEDATA( Array )
|
|
From: Frank V. C. <fr...@us...> - 2001-02-24 16:26:59
|
Update of /cvsroot/corelinux/clfw/clfw
In directory usw-pr-cvs1:/tmp/cvs-serv4932/clfw
Modified Files:
Array.hpp
Log Message:
133863 Added behavior (partial) to Array
Index: Array.hpp
===================================================================
RCS file: /cvsroot/corelinux/clfw/clfw/Array.hpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** Array.hpp 2001/02/24 04:32:31 1.1
--- Array.hpp 2001/02/24 16:28:07 1.2
***************
*** 34,37 ****
--- 34,41 ----
#endif
+ #if !defined(__BOUNDSEXCEPTION_HPP)
+ #include <corelinux/BoundsException.hpp>
+ #endif
+
namespace corelinux
{
***************
*** 44,48 ****
*/
! class Array : public Collection
{
DECLARE_METATYPEMEMBERS( Array );
--- 48,52 ----
*/
! class Array : public Collection, Synchronized
{
DECLARE_METATYPEMEMBERS( Array );
***************
*** 75,78 ****
--- 79,84 ----
//
+ /// Equality operator
+
bool operator==( ArrayCref ) const;
//
***************
*** 86,99 ****
/// Fetch entity at index
! FrameworkEntityPtr operator[]( int index ) const;
/// Fetch entity at index
! FrameworkEntityPtr getElementAt( Index ) const;
/// Fetch entity class index
! MetaClassPtr getElementClassAt( Index ) const;
//
// Mutators
--- 92,109 ----
/// Fetch entity at index
! FrameworkEntityPtr operator[]( Index ) const
! throw (BoundsException);
/// Fetch entity at index
! FrameworkEntityPtr getElementAt( Index ) const
! throw (BoundsException);
/// Fetch entity class index
! MetaClassPtr getElementClassAt( Index ) const
! throw (BoundsException);
+
//
// Mutators
***************
*** 102,106 ****
/// Entity put operator
! ArrayRef operator=( FrameworkEntityPtr );
/// Deep copy (replace)
--- 112,117 ----
/// Entity put operator
! ArrayRef operator=( FrameworkEntityPtr )
! throw (NullPointerException,BoundsException);
/// Deep copy (replace)
***************
*** 110,141 ****
/// Deep copy (replace)
! ArrayRef operator=( ArrayCptr );
/// Deep copy (append)
! ArrayRef operator+=( ArrayCref );
/// Deep copy (append)
! ArrayRef operator+=( ArrayCptr );
! void put( FrameworkEntityPtr );
! void putFront( FrameworkEntityPtr );
! void putBack( FrameworkEntityPtr );
! void putElementAt( Index, FrameworkEntityPtr );
//
// Member Declarations
//
DECLARE_INSTANCEDATA( UnsignedInteger, SizeRestriction );
protected:
private:
! FrameworkEntity **theEntites;
Count theCount;
Count theRemaining;
--- 121,207 ----
/// Deep copy (replace)
! ArrayRef operator=( ArrayCptr )
! throw (NullPointerException);
/// Deep copy (append)
! ArrayRef operator+=( ArrayCref )
! throw (BoundsException);
/// Deep copy (append)
+
+ ArrayRef operator+=( ArrayCptr )
+ throw (BoundsException);
+
+ /// Add to end (putBack)
+
+ virtual void put( FrameworkEntityPtr )
+ throw (NullPointerException, BoundsException);
+
+ /// Add to front of array, shifting all back one
! virtual void putFront( FrameworkEntityPtr )
! throw (NullPointerException, BoundsException);
! /// Add to end
! virtual void putBack( FrameworkEntityPtr )
! throw (NullPointerException, BoundsException);
! /// Add at point, shifting others back one
! virtual void putAt( Index, FrameworkEntityPtr )
! throw (NullPointerException, BoundsException);
+ /// Remove at index
+
+ FrameworkEntityPtr removeAt( Index )
+ throw (BoundsException);
+
+ /// Remove first entity in array
+
+ FrameworkEntityPtr removeAtFront( void );
+
+ /// Remove last entity in array
+
+ FrameworkEntityPtr removeAtEnd( void );
+
//
// Member Declarations
//
+ /// Semantic for bounding array
+
DECLARE_INSTANCEDATA( UnsignedInteger, SizeRestriction );
protected:
+ //
+ // Implementation methods
+ //
+ /// Adjusts occupancy
+
+ void increaseOccupancy( Count additions = 1 );
+ void decreaseOccupancy( Count removals = 1 );
+
+ /// Confirms ability to grow, or available room
+
+ bool checkBoundsForAdd( Count increment = 1 );
+
+ /// Grows and copies elements
+
+ void increaseArraySize( Count increment = 1 );
+
+ /// Shifts array for indexed inserts
+
+ void shiftForInsert( Index position, Count increment=1 );
+
+ /// Shifts array for indexed removals
+
+ void shiftForRemove( Index position, Count increment=1 );
+
+
private:
! FrameworkEntity **theEntities;
Count theCount;
Count theRemaining;
|
|
From: Frank V. C. <fr...@us...> - 2001-02-24 16:26:59
|
Update of /cvsroot/corelinux/clfw/src/testdrivers/exf1
In directory usw-pr-cvs1:/tmp/cvs-serv4932/src/testdrivers/exf1
Modified Files:
examp1.cpp
Log Message:
133863 Added behavior (partial) to Array
Index: examp1.cpp
===================================================================
RCS file: /cvsroot/corelinux/clfw/src/testdrivers/exf1/examp1.cpp,v
retrieving revision 1.26
retrieving revision 1.27
diff -C2 -r1.26 -r1.27
*** examp1.cpp 2001/02/24 04:19:32 1.26
--- examp1.cpp 2001/02/24 16:28:07 1.27
***************
*** 63,66 ****
--- 63,70 ----
#endif
+ #if !defined(__ARRAY_HPP)
+ #include <clfw/Array.hpp>
+ #endif
+
#if !defined(__UNSIGNEDSHORTINTEGER_HPP)
#include <clfw/UnsignedShortInteger.hpp>
***************
*** 317,320 ****
--- 321,325 ----
{
UserTypePtr aType( new UserType );
+ UserTypePtr aType1( new UserType );
UniversalIdentifier aId;
UnsignedShortIntegerPtr aValue( new UnsignedShortInteger(8) );
***************
*** 324,327 ****
--- 329,337 ----
dumpTypeInformation( aType );
+
+ Array myArray;
+ myArray = aType;
+
+ myArray.putFront( aType1 );
//
|
|
From: Frank V. C. <fr...@us...> - 2001-02-24 04:31:24
|
Update of /cvsroot/corelinux/clfw/src/libs/clfw
In directory usw-pr-cvs1:/tmp/cvs-serv7419/src/libs/clfw
Modified Files:
Makefile.am UniversalIdentifier.cpp
Added Files:
Array.cpp Collection.cpp
Log Message:
133863 Collection types added
***** Error reading new file: [Errno 2] No such file or directory: 'Array.cpp'
***** Error reading new file: [Errno 2] No such file or directory: 'Collection.cpp'
Index: Makefile.am
===================================================================
RCS file: /cvsroot/corelinux/clfw/src/libs/clfw/Makefile.am,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -r1.16 -r1.17
*** Makefile.am 2000/11/15 01:14:32 1.16
--- Makefile.am 2001/02/24 04:32:31 1.17
***************
*** 29,32 ****
--- 29,34 ----
ShortInteger.cpp \
UnsignedInteger.cpp \
+ Collection.cpp \
+ Array.cpp \
MetaSpace.cpp \
MetaClass.cpp \
Index: UniversalIdentifier.cpp
===================================================================
RCS file: /cvsroot/corelinux/clfw/src/libs/clfw/UniversalIdentifier.cpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** UniversalIdentifier.cpp 2000/10/03 23:56:02 1.3
--- UniversalIdentifier.cpp 2001/02/24 04:32:31 1.4
***************
*** 198,201 ****
--- 198,214 ----
}
+ void UniversalIdentifier::getAsString( CharPtr aPtr ) const
+ {
+ if( aPtr != NULLPTR )
+ {
+
+ uuid_unparse(BytePtr(&theID),aPtr);
+ }
+ else
+ {
+ throw NullPointerException( LOCATION );
+ }
+ }
+
// Fetch theZeroUid
|
|
From: Frank V. C. <fr...@us...> - 2001-02-24 04:31:24
|
Update of /cvsroot/corelinux/clfw/clfw
In directory usw-pr-cvs1:/tmp/cvs-serv7419/clfw
Modified Files:
Makefile.am UniversalIdentifier.hpp
Added Files:
Array.hpp Collection.hpp
Log Message:
133863 Collection types added
***** Error reading new file: [Errno 2] No such file or directory: 'Array.hpp'
***** Error reading new file: [Errno 2] No such file or directory: 'Collection.hpp'
Index: Makefile.am
===================================================================
RCS file: /cvsroot/corelinux/clfw/clfw/Makefile.am,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -r1.19 -r1.20
*** Makefile.am 2000/11/15 12:29:30 1.19
--- Makefile.am 2001/02/24 04:32:31 1.20
***************
*** 32,35 ****
--- 32,37 ----
UnsignedInteger.hpp \
UnsignedShortInteger.hpp \
+ Collection.hpp \
+ Array.hpp \
MetaSpace.hpp \
MetaClass.hpp \
Index: UniversalIdentifier.hpp
===================================================================
RCS file: /cvsroot/corelinux/clfw/clfw/UniversalIdentifier.hpp,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** UniversalIdentifier.hpp 2000/11/10 04:42:48 1.4
--- UniversalIdentifier.hpp 2001/02/24 04:32:31 1.5
***************
*** 113,116 ****
--- 113,124 ----
bool isDeleted( void ) const;
+ /**
+ Retrieves the instance as a string
+ @param Char pointer to delivery buffer
+ @exception NullPointerException if pointer invalid
+ */
+
+ void getAsString( CharPtr ) const;
+
/// Fetch theZeroUid
***************
*** 125,132 ****
// Mutators
//
! /// set a new unique Id
! /**
! @arg UniversalIdentifierRef
! */
static void setNewUid( UniversalIdentifierRef );
--- 133,142 ----
// Mutators
//
!
! /**
! set a new unique Id
! @param UniversalIdentifierRef
! */
!
static void setNewUid( UniversalIdentifierRef );
***************
*** 174,178 ****
protected:
! /// the UniqueId
UniqueId theID;
private:
--- 184,189 ----
protected:
! /// the UniqueId
!
UniqueId theID;
private:
|
|
From: Frank V. C. <fr...@us...> - 2001-02-24 04:31:24
|
Update of /cvsroot/corelinux/clfw In directory usw-pr-cvs1:/tmp/cvs-serv7419 Modified Files: ChangeLog Log Message: 133863 Collection types added Index: ChangeLog =================================================================== RCS file: /cvsroot/corelinux/clfw/ChangeLog,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -r1.13 -r1.14 *** ChangeLog 2000/11/18 14:25:07 1.13 --- ChangeLog 2001/02/24 04:32:31 1.14 *************** *** 1,2 **** --- 1,7 ---- + 2001-02-23 Frank V. Castellucci <fr...@ca...> + + * Feature 133852 - Add UniversalIdentifier as entity instance object identifier + * Feature 133863 - Introduce Collection, starting with shell of Array + 2000-11-18 Frank V. Castellucci <fr...@ca...> |
|
From: Frank V. C. <fr...@us...> - 2001-02-24 04:18:25
|
Update of /cvsroot/corelinux/clfw/src/testdrivers/exf1/include In directory usw-pr-cvs1:/tmp/cvs-serv6115/include Modified Files: UserType.hpp Log Message: 133852 UniversalIdentifier as instance object id Index: UserType.hpp =================================================================== RCS file: /cvsroot/corelinux/clfw/src/testdrivers/exf1/include/UserType.hpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** UserType.hpp 2000/10/30 05:01:26 1.1 --- UserType.hpp 2001/02/24 04:19:32 1.2 *************** *** 38,41 **** --- 38,44 ---- #endif + #if !defined(__UNIVERSALIDENTIFIER_HPP) + #include <clfw/UniversalIdentifier.hpp> + #endif DECLARE_CLASS( UserType ); |
|
From: Frank V. C. <fr...@us...> - 2001-02-24 04:18:25
|
Update of /cvsroot/corelinux/clfw/src/testdrivers/exf1
In directory usw-pr-cvs1:/tmp/cvs-serv6115
Modified Files:
examp1.cpp
Log Message:
133852 UniversalIdentifier as instance object id
Index: examp1.cpp
===================================================================
RCS file: /cvsroot/corelinux/clfw/src/testdrivers/exf1/examp1.cpp,v
retrieving revision 1.25
retrieving revision 1.26
diff -C2 -r1.25 -r1.26
*** examp1.cpp 2000/11/19 05:19:52 1.25
--- examp1.cpp 2001/02/24 04:19:32 1.26
***************
*** 87,90 ****
--- 87,94 ----
#endif
+ #if !defined(__FRAMEWORKENTITY_HPP)
+ #include <clfw/FrameworkEntity.hpp>
+ #endif
+
#include INCL_Library
***************
*** 313,318 ****
--- 317,326 ----
{
UserTypePtr aType( new UserType );
+ UniversalIdentifier aId;
UnsignedShortIntegerPtr aValue( new UnsignedShortInteger(8) );
+ UniversalIdentifier::setNewUid( aId );
+ aType->setOid( aId );
+
dumpTypeInformation( aType );
***************
*** 560,563 ****
--- 568,575 ----
void dumpTypeInformation( FrameworkEntityPtr anFEPtr )
{
+ Char buffer[40];
+ anFEPtr->getOid().getAsString(buffer);
+ cout << "Object identifier = " << buffer << endl;
+
dumpMetaTypeInformation( anFEPtr->getType() );
}
|
|
From: Frank V. C. <fr...@us...> - 2001-02-24 04:17:42
|
Update of /cvsroot/corelinux/clfw/src/libs/clfw
In directory usw-pr-cvs1:/tmp/cvs-serv6020
Modified Files:
FrameworkEntity.cpp
Log Message:
133852 UniversalIdentifier as instance object id
Index: FrameworkEntity.cpp
===================================================================
RCS file: /cvsroot/corelinux/clfw/src/libs/clfw/FrameworkEntity.cpp,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -r1.8 -r1.9
*** FrameworkEntity.cpp 2000/11/11 17:45:54 1.8
--- FrameworkEntity.cpp 2001/02/24 04:18:49 1.9
***************
*** 70,77 ****
--- 70,86 ----
FrameworkEntity::FrameworkEntity( void )
+ :
+ theOid( UniversalIdentifier::getZeroUid() )
{
; // do nothing
}
+ FrameworkEntity::FrameworkEntity( UniversalIdentifierCref aOid )
+ :
+ theOid( aOid )
+ {
+ ;
+ }
+
//
// Destructor
***************
*** 92,96 ****
) const
{
! return ( this == & aFrameworkEntity );
}
--- 101,105 ----
) const
{
! return ( this->getOid() == aFrameworkEntity.getOid() );
}
***************
*** 101,110 ****
FrameworkEntityRef FrameworkEntity::operator=
(
! FrameworkEntityCref
)
{
return (*this);
}
}
--- 110,144 ----
FrameworkEntityRef FrameworkEntity::operator=
(
! FrameworkEntityCref aCref
)
{
+ if( *this == aCref )
+ {
+ ; // do nothing
+ }
+ else
+ {
+ this->setOid( aCref.getOid() );
+ }
return (*this);
}
+ //
+ // Key retrieve
+ //
+
+ UniversalIdentifierCref FrameworkEntity::getOid( void ) const
+ {
+ return theOid;
+ }
+
+ //
+ // Set key
+ //
+
+ void FrameworkEntity::setOid( UniversalIdentifierCref aOid )
+ {
+ theOid = aOid;
+ }
}
|
|
From: Frank V. C. <fr...@us...> - 2001-02-24 04:16:19
|
Update of /cvsroot/corelinux/clfw/clfw
In directory usw-pr-cvs1:/tmp/cvs-serv5819
Modified Files:
FrameworkEntity.hpp MetaType.hpp
Log Message:
133852 UniversalIdentifier as instance object id
Index: FrameworkEntity.hpp
===================================================================
RCS file: /cvsroot/corelinux/clfw/clfw/FrameworkEntity.hpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** FrameworkEntity.hpp 2000/10/04 04:33:15 1.3
--- FrameworkEntity.hpp 2001/02/24 04:17:25 1.4
***************
*** 38,43 ****
class FrameworkEntity
{
- DECLARE_METATYPEMEMBERS( FrameworkEntity );
public:
--- 38,139 ----
class FrameworkEntity
{
+ //
+ // The base entity has attributes and methods that are not needed by
+ // the derivations, so we expanded information for FrameworkEntity
+ //
+
+ public:
+
+ /**
+ get the type descriptor
+ \return a const pointer to the MetaType
+ */
+
+ static MetaTypePtr getTypeDescriptor( void );
+
+ /**
+ get the type
+ \return a const pointer to the MetaType
+ */
+
+ virtual MetaTypePtr getType( void ) const;
+
+ /**
+ create a new instance of className
+ \return a pointer to className
+ */
+
+ static FrameworkEntityPtr create( void );
+
+ /**
+ create a new instance of
+ className with OID
+ \return a pointer to className
+ */
+
+ static FrameworkEntityPtr create( UniversalIdentifierCref );
+
+ /**
+ destroy a point of className
+ \arg pointer to className
+ */
+
+ static void destroy( FrameworkEntityPtr aPointer );
+
+ /**
+ Get the object identifier for the instance
+ \return a UniversalIdentifier
+ */
+
+ UniversalIdentifierCref getOid( void ) const;
+
+ /**
+ Set the object identifier for
+ the instance
+ */
+
+ void setOid( UniversalIdentifierCref );
+
+ /**
+ Cast the pointer down to type
+ */
+
+ static FrameworkEntityPtr castDown( FrameworkEntityPtr );
+
+ /**
+ Cast the pointer down to type
+ */
+
+ static FrameworkEntityRef castDown( FrameworkEntityRef );
+
+ /**
+ redefine the operator new[]
+ \arg aSize
+ \return a VoidPtr
+ */
+
+ void * operator new(size_t aSize);
+
+ /**
+ redefine the operator delete[]
+ \arg aVoidPtr the pointer to delete
+ */
+
+ void operator delete(void * aVoidPtr);
+
+ private:
+
+ /**
+ the MetaType descriptor
+ */
+
+ static MetaType theTypeDesc;
+
+ /// The individuals identifier
+
+ UniversalIdentifier theOid;
+
+
public:
***************
*** 54,60 ****
--- 150,161 ----
FrameworkEntity( void );
+ /// Constructor with an instance key
+
+ FrameworkEntity( UniversalIdentifierCref );
+
/// Virtual destructor
virtual ~FrameworkEntity( void );
+
//@}
***************
*** 73,81 ****
Assignment operator
@param FrameworkEntity const reference
! @returnm FrameworkEntity reference to (*this)
*/
FrameworkEntityRef operator=( FrameworkEntityCref );
-
//@}
--- 174,181 ----
Assignment operator
@param FrameworkEntity const reference
! @return FrameworkEntity reference to (*this)
*/
FrameworkEntityRef operator=( FrameworkEntityCref );
//@}
***************
*** 83,87 ****
--- 183,191 ----
*/
//@{
+ //@}
+ /** @name Mutators
+ */
+ //@{
//@}
Index: MetaType.hpp
===================================================================
RCS file: /cvsroot/corelinux/clfw/clfw/MetaType.hpp,v
retrieving revision 1.27
retrieving revision 1.28
diff -C2 -r1.27 -r1.28
*** MetaType.hpp 2000/11/18 13:58:57 1.27
--- MetaType.hpp 2001/02/24 04:17:25 1.28
***************
*** 75,78 ****
--- 75,83 ----
static className##Ptr create( void ); \
/** \
+ create a new instance of className with OID \
+ \return a pointer to className \
+ */ \
+ static className##Ptr create( corelinux::UniversalIdentifierCref ); \
+ /** \
destroy a point of className \
\arg pointer to className \
***************
*** 142,146 ****
#define _DECLARE_INSTANCEDATA_STATICS(dataName) \
static MemberDescriptor the##dataName##Descriptor; \
! static void *get##dataName##AsVPtr( corelinux::FrameworkEntityPtr ); \
static void set##dataName##AsVPtr \
( \
--- 147,151 ----
#define _DECLARE_INSTANCEDATA_STATICS(dataName) \
static MemberDescriptor the##dataName##Descriptor; \
! static void *get##dataName##AsVPtr( corelinux::FrameworkEntityPtr ); \
static void set##dataName##AsVPtr \
( \
***************
*** 454,457 ****
--- 459,475 ----
} \
/** \
+ create a new pointer to className \
+ \return the allocated pointer \
+ */ \
+ className##Ptr className::create( corelinux::UniversalIdentifierCref aOid ) \
+ { \
+ className##Allocator##Ptr aAlPtr = \
+ dynamic_cast<className##Allocator##Ptr> \
+ (theTypeDesc.getAllocator()); \
+ className##Ptr aPtr = aAlPtr->createType(); \
+ aPtr->setOid( aOid ); \
+ return aPtr; \
+ } \
+ /** \
destroy a pointer to className \
\arg the pointer aPtr \
***************
*** 560,563 ****
--- 578,594 ----
*/ \
className##Ptr className::create( void ) \
+ { \
+ throw corelinux::AbstractEntityException \
+ ( \
+ className##AllocExc, \
+ LOCATION \
+ ); \
+ return (className##Ptr)NULLPTR; \
+ } \
+ /** \
+ create a new pointer to className \
+ \return the allocated pointer \
+ */ \
+ className##Ptr className::create( corelinux::UniversalIdentifierCref ) \
{ \
throw corelinux::AbstractEntityException \
|
|
From: Christophe Prud'h. <pru...@us...> - 2001-02-15 16:59:17
|
Update of /cvsroot/corelinux/clfw/src/testdrivers/exf1 In directory usw-pr-cvs1:/tmp/cvs-serv22441/src/testdrivers/exf1 Modified Files: .cvsignore Log Message: more files to be ignored by cvs Index: .cvsignore =================================================================== RCS file: /cvsroot/corelinux/clfw/src/testdrivers/exf1/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** .cvsignore 2000/10/03 23:23:02 1.1 --- .cvsignore 2001/02/15 16:59:59 1.2 *************** *** 3,4 **** --- 3,5 ---- Makefile Makefile.in + exf1 |
|
From: Christophe Prud'h. <pru...@us...> - 2001-02-15 16:59:17
|
Update of /cvsroot/corelinux/clfw/src/testdrivers/exf1/include In directory usw-pr-cvs1:/tmp/cvs-serv22441/src/testdrivers/exf1/include Added Files: .cvsignore Log Message: more files to be ignored by cvs --- NEW FILE --- Makefile Makefile.in |
|
From: Christophe Prud'h. <pru...@us...> - 2001-02-15 16:45:56
|
Update of /cvsroot/corelinux/corelinux/debian In directory usw-pr-cvs1:/tmp/cvs-serv15808 Modified Files: rules Added Files: libcorelinux-doc.doc-base Log Message: added doc-base support --- NEW FILE --- Document: libcorelinux-doc Title: CoreLinux Documentation Author: CoreLinux Consortium Abstract: This is the CoreLinux library reference API. Section: Apps/Programming Format: HTML Index: /usr/share/doc/libcorelinux-doc/html/index.html Files: /usr/share/doc/libcorelinux-doc/html/*.html Index: rules =================================================================== RCS file: /cvsroot/corelinux/corelinux/debian/rules,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -r1.10 -r1.11 *** rules 2001/01/12 22:44:37 1.10 --- rules 2001/02/15 16:46:38 1.11 *************** *** 22,27 **** cd classic/src/classlibs && make rm -rf classic/doc/html doc/man && cd classic/doc && doxygen corelinux.cfg - # cd classic/doc/latex && for i in *.eps; do epstopdf $$i; done - # cd classic/doc/latex && make pdf && make ps && mv refman.pdf corelinux-ref.pdf && mv refman.ps corelinux-ref.ps mkdir -p debug cd debug && ../configure --prefix=$(top_builddir)/debian/tmp/usr --includedir=`pwd`/debian/tmp/usr/include/corelinux --enable-debug --- 22,25 ---- |
|
From: Christophe Prud'h. <pru...@us...> - 2001-02-15 16:45:26
|
Update of /cvsroot/corelinux/clfll/debian
In directory usw-pr-cvs1:/tmp/cvs-serv15656/debian
Modified Files:
postinst changelog
Added Files:
libclfll-doc.doc-base
Log Message:
added doc-base support
--- NEW FILE ---
Document: libclfll-doc
Title: CoreLinux FrameWork Library Load Documentation
Author: CoreLinux Consortium
Abstract: This is the CoreLinux FrameWork Library Load reference API.
Section: Apps/Programming
Format: HTML
Index: /usr/share/doc/libclfll-doc/html/index.html
Files: /usr/share/doc/libclfll-doc/html/*.html
Index: postinst
===================================================================
RCS file: /cvsroot/corelinux/clfll/debian/postinst,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
*** postinst 2000/11/02 21:17:31 1.1.1.1
--- postinst 2001/02/15 16:46:08 1.2
***************
*** 1,5 ****
- #!/bin/sh
- set -e
-
# Automatically added by dh_installdocs
if [ "$1" = "configure" ]; then
--- 1,2 ----
***************
*** 7,13 ****
ln -sf ../share/doc/libclfll /usr/doc/libclfll
fi
-
- # call ldconfig only if arg is configure
- ldconfig
fi
# End automatically added section
--- 4,7 ----
Index: changelog
===================================================================
RCS file: /cvsroot/corelinux/clfll/debian/changelog,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** changelog 2001/02/01 22:07:35 1.2
--- changelog 2001/02/15 16:46:08 1.3
***************
*** 1,2 ****
--- 1,8 ----
+ libclfll (0.1.0-3) unstable; urgency=low
+
+ * added doc-base
+
+ -- Christophe Prud'homme <pru...@mi...> Thu, 15 Feb 2001 11:27:58 -0500
+
libclfll (0.1.0-2) unstable; urgency=low
***************
*** 4,8 ****
* removed ps and pdf documentation from package
! -- Christophe Prud'homme <pru...@mi...> Thu, 1 Feb 2001 17:07:06 -0500
libclfll (0.1.0-1) unstable; urgency=low
--- 10,14 ----
* removed ps and pdf documentation from package
! -- Christophe Prud'homme <pru...@mi...> Thu, 1 Feb 2001 17:23:00 -0500
libclfll (0.1.0-1) unstable; urgency=low
|
|
From: Christophe Prud'h. <pru...@us...> - 2001-02-15 16:44:50
|
Update of /cvsroot/corelinux/clfw/debian In directory usw-pr-cvs1:/tmp/cvs-serv15467 Modified Files: rules changelog Added Files: libclfw-doc.doc-base Log Message: added doc-base support --- NEW FILE --- Document: libclfw-doc Title: CoreLinux FrameWork Documentation Author: CoreLinux Consortium Abstract: This is the CoreLinux FrameWork reference API. Section: Apps/Programming Format: HTML Index: /usr/share/doc/libclfw-doc/html/index.html Files: /usr/share/doc/libclfw-doc/html/*.html Index: rules =================================================================== RCS file: /cvsroot/corelinux/clfw/debian/rules,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** rules 2000/11/16 09:47:08 1.7 --- rules 2001/02/15 16:45:32 1.8 *************** *** 4,8 **** package=libclfw ! version=0.2.5 version_major=0 --- 4,8 ---- package=libclfw ! version=0.2.6 version_major=0 *************** *** 30,34 **** rm -f build-stamp ! # Add here commands to clean up after the build process. -$(MAKE) clean -$(MAKE) distclean --- 30,34 ---- rm -f build-stamp ! # Add here commands to clean up after the build process. -$(MAKE) clean -$(MAKE) distclean *************** *** 43,47 **** dh_installdirs ! # Add here commands to install the package into debian/tmp. cd src/libs && $(MAKE) install prefix=$(top_builddir)/../../debian/tmp/usr includedir=$(top_builddir)/../../debian/tmp/usr/include/clfw cd clfw/ && $(MAKE) install prefix=$(top_builddir)/../debian/tmp/usr --- 43,47 ---- dh_installdirs ! # Add here commands to install the package into debian/tmp. cd src/libs && $(MAKE) install prefix=$(top_builddir)/../../debian/tmp/usr includedir=$(top_builddir)/../../debian/tmp/usr/include/clfw cd clfw/ && $(MAKE) install prefix=$(top_builddir)/../debian/tmp/usr *************** *** 57,60 **** --- 57,61 ---- # find debian/libclfw-examples -name "*.[ch]*[pp]*.gz" | xargs -r gunzip # perl debian/genmake.pl debian/libclfw-examples/usr/share/doc/libclfw-examples/examples + touch debian/tmp/usr/share/doc/libclfw-doc/html/.dhelp dh_movefiles -plibclfw-doc usr/share/doc/libclfw-doc/html dh_undocumented Index: changelog =================================================================== RCS file: /cvsroot/corelinux/clfw/debian/changelog,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** changelog 2000/11/16 09:47:08 1.6 --- changelog 2001/02/15 16:45:32 1.7 *************** *** 1,2 **** --- 1,14 ---- + libclfw (0.2.6-2) unstable; urgency=low + + * added doc-base + + -- Christophe Prud'homme <pru...@mi...> Thu, 15 Feb 2001 11:04:25 -0500 + + libclfw (0.2.6-1) unstable; urgency=low + + * new upstream release + + -- Christophe Prud'homme <pru...@mi...> Fri, 24 Nov 2000 11:55:23 -0500 + libclfw (0.2.5-1) unstable; urgency=low |
|
From: Christophe Prud'h. <pru...@us...> - 2001-02-15 16:38:52
|
Update of /cvsroot/corelinux/corelinux/debian In directory usw-pr-cvs1:/tmp/cvs-serv13886/debian Modified Files: changelog Log Message: added doc-base support Index: changelog =================================================================== RCS file: /cvsroot/corelinux/corelinux/debian/changelog,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** changelog 2001/01/12 22:44:37 1.7 --- changelog 2001/02/15 16:39:34 1.8 *************** *** 1,2 **** --- 1,8 ---- + libcorelinux (0.4.30-3) unstable; urgency=low + + * added doc-base + + -- Christophe Prud'homme <pru...@mi...> Thu, 15 Feb 2001 11:30:09 -0500 + libcorelinux (0.4.30-2) unstable; urgency=low |
|
From: Christophe Prud'h. <pru...@us...> - 2001-02-15 16:33:31
|
Update of /cvsroot/corelinux/corelinux/corelinux
In directory usw-pr-cvs1:/tmp/cvs-serv12865/corelinux
Modified Files:
AbstractAllocator.hpp
Log Message:
hum namespace problem solved
'using namespace corelinux;' solves lots of namespace problems
if you remove it then you will see lots of bad stuff happening
Index: AbstractAllocator.hpp
===================================================================
RCS file: /cvsroot/corelinux/corelinux/corelinux/AbstractAllocator.hpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** AbstractAllocator.hpp 2000/04/23 20:43:13 1.1
--- AbstractAllocator.hpp 2001/02/15 16:34:05 1.2
***************
*** 204,208 ****
nameTag( void ) \
: \
! AbstractAllocator<typeTag>() \
{ \
; \
--- 204,208 ----
nameTag( void ) \
: \
! CORELINUX(AbstractAllocator<typeTag>)()\
{ \
; \
|
|
From: Frank V. C. <fr...@us...> - 2001-02-15 11:07:42
|
Update of /cvsroot/corelinux/models
In directory usw-pr-cvs1:/tmp/cvs-serv28039
Added Files:
115287-Persist.mdr 115287-Persist.xml.zip
Log Message:
Initial Load
--- NEW FILE ---
MagicDrawUML "3.5.1"
(RTManager
(RTManagerOptions
SPACES_COUNT 8
CODE_GENERATION_REVERSE_OPTION 0
DELETED_ELEMENT_GENERATION_OPTION 0
USE_CLASSPATH_FOR_JAVA_REVERSE TRUE
LAUNCH_WIZARD FALSE
MERGE_AFTER_REVERSE FALSE
CREATE_ATTRIBUTES TRUE
WORKING_DIRECTORY "/spare/MagicDrawUML3.6i_Pro"
DEFAULT_LANGUAGE "C++"
(JavaLanguageOptions
mGenEmptyDoc FALSE
mBracketInNewLine TRUE
mAddSpaces TRUE
mCommentStyle 0
mUseJavaDoc FALSE
mUseClassPath TRUE
mClassPath "/spare/MagicDrawUML3.6i_Pro/lib/md.jar"
)
(CppLanguageOptions
mGenEmptyDoc FALSE
mBracketInNewLine TRUE
mAddSpaces TRUE
mCommentStyle 0
mUseJavaDoc FALSE
mCommentsStyle 0
mDocumentationOption FALSE
mUseIncludePath FALSE
mUseMacros FALSE
mIncludePath ""
)
(IDLLanguageOptions
mTranslationLang "Java"
mGenEmptyDoc FALSE
mBracketInNewLine TRUE
mAddSpaces TRUE
mCommentStyle 0
mUseJavaDoc FALSE
)
)
(RTProperties
(JavaLanguageProperties
)
(C++LanguageProperties
)
(IDLLanguageProperties
)
)
(RTProjectGroupObject
mID "ID00000000021b"
mName "Code engineering sets"
)
)
--- NEW FILE ---
PK
¿=,ÕòÕ'qzAºÿ*DϤþn´è+à=oäëÏW~ÕíöÁ× fÁ"Hvgh_Ýd;GcýÉýÜ£ùß}V=R=( '@ɱûÇþø4rïï#pÿ¼8Û§ÂÕ7ºÉ®Ä«8qWÕüwuÜ}ó¾ùjAõ@7··7lÕÌ÷íÖÜKÒ¡úÕäùg±f§øÔhð¾ÿøñGeâÃm¦ñÇɰe±YѬ(Yñå²¢cÅ[ï,Ý®±ö²Ü×uW·?Ñ=Ñ'º/Å#mÅ'\¼pçßeû2>ú»S7ø7ôKÍAN¬|
_6¢qÍÊqæÆCòz}Í}ì;R¼HñÒV¼ØC·j£²ÍðÔMÜEx?Ôó~,R2äeÈ^üi8Ù]Ñ'ûL
)HÚ
÷à/'XnÀ2ü
nÇפM2èaÐWaÇ/EG^»Þoý®«ÕgþI8
rø;ÒXÉ=Ïn-Iþ xIòDLîyXmÌdUÒåpºNI¾@ã"q^¦¦¹x,5êÃù÷¬½ïî ÄËøèöù®JÙ¢7.U£zÜ
¬%Ûq§Ç|fÀ Ùw\w×½Ç}÷5ͤ.«¸O{Í.ªX9sgåÈÖîDSyñ-X,
ÑÎñGacÿäøds ¦?+Á
_óÿþÇ]¯â?\ºÁên«ìal>ò\ÿH¯xÃñ;"^áÅ[5oø¾}"9«7β[pÖµY&cÇÀ×pñ9 XyGÄø[ÌjèSxõæÊlk½>q¨Y~Ì$ôÎ%£6çO¬¬ëeÃù£i<
C0SE_
ñËq«C-%R>TÃ-Ò¢È:©ûÂD¥
Dí´L6Åê<µ¼ù÷gìÞD×t lwÖ@ò¬Iîî
³fXýrwÓϯØlA¾òÃnyi0ØWZ»YL{!Y¼éNSÇ" WVÙ´;u
0W¡öÛCg.²
{
É¡YÒh|ÆæQs¸ýáÖ4iM«¶¦9u%%ZÓÙ¦Jk´¦5ßwø×+¶¦a¯;¥é%óÌKµ±Os.è=w½ªÌ¨8¢u
rlÞ+ÛËõmZ¡íT±è©µÉ]é©4
ü^7FdG}q¾yÔ÷dÖYe|óÁ(O%$gvpkµA n%Cp·;¾á²»à¢ípo&rîDȱº|â|8nð'`yPÎZ^¡Us²¿$døw´ú(¿_wè¹{Û$u×.Árrô¦éB¯ÌK¸ïâ5G`ï©ü»Ã @½µÆÕEE4ÕâPðq¶<Y¯¨ZÁ]©h§R´R(ðfT½¢SGÌ"¯"ëI¾8_6×Ë'¯¦
ÖKÅ£X#ß}äË
R¶´-ÞÀdKÃoZ9Éï6ÐsHÞ¼ùRx³¹¿S:÷µh8eõÐ\*eèÌM\ÑIïÄÍvÉÍrÉÕnYzmåP4§Óçüâ
Ù*¥yy®¤¦1pf3ëE£\¯a@ÕÝY.K«e¡%¤#FÀªÐ&×Îü×ý²Ð¦±Ï¡+Ù¥ûu±(×%~#¹.ݯmró,À¥j{+W¦ÕÊ8+ã3Yb_ÀÂÐy®Lë ]ÞãlÑñ¶lg(
m
¶xÇdñòbîÔ>gd>þ¸5PÇ-$_0_6år<Y>8WA5F©9éÍÁîà^>YǬÊrU´ï{á°ÖnTk'J!Wú®ª%Ù½¸=ø¹aËÈ
)ä[ù¡y_VäÆN)eÉ77#74/Ç7`~ÊÕì_ðÓöå UýMÅGó7´.=j×¢¡ú£e[â69*«±ÊÒ~¨ÈÝÝcO+¾`®Ö´òy
î§txÐ5ú
»-xá®il}Lûb
Y¤1í"Y¯{
áA®¦[$ÒjrÓÒá"Ù&EÊy%kjF¹PÖ¸ë
ºAîÖE°n¤\ÀÿA¸ô´hX¶É§¿ÝÁç.ýzÁ)í_>8Èß>Q¯üZ ïì̺íxáÊoºÏ«ÐóFP¹3ló'x>B%U3F?)åý¾YejßáÆv
1B¹Av²ÜVcÁÆÀ½:Jí¦ïÉûð{í>»[ øARb)/6Üû½ïÂ2Ó¯m´pöG{¦É8?lo ç×Ñç«ú[I@Æ"pðì§5[u¥|mØ]V·«ÀLÎ
·ÓÿØN#
ÙvôqíQÒÒèÏÄFÐèQF§AitzR}.e¤£éwú\àÐ #@8fôY0cåi0ã¼S¥Ð¥9H:Ó
Ò0·«î&Óò¦önTG@k|qª£Z¡:b朗:PwDV[gÈÏÛéªHwÄ£¦W!© ýÖTí°Il@ªS#GÁy¤äßÍÇ{£Æ=ÄNkªyððÉÙ$£@0rĬ-rÄkÛ9âYíN{ÔTzëV¤&§=f§c?2cÆêÈèÁÿ©|ìG}RÀÇDFpÀ`AÂkÛZ°Y(µÇ9»`²+±µV1j¯<bQÚßóhó
eÆHe3úap©uÖ¨¼ôÊ{ª
´ÍOj¾y Ò|½v¯7ªØ,&ÉÓt¨ùÚ:öÖZóÕÔY[Í׿;c¶6Ê*>Uhá¤÷D£ßÆ|ú$¤0H%üÈÀÇÉOè_Zcÿ÷ð/ø¯H::îüOM¥5UêU 0øÄ±8V9%3¶jêB×?yätglÅÛ«&]j<BÅu´oÚêhÚòÈ)Ý{>r4HÍA[¯U¾:ÜZÑyh46Z4ÚÔ2*ª*sI/¦«±ÒèÁP¡q5VöB
sd6µl4¦m_y7BSf7L2 J õær¸*=µ~d
¬LÚ±ÐYØv3½ñ¹rÜ
Îè'ÅÔà ?vÚ{ã
462o¼±dÓ³7Þ¦ÒFjKHuà7aÚE`7ÎhÑ#¼ºZÜ=zñÆB¸Q^#¦A¸/ËàÂÝ#|¼qdöÆ,Þ8Ág°yãe
2q^¡1ê
ö×±mü¶1¨ømCdü¶ª6®9aàæOa^4[DpW×ˤ¼hòà6Q»^àÉ'»GøDp /,Ü&C·Ùm·Ù"»ºpÁæ\ìG
Ë
£FÞàxm[£F¶ÞàM2Àja9×@ÆôlìEX|LGj°iÎAÛQð1Q ZX,Ö#Ázd±Yè4Gs̬9"Ë#^q,ôð¦U=&ÅÑR»V-Rq4GRqÌï""ű]yþo#²¢`uѱ6*d[ÅѲZ*=$ÅÑ*v4êR2û Xq´EDÂFÐHf#uÊÒhä¶¾â!§
Ë
8(-F,¤i$2ÝÑaOwÔÍËV¦G-áqÔyÂã6áQs¥òßEDÊ#h©<ÖWÅ*#îãbhj{åqÔ6áq4¨ÇØÇ·n.°:ñÈÄFàH²¦ÍªcÆ#ý
Æ5ÃmëÛØ¨ÜÀ=ÊÑTÌÀr:oõ=¶híl¶Ô9ÀB?4äµÇÝݦ»jW]WÞ9vvÞGc7¬MÇdac§
ìQͱk§Ð¸<S`YHÒØ,ÝFÆN!¨ÑÛO
þ
®z{ûê¸9Df_ïzz¶¯EF®é®6Ö»óê¸hz8,
,+cÞ-_]LÊDrH/1»n¾inó±KôH«
¤@´ee¼Ï8BjY3!(,+®ÊdYi®F/j<,HèV?ÖUSo\ӬͰë8ÕñîS ¢e»/ºT¸0d
F)fûCb¦Y± ?
fuª?Ψ
iªZ,²[»±Ú£àc3ÒFjoÄ'KªO
øØÈ(.XlH3ÒÍD§7Ítf/¤¦¢BGâ½³ÊÚâ$:ÃÌbRfãÎ'RyÒÊ;"åÉi©<Õë¡Êd[¹_L!sVÎã'T¢æR¢DV°6u*¯«¨Q^±Ñ¡ÑØ¢<úP.ºÇabnéDyB¹á³Î§P®)àÊEDhå±ry¡\[(W£ 7¦hÕ=Â
eê=
ÂùÅâ1R<6C
¥(Ã6³h|ÑjWYeD{ð4&5ʳZ«QI|mUWé8Û,>$¥Ç{$4ÝØ?Õ
pÁïà®S-.-å<¢u,çÿiVÝY¨<
Br¿Yz W´%Ó=oHz 7c·ºà¹Þɪ×Å(«.i´k¡Îð(¿><áä'ô/JeÇïáðX¯}¸À§0©GÓùós£¥G"WG`lìéÔ¬6olzbÅU<4·J¼^0<w±xRä
üj[8AqW>¼eø!XÃëçd+ñc¶ôó0RÖ 8AúQðþu´;õô³r²ò¨vnò&#rqÞ²iWÕ4Á¶6âÜAe¡35c8ç|û*m$ɸ«qÊÈg9Ðk´èú:%æ¼ÕY>.×%Z|_3¥âÛ¨cþ
Î^ûÜ7Zà¾9¤Ü7OpÉ×6ëàtóE¹ôEcÑ<3DÙd¿½öDæÒµ9ÈÒr(È*võ#óT2<ÿf!TZÉgÜ>ªO×Ë&cº®
HáѺ(æÍ .Þ¬ëúÓØ`Öõbhf3ÖTnÅ¡ÒòØ·Fë:gÈ3
¢¹ºÎ§ëeðñQ Ø 7X[4^Ûi<«Ý9¤t½çÜ,,"»³2ì~<õº^rªÁXØF6sÚxnÄdVéz©~ب±iigqé`ºÎ©
JUÓ!@}M©.ô*|Ùª¬b£V,Oy§'§¢¥ñ9з4$<½>)à§GFhPei ÊÚ"Gªv3øË
jÍX9<Ó2ðm{I£ªEãhÓ]y®Ì=ÜØÂNFmI½*;ǰ7¹©©Aj»ªÖ(´)¶~qo
Äó¯æýQÀ«¹& ¢%À¥"Û¡"Û\dsMÀÞ\3K§] 0õÖl½5ç÷ÖSöÖT
¯¤`MDË óª >TÌ}þM1TCu;2õi>ú4ÙRCiÜ¢kÍóEP(L»ôð©:xÃ*}À'^±{>ªAÎùÔÔï_ ÂáÓ¾ÂþÄð©qKün¨bÔ¨+j}H
K}VR?Ủ
ÃÜeÓ@kÍÜa8·i§ªn6î:´£óðÓ «´EðÃÙÐ ºJŬåÚºª°ºZ4ó¥·ÏL0ä
iÙÌì\R
ÿðÂå:\ÁI@Ò¥z6c;öÝÄBqW_¼-ÚR³)0ùîʽÑFY¯Þî43÷Ì]xpæSqýô³+FÍK6iÀ»£Ú¾ïöi9;¿u>\Q9±8{Ö`±Pð%»Ä;iÄ&w§WW7û2÷¥ÿ/þ³ç$i
!
hÐoÏïè¾kh¢yýD_Uã¯Ï?QN³¦9rFá«Æ1OÏÿ>¥´í8Î&H5èá*©ÞÏð˺|õiºwsxß'ü¿ÅW{ünóáöªJò]bvðÚq\#J÷PYþ ½Lxp×(MÊ)¤L8`ÀÂ'ISCìÉçéÕíä{KÔéR]»É`H°¦U"L°a0*G´%ZéÅÚ¶¸`k Û»VPù~øx39qG*6×.4ÞzéðÞõ~»¢QFMN>Þ\Þ½?9ýÛÇ«ÏÎh%FK
>=.g 4×Êm=@s}G45_ÿ.«ãW%~8^ßnÜÕ}ñ!»Ïxîö\eì¼ÿ^¼q9UI§1nÚç··'Ïï>}¾|~s;< åäo7IÜ$qÄM=ã&fÙs"7ÉåÓ«O·Óɧé
R®®ÏoN¦È í«g2Ûà~å&Q£\z&ãîvòñÓÉôóÍ`$ÔeL <`"ÂýMHW7çxÜÜ´Øsbé"Û|eºè7 T¯íÚ(·a(¨yI5W7ÓDäíßz~ù.-Bü¦`uÿÏ÷O
èÿÏç1úëùÈc`åï|0BìäùnVr\yx³BĹC~ç6ËðNõÜjS[èáQôá¶%)ÎýðùâânH0w²
À]<o¸w5Ñ1ù4¦ kxÖ®OP@ºâÄÅò¤ÕKZ½¤Õ««Ý`hëV¯í*iõV¯þF/^½îq¢ÿ¿ÎO3=nÐàÔ£aGÃ"acõ _l|å1,
[i(lR°½^Á&õa©K}øôagÿG°»~Ç. $àõBè6HX aA°àöqæBQð5HPHãôK`ðz´
H AÀ!
2)È^® áîR
*¼Tá¥
x*|Câò_ëH¹r¶¤9îÓ¿¡j=?9;¿¹»b)ÄÄ ËÓpýÏÉ
NÖNçXÊddþ¢§÷
«,DyïÊ8y 7%ÜìnJ½¹<»ýxaRI&EÔ¥Æ,5f©1·Ó;¯_7hyÐâ=t̨à^]wUð´têd?llت5j}$I(,¡pý %PXBa
%Pø%CaÎÅ
»±pQÂE ;/.ð§Â.×á
¬¤ÃJ])v¥ØZºÔÒ¥.µtâ¹ßåÂ]
\ß=Tä%+gå,¡ÁqhÊì ½$ôÐë0¡×ËwpÄ^iÕ YLZ¾$üü/ ¿$üðë@á×·|TÖ'Û½7@Vë6G z%èÕúûÞiw;·½rý»]|i¤AL ^188ìú+BàL34k|BLZõ¥%Kyï$©Ìôy)úÒª¨V}Àë"Xýö\ÑdØL*Uú%°Wnaæ(ߦ»ÚSYÊ6)Û¤l²mXÞ³áã~ùxPrYÚü¤X~Åbù°ýÛJÊJewåIZ3)Τ8.éÂ.!«2Ò
q¨ /¥næíã,~°6fíz%p|=ÀQƾHà(£8p<¼v½]&ÛLØ+ø½K{wûùýí¯Û/ï®®ÏoN¸¦Är¡&«d££ëæüäbòRv»^0'G{Ún¯ÏO'&§¢IçH!ø÷ÈÕ¹©WÞÓ°U¸C5ûËèÜ¥ú6`H}
À]¼û@ù,½[RJK)-¥ôW³9ãÐd¯1¾&Ù+d2]b¥)aì[
H9¢ð['··W§òv·Uî&§ÚÑk³-s9è?uãkj*®H#ÎRÕ$hæ0Ñt,wÁó¯È³|þ=«Ô#ÄóO·uÇB¼pga$ídDJ)A¤DJ)A¤N¿Ðyø>ü.×a9(%ðÑÒéP¤}ܵò%ü:QöåæäúîËÕÍYW"¬ð÷îÇïþ~99[¥÷ç?àO~þÿPKE7
|
|
From: Christophe Prud'h. <pru...@us...> - 2001-02-01 22:07:32
|
Update of /cvsroot/corelinux/clfll/debian In directory usw-pr-cvs1:/tmp/cvs-serv13477/debian Modified Files: rules control changelog Log Message: * removed ps/pdf doumentation * small fixes Index: rules =================================================================== RCS file: /cvsroot/corelinux/clfll/debian/rules,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** rules 2000/11/24 13:44:40 1.2 --- rules 2001/02/01 22:07:35 1.3 *************** *** 20,27 **** ./configure --prefix=$(top_builddir)/debian/tmp/usr --includedir=`pwd`/debian/tmp/usr/include/clfll make ! rm -rf doc/html doc/latex doc/man && cd doc && doxygen clfll.cfg ! cd doc/latex && for i in *.eps; do epstopdf $$i; done ! cd doc/latex && make pdf && make ps && mv refman.pdf clfll-ref.pdf && mv refman.ps clfll-ref.ps ! cd doc/man/man3 && for h in *.3; do gzip $h; done touch build-stamp --- 20,24 ---- ./configure --prefix=$(top_builddir)/debian/tmp/usr --includedir=`pwd`/debian/tmp/usr/include/clfll make ! rm -rf doc/html && cd doc && doxygen clfll.cfg touch build-stamp *************** *** 45,49 **** # Add here commands to install the package into debian/tmp. ! cd src/libs && $(MAKE) install prefix=$(top_builddir)/../../debian/tmp/usr includedir=$(top_builddir)/../../debian/tmp/usr/include/clfll cd clfll/ && $(MAKE) install prefix=$(top_builddir)/../debian/tmp/usr cd doc && mkdir -p $(top_builddir)/../debian/tmp/usr/share/doc/libclfll-doc && cp -r html ../debian/tmp/usr/share/doc/libclfll-doc --- 42,46 ---- # Add here commands to install the package into debian/tmp. ! cd src/clfll && $(MAKE) install prefix=$(top_builddir)/../../debian/tmp/usr includedir=$(top_builddir)/../../debian/tmp/usr/include/clfll cd clfll/ && $(MAKE) install prefix=$(top_builddir)/../debian/tmp/usr cd doc && mkdir -p $(top_builddir)/../debian/tmp/usr/share/doc/libclfll-doc && cp -r html ../debian/tmp/usr/share/doc/libclfll-doc *************** *** 53,57 **** dh_testdir dh_testroot ! dh_installdocs -plibclfll-doc `find doc/latex -name "clfll-ref.p[dfs]*"` dh_installdocs -A debian/README.Redhat debian/README.debian # dh_installexamples -plibclfll-examples debian/README.examples `find src/testdrivers -name "*.[ch]*[pp]*"` --- 50,54 ---- dh_testdir dh_testroot ! # dh_installdocs -plibclfll-doc `find doc/latex -name "clfll-ref.p[dfs]*"` dh_installdocs -A debian/README.Redhat debian/README.debian # dh_installexamples -plibclfll-examples debian/README.examples `find src/testdrivers -name "*.[ch]*[pp]*"` Index: control =================================================================== RCS file: /cvsroot/corelinux/clfll/debian/control,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** control 2000/11/02 21:17:30 1.1.1.1 --- control 2001/02/01 22:07:35 1.2 *************** *** 24,28 **** Architecture: any Section: libs ! Depends: libclfll, libcorelinux, libcorelinux-dev, libclfw, libclfw-devlibc6-dev Suggests: libclfll-doc, libcorelinux-doc, libclfw-doc Description: OOA and OOD for Linux. --- 24,28 ---- Architecture: any Section: libs ! Depends: libclfll, libcorelinux, libcorelinux-dev, libclfw, libclfw-dev, libc6-dev Suggests: libclfll-doc, libcorelinux-doc, libclfw-doc Description: OOA and OOD for Linux. Index: changelog =================================================================== RCS file: /cvsroot/corelinux/clfll/debian/changelog,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** changelog 2000/11/02 21:17:28 1.1.1.1 --- changelog 2001/02/01 22:07:35 1.2 *************** *** 1,4 **** ! -- Frank V. Castellucci <fr...@us...> Thu, 2 Nov 2000 23:34:36 -0400 Local variables: --- 1,14 ---- + libclfll (0.1.0-2) unstable; urgency=low ! * fixed upstream Makefiles ! * removed ps and pdf documentation from package ! ! -- Christophe Prud'homme <pru...@mi...> Thu, 1 Feb 2001 17:07:06 -0500 ! ! libclfll (0.1.0-1) unstable; urgency=low ! ! * first upstream release ! ! -- Christophe Prud'homme <pru...@mi...> Fri, 24 Nov 2000 12:05:27 -0500 Local variables: |
|
From: Christophe Prud'h. <pru...@us...> - 2001-02-01 22:06:07
|
Update of /cvsroot/corelinux/clfll/clfll In directory usw-pr-cvs1:/tmp/cvs-serv12971/clfll Modified Files: Makefile.am Log Message: Makefile.am is not a header so removed it from include_HEADERS rule Index: Makefile.am =================================================================== RCS file: /cvsroot/corelinux/clfll/clfll/Makefile.am,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** Makefile.am 2000/11/20 05:26:35 1.3 --- Makefile.am 2001/02/01 22:06:09 1.4 *************** *** 6,10 **** # E-MAIL: fr...@us... # ORIG-DATE: 10-Apr-00 at 10:34:57 ! # LAST-MOD: $Id$ # DESCRIPTION: # DESCRIP-END. --- 6,10 ---- # E-MAIL: fr...@us... # ORIG-DATE: 10-Apr-00 at 10:34:57 ! # LAST-MOD: 1-Feb-01 at 17:03:13 by Christophe Prud'homme # DESCRIPTION: # DESCRIP-END. *************** *** 16,21 **** FunctionLibraryType.hpp \ FunctionLibraryInstance.hpp \ ! FunctionLibraryObject.hpp \ ! Makefile.am # Common rcs information do not modify --- 16,20 ---- FunctionLibraryType.hpp \ FunctionLibraryInstance.hpp \ ! FunctionLibraryObject.hpp # Common rcs information do not modify |
|
From: Christophe Prud'h. <pru...@us...> - 2001-02-01 22:05:23
|
Update of /cvsroot/corelinux/clfll/src/testdrivers/exfl1/include In directory usw-pr-cvs1:/tmp/cvs-serv12770/src/testdrivers/exfl1/include Added Files: .cvsignore Log Message: files to be ignored by CVS --- NEW FILE --- Makefile Makefile.in |
|
From: Christophe Prud'h. <pru...@us...> - 2001-02-01 22:05:22
|
Update of /cvsroot/corelinux/clfll/src/testdrivers/exfl1 In directory usw-pr-cvs1:/tmp/cvs-serv12770/src/testdrivers/exfl1 Added Files: .cvsignore Log Message: files to be ignored by CVS --- NEW FILE --- .deps .libs Makefile Makefile.in exfl1 libmylib.la mylib.lo |