mirror of
https://github.com/gnustep/libs-gdl2.git
synced 2025-04-22 04:40:44 +00:00
Backport fixes to branch.
* Version 0.10.1 * README: Correct modeler application name. * ANNOUNCE: Update to followup release. * NEWS: Ditto. * EOInterface/GNUmakefile * DBModeler/Inspectors/GNUmakefile * DBModeler/GNUmakefile * EOAdaptors/Postgres95/LoginPanel/GNUmakefile * GDL2Palette/GNUmakefile: Add missing copyright notices. Install into GNUSTEP_SYSTEM_ROOT by default. * Version 0.10.0 * ANNOUNCE: New file. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gdl2/branches/gdl2-0_10@23504 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
56b4e23ea4
commit
1ddd2084b9
10 changed files with 201 additions and 23 deletions
58
ANNOUNCE
Normal file
58
ANNOUNCE
Normal file
|
@ -0,0 +1,58 @@
|
|||
|
||||
The GNUstep Database Library 2 Package, version 0.10.1 is now available.
|
||||
|
||||
What is the GNUstep Database Library 2 Package?
|
||||
====================================
|
||||
|
||||
The GNUstep Database Library 2 (GDL2) is a set of libraries to map
|
||||
Objective-C objects to rows of relational database management systems
|
||||
(RDBMS). It aims to be compatible with Enterprise Objects Framework
|
||||
(EOF) as released with WebObjects 4.5 from Apple Inc. It requires
|
||||
- the GNUstep Make Package
|
||||
- the Base Package
|
||||
- the GUI Package
|
||||
- the Back Package
|
||||
- the GORM Package
|
||||
|
||||
|
||||
The package has been tested on:
|
||||
|
||||
Debian Sarge/x86
|
||||
Debian Etch/x86
|
||||
Debian Sid/x86 (Sept 2006)
|
||||
|
||||
Changes in version 0.10.1
|
||||
=========================
|
||||
|
||||
This followup release only includes packaging issues. Not all of the
|
||||
subprojects were installed into the correct GNUSTEP_INSTALLATION_DIR
|
||||
by default.
|
||||
|
||||
Changes in version 0.10.0
|
||||
=========================
|
||||
|
||||
This release includes many bug fixes and partial rewrites of
|
||||
existing implementations and should be more robust that the
|
||||
previous release.
|
||||
|
||||
This release includes new preliminary classes like
|
||||
EOSharedEditingContext, EOEvent, EOEventCenter and EOMultiReaderLock
|
||||
but these haven't seen much testing yet and are partially implemented.
|
||||
|
||||
This release includes an initial version of EOInterface, the library
|
||||
or framework to connect GUI elements to GDL2 classes.
|
||||
|
||||
Matt Rice contributed an initial DBModeler application, an EOModler
|
||||
framework implementation, a GDL2Palette for GROM and lots of time
|
||||
debuging, testing and filling in missing implementations.
|
||||
|
||||
Where can you get it? How can you compile it?
|
||||
==============================================
|
||||
|
||||
The gnustep-dl2-0.10.1.tar.gz distribution file has been placed at
|
||||
<http://ftp.gnustep.org/pub/gnustep/libs>
|
||||
|
||||
Please log bug reports on the GNUstep project page
|
||||
<http://savannah.gnu.org/bugs/?group=gnustep> or send bug reports to
|
||||
<bug-gnustep@gnu.org>.
|
||||
|
21
ChangeLog
21
ChangeLog
|
@ -1,3 +1,24 @@
|
|||
2006-09-14 David Ayers <ayers@fsfe.org>
|
||||
|
||||
* Version 0.10.1
|
||||
* README: Correct modeler application name.
|
||||
* ANNOUNCE: Update to followup release.
|
||||
* NEWS: Ditto.
|
||||
|
||||
2006-09-14 David Ayers <ayers@fsfe.org>
|
||||
|
||||
* EOInterface/GNUmakefile
|
||||
* DBModeler/Inspectors/GNUmakefile
|
||||
* DBModeler/GNUmakefile
|
||||
* EOAdaptors/Postgres95/LoginPanel/GNUmakefile
|
||||
* GDL2Palette/GNUmakefile: Add missing copyright notices.
|
||||
Install into GNUSTEP_SYSTEM_ROOT by default.
|
||||
|
||||
2006-09-14 David Ayers <ayers@fsfe.org>
|
||||
|
||||
* Version 0.10.0
|
||||
* ANNOUNCE: New file.
|
||||
|
||||
2006-09-13 Matt Rice <ratmice@yahoo.com>
|
||||
|
||||
* EOControl/EOObserver.m (EOObserverCenter +_forgetObject:): New
|
||||
|
|
|
@ -1,3 +1,31 @@
|
|||
#
|
||||
# DBModeler makefile for GNUstep Database Library.
|
||||
#
|
||||
# Copyright (C) 2005,2006 Free Software Foundation, Inc.
|
||||
#
|
||||
# Author: Matt Rice <ratmice@yahoo.com>
|
||||
#
|
||||
# This file is part of the GNUstep Database Library.
|
||||
#
|
||||
# This library is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU Library General Public
|
||||
# License as published by the Free Software Foundation; either
|
||||
# version 2 of the License, or (at your option) any later version.
|
||||
#
|
||||
# This library is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# Library General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Library General Public
|
||||
# License along with this library; see the file COPYING.LIB.
|
||||
# If not, write to the Free Software Foundation, Inc.,
|
||||
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
#
|
||||
|
||||
# Install into the system root by default
|
||||
GNUSTEP_INSTALLATION_DIR = $(GNUSTEP_SYSTEM_ROOT)
|
||||
|
||||
include $(GNUSTEP_MAKEFILES)/common.make
|
||||
include ../gdl2.make
|
||||
|
||||
|
|
|
@ -1,3 +1,31 @@
|
|||
#
|
||||
# DBModeler/Inspectors makefile for GNUstep Database Library.
|
||||
#
|
||||
# Copyright (C) 2005,2006 Free Software Foundation, Inc.
|
||||
#
|
||||
# Author: Matt Rice <ratmice@yahoo.com>
|
||||
#
|
||||
# This file is part of the GNUstep Database Library.
|
||||
#
|
||||
# This library is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU Library General Public
|
||||
# License as published by the Free Software Foundation; either
|
||||
# version 2 of the License, or (at your option) any later version.
|
||||
#
|
||||
# This library is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# Library General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Library General Public
|
||||
# License along with this library; see the file COPYING.LIB.
|
||||
# If not, write to the Free Software Foundation, Inc.,
|
||||
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
#
|
||||
|
||||
# Install into the system root by default
|
||||
GNUSTEP_INSTALLATION_DIR = $(GNUSTEP_SYSTEM_ROOT)
|
||||
|
||||
include $(GNUSTEP_MAKEFILES)/common.make
|
||||
SUBPROJECT_NAME=Inspectors
|
||||
ADDITIONAL_INCLUDE_DIRS+=-I../../
|
||||
|
|
|
@ -23,6 +23,9 @@
|
|||
# If not, write to the Free Software Foundation, Inc.,
|
||||
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
|
||||
# Install into the system root by default
|
||||
GNUSTEP_INSTALLATION_DIR = $(GNUSTEP_SYSTEM_ROOT)
|
||||
|
||||
include $(GNUSTEP_MAKEFILES)/common.make
|
||||
|
||||
BUNDLE_NAME=LoginPanel
|
||||
|
|
|
@ -23,6 +23,9 @@
|
|||
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
#
|
||||
|
||||
# Install into the system root by default
|
||||
GNUSTEP_INSTALLATION_DIR = $(GNUSTEP_SYSTEM_ROOT)
|
||||
|
||||
include $(GNUSTEP_MAKEFILES)/common.make
|
||||
|
||||
include ../Version
|
||||
|
|
|
@ -1,3 +1,31 @@
|
|||
#
|
||||
# GDL2Palette makefile for GNUstep Database Library.
|
||||
#
|
||||
# Copyright (C) 2005,2006 Free Software Foundation, Inc.
|
||||
#
|
||||
# Written by: Matt Rice <ratmice@yahoo.org>
|
||||
#
|
||||
# This file is part of the GNUstep Database Library.
|
||||
#
|
||||
# This library is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU Library General Public
|
||||
# License as published by the Free Software Foundation; either
|
||||
# version 2 of the License, or (at your option) any later version.
|
||||
#
|
||||
# This library is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# Library General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Library General Public
|
||||
# License along with this library; see the file COPYING.LIB.
|
||||
# If not, write to the Free Software Foundation, Inc.,
|
||||
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
#
|
||||
|
||||
# Install into the system root by default
|
||||
GNUSTEP_INSTALLATION_DIR = $(GNUSTEP_SYSTEM_ROOT)
|
||||
|
||||
include $(GNUSTEP_MAKEFILES)/common.make
|
||||
include ../gdl2.make
|
||||
|
||||
|
|
51
NEWS
51
NEWS
|
@ -1,34 +1,43 @@
|
|||
News
|
||||
****
|
||||
|
||||
The currently released version of the library is `0.10.0'.
|
||||
The currently released version of the library is `0.10.1'.
|
||||
|
||||
'alpha' release 1.10.1
|
||||
========================================
|
||||
|
||||
This release only fixes packaging issues. Some of the sub projects
|
||||
were not installed into the the correct GNUSTEP_INSTALLATION_DIR.
|
||||
|
||||
|
||||
'alpha' release 1.10.0
|
||||
========================================
|
||||
* This release includes many bug fixes and partial rewrites of
|
||||
existing implementations and should be more robust that the
|
||||
previous release.
|
||||
|
||||
This release includes new preliminary classes like
|
||||
EOSharedEditingContext, EOEvent, EOEventCenter and EOMultiReaderLock
|
||||
but these haven't seen much testing yet and are partially implemented.
|
||||
This release includes many bug fixes and partial rewrites of
|
||||
existing implementations and should be more robust that the
|
||||
previous release.
|
||||
|
||||
This release includes an initial version of EOInterface, the library
|
||||
or framework to connect GUI elements to GDL2 classes.
|
||||
This release includes new preliminary classes like
|
||||
EOSharedEditingContext, EOEvent, EOEventCenter and EOMultiReaderLock
|
||||
but these haven't seen much testing yet and are partially implemented.
|
||||
|
||||
This release includes an initial version of EOInterface, the library
|
||||
or framework to connect GUI elements to GDL2 classes.
|
||||
|
||||
Matt Rice contributed an initial DBModeler application, an EOModler
|
||||
framework implementation, a GDL2Palette for GROM and lots of time
|
||||
debuging, testing and filling in missing implementations.
|
||||
|
||||
Matt Rice contributed an initial DBModeler application, an EOModler
|
||||
framework implementation, a GDL2Palette for GROM and lots of time
|
||||
debuging, testing and filling in missing implementations.
|
||||
|
||||
Initial 'alpha' release 1.9.1
|
||||
========================================
|
||||
|
||||
* This is the first alpha release package of GDL2. First and
|
||||
foremost this is the result of a tremendous effort of
|
||||
Mirko Viviani <mirko.viviani@e-cremona.it> to create a database
|
||||
library aiming a compatibility with Enterprise Objects Frameworks
|
||||
from Apple Inc. It is still missing major components and many of
|
||||
the existing classes are not fully implemented. Yet the package
|
||||
does provide a basis for production level code. As major
|
||||
features are completed, they should be mentioned by release in
|
||||
this file.
|
||||
This is the first alpha release package of GDL2. First and
|
||||
foremost this is the result of a tremendous effort of
|
||||
Mirko Viviani <mirko.viviani@e-cremona.it> to create a database
|
||||
library aiming a compatibility with Enterprise Objects Frameworks
|
||||
from Apple Inc. It is still missing major components and many of
|
||||
the existing classes are not fully implemented. Yet the package
|
||||
does provide a basis for production level code. As major
|
||||
features are completed, they should be mentioned by release in
|
||||
this file.
|
||||
|
|
2
README
2
README
|
@ -40,7 +40,7 @@ the PostgreSQL database. Even though the Adaptor is still called
|
|||
Postgres95 we aim to support PostgreSQL 7.2 and higher API. In fact
|
||||
the Adaptor may very soon be renamed to PostgreSQL.
|
||||
|
||||
- EOModeler
|
||||
- DBModeler
|
||||
|
||||
GDL2 will offers a UI application to create and maintain .eomodel(d)
|
||||
files. This is the first release of a preliminary version.
|
||||
|
|
2
Version
2
Version
|
@ -7,7 +7,7 @@ GNUSTEP_GCC=2.95.2
|
|||
# The version number of this release.
|
||||
MAJOR_VERSION=0
|
||||
MINOR_VERSION=10
|
||||
SUBMINOR_VERSION=0
|
||||
SUBMINOR_VERSION=1
|
||||
GDL_VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${SUBMINOR_VERSION}
|
||||
VERSION=${GDL_VERSION}
|
||||
|
||||
|
|
Loading…
Reference in a new issue