forked from pool/ghc-socks
Accepting request 432812 from devel:languages:haskell:lts:7
version / revision update OBS-URL: https://build.opensuse.org/request/show/432812 OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-socks?expand=0&rev=9
This commit is contained in:
parent
257b1e54c4
commit
dfb8dc8585
@ -22,18 +22,16 @@ Version: 0.5.5
|
|||||||
Release: 0
|
Release: 0
|
||||||
Summary: Socks proxy (version 5) implementation
|
Summary: Socks proxy (version 5) implementation
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
Group: System/Libraries
|
Group: Development/Languages/Other
|
||||||
Url: https://hackage.haskell.org/package/%{pkg_name}
|
Url: https://hackage.haskell.org/package/%{pkg_name}
|
||||||
Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
|
Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
|
||||||
Source1: https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/1.cabal
|
Source1: https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/1.cabal#/%{pkg_name}.cabal
|
||||||
BuildRequires: ghc-Cabal-devel
|
BuildRequires: ghc-Cabal-devel
|
||||||
# Begin cabal-rpm deps:
|
|
||||||
BuildRequires: ghc-bytestring-devel
|
BuildRequires: ghc-bytestring-devel
|
||||||
BuildRequires: ghc-cereal-devel
|
BuildRequires: ghc-cereal-devel
|
||||||
BuildRequires: ghc-network-devel
|
BuildRequires: ghc-network-devel
|
||||||
BuildRequires: ghc-rpm-macros
|
BuildRequires: ghc-rpm-macros
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# End cabal-rpm deps
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Socks proxy (version 5) implementation.
|
Socks proxy (version 5) implementation.
|
||||||
@ -53,15 +51,12 @@ This package provides the Haskell %{pkg_name} library development files.
|
|||||||
%setup -q -n %{pkg_name}-%{version}
|
%setup -q -n %{pkg_name}-%{version}
|
||||||
cp -p %{SOURCE1} %{pkg_name}.cabal
|
cp -p %{SOURCE1} %{pkg_name}.cabal
|
||||||
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%ghc_lib_build
|
%ghc_lib_build
|
||||||
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%ghc_lib_install
|
%ghc_lib_install
|
||||||
|
|
||||||
|
|
||||||
%post devel
|
%post devel
|
||||||
%ghc_pkg_recache
|
%ghc_pkg_recache
|
||||||
|
|
||||||
@ -74,6 +69,5 @@ cp -p %{SOURCE1} %{pkg_name}.cabal
|
|||||||
|
|
||||||
%files devel -f %{name}-devel.files
|
%files devel -f %{name}-devel.files
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%doc Example.hs README.md
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
@ -1,35 +1,35 @@
|
|||||||
Name: socks
|
Name: socks
|
||||||
Version: 0.5.5
|
Version: 0.5.5
|
||||||
x-revision: 1
|
x-revision: 1
|
||||||
Description: Socks proxy (version 5) implementation.
|
Description: Socks proxy (version 5) implementation.
|
||||||
License: BSD3
|
License: BSD3
|
||||||
License-file: LICENSE
|
License-file: LICENSE
|
||||||
Copyright: Vincent Hanquez <vincent@snarc.org>
|
Copyright: Vincent Hanquez <vincent@snarc.org>
|
||||||
Author: Vincent Hanquez <vincent@snarc.org>
|
Author: Vincent Hanquez <vincent@snarc.org>
|
||||||
Maintainer: Vincent Hanquez <vincent@snarc.org>
|
Maintainer: Vincent Hanquez <vincent@snarc.org>
|
||||||
Synopsis: Socks proxy (version 5) implementation.
|
Synopsis: Socks proxy (version 5) implementation.
|
||||||
Build-Type: Simple
|
Build-Type: Simple
|
||||||
Category: Network
|
Category: Network
|
||||||
stability: experimental
|
stability: experimental
|
||||||
Cabal-Version: >=1.6
|
Cabal-Version: >=1.6
|
||||||
Homepage: http://github.com/vincenthz/hs-socks
|
Homepage: http://github.com/vincenthz/hs-socks
|
||||||
extra-doc-files: README.md, Example.hs
|
extra-doc-files: README.md, Example.hs
|
||||||
|
|
||||||
Library
|
Library
|
||||||
-- Needs IsString Lazy.ByteString instance
|
-- Needs IsString Lazy.ByteString instance
|
||||||
Build-Depends: base >= 3 && < 5
|
Build-Depends: base >= 3 && < 5
|
||||||
, bytestring >=0.10 && <0.11
|
, bytestring >=0.10 && <0.11
|
||||||
, cereal >= 0.3.1
|
, cereal >= 0.3.1
|
||||||
, network >= 2.3
|
, network >= 2.3
|
||||||
Exposed-modules: Network.Socks5
|
Exposed-modules: Network.Socks5
|
||||||
Network.Socks5.Lowlevel
|
Network.Socks5.Lowlevel
|
||||||
Network.Socks5.Types
|
Network.Socks5.Types
|
||||||
Other-modules: Network.Socks5.Wire
|
Other-modules: Network.Socks5.Wire
|
||||||
Network.Socks5.Conf
|
Network.Socks5.Conf
|
||||||
Network.Socks5.Command
|
Network.Socks5.Command
|
||||||
Network.Socks5.Parse
|
Network.Socks5.Parse
|
||||||
ghc-options: -Wall -fno-warn-missing-signatures -fwarn-tabs
|
ghc-options: -Wall -fno-warn-missing-signatures -fwarn-tabs
|
||||||
|
|
||||||
source-repository head
|
source-repository head
|
||||||
type: git
|
type: git
|
||||||
location: git://github.com/vincenthz/hs-socks
|
location: git://github.com/vincenthz/hs-socks
|
Loading…
x
Reference in New Issue
Block a user