Skip to content

Instantly share code, notes, and snippets.

View jdhealy's full-sized avatar

J.D. Healy jdhealy

View GitHub Profile
@jdhealy
jdhealy / carthage.rb
Last active June 24, 2020 15:53
Carthage 0.35.0 · Tryout Fix for Cross File-System–Device Replace FS Object — Also, patched to compile under swiftlang-1200.0.16.9
class Carthage < Formula
desc "Decentralized dependency manager for Cocoa"
homepage "https://github.com/Carthage/Carthage"
head "https://github.com/Carthage/Carthage.git",
:revision => 'c7550f832f23d2c00bf0c014351719839593c641',
:using => :git,
:shallow => false
depends_on :xcode => ["8.2", :build]
@jdhealy
jdhealy / carthage-patch-no-destination-flags-for-simulator-builds.diff
Created January 28, 2019 17:32
carthage 0.30.2 patch — no-destination-flags-for-simulator-builds.diff
diff --git a/Source/CarthageKit/Xcode.swift b/Source/CarthageKit/Xcode.swift
index ba15cd80..34b8632a 100644
--- a/Source/CarthageKit/Xcode.swift
+++ b/Source/CarthageKit/Xcode.swift
@@ -642,16 +642,8 @@ private func build(sdk: SDK, with buildArgs: BuildArguments, in workingDirectory
return SignalProducer(value: nil)
}
- return fetchDestination()
+ return SignalProducer<String?, CarthageError>(value: nil)
@jdhealy
jdhealy / carthage.rb
Last active September 25, 2018 14:01
class Carthage < Formula
desc "Decentralized dependency manager for Cocoa"
homepage "https://github.com/Carthage/Carthage"
url "https://github.com/Carthage/Carthage.git",
:tag => "0.31.0",
:revision => "04994e9e844d53220d8796a648a7dad12a5808c9",
:shallow => false
head "https://github.com/Carthage/Carthage.git", :shallow => false
depends_on :xcode => ["9.0", :build]
This file has been truncated, but you can view the full file.
# Hosts contributed by J.D. Healy
0.0.0.0 spreediscount.com
# This hosts file is a merged collection of hosts from reputable sources,
# with a dash of crowd sourcing via Github
#
# Date: September 09 2018
# Extensions added to this file: fakenews, gambling
# Number of unique domains: 62,406
require 'formula'
class Darkice < Formula
homepage 'http://code.google.com/p/darkice/'
url 'https://darkice.googlecode.com/files/darkice-1.2.tar.gz'
sha1 '508eb0560a7cdf0990a8793f4b8d324ae74bc343'
head 'http://darkice.googlecode.com/svn/darkice/branches/darkice-macosx'
depends_on 'libvorbis'
@jdhealy
jdhealy / Evernote Installer.py
Last active December 26, 2015 11:59 — forked from omz/Evernote Installer.py
Update `evernote` to 1.25.0
# Simple installer script for using the Evernote SDK in Pythonista
#
# This script should be run from the root directory. In order to keep things
# tidy, it installs the module and all its dependencies in a directory named
# 'evernote-sdk'. In order to be able to import it, you have to add that to
# your import path, like this:
#
# import sys
# sys.path.append('evernote-sdk')
#