@@ -2,7 +2,7 @@
|
|||||||
# Contributor: James Brechtel <james@leonard-brechtel.com.com>
|
# Contributor: James Brechtel <james@leonard-brechtel.com.com>
|
||||||
|
|
||||||
pkgname=converge
|
pkgname=converge
|
||||||
_pkgver=0.1.0.0
|
_pkgver=0.1.0.1
|
||||||
pkgver=${_pkgver//-/_}
|
pkgver=${_pkgver//-/_}
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
pkgdesc="Auto-sync git repositories by watching for changes, committing, pulling, and pushing"
|
pkgdesc="Auto-sync git repositories by watching for changes, committing, pulling, and pushing"
|
||||||
|
|||||||
+127
@@ -0,0 +1,127 @@
|
|||||||
|
cabal-version: 2.2
|
||||||
|
|
||||||
|
-- This file has been generated from package.yaml by hpack version 0.38.1.
|
||||||
|
--
|
||||||
|
-- see: https://github.com/sol/hpack
|
||||||
|
|
||||||
|
name: converge
|
||||||
|
version: 0.1.0.1
|
||||||
|
synopsis: Auto-sync a git repository by watching for changes, committing, and pulling
|
||||||
|
description: Converge watches a git repository for file changes, automatically
|
||||||
|
commits them, and pulls from the remote. It notifies the user via
|
||||||
|
libnotify/notify-send when merge conflicts arise.
|
||||||
|
author: James Leonard-Brechtel
|
||||||
|
maintainer: james@leonard-brechtel.com
|
||||||
|
copyright: 2026 James Leonard-Brechtel
|
||||||
|
license: BSD-3-Clause
|
||||||
|
build-type: Simple
|
||||||
|
|
||||||
|
library
|
||||||
|
exposed-modules:
|
||||||
|
Converge
|
||||||
|
other-modules:
|
||||||
|
Paths_converge
|
||||||
|
autogen-modules:
|
||||||
|
Paths_converge
|
||||||
|
hs-source-dirs:
|
||||||
|
src
|
||||||
|
default-extensions:
|
||||||
|
OverloadedStrings
|
||||||
|
RecordWildCards
|
||||||
|
ScopedTypeVariables
|
||||||
|
TupleSections
|
||||||
|
ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wmissing-export-lists -Wmissing-home-modules -Wpartial-fields -Wredundant-constraints
|
||||||
|
build-depends:
|
||||||
|
aeson
|
||||||
|
, async
|
||||||
|
, base >=4.7 && <5
|
||||||
|
, bytestring
|
||||||
|
, directory
|
||||||
|
, filepath
|
||||||
|
, fsnotify
|
||||||
|
, http-client
|
||||||
|
, http-client-tls
|
||||||
|
, http-types
|
||||||
|
, optparse-applicative
|
||||||
|
, process
|
||||||
|
, text
|
||||||
|
, time
|
||||||
|
, unix
|
||||||
|
, yaml
|
||||||
|
default-language: Haskell2010
|
||||||
|
|
||||||
|
executable converge
|
||||||
|
main-is: Main.hs
|
||||||
|
other-modules:
|
||||||
|
Paths_converge
|
||||||
|
autogen-modules:
|
||||||
|
Paths_converge
|
||||||
|
hs-source-dirs:
|
||||||
|
app
|
||||||
|
default-extensions:
|
||||||
|
OverloadedStrings
|
||||||
|
RecordWildCards
|
||||||
|
ScopedTypeVariables
|
||||||
|
TupleSections
|
||||||
|
ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wmissing-export-lists -Wmissing-home-modules -Wpartial-fields -Wredundant-constraints -threaded -rtsopts -with-rtsopts=-N
|
||||||
|
build-depends:
|
||||||
|
aeson
|
||||||
|
, async
|
||||||
|
, base >=4.7 && <5
|
||||||
|
, bytestring
|
||||||
|
, converge
|
||||||
|
, directory
|
||||||
|
, filepath
|
||||||
|
, fsnotify
|
||||||
|
, http-client
|
||||||
|
, http-client-tls
|
||||||
|
, http-types
|
||||||
|
, optparse-applicative
|
||||||
|
, process
|
||||||
|
, text
|
||||||
|
, time
|
||||||
|
, unix
|
||||||
|
, yaml
|
||||||
|
default-language: Haskell2010
|
||||||
|
|
||||||
|
test-suite converge-test
|
||||||
|
type: exitcode-stdio-1.0
|
||||||
|
main-is: Spec.hs
|
||||||
|
other-modules:
|
||||||
|
GitCommitSpec
|
||||||
|
GitPullSpec
|
||||||
|
GitSafetySpec
|
||||||
|
RelaySpec
|
||||||
|
TestHelper
|
||||||
|
Paths_converge
|
||||||
|
autogen-modules:
|
||||||
|
Paths_converge
|
||||||
|
hs-source-dirs:
|
||||||
|
test
|
||||||
|
default-extensions:
|
||||||
|
OverloadedStrings
|
||||||
|
RecordWildCards
|
||||||
|
ScopedTypeVariables
|
||||||
|
TupleSections
|
||||||
|
ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wmissing-export-lists -Wmissing-home-modules -Wpartial-fields -Wredundant-constraints -threaded -rtsopts -with-rtsopts=-N
|
||||||
|
build-depends:
|
||||||
|
aeson
|
||||||
|
, async
|
||||||
|
, base >=4.7 && <5
|
||||||
|
, bytestring
|
||||||
|
, converge
|
||||||
|
, directory
|
||||||
|
, filepath
|
||||||
|
, fsnotify
|
||||||
|
, hspec
|
||||||
|
, http-client
|
||||||
|
, http-client-tls
|
||||||
|
, http-types
|
||||||
|
, optparse-applicative
|
||||||
|
, process
|
||||||
|
, temporary
|
||||||
|
, text
|
||||||
|
, time
|
||||||
|
, unix
|
||||||
|
, yaml
|
||||||
|
default-language: Haskell2010
|
||||||
+1
-1
@@ -1,5 +1,5 @@
|
|||||||
name: converge
|
name: converge
|
||||||
version: 0.1.0.0
|
version: 0.1.0.1
|
||||||
synopsis: Auto-sync a git repository by watching for changes, committing, and pulling
|
synopsis: Auto-sync a git repository by watching for changes, committing, and pulling
|
||||||
description: |
|
description: |
|
||||||
Converge watches a git repository for file changes, automatically
|
Converge watches a git repository for file changes, automatically
|
||||||
|
|||||||
Reference in New Issue
Block a user