Page MenuHomeSoftware Heritage

No OneTemporary

diff --git a/Makefile.conf b/Makefile.conf
index e0d5cba4..50833708 100644
--- a/Makefile.conf
+++ b/Makefile.conf
@@ -1,155 +1,155 @@
# FOSSology Makefile configuration
# Copyright (C) 2009 Hewlett-Packard Development Company, L.P.
#
# This file contains the default values for variables used in the
# Makefiles and other locations in the source tree.
# If you want different values, you can override them on
# the make command line. For example
# 'make VERSION=0.8.0.beta3 all'
# changing them here is probably a bad idea, try to use the above
#####################################################################
# Project info
#####################################################################
# the name of our project
PROJECT=fossology
# the version of our project
# use the version with a date, when a build script is written to update it or
# when packages are made on an infrequent basis during development
-VERSION=1.4.0~20110426
+VERSION=1.4.0~20110429
# user for the project
PROJECTUSER=fossy
# group for the project
PROJECTGROUP=$(PROJECTUSER)
#####################################################################
# Install paths
#####################################################################
# pseudoroot for packaging purposes
DESTDIR=
# base of the program data tree
PREFIX=/usr/local
# executable programs that users run
BINDIR=$(PREFIX)/bin
# executable programs that sysadmins run
SBINDIR=$(PREFIX)/sbin
# config files
SYSCONFDIR=$(PREFIX)/etc
# init script root dir
INITDIR=/etc
# object code libraries
LIBDIR=$(PREFIX)/lib
# header files
INCLUDEDIR=$(PREFIX)/include
# executables/libraries that only our project uses
LIBEXECDIR=$(PREFIX)/lib/$(PROJECT)
# non-arch-specific data
DATAROOTDIR=$(PREFIX)/share
# non-arch-dependent program data
DATADIR=$(DATAROOTDIR)/$(PROJECT)
# hardcoded repo location, eventually this will be determined at runtime
REPODIR=/srv/$(PROJECT)/repository
# local state
LOCALSTATEDIR=/var/local
# project local state
PROJECTSTATEDIR=$(LOCALSTATEDIR)/lib/$(PROJECT)
# project logdir
LOGDIR=/var/log/$(PROJECT)
# man pages
MANDIR=$(DATAROOTDIR)/man
# Man pages in *roff format, man 1
MAN1DIR=$(MANDIR)/man1
# project documentation
DOCDIR=$(DATAROOTDIR)/doc/$(PROJECT)
# webroot
WEBDIR=$(DATADIR)/www
# php root
PHPDIR=$(DATADIR)/php
#####################################################################
# Agent install paths
#####################################################################
# arch-specific agent subdirs
AGENTDIR=$(LIBEXECDIR)/agents
# non-arch-specific agent subdirs
AGENTDATADIR=$(DATADIR)/agents
# agent runtime data
AGENTSTATEDIR=$(PROJECTSTATEDIR)/agents
#####################################################################
# Build variables
#####################################################################
SHELL = /bin/sh
CC=gcc
INSTALL = /usr/bin/install -D
INSTALL_PROGRAM = $(INSTALL)
INSTALL_DATA = ${INSTALL} -m 644
# if this ends up running in a non svn dir, like for example someone
# doing a build from a release tarball, the result returned is "exported"
# meaning the tree was exported from svn rather than a working copy,
# this is good. We also catch if they don't have svn.
SVN_REV:=$(shell svnversion -n . 2>&1 || echo "exported")
# these are the default cflags, recommended but not fully _required_
# if a user sets CFLAGS they get what they set it to and lose any they
# didn't include, which is the expected behavior
#CFLAGS=-O2 -Wall
CFLAGS=-g -O2 -Wall
# these are the required flags we don't want to go away if the user sets
# CFLAGS. note we _post_fix the existing CFLAGS in case the user wants to
# override stuff (GCS 7.2.3)
ALL_CFLAGS=-DSVN_REV="\"$(VERSION), $(SVN_REV)\"" $(CFLAGS)
# some variables to make using libfossrepo and libfossdb easier
# $TOP is set in each Makefile in order to make these work
DBPATH=$(TOP)/devel/libfossdb
DB=$(DBPATH)/libfossdb.a
REPOPATH=$(TOP)/devel/libfossrepo
REPO=$(REPOPATH)/libfossrepo.a
AGENTLIBPATH=$(TOP)/devel/libfossagent
AGENTLIB=$(AGENTLIBPATH)/libfossagent.a
PYTHONLIBPATH=$(TOP)/devel/libfosspython
PYTHONLIB=$(PYTHONLIBPATH)/libfosspython.so
PYTHONLIBEXECDIR=$(LIBEXECDIR)/lib
# for use when only generating objects and not linking
CFLAGS_DBO=-I`pg_config --includedir` -I$(DBPATH) -L$(DBPATH)
CFLAGS_REPOO=-I$(REPOPATH) -L$(REPOPATH)
CFLAGS_AGENTO=-I$(AGENTLIBPATH) -L$(AGENTLIBPATH)
# for use when linking too
CFLAGS_DB=-I`pg_config --includedir` -I$(DBPATH) -L$(DBPATH) -lfossdb
CFLAGS_REPO=-I$(REPOPATH) -L$(REPOPATH) -lfossrepo
CFLAGS_AGENT=-I$(AGENTLIBPATH) -L$(AGENTLIBPATH) -lfossagent
# where the php iPATHFILE include file lives
iPATHFILE=$(TOP)/ui/pathinclude.php
# for use when coverage C code
FLAG_COV=-fprofile-arcs -ftest-coverage
diff --git a/debian/changelog b/debian/changelog
index 75929fa6..72625874 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,138 +1,139 @@
-fossology (1.4.0~20110426+1) unstable; urgency=low
+fossology (1.4.0~20110429+1) unstable; urgency=low
* Non-maintainer upload.
*
+ *
- -- Build User <build@cranky.manage> Tue, 26 Apr 2011 14:04:48 -0700
+ -- Build User <build@cranky.manage> Fri, 29 Apr 2011 11:52:08 -0700
fossology (1.4.0~rc5+1) unstable; urgency=low
[ Build User ]
* Non-maintainer upload.
*
[ Mark Donohoe ]
*
-- Mark Donohoe <markd@localhost.localdomain> Fri, 22 Apr 2011 19:23:08 -0700
fossology (1.4.0~20110401+2) unstable; urgency=low
* Non-maintainer upload.
*
*
-- Fossolgy Test User <markd@4privet.ostt> Fri, 01 Apr 2011 10:13:44 -0600
fossology (1.4.0~20110331) unstable; urgency=low
[ Build User ]
* Unofficial build version.
[ Mark Donohoe ]
*
-- Mark Donohoe <markd@localhost.localdomain> Thu, 31 Mar 2011 11:34:35 -0700
fossology (1.3.0~20110107) unstable; urgency=low
* unofficial build version
*
[ Mark Donohoe ]
*
-- Mark Donohoe <markd@steezy> Fri, 07 Jan 2011 10:35:08 -0800
fossology (1.2.1~SVNBUILD-1) unstable; urgency=low
* unofficial build version
-- Matt Taggart <taggart@debian.org> Fri, 06 Aug 2010 16:53:49 -0700
fossology (1.2.0-2) unstable; urgency=low
* added upstream fixes to 1.2.0 that will go in 1.2.1
- fix pkgagent bug, svn#3363
- free temp name string on fopen error condition, svn#3362
- fix too many open files bug, svn#3361
- add error checking to fopen, svn#3359
- fix pkgagent dsc parsing, svn#3358
- fix copyright wrong variable name, svn#3355
- bucket agent fixes, svn#3351-3353
- fix missing copyright database, svn#3348
- init script restart output, svn#3346
-- Matt Taggart <taggart@debian.org> Fri, 06 Aug 2010 15:12:18 -0700
fossology (1.2.0-1) unstable; urgency=low
* New upstream release
* Added build-dep on python-pyrex, python, and python-dev, and
fossology-common depends on python due to libfosspython.
* Add python Depends to agent packages.
* Update standards version.
* Make references to licenses in copyright more specific.
* Add upstream SVN#3338 fix for ununpack p7zip.
-- Matt Taggart <taggart@debian.org> Tue, 20 Jul 2010 16:20:31 -0700
fossology (1.1.0-2) unstable; urgency=low
* Acknowledge NMU
- Replace depends on xpdf-utils with poppler-utils (Closes: #550653 )
* fix description to actually be a proper sentence (Closes: #539716 )
* change fossology-db to better explain that it will create the db
(Closes: #540252 )
* fix typo in init script Provides (will be in next upstream)
(Closes: #541854 )
* Build against PostgreSQL 8.4. (Closes: #559582 )
* patch from upstream SVN 2848 to build libs with -fPIC
* patch from upstream SVN 2484 to make selftest not check agent timestamps
* fix some lintian warnings and update to Policy 3.8.4
* patch from upstream SVN 2585 and 2605 to fix fo_notify
-- Matt Taggart <taggart@debian.org> Fri, 09 Apr 2010 00:29:34 -0700
fossology (1.1.0-1.1) unstable; urgency=low
* Non-maintainer upload.
* Replace depends on xpdf-utils with poppler-utils (Closes: #550653)
-- Alexander Reichle-Schmehl <tolimar@debian.org> Fri, 22 Jan 2010 23:31:16 +0100
fossology (1.1.0-1) unstable; urgency=low
* New upstream release (Closes: #521864, #531864, #531866 )
* fossology-scheduler-single now automatically gives the user a new
Scheduler.conf, to ensure that new agents get added.
fossology-scheduler still warns the user to review.
* Added mail-transport-agent Suggests since the new, but optional,
fo-notify needs sendmail(1).
-- Matt Taggart <taggart@debian.org> Thu, 16 Jul 2009 09:56:05 -0700
fossology (1.0.0-2) unstable; urgency=low
* Add explicit agents dependency on libextractor-plugins since
shlibdeps doesn't automatically figure it out.
* Add pointer in copyright to lgpl, thanks Frank Lichtenheld.
-- Matt Taggart <taggart@debian.org> Mon, 26 Jan 2009 13:31:23 -0800
fossology (1.0.0-1) unstable; urgency=low
* New upstream release.
-- Matt Taggart <taggart@debian.org> Wed, 17 Dec 2008 13:48:56 -0800
fossology (1.0.0~rc2-1) unstable; urgency=low
* Upstream 1.0.0 release candidate 2
-- Matt Taggart <taggart@debian.org> Tue, 02 Dec 2008 15:47:37 -0800
fossology (1.0.0~rc1-1) unstable; urgency=low
* Upstream 1.0.0 release candidate 1
-- Matt Taggart <taggart@debian.org> Wed, 12 Nov 2008 03:01:48 -0800

File Metadata

Mime Type
text/x-diff
Expires
Thu, Sep 18, 4:36 PM (1 d, 3 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3479417

Event Timeline