Skip to content

Commit 2651cdc

Browse files
committed
Remove last SVN cruft
1 parent ac1d053 commit 2651cdc

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

Diff for: CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,5 +138,5 @@ ELSE(WIN32)
138138
ENDIF(WIN32)
139139

140140
SET(CPACK_SOURCE_PACKAGE_FILE_NAME "libnfc-${VERSION}")
141-
SET(CPACK_SOURCE_IGNORE_FILES "~$" "/\\\\.svn/" "bin/")
141+
SET(CPACK_SOURCE_IGNORE_FILES "~$" "/\\\\.git/" "bin/")
142142
INCLUDE(CPack)

Diff for: Doxyfile.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -629,7 +629,7 @@ EXCLUDE_SYMLINKS = NO
629629
# against the file with absolute path, so to exclude all test directories
630630
# for example use the pattern */test/*
631631

632-
EXCLUDE_PATTERNS = */.svn/*
632+
EXCLUDE_PATTERNS = .git/*
633633

634634
# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
635635
# (namespaces, classes, functions, etc.) that should be excluded from the

Diff for: debian/control

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ Maintainer: Thomas Hood <[email protected]>
55
Build-Depends: debhelper (>= 7.0.50~), dh-autoreconf, libtool, pkg-config, libusb-dev
66
Standards-Version: 3.9.2
77
Homepage: http://www.libnfc.org/
8-
Vcs-Svn: http://libnfc.googlecode.com/svn/trunk
9-
Vcs-Browser: http://code.google.com/p/libnfc/source/browse/#svn/trunk
8+
Vcs-Git: https://code.googlecode.com/p/libnfc/
9+
Vcs-Browser: http://code.google.com/p/libnfc/source/browse/
1010

1111
Package: libnfc3
1212
Architecture: any

Diff for: libnfc/nfc.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1097,7 +1097,7 @@ nfc_version(void)
10971097
return GIT_REVISION;
10981098
#else
10991099
return PACKAGE_VERSION;
1100-
#endif // SVN_REVISION
1100+
#endif // GIT_REVISION
11011101
}
11021102

11031103
/** @ingroup misc

Diff for: make_release.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ echo ">>> Cleaning sources..."
1313
# First, clean what we can
1414
rm -f configure config.h config.h.in
1515
autoreconf -is && ./configure && make distclean
16-
svn propget svn:ignore . | xargs rm -rf
16+
git clean -dfX
1717
echo "<<< Sources cleaned."
1818

1919
if [ ! -f $LIBNFC_AUTOTOOLS_ARCHIVE ]; then

0 commit comments

Comments
 (0)