From 1fadb2a07e4ea0fce0b65ac875ec3f589ecee726 Mon Sep 17 00:00:00 2001 From: Pere Lev Date: Thu, 25 May 2023 13:18:18 +0300 Subject: [PATCH] Turn _boring into .gitignore & chmod +x script files --- .gitignore | 24 +++++++++ _boring | 133 ------------------------------------------------- bindist.sh | 0 update-deps.sh | 0 4 files changed, 24 insertions(+), 133 deletions(-) create mode 100644 .gitignore delete mode 100644 _boring mode change 100644 => 100755 bindist.sh mode change 100644 => 100755 update-deps.sh diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..cae71c3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,24 @@ +# cabal +dist/ +.cabal-sandbox/ +cabal.sandbox.config + +# stack +stack.yaml.lock +.stack-work/ + +# yesod +static/tmp/ +static/combined/ +config/client_session_key.aes +yesod-devel/ + +# vervis +config/capability_signing_key +config/hashids_salt +config/settings.yml +config/ssh-host-key +config/ssh-host-key.pub +lib/ +repos/ +delivery-states/ diff --git a/_boring b/_boring deleted file mode 100644 index 567d238..0000000 --- a/_boring +++ /dev/null @@ -1,133 +0,0 @@ -# This file contains a list of extended regular expressions, one per -# line. A file path matching any of these expressions will be filtered -# out during `darcs add', or when the `--look-for-adds' flag is passed -# to `darcs whatsnew' and `record'. The entries in ~/.darcs/boring (if -# it exists) supplement those in this file. -# -# Blank lines, and lines beginning with an octothorpe (#) are ignored. -# See regex(7) for a description of extended regular expressions. - -### compiler and interpreter intermediate files -# haskell (ghc) interfaces -\.hi$ -\.hi-boot$ -\.o-boot$ -# object files -\.o$ -\.o\.cmd$ -# profiling haskell -\.p_hi$ -\.p_o$ -# haskell program coverage resp. profiling info -\.tix$ -\.prof$ -# fortran module files -\.mod$ -# linux kernel -\.ko\.cmd$ -\.mod\.c$ -(^|/)\.tmp_versions($|/) -# *.ko files aren't boring by default because they might -# be Korean translations rather than kernel modules -# \.ko$ -# python, emacs, java byte code -\.py[co]$ -\.elc$ -\.class$ -# objects and libraries; lo and la are libtool things -\.(obj|a|exe|so|lo|la)$ -# compiled zsh configuration files -\.zwc$ -# Common LISP output files for CLISP and CMUCL -\.(fas|fasl|sparcf|x86f)$ - -### build and packaging systems -# cabal intermediates -\.installed-pkg-config -\.setup-config -# standard cabal and stack build dirs -^dist$ -^dist/build(/|$) -^dist/doc(/|$) -^dist/dist-sandbox -^dist/package\.conf\.inplace$ -^dist/setup-config$ -^\.cabal-sandbox(/|$) -^cabal\.sandbox\.config$ -^.stack-work(/|$) -^stack\.yaml\.lock$ -# autotools -(^|/)autom4te\.cache($|/) -(^|/)config\.(log|status)$ -# gentoo tools -\.revdep-rebuild.* -# generated dependencies -^\.depend$ - -### version control systems -# cvs -(^|/)CVS($|/) -\.cvsignore$ -# cvs, emacs locks -^\.# -# rcs -(^|/)RCS($|/) -,v$ -# subversion -(^|/)\.svn($|/) -# mercurial -(^|/)\.hg($|/) -# git -(^|/)\.git($|/) -# bzr -\.bzr$ -# sccs -(^|/)SCCS($|/) -# darcs -(^|/)_darcs($|/) -(^|/)\.darcsrepo($|/) -^\.darcs-temp-mail$ --darcs-backup[[:digit:]]+$ -# gnu arch -(^|/)(\+|,) -(^|/)vssver\.scc$ -\.swp$ -(^|/)MT($|/) -(^|/)\{arch\}($|/) -(^|/).arch-ids($|/) - -### miscellaneous -# backup files -~$ -\.bak$ -\.BAK$ -# patch originals and rejects -\.orig$ -\.rej$ -# X server -\..serverauth.* -# vi, emacs tags -(^|/)(tags|TAGS)$ -#(^|/)\.[^/] -# core dumps -(^|/|\.)core$ -# partial broken files (KIO copy operations) -\.part$ -# waf files, see http://code.google.com/p/waf/ -(^|/)\.waf-[[:digit:].]+-[[:digit:]]+($|/) -(^|/)\.lock-wscript$ - -### yesod -^static/tmp(/|$) -^static/combined(/|$) -^config/client_session_key.aes$ -^yesod-devel(/|$) - -### vervis -^config/capability_signing_key$ -^config/hashids_salt$ -^config/settings\.yml$ -^config/ssh-host-key$ -^config/ssh-host-key\.pub$ -^repos(/|$) -^lib(/|$) diff --git a/bindist.sh b/bindist.sh old mode 100644 new mode 100755 diff --git a/update-deps.sh b/update-deps.sh old mode 100644 new mode 100755