Remove last SVN cruft

This commit is contained in:
Philippe Teuwen 2012-11-27 18:56:54 +01:00
parent ac1d05328b
commit 2651cdce2e
5 changed files with 6 additions and 6 deletions

View file

@ -138,5 +138,5 @@ ELSE(WIN32)
ENDIF(WIN32) ENDIF(WIN32)
SET(CPACK_SOURCE_PACKAGE_FILE_NAME "libnfc-${VERSION}") SET(CPACK_SOURCE_PACKAGE_FILE_NAME "libnfc-${VERSION}")
SET(CPACK_SOURCE_IGNORE_FILES "~$" "/\\\\.svn/" "bin/") SET(CPACK_SOURCE_IGNORE_FILES "~$" "/\\\\.git/" "bin/")
INCLUDE(CPack) INCLUDE(CPack)

View file

@ -629,7 +629,7 @@ EXCLUDE_SYMLINKS = NO
# against the file with absolute path, so to exclude all test directories # against the file with absolute path, so to exclude all test directories
# for example use the pattern */test/* # for example use the pattern */test/*
EXCLUDE_PATTERNS = */.svn/* EXCLUDE_PATTERNS = .git/*
# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
# (namespaces, classes, functions, etc.) that should be excluded from the # (namespaces, classes, functions, etc.) that should be excluded from the

4
debian/control vendored
View file

@ -5,8 +5,8 @@ Maintainer: Thomas Hood <jdthood@gmail.com>
Build-Depends: debhelper (>= 7.0.50~), dh-autoreconf, libtool, pkg-config, libusb-dev Build-Depends: debhelper (>= 7.0.50~), dh-autoreconf, libtool, pkg-config, libusb-dev
Standards-Version: 3.9.2 Standards-Version: 3.9.2
Homepage: http://www.libnfc.org/ Homepage: http://www.libnfc.org/
Vcs-Svn: http://libnfc.googlecode.com/svn/trunk Vcs-Git: https://code.googlecode.com/p/libnfc/
Vcs-Browser: http://code.google.com/p/libnfc/source/browse/#svn/trunk Vcs-Browser: http://code.google.com/p/libnfc/source/browse/
Package: libnfc3 Package: libnfc3
Architecture: any Architecture: any

View file

@ -1097,7 +1097,7 @@ nfc_version(void)
return GIT_REVISION; return GIT_REVISION;
#else #else
return PACKAGE_VERSION; return PACKAGE_VERSION;
#endif // SVN_REVISION #endif // GIT_REVISION
} }
/** @ingroup misc /** @ingroup misc

View file

@ -13,7 +13,7 @@ echo ">>> Cleaning sources..."
# First, clean what we can # First, clean what we can
rm -f configure config.h config.h.in rm -f configure config.h config.h.in
autoreconf -is && ./configure && make distclean autoreconf -is && ./configure && make distclean
svn propget svn:ignore . | xargs rm -rf git clean -dfX
echo "<<< Sources cleaned." echo "<<< Sources cleaned."
if [ ! -f $LIBNFC_AUTOTOOLS_ARCHIVE ]; then if [ ! -f $LIBNFC_AUTOTOOLS_ARCHIVE ]; then