r8667 - in /general/libsockets/trunk/debian: README.source changelog control copyright patches/00list rules source/ source/format
cleto-guest at users.alioth.debian.org
cleto-guest at users.alioth.debian.org
Tue Jun 1 10:14:17 UTC 2010
Author: cleto-guest
Date: Tue Jun 1 10:14:15 2010
New Revision: 8667
URL: http://svn.debian.org/wsvn/pkg-vdr-dvb/?sc=1&rev=8667
Log:
libsockets 2.3.9.2 packaged
Added:
general/libsockets/trunk/debian/README.source
general/libsockets/trunk/debian/source/
general/libsockets/trunk/debian/source/format
Modified:
general/libsockets/trunk/debian/changelog
general/libsockets/trunk/debian/control
general/libsockets/trunk/debian/copyright
general/libsockets/trunk/debian/patches/00list
general/libsockets/trunk/debian/rules
Added: general/libsockets/trunk/debian/README.source
URL: http://svn.debian.org/wsvn/pkg-vdr-dvb/general/libsockets/trunk/debian/README.source?rev=8667&op=file
==============================================================================
--- general/libsockets/trunk/debian/README.source (added)
+++ general/libsockets/trunk/debian/README.source Tue Jun 1 10:14:15 2010
@@ -1,0 +1,6 @@
+
+ We use dpatch for patch handling inside our package. Please see
+/usr/share/doc/dpatch/README.source.gz (if you have dpatch installed)
+for documentation on how to use dpatch.
+
+ -- Cleto Martin Angelina <cleto.martin at gmail.com>, Tue, 1 Jun 2010 11:48:41 +0200
Modified: general/libsockets/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-vdr-dvb/general/libsockets/trunk/debian/changelog?rev=8667&op=diff
==============================================================================
--- general/libsockets/trunk/debian/changelog (original)
+++ general/libsockets/trunk/debian/changelog Tue Jun 1 10:14:15 2010
@@ -1,3 +1,12 @@
+libsockets (2.3.9.2-1) experimental; urgency=low
+
+ * New upstream release
+ * 02_gcc43.dpatch is not neccesary
+ * Standards-Version to 3.8.4
+ * -fPIC option is provided by upstream now
+
+ -- Cleto Martin Angelina <cleto.martin at gmail.com> Fri, 28 May 2010 22:48:45 +0200
+
libsockets (2.2.5-4) experimental; urgency=low
* Added 03_gcc44.dpatch from Hanno Zulla
Modified: general/libsockets/trunk/debian/control
URL: http://svn.debian.org/wsvn/pkg-vdr-dvb/general/libsockets/trunk/debian/control?rev=8667&op=diff
==============================================================================
--- general/libsockets/trunk/debian/control (original)
+++ general/libsockets/trunk/debian/control Tue Jun 1 10:14:15 2010
@@ -2,12 +2,13 @@
Section: libdevel
Priority: extra
Maintainer: Debian VDR Team <pkg-vdr-dvb-devel at lists.alioth.debian.org>
-Uploaders: Tobias Grimm <etobi at debian.org>
-Build-Depends: cdbs, dpatch, debhelper (>= 5)
-Standards-Version: 3.8.0
+Uploaders: Tobias Grimm <etobi at debian.org>, Cleto Martin Angelina
+ <cleto.martin at gmail.com>
+Build-Depends: dpatch, cdbs, debhelper (>= 5)
+Standards-Version: 3.8.4
Package: libsockets-dev
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
-Description: C++ Sockets Library
+Description: Development files for libsockets
A C++ class library wrapping the berkeley sockets C API.
Modified: general/libsockets/trunk/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-vdr-dvb/general/libsockets/trunk/debian/copyright?rev=8667&op=diff
==============================================================================
--- general/libsockets/trunk/debian/copyright (original)
+++ general/libsockets/trunk/debian/copyright Tue Jun 1 10:14:15 2010
@@ -24,6 +24,6 @@
MA 02110-1301, USA.
On Debian systems, the complete text of the GNU General
-Public License can be found in `/usr/share/common-licenses/GPL'.
+Public License can be found in `/usr/share/common-licenses/GPL-2'.
The Debian packaging is (C) 2007, Sebastian Dellit <sebo at aritamba.de>
Modified: general/libsockets/trunk/debian/patches/00list
URL: http://svn.debian.org/wsvn/pkg-vdr-dvb/general/libsockets/trunk/debian/patches/00list?rev=8667&op=diff
==============================================================================
--- general/libsockets/trunk/debian/patches/00list (original)
+++ general/libsockets/trunk/debian/patches/00list Tue Jun 1 10:14:15 2010
@@ -1,3 +1,2 @@
01_libsockets-dev-2.2.5_ssloff
-02_gcc43
03_gcc44
Modified: general/libsockets/trunk/debian/rules
URL: http://svn.debian.org/wsvn/pkg-vdr-dvb/general/libsockets/trunk/debian/rules?rev=8667&op=diff
==============================================================================
--- general/libsockets/trunk/debian/rules (original)
+++ general/libsockets/trunk/debian/rules Tue Jun 1 10:14:15 2010
@@ -1,5 +1,4 @@
#!/usr/bin/make -f
-
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/rules/dpatch.mk
include /usr/share/cdbs/1/class/makefile.mk
@@ -8,8 +7,17 @@
DEB_MAKE_CLEAN_TARGET := clean
DEB_MAKE_BUILD_TARGET := all
DEB_MAKE_INSTALL_TARGET := install DESTDIR=$(CURDIR)/debian/libsockets-dev
-DEB_MAKE_ENVVARS = CFLAGS="-fPIC"
+#DEB_MAKE_ENVVARS = CFLAGS="-fPIC"
DEB_MAKE_INVOKE = $(DEB_MAKE_ENVVARS) make -C $(DEB_BUILDDIR)
# example to work around dirty makefile
DEB_MAKE_INSTALL_TARGET = install PREFIX=$(CURDIR)/debian/libsockets-dev/usr
+
+build/libsockets-dev::
+ $(MAKE) pc
+ sed -i 's/-lssl //g' $(CURDIR)/pkgconfig/libsockets2.pc
+
+install/libsockets-dev::
+ install -vd $(CURDIR)/debian/libsockets-dev/usr/lib/pkgconfig
+ install -m 644 pkgconfig/libsockets2.pc $(CURDIR)/debian/libsockets-dev/usr/lib/pkgconfig/sockets.pc
+ rm -rf $(CURDIR)/debian/libsockets-dev/usr/bin
Added: general/libsockets/trunk/debian/source/format
URL: http://svn.debian.org/wsvn/pkg-vdr-dvb/general/libsockets/trunk/debian/source/format?rev=8667&op=file
==============================================================================
--- general/libsockets/trunk/debian/source/format (added)
+++ general/libsockets/trunk/debian/source/format Tue Jun 1 10:14:15 2010
@@ -1,0 +1,2 @@
+1.0
+
More information about the pkg-vdr-dvb-changes
mailing list