Codebase list haskell-hsopenssl-x509-system / dfa16fe
tldr: Rename binary package to tldr-hs Ilias Tsitsimpis 10 months ago
10 changed file(s) with 39 addition(s) and 25 deletion(s). Raw diff Collapse all Expand all
0 haskell-tldr (0.9.2-3) unstable; urgency=medium
1
2 * Rename binary package to tldr-hs
3
4 -- Ilias Tsitsimpis <iliastsi@debian.org> Sat, 17 Jun 2023 19:16:12 +0300
5
06 haskell-tldr (0.9.2-2) unstable; urgency=medium
17
28 [ Ilias Tsitsimpis ]
8585 .
8686 ${haskell:Blurb}
8787
88 Package: tldr
88 Package: tldr-hs
8989 Architecture: any
9090 Section: doc
9191 Depends: ${haskell:Depends},
9494 git,
9595 Recommends: ${haskell:Recommends},
9696 Suggests: ${haskell:Suggests},
97 Conflicts: ${haskell:Conflicts},
98 tldr-py (<< 0.7.0-2~),
97 Replaces: tldr (<< 0.9.2-3~)
98 Breaks: tldr (<< 0.9.2-3~)
9999 Provides: ${haskell:Provides},
100100 Description: ${haskell:ShortDescription}${haskell:ShortBlurb}
101101 ${haskell:LongDescription}
102102 .
103103 ${haskell:Blurb}
104
105 Package: tldr
106 Depends: tldr-hs, ${misc:Depends}
107 Architecture: all
108 Priority: optional
109 Section: oldlibs
110 Description: transitional package
111 This is a transitional package. It can safely be removed.
0 dist-ghc/build/tldr-hs/tldr-hs usr/bin
0 #!/bin/sh
1
2 set -e
3
4 if [ "$1" = "configure" ] ; then
5 update-alternatives \
6 --install /usr/bin/tldr tldr /usr/bin/tldr-hs 10 \
7 --slave /usr/share/man/man1/tldr.1.gz tldr.1.gz /usr/share/man/man1/tldr-hs.1.gz
8 fi
9
10 #DEBHELPER#
0 #!/bin/sh
1
2 set -e
3
4 if [ "$1" = "remove" ] || [ "$1" = "deconfigure" ]; then
5 update-alternatives --remove tldr /usr/bin/tldr-hs
6 fi
7
8 #DEBHELPER#
+0
-1
p/haskell-tldr/debian/tldr.install less more
0 dist-ghc/build/tldr-hs/tldr-hs usr/bin
+0
-1
p/haskell-tldr/debian/tldr.manpages less more
0 tldr-hs.1
+0
-11
p/haskell-tldr/debian/tldr.postinst less more
0 #!/bin/sh
1
2 set -e
3
4 if [ "$1" = "configure" ] ; then
5 update-alternatives \
6 --install /usr/bin/tldr tldr /usr/bin/tldr-hs 10 \
7 --slave /usr/share/man/man1/tldr.1.gz tldr.1.gz /usr/share/man/man1/tldr-hs.1.gz
8 fi
9
10 #DEBHELPER#
+0
-9
p/haskell-tldr/debian/tldr.prerm less more
0 #!/bin/sh
1
2 set -e
3
4 if [ "$1" = "remove" ] || [ "$1" = "deconfigure" ]; then
5 update-alternatives --remove tldr /usr/bin/tldr-hs
6 fi
7
8 #DEBHELPER#