This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 3.x development tree".
The branch, master has been updated via 9274f56f79550fc0e8224638a5a87f1ef5af8547 (commit) from d7d59bf3e02f1c4eeca934c377b63299f047fe88 (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit 9274f56f79550fc0e8224638a5a87f1ef5af8547 Author: Michael Tremer michael.tremer@ipfire.org Date: Sat Apr 30 13:45:05 2011 +0200
libsatsolver: Fix correct handling of package names.
Debian semantics screwed something up and I needed to replace that by the Fedora RPM style semantics.
Also, I made myself the maintainer of this package.
-----------------------------------------------------------------------
Summary of changes: pkgs/libsatsolver/libsatsolver.nm | 10 +++++++--- 1 files changed, 7 insertions(+), 3 deletions(-)
Difference in files: diff --git a/pkgs/libsatsolver/libsatsolver.nm b/pkgs/libsatsolver/libsatsolver.nm index 243e944..94f29cd 100644 --- a/pkgs/libsatsolver/libsatsolver.nm +++ b/pkgs/libsatsolver/libsatsolver.nm @@ -26,9 +26,9 @@ include $(PKGROOT)/Include
PKG_NAME = libsatsolver PKG_VER = 0.16.4 -PKG_REL = 3 +PKG_REL = 4
-PKG_MAINTAINER = +PKG_MAINTAINER = Michael Tremer michael.tremer@ipfire.org PKG_GROUPS = System/Libraries PKG_URL = http://gitorious.org/opensuse/sat-solver PKG_LICENSE = BSD @@ -52,12 +52,16 @@ define STAGE_PREPARE_CMDS # libraries. cd $(DIR_APP) && echo "TARGET_LINK_LIBRARIES(satsolverext satsolver $${EXPAT_LIBRARY} $${ZLIB_LIBRARY})" \ >> ext/CMakeLists.txt + + # Remove the RPM stuff when we build with -DFEDORA=1 because we + # do not support RPM. + cd $(DIR_APP) && sed -e "s/DEBIAN/FEDORA/g" -i ext/CMakeLists.txt endef
# Define debian as distro to get weak of rpm header files. define STAGE_BUILD cd $(DIR_APP) && mkdir build - cd $(DIR_APP)/build && cmake .. -DDEBIAN=1 \ + cd $(DIR_APP)/build && cmake .. -DFEDORA=1 \ -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_SKIP_RPATH=1
hooks/post-receive -- IPFire 3.x development tree