Skip to content

Commit a52d7a8

Browse files
committed
Update metadata, prepare for release
Signed-off-by: hololeap <hololeap@protonmail.com>
1 parent 50c511a commit a52d7a8

File tree

4 files changed

+21
-18
lines changed

4 files changed

+21
-18
lines changed

.github/workflows/haskell.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242

4343
- name: Configure the build
4444
run: |
45-
cabal configure --enable-tests --enable-benchmarks --disable-documentation
45+
cabal configure --enable-tests --enable-benchmarks --disable-documentation --flag=pedantic
4646
cabal build --dry-run
4747
# The last step generates dist-newstyle/cache/plan.json for the cache key.
4848

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Revision history for dep-scanner
1+
## revdep-scanner-0.1.0.0 (2025-02-11)
22

3-
## 0.0.0.0 -- YYYY-mm-dd
3+
Release 0.1.0.0
44

5-
* First version. Released on an unsuspecting world.
5+
- Initial release

cabal.project

Lines changed: 0 additions & 10 deletions
This file was deleted.

revdep-scanner.cabal

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,38 @@
11
cabal-version: 3.4
22
name: revdep-scanner
3-
version: 0.0.0.0
3+
version: 0.1.0.0
44
synopsis: Scan Gentoo repositories for reverse dependencies
55

66
tested-with: GHC == { 9.2.8, 9.4.8, 9.6.6, 9.8.4, 9.10.1, 9.12.1 }
77
-- description:
8-
homepage: https://github.com/hololeap/revdep-scanner
8+
homepage: https://github.com/gentoo-haskell/revdep-scanner
99
license: GPL-3.0-or-later
1010
license-file: LICENSE
11-
author: hololeap
11+
author: Gentoo Authors
1212
maintainer: hololeap@protonmail.com
13-
copyright: Copyright (C) 2025 hololeap
13+
copyright: Copyright (C) 2025 Gentoo Authors
1414
category: Development
1515
build-type: Simple
1616
extra-doc-files:
1717
CHANGELOG.md
1818
README.md
1919
-- extra-source-files:
2020

21+
source-repository head
22+
type: git
23+
location: https://github.com/gentoo-haskell/cabal-portage.git
24+
branch: main
25+
subdir: portage-hs
26+
27+
flag pedantic
28+
description: Enable -Werror
29+
default: False
30+
manual: True
31+
2132
common warnings
2233
ghc-options: -Wall
34+
if flag(pedantic)
35+
ghc-options: -Werror
2336

2437
common exe
2538
ghc-options: -threaded -rts-options=-N

0 commit comments

Comments
 (0)