mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-20 06:51:08 +00:00
* clang-format: Do not use tabs * Ignore clangd cache and compile_commands * NSBlockOperation: Fix memory leak * NSHTTPCookie: Fix expires date parsing * NSHTTPCookie: Release DateFormatter after use * NSOperation: Remove all objects at end of execution * Reimplementation of NSURLSession * NSURLSession: Update expiration dates in test * Update ChangeLog * Fix trivial compiler warning caused by missing import * Import GSDispatch.h for definition of DISPATCH_QUEUE_SERIAL * Import common.h early to avoid header conflict * Fix import order to avoid conflicts and ensure we have correct localisation macro * Check for presence of dispatch_cancel * Cancel timer using dispatch_source_cancel() if dispatch_cancel() is missing. * NSURLSession: Replace dispatch_io with dispatch_source in unit test HTTP server --------- Co-authored-by: hmelder <service@hugomelder.com>
113 lines
No EOL
2.1 KiB
Text
113 lines
No EOL
2.1 KiB
Text
# Build products
|
|
obj
|
|
config.*
|
|
GSConfig.h
|
|
base.make
|
|
Info-gnustep.plist
|
|
dynamic-load.h
|
|
Tests/base/*/GNUmakefile
|
|
*.log
|
|
*.sum
|
|
Tools/BaseTools/dependencies
|
|
Source/gnustep-base.pc
|
|
|
|
# Unit test byproducts
|
|
*.err
|
|
*.out
|
|
|
|
# Core files
|
|
*.core
|
|
|
|
# Autoconf
|
|
autom4te.cache
|
|
|
|
# Test products
|
|
Tests/base/coding/*.type
|
|
Tests/base/NSBundle/Resources/TestBundle.bundle/
|
|
Tests/base/NSBundle/Resources/TestFramework.framework/
|
|
Tests/base/NSBundle/Resources/derived_src/
|
|
Tests/base/NSConnection/Resources/TestConnection.bundle/
|
|
Tests/base/NSInvocation/Resources/InvokeProxy.bundle/
|
|
Tests/base/NSURL/Capture.dat
|
|
Tests/base/NSURL/KAResponse.dat
|
|
Tests/base/NSURL/SimpleResponse.dat
|
|
Tests/base/NSURLConnection/Helpers/TestConnection.bundle/
|
|
Tests/base/coding/long-8.type
|
|
Tests/base/coding/ulong-8.type
|
|
Tests/*.tmp
|
|
|
|
# Editor byproducts
|
|
*.orig
|
|
*.swp
|
|
\#*\#
|
|
*~
|
|
|
|
# MacOS Desktop Services Store
|
|
.DS_Store
|
|
|
|
# Created by https://www.gitignore.io/api/xcode
|
|
# Edit at https://www.gitignore.io/?templates=xcode
|
|
|
|
### Xcode ###
|
|
# Xcode
|
|
#
|
|
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
|
|
|
|
## User settings
|
|
xcuserdata/
|
|
|
|
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
|
|
*.xcscmblueprint
|
|
*.xccheckout
|
|
|
|
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
|
|
build/
|
|
DerivedData/
|
|
*.moved-aside
|
|
*.pbxuser
|
|
!default.pbxuser
|
|
*.mode1v3
|
|
!default.mode1v3
|
|
*.mode2v3
|
|
!default.mode2v3
|
|
*.perspectivev3
|
|
!default.perspectivev3
|
|
|
|
## Xcode Patch
|
|
*.xcodeproj/*
|
|
!*.xcodeproj/project.pbxproj
|
|
!*.xcodeproj/xcshareddata/
|
|
!*.xcworkspace/contents.xcworkspacedata
|
|
/*.gcno
|
|
|
|
### Xcode Patch ###
|
|
**/xcshareddata/WorkspaceSettings.xcsettings
|
|
|
|
# clangd cache
|
|
.cache
|
|
|
|
# compile commands
|
|
compile_commands.json
|
|
|
|
# End of https://www.gitignore.io/api/xcode
|
|
|
|
.cache
|
|
compile_commands.json
|
|
**.kdev4
|
|
|
|
# Documentation
|
|
Documentation/Base*
|
|
Documentation/General
|
|
Documentation/manual
|
|
Documentation/ReleaseNotes
|
|
Documentation/ANNOUNCE
|
|
Documentation/*.pdf
|
|
Documentation/README
|
|
Documentation/version.texi
|
|
Documentation/*.aux
|
|
Documentation/*.toc
|
|
Documentation/INSTALL
|
|
Documentation/NEWS
|
|
**/dependencies
|
|
Source/Base.gsdoc
|
|
Source/BaseAdditions.gsdoc |